diff options
author | Emanuele Ghidoli <emanuele.ghidoli@toradex.com> | 2024-05-27 15:17:46 +0200 |
---|---|---|
committer | Emanuele Ghidoli <emanuele.ghidoli@toradex.com> | 2024-05-28 17:09:35 +0200 |
commit | aa5b343a446ae4c2a9b0ee28f8de05438c25044b (patch) | |
tree | 708cffe0b1a539a3ef8901d8245272591d1a5818 | |
parent | 6b0ea75b9e61ec6d7b004097f5734483d74ab0eb (diff) |
toradex: tdx-cfg-block: add verdin i.mx8m mini 0090 pid4toradex_imx_v2020.04_5.4.70_2.3.0
Add new PID4 0090 Verdin iMX8M Mini Quad 4GB WB ET to support
the new hardware variant.
Upstream-Status: Submitted [https://lore.kernel.org/all/20240528095941.872693-1-ghidoliemanuele@gmail.com/]
Signed-off-by: Emanuele Ghidoli <emanuele.ghidoli@toradex.com>
-rw-r--r-- | board/toradex/common/tdx-cfg-block.c | 1 | ||||
-rw-r--r-- | board/toradex/common/tdx-cfg-block.h | 1 | ||||
-rw-r--r-- | board/toradex/verdin-imx8mm/verdin-imx8mm.c | 3 |
3 files changed, 4 insertions, 1 deletions
diff --git a/board/toradex/common/tdx-cfg-block.c b/board/toradex/common/tdx-cfg-block.c index 9be198f59bb..0aabd0b659b 100644 --- a/board/toradex/common/tdx-cfg-block.c +++ b/board/toradex/common/tdx-cfg-block.c @@ -156,6 +156,7 @@ const char * const toradex_modules[] = { [87] = "Verdin iMX8M Mini Quad 2GB IT", [88] = "Aquila AM69 Octa 32GB WB IT", [89] = "Verdin iMX95 Hexa 16GB WB IT", + [90] = "Verdin iMX8M Mini Quad 4GB WB ET", }; const char * const toradex_carrier_boards[] = { diff --git a/board/toradex/common/tdx-cfg-block.h b/board/toradex/common/tdx-cfg-block.h index defdd460994..210c58caee2 100644 --- a/board/toradex/common/tdx-cfg-block.h +++ b/board/toradex/common/tdx-cfg-block.h @@ -96,6 +96,7 @@ enum { VERDIN_IMX8MMQ_2G_IT_NO_CAN, AQUILA_AM69O_32G_WIFI_BT_IT, VERDIN_IMX95H_16G_WIFI_BT_IT, + VERDIN_IMX8MMQ_4G_WIFI_BT_ET, /* 90 */ }; enum { diff --git a/board/toradex/verdin-imx8mm/verdin-imx8mm.c b/board/toradex/verdin-imx8mm/verdin-imx8mm.c index 1eb385e0bcc..54e68bbf753 100644 --- a/board/toradex/verdin-imx8mm/verdin-imx8mm.c +++ b/board/toradex/verdin-imx8mm/verdin-imx8mm.c @@ -393,7 +393,8 @@ static void select_dt_from_module_version(void) */ is_wifi = (tdx_hw_tag.prodid == VERDIN_IMX8MMQ_WIFI_BT_IT) || (tdx_hw_tag.prodid == VERDIN_IMX8MMDL_WIFI_BT_IT) || - (tdx_hw_tag.prodid == VERDIN_IMX8MMQ_WIFI_BT_IT_NO_CAN); + (tdx_hw_tag.prodid == VERDIN_IMX8MMQ_WIFI_BT_IT_NO_CAN) || + (tdx_hw_tag.prodid == VERDIN_IMX8MMQ_4G_WIFI_BT_ET); #endif switch(get_pcb_revision()) { |