blob: cb1b8749cea6acc14b56eee54af2703ab33a4782 [file] [log] [blame]
Masahiro Yamadaa1263632014-09-01 00:47:55 +09001if TARGET_TQMA6
2
Masahiro Yamadaa1263632014-09-01 00:47:55 +09003config SYS_BOARD
Masahiro Yamadaa1263632014-09-01 00:47:55 +09004 default "tqma6"
5
6config SYS_VENDOR
Matthias Schiffer679530c2021-11-02 11:36:45 +01007 default "tq"
Masahiro Yamadaa1263632014-09-01 00:47:55 +09008
Masahiro Yamadaa1263632014-09-01 00:47:55 +09009config SYS_CONFIG_NAME
Masahiro Yamadaa1263632014-09-01 00:47:55 +090010 default "tqma6"
11
Markus Niebel51f6c422015-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"
Tom Rinif27ffe42020-08-18 07:43:50 -040021 depends on MX6Q
Markus Niebel51f6c422015-06-04 17:25:31 +020022 help
23 select TQMa6Q / TQMa6D with i.MX6Q/D and 1GiB DRAM
24
Markus Niebel468fb1e2017-02-28 16:37:33 +010025config TQMA6DL
26 bool "TQMa6DL"
Tom Rinif27ffe42020-08-18 07:43:50 -040027 depends on MX6DL
Markus Niebel468fb1e2017-02-28 16:37:33 +010028 help
29 select TQMa6DL with i.MX6DL and 1GiB DRAM
30
Markus Niebel51f6c422015-06-04 17:25:31 +020031config TQMA6S
32 bool "TQMa6S"
Tom Rinif27ffe42020-08-18 07:43:50 -040033 depends on MX6S
Markus Niebel51f6c422015-06-04 17:25:31 +020034 help
35 select TQMa6S with i.MX6S and 512 MiB DRAM
36
37endchoice
38
Markus Niebel55c0e492015-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 Niebelfc6e4422015-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"
Michael Krummsdorf45fde2a2020-04-09 15:21:39 +020066 select DM_ETH
67 select USB
Michael Krummsdorf45fde2a2020-04-09 15:21:39 +020068 select CMD_USB
69 select USB_STORAGE
70 select USB_HOST_ETHER
71 select USB_ETHER_SMSC95XX
72 select PHYLIB
73 select PHY_MICREL
74 select PHY_MICREL_KSZ90X1
75 select MXC_UART
Markus Niebelfc6e4422015-06-04 17:25:34 +020076 help
77 Select the MBa6 starterkit. This features a GigE Phy, USB, SD-Card
78 etc.
79
Stefan Roese452308c2015-07-06 13:36:33 +020080config WRU4
81 bool "OHB WRU-IV"
82 help
83 Select the OHB Systems AG WRU-IV baseboard.
84
Markus Niebelfc6e4422015-06-04 17:25:34 +020085endchoice
86
Markus Niebelac1f2b42020-04-09 15:21:36 +020087config SYS_TEXT_BASE
88 default 0x2fc00000 if TQMA6S
89 default 0x4fc00000 if TQMA6Q || TQMA6DL
90
Markus Niebel30ed1252015-06-04 17:25:32 +020091config IMX_CONFIG
Matthias Schiffer679530c2021-11-02 11:36:45 +010092 default "board/tq/tqma6/tqma6q.cfg" if TQMA6Q
93 default "board/tq/tqma6/tqma6dl.cfg" if TQMA6DL
94 default "board/tq/tqma6/tqma6s.cfg" if TQMA6S
Markus Niebel30ed1252015-06-04 17:25:32 +020095
Masahiro Yamadaa1263632014-09-01 00:47:55 +090096endif