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_ILITEK_IL9322 32 tristate "Ilitek ILI9322 320x240 QVGA panels" 33 depends on OF && SPI 34 select REGMAP 35 help 36 Say Y here if you want to enable support for Ilitek IL9322 37 QVGA (320x240) RGB, YUV and ITU-T BT.656 panels. 38 39config DRM_PANEL_INNOLUX_P079ZCA 40 tristate "Innolux P079ZCA panel" 41 depends on OF 42 depends on DRM_MIPI_DSI 43 depends on BACKLIGHT_CLASS_DEVICE 44 help 45 Say Y here if you want to enable support for Innolux P079ZCA 46 TFT-LCD modules. The panel has a 1024x768 resolution and uses 47 24 bit RGB per pixel. It provides a MIPI DSI interface to 48 the host and has a built-in LED backlight. 49 50config DRM_PANEL_JDI_LT070ME05000 51 tristate "JDI LT070ME05000 WUXGA DSI panel" 52 depends on OF 53 depends on DRM_MIPI_DSI 54 depends on BACKLIGHT_CLASS_DEVICE 55 help 56 Say Y here if you want to enable support for JDI DSI video mode 57 panel as found in Google Nexus 7 (2013) devices. 58 The panel has a 1200(RGB)×1920 (WUXGA) resolution and uses 59 24 bit per pixel. 60 61config DRM_PANEL_SAMSUNG_LD9040 62 tristate "Samsung LD9040 RGB/SPI panel" 63 depends on OF && SPI 64 select VIDEOMODE_HELPERS 65 66config DRM_PANEL_LG_LG4573 67 tristate "LG4573 RGB/SPI panel" 68 depends on OF && SPI 69 select VIDEOMODE_HELPERS 70 help 71 Say Y here if you want to enable support for LG4573 RGB panel. 72 To compile this driver as a module, choose M here. 73 74config DRM_PANEL_ORISETECH_OTM8009A 75 tristate "Orise Technology otm8009a 480x800 dsi 2dl panel" 76 depends on OF 77 depends on DRM_MIPI_DSI 78 depends on BACKLIGHT_CLASS_DEVICE 79 help 80 Say Y here if you want to enable support for Orise Technology 81 otm8009a 480x800 dsi 2dl panel. 82 83config DRM_PANEL_PANASONIC_VVX10F034N00 84 tristate "Panasonic VVX10F034N00 1920x1200 video mode panel" 85 depends on OF 86 depends on DRM_MIPI_DSI 87 depends on BACKLIGHT_CLASS_DEVICE 88 help 89 Say Y here if you want to enable support for Panasonic VVX10F034N00 90 WUXGA (1920x1200) Novatek NT1397-based DSI panel as found in some 91 Xperia Z2 tablets 92 93config DRM_PANEL_RASPBERRYPI_TOUCHSCREEN 94 tristate "Raspberry Pi 7-inch touchscreen panel" 95 depends on DRM_MIPI_DSI 96 help 97 Say Y here if you want to enable support for the Raspberry 98 Pi 7" Touchscreen. To compile this driver as a module, 99 choose M here. 100 101config DRM_PANEL_SAMSUNG_S6E3HA2 102 tristate "Samsung S6E3HA2 DSI video mode panel" 103 depends on OF 104 depends on DRM_MIPI_DSI 105 depends on BACKLIGHT_CLASS_DEVICE 106 select VIDEOMODE_HELPERS 107 108config DRM_PANEL_SAMSUNG_S6E63J0X03 109 tristate "Samsung S6E63J0X03 DSI command mode panel" 110 depends on OF 111 depends on DRM_MIPI_DSI 112 depends on BACKLIGHT_CLASS_DEVICE 113 select VIDEOMODE_HELPERS 114 115config DRM_PANEL_SAMSUNG_S6E8AA0 116 tristate "Samsung S6E8AA0 DSI video mode panel" 117 depends on OF 118 select DRM_MIPI_DSI 119 select VIDEOMODE_HELPERS 120 121config DRM_PANEL_SEIKO_43WVF1G 122 tristate "Seiko 43WVF1G panel" 123 depends on OF 124 depends on BACKLIGHT_CLASS_DEVICE 125 select VIDEOMODE_HELPERS 126 help 127 Say Y here if you want to enable support for the Seiko 128 43WVF1G controller for 800x480 LCD panels 129 130config DRM_PANEL_SHARP_LQ101R1SX01 131 tristate "Sharp LQ101R1SX01 panel" 132 depends on OF 133 depends on DRM_MIPI_DSI 134 depends on BACKLIGHT_CLASS_DEVICE 135 help 136 Say Y here if you want to enable support for Sharp LQ101R1SX01 137 TFT-LCD modules. The panel has a 2560x1600 resolution and uses 138 24 bit RGB per pixel. It provides a dual MIPI DSI interface to 139 the host and has a built-in LED backlight. 140 141 To compile this driver as a module, choose M here: the module 142 will be called panel-sharp-lq101r1sx01. 143 144config DRM_PANEL_SHARP_LS043T1LE01 145 tristate "Sharp LS043T1LE01 qHD video mode panel" 146 depends on OF 147 depends on DRM_MIPI_DSI 148 depends on BACKLIGHT_CLASS_DEVICE 149 help 150 Say Y here if you want to enable support for Sharp LS043T1LE01 qHD 151 (540x960) DSI panel as found on the Qualcomm APQ8074 Dragonboard 152 153config DRM_PANEL_SITRONIX_ST7789V 154 tristate "Sitronix ST7789V panel" 155 depends on OF && SPI 156 depends on BACKLIGHT_CLASS_DEVICE 157 help 158 Say Y here if you want to enable support for the Sitronix 159 ST7789V controller for 240x320 LCD panels 160 161endmenu 162