forked from ~ljy/RK356X_SDK_RELEASE

hc
2024-05-10 61598093bbdd283a7edc367d900f223070ead8d2
kernel/drivers/gpu/drm/panel/Kconfig
....@@ -1,3 +1,4 @@
1
+# SPDX-License-Identifier: GPL-2.0-only
12 config DRM_PANEL
23 bool
34 depends on DRM
....@@ -16,6 +17,36 @@
1617 This driver supports the ARM Versatile panels connected to ARM
1718 reference designs. The panel is detected using special registers
1819 in the Versatile family syscon registers.
20
+
21
+config DRM_PANEL_ASUS_Z00T_TM5P5_NT35596
22
+ tristate "ASUS Z00T TM5P5 NT35596 panel"
23
+ depends on GPIOLIB && OF
24
+ depends on DRM_MIPI_DSI
25
+ depends on BACKLIGHT_CLASS_DEVICE
26
+ help
27
+ Say Y here if you want to enable support for the ASUS TMP5P5
28
+ NT35596 1080x1920 video mode panel as found in some Asus
29
+ Zenfone 2 Laser Z00T devices.
30
+
31
+config DRM_PANEL_BOE_HIMAX8279D
32
+ tristate "Boe Himax8279d 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 Boe Himax8279d
38
+ TFT-LCD modules. The panel has a 1200x1920 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
+
42
+config DRM_PANEL_BOE_TV101WUM_NL6
43
+ tristate "BOE TV101WUM and AUO KD101N80 45NA 1200x1920 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 support for BOE TV101WUM and AUO KD101N80
49
+ 45NA WUXGA PANEL DSI Video Mode panel
1950
2051 config DRM_PANEL_LVDS
2152 tristate "Generic LVDS panel driver"
....@@ -38,11 +69,33 @@
3869 that it can be automatically turned off when the panel goes into a
3970 low power state.
4071
41
-config DRM_PANEL_SIMPLE_OF_ONLY
42
- bool "compatible is simple-panel or simple-panel-dsi only"
43
- depends on DRM_PANEL_SIMPLE
72
+config DRM_PANEL_ELIDA_KD35T133
73
+ tristate "Elida KD35T133 panel driver"
74
+ depends on OF
75
+ depends on DRM_MIPI_DSI
76
+ depends on BACKLIGHT_CLASS_DEVICE
4477 help
45
- Only support panels which all parameters from device tree.
78
+ Say Y here if you want to enable support for the Elida
79
+ KD35T133 controller for 320x480 LCD panels with MIPI-DSI
80
+ system interfaces.
81
+
82
+config DRM_PANEL_FEIXIN_K101_IM2BA02
83
+ tristate "Feixin K101 IM2BA02 panel"
84
+ depends on OF
85
+ depends on DRM_MIPI_DSI
86
+ depends on BACKLIGHT_CLASS_DEVICE
87
+ help
88
+ Say Y here if you want to enable support for the Feixin K101 IM2BA02
89
+ 4-lane 800x1280 MIPI DSI panel.
90
+
91
+config DRM_PANEL_FEIYANG_FY07024DI26A30D
92
+ tristate "Feiyang FY07024DI26A30-D MIPI-DSI LCD panel"
93
+ depends on OF
94
+ depends on DRM_MIPI_DSI
95
+ depends on BACKLIGHT_CLASS_DEVICE
96
+ help
97
+ Say Y if you want to enable support for panels based on the
98
+ Feiyang FY07024DI26A30-D MIPI-DSI interface.
4699
47100 config DRM_PANEL_ILITEK_IL9322
48101 tristate "Ilitek ILI9322 320x240 QVGA panels"
....@@ -83,10 +136,51 @@
83136 The panel has a 1200(RGB)×1920 (WUXGA) resolution and uses
84137 24 bit per pixel.
85138
139
+config DRM_PANEL_KINGDISPLAY_KD097D04
140
+ tristate "Kingdisplay kd097d04 panel"
141
+ depends on OF
142
+ depends on DRM_MIPI_DSI
143
+ depends on BACKLIGHT_CLASS_DEVICE
144
+ help
145
+ Say Y here if you want to enable support for Kingdisplay kd097d04
146
+ TFT-LCD modules. The panel has a 1536x2048 resolution and uses
147
+ 24 bit RGB per pixel. It provides a MIPI DSI interface to
148
+ the host and has a built-in LED backlight.
149
+
150
+config DRM_PANEL_LEADTEK_LTK050H3146W
151
+ tristate "Leadtek LTK050H3146W panel"
152
+ depends on OF
153
+ depends on DRM_MIPI_DSI
154
+ depends on BACKLIGHT_CLASS_DEVICE
155
+ help
156
+ Say Y here if you want to enable support for Leadtek LTK050H3146W
157
+ TFT-LCD modules. The panel has a 720x1280 resolution and uses
158
+ 24 bit RGB per pixel. It provides a MIPI DSI interface to
159
+ the host and has a built-in LED backlight.
160
+
161
+config DRM_PANEL_LEADTEK_LTK500HD1829
162
+ tristate "Leadtek LTK500HD1829 panel"
163
+ depends on OF
164
+ depends on DRM_MIPI_DSI
165
+ depends on BACKLIGHT_CLASS_DEVICE
166
+ help
167
+ Say Y here if you want to enable support for Kingdisplay kd097d04
168
+ TFT-LCD modules. The panel has a 1536x2048 resolution and uses
169
+ 24 bit RGB per pixel. It provides a MIPI DSI interface to
170
+ the host and has a built-in LED backlight.
171
+
86172 config DRM_PANEL_SAMSUNG_LD9040
87173 tristate "Samsung LD9040 RGB/SPI panel"
88174 depends on OF && SPI
89175 select VIDEOMODE_HELPERS
176
+
177
+config DRM_PANEL_LG_LB035Q02
178
+ tristate "LG LB035Q024573 RGB panel"
179
+ depends on GPIOLIB && OF && SPI
180
+ help
181
+ Say Y here if you want to enable support for the LB035Q02 RGB panel
182
+ (found on the Gumstix Overo Palo35 board). To compile this driver as
183
+ a module, choose M here.
90184
91185 config DRM_PANEL_LG_LG4573
92186 tristate "LG4573 RGB/SPI panel"
....@@ -96,6 +190,73 @@
96190 Say Y here if you want to enable support for LG4573 RGB panel.
97191 To compile this driver as a module, choose M here.
98192
193
+config DRM_PANEL_NEC_NL8048HL11
194
+ tristate "NEC NL8048HL11 RGB panel"
195
+ depends on GPIOLIB && OF && SPI
196
+ help
197
+ Say Y here if you want to enable support for the NEC NL8048HL11 RGB
198
+ panel (found on the Zoom2/3/3630 SDP boards). To compile this driver
199
+ as a module, choose M here.
200
+
201
+config DRM_PANEL_NOVATEK_NT35510
202
+ tristate "Novatek NT35510 RGB panel driver"
203
+ depends on OF
204
+ depends on DRM_MIPI_DSI
205
+ depends on BACKLIGHT_CLASS_DEVICE
206
+ help
207
+ Say Y here if you want to enable support for the panels built
208
+ around the Novatek NT35510 display controller, such as some
209
+ Hydis panels.
210
+
211
+config DRM_PANEL_NOVATEK_NT39016
212
+ tristate "Novatek NT39016 RGB/SPI panel"
213
+ depends on OF && SPI
214
+ depends on BACKLIGHT_CLASS_DEVICE
215
+ select REGMAP_SPI
216
+ help
217
+ Say Y here if you want to enable support for the panels built
218
+ around the Novatek NT39016 display controller.
219
+
220
+config DRM_PANEL_MANTIX_MLAF057WE51
221
+ tristate "Mantix MLAF057WE51-X MIPI-DSI LCD panel"
222
+ depends on OF
223
+ depends on DRM_MIPI_DSI
224
+ depends on BACKLIGHT_CLASS_DEVICE
225
+ help
226
+ Say Y here if you want to enable support for the Mantix
227
+ MLAF057WE51-X MIPI DSI panel as e.g. used in the Librem 5. It
228
+ has a resolution of 720x1440 pixels, a built in backlight and touch
229
+ controller.
230
+
231
+config DRM_PANEL_MAXIM_MAX96752F
232
+ tristate "Maxim MAX96752F-based panels"
233
+ depends on OF
234
+ depends on BACKLIGHT_CLASS_DEVICE
235
+ help
236
+ Say Y if you want to enable support for panels based on the
237
+ Maxim MAX96752F.
238
+
239
+config DRM_PANEL_MAXIM_MAX96772
240
+ tristate "Maxim MAX96772-based panels"
241
+ depends on OF
242
+ depends on BACKLIGHT_CLASS_DEVICE
243
+ help
244
+ Say Y if you want to enable support for panels based on the
245
+ Maxim MAX96772.
246
+
247
+config DRM_PANEL_OLIMEX_LCD_OLINUXINO
248
+ tristate "Olimex LCD-OLinuXino panel"
249
+ depends on OF
250
+ depends on I2C
251
+ depends on BACKLIGHT_CLASS_DEVICE
252
+ select CRC32
253
+ help
254
+ The panel is used with different sizes LCDs, from 480x272 to
255
+ 1280x800, and 24 bit per pixel.
256
+
257
+ Say Y here if you want to enable support for Olimex Ltd.
258
+ LCD-OLinuXino panel.
259
+
99260 config DRM_PANEL_ORISETECH_OTM8009A
100261 tristate "Orise Technology otm8009a 480x800 dsi 2dl panel"
101262 depends on OF
....@@ -104,6 +265,15 @@
104265 help
105266 Say Y here if you want to enable support for Orise Technology
106267 otm8009a 480x800 dsi 2dl panel.
268
+
269
+config DRM_PANEL_OSD_OSD101T2587_53TS
270
+ tristate "OSD OSD101T2587-53TS DSI 1920x1200 video mode panel"
271
+ depends on OF
272
+ depends on DRM_MIPI_DSI
273
+ depends on BACKLIGHT_CLASS_DEVICE
274
+ help
275
+ Say Y here if you want to enable support for One Stop Displays
276
+ OSD101T2587-53TS 10.1" 1920x1200 dsi panel.
107277
108278 config DRM_PANEL_PANASONIC_VVX10F034N00
109279 tristate "Panasonic VVX10F034N00 1920x1200 video mode panel"
....@@ -123,6 +293,15 @@
123293 Pi 7" Touchscreen. To compile this driver as a module,
124294 choose M here.
125295
296
+config DRM_PANEL_RAYDIUM_RM67191
297
+ tristate "Raydium RM67191 FHD 1080x1920 DSI video mode panel"
298
+ depends on OF
299
+ depends on DRM_MIPI_DSI
300
+ depends on BACKLIGHT_CLASS_DEVICE
301
+ help
302
+ Say Y here if you want to enable support for Raydium RM67191 FHD
303
+ (1080x1920) DSI panel.
304
+
126305 config DRM_PANEL_RAYDIUM_RM68200
127306 tristate "Raydium RM68200 720x1280 DSI video mode panel"
128307 depends on OF
....@@ -131,6 +310,21 @@
131310 help
132311 Say Y here if you want to enable support for Raydium RM68200
133312 720x1280 DSI video mode panel.
313
+
314
+config DRM_PANEL_RONBO_RB070D30
315
+ tristate "Ronbo Electronics RB070D30 panel"
316
+ depends on OF
317
+ depends on DRM_MIPI_DSI
318
+ depends on BACKLIGHT_CLASS_DEVICE
319
+ help
320
+ Say Y here if you want to enable support for Ronbo Electronics
321
+ RB070D30 1024x600 DSI panel.
322
+
323
+config DRM_PANEL_SAMSUNG_S6D16D0
324
+ tristate "Samsung S6D16D0 DSI video mode panel"
325
+ depends on OF
326
+ depends on DRM_MIPI_DSI
327
+ select VIDEOMODE_HELPERS
134328
135329 config DRM_PANEL_SAMSUNG_S6E3HA2
136330 tristate "Samsung S6E3HA2 DSI video mode panel"
....@@ -144,6 +338,38 @@
144338 depends on OF
145339 depends on DRM_MIPI_DSI
146340 depends on BACKLIGHT_CLASS_DEVICE
341
+ select VIDEOMODE_HELPERS
342
+
343
+config DRM_PANEL_SAMSUNG_S6E63M0
344
+ tristate "Samsung S6E63M0 RGB panel"
345
+ depends on OF
346
+ depends on BACKLIGHT_CLASS_DEVICE
347
+ help
348
+ Say Y here if you want to enable support for Samsung S6E63M0
349
+ AMOLED LCD panel. This panel can be accessed using SPI or
350
+ DSI.
351
+
352
+config DRM_PANEL_SAMSUNG_S6E63M0_SPI
353
+ tristate "Samsung S6E63M0 RGB SPI interface"
354
+ depends on SPI
355
+ depends on DRM_PANEL_SAMSUNG_S6E63M0
356
+ default DRM_PANEL_SAMSUNG_S6E63M0
357
+ help
358
+ Say Y here if you want to be able to access the Samsung
359
+ S6E63M0 panel using SPI.
360
+
361
+config DRM_PANEL_SAMSUNG_S6E63M0_DSI
362
+ tristate "Samsung S6E63M0 RGB DSI interface"
363
+ depends on DRM_MIPI_DSI
364
+ depends on DRM_PANEL_SAMSUNG_S6E63M0
365
+ help
366
+ Say Y here if you want to be able to access the Samsung
367
+ S6E63M0 panel using DSI.
368
+
369
+config DRM_PANEL_SAMSUNG_S6E88A0_AMS452EF01
370
+ tristate "Samsung AMS452EF01 panel with S6E88A0 DSI video mode controller"
371
+ depends on OF
372
+ select DRM_MIPI_DSI
147373 select VIDEOMODE_HELPERS
148374
149375 config DRM_PANEL_SAMSUNG_S6E8AA0
....@@ -175,6 +401,13 @@
175401 To compile this driver as a module, choose M here: the module
176402 will be called panel-sharp-lq101r1sx01.
177403
404
+config DRM_PANEL_SHARP_LS037V7DW01
405
+ tristate "Sharp LS037V7DW01 VGA LCD panel"
406
+ depends on GPIOLIB && OF && REGULATOR
407
+ help
408
+ Say Y here if you want to enable support for Sharp LS037V7DW01 VGA
409
+ (480x640) LCD panel (found on the TI SDP3430 board).
410
+
178411 config DRM_PANEL_SHARP_LS043T1LE01
179412 tristate "Sharp LS043T1LE01 qHD video mode panel"
180413 depends on OF
....@@ -184,6 +417,29 @@
184417 Say Y here if you want to enable support for Sharp LS043T1LE01 qHD
185418 (540x960) DSI panel as found on the Qualcomm APQ8074 Dragonboard
186419
420
+config DRM_PANEL_SITRONIX_ST7701
421
+ tristate "Sitronix ST7701 panel driver"
422
+ depends on OF
423
+ depends on DRM_MIPI_DSI
424
+ depends on BACKLIGHT_CLASS_DEVICE
425
+ help
426
+ Say Y here if you want to enable support for the Sitronix
427
+ ST7701 controller for 480X864 LCD panels with MIPI/RGB/SPI
428
+ system interfaces.
429
+
430
+config DRM_PANEL_SITRONIX_ST7703
431
+ tristate "Sitronix ST7703 based MIPI touchscreen panels"
432
+ depends on OF
433
+ depends on DRM_MIPI_DSI
434
+ depends on BACKLIGHT_CLASS_DEVICE
435
+ help
436
+ Say Y here if you want to enable support for Sitronix ST7703 based
437
+ panels, souch as Rocktech JH057N00900 MIPI DSI panel as e.g. used in
438
+ the Librem 5 devkit. It has a resolution of 720x1440 pixels, a built
439
+ in backlight and touch controller.
440
+ Touch input support is provided by the goodix driver and needs to be
441
+ selected separately.
442
+
187443 config DRM_PANEL_SITRONIX_ST7789V
188444 tristate "Sitronix ST7789V panel"
189445 depends on OF && SPI
....@@ -192,4 +448,72 @@
192448 Say Y here if you want to enable support for the Sitronix
193449 ST7789V controller for 240x320 LCD panels
194450
451
+config DRM_PANEL_SONY_ACX424AKP
452
+ tristate "Sony ACX424AKP DSI command mode panel"
453
+ depends on OF
454
+ depends on DRM_MIPI_DSI
455
+ depends on BACKLIGHT_CLASS_DEVICE
456
+ select VIDEOMODE_HELPERS
457
+ help
458
+ Say Y here if you want to enable the Sony ACX424 display
459
+ panel. This panel supports DSI in both command and video
460
+ mode.
461
+
462
+config DRM_PANEL_SONY_ACX565AKM
463
+ tristate "Sony ACX565AKM panel"
464
+ depends on GPIOLIB && OF && SPI
465
+ depends on BACKLIGHT_CLASS_DEVICE
466
+ help
467
+ Say Y here if you want to enable support for the Sony ACX565AKM
468
+ 800x600 3.5" panel (found on the Nokia N900).
469
+
470
+config DRM_PANEL_TPO_TD028TTEC1
471
+ tristate "Toppoly (TPO) TD028TTEC1 panel driver"
472
+ depends on OF && SPI
473
+ depends on BACKLIGHT_CLASS_DEVICE
474
+ help
475
+ Say Y here if you want to enable support for TPO TD028TTEC1 480x640
476
+ 2.8" panel (found on the OpenMoko Neo FreeRunner and Neo 1973).
477
+
478
+config DRM_PANEL_TPO_TD043MTEA1
479
+ tristate "Toppoly (TPO) TD043MTEA1 panel driver"
480
+ depends on GPIOLIB && OF && REGULATOR && SPI
481
+ help
482
+ Say Y here if you want to enable support for TPO TD043MTEA1 800x480
483
+ 4.3" panel (found on the OMAP3 Pandora board).
484
+
485
+config DRM_PANEL_TPO_TPG110
486
+ tristate "TPO TPG 800x400 panel"
487
+ depends on OF && SPI && GPIOLIB
488
+ depends on BACKLIGHT_CLASS_DEVICE
489
+ help
490
+ Say Y here if you want to enable support for TPO TPG110
491
+ 400CH LTPS TFT LCD Single Chip Digital Driver for up to
492
+ 800x400 LCD panels.
493
+
494
+config DRM_PANEL_TRULY_NT35597_WQXGA
495
+ tristate "Truly WQXGA"
496
+ depends on OF
497
+ depends on DRM_MIPI_DSI
498
+ help
499
+ Say Y here if you want to enable support for Truly NT35597 WQXGA Dual DSI
500
+ Video Mode panel
501
+
502
+config DRM_PANEL_VISIONOX_RM69299
503
+ tristate "Visionox RM69299"
504
+ depends on OF
505
+ depends on DRM_MIPI_DSI
506
+ help
507
+ Say Y here if you want to enable support for Visionox
508
+ RM69299 DSI Video Mode panel.
509
+
510
+config DRM_PANEL_XINPENG_XPP055C272
511
+ tristate "Xinpeng XPP055C272 panel driver"
512
+ depends on OF
513
+ depends on DRM_MIPI_DSI
514
+ depends on BACKLIGHT_CLASS_DEVICE
515
+ help
516
+ Say Y here if you want to enable support for the Xinpeng
517
+ XPP055C272 controller for 720x1280 LCD panels with MIPI/RGB/SPI
518
+ system interfaces.
195519 endmenu