]> git.ipfire.org Git - people/ms/u-boot.git/blob - 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
1 if TARGET_TQMA6
2
3 config SYS_BOARD
4 default "tqma6"
5
6 config SYS_VENDOR
7 default "tqc"
8
9 config SYS_CONFIG_NAME
10 default "tqma6"
11
12 choice
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
19 config TQMA6Q
20 bool "TQMa6Q / TQMa6D"
21 select MX6Q
22 help
23 select TQMa6Q / TQMa6D with i.MX6Q/D and 1GiB DRAM
24
25 config TQMA6S
26 bool "TQMa6S"
27 select MX6S
28 help
29 select TQMa6S with i.MX6S and 512 MiB DRAM
30
31 endchoice
32
33 choice
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
40 config TQMA6X_MMC_BOOT
41 bool "MMC / SD Boot"
42 help
43 Boot from eMMC / SD Card
44
45 config TQMA6X_SPI_BOOT
46 bool "SPI NOR Boot"
47 help
48 Boot from on board SPI NOR flash
49
50 endchoice
51
52 choice
53 prompt "TQMa6 base board variant"
54 default MBA6
55 help
56 Select base board for TQMa6
57
58 config 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
64 config WRU4
65 bool "OHB WRU-IV"
66 help
67 Select the OHB Systems AG WRU-IV baseboard.
68
69 endchoice
70
71 config IMX_CONFIG
72 default "board/tqc/tqma6/tqma6q.cfg" if TQMA6Q
73 default "board/tqc/tqma6/tqma6s.cfg" if TQMA6S
74
75 endif