blob: 6df413428651e7deb0aa0b29345cb034a4764bb2 [file] [log] [blame]
Masahiro Yamada08900f72014-09-01 00:47:55 +09001if TARGET_TQMA6
2
Masahiro Yamada08900f72014-09-01 00:47:55 +09003config SYS_BOARD
Masahiro Yamada08900f72014-09-01 00:47:55 +09004 default "tqma6"
5
6config SYS_VENDOR
Masahiro Yamada08900f72014-09-01 00:47:55 +09007 default "tqc"
8
Masahiro Yamada08900f72014-09-01 00:47:55 +09009config SYS_CONFIG_NAME
Masahiro Yamada08900f72014-09-01 00:47:55 +090010 default "tqma6"
11
Markus Niebelf665a792015-06-04 17:25:31 +020012choice
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
Markus Niebelc01ca162017-02-28 16:37:33 +010025config TQMA6DL
26 bool "TQMa6DL"
27 select MX6DL
28 help
29 select TQMa6DL with i.MX6DL and 1GiB DRAM
30
Markus Niebelf665a792015-06-04 17:25:31 +020031config TQMA6S
32 bool "TQMa6S"
33 select MX6S
34 help
35 select TQMa6S with i.MX6S and 512 MiB DRAM
36
37endchoice
38
Markus Niebel05205312015-06-04 17:25:33 +020039choice
40 prompt "TQMa6 boot configuration"
41 default TQMA6X_MMC_BOOT
42 help
43 Configure boot device. This is also used to implement environment
44 location.
45
46config TQMA6X_MMC_BOOT
47 bool "MMC / SD Boot"
48 help
49 Boot from eMMC / SD Card
50
51config TQMA6X_SPI_BOOT
52 bool "SPI NOR Boot"
53 help
54 Boot from on board SPI NOR flash
55
56endchoice
57
Markus Niebelf0751bb2015-06-04 17:25:34 +020058choice
59 prompt "TQMa6 base board variant"
60 default MBA6
61 help
62 Select base board for TQMa6
63
64config MBA6
65 bool "TQMa6 on MBa6 Starterkit"
66 help
67 Select the MBa6 starterkit. This features a GigE Phy, USB, SD-Card
68 etc.
69
Stefan Roesebe4cb042015-07-06 13:36:33 +020070config WRU4
71 bool "OHB WRU-IV"
72 help
73 Select the OHB Systems AG WRU-IV baseboard.
74
Markus Niebelf0751bb2015-06-04 17:25:34 +020075endchoice
76
Markus Niebele9e4d652015-06-04 17:25:32 +020077config IMX_CONFIG
78 default "board/tqc/tqma6/tqma6q.cfg" if TQMA6Q
Markus Niebelc01ca162017-02-28 16:37:33 +010079 default "board/tqc/tqma6/tqma6dl.cfg" if TQMA6DL
Markus Niebele9e4d652015-06-04 17:25:32 +020080 default "board/tqc/tqma6/tqma6s.cfg" if TQMA6S
81
Masahiro Yamada08900f72014-09-01 00:47:55 +090082endif