diff options
author | jk.kernel@gmail.com <jk.kernel@gmail.com> | 2016-07-26 18:28:27 +0800 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2016-07-31 07:24:20 -0600 |
commit | cba6bb1b74133060207192fba55e650d5744ed39 (patch) | |
tree | e1b49af468e2db3a7262d63bfc6672106b49b273 /include/configs/evb_rk3288.h | |
parent | f75711aae72e6331fc5bb6c6b094869182fb200c (diff) | |
download | u-boot-cba6bb1b74133060207192fba55e650d5744ed39.tar.gz |
rockchip: rk3288: move evb board to rockchip folder
The 'evb-rk3288' is not a vendor name, change it to 'rockchip' which is
the real vendor name.
Signed-off-by: Ziyuan Xu <xzy.xu@rock-chips.com>
Acked-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'include/configs/evb_rk3288.h')
-rw-r--r-- | include/configs/evb_rk3288.h | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/include/configs/evb_rk3288.h b/include/configs/evb_rk3288.h new file mode 100644 index 0000000000..342557fff3 --- /dev/null +++ b/include/configs/evb_rk3288.h @@ -0,0 +1,26 @@ +/* + * (C) Copyright 2016 Rockchip Electronics Co., Ltd + * + * SPDX-License-Identifier: GPL-2.0+ + */ + +#ifndef __CONFIG_H +#define __CONFIG_H + +#define ROCKCHIP_DEVICE_SETTINGS +#include <configs/rk3288_common.h> + +#define CONFIG_SPL_MMC_SUPPORT + +#define CONFIG_ENV_IS_IN_MMC +#define CONFIG_SYS_MMC_ENV_DEV 1 +/* SPL @ 32k for ~36k + * ENV @ 96k + * u-boot @ 128K + */ +#define CONFIG_ENV_OFFSET (96 * 1024) + +#define CONFIG_SYS_WHITE_ON_BLACK +#define CONFIG_CONSOLE_SCROLL_LINES 10 + +#endif |