summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVitor Soares <vitor.soares@toradex.com>2026-07-10 12:49:36 +0100
committerVitor Soares <vitor.soares@toradex.com>2026-07-13 19:11:47 +0100
commit824ff264b912027a286de4d12e4d1a4c296aeed8 (patch)
tree1bc966485ba187874090dd465829cb7246c703df
parent716e130f291752778308225421e8df8c50e89b72 (diff)
toradex: tdx-cfg-block: Add verdin am62 0242 pid4toradex_ti-u-boot-2024.04
Add the new 0242 PID4 to config block handling: - 0242 Verdin AM62 Dual 1GB WB ET Update the board-specific variant selection to use the Wi-Fi variant for the new WB SKU. Upstream-Status: Submitted [https://lore.kernel.org/all/20260710143258.285091-16-ivitro@gmail.com/] Signed-off-by: Vitor Soares <vitor.soares@toradex.com>
-rw-r--r--board/toradex/common/tdx-cfg-block.c1
-rw-r--r--board/toradex/common/tdx-cfg-block.h1
-rw-r--r--board/toradex/verdin-am62/verdin-am62.c3
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 384e962fbfc..d840147645d 100644
--- a/board/toradex/common/tdx-cfg-block.c
+++ b/board/toradex/common/tdx-cfg-block.c
@@ -203,6 +203,7 @@ const struct toradex_som toradex_modules[] = {
{ VERDIN_IMX8MPQ_8GB_WIFI_BT_IT_64G, "Verdin iMX8M Plus Quad 8GB WB IT", TARGET_IS_ENABLED(VERDIN_IMX8MP) },
{ VERDIN_IMX8MMQ_2G_WIFI_BT_IT_64G, "Verdin iMX8M Mini Quad 2GB WB IT", TARGET_IS_ENABLED(VERDIN_IMX8MM) },
{ SMARC_IMX8MPQ_4GB_WB_IT_64G, "SMARC iMX8M Plus Quad 4GB WB IT", TARGET_IS_ENABLED(TORADEX_SMARC_IMX8MP) },
+ { VERDIN_AM62D_1G_WIFI_BT_ET, "Verdin AM62 Dual 1GB WB ET", TARGET_IS_ENABLED(VERDIN_AM62_A53) },
};
struct pid4list {
diff --git a/board/toradex/common/tdx-cfg-block.h b/board/toradex/common/tdx-cfg-block.h
index 131fd7ac80a..371974833c3 100644
--- a/board/toradex/common/tdx-cfg-block.h
+++ b/board/toradex/common/tdx-cfg-block.h
@@ -161,6 +161,7 @@ enum {
VERDIN_IMX8MPQ_8GB_WIFI_BT_IT_64G,
VERDIN_IMX8MMQ_2G_WIFI_BT_IT_64G,
SMARC_IMX8MPQ_4GB_WB_IT_64G, /* 240 */
+ VERDIN_AM62D_1G_WIFI_BT_ET = 242,
};
enum {
diff --git a/board/toradex/verdin-am62/verdin-am62.c b/board/toradex/verdin-am62/verdin-am62.c
index e948fc16ba9..5f980d5ba37 100644
--- a/board/toradex/verdin-am62/verdin-am62.c
+++ b/board/toradex/verdin-am62/verdin-am62.c
@@ -71,7 +71,8 @@ static void select_dt_from_module_version(void)
is_wifi = (tdx_hw_tag.prodid == VERDIN_AM62Q_WIFI_BT_IT) ||
(tdx_hw_tag.prodid == VERDIN_AM62S_512MB_WIFI_BT_IT) ||
(tdx_hw_tag.prodid == VERDIN_AM62D_1G_WIFI_BT_IT) ||
- (tdx_hw_tag.prodid == VERDIN_AM62Q_2G_WIFI_BT_IT);
+ (tdx_hw_tag.prodid == VERDIN_AM62Q_2G_WIFI_BT_IT) ||
+ (tdx_hw_tag.prodid == VERDIN_AM62D_1G_WIFI_BT_ET);
}
if (is_wifi)