mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2026-06-13 15:03:58 +03:00
Add support for the LCD interfaces (LCDIF1/2). When probed, these interfaces request numerous clocks and power domains, attach the bridge and look for a panel in order to retrieve its capabilities and properties. There is a similar existing driver in the upper folder for other i.MX targets, I discovered this driver a bit late. It is not targeting the i.MX8MP and I have no idea how different can the LCDIF be on this SoC, but I did not manage to get it work, especially because it is not fully compliant with the device-model, especially on the clocks/power management side which is all ad-hoc. This is normal though, it was contributed more than ten years ago. Signed-off-by: Miquel Raynal <miquel.raynal@bootlin.com>
25 lines
591 B
Plaintext
25 lines
591 B
Plaintext
|
|
config VIDEO_IPUV3
|
|
bool "i.MX IPUv3 Core video support"
|
|
depends on VIDEO && (MX5 || MX6)
|
|
help
|
|
This enables framebuffer driver for i.MX processors working
|
|
on the IPUv3(Image Processing Unit) internal graphic processor.
|
|
|
|
config IMX_VIDEO_SKIP
|
|
bool "Enable calling board_video_skip function"
|
|
depends on VIDEO_IPUV3
|
|
|
|
config IMX_HDMI
|
|
bool "Enable HDMI support in IPUv3"
|
|
depends on VIDEO_IPUV3
|
|
|
|
config IMX_LDB
|
|
bool "Freescale i.MX8MP LDB bridge"
|
|
depends on VIDEO_BRIDGE
|
|
help
|
|
Support for i.MX8MP DPI-to-LVDS on-SoC encoder.
|
|
|
|
config IMX_LCDIF
|
|
bool "i.MX LCDIFv3 LCD controller"
|