diff options
author | Roger Quadros <rogerq@kernel.org> | 2024-01-08 15:16:50 +0200 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2024-01-18 17:50:27 -0500 |
commit | 9ba8187a84b4a23f43e8aedea0a1db1f769cb3f0 (patch) | |
tree | 752e8aa15007d48758af57a4ec559358b9a745f5 | |
parent | 27cc5951c862355da310e0bd2c42487979b9fa00 (diff) |
board: ti: am64: Support TMDS64EVM
The TMDS64EVM [1] ships with AM64X SR2.0 HS-FS chip
and a slightly different board name in the board information
EEPROM header. Support this board.
[1] https://www.ti.com/tool/TMDS64EVM
Gets rid of below message at boot
"Unidentified board claims AM64-EVM in eeprom header"
Signed-off-by: Roger Quadros <rogerq@kernel.org>
Reviewed-by: Nishanth Menon <nm@ti.com>
-rw-r--r-- | board/ti/am64x/evm.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/board/ti/am64x/evm.c b/board/ti/am64x/evm.c index a6dcff2eb43..a7ca6be436e 100644 --- a/board/ti/am64x/evm.c +++ b/board/ti/am64x/evm.c @@ -18,6 +18,7 @@ #include "../common/board_detect.h" #define board_is_am64x_gpevm() (board_ti_k3_is("AM64-GPEVM") || \ + board_ti_k3_is("AM64-EVM") || \ board_ti_k3_is("AM64-HSEVM")) #define board_is_am64x_skevm() (board_ti_k3_is("AM64-SKEVM") || \ |