mirror of
https://xff.cz/git/u-boot/
synced 2025-09-03 17:52:07 +02:00
board_f: Add new function to allow runtime DTB selection
Runtime U-boot dtb selection is generally a two step process. First step is to simply use an initial generic dtb. The second step is to select the dtb and perhaps execute additional code ones U-boot knows what board it is running on. Embedded_dtb_select handles the second step by allowing board specific code to run and perform what ever necessary configuration that is needed. Signed-off-by: Franklin S Cooper Jr <fcooper@ti.com> Reviewed-by: Tom Rini <trini@konsulko.com>
This commit is contained in:
committed by
Tom Rini
parent
80364a42c1
commit
af9e6ad4ab
@@ -437,6 +437,15 @@ config SYS_STDIO_DEREGISTER
|
|||||||
|
|
||||||
endmenu
|
endmenu
|
||||||
|
|
||||||
|
config DTB_RESELECT
|
||||||
|
bool "Support swapping dtbs at a later point in boot"
|
||||||
|
depends on FIT_EMBED
|
||||||
|
help
|
||||||
|
It is possible during initial boot you may need to use a generic
|
||||||
|
dtb until you can fully determine the board your running on. This
|
||||||
|
config allows boards to implement a function at a later point
|
||||||
|
during boot to switch to the "correct" dtb.
|
||||||
|
|
||||||
config FIT_EMBED
|
config FIT_EMBED
|
||||||
bool "Support a FIT image embedded in the U-boot image"
|
bool "Support a FIT image embedded in the U-boot image"
|
||||||
help
|
help
|
||||||
|
@@ -809,6 +809,9 @@ static const init_fnc_t init_sequence_f[] = {
|
|||||||
#if defined(CONFIG_DISPLAY_CPUINFO)
|
#if defined(CONFIG_DISPLAY_CPUINFO)
|
||||||
print_cpuinfo, /* display cpu info (and speed) */
|
print_cpuinfo, /* display cpu info (and speed) */
|
||||||
#endif
|
#endif
|
||||||
|
#if defined(CONFIG_DTB_RESELECT)
|
||||||
|
embedded_dtb_select,
|
||||||
|
#endif
|
||||||
#if defined(CONFIG_DISPLAY_BOARDINFO)
|
#if defined(CONFIG_DISPLAY_BOARDINFO)
|
||||||
show_board_info,
|
show_board_info,
|
||||||
#endif
|
#endif
|
||||||
|
@@ -359,6 +359,10 @@ int get_env_id (void);
|
|||||||
void pci_init (void);
|
void pci_init (void);
|
||||||
void pci_init_board(void);
|
void pci_init_board(void);
|
||||||
|
|
||||||
|
#if defined(CONFIG_DTB_RESELECT)
|
||||||
|
int embedded_dtb_select(void);
|
||||||
|
#endif
|
||||||
|
|
||||||
int misc_init_f (void);
|
int misc_init_f (void);
|
||||||
int misc_init_r (void);
|
int misc_init_r (void);
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user