diff options
author | Hans de Goede <hdegoede@redhat.com> | 2014-12-23 23:04:35 +0100 |
---|---|---|
committer | Hans de Goede <hdegoede@redhat.com> | 2015-01-14 14:56:39 +0100 |
commit | 2fbf091a547177fcf1a4b31b01ee0636c2a4aedc (patch) | |
tree | 65ffffa07c4aef8f7a26ddf32d6609cf74b8ff5c /board | |
parent | 2dae800f1e6193b64ba587f511c4878c89409cbe (diff) | |
download | u-boot-imx-2fbf091a547177fcf1a4b31b01ee0636c2a4aedc.zip u-boot-imx-2fbf091a547177fcf1a4b31b01ee0636c2a4aedc.tar.gz u-boot-imx-2fbf091a547177fcf1a4b31b01ee0636c2a4aedc.tar.bz2 |
sunxi: video: Enable video on sun8i, which supports LCD but not HDMI
The A23 (sun8i) only has lcd output support, so allow building the video code
without HDMI support for use with the A23.
Also the A23 has the same reset bits (and necessity to enable the DRC block)
as the sun6i, so enable those bits for sun8i too.
Note building without HDMI support is useful for the A13 (sun5i variant) too,
as that one does not have HDMI either.
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Acked-by: Ian Campbell <ijc@hellion.org.uk>
Diffstat (limited to 'board')
-rw-r--r-- | board/sunxi/Kconfig | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/board/sunxi/Kconfig b/board/sunxi/Kconfig index b4d6107..61b4959 100644 --- a/board/sunxi/Kconfig +++ b/board/sunxi/Kconfig @@ -287,6 +287,13 @@ config VIDEO or VGA output found on most sunxi devices. See doc/README.video for info on how to select the video output and mode. +config VIDEO_HDMI + boolean "HDMI output support" + depends on VIDEO && !MACH_SUN8I + default y + ---help--- + Say Y here to add support for outputting video over HDMI. + config VIDEO_LCD_MODE string "LCD panel timing details" depends on VIDEO |