board: ti: am574x-idk: Add epprom support
am574x-idk is a board based on TI's am574 processor Add eeprom support. Signed-off-by: Lokesh Vutla <lokeshvutla@ti.com>
This commit is contained in:
parent
941f2fcc5b
commit
9646b95f64
@ -43,6 +43,7 @@
|
||||
#define board_is_am572x_evm_reva3() \
|
||||
(board_ti_is("AM572PM_") && \
|
||||
!strncmp("A.30", board_ti_get_rev(), 3))
|
||||
#define board_is_am574x_idk() board_ti_is("AM574IDK")
|
||||
#define board_is_am572x_idk() board_ti_is("AM572IDK")
|
||||
#define board_is_am571x_idk() board_ti_is("AM571IDK")
|
||||
|
||||
@ -481,6 +482,8 @@ void do_board_detect(void)
|
||||
bname = "BeagleBoard X15";
|
||||
else if (board_is_am572x_evm())
|
||||
bname = "AM572x EVM";
|
||||
else if (board_is_am574x_idk())
|
||||
bname = "AM574x IDK";
|
||||
else if (board_is_am572x_idk())
|
||||
bname = "AM572x IDK";
|
||||
else if (board_is_am571x_idk())
|
||||
@ -513,6 +516,8 @@ static void setup_board_eeprom_env(void)
|
||||
name = "am57xx_evm_reva3";
|
||||
else
|
||||
name = "am57xx_evm";
|
||||
} else if (board_is_am574x_idk()) {
|
||||
name = "am574x_idk";
|
||||
} else if (board_is_am572x_idk()) {
|
||||
name = "am572x_idk";
|
||||
} else if (board_is_am571x_idk()) {
|
||||
|
Loading…
Reference in New Issue
Block a user