diff options
author | Igor Opaniuk <igor.opaniuk@toradex.com> | 2020-07-15 13:30:54 +0300 |
---|---|---|
committer | Stefano Babic <sbabic@denx.de> | 2020-07-27 14:00:36 +0200 |
commit | 26921f5853bc5b980e4989bf2cc8043209e9e218 (patch) | |
tree | 230fb7d9df31973d9efc2354403e9413e8650f00 /board/toradex/common/tdx-cfg-block.c | |
parent | c2e969378d7710fe4ffd36f44437833f83e9488a (diff) |
toradex: tdx-cfg-block: add carrier boards and display adapters
Add defines for supported carrier boards and display adapters.
Signed-off-by: Igor Opaniuk <igor.opaniuk@toradex.com>
Diffstat (limited to 'board/toradex/common/tdx-cfg-block.c')
-rw-r--r-- | board/toradex/common/tdx-cfg-block.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/board/toradex/common/tdx-cfg-block.c b/board/toradex/common/tdx-cfg-block.c index 75216ecf6d..adf67216c6 100644 --- a/board/toradex/common/tdx-cfg-block.c +++ b/board/toradex/common/tdx-cfg-block.c @@ -124,6 +124,18 @@ const char * const toradex_modules[] = { [57] = "Verdin iMX8M Mini DualLite 1GB", }; +const char * const toradex_carrier_boards[] = { + [0] = "UNKNOWN CARRIER BOARD", + [155] = "Dahlia", + [156] = "Verdin Development Board", +}; + +const char * const toradex_display_adapters[] = { + [0] = "UNKNOWN DISPLAY ADAPTER", + [157] = "Verdin DSI to HDMI Adapter", + [159] = "Verdin DSI to LVDS Adapter", +}; + #ifdef CONFIG_TDX_CFG_BLOCK_IS_IN_MMC static int tdx_cfg_block_mmc_storage(u8 *config_block, int write) { |