drm/msm/hdmi: Enable HPD after HDMI IRQ is set up
[linux/fpc-iii.git] / drivers / gpu / drm / panel / panel-simple.c
blob97964f7f2acee08350101947a4ccd9a717f5f199
1 /*
2 * Copyright (C) 2013, NVIDIA Corporation. All rights reserved.
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sub license,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
11 * The above copyright notice and this permission notice (including the
12 * next paragraph) shall be included in all copies or substantial portions
13 * of the Software.
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21 * DEALINGS IN THE SOFTWARE.
24 #include <linux/backlight.h>
25 #include <linux/gpio/consumer.h>
26 #include <linux/module.h>
27 #include <linux/of_platform.h>
28 #include <linux/platform_device.h>
29 #include <linux/regulator/consumer.h>
31 #include <drm/drmP.h>
32 #include <drm/drm_crtc.h>
33 #include <drm/drm_mipi_dsi.h>
34 #include <drm/drm_panel.h>
36 #include <video/display_timing.h>
37 #include <video/videomode.h>
39 struct panel_desc {
40 const struct drm_display_mode *modes;
41 unsigned int num_modes;
42 const struct display_timing *timings;
43 unsigned int num_timings;
45 unsigned int bpc;
47 /**
48 * @width: width (in millimeters) of the panel's active display area
49 * @height: height (in millimeters) of the panel's active display area
51 struct {
52 unsigned int width;
53 unsigned int height;
54 } size;
56 /**
57 * @prepare: the time (in milliseconds) that it takes for the panel to
58 * become ready and start receiving video data
59 * @enable: the time (in milliseconds) that it takes for the panel to
60 * display the first valid frame after starting to receive
61 * video data
62 * @disable: the time (in milliseconds) that it takes for the panel to
63 * turn the display off (no content is visible)
64 * @unprepare: the time (in milliseconds) that it takes for the panel
65 * to power itself down completely
67 struct {
68 unsigned int prepare;
69 unsigned int enable;
70 unsigned int disable;
71 unsigned int unprepare;
72 } delay;
74 u32 bus_format;
75 u32 bus_flags;
78 struct panel_simple {
79 struct drm_panel base;
80 bool prepared;
81 bool enabled;
83 const struct panel_desc *desc;
85 struct backlight_device *backlight;
86 struct regulator *supply;
87 struct i2c_adapter *ddc;
89 struct gpio_desc *enable_gpio;
92 static inline struct panel_simple *to_panel_simple(struct drm_panel *panel)
94 return container_of(panel, struct panel_simple, base);
97 static int panel_simple_get_fixed_modes(struct panel_simple *panel)
99 struct drm_connector *connector = panel->base.connector;
100 struct drm_device *drm = panel->base.drm;
101 struct drm_display_mode *mode;
102 unsigned int i, num = 0;
104 if (!panel->desc)
105 return 0;
107 for (i = 0; i < panel->desc->num_timings; i++) {
108 const struct display_timing *dt = &panel->desc->timings[i];
109 struct videomode vm;
111 videomode_from_timing(dt, &vm);
112 mode = drm_mode_create(drm);
113 if (!mode) {
114 dev_err(drm->dev, "failed to add mode %ux%u\n",
115 dt->hactive.typ, dt->vactive.typ);
116 continue;
119 drm_display_mode_from_videomode(&vm, mode);
121 mode->type |= DRM_MODE_TYPE_DRIVER;
123 if (panel->desc->num_timings == 1)
124 mode->type |= DRM_MODE_TYPE_PREFERRED;
126 drm_mode_probed_add(connector, mode);
127 num++;
130 for (i = 0; i < panel->desc->num_modes; i++) {
131 const struct drm_display_mode *m = &panel->desc->modes[i];
133 mode = drm_mode_duplicate(drm, m);
134 if (!mode) {
135 dev_err(drm->dev, "failed to add mode %ux%u@%u\n",
136 m->hdisplay, m->vdisplay, m->vrefresh);
137 continue;
140 mode->type |= DRM_MODE_TYPE_DRIVER;
142 if (panel->desc->num_modes == 1)
143 mode->type |= DRM_MODE_TYPE_PREFERRED;
145 drm_mode_set_name(mode);
147 drm_mode_probed_add(connector, mode);
148 num++;
151 connector->display_info.bpc = panel->desc->bpc;
152 connector->display_info.width_mm = panel->desc->size.width;
153 connector->display_info.height_mm = panel->desc->size.height;
154 if (panel->desc->bus_format)
155 drm_display_info_set_bus_formats(&connector->display_info,
156 &panel->desc->bus_format, 1);
157 connector->display_info.bus_flags = panel->desc->bus_flags;
159 return num;
162 static int panel_simple_disable(struct drm_panel *panel)
164 struct panel_simple *p = to_panel_simple(panel);
166 if (!p->enabled)
167 return 0;
169 if (p->backlight) {
170 p->backlight->props.power = FB_BLANK_POWERDOWN;
171 p->backlight->props.state |= BL_CORE_FBBLANK;
172 backlight_update_status(p->backlight);
175 if (p->desc->delay.disable)
176 msleep(p->desc->delay.disable);
178 p->enabled = false;
180 return 0;
183 static int panel_simple_unprepare(struct drm_panel *panel)
185 struct panel_simple *p = to_panel_simple(panel);
187 if (!p->prepared)
188 return 0;
190 gpiod_set_value_cansleep(p->enable_gpio, 0);
192 regulator_disable(p->supply);
194 if (p->desc->delay.unprepare)
195 msleep(p->desc->delay.unprepare);
197 p->prepared = false;
199 return 0;
202 static int panel_simple_prepare(struct drm_panel *panel)
204 struct panel_simple *p = to_panel_simple(panel);
205 int err;
207 if (p->prepared)
208 return 0;
210 err = regulator_enable(p->supply);
211 if (err < 0) {
212 dev_err(panel->dev, "failed to enable supply: %d\n", err);
213 return err;
216 gpiod_set_value_cansleep(p->enable_gpio, 1);
218 if (p->desc->delay.prepare)
219 msleep(p->desc->delay.prepare);
221 p->prepared = true;
223 return 0;
226 static int panel_simple_enable(struct drm_panel *panel)
228 struct panel_simple *p = to_panel_simple(panel);
230 if (p->enabled)
231 return 0;
233 if (p->desc->delay.enable)
234 msleep(p->desc->delay.enable);
236 if (p->backlight) {
237 p->backlight->props.state &= ~BL_CORE_FBBLANK;
238 p->backlight->props.power = FB_BLANK_UNBLANK;
239 backlight_update_status(p->backlight);
242 p->enabled = true;
244 return 0;
247 static int panel_simple_get_modes(struct drm_panel *panel)
249 struct panel_simple *p = to_panel_simple(panel);
250 int num = 0;
252 /* probe EDID if a DDC bus is available */
253 if (p->ddc) {
254 struct edid *edid = drm_get_edid(panel->connector, p->ddc);
255 drm_connector_update_edid_property(panel->connector, edid);
256 if (edid) {
257 num += drm_add_edid_modes(panel->connector, edid);
258 kfree(edid);
262 /* add hard-coded panel modes */
263 num += panel_simple_get_fixed_modes(p);
265 return num;
268 static int panel_simple_get_timings(struct drm_panel *panel,
269 unsigned int num_timings,
270 struct display_timing *timings)
272 struct panel_simple *p = to_panel_simple(panel);
273 unsigned int i;
275 if (p->desc->num_timings < num_timings)
276 num_timings = p->desc->num_timings;
278 if (timings)
279 for (i = 0; i < num_timings; i++)
280 timings[i] = p->desc->timings[i];
282 return p->desc->num_timings;
285 static const struct drm_panel_funcs panel_simple_funcs = {
286 .disable = panel_simple_disable,
287 .unprepare = panel_simple_unprepare,
288 .prepare = panel_simple_prepare,
289 .enable = panel_simple_enable,
290 .get_modes = panel_simple_get_modes,
291 .get_timings = panel_simple_get_timings,
294 static int panel_simple_probe(struct device *dev, const struct panel_desc *desc)
296 struct device_node *backlight, *ddc;
297 struct panel_simple *panel;
298 int err;
300 panel = devm_kzalloc(dev, sizeof(*panel), GFP_KERNEL);
301 if (!panel)
302 return -ENOMEM;
304 panel->enabled = false;
305 panel->prepared = false;
306 panel->desc = desc;
308 panel->supply = devm_regulator_get(dev, "power");
309 if (IS_ERR(panel->supply))
310 return PTR_ERR(panel->supply);
312 panel->enable_gpio = devm_gpiod_get_optional(dev, "enable",
313 GPIOD_OUT_LOW);
314 if (IS_ERR(panel->enable_gpio)) {
315 err = PTR_ERR(panel->enable_gpio);
316 if (err != -EPROBE_DEFER)
317 dev_err(dev, "failed to request GPIO: %d\n", err);
318 return err;
321 backlight = of_parse_phandle(dev->of_node, "backlight", 0);
322 if (backlight) {
323 panel->backlight = of_find_backlight_by_node(backlight);
324 of_node_put(backlight);
326 if (!panel->backlight)
327 return -EPROBE_DEFER;
330 ddc = of_parse_phandle(dev->of_node, "ddc-i2c-bus", 0);
331 if (ddc) {
332 panel->ddc = of_find_i2c_adapter_by_node(ddc);
333 of_node_put(ddc);
335 if (!panel->ddc) {
336 err = -EPROBE_DEFER;
337 goto free_backlight;
341 drm_panel_init(&panel->base);
342 panel->base.dev = dev;
343 panel->base.funcs = &panel_simple_funcs;
345 err = drm_panel_add(&panel->base);
346 if (err < 0)
347 goto free_ddc;
349 dev_set_drvdata(dev, panel);
351 return 0;
353 free_ddc:
354 if (panel->ddc)
355 put_device(&panel->ddc->dev);
356 free_backlight:
357 if (panel->backlight)
358 put_device(&panel->backlight->dev);
360 return err;
363 static int panel_simple_remove(struct device *dev)
365 struct panel_simple *panel = dev_get_drvdata(dev);
367 drm_panel_remove(&panel->base);
369 panel_simple_disable(&panel->base);
370 panel_simple_unprepare(&panel->base);
372 if (panel->ddc)
373 put_device(&panel->ddc->dev);
375 if (panel->backlight)
376 put_device(&panel->backlight->dev);
378 return 0;
381 static void panel_simple_shutdown(struct device *dev)
383 struct panel_simple *panel = dev_get_drvdata(dev);
385 panel_simple_disable(&panel->base);
386 panel_simple_unprepare(&panel->base);
389 static const struct drm_display_mode ampire_am_480272h3tmqw_t01h_mode = {
390 .clock = 9000,
391 .hdisplay = 480,
392 .hsync_start = 480 + 2,
393 .hsync_end = 480 + 2 + 41,
394 .htotal = 480 + 2 + 41 + 2,
395 .vdisplay = 272,
396 .vsync_start = 272 + 2,
397 .vsync_end = 272 + 2 + 10,
398 .vtotal = 272 + 2 + 10 + 2,
399 .vrefresh = 60,
400 .flags = DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC,
403 static const struct panel_desc ampire_am_480272h3tmqw_t01h = {
404 .modes = &ampire_am_480272h3tmqw_t01h_mode,
405 .num_modes = 1,
406 .bpc = 8,
407 .size = {
408 .width = 105,
409 .height = 67,
411 .bus_format = MEDIA_BUS_FMT_RGB888_1X24,
414 static const struct drm_display_mode ampire_am800480r3tmqwa1h_mode = {
415 .clock = 33333,
416 .hdisplay = 800,
417 .hsync_start = 800 + 0,
418 .hsync_end = 800 + 0 + 255,
419 .htotal = 800 + 0 + 255 + 0,
420 .vdisplay = 480,
421 .vsync_start = 480 + 2,
422 .vsync_end = 480 + 2 + 45,
423 .vtotal = 480 + 2 + 45 + 0,
424 .vrefresh = 60,
425 .flags = DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC,
428 static const struct panel_desc ampire_am800480r3tmqwa1h = {
429 .modes = &ampire_am800480r3tmqwa1h_mode,
430 .num_modes = 1,
431 .bpc = 6,
432 .size = {
433 .width = 152,
434 .height = 91,
436 .bus_format = MEDIA_BUS_FMT_RGB666_1X18,
439 static const struct drm_display_mode auo_b101aw03_mode = {
440 .clock = 51450,
441 .hdisplay = 1024,
442 .hsync_start = 1024 + 156,
443 .hsync_end = 1024 + 156 + 8,
444 .htotal = 1024 + 156 + 8 + 156,
445 .vdisplay = 600,
446 .vsync_start = 600 + 16,
447 .vsync_end = 600 + 16 + 6,
448 .vtotal = 600 + 16 + 6 + 16,
449 .vrefresh = 60,
452 static const struct panel_desc auo_b101aw03 = {
453 .modes = &auo_b101aw03_mode,
454 .num_modes = 1,
455 .bpc = 6,
456 .size = {
457 .width = 223,
458 .height = 125,
462 static const struct drm_display_mode auo_b101ean01_mode = {
463 .clock = 72500,
464 .hdisplay = 1280,
465 .hsync_start = 1280 + 119,
466 .hsync_end = 1280 + 119 + 32,
467 .htotal = 1280 + 119 + 32 + 21,
468 .vdisplay = 800,
469 .vsync_start = 800 + 4,
470 .vsync_end = 800 + 4 + 20,
471 .vtotal = 800 + 4 + 20 + 8,
472 .vrefresh = 60,
475 static const struct panel_desc auo_b101ean01 = {
476 .modes = &auo_b101ean01_mode,
477 .num_modes = 1,
478 .bpc = 6,
479 .size = {
480 .width = 217,
481 .height = 136,
485 static const struct drm_display_mode auo_b101xtn01_mode = {
486 .clock = 72000,
487 .hdisplay = 1366,
488 .hsync_start = 1366 + 20,
489 .hsync_end = 1366 + 20 + 70,
490 .htotal = 1366 + 20 + 70,
491 .vdisplay = 768,
492 .vsync_start = 768 + 14,
493 .vsync_end = 768 + 14 + 42,
494 .vtotal = 768 + 14 + 42,
495 .vrefresh = 60,
496 .flags = DRM_MODE_FLAG_NVSYNC | DRM_MODE_FLAG_NHSYNC,
499 static const struct panel_desc auo_b101xtn01 = {
500 .modes = &auo_b101xtn01_mode,
501 .num_modes = 1,
502 .bpc = 6,
503 .size = {
504 .width = 223,
505 .height = 125,
509 static const struct drm_display_mode auo_b116xw03_mode = {
510 .clock = 70589,
511 .hdisplay = 1366,
512 .hsync_start = 1366 + 40,
513 .hsync_end = 1366 + 40 + 40,
514 .htotal = 1366 + 40 + 40 + 32,
515 .vdisplay = 768,
516 .vsync_start = 768 + 10,
517 .vsync_end = 768 + 10 + 12,
518 .vtotal = 768 + 10 + 12 + 6,
519 .vrefresh = 60,
522 static const struct panel_desc auo_b116xw03 = {
523 .modes = &auo_b116xw03_mode,
524 .num_modes = 1,
525 .bpc = 6,
526 .size = {
527 .width = 256,
528 .height = 144,
532 static const struct drm_display_mode auo_b133xtn01_mode = {
533 .clock = 69500,
534 .hdisplay = 1366,
535 .hsync_start = 1366 + 48,
536 .hsync_end = 1366 + 48 + 32,
537 .htotal = 1366 + 48 + 32 + 20,
538 .vdisplay = 768,
539 .vsync_start = 768 + 3,
540 .vsync_end = 768 + 3 + 6,
541 .vtotal = 768 + 3 + 6 + 13,
542 .vrefresh = 60,
545 static const struct panel_desc auo_b133xtn01 = {
546 .modes = &auo_b133xtn01_mode,
547 .num_modes = 1,
548 .bpc = 6,
549 .size = {
550 .width = 293,
551 .height = 165,
555 static const struct drm_display_mode auo_b133htn01_mode = {
556 .clock = 150660,
557 .hdisplay = 1920,
558 .hsync_start = 1920 + 172,
559 .hsync_end = 1920 + 172 + 80,
560 .htotal = 1920 + 172 + 80 + 60,
561 .vdisplay = 1080,
562 .vsync_start = 1080 + 25,
563 .vsync_end = 1080 + 25 + 10,
564 .vtotal = 1080 + 25 + 10 + 10,
565 .vrefresh = 60,
568 static const struct panel_desc auo_b133htn01 = {
569 .modes = &auo_b133htn01_mode,
570 .num_modes = 1,
571 .bpc = 6,
572 .size = {
573 .width = 293,
574 .height = 165,
576 .delay = {
577 .prepare = 105,
578 .enable = 20,
579 .unprepare = 50,
583 static const struct display_timing auo_g070vvn01_timings = {
584 .pixelclock = { 33300000, 34209000, 45000000 },
585 .hactive = { 800, 800, 800 },
586 .hfront_porch = { 20, 40, 200 },
587 .hback_porch = { 87, 40, 1 },
588 .hsync_len = { 1, 48, 87 },
589 .vactive = { 480, 480, 480 },
590 .vfront_porch = { 5, 13, 200 },
591 .vback_porch = { 31, 31, 29 },
592 .vsync_len = { 1, 1, 3 },
595 static const struct panel_desc auo_g070vvn01 = {
596 .timings = &auo_g070vvn01_timings,
597 .num_timings = 1,
598 .bpc = 8,
599 .size = {
600 .width = 152,
601 .height = 91,
603 .delay = {
604 .prepare = 200,
605 .enable = 50,
606 .disable = 50,
607 .unprepare = 1000,
611 static const struct drm_display_mode auo_g104sn02_mode = {
612 .clock = 40000,
613 .hdisplay = 800,
614 .hsync_start = 800 + 40,
615 .hsync_end = 800 + 40 + 216,
616 .htotal = 800 + 40 + 216 + 128,
617 .vdisplay = 600,
618 .vsync_start = 600 + 10,
619 .vsync_end = 600 + 10 + 35,
620 .vtotal = 600 + 10 + 35 + 2,
621 .vrefresh = 60,
624 static const struct panel_desc auo_g104sn02 = {
625 .modes = &auo_g104sn02_mode,
626 .num_modes = 1,
627 .bpc = 8,
628 .size = {
629 .width = 211,
630 .height = 158,
634 static const struct display_timing auo_g133han01_timings = {
635 .pixelclock = { 134000000, 141200000, 149000000 },
636 .hactive = { 1920, 1920, 1920 },
637 .hfront_porch = { 39, 58, 77 },
638 .hback_porch = { 59, 88, 117 },
639 .hsync_len = { 28, 42, 56 },
640 .vactive = { 1080, 1080, 1080 },
641 .vfront_porch = { 3, 8, 11 },
642 .vback_porch = { 5, 14, 19 },
643 .vsync_len = { 4, 14, 19 },
646 static const struct panel_desc auo_g133han01 = {
647 .timings = &auo_g133han01_timings,
648 .num_timings = 1,
649 .bpc = 8,
650 .size = {
651 .width = 293,
652 .height = 165,
654 .delay = {
655 .prepare = 200,
656 .enable = 50,
657 .disable = 50,
658 .unprepare = 1000,
660 .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_JEIDA,
663 static const struct display_timing auo_g185han01_timings = {
664 .pixelclock = { 120000000, 144000000, 175000000 },
665 .hactive = { 1920, 1920, 1920 },
666 .hfront_porch = { 18, 60, 74 },
667 .hback_porch = { 12, 44, 54 },
668 .hsync_len = { 10, 24, 32 },
669 .vactive = { 1080, 1080, 1080 },
670 .vfront_porch = { 6, 10, 40 },
671 .vback_porch = { 2, 5, 20 },
672 .vsync_len = { 2, 5, 20 },
675 static const struct panel_desc auo_g185han01 = {
676 .timings = &auo_g185han01_timings,
677 .num_timings = 1,
678 .bpc = 8,
679 .size = {
680 .width = 409,
681 .height = 230,
683 .delay = {
684 .prepare = 50,
685 .enable = 200,
686 .disable = 110,
687 .unprepare = 1000,
689 .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
692 static const struct display_timing auo_p320hvn03_timings = {
693 .pixelclock = { 106000000, 148500000, 164000000 },
694 .hactive = { 1920, 1920, 1920 },
695 .hfront_porch = { 25, 50, 130 },
696 .hback_porch = { 25, 50, 130 },
697 .hsync_len = { 20, 40, 105 },
698 .vactive = { 1080, 1080, 1080 },
699 .vfront_porch = { 8, 17, 150 },
700 .vback_porch = { 8, 17, 150 },
701 .vsync_len = { 4, 11, 100 },
704 static const struct panel_desc auo_p320hvn03 = {
705 .timings = &auo_p320hvn03_timings,
706 .num_timings = 1,
707 .bpc = 8,
708 .size = {
709 .width = 698,
710 .height = 393,
712 .delay = {
713 .prepare = 1,
714 .enable = 450,
715 .unprepare = 500,
717 .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
720 static const struct drm_display_mode auo_t215hvn01_mode = {
721 .clock = 148800,
722 .hdisplay = 1920,
723 .hsync_start = 1920 + 88,
724 .hsync_end = 1920 + 88 + 44,
725 .htotal = 1920 + 88 + 44 + 148,
726 .vdisplay = 1080,
727 .vsync_start = 1080 + 4,
728 .vsync_end = 1080 + 4 + 5,
729 .vtotal = 1080 + 4 + 5 + 36,
730 .vrefresh = 60,
733 static const struct panel_desc auo_t215hvn01 = {
734 .modes = &auo_t215hvn01_mode,
735 .num_modes = 1,
736 .bpc = 8,
737 .size = {
738 .width = 430,
739 .height = 270,
741 .delay = {
742 .disable = 5,
743 .unprepare = 1000,
747 static const struct drm_display_mode avic_tm070ddh03_mode = {
748 .clock = 51200,
749 .hdisplay = 1024,
750 .hsync_start = 1024 + 160,
751 .hsync_end = 1024 + 160 + 4,
752 .htotal = 1024 + 160 + 4 + 156,
753 .vdisplay = 600,
754 .vsync_start = 600 + 17,
755 .vsync_end = 600 + 17 + 1,
756 .vtotal = 600 + 17 + 1 + 17,
757 .vrefresh = 60,
760 static const struct panel_desc avic_tm070ddh03 = {
761 .modes = &avic_tm070ddh03_mode,
762 .num_modes = 1,
763 .bpc = 8,
764 .size = {
765 .width = 154,
766 .height = 90,
768 .delay = {
769 .prepare = 20,
770 .enable = 200,
771 .disable = 200,
775 static const struct drm_display_mode boe_hv070wsa_mode = {
776 .clock = 40800,
777 .hdisplay = 1024,
778 .hsync_start = 1024 + 90,
779 .hsync_end = 1024 + 90 + 90,
780 .htotal = 1024 + 90 + 90 + 90,
781 .vdisplay = 600,
782 .vsync_start = 600 + 3,
783 .vsync_end = 600 + 3 + 4,
784 .vtotal = 600 + 3 + 4 + 3,
785 .vrefresh = 60,
788 static const struct panel_desc boe_hv070wsa = {
789 .modes = &boe_hv070wsa_mode,
790 .num_modes = 1,
791 .size = {
792 .width = 154,
793 .height = 90,
797 static const struct drm_display_mode boe_nv101wxmn51_modes[] = {
799 .clock = 71900,
800 .hdisplay = 1280,
801 .hsync_start = 1280 + 48,
802 .hsync_end = 1280 + 48 + 32,
803 .htotal = 1280 + 48 + 32 + 80,
804 .vdisplay = 800,
805 .vsync_start = 800 + 3,
806 .vsync_end = 800 + 3 + 5,
807 .vtotal = 800 + 3 + 5 + 24,
808 .vrefresh = 60,
811 .clock = 57500,
812 .hdisplay = 1280,
813 .hsync_start = 1280 + 48,
814 .hsync_end = 1280 + 48 + 32,
815 .htotal = 1280 + 48 + 32 + 80,
816 .vdisplay = 800,
817 .vsync_start = 800 + 3,
818 .vsync_end = 800 + 3 + 5,
819 .vtotal = 800 + 3 + 5 + 24,
820 .vrefresh = 48,
824 static const struct panel_desc boe_nv101wxmn51 = {
825 .modes = boe_nv101wxmn51_modes,
826 .num_modes = ARRAY_SIZE(boe_nv101wxmn51_modes),
827 .bpc = 8,
828 .size = {
829 .width = 217,
830 .height = 136,
832 .delay = {
833 .prepare = 210,
834 .enable = 50,
835 .unprepare = 160,
839 static const struct drm_display_mode chunghwa_claa070wp03xg_mode = {
840 .clock = 66770,
841 .hdisplay = 800,
842 .hsync_start = 800 + 49,
843 .hsync_end = 800 + 49 + 33,
844 .htotal = 800 + 49 + 33 + 17,
845 .vdisplay = 1280,
846 .vsync_start = 1280 + 1,
847 .vsync_end = 1280 + 1 + 7,
848 .vtotal = 1280 + 1 + 7 + 15,
849 .vrefresh = 60,
850 .flags = DRM_MODE_FLAG_NVSYNC | DRM_MODE_FLAG_NHSYNC,
853 static const struct panel_desc chunghwa_claa070wp03xg = {
854 .modes = &chunghwa_claa070wp03xg_mode,
855 .num_modes = 1,
856 .bpc = 6,
857 .size = {
858 .width = 94,
859 .height = 150,
863 static const struct drm_display_mode chunghwa_claa101wa01a_mode = {
864 .clock = 72070,
865 .hdisplay = 1366,
866 .hsync_start = 1366 + 58,
867 .hsync_end = 1366 + 58 + 58,
868 .htotal = 1366 + 58 + 58 + 58,
869 .vdisplay = 768,
870 .vsync_start = 768 + 4,
871 .vsync_end = 768 + 4 + 4,
872 .vtotal = 768 + 4 + 4 + 4,
873 .vrefresh = 60,
876 static const struct panel_desc chunghwa_claa101wa01a = {
877 .modes = &chunghwa_claa101wa01a_mode,
878 .num_modes = 1,
879 .bpc = 6,
880 .size = {
881 .width = 220,
882 .height = 120,
886 static const struct drm_display_mode chunghwa_claa101wb01_mode = {
887 .clock = 69300,
888 .hdisplay = 1366,
889 .hsync_start = 1366 + 48,
890 .hsync_end = 1366 + 48 + 32,
891 .htotal = 1366 + 48 + 32 + 20,
892 .vdisplay = 768,
893 .vsync_start = 768 + 16,
894 .vsync_end = 768 + 16 + 8,
895 .vtotal = 768 + 16 + 8 + 16,
896 .vrefresh = 60,
899 static const struct panel_desc chunghwa_claa101wb01 = {
900 .modes = &chunghwa_claa101wb01_mode,
901 .num_modes = 1,
902 .bpc = 6,
903 .size = {
904 .width = 223,
905 .height = 125,
909 static const struct drm_display_mode dataimage_scf0700c48ggu18_mode = {
910 .clock = 33260,
911 .hdisplay = 800,
912 .hsync_start = 800 + 40,
913 .hsync_end = 800 + 40 + 128,
914 .htotal = 800 + 40 + 128 + 88,
915 .vdisplay = 480,
916 .vsync_start = 480 + 10,
917 .vsync_end = 480 + 10 + 2,
918 .vtotal = 480 + 10 + 2 + 33,
919 .vrefresh = 60,
920 .flags = DRM_MODE_FLAG_NVSYNC | DRM_MODE_FLAG_NHSYNC,
923 static const struct panel_desc dataimage_scf0700c48ggu18 = {
924 .modes = &dataimage_scf0700c48ggu18_mode,
925 .num_modes = 1,
926 .bpc = 8,
927 .size = {
928 .width = 152,
929 .height = 91,
931 .bus_format = MEDIA_BUS_FMT_RGB888_1X24,
932 .bus_flags = DRM_BUS_FLAG_DE_HIGH | DRM_BUS_FLAG_PIXDATA_POSEDGE,
935 static const struct display_timing dlc_dlc0700yzg_1_timing = {
936 .pixelclock = { 45000000, 51200000, 57000000 },
937 .hactive = { 1024, 1024, 1024 },
938 .hfront_porch = { 100, 106, 113 },
939 .hback_porch = { 100, 106, 113 },
940 .hsync_len = { 100, 108, 114 },
941 .vactive = { 600, 600, 600 },
942 .vfront_porch = { 8, 11, 15 },
943 .vback_porch = { 8, 11, 15 },
944 .vsync_len = { 9, 13, 15 },
945 .flags = DISPLAY_FLAGS_DE_HIGH,
948 static const struct panel_desc dlc_dlc0700yzg_1 = {
949 .timings = &dlc_dlc0700yzg_1_timing,
950 .num_timings = 1,
951 .bpc = 6,
952 .size = {
953 .width = 154,
954 .height = 86,
956 .delay = {
957 .prepare = 30,
958 .enable = 200,
959 .disable = 200,
961 .bus_format = MEDIA_BUS_FMT_RGB666_1X7X3_SPWG,
964 static const struct drm_display_mode edt_et057090dhu_mode = {
965 .clock = 25175,
966 .hdisplay = 640,
967 .hsync_start = 640 + 16,
968 .hsync_end = 640 + 16 + 30,
969 .htotal = 640 + 16 + 30 + 114,
970 .vdisplay = 480,
971 .vsync_start = 480 + 10,
972 .vsync_end = 480 + 10 + 3,
973 .vtotal = 480 + 10 + 3 + 32,
974 .vrefresh = 60,
975 .flags = DRM_MODE_FLAG_NVSYNC | DRM_MODE_FLAG_NHSYNC,
978 static const struct panel_desc edt_et057090dhu = {
979 .modes = &edt_et057090dhu_mode,
980 .num_modes = 1,
981 .bpc = 6,
982 .size = {
983 .width = 115,
984 .height = 86,
986 .bus_format = MEDIA_BUS_FMT_RGB666_1X18,
987 .bus_flags = DRM_BUS_FLAG_DE_HIGH | DRM_BUS_FLAG_PIXDATA_NEGEDGE,
990 static const struct drm_display_mode edt_etm0700g0dh6_mode = {
991 .clock = 33260,
992 .hdisplay = 800,
993 .hsync_start = 800 + 40,
994 .hsync_end = 800 + 40 + 128,
995 .htotal = 800 + 40 + 128 + 88,
996 .vdisplay = 480,
997 .vsync_start = 480 + 10,
998 .vsync_end = 480 + 10 + 2,
999 .vtotal = 480 + 10 + 2 + 33,
1000 .vrefresh = 60,
1001 .flags = DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC,
1004 static const struct panel_desc edt_etm0700g0dh6 = {
1005 .modes = &edt_etm0700g0dh6_mode,
1006 .num_modes = 1,
1007 .bpc = 6,
1008 .size = {
1009 .width = 152,
1010 .height = 91,
1012 .bus_format = MEDIA_BUS_FMT_RGB666_1X18,
1013 .bus_flags = DRM_BUS_FLAG_DE_HIGH | DRM_BUS_FLAG_PIXDATA_NEGEDGE,
1016 static const struct panel_desc edt_etm0700g0bdh6 = {
1017 .modes = &edt_etm0700g0dh6_mode,
1018 .num_modes = 1,
1019 .bpc = 6,
1020 .size = {
1021 .width = 152,
1022 .height = 91,
1024 .bus_format = MEDIA_BUS_FMT_RGB666_1X18,
1025 .bus_flags = DRM_BUS_FLAG_DE_HIGH | DRM_BUS_FLAG_PIXDATA_POSEDGE,
1028 static const struct drm_display_mode foxlink_fl500wvr00_a0t_mode = {
1029 .clock = 32260,
1030 .hdisplay = 800,
1031 .hsync_start = 800 + 168,
1032 .hsync_end = 800 + 168 + 64,
1033 .htotal = 800 + 168 + 64 + 88,
1034 .vdisplay = 480,
1035 .vsync_start = 480 + 37,
1036 .vsync_end = 480 + 37 + 2,
1037 .vtotal = 480 + 37 + 2 + 8,
1038 .vrefresh = 60,
1041 static const struct panel_desc foxlink_fl500wvr00_a0t = {
1042 .modes = &foxlink_fl500wvr00_a0t_mode,
1043 .num_modes = 1,
1044 .bpc = 8,
1045 .size = {
1046 .width = 108,
1047 .height = 65,
1049 .bus_format = MEDIA_BUS_FMT_RGB888_1X24,
1052 static const struct drm_display_mode giantplus_gpg482739qs5_mode = {
1053 .clock = 9000,
1054 .hdisplay = 480,
1055 .hsync_start = 480 + 5,
1056 .hsync_end = 480 + 5 + 1,
1057 .htotal = 480 + 5 + 1 + 40,
1058 .vdisplay = 272,
1059 .vsync_start = 272 + 8,
1060 .vsync_end = 272 + 8 + 1,
1061 .vtotal = 272 + 8 + 1 + 8,
1062 .vrefresh = 60,
1065 static const struct panel_desc giantplus_gpg482739qs5 = {
1066 .modes = &giantplus_gpg482739qs5_mode,
1067 .num_modes = 1,
1068 .bpc = 8,
1069 .size = {
1070 .width = 95,
1071 .height = 54,
1073 .bus_format = MEDIA_BUS_FMT_RGB888_1X24,
1076 static const struct display_timing hannstar_hsd070pww1_timing = {
1077 .pixelclock = { 64300000, 71100000, 82000000 },
1078 .hactive = { 1280, 1280, 1280 },
1079 .hfront_porch = { 1, 1, 10 },
1080 .hback_porch = { 1, 1, 10 },
1082 * According to the data sheet, the minimum horizontal blanking interval
1083 * is 54 clocks (1 + 52 + 1), but tests with a Nitrogen6X have shown the
1084 * minimum working horizontal blanking interval to be 60 clocks.
1086 .hsync_len = { 58, 158, 661 },
1087 .vactive = { 800, 800, 800 },
1088 .vfront_porch = { 1, 1, 10 },
1089 .vback_porch = { 1, 1, 10 },
1090 .vsync_len = { 1, 21, 203 },
1091 .flags = DISPLAY_FLAGS_DE_HIGH,
1094 static const struct panel_desc hannstar_hsd070pww1 = {
1095 .timings = &hannstar_hsd070pww1_timing,
1096 .num_timings = 1,
1097 .bpc = 6,
1098 .size = {
1099 .width = 151,
1100 .height = 94,
1102 .bus_format = MEDIA_BUS_FMT_RGB666_1X7X3_SPWG,
1105 static const struct display_timing hannstar_hsd100pxn1_timing = {
1106 .pixelclock = { 55000000, 65000000, 75000000 },
1107 .hactive = { 1024, 1024, 1024 },
1108 .hfront_porch = { 40, 40, 40 },
1109 .hback_porch = { 220, 220, 220 },
1110 .hsync_len = { 20, 60, 100 },
1111 .vactive = { 768, 768, 768 },
1112 .vfront_porch = { 7, 7, 7 },
1113 .vback_porch = { 21, 21, 21 },
1114 .vsync_len = { 10, 10, 10 },
1115 .flags = DISPLAY_FLAGS_DE_HIGH,
1118 static const struct panel_desc hannstar_hsd100pxn1 = {
1119 .timings = &hannstar_hsd100pxn1_timing,
1120 .num_timings = 1,
1121 .bpc = 6,
1122 .size = {
1123 .width = 203,
1124 .height = 152,
1126 .bus_format = MEDIA_BUS_FMT_RGB666_1X7X3_SPWG,
1129 static const struct drm_display_mode hitachi_tx23d38vm0caa_mode = {
1130 .clock = 33333,
1131 .hdisplay = 800,
1132 .hsync_start = 800 + 85,
1133 .hsync_end = 800 + 85 + 86,
1134 .htotal = 800 + 85 + 86 + 85,
1135 .vdisplay = 480,
1136 .vsync_start = 480 + 16,
1137 .vsync_end = 480 + 16 + 13,
1138 .vtotal = 480 + 16 + 13 + 16,
1139 .vrefresh = 60,
1142 static const struct panel_desc hitachi_tx23d38vm0caa = {
1143 .modes = &hitachi_tx23d38vm0caa_mode,
1144 .num_modes = 1,
1145 .bpc = 6,
1146 .size = {
1147 .width = 195,
1148 .height = 117,
1150 .delay = {
1151 .enable = 160,
1152 .disable = 160,
1156 static const struct drm_display_mode innolux_at043tn24_mode = {
1157 .clock = 9000,
1158 .hdisplay = 480,
1159 .hsync_start = 480 + 2,
1160 .hsync_end = 480 + 2 + 41,
1161 .htotal = 480 + 2 + 41 + 2,
1162 .vdisplay = 272,
1163 .vsync_start = 272 + 2,
1164 .vsync_end = 272 + 2 + 10,
1165 .vtotal = 272 + 2 + 10 + 2,
1166 .vrefresh = 60,
1167 .flags = DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC,
1170 static const struct panel_desc innolux_at043tn24 = {
1171 .modes = &innolux_at043tn24_mode,
1172 .num_modes = 1,
1173 .bpc = 8,
1174 .size = {
1175 .width = 95,
1176 .height = 54,
1178 .bus_format = MEDIA_BUS_FMT_RGB888_1X24,
1179 .bus_flags = DRM_BUS_FLAG_DE_HIGH | DRM_BUS_FLAG_PIXDATA_POSEDGE,
1182 static const struct drm_display_mode innolux_at070tn92_mode = {
1183 .clock = 33333,
1184 .hdisplay = 800,
1185 .hsync_start = 800 + 210,
1186 .hsync_end = 800 + 210 + 20,
1187 .htotal = 800 + 210 + 20 + 46,
1188 .vdisplay = 480,
1189 .vsync_start = 480 + 22,
1190 .vsync_end = 480 + 22 + 10,
1191 .vtotal = 480 + 22 + 23 + 10,
1192 .vrefresh = 60,
1195 static const struct panel_desc innolux_at070tn92 = {
1196 .modes = &innolux_at070tn92_mode,
1197 .num_modes = 1,
1198 .size = {
1199 .width = 154,
1200 .height = 86,
1202 .bus_format = MEDIA_BUS_FMT_RGB888_1X24,
1205 static const struct display_timing innolux_g070y2_l01_timing = {
1206 .pixelclock = { 28000000, 29500000, 32000000 },
1207 .hactive = { 800, 800, 800 },
1208 .hfront_porch = { 61, 91, 141 },
1209 .hback_porch = { 60, 90, 140 },
1210 .hsync_len = { 12, 12, 12 },
1211 .vactive = { 480, 480, 480 },
1212 .vfront_porch = { 4, 9, 30 },
1213 .vback_porch = { 4, 8, 28 },
1214 .vsync_len = { 2, 2, 2 },
1215 .flags = DISPLAY_FLAGS_DE_HIGH,
1218 static const struct panel_desc innolux_g070y2_l01 = {
1219 .timings = &innolux_g070y2_l01_timing,
1220 .num_timings = 1,
1221 .bpc = 6,
1222 .size = {
1223 .width = 152,
1224 .height = 91,
1226 .delay = {
1227 .prepare = 10,
1228 .enable = 100,
1229 .disable = 100,
1230 .unprepare = 800,
1232 .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
1235 static const struct display_timing innolux_g101ice_l01_timing = {
1236 .pixelclock = { 60400000, 71100000, 74700000 },
1237 .hactive = { 1280, 1280, 1280 },
1238 .hfront_porch = { 41, 80, 100 },
1239 .hback_porch = { 40, 79, 99 },
1240 .hsync_len = { 1, 1, 1 },
1241 .vactive = { 800, 800, 800 },
1242 .vfront_porch = { 5, 11, 14 },
1243 .vback_porch = { 4, 11, 14 },
1244 .vsync_len = { 1, 1, 1 },
1245 .flags = DISPLAY_FLAGS_DE_HIGH,
1248 static const struct panel_desc innolux_g101ice_l01 = {
1249 .timings = &innolux_g101ice_l01_timing,
1250 .num_timings = 1,
1251 .bpc = 8,
1252 .size = {
1253 .width = 217,
1254 .height = 135,
1256 .delay = {
1257 .enable = 200,
1258 .disable = 200,
1260 .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
1263 static const struct display_timing innolux_g121i1_l01_timing = {
1264 .pixelclock = { 67450000, 71000000, 74550000 },
1265 .hactive = { 1280, 1280, 1280 },
1266 .hfront_porch = { 40, 80, 160 },
1267 .hback_porch = { 39, 79, 159 },
1268 .hsync_len = { 1, 1, 1 },
1269 .vactive = { 800, 800, 800 },
1270 .vfront_porch = { 5, 11, 100 },
1271 .vback_porch = { 4, 11, 99 },
1272 .vsync_len = { 1, 1, 1 },
1275 static const struct panel_desc innolux_g121i1_l01 = {
1276 .timings = &innolux_g121i1_l01_timing,
1277 .num_timings = 1,
1278 .bpc = 6,
1279 .size = {
1280 .width = 261,
1281 .height = 163,
1283 .delay = {
1284 .enable = 200,
1285 .disable = 20,
1287 .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
1290 static const struct drm_display_mode innolux_g121x1_l03_mode = {
1291 .clock = 65000,
1292 .hdisplay = 1024,
1293 .hsync_start = 1024 + 0,
1294 .hsync_end = 1024 + 1,
1295 .htotal = 1024 + 0 + 1 + 320,
1296 .vdisplay = 768,
1297 .vsync_start = 768 + 38,
1298 .vsync_end = 768 + 38 + 1,
1299 .vtotal = 768 + 38 + 1 + 0,
1300 .vrefresh = 60,
1301 .flags = DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC,
1304 static const struct panel_desc innolux_g121x1_l03 = {
1305 .modes = &innolux_g121x1_l03_mode,
1306 .num_modes = 1,
1307 .bpc = 6,
1308 .size = {
1309 .width = 246,
1310 .height = 185,
1312 .delay = {
1313 .enable = 200,
1314 .unprepare = 200,
1315 .disable = 400,
1319 static const struct drm_display_mode innolux_n116bge_mode = {
1320 .clock = 76420,
1321 .hdisplay = 1366,
1322 .hsync_start = 1366 + 136,
1323 .hsync_end = 1366 + 136 + 30,
1324 .htotal = 1366 + 136 + 30 + 60,
1325 .vdisplay = 768,
1326 .vsync_start = 768 + 8,
1327 .vsync_end = 768 + 8 + 12,
1328 .vtotal = 768 + 8 + 12 + 12,
1329 .vrefresh = 60,
1330 .flags = DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC,
1333 static const struct panel_desc innolux_n116bge = {
1334 .modes = &innolux_n116bge_mode,
1335 .num_modes = 1,
1336 .bpc = 6,
1337 .size = {
1338 .width = 256,
1339 .height = 144,
1343 static const struct drm_display_mode innolux_n156bge_l21_mode = {
1344 .clock = 69300,
1345 .hdisplay = 1366,
1346 .hsync_start = 1366 + 16,
1347 .hsync_end = 1366 + 16 + 34,
1348 .htotal = 1366 + 16 + 34 + 50,
1349 .vdisplay = 768,
1350 .vsync_start = 768 + 2,
1351 .vsync_end = 768 + 2 + 6,
1352 .vtotal = 768 + 2 + 6 + 12,
1353 .vrefresh = 60,
1356 static const struct panel_desc innolux_n156bge_l21 = {
1357 .modes = &innolux_n156bge_l21_mode,
1358 .num_modes = 1,
1359 .bpc = 6,
1360 .size = {
1361 .width = 344,
1362 .height = 193,
1366 static const struct drm_display_mode innolux_tv123wam_mode = {
1367 .clock = 206016,
1368 .hdisplay = 2160,
1369 .hsync_start = 2160 + 48,
1370 .hsync_end = 2160 + 48 + 32,
1371 .htotal = 2160 + 48 + 32 + 80,
1372 .vdisplay = 1440,
1373 .vsync_start = 1440 + 3,
1374 .vsync_end = 1440 + 3 + 10,
1375 .vtotal = 1440 + 3 + 10 + 27,
1376 .vrefresh = 60,
1377 .flags = DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC,
1380 static const struct panel_desc innolux_tv123wam = {
1381 .modes = &innolux_tv123wam_mode,
1382 .num_modes = 1,
1383 .bpc = 8,
1384 .size = {
1385 .width = 259,
1386 .height = 173,
1388 .delay = {
1389 .unprepare = 500,
1393 static const struct drm_display_mode innolux_zj070na_01p_mode = {
1394 .clock = 51501,
1395 .hdisplay = 1024,
1396 .hsync_start = 1024 + 128,
1397 .hsync_end = 1024 + 128 + 64,
1398 .htotal = 1024 + 128 + 64 + 128,
1399 .vdisplay = 600,
1400 .vsync_start = 600 + 16,
1401 .vsync_end = 600 + 16 + 4,
1402 .vtotal = 600 + 16 + 4 + 16,
1403 .vrefresh = 60,
1406 static const struct panel_desc innolux_zj070na_01p = {
1407 .modes = &innolux_zj070na_01p_mode,
1408 .num_modes = 1,
1409 .bpc = 6,
1410 .size = {
1411 .width = 154,
1412 .height = 90,
1416 static const struct display_timing koe_tx31d200vm0baa_timing = {
1417 .pixelclock = { 39600000, 43200000, 48000000 },
1418 .hactive = { 1280, 1280, 1280 },
1419 .hfront_porch = { 16, 36, 56 },
1420 .hback_porch = { 16, 36, 56 },
1421 .hsync_len = { 8, 8, 8 },
1422 .vactive = { 480, 480, 480 },
1423 .vfront_porch = { 6, 21, 33 },
1424 .vback_porch = { 6, 21, 33 },
1425 .vsync_len = { 8, 8, 8 },
1426 .flags = DISPLAY_FLAGS_DE_HIGH,
1429 static const struct panel_desc koe_tx31d200vm0baa = {
1430 .timings = &koe_tx31d200vm0baa_timing,
1431 .num_timings = 1,
1432 .bpc = 6,
1433 .size = {
1434 .width = 292,
1435 .height = 109,
1437 .bus_format = MEDIA_BUS_FMT_RGB666_1X7X3_SPWG,
1440 static const struct display_timing kyo_tcg121xglp_timing = {
1441 .pixelclock = { 52000000, 65000000, 71000000 },
1442 .hactive = { 1024, 1024, 1024 },
1443 .hfront_porch = { 2, 2, 2 },
1444 .hback_porch = { 2, 2, 2 },
1445 .hsync_len = { 86, 124, 244 },
1446 .vactive = { 768, 768, 768 },
1447 .vfront_porch = { 2, 2, 2 },
1448 .vback_porch = { 2, 2, 2 },
1449 .vsync_len = { 6, 34, 73 },
1450 .flags = DISPLAY_FLAGS_DE_HIGH,
1453 static const struct panel_desc kyo_tcg121xglp = {
1454 .timings = &kyo_tcg121xglp_timing,
1455 .num_timings = 1,
1456 .bpc = 8,
1457 .size = {
1458 .width = 246,
1459 .height = 184,
1461 .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
1464 static const struct drm_display_mode lg_lb070wv8_mode = {
1465 .clock = 33246,
1466 .hdisplay = 800,
1467 .hsync_start = 800 + 88,
1468 .hsync_end = 800 + 88 + 80,
1469 .htotal = 800 + 88 + 80 + 88,
1470 .vdisplay = 480,
1471 .vsync_start = 480 + 10,
1472 .vsync_end = 480 + 10 + 25,
1473 .vtotal = 480 + 10 + 25 + 10,
1474 .vrefresh = 60,
1477 static const struct panel_desc lg_lb070wv8 = {
1478 .modes = &lg_lb070wv8_mode,
1479 .num_modes = 1,
1480 .bpc = 16,
1481 .size = {
1482 .width = 151,
1483 .height = 91,
1485 .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
1488 static const struct drm_display_mode lg_lp079qx1_sp0v_mode = {
1489 .clock = 200000,
1490 .hdisplay = 1536,
1491 .hsync_start = 1536 + 12,
1492 .hsync_end = 1536 + 12 + 16,
1493 .htotal = 1536 + 12 + 16 + 48,
1494 .vdisplay = 2048,
1495 .vsync_start = 2048 + 8,
1496 .vsync_end = 2048 + 8 + 4,
1497 .vtotal = 2048 + 8 + 4 + 8,
1498 .vrefresh = 60,
1499 .flags = DRM_MODE_FLAG_NVSYNC | DRM_MODE_FLAG_NHSYNC,
1502 static const struct panel_desc lg_lp079qx1_sp0v = {
1503 .modes = &lg_lp079qx1_sp0v_mode,
1504 .num_modes = 1,
1505 .size = {
1506 .width = 129,
1507 .height = 171,
1511 static const struct drm_display_mode lg_lp097qx1_spa1_mode = {
1512 .clock = 205210,
1513 .hdisplay = 2048,
1514 .hsync_start = 2048 + 150,
1515 .hsync_end = 2048 + 150 + 5,
1516 .htotal = 2048 + 150 + 5 + 5,
1517 .vdisplay = 1536,
1518 .vsync_start = 1536 + 3,
1519 .vsync_end = 1536 + 3 + 1,
1520 .vtotal = 1536 + 3 + 1 + 9,
1521 .vrefresh = 60,
1524 static const struct panel_desc lg_lp097qx1_spa1 = {
1525 .modes = &lg_lp097qx1_spa1_mode,
1526 .num_modes = 1,
1527 .size = {
1528 .width = 208,
1529 .height = 147,
1533 static const struct drm_display_mode lg_lp120up1_mode = {
1534 .clock = 162300,
1535 .hdisplay = 1920,
1536 .hsync_start = 1920 + 40,
1537 .hsync_end = 1920 + 40 + 40,
1538 .htotal = 1920 + 40 + 40+ 80,
1539 .vdisplay = 1280,
1540 .vsync_start = 1280 + 4,
1541 .vsync_end = 1280 + 4 + 4,
1542 .vtotal = 1280 + 4 + 4 + 12,
1543 .vrefresh = 60,
1546 static const struct panel_desc lg_lp120up1 = {
1547 .modes = &lg_lp120up1_mode,
1548 .num_modes = 1,
1549 .bpc = 8,
1550 .size = {
1551 .width = 267,
1552 .height = 183,
1556 static const struct drm_display_mode lg_lp129qe_mode = {
1557 .clock = 285250,
1558 .hdisplay = 2560,
1559 .hsync_start = 2560 + 48,
1560 .hsync_end = 2560 + 48 + 32,
1561 .htotal = 2560 + 48 + 32 + 80,
1562 .vdisplay = 1700,
1563 .vsync_start = 1700 + 3,
1564 .vsync_end = 1700 + 3 + 10,
1565 .vtotal = 1700 + 3 + 10 + 36,
1566 .vrefresh = 60,
1569 static const struct panel_desc lg_lp129qe = {
1570 .modes = &lg_lp129qe_mode,
1571 .num_modes = 1,
1572 .bpc = 8,
1573 .size = {
1574 .width = 272,
1575 .height = 181,
1579 static const struct drm_display_mode mitsubishi_aa070mc01_mode = {
1580 .clock = 30400,
1581 .hdisplay = 800,
1582 .hsync_start = 800 + 0,
1583 .hsync_end = 800 + 1,
1584 .htotal = 800 + 0 + 1 + 160,
1585 .vdisplay = 480,
1586 .vsync_start = 480 + 0,
1587 .vsync_end = 480 + 48 + 1,
1588 .vtotal = 480 + 48 + 1 + 0,
1589 .vrefresh = 60,
1590 .flags = DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC,
1593 static const struct panel_desc mitsubishi_aa070mc01 = {
1594 .modes = &mitsubishi_aa070mc01_mode,
1595 .num_modes = 1,
1596 .bpc = 8,
1597 .size = {
1598 .width = 152,
1599 .height = 91,
1602 .delay = {
1603 .enable = 200,
1604 .unprepare = 200,
1605 .disable = 400,
1607 .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
1608 .bus_flags = DRM_BUS_FLAG_DE_HIGH,
1611 static const struct display_timing nec_nl12880bc20_05_timing = {
1612 .pixelclock = { 67000000, 71000000, 75000000 },
1613 .hactive = { 1280, 1280, 1280 },
1614 .hfront_porch = { 2, 30, 30 },
1615 .hback_porch = { 6, 100, 100 },
1616 .hsync_len = { 2, 30, 30 },
1617 .vactive = { 800, 800, 800 },
1618 .vfront_porch = { 5, 5, 5 },
1619 .vback_porch = { 11, 11, 11 },
1620 .vsync_len = { 7, 7, 7 },
1623 static const struct panel_desc nec_nl12880bc20_05 = {
1624 .timings = &nec_nl12880bc20_05_timing,
1625 .num_timings = 1,
1626 .bpc = 8,
1627 .size = {
1628 .width = 261,
1629 .height = 163,
1631 .delay = {
1632 .enable = 50,
1633 .disable = 50,
1635 .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
1638 static const struct drm_display_mode nec_nl4827hc19_05b_mode = {
1639 .clock = 10870,
1640 .hdisplay = 480,
1641 .hsync_start = 480 + 2,
1642 .hsync_end = 480 + 2 + 41,
1643 .htotal = 480 + 2 + 41 + 2,
1644 .vdisplay = 272,
1645 .vsync_start = 272 + 2,
1646 .vsync_end = 272 + 2 + 4,
1647 .vtotal = 272 + 2 + 4 + 2,
1648 .vrefresh = 74,
1649 .flags = DRM_MODE_FLAG_NVSYNC | DRM_MODE_FLAG_NHSYNC,
1652 static const struct panel_desc nec_nl4827hc19_05b = {
1653 .modes = &nec_nl4827hc19_05b_mode,
1654 .num_modes = 1,
1655 .bpc = 8,
1656 .size = {
1657 .width = 95,
1658 .height = 54,
1660 .bus_format = MEDIA_BUS_FMT_RGB888_1X24,
1661 .bus_flags = DRM_BUS_FLAG_PIXDATA_POSEDGE,
1664 static const struct drm_display_mode netron_dy_e231732_mode = {
1665 .clock = 66000,
1666 .hdisplay = 1024,
1667 .hsync_start = 1024 + 160,
1668 .hsync_end = 1024 + 160 + 70,
1669 .htotal = 1024 + 160 + 70 + 90,
1670 .vdisplay = 600,
1671 .vsync_start = 600 + 127,
1672 .vsync_end = 600 + 127 + 20,
1673 .vtotal = 600 + 127 + 20 + 3,
1674 .vrefresh = 60,
1677 static const struct panel_desc netron_dy_e231732 = {
1678 .modes = &netron_dy_e231732_mode,
1679 .num_modes = 1,
1680 .size = {
1681 .width = 154,
1682 .height = 87,
1684 .bus_format = MEDIA_BUS_FMT_RGB666_1X18,
1687 static const struct drm_display_mode newhaven_nhd_43_480272ef_atxl_mode = {
1688 .clock = 9000,
1689 .hdisplay = 480,
1690 .hsync_start = 480 + 2,
1691 .hsync_end = 480 + 2 + 41,
1692 .htotal = 480 + 2 + 41 + 2,
1693 .vdisplay = 272,
1694 .vsync_start = 272 + 2,
1695 .vsync_end = 272 + 2 + 10,
1696 .vtotal = 272 + 2 + 10 + 2,
1697 .vrefresh = 60,
1698 .flags = DRM_MODE_FLAG_NVSYNC | DRM_MODE_FLAG_NHSYNC,
1701 static const struct panel_desc newhaven_nhd_43_480272ef_atxl = {
1702 .modes = &newhaven_nhd_43_480272ef_atxl_mode,
1703 .num_modes = 1,
1704 .bpc = 8,
1705 .size = {
1706 .width = 95,
1707 .height = 54,
1709 .bus_format = MEDIA_BUS_FMT_RGB888_1X24,
1710 .bus_flags = DRM_BUS_FLAG_DE_HIGH | DRM_BUS_FLAG_PIXDATA_POSEDGE |
1711 DRM_BUS_FLAG_SYNC_POSEDGE,
1714 static const struct display_timing nlt_nl192108ac18_02d_timing = {
1715 .pixelclock = { 130000000, 148350000, 163000000 },
1716 .hactive = { 1920, 1920, 1920 },
1717 .hfront_porch = { 80, 100, 100 },
1718 .hback_porch = { 100, 120, 120 },
1719 .hsync_len = { 50, 60, 60 },
1720 .vactive = { 1080, 1080, 1080 },
1721 .vfront_porch = { 12, 30, 30 },
1722 .vback_porch = { 4, 10, 10 },
1723 .vsync_len = { 4, 5, 5 },
1726 static const struct panel_desc nlt_nl192108ac18_02d = {
1727 .timings = &nlt_nl192108ac18_02d_timing,
1728 .num_timings = 1,
1729 .bpc = 8,
1730 .size = {
1731 .width = 344,
1732 .height = 194,
1734 .delay = {
1735 .unprepare = 500,
1737 .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
1740 static const struct drm_display_mode nvd_9128_mode = {
1741 .clock = 29500,
1742 .hdisplay = 800,
1743 .hsync_start = 800 + 130,
1744 .hsync_end = 800 + 130 + 98,
1745 .htotal = 800 + 0 + 130 + 98,
1746 .vdisplay = 480,
1747 .vsync_start = 480 + 10,
1748 .vsync_end = 480 + 10 + 50,
1749 .vtotal = 480 + 0 + 10 + 50,
1752 static const struct panel_desc nvd_9128 = {
1753 .modes = &nvd_9128_mode,
1754 .num_modes = 1,
1755 .bpc = 8,
1756 .size = {
1757 .width = 156,
1758 .height = 88,
1760 .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
1763 static const struct display_timing okaya_rs800480t_7x0gp_timing = {
1764 .pixelclock = { 30000000, 30000000, 40000000 },
1765 .hactive = { 800, 800, 800 },
1766 .hfront_porch = { 40, 40, 40 },
1767 .hback_porch = { 40, 40, 40 },
1768 .hsync_len = { 1, 48, 48 },
1769 .vactive = { 480, 480, 480 },
1770 .vfront_porch = { 13, 13, 13 },
1771 .vback_porch = { 29, 29, 29 },
1772 .vsync_len = { 3, 3, 3 },
1773 .flags = DISPLAY_FLAGS_DE_HIGH,
1776 static const struct panel_desc okaya_rs800480t_7x0gp = {
1777 .timings = &okaya_rs800480t_7x0gp_timing,
1778 .num_timings = 1,
1779 .bpc = 6,
1780 .size = {
1781 .width = 154,
1782 .height = 87,
1784 .delay = {
1785 .prepare = 41,
1786 .enable = 50,
1787 .unprepare = 41,
1788 .disable = 50,
1790 .bus_format = MEDIA_BUS_FMT_RGB666_1X18,
1793 static const struct drm_display_mode olimex_lcd_olinuxino_43ts_mode = {
1794 .clock = 9000,
1795 .hdisplay = 480,
1796 .hsync_start = 480 + 5,
1797 .hsync_end = 480 + 5 + 30,
1798 .htotal = 480 + 5 + 30 + 10,
1799 .vdisplay = 272,
1800 .vsync_start = 272 + 8,
1801 .vsync_end = 272 + 8 + 5,
1802 .vtotal = 272 + 8 + 5 + 3,
1803 .vrefresh = 60,
1806 static const struct panel_desc olimex_lcd_olinuxino_43ts = {
1807 .modes = &olimex_lcd_olinuxino_43ts_mode,
1808 .num_modes = 1,
1809 .size = {
1810 .width = 95,
1811 .height = 54,
1813 .bus_format = MEDIA_BUS_FMT_RGB888_1X24,
1817 * 800x480 CVT. The panel appears to be quite accepting, at least as far as
1818 * pixel clocks, but this is the timing that was being used in the Adafruit
1819 * installation instructions.
1821 static const struct drm_display_mode ontat_yx700wv03_mode = {
1822 .clock = 29500,
1823 .hdisplay = 800,
1824 .hsync_start = 824,
1825 .hsync_end = 896,
1826 .htotal = 992,
1827 .vdisplay = 480,
1828 .vsync_start = 483,
1829 .vsync_end = 493,
1830 .vtotal = 500,
1831 .vrefresh = 60,
1832 .flags = DRM_MODE_FLAG_NVSYNC | DRM_MODE_FLAG_NHSYNC,
1836 * Specification at:
1837 * https://www.adafruit.com/images/product-files/2406/c3163.pdf
1839 static const struct panel_desc ontat_yx700wv03 = {
1840 .modes = &ontat_yx700wv03_mode,
1841 .num_modes = 1,
1842 .bpc = 8,
1843 .size = {
1844 .width = 154,
1845 .height = 83,
1847 .bus_format = MEDIA_BUS_FMT_RGB666_1X18,
1850 static const struct drm_display_mode ortustech_com43h4m85ulc_mode = {
1851 .clock = 25000,
1852 .hdisplay = 480,
1853 .hsync_start = 480 + 10,
1854 .hsync_end = 480 + 10 + 10,
1855 .htotal = 480 + 10 + 10 + 15,
1856 .vdisplay = 800,
1857 .vsync_start = 800 + 3,
1858 .vsync_end = 800 + 3 + 3,
1859 .vtotal = 800 + 3 + 3 + 3,
1860 .vrefresh = 60,
1863 static const struct panel_desc ortustech_com43h4m85ulc = {
1864 .modes = &ortustech_com43h4m85ulc_mode,
1865 .num_modes = 1,
1866 .bpc = 8,
1867 .size = {
1868 .width = 56,
1869 .height = 93,
1871 .bus_format = MEDIA_BUS_FMT_RGB888_1X24,
1872 .bus_flags = DRM_BUS_FLAG_DE_HIGH | DRM_BUS_FLAG_PIXDATA_POSEDGE,
1875 static const struct drm_display_mode qd43003c0_40_mode = {
1876 .clock = 9000,
1877 .hdisplay = 480,
1878 .hsync_start = 480 + 8,
1879 .hsync_end = 480 + 8 + 4,
1880 .htotal = 480 + 8 + 4 + 39,
1881 .vdisplay = 272,
1882 .vsync_start = 272 + 4,
1883 .vsync_end = 272 + 4 + 10,
1884 .vtotal = 272 + 4 + 10 + 2,
1885 .vrefresh = 60,
1888 static const struct panel_desc qd43003c0_40 = {
1889 .modes = &qd43003c0_40_mode,
1890 .num_modes = 1,
1891 .bpc = 8,
1892 .size = {
1893 .width = 95,
1894 .height = 53,
1896 .bus_format = MEDIA_BUS_FMT_RGB888_1X24,
1899 static const struct display_timing rocktech_rk070er9427_timing = {
1900 .pixelclock = { 26400000, 33300000, 46800000 },
1901 .hactive = { 800, 800, 800 },
1902 .hfront_porch = { 16, 210, 354 },
1903 .hback_porch = { 46, 46, 46 },
1904 .hsync_len = { 1, 1, 1 },
1905 .vactive = { 480, 480, 480 },
1906 .vfront_porch = { 7, 22, 147 },
1907 .vback_porch = { 23, 23, 23 },
1908 .vsync_len = { 1, 1, 1 },
1909 .flags = DISPLAY_FLAGS_DE_HIGH,
1912 static const struct panel_desc rocktech_rk070er9427 = {
1913 .timings = &rocktech_rk070er9427_timing,
1914 .num_timings = 1,
1915 .bpc = 6,
1916 .size = {
1917 .width = 154,
1918 .height = 86,
1920 .delay = {
1921 .prepare = 41,
1922 .enable = 50,
1923 .unprepare = 41,
1924 .disable = 50,
1926 .bus_format = MEDIA_BUS_FMT_RGB666_1X18,
1929 static const struct drm_display_mode samsung_lsn122dl01_c01_mode = {
1930 .clock = 271560,
1931 .hdisplay = 2560,
1932 .hsync_start = 2560 + 48,
1933 .hsync_end = 2560 + 48 + 32,
1934 .htotal = 2560 + 48 + 32 + 80,
1935 .vdisplay = 1600,
1936 .vsync_start = 1600 + 2,
1937 .vsync_end = 1600 + 2 + 5,
1938 .vtotal = 1600 + 2 + 5 + 57,
1939 .vrefresh = 60,
1942 static const struct panel_desc samsung_lsn122dl01_c01 = {
1943 .modes = &samsung_lsn122dl01_c01_mode,
1944 .num_modes = 1,
1945 .size = {
1946 .width = 263,
1947 .height = 164,
1951 static const struct drm_display_mode samsung_ltn101nt05_mode = {
1952 .clock = 54030,
1953 .hdisplay = 1024,
1954 .hsync_start = 1024 + 24,
1955 .hsync_end = 1024 + 24 + 136,
1956 .htotal = 1024 + 24 + 136 + 160,
1957 .vdisplay = 600,
1958 .vsync_start = 600 + 3,
1959 .vsync_end = 600 + 3 + 6,
1960 .vtotal = 600 + 3 + 6 + 61,
1961 .vrefresh = 60,
1964 static const struct panel_desc samsung_ltn101nt05 = {
1965 .modes = &samsung_ltn101nt05_mode,
1966 .num_modes = 1,
1967 .bpc = 6,
1968 .size = {
1969 .width = 223,
1970 .height = 125,
1974 static const struct drm_display_mode samsung_ltn140at29_301_mode = {
1975 .clock = 76300,
1976 .hdisplay = 1366,
1977 .hsync_start = 1366 + 64,
1978 .hsync_end = 1366 + 64 + 48,
1979 .htotal = 1366 + 64 + 48 + 128,
1980 .vdisplay = 768,
1981 .vsync_start = 768 + 2,
1982 .vsync_end = 768 + 2 + 5,
1983 .vtotal = 768 + 2 + 5 + 17,
1984 .vrefresh = 60,
1987 static const struct panel_desc samsung_ltn140at29_301 = {
1988 .modes = &samsung_ltn140at29_301_mode,
1989 .num_modes = 1,
1990 .bpc = 6,
1991 .size = {
1992 .width = 320,
1993 .height = 187,
1997 static const struct drm_display_mode sharp_lq035q7db03_mode = {
1998 .clock = 5500,
1999 .hdisplay = 240,
2000 .hsync_start = 240 + 16,
2001 .hsync_end = 240 + 16 + 7,
2002 .htotal = 240 + 16 + 7 + 5,
2003 .vdisplay = 320,
2004 .vsync_start = 320 + 9,
2005 .vsync_end = 320 + 9 + 1,
2006 .vtotal = 320 + 9 + 1 + 7,
2007 .vrefresh = 60,
2010 static const struct panel_desc sharp_lq035q7db03 = {
2011 .modes = &sharp_lq035q7db03_mode,
2012 .num_modes = 1,
2013 .bpc = 6,
2014 .size = {
2015 .width = 54,
2016 .height = 72,
2018 .bus_format = MEDIA_BUS_FMT_RGB666_1X18,
2021 static const struct display_timing sharp_lq101k1ly04_timing = {
2022 .pixelclock = { 60000000, 65000000, 80000000 },
2023 .hactive = { 1280, 1280, 1280 },
2024 .hfront_porch = { 20, 20, 20 },
2025 .hback_porch = { 20, 20, 20 },
2026 .hsync_len = { 10, 10, 10 },
2027 .vactive = { 800, 800, 800 },
2028 .vfront_porch = { 4, 4, 4 },
2029 .vback_porch = { 4, 4, 4 },
2030 .vsync_len = { 4, 4, 4 },
2031 .flags = DISPLAY_FLAGS_PIXDATA_POSEDGE,
2034 static const struct panel_desc sharp_lq101k1ly04 = {
2035 .timings = &sharp_lq101k1ly04_timing,
2036 .num_timings = 1,
2037 .bpc = 8,
2038 .size = {
2039 .width = 217,
2040 .height = 136,
2042 .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_JEIDA,
2045 static const struct display_timing sharp_lq123p1jx31_timing = {
2046 .pixelclock = { 252750000, 252750000, 266604720 },
2047 .hactive = { 2400, 2400, 2400 },
2048 .hfront_porch = { 48, 48, 48 },
2049 .hback_porch = { 80, 80, 84 },
2050 .hsync_len = { 32, 32, 32 },
2051 .vactive = { 1600, 1600, 1600 },
2052 .vfront_porch = { 3, 3, 3 },
2053 .vback_porch = { 33, 33, 120 },
2054 .vsync_len = { 10, 10, 10 },
2055 .flags = DISPLAY_FLAGS_VSYNC_LOW | DISPLAY_FLAGS_HSYNC_LOW,
2058 static const struct panel_desc sharp_lq123p1jx31 = {
2059 .timings = &sharp_lq123p1jx31_timing,
2060 .num_timings = 1,
2061 .bpc = 8,
2062 .size = {
2063 .width = 259,
2064 .height = 173,
2066 .delay = {
2067 .prepare = 110,
2068 .enable = 50,
2069 .unprepare = 550,
2073 static const struct drm_display_mode sharp_lq150x1lg11_mode = {
2074 .clock = 71100,
2075 .hdisplay = 1024,
2076 .hsync_start = 1024 + 168,
2077 .hsync_end = 1024 + 168 + 64,
2078 .htotal = 1024 + 168 + 64 + 88,
2079 .vdisplay = 768,
2080 .vsync_start = 768 + 37,
2081 .vsync_end = 768 + 37 + 2,
2082 .vtotal = 768 + 37 + 2 + 8,
2083 .vrefresh = 60,
2086 static const struct panel_desc sharp_lq150x1lg11 = {
2087 .modes = &sharp_lq150x1lg11_mode,
2088 .num_modes = 1,
2089 .bpc = 6,
2090 .size = {
2091 .width = 304,
2092 .height = 228,
2094 .bus_format = MEDIA_BUS_FMT_RGB565_1X16,
2097 static const struct drm_display_mode shelly_sca07010_bfn_lnn_mode = {
2098 .clock = 33300,
2099 .hdisplay = 800,
2100 .hsync_start = 800 + 1,
2101 .hsync_end = 800 + 1 + 64,
2102 .htotal = 800 + 1 + 64 + 64,
2103 .vdisplay = 480,
2104 .vsync_start = 480 + 1,
2105 .vsync_end = 480 + 1 + 23,
2106 .vtotal = 480 + 1 + 23 + 22,
2107 .vrefresh = 60,
2110 static const struct panel_desc shelly_sca07010_bfn_lnn = {
2111 .modes = &shelly_sca07010_bfn_lnn_mode,
2112 .num_modes = 1,
2113 .size = {
2114 .width = 152,
2115 .height = 91,
2117 .bus_format = MEDIA_BUS_FMT_RGB666_1X18,
2120 static const struct drm_display_mode starry_kr122ea0sra_mode = {
2121 .clock = 147000,
2122 .hdisplay = 1920,
2123 .hsync_start = 1920 + 16,
2124 .hsync_end = 1920 + 16 + 16,
2125 .htotal = 1920 + 16 + 16 + 32,
2126 .vdisplay = 1200,
2127 .vsync_start = 1200 + 15,
2128 .vsync_end = 1200 + 15 + 2,
2129 .vtotal = 1200 + 15 + 2 + 18,
2130 .vrefresh = 60,
2131 .flags = DRM_MODE_FLAG_NVSYNC | DRM_MODE_FLAG_NHSYNC,
2134 static const struct panel_desc starry_kr122ea0sra = {
2135 .modes = &starry_kr122ea0sra_mode,
2136 .num_modes = 1,
2137 .size = {
2138 .width = 263,
2139 .height = 164,
2141 .delay = {
2142 .prepare = 10 + 200,
2143 .enable = 50,
2144 .unprepare = 10 + 500,
2148 static const struct display_timing tianma_tm070jdhg30_timing = {
2149 .pixelclock = { 62600000, 68200000, 78100000 },
2150 .hactive = { 1280, 1280, 1280 },
2151 .hfront_porch = { 15, 64, 159 },
2152 .hback_porch = { 5, 5, 5 },
2153 .hsync_len = { 1, 1, 256 },
2154 .vactive = { 800, 800, 800 },
2155 .vfront_porch = { 3, 40, 99 },
2156 .vback_porch = { 2, 2, 2 },
2157 .vsync_len = { 1, 1, 128 },
2158 .flags = DISPLAY_FLAGS_DE_HIGH,
2161 static const struct panel_desc tianma_tm070jdhg30 = {
2162 .timings = &tianma_tm070jdhg30_timing,
2163 .num_timings = 1,
2164 .bpc = 8,
2165 .size = {
2166 .width = 151,
2167 .height = 95,
2169 .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
2172 static const struct display_timing tianma_tm070rvhg71_timing = {
2173 .pixelclock = { 27700000, 29200000, 39600000 },
2174 .hactive = { 800, 800, 800 },
2175 .hfront_porch = { 12, 40, 212 },
2176 .hback_porch = { 88, 88, 88 },
2177 .hsync_len = { 1, 1, 40 },
2178 .vactive = { 480, 480, 480 },
2179 .vfront_porch = { 1, 13, 88 },
2180 .vback_porch = { 32, 32, 32 },
2181 .vsync_len = { 1, 1, 3 },
2182 .flags = DISPLAY_FLAGS_DE_HIGH,
2185 static const struct panel_desc tianma_tm070rvhg71 = {
2186 .timings = &tianma_tm070rvhg71_timing,
2187 .num_timings = 1,
2188 .bpc = 8,
2189 .size = {
2190 .width = 154,
2191 .height = 86,
2193 .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
2196 static const struct drm_display_mode toshiba_lt089ac29000_mode = {
2197 .clock = 79500,
2198 .hdisplay = 1280,
2199 .hsync_start = 1280 + 192,
2200 .hsync_end = 1280 + 192 + 128,
2201 .htotal = 1280 + 192 + 128 + 64,
2202 .vdisplay = 768,
2203 .vsync_start = 768 + 20,
2204 .vsync_end = 768 + 20 + 7,
2205 .vtotal = 768 + 20 + 7 + 3,
2206 .vrefresh = 60,
2209 static const struct panel_desc toshiba_lt089ac29000 = {
2210 .modes = &toshiba_lt089ac29000_mode,
2211 .num_modes = 1,
2212 .size = {
2213 .width = 194,
2214 .height = 116,
2216 .bus_format = MEDIA_BUS_FMT_RGB888_1X24,
2217 .bus_flags = DRM_BUS_FLAG_DE_HIGH | DRM_BUS_FLAG_PIXDATA_POSEDGE,
2220 static const struct drm_display_mode tpk_f07a_0102_mode = {
2221 .clock = 33260,
2222 .hdisplay = 800,
2223 .hsync_start = 800 + 40,
2224 .hsync_end = 800 + 40 + 128,
2225 .htotal = 800 + 40 + 128 + 88,
2226 .vdisplay = 480,
2227 .vsync_start = 480 + 10,
2228 .vsync_end = 480 + 10 + 2,
2229 .vtotal = 480 + 10 + 2 + 33,
2230 .vrefresh = 60,
2233 static const struct panel_desc tpk_f07a_0102 = {
2234 .modes = &tpk_f07a_0102_mode,
2235 .num_modes = 1,
2236 .size = {
2237 .width = 152,
2238 .height = 91,
2240 .bus_flags = DRM_BUS_FLAG_PIXDATA_POSEDGE,
2243 static const struct drm_display_mode tpk_f10a_0102_mode = {
2244 .clock = 45000,
2245 .hdisplay = 1024,
2246 .hsync_start = 1024 + 176,
2247 .hsync_end = 1024 + 176 + 5,
2248 .htotal = 1024 + 176 + 5 + 88,
2249 .vdisplay = 600,
2250 .vsync_start = 600 + 20,
2251 .vsync_end = 600 + 20 + 5,
2252 .vtotal = 600 + 20 + 5 + 25,
2253 .vrefresh = 60,
2256 static const struct panel_desc tpk_f10a_0102 = {
2257 .modes = &tpk_f10a_0102_mode,
2258 .num_modes = 1,
2259 .size = {
2260 .width = 223,
2261 .height = 125,
2265 static const struct display_timing urt_umsh_8596md_timing = {
2266 .pixelclock = { 33260000, 33260000, 33260000 },
2267 .hactive = { 800, 800, 800 },
2268 .hfront_porch = { 41, 41, 41 },
2269 .hback_porch = { 216 - 128, 216 - 128, 216 - 128 },
2270 .hsync_len = { 71, 128, 128 },
2271 .vactive = { 480, 480, 480 },
2272 .vfront_porch = { 10, 10, 10 },
2273 .vback_porch = { 35 - 2, 35 - 2, 35 - 2 },
2274 .vsync_len = { 2, 2, 2 },
2275 .flags = DISPLAY_FLAGS_DE_HIGH | DISPLAY_FLAGS_PIXDATA_NEGEDGE |
2276 DISPLAY_FLAGS_HSYNC_LOW | DISPLAY_FLAGS_VSYNC_LOW,
2279 static const struct panel_desc urt_umsh_8596md_lvds = {
2280 .timings = &urt_umsh_8596md_timing,
2281 .num_timings = 1,
2282 .bpc = 6,
2283 .size = {
2284 .width = 152,
2285 .height = 91,
2287 .bus_format = MEDIA_BUS_FMT_RGB666_1X7X3_SPWG,
2290 static const struct panel_desc urt_umsh_8596md_parallel = {
2291 .timings = &urt_umsh_8596md_timing,
2292 .num_timings = 1,
2293 .bpc = 6,
2294 .size = {
2295 .width = 152,
2296 .height = 91,
2298 .bus_format = MEDIA_BUS_FMT_RGB666_1X18,
2301 static const struct drm_display_mode winstar_wf35ltiacd_mode = {
2302 .clock = 6410,
2303 .hdisplay = 320,
2304 .hsync_start = 320 + 20,
2305 .hsync_end = 320 + 20 + 30,
2306 .htotal = 320 + 20 + 30 + 38,
2307 .vdisplay = 240,
2308 .vsync_start = 240 + 4,
2309 .vsync_end = 240 + 4 + 3,
2310 .vtotal = 240 + 4 + 3 + 15,
2311 .vrefresh = 60,
2312 .flags = DRM_MODE_FLAG_NVSYNC | DRM_MODE_FLAG_NHSYNC,
2315 static const struct panel_desc winstar_wf35ltiacd = {
2316 .modes = &winstar_wf35ltiacd_mode,
2317 .num_modes = 1,
2318 .bpc = 8,
2319 .size = {
2320 .width = 70,
2321 .height = 53,
2323 .bus_format = MEDIA_BUS_FMT_RGB888_1X24,
2326 static const struct of_device_id platform_of_match[] = {
2328 .compatible = "ampire,am-480272h3tmqw-t01h",
2329 .data = &ampire_am_480272h3tmqw_t01h,
2330 }, {
2331 .compatible = "ampire,am800480r3tmqwa1h",
2332 .data = &ampire_am800480r3tmqwa1h,
2333 }, {
2334 .compatible = "auo,b101aw03",
2335 .data = &auo_b101aw03,
2336 }, {
2337 .compatible = "auo,b101ean01",
2338 .data = &auo_b101ean01,
2339 }, {
2340 .compatible = "auo,b101xtn01",
2341 .data = &auo_b101xtn01,
2342 }, {
2343 .compatible = "auo,b116xw03",
2344 .data = &auo_b116xw03,
2345 }, {
2346 .compatible = "auo,b133htn01",
2347 .data = &auo_b133htn01,
2348 }, {
2349 .compatible = "auo,b133xtn01",
2350 .data = &auo_b133xtn01,
2351 }, {
2352 .compatible = "auo,g070vvn01",
2353 .data = &auo_g070vvn01,
2354 }, {
2355 .compatible = "auo,g104sn02",
2356 .data = &auo_g104sn02,
2357 }, {
2358 .compatible = "auo,g133han01",
2359 .data = &auo_g133han01,
2360 }, {
2361 .compatible = "auo,g185han01",
2362 .data = &auo_g185han01,
2363 }, {
2364 .compatible = "auo,p320hvn03",
2365 .data = &auo_p320hvn03,
2366 }, {
2367 .compatible = "auo,t215hvn01",
2368 .data = &auo_t215hvn01,
2369 }, {
2370 .compatible = "avic,tm070ddh03",
2371 .data = &avic_tm070ddh03,
2372 }, {
2373 .compatible = "boe,hv070wsa-100",
2374 .data = &boe_hv070wsa
2375 }, {
2376 .compatible = "boe,nv101wxmn51",
2377 .data = &boe_nv101wxmn51,
2378 }, {
2379 .compatible = "chunghwa,claa070wp03xg",
2380 .data = &chunghwa_claa070wp03xg,
2381 }, {
2382 .compatible = "chunghwa,claa101wa01a",
2383 .data = &chunghwa_claa101wa01a
2384 }, {
2385 .compatible = "chunghwa,claa101wb01",
2386 .data = &chunghwa_claa101wb01
2387 }, {
2388 .compatible = "dataimage,scf0700c48ggu18",
2389 .data = &dataimage_scf0700c48ggu18,
2390 }, {
2391 .compatible = "dlc,dlc0700yzg-1",
2392 .data = &dlc_dlc0700yzg_1,
2393 }, {
2394 .compatible = "edt,et057090dhu",
2395 .data = &edt_et057090dhu,
2396 }, {
2397 .compatible = "edt,et070080dh6",
2398 .data = &edt_etm0700g0dh6,
2399 }, {
2400 .compatible = "edt,etm0700g0dh6",
2401 .data = &edt_etm0700g0dh6,
2402 }, {
2403 .compatible = "edt,etm0700g0bdh6",
2404 .data = &edt_etm0700g0bdh6,
2405 }, {
2406 .compatible = "edt,etm0700g0edh6",
2407 .data = &edt_etm0700g0bdh6,
2408 }, {
2409 .compatible = "foxlink,fl500wvr00-a0t",
2410 .data = &foxlink_fl500wvr00_a0t,
2411 }, {
2412 .compatible = "giantplus,gpg482739qs5",
2413 .data = &giantplus_gpg482739qs5
2414 }, {
2415 .compatible = "hannstar,hsd070pww1",
2416 .data = &hannstar_hsd070pww1,
2417 }, {
2418 .compatible = "hannstar,hsd100pxn1",
2419 .data = &hannstar_hsd100pxn1,
2420 }, {
2421 .compatible = "hit,tx23d38vm0caa",
2422 .data = &hitachi_tx23d38vm0caa
2423 }, {
2424 .compatible = "innolux,at043tn24",
2425 .data = &innolux_at043tn24,
2426 }, {
2427 .compatible = "innolux,at070tn92",
2428 .data = &innolux_at070tn92,
2429 }, {
2430 .compatible = "innolux,g070y2-l01",
2431 .data = &innolux_g070y2_l01,
2432 }, {
2433 .compatible = "innolux,g101ice-l01",
2434 .data = &innolux_g101ice_l01
2435 }, {
2436 .compatible = "innolux,g121i1-l01",
2437 .data = &innolux_g121i1_l01
2438 }, {
2439 .compatible = "innolux,g121x1-l03",
2440 .data = &innolux_g121x1_l03,
2441 }, {
2442 .compatible = "innolux,n116bge",
2443 .data = &innolux_n116bge,
2444 }, {
2445 .compatible = "innolux,n156bge-l21",
2446 .data = &innolux_n156bge_l21,
2447 }, {
2448 .compatible = "innolux,tv123wam",
2449 .data = &innolux_tv123wam,
2450 }, {
2451 .compatible = "innolux,zj070na-01p",
2452 .data = &innolux_zj070na_01p,
2453 }, {
2454 .compatible = "koe,tx31d200vm0baa",
2455 .data = &koe_tx31d200vm0baa,
2456 }, {
2457 .compatible = "kyo,tcg121xglp",
2458 .data = &kyo_tcg121xglp,
2459 }, {
2460 .compatible = "lg,lb070wv8",
2461 .data = &lg_lb070wv8,
2462 }, {
2463 .compatible = "lg,lp079qx1-sp0v",
2464 .data = &lg_lp079qx1_sp0v,
2465 }, {
2466 .compatible = "lg,lp097qx1-spa1",
2467 .data = &lg_lp097qx1_spa1,
2468 }, {
2469 .compatible = "lg,lp120up1",
2470 .data = &lg_lp120up1,
2471 }, {
2472 .compatible = "lg,lp129qe",
2473 .data = &lg_lp129qe,
2474 }, {
2475 .compatible = "mitsubishi,aa070mc01-ca1",
2476 .data = &mitsubishi_aa070mc01,
2477 }, {
2478 .compatible = "nec,nl12880bc20-05",
2479 .data = &nec_nl12880bc20_05,
2480 }, {
2481 .compatible = "nec,nl4827hc19-05b",
2482 .data = &nec_nl4827hc19_05b,
2483 }, {
2484 .compatible = "netron-dy,e231732",
2485 .data = &netron_dy_e231732,
2486 }, {
2487 .compatible = "newhaven,nhd-4.3-480272ef-atxl",
2488 .data = &newhaven_nhd_43_480272ef_atxl,
2489 }, {
2490 .compatible = "nlt,nl192108ac18-02d",
2491 .data = &nlt_nl192108ac18_02d,
2492 }, {
2493 .compatible = "nvd,9128",
2494 .data = &nvd_9128,
2495 }, {
2496 .compatible = "okaya,rs800480t-7x0gp",
2497 .data = &okaya_rs800480t_7x0gp,
2498 }, {
2499 .compatible = "olimex,lcd-olinuxino-43-ts",
2500 .data = &olimex_lcd_olinuxino_43ts,
2501 }, {
2502 .compatible = "ontat,yx700wv03",
2503 .data = &ontat_yx700wv03,
2504 }, {
2505 .compatible = "ortustech,com43h4m85ulc",
2506 .data = &ortustech_com43h4m85ulc,
2507 }, {
2508 .compatible = "qiaodian,qd43003c0-40",
2509 .data = &qd43003c0_40,
2510 }, {
2511 .compatible = "rocktech,rk070er9427",
2512 .data = &rocktech_rk070er9427,
2513 }, {
2514 .compatible = "samsung,lsn122dl01-c01",
2515 .data = &samsung_lsn122dl01_c01,
2516 }, {
2517 .compatible = "samsung,ltn101nt05",
2518 .data = &samsung_ltn101nt05,
2519 }, {
2520 .compatible = "samsung,ltn140at29-301",
2521 .data = &samsung_ltn140at29_301,
2522 }, {
2523 .compatible = "sharp,lq035q7db03",
2524 .data = &sharp_lq035q7db03,
2525 }, {
2526 .compatible = "sharp,lq101k1ly04",
2527 .data = &sharp_lq101k1ly04,
2528 }, {
2529 .compatible = "sharp,lq123p1jx31",
2530 .data = &sharp_lq123p1jx31,
2531 }, {
2532 .compatible = "sharp,lq150x1lg11",
2533 .data = &sharp_lq150x1lg11,
2534 }, {
2535 .compatible = "shelly,sca07010-bfn-lnn",
2536 .data = &shelly_sca07010_bfn_lnn,
2537 }, {
2538 .compatible = "starry,kr122ea0sra",
2539 .data = &starry_kr122ea0sra,
2540 }, {
2541 .compatible = "tianma,tm070jdhg30",
2542 .data = &tianma_tm070jdhg30,
2543 }, {
2544 .compatible = "tianma,tm070rvhg71",
2545 .data = &tianma_tm070rvhg71,
2546 }, {
2547 .compatible = "toshiba,lt089ac29000",
2548 .data = &toshiba_lt089ac29000,
2549 }, {
2550 .compatible = "tpk,f07a-0102",
2551 .data = &tpk_f07a_0102,
2552 }, {
2553 .compatible = "tpk,f10a-0102",
2554 .data = &tpk_f10a_0102,
2555 }, {
2556 .compatible = "urt,umsh-8596md-t",
2557 .data = &urt_umsh_8596md_parallel,
2558 }, {
2559 .compatible = "urt,umsh-8596md-1t",
2560 .data = &urt_umsh_8596md_parallel,
2561 }, {
2562 .compatible = "urt,umsh-8596md-7t",
2563 .data = &urt_umsh_8596md_parallel,
2564 }, {
2565 .compatible = "urt,umsh-8596md-11t",
2566 .data = &urt_umsh_8596md_lvds,
2567 }, {
2568 .compatible = "urt,umsh-8596md-19t",
2569 .data = &urt_umsh_8596md_lvds,
2570 }, {
2571 .compatible = "urt,umsh-8596md-20t",
2572 .data = &urt_umsh_8596md_parallel,
2573 }, {
2574 .compatible = "winstar,wf35ltiacd",
2575 .data = &winstar_wf35ltiacd,
2576 }, {
2577 /* sentinel */
2580 MODULE_DEVICE_TABLE(of, platform_of_match);
2582 static int panel_simple_platform_probe(struct platform_device *pdev)
2584 const struct of_device_id *id;
2586 id = of_match_node(platform_of_match, pdev->dev.of_node);
2587 if (!id)
2588 return -ENODEV;
2590 return panel_simple_probe(&pdev->dev, id->data);
2593 static int panel_simple_platform_remove(struct platform_device *pdev)
2595 return panel_simple_remove(&pdev->dev);
2598 static void panel_simple_platform_shutdown(struct platform_device *pdev)
2600 panel_simple_shutdown(&pdev->dev);
2603 static struct platform_driver panel_simple_platform_driver = {
2604 .driver = {
2605 .name = "panel-simple",
2606 .of_match_table = platform_of_match,
2608 .probe = panel_simple_platform_probe,
2609 .remove = panel_simple_platform_remove,
2610 .shutdown = panel_simple_platform_shutdown,
2613 struct panel_desc_dsi {
2614 struct panel_desc desc;
2616 unsigned long flags;
2617 enum mipi_dsi_pixel_format format;
2618 unsigned int lanes;
2621 static const struct drm_display_mode auo_b080uan01_mode = {
2622 .clock = 154500,
2623 .hdisplay = 1200,
2624 .hsync_start = 1200 + 62,
2625 .hsync_end = 1200 + 62 + 4,
2626 .htotal = 1200 + 62 + 4 + 62,
2627 .vdisplay = 1920,
2628 .vsync_start = 1920 + 9,
2629 .vsync_end = 1920 + 9 + 2,
2630 .vtotal = 1920 + 9 + 2 + 8,
2631 .vrefresh = 60,
2634 static const struct panel_desc_dsi auo_b080uan01 = {
2635 .desc = {
2636 .modes = &auo_b080uan01_mode,
2637 .num_modes = 1,
2638 .bpc = 8,
2639 .size = {
2640 .width = 108,
2641 .height = 272,
2644 .flags = MIPI_DSI_MODE_VIDEO | MIPI_DSI_CLOCK_NON_CONTINUOUS,
2645 .format = MIPI_DSI_FMT_RGB888,
2646 .lanes = 4,
2649 static const struct drm_display_mode boe_tv080wum_nl0_mode = {
2650 .clock = 160000,
2651 .hdisplay = 1200,
2652 .hsync_start = 1200 + 120,
2653 .hsync_end = 1200 + 120 + 20,
2654 .htotal = 1200 + 120 + 20 + 21,
2655 .vdisplay = 1920,
2656 .vsync_start = 1920 + 21,
2657 .vsync_end = 1920 + 21 + 3,
2658 .vtotal = 1920 + 21 + 3 + 18,
2659 .vrefresh = 60,
2660 .flags = DRM_MODE_FLAG_NVSYNC | DRM_MODE_FLAG_NHSYNC,
2663 static const struct panel_desc_dsi boe_tv080wum_nl0 = {
2664 .desc = {
2665 .modes = &boe_tv080wum_nl0_mode,
2666 .num_modes = 1,
2667 .size = {
2668 .width = 107,
2669 .height = 172,
2672 .flags = MIPI_DSI_MODE_VIDEO |
2673 MIPI_DSI_MODE_VIDEO_BURST |
2674 MIPI_DSI_MODE_VIDEO_SYNC_PULSE,
2675 .format = MIPI_DSI_FMT_RGB888,
2676 .lanes = 4,
2679 static const struct drm_display_mode lg_ld070wx3_sl01_mode = {
2680 .clock = 71000,
2681 .hdisplay = 800,
2682 .hsync_start = 800 + 32,
2683 .hsync_end = 800 + 32 + 1,
2684 .htotal = 800 + 32 + 1 + 57,
2685 .vdisplay = 1280,
2686 .vsync_start = 1280 + 28,
2687 .vsync_end = 1280 + 28 + 1,
2688 .vtotal = 1280 + 28 + 1 + 14,
2689 .vrefresh = 60,
2692 static const struct panel_desc_dsi lg_ld070wx3_sl01 = {
2693 .desc = {
2694 .modes = &lg_ld070wx3_sl01_mode,
2695 .num_modes = 1,
2696 .bpc = 8,
2697 .size = {
2698 .width = 94,
2699 .height = 151,
2702 .flags = MIPI_DSI_MODE_VIDEO | MIPI_DSI_CLOCK_NON_CONTINUOUS,
2703 .format = MIPI_DSI_FMT_RGB888,
2704 .lanes = 4,
2707 static const struct drm_display_mode lg_lh500wx1_sd03_mode = {
2708 .clock = 67000,
2709 .hdisplay = 720,
2710 .hsync_start = 720 + 12,
2711 .hsync_end = 720 + 12 + 4,
2712 .htotal = 720 + 12 + 4 + 112,
2713 .vdisplay = 1280,
2714 .vsync_start = 1280 + 8,
2715 .vsync_end = 1280 + 8 + 4,
2716 .vtotal = 1280 + 8 + 4 + 12,
2717 .vrefresh = 60,
2720 static const struct panel_desc_dsi lg_lh500wx1_sd03 = {
2721 .desc = {
2722 .modes = &lg_lh500wx1_sd03_mode,
2723 .num_modes = 1,
2724 .bpc = 8,
2725 .size = {
2726 .width = 62,
2727 .height = 110,
2730 .flags = MIPI_DSI_MODE_VIDEO,
2731 .format = MIPI_DSI_FMT_RGB888,
2732 .lanes = 4,
2735 static const struct drm_display_mode panasonic_vvx10f004b00_mode = {
2736 .clock = 157200,
2737 .hdisplay = 1920,
2738 .hsync_start = 1920 + 154,
2739 .hsync_end = 1920 + 154 + 16,
2740 .htotal = 1920 + 154 + 16 + 32,
2741 .vdisplay = 1200,
2742 .vsync_start = 1200 + 17,
2743 .vsync_end = 1200 + 17 + 2,
2744 .vtotal = 1200 + 17 + 2 + 16,
2745 .vrefresh = 60,
2748 static const struct panel_desc_dsi panasonic_vvx10f004b00 = {
2749 .desc = {
2750 .modes = &panasonic_vvx10f004b00_mode,
2751 .num_modes = 1,
2752 .bpc = 8,
2753 .size = {
2754 .width = 217,
2755 .height = 136,
2758 .flags = MIPI_DSI_MODE_VIDEO | MIPI_DSI_MODE_VIDEO_SYNC_PULSE |
2759 MIPI_DSI_CLOCK_NON_CONTINUOUS,
2760 .format = MIPI_DSI_FMT_RGB888,
2761 .lanes = 4,
2764 static const struct of_device_id dsi_of_match[] = {
2766 .compatible = "auo,b080uan01",
2767 .data = &auo_b080uan01
2768 }, {
2769 .compatible = "boe,tv080wum-nl0",
2770 .data = &boe_tv080wum_nl0
2771 }, {
2772 .compatible = "lg,ld070wx3-sl01",
2773 .data = &lg_ld070wx3_sl01
2774 }, {
2775 .compatible = "lg,lh500wx1-sd03",
2776 .data = &lg_lh500wx1_sd03
2777 }, {
2778 .compatible = "panasonic,vvx10f004b00",
2779 .data = &panasonic_vvx10f004b00
2780 }, {
2781 /* sentinel */
2784 MODULE_DEVICE_TABLE(of, dsi_of_match);
2786 static int panel_simple_dsi_probe(struct mipi_dsi_device *dsi)
2788 const struct panel_desc_dsi *desc;
2789 const struct of_device_id *id;
2790 int err;
2792 id = of_match_node(dsi_of_match, dsi->dev.of_node);
2793 if (!id)
2794 return -ENODEV;
2796 desc = id->data;
2798 err = panel_simple_probe(&dsi->dev, &desc->desc);
2799 if (err < 0)
2800 return err;
2802 dsi->mode_flags = desc->flags;
2803 dsi->format = desc->format;
2804 dsi->lanes = desc->lanes;
2806 return mipi_dsi_attach(dsi);
2809 static int panel_simple_dsi_remove(struct mipi_dsi_device *dsi)
2811 int err;
2813 err = mipi_dsi_detach(dsi);
2814 if (err < 0)
2815 dev_err(&dsi->dev, "failed to detach from DSI host: %d\n", err);
2817 return panel_simple_remove(&dsi->dev);
2820 static void panel_simple_dsi_shutdown(struct mipi_dsi_device *dsi)
2822 panel_simple_shutdown(&dsi->dev);
2825 static struct mipi_dsi_driver panel_simple_dsi_driver = {
2826 .driver = {
2827 .name = "panel-simple-dsi",
2828 .of_match_table = dsi_of_match,
2830 .probe = panel_simple_dsi_probe,
2831 .remove = panel_simple_dsi_remove,
2832 .shutdown = panel_simple_dsi_shutdown,
2835 static int __init panel_simple_init(void)
2837 int err;
2839 err = platform_driver_register(&panel_simple_platform_driver);
2840 if (err < 0)
2841 return err;
2843 if (IS_ENABLED(CONFIG_DRM_MIPI_DSI)) {
2844 err = mipi_dsi_driver_register(&panel_simple_dsi_driver);
2845 if (err < 0)
2846 return err;
2849 return 0;
2851 module_init(panel_simple_init);
2853 static void __exit panel_simple_exit(void)
2855 if (IS_ENABLED(CONFIG_DRM_MIPI_DSI))
2856 mipi_dsi_driver_unregister(&panel_simple_dsi_driver);
2858 platform_driver_unregister(&panel_simple_platform_driver);
2860 module_exit(panel_simple_exit);
2862 MODULE_AUTHOR("Thierry Reding <treding@nvidia.com>");
2863 MODULE_DESCRIPTION("DRM Driver for Simple Panels");
2864 MODULE_LICENSE("GPL and additional rights");