1ec8f24b7SThomas Gleixner# SPDX-License-Identifier: GPL-2.0-only 2aead40eaSThierry Redingconfig DRM_PANEL 3aead40eaSThierry Reding bool 4aead40eaSThierry Reding depends on DRM 5aead40eaSThierry Reding help 6aead40eaSThierry Reding Panel registration and lookup framework. 7280921deSThierry Reding 8280921deSThierry Redingmenu "Display Panels" 9937ca284SRussell King depends on DRM && DRM_PANEL 10280921deSThierry Reding 117467389bSPaul Cercueilconfig DRM_PANEL_ABT_Y030XX067A 127467389bSPaul Cercueil tristate "ABT Y030XX067A 320x480 LCD panel" 137467389bSPaul Cercueil depends on OF && SPI 147467389bSPaul Cercueil select REGMAP_SPI 157467389bSPaul Cercueil help 167467389bSPaul Cercueil Say Y here to enable support for the Asia Better Technology Ltd. 177467389bSPaul Cercueil Y030XX067A 320x480 3.0" panel as found in the YLM RG-280M, RG-300 187467389bSPaul Cercueil and RG-99 handheld gaming consoles. 197467389bSPaul Cercueil 20f40f5b87SLinus Walleijconfig DRM_PANEL_ARM_VERSATILE 21f40f5b87SLinus Walleij tristate "ARM Versatile panel driver" 22f40f5b87SLinus Walleij depends on OF 23f40f5b87SLinus Walleij depends on MFD_SYSCON 24f40f5b87SLinus Walleij select VIDEOMODE_HELPERS 25f40f5b87SLinus Walleij help 26f40f5b87SLinus Walleij This driver supports the ARM Versatile panels connected to ARM 27f40f5b87SLinus Walleij reference designs. The panel is detected using special registers 28f40f5b87SLinus Walleij in the Versatile family syscon registers. 29f40f5b87SLinus Walleij 3002ed76b6SKonrad Dybcioconfig DRM_PANEL_ASUS_Z00T_TM5P5_NT35596 3102ed76b6SKonrad Dybcio tristate "ASUS Z00T TM5P5 NT35596 panel" 3202ed76b6SKonrad Dybcio depends on GPIOLIB && OF 3302ed76b6SKonrad Dybcio depends on DRM_MIPI_DSI 3402ed76b6SKonrad Dybcio depends on BACKLIGHT_CLASS_DEVICE 3502ed76b6SKonrad Dybcio help 3602ed76b6SKonrad Dybcio Say Y here if you want to enable support for the ASUS TMP5P5 3702ed76b6SKonrad Dybcio NT35596 1080x1920 video mode panel as found in some Asus 3802ed76b6SKonrad Dybcio Zenfone 2 Laser Z00T devices. 3902ed76b6SKonrad Dybcio 404b6dd3caSJerry Hanconfig DRM_PANEL_BOE_HIMAX8279D 414b6dd3caSJerry Han tristate "Boe Himax8279d panel" 424b6dd3caSJerry Han depends on OF 434b6dd3caSJerry Han depends on DRM_MIPI_DSI 444b6dd3caSJerry Han depends on BACKLIGHT_CLASS_DEVICE 454b6dd3caSJerry Han help 464b6dd3caSJerry Han Say Y here if you want to enable support for Boe Himax8279d 474b6dd3caSJerry Han TFT-LCD modules. The panel has a 1200x1920 resolution and uses 484b6dd3caSJerry Han 24 bit RGB per pixel. It provides a MIPI DSI interface to 494b6dd3caSJerry Han the host and has a built-in LED backlight. 504b6dd3caSJerry Han 51a869b9dbSJitao Shiconfig DRM_PANEL_BOE_TV101WUM_NL6 5244de19e3SJitao Shi tristate "BOE TV101WUM and AUO KD101N80 45NA 1200x1920 panel" 53a869b9dbSJitao Shi depends on OF 54a869b9dbSJitao Shi depends on DRM_MIPI_DSI 55a869b9dbSJitao Shi depends on BACKLIGHT_CLASS_DEVICE 56a869b9dbSJitao Shi help 5744de19e3SJitao Shi Say Y here if you want to support for BOE TV101WUM and AUO KD101N80 5844de19e3SJitao Shi 45NA WUXGA PANEL DSI Video Mode panel 59a869b9dbSJitao Shi 60*cf64148aSSebastian Reichelconfig DRM_PANEL_DSI_CM 61*cf64148aSSebastian Reichel tristate "Generic DSI command mode panels" 62*cf64148aSSebastian Reichel depends on OF 63*cf64148aSSebastian Reichel depends on DRM_MIPI_DSI 64*cf64148aSSebastian Reichel depends on BACKLIGHT_CLASS_DEVICE 65*cf64148aSSebastian Reichel help 66*cf64148aSSebastian Reichel DRM panel driver for DSI command mode panels with support for 67*cf64148aSSebastian Reichel embedded and external backlights. 68*cf64148aSSebastian Reichel 697c9dff5bSLaurent Pinchartconfig DRM_PANEL_LVDS 707c9dff5bSLaurent Pinchart tristate "Generic LVDS panel driver" 717c9dff5bSLaurent Pinchart depends on OF 727c9dff5bSLaurent Pinchart depends on BACKLIGHT_CLASS_DEVICE 737c9dff5bSLaurent Pinchart select VIDEOMODE_HELPERS 747c9dff5bSLaurent Pinchart help 757c9dff5bSLaurent Pinchart This driver supports LVDS panels that don't require device-specific 767c9dff5bSLaurent Pinchart handling of power supplies or control signals. It implements automatic 777c9dff5bSLaurent Pinchart backlight handling if the panel is attached to a backlight controller. 787c9dff5bSLaurent Pinchart 79280921deSThierry Redingconfig DRM_PANEL_SIMPLE 80280921deSThierry Reding tristate "support for simple panels" 81280921deSThierry Reding depends on OF 8283b37eacSArnd Bergmann depends on BACKLIGHT_CLASS_DEVICE 83a5d3e625SPhilipp Zabel select VIDEOMODE_HELPERS 84280921deSThierry Reding help 85280921deSThierry Reding DRM panel driver for dumb panels that need at most a regulator and 86280921deSThierry Reding a GPIO to be powered up. Optionally a backlight can be attached so 87280921deSThierry Reding that it can be automatically turned off when the panel goes into a 88280921deSThierry Reding low power state. 89280921deSThierry Reding 905b660336SHeiko Stuebnerconfig DRM_PANEL_ELIDA_KD35T133 915b660336SHeiko Stuebner tristate "Elida KD35T133 panel driver" 925b660336SHeiko Stuebner depends on OF 935b660336SHeiko Stuebner depends on DRM_MIPI_DSI 945b660336SHeiko Stuebner depends on BACKLIGHT_CLASS_DEVICE 955b660336SHeiko Stuebner help 965b660336SHeiko Stuebner Say Y here if you want to enable support for the Elida 975b660336SHeiko Stuebner KD35T133 controller for 320x480 LCD panels with MIPI-DSI 985b660336SHeiko Stuebner system interfaces. 995b660336SHeiko Stuebner 100fac47b1eSIcenowy Zhengconfig DRM_PANEL_FEIXIN_K101_IM2BA02 101fac47b1eSIcenowy Zheng tristate "Feixin K101 IM2BA02 panel" 102fac47b1eSIcenowy Zheng depends on OF 103fac47b1eSIcenowy Zheng depends on DRM_MIPI_DSI 104fac47b1eSIcenowy Zheng depends on BACKLIGHT_CLASS_DEVICE 105fac47b1eSIcenowy Zheng help 106fac47b1eSIcenowy Zheng Say Y here if you want to enable support for the Feixin K101 IM2BA02 107fac47b1eSIcenowy Zheng 4-lane 800x1280 MIPI DSI panel. 108fac47b1eSIcenowy Zheng 10969dc678aSJagan Tekiconfig DRM_PANEL_FEIYANG_FY07024DI26A30D 11069dc678aSJagan Teki tristate "Feiyang FY07024DI26A30-D MIPI-DSI LCD panel" 11169dc678aSJagan Teki depends on OF 11269dc678aSJagan Teki depends on DRM_MIPI_DSI 11369dc678aSJagan Teki depends on BACKLIGHT_CLASS_DEVICE 11469dc678aSJagan Teki help 11569dc678aSJagan Teki Say Y if you want to enable support for panels based on the 11669dc678aSJagan Teki Feiyang FY07024DI26A30-D MIPI-DSI interface. 11769dc678aSJagan Teki 1180ee2e37aSLinus Walleijconfig DRM_PANEL_ILITEK_IL9322 1190ee2e37aSLinus Walleij tristate "Ilitek ILI9322 320x240 QVGA panels" 1200ee2e37aSLinus Walleij depends on OF && SPI 1210ee2e37aSLinus Walleij select REGMAP 1220ee2e37aSLinus Walleij help 1230ee2e37aSLinus Walleij Say Y here if you want to enable support for Ilitek IL9322 1240ee2e37aSLinus Walleij QVGA (320x240) RGB, YUV and ITU-T BT.656 panels. 1250ee2e37aSLinus Walleij 12626aec255SMaxime Ripardconfig DRM_PANEL_ILITEK_ILI9881C 12726aec255SMaxime Ripard tristate "Ilitek ILI9881C-based panels" 12826aec255SMaxime Ripard depends on OF 12926aec255SMaxime Ripard depends on DRM_MIPI_DSI 13026aec255SMaxime Ripard depends on BACKLIGHT_CLASS_DEVICE 13126aec255SMaxime Ripard help 13226aec255SMaxime Ripard Say Y if you want to enable support for panels based on the 13326aec255SMaxime Ripard Ilitek ILI9881c controller. 13426aec255SMaxime Ripard 13514c8f2e9SChris Zhongconfig DRM_PANEL_INNOLUX_P079ZCA 13614c8f2e9SChris Zhong tristate "Innolux P079ZCA panel" 13714c8f2e9SChris Zhong depends on OF 13814c8f2e9SChris Zhong depends on DRM_MIPI_DSI 13914c8f2e9SChris Zhong depends on BACKLIGHT_CLASS_DEVICE 14014c8f2e9SChris Zhong help 14114c8f2e9SChris Zhong Say Y here if you want to enable support for Innolux P079ZCA 14214c8f2e9SChris Zhong TFT-LCD modules. The panel has a 1024x768 resolution and uses 14314c8f2e9SChris Zhong 24 bit RGB per pixel. It provides a MIPI DSI interface to 14414c8f2e9SChris Zhong the host and has a built-in LED backlight. 14514c8f2e9SChris Zhong 146c96f5662SVinay Simha BNconfig DRM_PANEL_JDI_LT070ME05000 147c96f5662SVinay Simha BN tristate "JDI LT070ME05000 WUXGA DSI panel" 148c96f5662SVinay Simha BN depends on OF 149c96f5662SVinay Simha BN depends on DRM_MIPI_DSI 150c96f5662SVinay Simha BN depends on BACKLIGHT_CLASS_DEVICE 151c96f5662SVinay Simha BN help 152c96f5662SVinay Simha BN Say Y here if you want to enable support for JDI DSI video mode 153c96f5662SVinay Simha BN panel as found in Google Nexus 7 (2013) devices. 154c96f5662SVinay Simha BN The panel has a 1200(RGB)×1920 (WUXGA) resolution and uses 155c96f5662SVinay Simha BN 24 bit per pixel. 156c96f5662SVinay Simha BN 157b2152121SNeil Armstrongconfig DRM_PANEL_KHADAS_TS050 158b2152121SNeil Armstrong tristate "Khadas TS050 panel" 159b2152121SNeil Armstrong depends on OF 160b2152121SNeil Armstrong depends on DRM_MIPI_DSI 161b2152121SNeil Armstrong depends on BACKLIGHT_CLASS_DEVICE 162b2152121SNeil Armstrong help 163b2152121SNeil Armstrong Say Y here if you want to enable support for Khadas TS050 TFT-LCD 164b2152121SNeil Armstrong panel module. The panel has a 1080x1920 resolution and uses 165b2152121SNeil Armstrong 24 bit RGB per pixel. It provides a MIPI DSI interface to 166b2152121SNeil Armstrong the host, a built-in LED backlight and touch controller. 167b2152121SNeil Armstrong 1682a994cbeSNickey Yangconfig DRM_PANEL_KINGDISPLAY_KD097D04 1692a994cbeSNickey Yang tristate "Kingdisplay kd097d04 panel" 1702a994cbeSNickey Yang depends on OF 1712a994cbeSNickey Yang depends on DRM_MIPI_DSI 1722a994cbeSNickey Yang depends on BACKLIGHT_CLASS_DEVICE 1732a994cbeSNickey Yang help 1742a994cbeSNickey Yang Say Y here if you want to enable support for Kingdisplay kd097d04 1752a994cbeSNickey Yang TFT-LCD modules. The panel has a 1536x2048 resolution and uses 1762a994cbeSNickey Yang 24 bit RGB per pixel. It provides a MIPI DSI interface to 1772a994cbeSNickey Yang the host and has a built-in LED backlight. 1782a994cbeSNickey Yang 1796ea4383bSHeiko Stuebnerconfig DRM_PANEL_LEADTEK_LTK050H3146W 1806ea4383bSHeiko Stuebner tristate "Leadtek LTK050H3146W panel" 1816ea4383bSHeiko Stuebner depends on OF 1826ea4383bSHeiko Stuebner depends on DRM_MIPI_DSI 1836ea4383bSHeiko Stuebner depends on BACKLIGHT_CLASS_DEVICE 1846ea4383bSHeiko Stuebner help 1856ea4383bSHeiko Stuebner Say Y here if you want to enable support for Leadtek LTK050H3146W 1866ea4383bSHeiko Stuebner TFT-LCD modules. The panel has a 720x1280 resolution and uses 1876ea4383bSHeiko Stuebner 24 bit RGB per pixel. It provides a MIPI DSI interface to 1886ea4383bSHeiko Stuebner the host and has a built-in LED backlight. 1896ea4383bSHeiko Stuebner 190e98910beSHeiko Stuebnerconfig DRM_PANEL_LEADTEK_LTK500HD1829 191e98910beSHeiko Stuebner tristate "Leadtek LTK500HD1829 panel" 192e98910beSHeiko Stuebner depends on OF 193e98910beSHeiko Stuebner depends on DRM_MIPI_DSI 194e98910beSHeiko Stuebner depends on BACKLIGHT_CLASS_DEVICE 195e98910beSHeiko Stuebner help 196e98910beSHeiko Stuebner Say Y here if you want to enable support for Kingdisplay kd097d04 197e98910beSHeiko Stuebner TFT-LCD modules. The panel has a 1536x2048 resolution and uses 198e98910beSHeiko Stuebner 24 bit RGB per pixel. It provides a MIPI DSI interface to 199e98910beSHeiko Stuebner the host and has a built-in LED backlight. 200e98910beSHeiko Stuebner 2019ef7e25fSThierry Redingconfig DRM_PANEL_SAMSUNG_LD9040 2029ef7e25fSThierry Reding tristate "Samsung LD9040 RGB/SPI panel" 20350d5ed39SRussell King depends on OF && SPI 204ff219937SAndrzej Hajda select VIDEOMODE_HELPERS 205ff219937SAndrzej Hajda 206f5b0c654SLaurent Pinchartconfig DRM_PANEL_LG_LB035Q02 207f5b0c654SLaurent Pinchart tristate "LG LB035Q024573 RGB panel" 208f5b0c654SLaurent Pinchart depends on GPIOLIB && OF && SPI 209f5b0c654SLaurent Pinchart help 210f5b0c654SLaurent Pinchart Say Y here if you want to enable support for the LB035Q02 RGB panel 211f5b0c654SLaurent Pinchart (found on the Gumstix Overo Palo35 board). To compile this driver as 212f5b0c654SLaurent Pinchart a module, choose M here. 213f5b0c654SLaurent Pinchart 21458c467ecSHeiko Schocherconfig DRM_PANEL_LG_LG4573 21558c467ecSHeiko Schocher tristate "LG4573 RGB/SPI panel" 21658c467ecSHeiko Schocher depends on OF && SPI 21758c467ecSHeiko Schocher select VIDEOMODE_HELPERS 21858c467ecSHeiko Schocher help 21958c467ecSHeiko Schocher Say Y here if you want to enable support for LG4573 RGB panel. 22058c467ecSHeiko Schocher To compile this driver as a module, choose M here. 22158c467ecSHeiko Schocher 222df439abeSLaurent Pinchartconfig DRM_PANEL_NEC_NL8048HL11 223df439abeSLaurent Pinchart tristate "NEC NL8048HL11 RGB panel" 224df439abeSLaurent Pinchart depends on GPIOLIB && OF && SPI 225df439abeSLaurent Pinchart help 226df439abeSLaurent Pinchart Say Y here if you want to enable support for the NEC NL8048HL11 RGB 227df439abeSLaurent Pinchart panel (found on the Zoom2/3/3630 SDP boards). To compile this driver 228df439abeSLaurent Pinchart as a module, choose M here. 229df439abeSLaurent Pinchart 230899f24edSLinus Walleijconfig DRM_PANEL_NOVATEK_NT35510 231899f24edSLinus Walleij tristate "Novatek NT35510 RGB panel driver" 232899f24edSLinus Walleij depends on OF 233899f24edSLinus Walleij depends on DRM_MIPI_DSI 234899f24edSLinus Walleij depends on BACKLIGHT_CLASS_DEVICE 235899f24edSLinus Walleij help 236899f24edSLinus Walleij Say Y here if you want to enable support for the panels built 237899f24edSLinus Walleij around the Novatek NT35510 display controller, such as some 238899f24edSLinus Walleij Hydis panels. 239899f24edSLinus Walleij 240070c7fa5SSumit Semwalconfig DRM_PANEL_NOVATEK_NT36672A 241070c7fa5SSumit Semwal tristate "Novatek NT36672A DSI panel" 242070c7fa5SSumit Semwal depends on OF 243070c7fa5SSumit Semwal depends on DRM_MIPI_DSI 244070c7fa5SSumit Semwal depends on BACKLIGHT_CLASS_DEVICE 245070c7fa5SSumit Semwal help 246070c7fa5SSumit Semwal Say Y here if you want to enable support for the panels built 247070c7fa5SSumit Semwal around the Novatek NT36672A display controller, such as some 248070c7fa5SSumit Semwal Tianma panels used in a few Xiaomi Poco F1 mobile phones. 249070c7fa5SSumit Semwal 250ecdcbbb7SPaul Cercueilconfig DRM_PANEL_NOVATEK_NT39016 251ecdcbbb7SPaul Cercueil tristate "Novatek NT39016 RGB/SPI panel" 252ecdcbbb7SPaul Cercueil depends on OF && SPI 253ecdcbbb7SPaul Cercueil depends on BACKLIGHT_CLASS_DEVICE 254ecdcbbb7SPaul Cercueil select REGMAP_SPI 255ecdcbbb7SPaul Cercueil help 256ecdcbbb7SPaul Cercueil Say Y here if you want to enable support for the panels built 257ecdcbbb7SPaul Cercueil around the Novatek NT39016 display controller. 258ecdcbbb7SPaul Cercueil 25972967d56SGuido Güntherconfig DRM_PANEL_MANTIX_MLAF057WE51 26072967d56SGuido Günther tristate "Mantix MLAF057WE51-X MIPI-DSI LCD panel" 26172967d56SGuido Günther depends on OF 26272967d56SGuido Günther depends on DRM_MIPI_DSI 26372967d56SGuido Günther depends on BACKLIGHT_CLASS_DEVICE 26472967d56SGuido Günther help 26572967d56SGuido Günther Say Y here if you want to enable support for the Mantix 26672967d56SGuido Günther MLAF057WE51-X MIPI DSI panel as e.g. used in the Librem 5. It 26772967d56SGuido Günther has a resolution of 720x1440 pixels, a built in backlight and touch 26872967d56SGuido Günther controller. 26972967d56SGuido Günther 27017fd7a9dSStefan Mavrodievconfig DRM_PANEL_OLIMEX_LCD_OLINUXINO 27117fd7a9dSStefan Mavrodiev tristate "Olimex LCD-OLinuXino panel" 27217fd7a9dSStefan Mavrodiev depends on OF 27317fd7a9dSStefan Mavrodiev depends on I2C 27417fd7a9dSStefan Mavrodiev depends on BACKLIGHT_CLASS_DEVICE 27517fd7a9dSStefan Mavrodiev help 27617fd7a9dSStefan Mavrodiev The panel is used with different sizes LCDs, from 480x272 to 27717fd7a9dSStefan Mavrodiev 1280x800, and 24 bit per pixel. 27817fd7a9dSStefan Mavrodiev 27917fd7a9dSStefan Mavrodiev Say Y here if you want to enable support for Olimex Ltd. 28017fd7a9dSStefan Mavrodiev LCD-OLinuXino panel. 28117fd7a9dSStefan Mavrodiev 282f0a5bb98SPhilippe CORNUconfig DRM_PANEL_ORISETECH_OTM8009A 283f0a5bb98SPhilippe CORNU tristate "Orise Technology otm8009a 480x800 dsi 2dl panel" 284f0a5bb98SPhilippe CORNU depends on OF 285f0a5bb98SPhilippe CORNU depends on DRM_MIPI_DSI 286f0a5bb98SPhilippe CORNU depends on BACKLIGHT_CLASS_DEVICE 287f0a5bb98SPhilippe CORNU help 288f0a5bb98SPhilippe CORNU Say Y here if you want to enable support for Orise Technology 289f0a5bb98SPhilippe CORNU otm8009a 480x800 dsi 2dl panel. 290f0a5bb98SPhilippe CORNU 291b97b042aSPeter Ujfalusiconfig DRM_PANEL_OSD_OSD101T2587_53TS 292b97b042aSPeter Ujfalusi tristate "OSD OSD101T2587-53TS DSI 1920x1200 video mode panel" 293b97b042aSPeter Ujfalusi depends on OF 294b97b042aSPeter Ujfalusi depends on DRM_MIPI_DSI 295b97b042aSPeter Ujfalusi depends on BACKLIGHT_CLASS_DEVICE 296b97b042aSPeter Ujfalusi help 297b97b042aSPeter Ujfalusi Say Y here if you want to enable support for One Stop Displays 298b97b042aSPeter Ujfalusi OSD101T2587-53TS 10.1" 1920x1200 dsi panel. 299b97b042aSPeter Ujfalusi 300086ceb6bSWerner Johanssonconfig DRM_PANEL_PANASONIC_VVX10F034N00 301086ceb6bSWerner Johansson tristate "Panasonic VVX10F034N00 1920x1200 video mode panel" 302086ceb6bSWerner Johansson depends on OF 303086ceb6bSWerner Johansson depends on DRM_MIPI_DSI 304086ceb6bSWerner Johansson depends on BACKLIGHT_CLASS_DEVICE 305086ceb6bSWerner Johansson help 306086ceb6bSWerner Johansson Say Y here if you want to enable support for Panasonic VVX10F034N00 307086ceb6bSWerner Johansson WUXGA (1920x1200) Novatek NT1397-based DSI panel as found in some 308086ceb6bSWerner Johansson Xperia Z2 tablets 309086ceb6bSWerner Johansson 3102f733d61SEric Anholtconfig DRM_PANEL_RASPBERRYPI_TOUCHSCREEN 3112f733d61SEric Anholt tristate "Raspberry Pi 7-inch touchscreen panel" 3122f733d61SEric Anholt depends on DRM_MIPI_DSI 3132f733d61SEric Anholt help 3142f733d61SEric Anholt Say Y here if you want to enable support for the Raspberry 3152f733d61SEric Anholt Pi 7" Touchscreen. To compile this driver as a module, 3162f733d61SEric Anholt choose M here. 3172f733d61SEric Anholt 318f63df31dSRobert Chirasconfig DRM_PANEL_RAYDIUM_RM67191 319f63df31dSRobert Chiras tristate "Raydium RM67191 FHD 1080x1920 DSI video mode panel" 320f63df31dSRobert Chiras depends on OF 321f63df31dSRobert Chiras depends on DRM_MIPI_DSI 322f63df31dSRobert Chiras depends on BACKLIGHT_CLASS_DEVICE 323f63df31dSRobert Chiras help 324f63df31dSRobert Chiras Say Y here if you want to enable support for Raydium RM67191 FHD 325f63df31dSRobert Chiras (1080x1920) DSI panel. 326f63df31dSRobert Chiras 3272b7ed18bSPhilippe CORNUconfig DRM_PANEL_RAYDIUM_RM68200 3282b7ed18bSPhilippe CORNU tristate "Raydium RM68200 720x1280 DSI video mode panel" 3292b7ed18bSPhilippe CORNU depends on OF 3302b7ed18bSPhilippe CORNU depends on DRM_MIPI_DSI 331a8efe516SArnd Bergmann depends on BACKLIGHT_CLASS_DEVICE 3322b7ed18bSPhilippe CORNU help 3332b7ed18bSPhilippe CORNU Say Y here if you want to enable support for Raydium RM68200 3342b7ed18bSPhilippe CORNU 720x1280 DSI video mode panel. 3352b7ed18bSPhilippe CORNU 336979a1bb6SKonstantin Sudakovconfig DRM_PANEL_RONBO_RB070D30 337979a1bb6SKonstantin Sudakov tristate "Ronbo Electronics RB070D30 panel" 338979a1bb6SKonstantin Sudakov depends on OF 339979a1bb6SKonstantin Sudakov depends on DRM_MIPI_DSI 340979a1bb6SKonstantin Sudakov depends on BACKLIGHT_CLASS_DEVICE 341979a1bb6SKonstantin Sudakov help 342979a1bb6SKonstantin Sudakov Say Y here if you want to enable support for Ronbo Electronics 343979a1bb6SKonstantin Sudakov RB070D30 1024x600 DSI panel. 344979a1bb6SKonstantin Sudakov 345ac1d6d74SLinus Walleijconfig DRM_PANEL_SAMSUNG_S6D16D0 346ac1d6d74SLinus Walleij tristate "Samsung S6D16D0 DSI video mode panel" 347ac1d6d74SLinus Walleij depends on OF 348ac1d6d74SLinus Walleij depends on DRM_MIPI_DSI 349ac1d6d74SLinus Walleij select VIDEOMODE_HELPERS 350ac1d6d74SLinus Walleij 351ed29f942SHoegeun Kwonconfig DRM_PANEL_SAMSUNG_S6E3HA2 352ed29f942SHoegeun Kwon tristate "Samsung S6E3HA2 DSI video mode panel" 353ed29f942SHoegeun Kwon depends on OF 354ed29f942SHoegeun Kwon depends on DRM_MIPI_DSI 35593023c14SArnd Bergmann depends on BACKLIGHT_CLASS_DEVICE 356ed29f942SHoegeun Kwon select VIDEOMODE_HELPERS 357ed29f942SHoegeun Kwon 3582a05177dSHoegeun Kwonconfig DRM_PANEL_SAMSUNG_S6E63J0X03 3592a05177dSHoegeun Kwon tristate "Samsung S6E63J0X03 DSI command mode panel" 3602a05177dSHoegeun Kwon depends on OF 3612a05177dSHoegeun Kwon depends on DRM_MIPI_DSI 3622a05177dSHoegeun Kwon depends on BACKLIGHT_CLASS_DEVICE 3632a05177dSHoegeun Kwon select VIDEOMODE_HELPERS 3642a05177dSHoegeun Kwon 365994a08a2SPaweł Chmielconfig DRM_PANEL_SAMSUNG_S6E63M0 366b7b23e44SLinus Walleij tristate "Samsung S6E63M0 RGB panel" 367994a08a2SPaweł Chmiel depends on OF 368994a08a2SPaweł Chmiel depends on BACKLIGHT_CLASS_DEVICE 369994a08a2SPaweł Chmiel help 370994a08a2SPaweł Chmiel Say Y here if you want to enable support for Samsung S6E63M0 371b7b23e44SLinus Walleij AMOLED LCD panel. This panel can be accessed using SPI or 372b7b23e44SLinus Walleij DSI. 373b7b23e44SLinus Walleij 374b7b23e44SLinus Walleijconfig DRM_PANEL_SAMSUNG_S6E63M0_SPI 375b7b23e44SLinus Walleij tristate "Samsung S6E63M0 RGB SPI interface" 376b7b23e44SLinus Walleij depends on SPI 377b7b23e44SLinus Walleij depends on DRM_PANEL_SAMSUNG_S6E63M0 378b7b23e44SLinus Walleij default DRM_PANEL_SAMSUNG_S6E63M0 379b7b23e44SLinus Walleij help 380b7b23e44SLinus Walleij Say Y here if you want to be able to access the Samsung 381b7b23e44SLinus Walleij S6E63M0 panel using SPI. 382994a08a2SPaweł Chmiel 383435e06c0SLinus Walleijconfig DRM_PANEL_SAMSUNG_S6E63M0_DSI 384435e06c0SLinus Walleij tristate "Samsung S6E63M0 RGB DSI interface" 385435e06c0SLinus Walleij depends on DRM_MIPI_DSI 386435e06c0SLinus Walleij depends on DRM_PANEL_SAMSUNG_S6E63M0 387435e06c0SLinus Walleij help 388435e06c0SLinus Walleij Say Y here if you want to be able to access the Samsung 389435e06c0SLinus Walleij S6E63M0 panel using DSI. 390435e06c0SLinus Walleij 3916d598a32SMichael Srbaconfig DRM_PANEL_SAMSUNG_S6E88A0_AMS452EF01 3926d598a32SMichael Srba tristate "Samsung AMS452EF01 panel with S6E88A0 DSI video mode controller" 3936d598a32SMichael Srba depends on OF 3946d598a32SMichael Srba select DRM_MIPI_DSI 3956d598a32SMichael Srba select VIDEOMODE_HELPERS 3966d598a32SMichael Srba 3979ef7e25fSThierry Redingconfig DRM_PANEL_SAMSUNG_S6E8AA0 3989ef7e25fSThierry Reding tristate "Samsung S6E8AA0 DSI video mode panel" 39902051ca0SAndrzej Hajda depends on OF 40002051ca0SAndrzej Hajda select DRM_MIPI_DSI 40102051ca0SAndrzej Hajda select VIDEOMODE_HELPERS 40202051ca0SAndrzej Hajda 4035933baa3SCaleb Connollyconfig DRM_PANEL_SAMSUNG_SOFEF00 4045933baa3SCaleb Connolly tristate "Samsung sofef00/s6e3fc2x01 OnePlus 6/6T DSI cmd mode panels" 4055933baa3SCaleb Connolly depends on OF 4065933baa3SCaleb Connolly depends on DRM_MIPI_DSI 4075933baa3SCaleb Connolly depends on BACKLIGHT_CLASS_DEVICE 4085933baa3SCaleb Connolly select VIDEOMODE_HELPERS 4095933baa3SCaleb Connolly help 4105933baa3SCaleb Connolly Say Y or M here if you want to enable support for the Samsung AMOLED 4115933baa3SCaleb Connolly command mode panels found in the OnePlus 6/6T smartphones. 4125933baa3SCaleb Connolly 4135933baa3SCaleb Connolly The panels are 2280x1080@60Hz and 2340x1080@60Hz respectively 4145933baa3SCaleb Connolly 415043652aaSMarco Franchiconfig DRM_PANEL_SEIKO_43WVF1G 416043652aaSMarco Franchi tristate "Seiko 43WVF1G panel" 417043652aaSMarco Franchi depends on OF 418043652aaSMarco Franchi depends on BACKLIGHT_CLASS_DEVICE 419043652aaSMarco Franchi select VIDEOMODE_HELPERS 420043652aaSMarco Franchi help 421043652aaSMarco Franchi Say Y here if you want to enable support for the Seiko 422043652aaSMarco Franchi 43WVF1G controller for 800x480 LCD panels 423043652aaSMarco Franchi 4241976dbcaSThierry Redingconfig DRM_PANEL_SHARP_LQ101R1SX01 4251976dbcaSThierry Reding tristate "Sharp LQ101R1SX01 panel" 4261976dbcaSThierry Reding depends on OF 4271976dbcaSThierry Reding depends on DRM_MIPI_DSI 428f071b34fSArnd Bergmann depends on BACKLIGHT_CLASS_DEVICE 4291976dbcaSThierry Reding help 4301976dbcaSThierry Reding Say Y here if you want to enable support for Sharp LQ101R1SX01 4311976dbcaSThierry Reding TFT-LCD modules. The panel has a 2560x1600 resolution and uses 4321976dbcaSThierry Reding 24 bit RGB per pixel. It provides a dual MIPI DSI interface to 4331976dbcaSThierry Reding the host and has a built-in LED backlight. 4341976dbcaSThierry Reding 4351976dbcaSThierry Reding To compile this driver as a module, choose M here: the module 4361976dbcaSThierry Reding will be called panel-sharp-lq101r1sx01. 4371976dbcaSThierry Reding 438c9cf4c2aSLaurent Pinchartconfig DRM_PANEL_SHARP_LS037V7DW01 439c9cf4c2aSLaurent Pinchart tristate "Sharp LS037V7DW01 VGA LCD panel" 440c9cf4c2aSLaurent Pinchart depends on GPIOLIB && OF && REGULATOR 441c9cf4c2aSLaurent Pinchart help 442c9cf4c2aSLaurent Pinchart Say Y here if you want to enable support for Sharp LS037V7DW01 VGA 443c9cf4c2aSLaurent Pinchart (480x640) LCD panel (found on the TI SDP3430 board). 444c9cf4c2aSLaurent Pinchart 445ee017238SWerner Johanssonconfig DRM_PANEL_SHARP_LS043T1LE01 446ee017238SWerner Johansson tristate "Sharp LS043T1LE01 qHD video mode panel" 447ee017238SWerner Johansson depends on OF 448ee017238SWerner Johansson depends on DRM_MIPI_DSI 449ee017238SWerner Johansson depends on BACKLIGHT_CLASS_DEVICE 450ee017238SWerner Johansson help 451ee017238SWerner Johansson Say Y here if you want to enable support for Sharp LS043T1LE01 qHD 452ee017238SWerner Johansson (540x960) DSI panel as found on the Qualcomm APQ8074 Dragonboard 453ee017238SWerner Johansson 454849b2e3fSJagan Tekiconfig DRM_PANEL_SITRONIX_ST7701 455849b2e3fSJagan Teki tristate "Sitronix ST7701 panel driver" 456849b2e3fSJagan Teki depends on OF 457849b2e3fSJagan Teki depends on DRM_MIPI_DSI 458849b2e3fSJagan Teki depends on BACKLIGHT_CLASS_DEVICE 459849b2e3fSJagan Teki help 460849b2e3fSJagan Teki Say Y here if you want to enable support for the Sitronix 461849b2e3fSJagan Teki ST7701 controller for 480X864 LCD panels with MIPI/RGB/SPI 462849b2e3fSJagan Teki system interfaces. 463849b2e3fSJagan Teki 464a74e81a5SOndrej Jirmanconfig DRM_PANEL_SITRONIX_ST7703 465a74e81a5SOndrej Jirman tristate "Sitronix ST7703 based MIPI touchscreen panels" 466a74e81a5SOndrej Jirman depends on OF 467a74e81a5SOndrej Jirman depends on DRM_MIPI_DSI 468a74e81a5SOndrej Jirman depends on BACKLIGHT_CLASS_DEVICE 469a74e81a5SOndrej Jirman help 470a74e81a5SOndrej Jirman Say Y here if you want to enable support for Sitronix ST7703 based 471a74e81a5SOndrej Jirman panels, souch as Rocktech JH057N00900 MIPI DSI panel as e.g. used in 472a74e81a5SOndrej Jirman the Librem 5 devkit. It has a resolution of 720x1440 pixels, a built 473a74e81a5SOndrej Jirman in backlight and touch controller. 474a74e81a5SOndrej Jirman Touch input support is provided by the goodix driver and needs to be 475a74e81a5SOndrej Jirman selected separately. 476a74e81a5SOndrej Jirman 4777142afb3SMaxime Ripardconfig DRM_PANEL_SITRONIX_ST7789V 4787142afb3SMaxime Ripard tristate "Sitronix ST7789V panel" 4797142afb3SMaxime Ripard depends on OF && SPI 4802a498168SArnd Bergmann depends on BACKLIGHT_CLASS_DEVICE 4817142afb3SMaxime Ripard help 4827142afb3SMaxime Ripard Say Y here if you want to enable support for the Sitronix 4837142afb3SMaxime Ripard ST7789V controller for 240x320 LCD panels 4847142afb3SMaxime Ripard 4858152c2bfSLinus Walleijconfig DRM_PANEL_SONY_ACX424AKP 4868152c2bfSLinus Walleij tristate "Sony ACX424AKP DSI command mode panel" 4878152c2bfSLinus Walleij depends on OF 4888152c2bfSLinus Walleij depends on DRM_MIPI_DSI 4898152c2bfSLinus Walleij depends on BACKLIGHT_CLASS_DEVICE 4908152c2bfSLinus Walleij select VIDEOMODE_HELPERS 4918152c2bfSLinus Walleij help 4928152c2bfSLinus Walleij Say Y here if you want to enable the Sony ACX424 display 4938152c2bfSLinus Walleij panel. This panel supports DSI in both command and video 4948152c2bfSLinus Walleij mode. 4958152c2bfSLinus Walleij 4961c8fc3f0SLaurent Pinchartconfig DRM_PANEL_SONY_ACX565AKM 4971c8fc3f0SLaurent Pinchart tristate "Sony ACX565AKM panel" 4981c8fc3f0SLaurent Pinchart depends on GPIOLIB && OF && SPI 4991c8fc3f0SLaurent Pinchart depends on BACKLIGHT_CLASS_DEVICE 5001c8fc3f0SLaurent Pinchart help 5011c8fc3f0SLaurent Pinchart Say Y here if you want to enable support for the Sony ACX565AKM 5021c8fc3f0SLaurent Pinchart 800x600 3.5" panel (found on the Nokia N900). 5031c8fc3f0SLaurent Pinchart 504cf40c660SNeil Armstrongconfig DRM_PANEL_TDO_TL070WSH30 505cf40c660SNeil Armstrong tristate "TDO TL070WSH30 DSI panel" 506cf40c660SNeil Armstrong depends on OF 507cf40c660SNeil Armstrong depends on DRM_MIPI_DSI 508cf40c660SNeil Armstrong depends on BACKLIGHT_CLASS_DEVICE 509cf40c660SNeil Armstrong help 510cf40c660SNeil Armstrong Say Y here if you want to enable support for TDO TL070WSH30 TFT-LCD 511cf40c660SNeil Armstrong panel module. The panel has a 1024×600 resolution and uses 512cf40c660SNeil Armstrong 24 bit RGB per pixel. It provides a MIPI DSI interface to 513cf40c660SNeil Armstrong the host, a built-in LED backlight and touch controller. 514cf40c660SNeil Armstrong 515415b8dd0SLaurent Pinchartconfig DRM_PANEL_TPO_TD028TTEC1 516415b8dd0SLaurent Pinchart tristate "Toppoly (TPO) TD028TTEC1 panel driver" 517415b8dd0SLaurent Pinchart depends on OF && SPI 518415b8dd0SLaurent Pinchart depends on BACKLIGHT_CLASS_DEVICE 519415b8dd0SLaurent Pinchart help 520415b8dd0SLaurent Pinchart Say Y here if you want to enable support for TPO TD028TTEC1 480x640 521415b8dd0SLaurent Pinchart 2.8" panel (found on the OpenMoko Neo FreeRunner and Neo 1973). 522415b8dd0SLaurent Pinchart 523dc2e1e5bSLaurent Pinchartconfig DRM_PANEL_TPO_TD043MTEA1 524dc2e1e5bSLaurent Pinchart tristate "Toppoly (TPO) TD043MTEA1 panel driver" 525dc2e1e5bSLaurent Pinchart depends on GPIOLIB && OF && REGULATOR && SPI 526dc2e1e5bSLaurent Pinchart help 527dc2e1e5bSLaurent Pinchart Say Y here if you want to enable support for TPO TD043MTEA1 800x480 528dc2e1e5bSLaurent Pinchart 4.3" panel (found on the OMAP3 Pandora board). 529dc2e1e5bSLaurent Pinchart 530324bb707SLinus Walleijconfig DRM_PANEL_TPO_TPG110 531324bb707SLinus Walleij tristate "TPO TPG 800x400 panel" 532324bb707SLinus Walleij depends on OF && SPI && GPIOLIB 533324bb707SLinus Walleij depends on BACKLIGHT_CLASS_DEVICE 534324bb707SLinus Walleij help 535324bb707SLinus Walleij Say Y here if you want to enable support for TPO TPG110 536324bb707SLinus Walleij 400CH LTPS TFT LCD Single Chip Digital Driver for up to 537324bb707SLinus Walleij 800x400 LCD panels. 538324bb707SLinus Walleij 5391dd0b147SAbhinav Kumarconfig DRM_PANEL_TRULY_NT35597_WQXGA 5401dd0b147SAbhinav Kumar tristate "Truly WQXGA" 5411dd0b147SAbhinav Kumar depends on OF 5421dd0b147SAbhinav Kumar depends on DRM_MIPI_DSI 5431dd0b147SAbhinav Kumar help 5441dd0b147SAbhinav Kumar Say Y here if you want to enable support for Truly NT35597 WQXGA Dual DSI 5451dd0b147SAbhinav Kumar Video Mode panel 546d1479d02SHeiko Stuebner 547c7f66d32SHarigovindan Pconfig DRM_PANEL_VISIONOX_RM69299 548c7f66d32SHarigovindan P tristate "Visionox RM69299" 549c7f66d32SHarigovindan P depends on OF 550c7f66d32SHarigovindan P depends on DRM_MIPI_DSI 551c7f66d32SHarigovindan P help 552c7f66d32SHarigovindan P Say Y here if you want to enable support for Visionox 553c7f66d32SHarigovindan P RM69299 DSI Video Mode panel. 554c7f66d32SHarigovindan P 555d1479d02SHeiko Stuebnerconfig DRM_PANEL_XINPENG_XPP055C272 556d1479d02SHeiko Stuebner tristate "Xinpeng XPP055C272 panel driver" 557d1479d02SHeiko Stuebner depends on OF 558d1479d02SHeiko Stuebner depends on DRM_MIPI_DSI 559d1479d02SHeiko Stuebner depends on BACKLIGHT_CLASS_DEVICE 560d1479d02SHeiko Stuebner help 561d1479d02SHeiko Stuebner Say Y here if you want to enable support for the Xinpeng 562d1479d02SHeiko Stuebner XPP055C272 controller for 720x1280 LCD panels with MIPI/RGB/SPI 563d1479d02SHeiko Stuebner system interfaces. 564280921deSThierry Redingendmenu 565