diff options
author | Markus Niebel <Markus.Niebel@tq-group.com> | 2015-06-04 17:25:31 +0200 |
---|---|---|
committer | Stefano Babic <sbabic@denx.de> | 2015-06-27 17:52:20 +0200 |
commit | 51f6c4280f95a8066e965cfa3268de5ad737d385 (patch) | |
tree | 5b7d23dd5e7d08f4d70a5a4e659e8db1b89f95b9 /board/tqc | |
parent | 66cacc9d5d550e022da9f2d69cadda671fc0512b (diff) | |
download | u-boot-51f6c4280f95a8066e965cfa3268de5ad737d385.tar.gz |
arm: mx6: tqma6: CPU type selection via Kconfig
This is the first patch to remove the
CONFIG_SYS_EXTRA_OPTIONS.
This patch implements CPU type selection from Kconfig.
Further Kconfig stuff is added later.
Signed-off-by: Markus Niebel <Markus.Niebel@tq-group.com>
Diffstat (limited to 'board/tqc')
-rw-r--r-- | board/tqc/tqma6/Kconfig | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/board/tqc/tqma6/Kconfig b/board/tqc/tqma6/Kconfig index f8b3d1fd40..3e4d9f5170 100644 --- a/board/tqc/tqma6/Kconfig +++ b/board/tqc/tqma6/Kconfig @@ -12,4 +12,25 @@ config SYS_SOC config SYS_CONFIG_NAME default "tqma6" +choice + prompt "TQMa6 SoC variant" + default TQMA6Q + help + select the TQMa6 module variant. The variants differing in the used + i.MX6 CPU type and DRAM + +config TQMA6Q + bool "TQMa6Q / TQMa6D" + select MX6Q + help + select TQMa6Q / TQMa6D with i.MX6Q/D and 1GiB DRAM + +config TQMA6S + bool "TQMa6S" + select MX6S + help + select TQMa6S with i.MX6S and 512 MiB DRAM + +endchoice + endif |