summaryrefslogtreecommitdiff
path: root/include/configs/chromebook_jerry.h
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2016-01-22 02:45:19 (GMT)
committerSimon Glass <sjg@chromium.org>2016-01-22 03:42:37 (GMT)
commit74336f7daa4b1a45d04ddc9ef05737af54ae4836 (patch)
tree8ea22373c70d7eb6e16e27fc25a2e7ca2f18a672 /include/configs/chromebook_jerry.h
parentd78a3d20456a4e9fdb93e8f01b26cfdb6f4c206b (diff)
downloadu-boot-fsl-qoriq-74336f7daa4b1a45d04ddc9ef05737af54ae4836.tar.xz
rockchip: jerry: Enable EDP and HDMI video output
Enable these devices using the VOPL video output device. We explicitly disable VOPB in the device tree to avoid it taking over. Since this device has an LCD display this comes up by default. If the display fails for some reason then it will attempt to use HDMI. It is possible to force it to fail (and thus fall back to HDMI) by puting 'return -EPERM' at the top of rk_edp_probe(). For now there is no easy way to select between the two. Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'include/configs/chromebook_jerry.h')
-rw-r--r--include/configs/chromebook_jerry.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/include/configs/chromebook_jerry.h b/include/configs/chromebook_jerry.h
index 2a0dad4..150e876 100644
--- a/include/configs/chromebook_jerry.h
+++ b/include/configs/chromebook_jerry.h
@@ -9,8 +9,8 @@
#define ROCKCHIP_DEVICE_SETTINGS \
"stdin=serial,cros-ec-keyb\0" \
- "stdout=serial\0" \
- "stderr=serial\0"
+ "stdout=serial,vidconsole\0" \
+ "stderr=serial,vidconsole\0"
#include <configs/rk3288_common.h>
@@ -30,4 +30,8 @@
#define CONFIG_SPL_POWER_SUPPORT
#define CONFIG_SPL_I2C_SUPPORT
+#define CONFIG_I2C_EDID
+#define CONFIG_SYS_WHITE_ON_BLACK
+#define CONFIG_CONSOLE_SCROLL_LINES 10
+
#endif