diff options
author | Simon Glass <sjg@chromium.org> | 2015-08-30 16:55:42 -0600 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2015-09-02 21:28:24 -0600 |
commit | e2e947ff6ba676e5ba84639fe6f2766aa683e181 (patch) | |
tree | a05098289b30d2e15ff18f3ae7fbd7811bc5ba99 /include/configs | |
parent | 17aa548cedd9a4c063590d29ac27160dc67f47f9 (diff) | |
download | talos-obmc-uboot-e2e947ff6ba676e5ba84639fe6f2766aa683e181.tar.gz talos-obmc-uboot-e2e947ff6ba676e5ba84639fe6f2766aa683e181.zip |
rockchip: Add basic support for jerry
This builds and displays an SPL message, but does not function beyond that.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'include/configs')
-rw-r--r-- | include/configs/chromebook_jerry.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/include/configs/chromebook_jerry.h b/include/configs/chromebook_jerry.h new file mode 100644 index 0000000000..a22b123be6 --- /dev/null +++ b/include/configs/chromebook_jerry.h @@ -0,0 +1,16 @@ +/* + * (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_SPI_SUPPORT +#define CONFIG_SPL_SPI_FLASH_SUPPORT +#define CONFIG_SPL_SPI_LOAD + +#endif |