diff options
author | Andy Yan <andy.yan@rock-chips.com> | 2017-05-15 17:53:50 +0800 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2017-06-07 07:29:20 -0600 |
commit | e2901ab8f68acaa776f9f3ea8deef316e90543a0 (patch) | |
tree | 5259572e4af4a36fdaec054523578efd76e8dcc3 /include/configs/sheep_rk3368.h | |
parent | fe9d4e77ea988201d567eb9f67792ed8c54db057 (diff) | |
download | u-boot-e2901ab8f68acaa776f9f3ea8deef316e90543a0.tar.gz |
rockchip: rk3368: add Sheep board
Sheep board is designed by Rockchip as a EVB for rk3368.
Currently it is able to boot a linux kernel and system
to console with the miniloader run as fist level loader.
Reviewed-by: Simon Glass <sjg@chromium.org>
Signed-off-by: Andy Yan <andy.yan@rock-chips.com>
Diffstat (limited to 'include/configs/sheep_rk3368.h')
-rw-r--r-- | include/configs/sheep_rk3368.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/include/configs/sheep_rk3368.h b/include/configs/sheep_rk3368.h new file mode 100644 index 0000000000..ec33565d09 --- /dev/null +++ b/include/configs/sheep_rk3368.h @@ -0,0 +1,21 @@ +/* + * Copyright (c) 2017 Rockchip Electronics Co., Ltd + * + * SPDX-License-Identifier: GPL-2.0+ + */ + +#ifndef __CONFIGS_PX5_EVB_H +#define __CONFIGS_PX5_EVB_H + +#include <configs/rk3368_common.h> + +#define CONFIG_SYS_MMC_ENV_DEV 0 +#define KERNEL_LOAD_ADDR 0x280000 +#define DTB_LOAD_ADDR 0x5600000 +#define INITRD_LOAD_ADDR 0x5bf0000 +#define CONFIG_ENV_IS_NOWHERE +#define CONFIG_ENV_SIZE 0x2000 + +#define CONFIG_CONSOLE_SCROLL_LINES 10 + +#endif |