From: Sinthu Raja Date: Tue, 10 Jan 2023 15:47:50 +0000 (+0530) Subject: board: ti: j721s2: Add support to update board_name for am68-sk X-Git-Tag: baikal/mips/sdk5.8.2~5^2~73^2~10 X-Git-Url: https://git.baikalelectronics.ru/?a=commitdiff_plain;h=03906f64e9f63ce6e8b185d353666b9cb79c37eb;p=uboot.git board: ti: j721s2: Add support to update board_name for am68-sk Update setup_board_eeprom_env() to choose the right board name for am68-sk. Signed-off-by: Sinthu Raja Reviewed-by: Tom Rini --- diff --git a/board/ti/j721s2/evm.c b/board/ti/j721s2/evm.c index 4d28582311..063fc8c688 100644 --- a/board/ti/j721s2/evm.c +++ b/board/ti/j721s2/evm.c @@ -26,8 +26,6 @@ #include "../common/board_detect.h" -#define board_is_j721s2_som() board_ti_k3_is("J721S2X-PM1-SOM") - DECLARE_GLOBAL_DATA_PTR; int board_init(void) @@ -101,6 +99,14 @@ int ft_board_setup(void *blob, struct bd_info *bd) #endif #ifdef CONFIG_TI_I2C_BOARD_DETECT +/* + * Functions specific to EVM and SK designs of J721S2/AM68 family. + */ + +#define board_is_j721s2_som() board_ti_k3_is("J721S2X-PM1-SOM") + +#define board_is_am68_sk_som() board_ti_k3_is("AM68-SK-SOM") + int do_board_detect(void) { int ret; @@ -136,6 +142,8 @@ static void setup_board_eeprom_env(void) if (board_is_j721s2_som()) name = "j721s2"; + else if (board_is_am68_sk_som()) + name = "am68-sk"; else printf("Unidentified board claims %s in eeprom header\n", board_ti_get_name());