diff options
author | Eugen Hristev <eugen.hristev@microchip.com> | 2018-10-08 09:54:27 +0300 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2018-10-22 09:18:49 -0400 |
commit | 61b4dbb0d0c6dcb5a008e84e07a54e5b500a8b4b (patch) | |
tree | 09f2a73504f369493002a639682f6e1e93cb3ead /board | |
parent | 6482095de6d0a21e150fbce86ba351ce225afe03 (diff) | |
download | u-boot-61b4dbb0d0c6dcb5a008e84e07a54e5b500a8b4b.tar.gz u-boot-61b4dbb0d0c6dcb5a008e84e07a54e5b500a8b4b.tar.bz2 u-boot-61b4dbb0d0c6dcb5a008e84e07a54e5b500a8b4b.zip |
board: at91sam9x5: add environment var for cpu type
When booting and CPU is detected from cpuid, we also need an environment
variable that will be used in boot commands to load the proper devicetree.
Signed-off-by: Eugen Hristev <eugen.hristev@microchip.com>
Diffstat (limited to 'board')
-rw-r--r-- | board/atmel/at91sam9x5ek/at91sam9x5ek.c | 4 | ||||
-rw-r--r-- | board/atmel/common/board.c | 7 |
2 files changed, 11 insertions, 0 deletions
diff --git a/board/atmel/at91sam9x5ek/at91sam9x5ek.c b/board/atmel/at91sam9x5ek/at91sam9x5ek.c index 3bb5cd667e..0856786a0f 100644 --- a/board/atmel/at91sam9x5ek/at91sam9x5ek.c +++ b/board/atmel/at91sam9x5ek/at91sam9x5ek.c @@ -20,6 +20,9 @@ DECLARE_GLOBAL_DATA_PTR; /* * Miscelaneous platform dependent initialisations */ + +void at91_prepare_cpu_var(void); + #ifdef CONFIG_CMD_NAND static void at91sam9x5ek_nand_hw_init(void) { @@ -85,6 +88,7 @@ int board_late_init(void) #ifdef CONFIG_DM_VIDEO at91_video_show_board_info(); #endif + at91_prepare_cpu_var(); return 0; } #endif diff --git a/board/atmel/common/board.c b/board/atmel/common/board.c index 8f9b5e137c..fc300a4210 100644 --- a/board/atmel/common/board.c +++ b/board/atmel/common/board.c @@ -13,6 +13,8 @@ #define AT91_PDA_EEPROM_ID_LENGTH 5 #define AT91_PDA_EEPROM_DEFAULT_BUS 0 +char *get_cpu_name(void); + void dummy(void) { } @@ -66,3 +68,8 @@ void at91_pda_detect(void) { } #endif + +void at91_prepare_cpu_var(void) +{ + env_set("cpu", get_cpu_name()); +} |