toradex: tdx-cfg-block: Add verdin am62 0242 pid4

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.

Signed-off-by: Vitor Soares <vitor.soares@toradex.com>
This commit is contained in:
Vitor Soares
2026-07-27 13:05:07 -03:00
committed by Fabio Estevam
parent 815de58370
commit 2e49ea72ff
3 changed files with 4 additions and 1 deletions
+1
View File
@@ -200,6 +200,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 {
+1
View File
@@ -163,6 +163,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 {
+2 -1
View File
@@ -84,7 +84,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)