Skip to content

Commit 6352cd4

Browse files
openedevrobertfoss
authored andcommitted
drm: bridge: Add TI DLPC3433 DSI to DMD bridge
TI DLPC3433 is a MIPI DSI based display controller bridge for processing high resolution DMD based projectors. It has a flexible configuration of MIPI DSI and DPI signal input that produces a DMD output in RGB565, RGB666, RGB888 formats. It supports upto 720p resolution with 60 and 120 Hz refresh rates. Add bridge driver for it. Signed-off-by: Christopher Vollo <chris@renewoutreach.org> Signed-off-by: Jagan Teki <jagan@amarulasolutions.com> Signed-off-by: Robert Foss <robert.foss@linaro.org> Link: https://patchwork.freedesktop.org/patch/msgid/20220603140349.3563612-2-jagan@amarulasolutions.com
1 parent e1402c6 commit 6352cd4

File tree

4 files changed

+435
-0
lines changed

4 files changed

+435
-0
lines changed

MAINTAINERS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6435,6 +6435,7 @@ DRM DRIVER FOR TI DLPC3433 MIPI DSI TO DMD BRIDGE
64356435
M: Jagan Teki <jagan@amarulasolutions.com>
64366436
S: Maintained
64376437
F: Documentation/devicetree/bindings/display/bridge/ti,dlpc3433.yaml
6438+
F: drivers/gpu/drm/bridge/ti-dlpc3433.c
64386439

64396440
DRM DRIVER FOR TI SN65DSI86 BRIDGE CHIP
64406441
R: Douglas Anderson <dianders@chromium.org>

drivers/gpu/drm/bridge/Kconfig

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -321,6 +321,22 @@ config DRM_TOSHIBA_TC358775
321321
help
322322
Toshiba TC358775 DSI/LVDS bridge chip driver.
323323

324+
config DRM_TI_DLPC3433
325+
tristate "TI DLPC3433 Display controller"
326+
depends on DRM && DRM_PANEL
327+
depends on OF
328+
select DRM_MIPI_DSI
329+
help
330+
TI DLPC3433 is a MIPI DSI based display controller bridge
331+
for processing high resolution DMD based projectors.
332+
333+
It has a flexible configuration of MIPI DSI and DPI signal
334+
input that produces a DMD output in RGB565, RGB666, RGB888
335+
formats.
336+
337+
It supports upto 720p resolution with 60 and 120 Hz refresh
338+
rates.
339+
324340
config DRM_TI_TFP410
325341
tristate "TI TFP410 DVI/HDMI bridge"
326342
depends on OF

drivers/gpu/drm/bridge/Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ obj-$(CONFIG_DRM_TOSHIBA_TC358767) += tc358767.o
2626
obj-$(CONFIG_DRM_TOSHIBA_TC358768) += tc358768.o
2727
obj-$(CONFIG_DRM_TOSHIBA_TC358775) += tc358775.o
2828
obj-$(CONFIG_DRM_I2C_ADV7511) += adv7511/
29+
obj-$(CONFIG_DRM_TI_DLPC3433) += ti-dlpc3433.o
2930
obj-$(CONFIG_DRM_TI_SN65DSI83) += ti-sn65dsi83.o
3031
obj-$(CONFIG_DRM_TI_SN65DSI86) += ti-sn65dsi86.o
3132
obj-$(CONFIG_DRM_TI_TFP410) += ti-tfp410.o

0 commit comments

Comments
 (0)