aboutsummaryrefslogtreecommitdiff
path: root/board/tq/tqma6/Kconfig
diff options
context:
space:
mode:
authorMatthias Schiffer2021-11-02 11:36:45 +0100
committerTom Rini2021-11-15 14:33:32 -0500
commit679530c3c6ac99bc4da4dbf73a8e169bc9654e5b (patch)
tree362f0e9c8274c8c52aec0c09c4a7b26d66b0621d /board/tq/tqma6/Kconfig
parent9d3d981661000d8496d3b7836f3bd55d6534dd05 (diff)
board: rename "tqc" vendor to "tq"
The subdivision name "TQ Components" hasn't been in use for a long time. Rename the vendor directory to "tq", which also matches our Device Tree vendor prefix. Signed-off-by: Matthias Schiffer <matthias.schiffer@ew.tq-group.com>
Diffstat (limited to 'board/tq/tqma6/Kconfig')
-rw-r--r--board/tq/tqma6/Kconfig96
1 files changed, 96 insertions, 0 deletions
diff --git a/board/tq/tqma6/Kconfig b/board/tq/tqma6/Kconfig
new file mode 100644
index 00000000000..cb1b8749cea
--- /dev/null
+++ b/board/tq/tqma6/Kconfig
@@ -0,0 +1,96 @@
+if TARGET_TQMA6
+
+config SYS_BOARD
+ default "tqma6"
+
+config SYS_VENDOR
+ default "tq"
+
+config SYS_CONFIG_NAME
+ default "tqma6"
+
+choice
+ prompt "TQMa6 SoC variant"
+ default TQMA6Q
+ help
+ select the TQMa6 module variant. The variants differing in the used
+ i.MX6 CPU type and DRAM
+
+config TQMA6Q
+ bool "TQMa6Q / TQMa6D"
+ depends on MX6Q
+ help
+ select TQMa6Q / TQMa6D with i.MX6Q/D and 1GiB DRAM
+
+config TQMA6DL
+ bool "TQMa6DL"
+ depends on MX6DL
+ help
+ select TQMa6DL with i.MX6DL and 1GiB DRAM
+
+config TQMA6S
+ bool "TQMa6S"
+ depends on MX6S
+ help
+ select TQMa6S with i.MX6S and 512 MiB DRAM
+
+endchoice
+
+choice
+ prompt "TQMa6 boot configuration"
+ default TQMA6X_MMC_BOOT
+ help
+ Configure boot device. This is also used to implement environment
+ location.
+
+config TQMA6X_MMC_BOOT
+ bool "MMC / SD Boot"
+ help
+ Boot from eMMC / SD Card
+
+config TQMA6X_SPI_BOOT
+ bool "SPI NOR Boot"
+ help
+ Boot from on board SPI NOR flash
+
+endchoice
+
+choice
+ prompt "TQMa6 base board variant"
+ default MBA6
+ help
+ Select base board for TQMa6
+
+config MBA6
+ bool "TQMa6 on MBa6 Starterkit"
+ select DM_ETH
+ select USB
+ select CMD_USB
+ select USB_STORAGE
+ select USB_HOST_ETHER
+ select USB_ETHER_SMSC95XX
+ select PHYLIB
+ select PHY_MICREL
+ select PHY_MICREL_KSZ90X1
+ select MXC_UART
+ help
+ Select the MBa6 starterkit. This features a GigE Phy, USB, SD-Card
+ etc.
+
+config WRU4
+ bool "OHB WRU-IV"
+ help
+ Select the OHB Systems AG WRU-IV baseboard.
+
+endchoice
+
+config SYS_TEXT_BASE
+ default 0x2fc00000 if TQMA6S
+ default 0x4fc00000 if TQMA6Q || TQMA6DL
+
+config IMX_CONFIG
+ default "board/tq/tqma6/tqma6q.cfg" if TQMA6Q
+ default "board/tq/tqma6/tqma6dl.cfg" if TQMA6DL
+ default "board/tq/tqma6/tqma6s.cfg" if TQMA6S
+
+endif