mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2026-05-05 20:56:12 +02:00
The LVDS Display Interface Transmitter handles the LVDS protocol:
it maps the pixels received from the upstream Pixel-DMA (LTDC)
onto the LVDS PHY.
The LVDS controller driver supports the following high-level features:
• FDP-Link-I and OpenLDI (v0.95) protocols
• Single-Link or Dual-Link operation
• Single-Display or Double-Display (with the same content
duplicated on both)
• Flexible Bit-Mapping, including JEIDA and VESA
• RGB888 or RGB666 output
• Synchronous design, with one input pixel per clock cycle
• No resolution limitation.
Acked-by: Yannick Fertre <yannick.fertre@foss.st.com>
Signed-off-by: Raphael Gallais-Pou <raphael.gallais-pou@foss.st.com>
11 lines
317 B
Makefile
11 lines
317 B
Makefile
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
# Copyright (C) STMicroelectronics SA 2017
|
|
#
|
|
# Authors: Philippe Cornu <philippe.cornu@st.com>
|
|
# Yannick Fertre <yannick.fertre@st.com>
|
|
|
|
obj-${CONFIG_VIDEO_STM32} = stm32_ltdc.o
|
|
obj-${CONFIG_VIDEO_STM32_DSI} += stm32_dsi.o
|
|
obj-${CONFIG_VIDEO_STM32_LVDS} += stm32_lvds.o
|