]> git.sur5r.net Git - u-boot/blob - board/tqc/tqma6/Kconfig
arm: armv8 correct value passed to __asm_dcache_all
[u-boot] / 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_SOC
10         default "mx6"
11
12 config SYS_CONFIG_NAME
13         default "tqma6"
14
15 choice
16         prompt "TQMa6 SoC variant"
17         default TQMA6Q
18         help
19           select the TQMa6 module variant. The variants differing in the used
20           i.MX6 CPU type and DRAM
21
22 config TQMA6Q
23         bool "TQMa6Q / TQMa6D"
24         select MX6Q
25         help
26           select TQMa6Q / TQMa6D with i.MX6Q/D and 1GiB DRAM
27
28 config TQMA6S
29         bool "TQMa6S"
30         select MX6S
31         help
32           select TQMa6S with i.MX6S and 512 MiB DRAM
33
34 endchoice
35
36 choice
37         prompt "TQMa6 boot configuration"
38         default TQMA6X_MMC_BOOT
39         help
40           Configure boot device. This is also used to implement environment
41           location.
42
43 config TQMA6X_MMC_BOOT
44         bool "MMC / SD Boot"
45         help
46           Boot from eMMC / SD Card
47
48 config TQMA6X_SPI_BOOT
49         bool "SPI NOR Boot"
50         help
51           Boot from on board SPI NOR flash
52
53 endchoice
54
55 choice
56         prompt "TQMa6 base board variant"
57         default MBA6
58         help
59           Select base board for TQMa6
60
61 config MBA6
62         bool "TQMa6 on MBa6 Starterkit"
63         help
64           Select the MBa6 starterkit. This features a GigE Phy, USB, SD-Card
65           etc.
66
67 config WRU4
68         bool "OHB WRU-IV"
69         help
70           Select the OHB Systems AG WRU-IV baseboard.
71
72 endchoice
73
74 config IMX_CONFIG
75         default "board/tqc/tqma6/tqma6q.cfg" if TQMA6Q
76         default "board/tqc/tqma6/tqma6s.cfg" if TQMA6S
77
78 endif