diff options
author | Joao Paulo Goncalves <joao.goncalves@toradex.com> | 2024-01-18 16:00:54 -0300 |
---|---|---|
committer | Joao Paulo Goncalves <joao.goncalves@toradex.com> | 2024-01-24 13:25:00 -0300 |
commit | 4baed786463e78727265420bf36df440b0a9ac92 (patch) | |
tree | 893bbfb4957fe0b971d934a922ab3351e446b4fc | |
parent | 7683835c191eb4b038b63d035b6e079c36ec15a7 (diff) |
toradex: tdx-cfg-block: Add new apalis and colibri pidtoradex_2020.07
Add new apalis imx6 and colibri imx6/imx7 products IDs.
Upstream-Status: Submitted [https://lore.kernel.org/u-boot/20240122200930.673447-1-jpaulo.silvagoncalves@gmail.com/]
Signed-off-by: Joao Paulo Goncalves <joao.goncalves@toradex.com>
-rw-r--r-- | board/toradex/common/tdx-cfg-block.c | 9 | ||||
-rw-r--r-- | board/toradex/common/tdx-cfg-block.h | 10 |
2 files changed, 19 insertions, 0 deletions
diff --git a/board/toradex/common/tdx-cfg-block.c b/board/toradex/common/tdx-cfg-block.c index 07179f50577..b5554fcbd2a 100644 --- a/board/toradex/common/tdx-cfg-block.c +++ b/board/toradex/common/tdx-cfg-block.c @@ -149,6 +149,15 @@ const char * const toradex_modules[] = { [64] = "Verdin iMX8M Plus Quad 2GB Wi-Fi / BT IT", [65] = "Verdin iMX8M Plus QuadLite 1GB IT", [66] = "Verdin iMX8M Plus Quad 8GB Wi-Fi / BT", + [77] = "Colibri iMX6S 256MB", + [78] = "Colibri iMX6S 256MB IT", + [79] = "Colibri iMX6DL 512MB", + [80] = "Colibri iMX6DL 512MB IT", + [81] = "Colibri iMX7D 512MB", + [82] = "Apalis iMX6D 512MB", + [83] = "Apalis iMX6Q 1GB", + [84] = "Apalis iMX6D 1GB IT", + [85] = "Apalis iMX6Q 2GB IT", }; 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 eb43ee42d7b..e7fb2de3c16 100644 --- a/board/toradex/common/tdx-cfg-block.h +++ b/board/toradex/common/tdx-cfg-block.h @@ -87,6 +87,16 @@ enum { VERDIN_IMX8MPQ_2GB_WIFI_BT_IT, VERDIN_IMX8MPQL_IT, /* 65 */ VERDIN_IMX8MPQ_8GB_WIFI_BT, + /* 67-76 */ + COLIBRI_IMX6S_NOWINCE = 77, + COLIBRI_IMX6S_IT_NOWINCE, + COLIBRI_IMX6DL_NOWINCE, + COLIBRI_IMX6DL_IT_NOWINCE, /* 80 */ + COLIBRI_IMX7D_NOWINCE, + APALIS_IMX6D_NOWINCE, + APALIS_IMX6Q_NOWINCE, + APALIS_IMX6D_IT_NOWINCE, + APALIS_IMX6Q_IT_NOWINCE, /* 85 */ }; enum { |