1043386a0SNoralf Trønnes# SPDX-License-Identifier: GPL-2.0-only 277b8cabfSNoralf Trønnes 3*b0548a24SDaniel Vetterconfig DRM_CIRRUS_QEMU 4*b0548a24SDaniel Vetter tristate "Cirrus driver for QEMU emulated device" 5*b0548a24SDaniel Vetter depends on DRM && PCI && MMU 6*b0548a24SDaniel Vetter select DRM_KMS_HELPER 7*b0548a24SDaniel Vetter select DRM_GEM_SHMEM_HELPER 8*b0548a24SDaniel Vetter help 9*b0548a24SDaniel Vetter This is a KMS driver for emulated cirrus device in qemu. 10*b0548a24SDaniel Vetter It is *NOT* intended for real cirrus devices. This requires 11*b0548a24SDaniel Vetter the modesetting userspace X.org driver. 12*b0548a24SDaniel Vetter 13*b0548a24SDaniel Vetter Cirrus is obsolete, the hardware was designed in the 90ies 14*b0548a24SDaniel Vetter and can't keep up with todays needs. More background: 15*b0548a24SDaniel Vetter https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/ 16*b0548a24SDaniel Vetter 17*b0548a24SDaniel Vetter Better alternatives are: 18*b0548a24SDaniel Vetter - stdvga (DRM_BOCHS, qemu -vga std, default in qemu 2.2+) 19*b0548a24SDaniel Vetter - qxl (DRM_QXL, qemu -vga qxl, works best with spice) 20*b0548a24SDaniel Vetter - virtio (DRM_VIRTIO_GPU), qemu -vga virtio) 21*b0548a24SDaniel Vetter 2277b8cabfSNoralf Trønnesconfig DRM_GM12U320 2377b8cabfSNoralf Trønnes tristate "GM12U320 driver for USB projectors" 2477b8cabfSNoralf Trønnes depends on DRM && USB 2577b8cabfSNoralf Trønnes select DRM_KMS_HELPER 2677b8cabfSNoralf Trønnes select DRM_GEM_SHMEM_HELPER 2777b8cabfSNoralf Trønnes help 2877b8cabfSNoralf Trønnes This is a KMS driver for projectors which use the GM12U320 chipset 2977b8cabfSNoralf Trønnes for video transfer over USB2/3, such as the Acer C120 mini projector. 3077b8cabfSNoralf Trønnes 31043386a0SNoralf Trønnesconfig TINYDRM_HX8357D 32043386a0SNoralf Trønnes tristate "DRM support for HX8357D display panels" 33043386a0SNoralf Trønnes depends on DRM && SPI 34043386a0SNoralf Trønnes select DRM_KMS_HELPER 35043386a0SNoralf Trønnes select DRM_KMS_CMA_HELPER 36043386a0SNoralf Trønnes select DRM_MIPI_DBI 37043386a0SNoralf Trønnes select BACKLIGHT_CLASS_DEVICE 38043386a0SNoralf Trønnes help 39043386a0SNoralf Trønnes DRM driver for the following HX8357D panels: 40043386a0SNoralf Trønnes * YX350HV15-T 3.5" 340x350 TFT (Adafruit 3.5") 41043386a0SNoralf Trønnes 42043386a0SNoralf Trønnes If M is selected the module will be called hx8357d. 43043386a0SNoralf Trønnes 44043386a0SNoralf Trønnesconfig TINYDRM_ILI9225 45043386a0SNoralf Trønnes tristate "DRM support for ILI9225 display panels" 46043386a0SNoralf Trønnes depends on DRM && SPI 47043386a0SNoralf Trønnes select DRM_KMS_HELPER 48043386a0SNoralf Trønnes select DRM_KMS_CMA_HELPER 49043386a0SNoralf Trønnes select DRM_MIPI_DBI 50043386a0SNoralf Trønnes help 51043386a0SNoralf Trønnes DRM driver for the following Ilitek ILI9225 panels: 52043386a0SNoralf Trønnes * No-name 2.2" color screen module 53043386a0SNoralf Trønnes 54043386a0SNoralf Trønnes If M is selected the module will be called ili9225. 55043386a0SNoralf Trønnes 56043386a0SNoralf Trønnesconfig TINYDRM_ILI9341 57043386a0SNoralf Trønnes tristate "DRM support for ILI9341 display panels" 58043386a0SNoralf Trønnes depends on DRM && SPI 59043386a0SNoralf Trønnes select DRM_KMS_HELPER 60043386a0SNoralf Trønnes select DRM_KMS_CMA_HELPER 61043386a0SNoralf Trønnes select DRM_MIPI_DBI 62043386a0SNoralf Trønnes select BACKLIGHT_CLASS_DEVICE 63043386a0SNoralf Trønnes help 64043386a0SNoralf Trønnes DRM driver for the following Ilitek ILI9341 panels: 65043386a0SNoralf Trønnes * YX240QV29-T 2.4" 240x320 TFT (Adafruit 2.4") 66043386a0SNoralf Trønnes 67043386a0SNoralf Trønnes If M is selected the module will be called ili9341. 68043386a0SNoralf Trønnes 69cdb702a6SKamlesh Gurudasaniconfig TINYDRM_ILI9486 70cdb702a6SKamlesh Gurudasani tristate "DRM support for ILI9486 display panels" 71cdb702a6SKamlesh Gurudasani depends on DRM && SPI 72cdb702a6SKamlesh Gurudasani select DRM_KMS_HELPER 73cdb702a6SKamlesh Gurudasani select DRM_KMS_CMA_HELPER 74cdb702a6SKamlesh Gurudasani select DRM_MIPI_DBI 75cdb702a6SKamlesh Gurudasani select BACKLIGHT_CLASS_DEVICE 76cdb702a6SKamlesh Gurudasani help 77cdb702a6SKamlesh Gurudasani DRM driver for the following Ilitek ILI9486 panels: 78cdb702a6SKamlesh Gurudasani * PISCREEN 3.5" 320x480 TFT (Ozzmaker 3.5") 79cdb702a6SKamlesh Gurudasani * RPILCD 3.5" 320x480 TFT (Waveshare 3.5") 80cdb702a6SKamlesh Gurudasani 81cdb702a6SKamlesh Gurudasani If M is selected the module will be called ili9486. 82cdb702a6SKamlesh Gurudasani 83043386a0SNoralf Trønnesconfig TINYDRM_MI0283QT 84043386a0SNoralf Trønnes tristate "DRM support for MI0283QT" 85043386a0SNoralf Trønnes depends on DRM && SPI 86043386a0SNoralf Trønnes select DRM_KMS_HELPER 87043386a0SNoralf Trønnes select DRM_KMS_CMA_HELPER 88043386a0SNoralf Trønnes select DRM_MIPI_DBI 89043386a0SNoralf Trønnes select BACKLIGHT_CLASS_DEVICE 90043386a0SNoralf Trønnes help 91043386a0SNoralf Trønnes DRM driver for the Multi-Inno MI0283QT display panel 92043386a0SNoralf Trønnes If M is selected the module will be called mi0283qt. 93043386a0SNoralf Trønnes 94043386a0SNoralf Trønnesconfig TINYDRM_REPAPER 95043386a0SNoralf Trønnes tristate "DRM support for Pervasive Displays RePaper panels (V231)" 96043386a0SNoralf Trønnes depends on DRM && SPI 97043386a0SNoralf Trønnes select DRM_KMS_HELPER 98043386a0SNoralf Trønnes select DRM_KMS_CMA_HELPER 99043386a0SNoralf Trønnes help 100043386a0SNoralf Trønnes DRM driver for the following Pervasive Displays panels: 101043386a0SNoralf Trønnes 1.44" TFT EPD Panel (E1144CS021) 102043386a0SNoralf Trønnes 1.90" TFT EPD Panel (E1190CS021) 103043386a0SNoralf Trønnes 2.00" TFT EPD Panel (E2200CS021) 104043386a0SNoralf Trønnes 2.71" TFT EPD Panel (E2271CS021) 105043386a0SNoralf Trønnes 106043386a0SNoralf Trønnes If M is selected the module will be called repaper. 107043386a0SNoralf Trønnes 108043386a0SNoralf Trønnesconfig TINYDRM_ST7586 109043386a0SNoralf Trønnes tristate "DRM support for Sitronix ST7586 display panels" 110043386a0SNoralf Trønnes depends on DRM && SPI 111043386a0SNoralf Trønnes select DRM_KMS_HELPER 112043386a0SNoralf Trønnes select DRM_KMS_CMA_HELPER 113043386a0SNoralf Trønnes select DRM_MIPI_DBI 114043386a0SNoralf Trønnes help 115043386a0SNoralf Trønnes DRM driver for the following Sitronix ST7586 panels: 116043386a0SNoralf Trønnes * LEGO MINDSTORMS EV3 117043386a0SNoralf Trønnes 118043386a0SNoralf Trønnes If M is selected the module will be called st7586. 119043386a0SNoralf Trønnes 120043386a0SNoralf Trønnesconfig TINYDRM_ST7735R 121d1d511d5SGeert Uytterhoeven tristate "DRM support for Sitronix ST7715R/ST7735R display panels" 122043386a0SNoralf Trønnes depends on DRM && SPI 123043386a0SNoralf Trønnes select DRM_KMS_HELPER 124043386a0SNoralf Trønnes select DRM_KMS_CMA_HELPER 125043386a0SNoralf Trønnes select DRM_MIPI_DBI 126043386a0SNoralf Trønnes select BACKLIGHT_CLASS_DEVICE 127043386a0SNoralf Trønnes help 128d1d511d5SGeert Uytterhoeven DRM driver for Sitronix ST7715R/ST7735R with one of the following 129d1d511d5SGeert Uytterhoeven LCDs: 130d1d511d5SGeert Uytterhoeven * Jianda JD-T18003-T01 1.8" 128x160 TFT 131d1d511d5SGeert Uytterhoeven * Okaya RH128128T 1.44" 128x128 TFT 132043386a0SNoralf Trønnes 133043386a0SNoralf Trønnes If M is selected the module will be called st7735r. 134