[U-Boot] [PATCH v2 1/4] libfdt: Allow the SPL to perform fdt address translation

Lokesh Vutla lokeshvutla at ti.com
Mon Feb 13 15:41:46 UTC 2017



On 2/13/2017 8:47 PM, Jean-Jacques Hiblot wrote:
> Use OF_TRANSLATE for both u-boot and SPL to tell whether fdt address
> translation should be used.
> 
> Signed-off-by: Jean-Jacques Hiblot <jjhiblot at ti.com>

Vignesh has posted a similar patch[1].

[1]http://patchwork.ozlabs.org/patch/727131/

Thanks and regards,
Lokesh

> ---
> 
> to: sjg at chromium.org
> 
> lib/fdtdec.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/lib/fdtdec.c b/lib/fdtdec.c
> index 81f47ef..1edfbf2 100644
> --- a/lib/fdtdec.c
> +++ b/lib/fdtdec.c
> @@ -112,7 +112,7 @@ fdt_addr_t fdtdec_get_addr_size_fixed(const void *blob, int node,
>  		return FDT_ADDR_T_NONE;
>  	}
>  
> -#if !defined(CONFIG_SPL_BUILD) && defined(CONFIG_OF_LIBFDT)
> +#if CONFIG_IS_ENABLED(OF_TRANSLATE)
>  	if (translate)
>  		addr = fdt_translate_address(blob, node, prop_addr);
>  	else
> 


More information about the U-Boot mailing list