summaryrefslogtreecommitdiff
path: root/board
diff options
context:
space:
mode:
authorJudith Mendez <jm@ti.com>2023-04-06 11:49:01 +0530
committerTom Rini <trini@konsulko.com>2023-05-08 09:27:20 -0400
commit8774e45e890bb1119eb3133648090f31922d68ac (patch)
treecf52524af3f1b474cdcf765a33a1505781027784 /board
parent7a17e4c6f1019296a12fc68005916f11de6db928 (diff)
downloadu-boot-8774e45e890bb1119eb3133648090f31922d68ac.tar.gz
board: ti: am64x: Add support for AM64B SK
The AM64x SR2.0 SK board uses "AM64B-SKEVM" as the EEPROM identifier. This board is similar to the AM64x SKEVM except that it has a new PMIC that will be enabled in the future and consequently could use a different device tree file in the future. For now we treat the board same as an AM64x SK. Signed-off-by: Judith Mendez <jm@ti.com> Acked-by: Andrew Davis <afd@ti.com> Signed-off-by: Vignesh Raghavendra <vigneshr@ti.com>
Diffstat (limited to 'board')
-rw-r--r--board/ti/am64x/evm.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/board/ti/am64x/evm.c b/board/ti/am64x/evm.c
index b63792e888..96f4e3013a 100644
--- a/board/ti/am64x/evm.c
+++ b/board/ti/am64x/evm.c
@@ -19,7 +19,9 @@
#include "../common/board_detect.h"
#define board_is_am64x_gpevm() board_ti_k3_is("AM64-GPEVM")
-#define board_is_am64x_skevm() board_ti_k3_is("AM64-SKEVM")
+
+#define board_is_am64x_skevm() (board_ti_k3_is("AM64-SKEVM") || \
+ board_ti_k3_is("AM64B-SKEVM"))
DECLARE_GLOBAL_DATA_PTR;