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 /include/configs/firefly-rk3288.h | |
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 'include/configs/firefly-rk3288.h')
-rw-r--r-- | include/configs/firefly-rk3288.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/include/configs/firefly-rk3288.h b/include/configs/firefly-rk3288.h new file mode 100644 index 0000000..a82adc8 --- /dev/null +++ b/include/configs/firefly-rk3288.h @@ -0,0 +1,14 @@ +/* + * (C) Copyright 2015 Google, Inc + * + * SPDX-License-Identifier: GPL-2.0+ + */ + +#ifndef __CONFIG_H +#define __CONFIG_H + +#include <configs/rk3288_common.h> + +#define CONFIG_SPL_MMC_SUPPORT + +#endif |