summaryrefslogtreecommitdiff
path: root/board
diff options
context:
space:
mode:
authorJudith Mendez <jm@ti.com>2022-08-23 13:38:27 -0500
committerAnand Gadiyar <gadiyar@ti.com>2022-08-23 15:06:13 -0500
commit6ff4b18979b4d83c8b413b2179ceead09019d00a (patch)
treef280ce5c858ececcc08e185adf5908b8c7c51364 /board
parent5bb237809414bc2849184e08de005a769a19378d (diff)
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>
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 ae336c242a..d78fb381be 100644
--- a/board/ti/am64x/evm.c
+++ b/board/ti/am64x/evm.c
@@ -22,7 +22,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"))
#define AM64X_MAX_DAUGHTER_CARDS 8