diff options
author | Simon Glass <sjg@chromium.org> | 2016-01-21 19:45:24 -0700 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2016-01-21 20:42:37 -0700 |
commit | 7c1058fadc8d7c25c6c1313d939897a091500fbe (patch) | |
tree | a2b131247ad893139453150191ed6905bf78f3db /include | |
parent | cf629bb2ba769f2257f43336adef2cdf4acff9bf (diff) | |
download | u-boot-imx-7c1058fadc8d7c25c6c1313d939897a091500fbe.zip u-boot-imx-7c1058fadc8d7c25c6c1313d939897a091500fbe.tar.gz u-boot-imx-7c1058fadc8d7c25c6c1313d939897a091500fbe.tar.bz2 |
rockchip: Add support for Raxda Rock 2
This board includes an RK3288 SoC on a SOM. It can be mounted on a
base-board which provides a wide range of peripherals.
So far this is verified to boot to a prompt from a microSD card. The serial
console works as well as HDMI.
Thanks to Tom Cubie for sending me a board.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/configs/rock2.h | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/include/configs/rock2.h b/include/configs/rock2.h new file mode 100644 index 0000000..d6423e7 --- /dev/null +++ b/include/configs/rock2.h @@ -0,0 +1,31 @@ +/* + * (C) Copyright 2015 Google, Inc + * + * SPDX-License-Identifier: GPL-2.0+ + */ + +#ifndef __CONFIG_H +#define __CONFIG_H + +#define ROCKCHIP_DEVICE_SETTINGS \ + "stdin=serial,cros-ec-keyb\0" \ + "stdout=serial,vidconsole\0" \ + "stderr=serial,vidconsole\0" + +#include <configs/rk3288_common.h> + +#define CONFIG_SPL_MMC_SUPPORT + +#define CONFIG_ENV_IS_IN_MMC +#define CONFIG_SYS_MMC_ENV_DEV 0 +/* SPL @ 32k for ~36k + * ENV @ 96k + * u-boot @ 128K + */ +#define CONFIG_ENV_OFFSET (96 * 1024) + +#define CONFIG_I2C_EDID +#define CONFIG_SYS_WHITE_ON_BLACK +#define CONFIG_CONSOLE_SCROLL_LINES 10 + +#endif |