diff options
Diffstat (limited to 'lib/fdtdec.c')
| -rw-r--r-- | lib/fdtdec.c | 24 | 
1 files changed, 19 insertions, 5 deletions
diff --git a/lib/fdtdec.c b/lib/fdtdec.c index 4ca442a2a..5239e7947 100644 --- a/lib/fdtdec.c +++ b/lib/fdtdec.c @@ -262,17 +262,31 @@ int fdtdec_find_aliases_for_id(const void *blob, const char *name,  	return num_found;  } +int fdtdec_check_fdt(void) +{ +	/* +	 * We must have an FDT, but we cannot panic() yet since the console +	 * is not ready. So for now, just assert(). Boards which need an early +	 * FDT (prior to console ready) will need to make their own +	 * arrangements and do their own checks. +	 */ +	assert(!fdtdec_prepare_fdt()); +	return 0; +} +  /*   * This function is a little odd in that it accesses global data. At some   * point if the architecture board.c files merge this will make more sense.   * Even now, it is common code.   */ -int fdtdec_check_fdt(void) +int fdtdec_prepare_fdt(void)  { -	/* We must have an fdt */ -	if (((uintptr_t)gd->fdt_blob & 3) || fdt_check_header(gd->fdt_blob)) -		panic("No valid fdt found - please append one to U-Boot\n" -			"binary or define CONFIG_OF_EMBED\n"); +	if (((uintptr_t)gd->fdt_blob & 3) || fdt_check_header(gd->fdt_blob)) { +		printf("No valid FDT found - please append one to U-Boot " +			"binary, use u-boot-dtb.bin or define " +			"CONFIG_OF_EMBED\n"); +		return -1; +	}  	return 0;  }  |