diff options
author | Boris BREZILLON <boris.brezillon@free-electrons.com> | 2015-03-04 12:13:05 (GMT) |
---|---|---|
committer | Stefano Babic <sbabic@denx.de> | 2015-03-23 12:19:18 (GMT) |
commit | 058d23168752c2a2ec0a6c3b50296cb5b91ec6d0 (patch) | |
tree | 774c097ed3fa95a14b63d6cc276e98018e12906c /arch | |
parent | a05a6045d5bc1c0b6b4b2d95380cefb0a664beb4 (diff) | |
download | u-boot-fsl-qoriq-058d23168752c2a2ec0a6c3b50296cb5b91ec6d0.tar.xz |
board/seco: Add mx6q-uq7 basic board support
Add basic SECO MX6Q/uQ7 board support (Ethernet, UART, SD are supported).
It also adds a Kconfig skeleton to later add more SECO board (supporting
SoC and board variants).
Signed-off-by: Boris Brezillon <boris.brezillon@free-electrons.com>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm/cpu/armv7/mx6/Kconfig | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/arch/arm/cpu/armv7/mx6/Kconfig b/arch/arm/cpu/armv7/mx6/Kconfig index a32fd87..076ba52 100644 --- a/arch/arm/cpu/armv7/mx6/Kconfig +++ b/arch/arm/cpu/armv7/mx6/Kconfig @@ -25,7 +25,18 @@ config MX6SL config MX6SX bool +choice + prompt "MX6 board select" + +config TARGET_SECOMX6 + bool "Support secomx6 boards" + select CPU_V7 + +endchoice + config SYS_SOC default "mx6" +source "board/seco/Kconfig" + endif |