diff options
author | Roger Quadros <rogerq@kernel.org> | 2023-08-05 11:14:37 +0300 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2023-08-17 15:08:46 -0400 |
commit | d3c830228f69de8bd65782e54eeb762f68655784 (patch) | |
tree | efa95919a2e96ba7ebf14affb1eac84d3564fbd0 | |
parent | 5d3758178bc23d731897f05244bf564f8d1caf48 (diff) |
board: ti: am64x: Recognize AM64-HSEVM
AM64-HSEVM is AM64-GPEVM with High Security Device.
Gets rid of "Unidentified board claims AM64-HSEVM in eeprom header".
Signed-off-by: Roger Quadros <rogerq@kernel.org>
Acked-by: Andrew Davis <afd@ti.com>
Reviewed-by: Nishanth Menon <nm@ti.com>
Tested-by: Nishanth Menon <nm@ti.com> #SK-AM64B
-rw-r--r-- | board/ti/am64x/evm.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/board/ti/am64x/evm.c b/board/ti/am64x/evm.c index 96f4e3013a3..a080b2b0d25 100644 --- a/board/ti/am64x/evm.c +++ b/board/ti/am64x/evm.c @@ -18,7 +18,8 @@ #include "../common/board_detect.h" -#define board_is_am64x_gpevm() board_ti_k3_is("AM64-GPEVM") +#define board_is_am64x_gpevm() (board_ti_k3_is("AM64-GPEVM") || \ + board_ti_k3_is("AM64-HSEVM")) #define board_is_am64x_skevm() (board_ti_k3_is("AM64-SKEVM") || \ board_ti_k3_is("AM64B-SKEVM")) |