diff options
author | Simon Glass | 2016-01-21 19:45:20 -0700 |
---|---|---|
committer | Simon Glass | 2016-01-21 20:42:37 -0700 |
commit | 889b8a3147e5ea453297c117c911efb61f798c0f (patch) | |
tree | dcaca1a231339b0fc7d91a6a54f4c55130232985 /include | |
parent | 74336f7daa4b1a45d04ddc9ef05737af54ae4836 (diff) |
rockchip: firefly-rk3288: Enable HDMI output
Enable HDMI output and a console on firefly.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/configs/firefly-rk3288.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/include/configs/firefly-rk3288.h b/include/configs/firefly-rk3288.h index 8ac6521050b..d6423e7e554 100644 --- a/include/configs/firefly-rk3288.h +++ b/include/configs/firefly-rk3288.h @@ -7,7 +7,10 @@ #ifndef __CONFIG_H #define __CONFIG_H -#define ROCKCHIP_DEVICE_SETTINGS +#define ROCKCHIP_DEVICE_SETTINGS \ + "stdin=serial,cros-ec-keyb\0" \ + "stdout=serial,vidconsole\0" \ + "stderr=serial,vidconsole\0" #include <configs/rk3288_common.h> @@ -21,4 +24,8 @@ */ #define CONFIG_ENV_OFFSET (96 * 1024) +#define CONFIG_I2C_EDID +#define CONFIG_SYS_WHITE_ON_BLACK +#define CONFIG_CONSOLE_SCROLL_LINES 10 + #endif |