diff options
| author | Francesco Dolcini <[email protected]> | 2025-10-13 12:55:07 +0200 |
|---|---|---|
| committer | Fabio Estevam <[email protected]> | 2025-10-30 12:38:39 -0300 |
| commit | d6737daa206d8622e109c22623a29a1e53f33c7e (patch) | |
| tree | f7e96140d75b2ad0dd48458711d2b5855d15f0dc | |
| parent | e34d01d23e45e007368685ffa6dfd674b6dd7b17 (diff) | |
board: toradex: fix aquila imx95 0098 pid4
The memory size of the 0098 SKU is 8 GB instead of 16 GB.
Fix PID4 0098 Aquila iMX95 definition.
Fixes: 4c9340716522 ("toradex: tdx-cfg-block: add new pid4 support")
Signed-off-by: Francesco Dolcini <[email protected]>
| -rw-r--r-- | board/toradex/common/tdx-cfg-block.c | 2 | ||||
| -rw-r--r-- | board/toradex/common/tdx-cfg-block.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/board/toradex/common/tdx-cfg-block.c b/board/toradex/common/tdx-cfg-block.c index 869656eee7a..cb81646f9a1 100644 --- a/board/toradex/common/tdx-cfg-block.c +++ b/board/toradex/common/tdx-cfg-block.c @@ -166,7 +166,7 @@ const struct toradex_som toradex_modules[] = { { APALIS_IMX8QM_8GB_WIFI_BT_IT_1300MHZ, "Apalis iMX8QM 8GB WB IT", TARGET_IS_ENABLED(APALIS_IMX8) }, { SMARC_IMX95_HEXA_8GB_WB_IT, "SMARC iMX95 Hexa 8GB WB IT", TARGET_IS_ENABLED(TORADEX_SMARC_IMX95) }, { SMARC_IMX8MPQ_4GB_WB_IT, "SMARC iMX8M Plus Quad 4GB WB IT", TARGET_IS_ENABLED(TORADEX_SMARC_IMX8MP) }, - { AQUILA_IMX95_HEXA_16GB_WB_IT, "Aquila iMX95 Hexa 16GB WB IT", TARGET_IS_ENABLED(AQUILA_IMX95) }, + { AQUILA_IMX95_HEXA_8GB_WB_IT, "Aquila iMX95 Hexa 8GB WB IT", TARGET_IS_ENABLED(AQUILA_IMX95) }, { VERDIN_AM62PQ_2G_WIFI_BT_IT, "Verdin AM62P Quad 2GB WB IT", TARGET_IS_ENABLED(VERDIN_AM62P_A53) }, { SMARC_IMX95_HEXA_8GB_IT, "SMARC iMX95 Hexa 8GB IT", TARGET_IS_ENABLED(TORADEX_SMARC_IMX95) }, { SMARC_IMX95_HEXA_4GB_WB_IT, "SMARC iMX95 Hexa 4GB WB IT", TARGET_IS_ENABLED(TORADEX_SMARC_IMX95) }, diff --git a/board/toradex/common/tdx-cfg-block.h b/board/toradex/common/tdx-cfg-block.h index d002b969bdf..f78e69645cf 100644 --- a/board/toradex/common/tdx-cfg-block.h +++ b/board/toradex/common/tdx-cfg-block.h @@ -124,7 +124,7 @@ enum { APALIS_IMX8QM_8GB_WIFI_BT_IT_1300MHZ, /* 95 */ SMARC_IMX95_HEXA_8GB_WB_IT, SMARC_IMX8MPQ_4GB_WB_IT, - AQUILA_IMX95_HEXA_16GB_WB_IT, + AQUILA_IMX95_HEXA_8GB_WB_IT, VERDIN_AM62PQ_2G_WIFI_BT_IT, /* 99 */ SMARC_IMX95_HEXA_8GB_IT = 201, SMARC_IMX95_HEXA_4GB_WB_IT, |
