1config DRM_PANEL 2 bool 3 depends on DRM 4 help 5 Panel registration and lookup framework. 6 7menu "Display Panels" 8 depends on DRM && DRM_PANEL 9 10config DRM_PANEL_LVDS 11 tristate "Generic LVDS panel driver" 12 depends on OF 13 depends on BACKLIGHT_CLASS_DEVICE 14 select VIDEOMODE_HELPERS 15 help 16 This driver supports LVDS panels that don't require device-specific 17 handling of power supplies or control signals. It implements automatic 18 backlight handling if the panel is attached to a backlight controller. 19 20config DRM_PANEL_SIMPLE 21 tristate "support for simple panels" 22 depends on OF 23 depends on BACKLIGHT_CLASS_DEVICE 24 select VIDEOMODE_HELPERS 25 help 26 DRM panel driver for dumb panels that need at most a regulator and 27 a GPIO to be powered up. Optionally a backlight can be attached so 28 that it can be automatically turned off when the panel goes into a 29 low power state. 30 31config DRM_PANEL_INNOLUX_P079ZCA 32 tristate "Innolux P079ZCA panel" 33 depends on OF 34 depends on DRM_MIPI_DSI 35 depends on BACKLIGHT_CLASS_DEVICE 36 help 37 Say Y here if you want to enable support for Innolux P079ZCA 38 TFT-LCD modules. The panel has a 1024x768 resolution and uses 39 24 bit RGB per pixel. It provides a MIPI DSI interface to 40 the host and has a built-in LED backlight. 41 42config DRM_PANEL_JDI_LT070ME05000 43 tristate "JDI LT070ME05000 WUXGA DSI panel" 44 depends on OF 45 depends on DRM_MIPI_DSI 46 depends on BACKLIGHT_CLASS_DEVICE 47 help 48 Say Y here if you want to enable support for JDI DSI video mode 49 panel as found in Google Nexus 7 (2013) devices. 50 The panel has a 1200(RGB)×1920 (WUXGA) resolution and uses 51 24 bit per pixel. 52 53config DRM_PANEL_SAMSUNG_LD9040 54 tristate "Samsung LD9040 RGB/SPI panel" 55 depends on OF && SPI 56 select VIDEOMODE_HELPERS 57 58config DRM_PANEL_LG_LG4573 59 tristate "LG4573 RGB/SPI panel" 60 depends on OF && SPI 61 select VIDEOMODE_HELPERS 62 help 63 Say Y here if you want to enable support for LG4573 RGB panel. 64 To compile this driver as a module, choose M here. 65 66config DRM_PANEL_PANASONIC_VVX10F034N00 67 tristate "Panasonic VVX10F034N00 1920x1200 video mode panel" 68 depends on OF 69 depends on DRM_MIPI_DSI 70 depends on BACKLIGHT_CLASS_DEVICE 71 help 72 Say Y here if you want to enable support for Panasonic VVX10F034N00 73 WUXGA (1920x1200) Novatek NT1397-based DSI panel as found in some 74 Xperia Z2 tablets 75 76config DRM_PANEL_SAMSUNG_S6E3HA2 77 tristate "Samsung S6E3HA2 DSI video mode panel" 78 depends on OF 79 depends on DRM_MIPI_DSI 80 depends on BACKLIGHT_CLASS_DEVICE 81 select VIDEOMODE_HELPERS 82 83config DRM_PANEL_SAMSUNG_S6E8AA0 84 tristate "Samsung S6E8AA0 DSI video mode panel" 85 depends on OF 86 select DRM_MIPI_DSI 87 select VIDEOMODE_HELPERS 88 89config DRM_PANEL_SHARP_LQ101R1SX01 90 tristate "Sharp LQ101R1SX01 panel" 91 depends on OF 92 depends on DRM_MIPI_DSI 93 depends on BACKLIGHT_CLASS_DEVICE 94 help 95 Say Y here if you want to enable support for Sharp LQ101R1SX01 96 TFT-LCD modules. The panel has a 2560x1600 resolution and uses 97 24 bit RGB per pixel. It provides a dual MIPI DSI interface to 98 the host and has a built-in LED backlight. 99 100 To compile this driver as a module, choose M here: the module 101 will be called panel-sharp-lq101r1sx01. 102 103config DRM_PANEL_SHARP_LS043T1LE01 104 tristate "Sharp LS043T1LE01 qHD video mode panel" 105 depends on OF 106 depends on DRM_MIPI_DSI 107 depends on BACKLIGHT_CLASS_DEVICE 108 help 109 Say Y here if you want to enable support for Sharp LS043T1LE01 qHD 110 (540x960) DSI panel as found on the Qualcomm APQ8074 Dragonboard 111 112config DRM_PANEL_SITRONIX_ST7789V 113 tristate "Sitronix ST7789V panel" 114 depends on OF && SPI 115 depends on BACKLIGHT_CLASS_DEVICE 116 help 117 Say Y here if you want to enable support for the Sitronix 118 ST7789V controller for 240x320 LCD panels 119 120endmenu 121