mirror of
https://xff.cz/git/u-boot/
synced 2025-10-17 16:02:33 +02:00
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>
This commit is contained in:
committed by
Tom Rini
parent
df4dbb5df6
commit
00c200f137
@@ -63,6 +63,13 @@ int fdt_pci_dma_ranges(void *blob, int phb_off, struct pci_controller *hose);
|
||||
#endif
|
||||
|
||||
void ft_board_setup(void *blob, bd_t *bd);
|
||||
/*
|
||||
* The keystone2 SOC requires all 32 bit aliased addresses to be converted
|
||||
* to their 36 physical format. This has to happen after all fdt nodes
|
||||
* are added or modified by the image_setup_libfdt(). The ft_board_setup_ex()
|
||||
* called at the end of the image_setup_libfdt() is to do that convertion.
|
||||
*/
|
||||
void ft_board_setup_ex(void *blob, bd_t *bd);
|
||||
void ft_cpu_setup(void *blob, bd_t *bd);
|
||||
void ft_pci_setup(void *blob, bd_t *bd);
|
||||
|
||||
|
Reference in New Issue
Block a user