diff options
author | Vitaly Andrianov <vitalya@ti.com> | 2014-04-04 13:16:47 -0400 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2014-04-17 17:24:38 -0400 |
commit | 00c200f137b60a04b137e0c7f9097f87ea2ee755 (patch) | |
tree | 3812387c93ea5dd312d3fd328efb1b7d5c833cfb /common | |
parent | df4dbb5df6ab1c1d27b3fd4acbaad69b47095daf (diff) | |
download | u-boot-imx-00c200f137b60a04b137e0c7f9097f87ea2ee755.zip u-boot-imx-00c200f137b60a04b137e0c7f9097f87ea2ee755.tar.gz u-boot-imx-00c200f137b60a04b137e0c7f9097f87ea2ee755.tar.bz2 |
fdt: call ft_board_setup_ex() at the end of image_setup_libfdt()
The keystone2 SOC requires to fix all 32 bit aliased addresses
to their 36 physical format. This has to happen after all fdt
nodes are added or modified.
Signed-off-by: Vitaly Andrianov <vitalya@ti.com>
Signed-off-by: Murali Karicheri <m-karicheri2@ti.com>
Acked-by: Tom Rini <trini@ti.com>
Diffstat (limited to 'common')
-rw-r--r-- | common/image-fdt.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/common/image-fdt.c b/common/image-fdt.c index a54a919..5d64009 100644 --- a/common/image-fdt.c +++ b/common/image-fdt.c @@ -487,5 +487,10 @@ int image_setup_libfdt(bootm_headers_t *images, void *blob, if (!ft_verify_fdt(blob)) return -1; +#ifdef CONFIG_SOC_K2HK + if (IMAGE_OF_BOARD_SETUP) + ft_board_setup_ex(blob, gd->bd); +#endif + return 0; } |