[PATCH V3 05/16] board: ti: j721e: Add support to update board_name for j721e-sk
Sinthu Raja
sinthu.raja at mistralsolutions.com
Wed Feb 9 10:36:50 CET 2022
From: Sinthu Raja <sinthu.raja at ti.com>
Update setup_board_eeprom_env() to choose the right board name
for j721e-sk.
Signed-off-by: Sinthu Raja <sinthu.raja at ti.com>
---
board/ti/j721e/evm.c | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/board/ti/j721e/evm.c b/board/ti/j721e/evm.c
index dc1c310861..b6810eb0c9 100644
--- a/board/ti/j721e/evm.c
+++ b/board/ti/j721e/evm.c
@@ -30,6 +30,9 @@
#define board_is_j721e_som() (board_ti_k3_is("J721EX-PM1-SOM") || \
board_ti_k3_is("J721EX-PM2-SOM"))
+#define board_is_j721e_sk() (board_ti_k3_is("J721EX-EAIK") || \
+ board_ti_k3_is("J721EX-SK"))
+
#define board_is_j7200_som() (board_ti_k3_is("J7200X-PM1-SOM") || \
board_ti_k3_is("J7200X-PM2-SOM"))
@@ -390,6 +393,8 @@ static void setup_board_eeprom_env(void)
if (board_is_j721e_som())
name = "j721e";
+ else if (board_is_j721e_sk())
+ name = "j721e-sk";
else if (board_is_j7200_som())
name = "j7200";
else
--
2.35.0
More information about the U-Boot
mailing list