diff options
author | Simon Glass <sjg@chromium.org> | 2015-08-30 16:55:41 -0600 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2015-09-02 21:28:24 -0600 |
commit | 17aa548cedd9a4c063590d29ac27160dc67f47f9 (patch) | |
tree | 0f57ba0e658d3d8891aea4a4cf6581c6b31c75d1 /arch/arm/mach-rockchip/rk3288 | |
parent | 1b2fd5bf4eedfaf5af9d8fc219781fb521d12c7a (diff) | |
download | u-boot-imx-17aa548cedd9a4c063590d29ac27160dc67f47f9.zip u-boot-imx-17aa548cedd9a4c063590d29ac27160dc67f47f9.tar.gz u-boot-imx-17aa548cedd9a4c063590d29ac27160dc67f47f9.tar.bz2 |
rockchip: Add basic support for firefly-rk3288
The Firefly RK3288 is a suitable target board for initial mainline Rockchip
support. It includes a good set of peripherals, a recent SoC and it is
readily available.
This adds only some basic files required to allow the baord to display a
serial message in SPL and hang.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'arch/arm/mach-rockchip/rk3288')
-rw-r--r-- | arch/arm/mach-rockchip/rk3288/Kconfig | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/arch/arm/mach-rockchip/rk3288/Kconfig b/arch/arm/mach-rockchip/rk3288/Kconfig index 26d5951..7a77615 100644 --- a/arch/arm/mach-rockchip/rk3288/Kconfig +++ b/arch/arm/mach-rockchip/rk3288/Kconfig @@ -1,6 +1,16 @@ if ROCKCHIP_RK3288 +config TARGET_FIREFLY_RK3288 + bool "Firefly-RK3288" + help + Firefly is a RK3288-based development board with 2 USB ports, + HDMI, VGA, micro-SD card, audio, WiFi and Gigabit Ethernet, It + also includes on-board eMMC and 1GB of SDRAM. Expansion connectors + provide access to display pins, I2C, SPI, UART and GPIOs. + config SYS_SOC default "rockchip" +source "board/firefly/firefly-rk3288/Kconfig" + endif |