arm: imx6: tqma6: implement IMX_CONFIG with Kconfig
[platform/kernel/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_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 config IMX_CONFIG
37         default "board/tqc/tqma6/tqma6q.cfg" if TQMA6Q
38         default "board/tqc/tqma6/tqma6s.cfg" if TQMA6S
39
40 endif