]> git.ipfire.org Git - people/ms/u-boot.git/blame - board/tqc/tqma6/Kconfig
arm: imx6q: Add Engicam i.CoreM6 Solo/Duallite RQS Starter Kit initial support
[people/ms/u-boot.git] / board / tqc / tqma6 / Kconfig
CommitLineData
a1263632
MY
1if TARGET_TQMA6
2
a1263632 3config SYS_BOARD
a1263632
MY
4 default "tqma6"
5
6config SYS_VENDOR
a1263632
MY
7 default "tqc"
8
a1263632 9config SYS_CONFIG_NAME
a1263632
MY
10 default "tqma6"
11
51f6c428
MN
12choice
13 prompt "TQMa6 SoC variant"
14 default TQMA6Q
15 help
16 select the TQMa6 module variant. The variants differing in the used
17 i.MX6 CPU type and DRAM
18
19config TQMA6Q
20 bool "TQMa6Q / TQMa6D"
21 select MX6Q
22 help
23 select TQMa6Q / TQMa6D with i.MX6Q/D and 1GiB DRAM
24
25config TQMA6S
26 bool "TQMa6S"
27 select MX6S
28 help
29 select TQMa6S with i.MX6S and 512 MiB DRAM
30
31endchoice
32
55c0e49a
MN
33choice
34 prompt "TQMa6 boot configuration"
35 default TQMA6X_MMC_BOOT
36 help
37 Configure boot device. This is also used to implement environment
38 location.
39
40config TQMA6X_MMC_BOOT
41 bool "MMC / SD Boot"
42 help
43 Boot from eMMC / SD Card
44
45config TQMA6X_SPI_BOOT
46 bool "SPI NOR Boot"
47 help
48 Boot from on board SPI NOR flash
49
50endchoice
51
fc6e4425
MN
52choice
53 prompt "TQMa6 base board variant"
54 default MBA6
55 help
56 Select base board for TQMa6
57
58config MBA6
59 bool "TQMa6 on MBa6 Starterkit"
60 help
61 Select the MBa6 starterkit. This features a GigE Phy, USB, SD-Card
62 etc.
63
452308c0
SR
64config WRU4
65 bool "OHB WRU-IV"
66 help
67 Select the OHB Systems AG WRU-IV baseboard.
68
fc6e4425
MN
69endchoice
70
30ed1257
MN
71config IMX_CONFIG
72 default "board/tqc/tqma6/tqma6q.cfg" if TQMA6Q
73 default "board/tqc/tqma6/tqma6s.cfg" if TQMA6S
74
a1263632 75endif