mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-28 21:45:01 +08:00
1e4d58cd7f
In order to pass DSI specific parameters to the DSI host, we need the driver to create a mipi_dsi_device DSI device that attaches to the host. Use of_graph helpers to get the DSI host DT node. Create a MIPI DSI device using this host. Finally, attach this device to the DSI host. Populate DT parameters (number of data lanes for now) that are required for DSI RX to work correctly. Hardcode few other parameters (rgb, embedded_sync) for now. Select DRM_MIPI_DSI config option only when ADV7533 support is enabled. Signed-off-by: Archit Taneja <architt@codeaurora.org>
16 lines
361 B
Plaintext
16 lines
361 B
Plaintext
config DRM_I2C_ADV7511
|
|
tristate "AV7511 encoder"
|
|
depends on OF
|
|
select DRM_KMS_HELPER
|
|
select REGMAP_I2C
|
|
help
|
|
Support for the Analog Device ADV7511(W) and ADV7513 HDMI encoders.
|
|
|
|
config DRM_I2C_ADV7533
|
|
bool "ADV7533 encoder"
|
|
depends on DRM_I2C_ADV7511
|
|
select DRM_MIPI_DSI
|
|
default y
|
|
help
|
|
Support for the Analog Devices ADV7533 DSI to HDMI encoder.
|