mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-25 14:10:43 +00:00
board: ti: j7200: Add board detection support for j7200
Add board detection support for j7200 common processor board. Signed-off-by: Lokesh Vutla <lokeshvutla@ti.com> Signed-off-by: Dave Gerlach <d-gerlach@ti.com> Reviewed-by: Suman Anna <s-anna@ti.com>
This commit is contained in:
parent
cf1d6867f7
commit
2cf09d7bed
1 changed files with 4 additions and 0 deletions
|
@ -28,6 +28,8 @@
|
|||
#define board_is_j721e_som() (board_ti_k3_is("J721EX-PM1-SOM") || \
|
||||
board_ti_k3_is("J721EX-PM2-SOM"))
|
||||
|
||||
#define board_is_j7200_som() board_ti_k3_is("J7200X-PM1-SOM")
|
||||
|
||||
/* Max number of MAC addresses that are parsed/processed per daughter card */
|
||||
#define DAUGHTER_CARD_NO_OF_MAC_ADDR 8
|
||||
|
||||
|
@ -139,6 +141,8 @@ static void setup_board_eeprom_env(void)
|
|||
|
||||
if (board_is_j721e_som())
|
||||
name = "j721e";
|
||||
else if (board_is_j7200_som())
|
||||
name = "j7200";
|
||||
else
|
||||
printf("Unidentified board claims %s in eeprom header\n",
|
||||
board_ti_get_name());
|
||||
|
|
Loading…
Reference in a new issue