treewide: remove redundant IS_ERR() before error code check
[linux/fpc-iii.git] / drivers / gpu / drm / panel / panel-simple.c
blobe14c14ac62b53d9ca569e53f8a85421a444ae141
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/delay.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 <video/display_timing.h>
32 #include <video/of_display_timing.h>
33 #include <video/videomode.h>
35 #include <drm/drm_crtc.h>
36 #include <drm/drm_device.h>
37 #include <drm/drm_mipi_dsi.h>
38 #include <drm/drm_panel.h>
40 /**
41 * @modes: Pointer to array of fixed modes appropriate for this panel. If
42 * only one mode then this can just be the address of this the mode.
43 * NOTE: cannot be used with "timings" and also if this is specified
44 * then you cannot override the mode in the device tree.
45 * @num_modes: Number of elements in modes array.
46 * @timings: Pointer to array of display timings. NOTE: cannot be used with
47 * "modes" and also these will be used to validate a device tree
48 * override if one is present.
49 * @num_timings: Number of elements in timings array.
50 * @bpc: Bits per color.
51 * @size: Structure containing the physical size of this panel.
52 * @delay: Structure containing various delay values for this panel.
53 * @bus_format: See MEDIA_BUS_FMT_... defines.
54 * @bus_flags: See DRM_BUS_FLAG_... defines.
56 struct panel_desc {
57 const struct drm_display_mode *modes;
58 unsigned int num_modes;
59 const struct display_timing *timings;
60 unsigned int num_timings;
62 unsigned int bpc;
64 /**
65 * @width: width (in millimeters) of the panel's active display area
66 * @height: height (in millimeters) of the panel's active display area
68 struct {
69 unsigned int width;
70 unsigned int height;
71 } size;
73 /**
74 * @prepare: the time (in milliseconds) that it takes for the panel to
75 * become ready and start receiving video data
76 * @hpd_absent_delay: Add this to the prepare delay if we know Hot
77 * Plug Detect isn't used.
78 * @enable: the time (in milliseconds) that it takes for the panel to
79 * display the first valid frame after starting to receive
80 * video data
81 * @disable: the time (in milliseconds) that it takes for the panel to
82 * turn the display off (no content is visible)
83 * @unprepare: the time (in milliseconds) that it takes for the panel
84 * to power itself down completely
86 struct {
87 unsigned int prepare;
88 unsigned int hpd_absent_delay;
89 unsigned int enable;
90 unsigned int disable;
91 unsigned int unprepare;
92 } delay;
94 u32 bus_format;
95 u32 bus_flags;
96 int connector_type;
99 struct panel_simple {
100 struct drm_panel base;
101 bool prepared;
102 bool enabled;
103 bool no_hpd;
105 const struct panel_desc *desc;
107 struct regulator *supply;
108 struct i2c_adapter *ddc;
110 struct gpio_desc *enable_gpio;
112 struct drm_display_mode override_mode;
115 static inline struct panel_simple *to_panel_simple(struct drm_panel *panel)
117 return container_of(panel, struct panel_simple, base);
120 static unsigned int panel_simple_get_timings_modes(struct panel_simple *panel,
121 struct drm_connector *connector)
123 struct drm_display_mode *mode;
124 unsigned int i, num = 0;
126 for (i = 0; i < panel->desc->num_timings; i++) {
127 const struct display_timing *dt = &panel->desc->timings[i];
128 struct videomode vm;
130 videomode_from_timing(dt, &vm);
131 mode = drm_mode_create(connector->dev);
132 if (!mode) {
133 dev_err(panel->base.dev, "failed to add mode %ux%u\n",
134 dt->hactive.typ, dt->vactive.typ);
135 continue;
138 drm_display_mode_from_videomode(&vm, mode);
140 mode->type |= DRM_MODE_TYPE_DRIVER;
142 if (panel->desc->num_timings == 1)
143 mode->type |= DRM_MODE_TYPE_PREFERRED;
145 drm_mode_probed_add(connector, mode);
146 num++;
149 return num;
152 static unsigned int panel_simple_get_display_modes(struct panel_simple *panel,
153 struct drm_connector *connector)
155 struct drm_display_mode *mode;
156 unsigned int i, num = 0;
158 for (i = 0; i < panel->desc->num_modes; i++) {
159 const struct drm_display_mode *m = &panel->desc->modes[i];
161 mode = drm_mode_duplicate(connector->dev, m);
162 if (!mode) {
163 dev_err(panel->base.dev, "failed to add mode %ux%u@%u\n",
164 m->hdisplay, m->vdisplay, m->vrefresh);
165 continue;
168 mode->type |= DRM_MODE_TYPE_DRIVER;
170 if (panel->desc->num_modes == 1)
171 mode->type |= DRM_MODE_TYPE_PREFERRED;
173 drm_mode_set_name(mode);
175 drm_mode_probed_add(connector, mode);
176 num++;
179 return num;
182 static int panel_simple_get_non_edid_modes(struct panel_simple *panel,
183 struct drm_connector *connector)
185 struct drm_display_mode *mode;
186 bool has_override = panel->override_mode.type;
187 unsigned int num = 0;
189 if (!panel->desc)
190 return 0;
192 if (has_override) {
193 mode = drm_mode_duplicate(connector->dev,
194 &panel->override_mode);
195 if (mode) {
196 drm_mode_probed_add(connector, mode);
197 num = 1;
198 } else {
199 dev_err(panel->base.dev, "failed to add override mode\n");
203 /* Only add timings if override was not there or failed to validate */
204 if (num == 0 && panel->desc->num_timings)
205 num = panel_simple_get_timings_modes(panel, connector);
208 * Only add fixed modes if timings/override added no mode.
210 * We should only ever have either the display timings specified
211 * or a fixed mode. Anything else is rather bogus.
213 WARN_ON(panel->desc->num_timings && panel->desc->num_modes);
214 if (num == 0)
215 num = panel_simple_get_display_modes(panel, connector);
217 connector->display_info.bpc = panel->desc->bpc;
218 connector->display_info.width_mm = panel->desc->size.width;
219 connector->display_info.height_mm = panel->desc->size.height;
220 if (panel->desc->bus_format)
221 drm_display_info_set_bus_formats(&connector->display_info,
222 &panel->desc->bus_format, 1);
223 connector->display_info.bus_flags = panel->desc->bus_flags;
225 return num;
228 static int panel_simple_disable(struct drm_panel *panel)
230 struct panel_simple *p = to_panel_simple(panel);
232 if (!p->enabled)
233 return 0;
235 if (p->desc->delay.disable)
236 msleep(p->desc->delay.disable);
238 p->enabled = false;
240 return 0;
243 static int panel_simple_unprepare(struct drm_panel *panel)
245 struct panel_simple *p = to_panel_simple(panel);
247 if (!p->prepared)
248 return 0;
250 gpiod_set_value_cansleep(p->enable_gpio, 0);
252 regulator_disable(p->supply);
254 if (p->desc->delay.unprepare)
255 msleep(p->desc->delay.unprepare);
257 p->prepared = false;
259 return 0;
262 static int panel_simple_prepare(struct drm_panel *panel)
264 struct panel_simple *p = to_panel_simple(panel);
265 unsigned int delay;
266 int err;
268 if (p->prepared)
269 return 0;
271 err = regulator_enable(p->supply);
272 if (err < 0) {
273 dev_err(panel->dev, "failed to enable supply: %d\n", err);
274 return err;
277 gpiod_set_value_cansleep(p->enable_gpio, 1);
279 delay = p->desc->delay.prepare;
280 if (p->no_hpd)
281 delay += p->desc->delay.hpd_absent_delay;
282 if (delay)
283 msleep(delay);
285 p->prepared = true;
287 return 0;
290 static int panel_simple_enable(struct drm_panel *panel)
292 struct panel_simple *p = to_panel_simple(panel);
294 if (p->enabled)
295 return 0;
297 if (p->desc->delay.enable)
298 msleep(p->desc->delay.enable);
300 p->enabled = true;
302 return 0;
305 static int panel_simple_get_modes(struct drm_panel *panel,
306 struct drm_connector *connector)
308 struct panel_simple *p = to_panel_simple(panel);
309 int num = 0;
311 /* probe EDID if a DDC bus is available */
312 if (p->ddc) {
313 struct edid *edid = drm_get_edid(connector, p->ddc);
315 drm_connector_update_edid_property(connector, edid);
316 if (edid) {
317 num += drm_add_edid_modes(connector, edid);
318 kfree(edid);
322 /* add hard-coded panel modes */
323 num += panel_simple_get_non_edid_modes(p, connector);
325 return num;
328 static int panel_simple_get_timings(struct drm_panel *panel,
329 unsigned int num_timings,
330 struct display_timing *timings)
332 struct panel_simple *p = to_panel_simple(panel);
333 unsigned int i;
335 if (p->desc->num_timings < num_timings)
336 num_timings = p->desc->num_timings;
338 if (timings)
339 for (i = 0; i < num_timings; i++)
340 timings[i] = p->desc->timings[i];
342 return p->desc->num_timings;
345 static const struct drm_panel_funcs panel_simple_funcs = {
346 .disable = panel_simple_disable,
347 .unprepare = panel_simple_unprepare,
348 .prepare = panel_simple_prepare,
349 .enable = panel_simple_enable,
350 .get_modes = panel_simple_get_modes,
351 .get_timings = panel_simple_get_timings,
354 #define PANEL_SIMPLE_BOUNDS_CHECK(to_check, bounds, field) \
355 (to_check->field.typ >= bounds->field.min && \
356 to_check->field.typ <= bounds->field.max)
357 static void panel_simple_parse_panel_timing_node(struct device *dev,
358 struct panel_simple *panel,
359 const struct display_timing *ot)
361 const struct panel_desc *desc = panel->desc;
362 struct videomode vm;
363 unsigned int i;
365 if (WARN_ON(desc->num_modes)) {
366 dev_err(dev, "Reject override mode: panel has a fixed mode\n");
367 return;
369 if (WARN_ON(!desc->num_timings)) {
370 dev_err(dev, "Reject override mode: no timings specified\n");
371 return;
374 for (i = 0; i < panel->desc->num_timings; i++) {
375 const struct display_timing *dt = &panel->desc->timings[i];
377 if (!PANEL_SIMPLE_BOUNDS_CHECK(ot, dt, hactive) ||
378 !PANEL_SIMPLE_BOUNDS_CHECK(ot, dt, hfront_porch) ||
379 !PANEL_SIMPLE_BOUNDS_CHECK(ot, dt, hback_porch) ||
380 !PANEL_SIMPLE_BOUNDS_CHECK(ot, dt, hsync_len) ||
381 !PANEL_SIMPLE_BOUNDS_CHECK(ot, dt, vactive) ||
382 !PANEL_SIMPLE_BOUNDS_CHECK(ot, dt, vfront_porch) ||
383 !PANEL_SIMPLE_BOUNDS_CHECK(ot, dt, vback_porch) ||
384 !PANEL_SIMPLE_BOUNDS_CHECK(ot, dt, vsync_len))
385 continue;
387 if (ot->flags != dt->flags)
388 continue;
390 videomode_from_timing(ot, &vm);
391 drm_display_mode_from_videomode(&vm, &panel->override_mode);
392 panel->override_mode.type |= DRM_MODE_TYPE_DRIVER |
393 DRM_MODE_TYPE_PREFERRED;
394 break;
397 if (WARN_ON(!panel->override_mode.type))
398 dev_err(dev, "Reject override mode: No display_timing found\n");
401 static int panel_simple_probe(struct device *dev, const struct panel_desc *desc)
403 struct panel_simple *panel;
404 struct display_timing dt;
405 struct device_node *ddc;
406 int err;
408 panel = devm_kzalloc(dev, sizeof(*panel), GFP_KERNEL);
409 if (!panel)
410 return -ENOMEM;
412 panel->enabled = false;
413 panel->prepared = false;
414 panel->desc = desc;
416 panel->no_hpd = of_property_read_bool(dev->of_node, "no-hpd");
418 panel->supply = devm_regulator_get(dev, "power");
419 if (IS_ERR(panel->supply))
420 return PTR_ERR(panel->supply);
422 panel->enable_gpio = devm_gpiod_get_optional(dev, "enable",
423 GPIOD_OUT_LOW);
424 if (IS_ERR(panel->enable_gpio)) {
425 err = PTR_ERR(panel->enable_gpio);
426 if (err != -EPROBE_DEFER)
427 dev_err(dev, "failed to request GPIO: %d\n", err);
428 return err;
431 ddc = of_parse_phandle(dev->of_node, "ddc-i2c-bus", 0);
432 if (ddc) {
433 panel->ddc = of_find_i2c_adapter_by_node(ddc);
434 of_node_put(ddc);
436 if (!panel->ddc)
437 return -EPROBE_DEFER;
440 if (!of_get_display_timing(dev->of_node, "panel-timing", &dt))
441 panel_simple_parse_panel_timing_node(dev, panel, &dt);
443 drm_panel_init(&panel->base, dev, &panel_simple_funcs,
444 desc->connector_type);
446 err = drm_panel_of_backlight(&panel->base);
447 if (err)
448 goto free_ddc;
450 err = drm_panel_add(&panel->base);
451 if (err < 0)
452 goto free_ddc;
454 dev_set_drvdata(dev, panel);
456 return 0;
458 free_ddc:
459 if (panel->ddc)
460 put_device(&panel->ddc->dev);
462 return err;
465 static int panel_simple_remove(struct device *dev)
467 struct panel_simple *panel = dev_get_drvdata(dev);
469 drm_panel_remove(&panel->base);
470 drm_panel_disable(&panel->base);
471 drm_panel_unprepare(&panel->base);
473 if (panel->ddc)
474 put_device(&panel->ddc->dev);
476 return 0;
479 static void panel_simple_shutdown(struct device *dev)
481 struct panel_simple *panel = dev_get_drvdata(dev);
483 drm_panel_disable(&panel->base);
484 drm_panel_unprepare(&panel->base);
487 static const struct drm_display_mode ampire_am_480272h3tmqw_t01h_mode = {
488 .clock = 9000,
489 .hdisplay = 480,
490 .hsync_start = 480 + 2,
491 .hsync_end = 480 + 2 + 41,
492 .htotal = 480 + 2 + 41 + 2,
493 .vdisplay = 272,
494 .vsync_start = 272 + 2,
495 .vsync_end = 272 + 2 + 10,
496 .vtotal = 272 + 2 + 10 + 2,
497 .vrefresh = 60,
498 .flags = DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC,
501 static const struct panel_desc ampire_am_480272h3tmqw_t01h = {
502 .modes = &ampire_am_480272h3tmqw_t01h_mode,
503 .num_modes = 1,
504 .bpc = 8,
505 .size = {
506 .width = 105,
507 .height = 67,
509 .bus_format = MEDIA_BUS_FMT_RGB888_1X24,
512 static const struct drm_display_mode ampire_am800480r3tmqwa1h_mode = {
513 .clock = 33333,
514 .hdisplay = 800,
515 .hsync_start = 800 + 0,
516 .hsync_end = 800 + 0 + 255,
517 .htotal = 800 + 0 + 255 + 0,
518 .vdisplay = 480,
519 .vsync_start = 480 + 2,
520 .vsync_end = 480 + 2 + 45,
521 .vtotal = 480 + 2 + 45 + 0,
522 .vrefresh = 60,
523 .flags = DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC,
526 static const struct panel_desc ampire_am800480r3tmqwa1h = {
527 .modes = &ampire_am800480r3tmqwa1h_mode,
528 .num_modes = 1,
529 .bpc = 6,
530 .size = {
531 .width = 152,
532 .height = 91,
534 .bus_format = MEDIA_BUS_FMT_RGB666_1X18,
537 static const struct display_timing santek_st0700i5y_rbslw_f_timing = {
538 .pixelclock = { 26400000, 33300000, 46800000 },
539 .hactive = { 800, 800, 800 },
540 .hfront_porch = { 16, 210, 354 },
541 .hback_porch = { 45, 36, 6 },
542 .hsync_len = { 1, 10, 40 },
543 .vactive = { 480, 480, 480 },
544 .vfront_porch = { 7, 22, 147 },
545 .vback_porch = { 22, 13, 3 },
546 .vsync_len = { 1, 10, 20 },
547 .flags = DISPLAY_FLAGS_HSYNC_LOW | DISPLAY_FLAGS_VSYNC_LOW |
548 DISPLAY_FLAGS_DE_HIGH | DISPLAY_FLAGS_PIXDATA_POSEDGE
551 static const struct panel_desc armadeus_st0700_adapt = {
552 .timings = &santek_st0700i5y_rbslw_f_timing,
553 .num_timings = 1,
554 .bpc = 6,
555 .size = {
556 .width = 154,
557 .height = 86,
559 .bus_format = MEDIA_BUS_FMT_RGB666_1X18,
560 .bus_flags = DRM_BUS_FLAG_DE_HIGH | DRM_BUS_FLAG_PIXDATA_POSEDGE,
563 static const struct drm_display_mode auo_b101aw03_mode = {
564 .clock = 51450,
565 .hdisplay = 1024,
566 .hsync_start = 1024 + 156,
567 .hsync_end = 1024 + 156 + 8,
568 .htotal = 1024 + 156 + 8 + 156,
569 .vdisplay = 600,
570 .vsync_start = 600 + 16,
571 .vsync_end = 600 + 16 + 6,
572 .vtotal = 600 + 16 + 6 + 16,
573 .vrefresh = 60,
576 static const struct panel_desc auo_b101aw03 = {
577 .modes = &auo_b101aw03_mode,
578 .num_modes = 1,
579 .bpc = 6,
580 .size = {
581 .width = 223,
582 .height = 125,
586 static const struct display_timing auo_b101ean01_timing = {
587 .pixelclock = { 65300000, 72500000, 75000000 },
588 .hactive = { 1280, 1280, 1280 },
589 .hfront_porch = { 18, 119, 119 },
590 .hback_porch = { 21, 21, 21 },
591 .hsync_len = { 32, 32, 32 },
592 .vactive = { 800, 800, 800 },
593 .vfront_porch = { 4, 4, 4 },
594 .vback_porch = { 8, 8, 8 },
595 .vsync_len = { 18, 20, 20 },
598 static const struct panel_desc auo_b101ean01 = {
599 .timings = &auo_b101ean01_timing,
600 .num_timings = 1,
601 .bpc = 6,
602 .size = {
603 .width = 217,
604 .height = 136,
608 static const struct drm_display_mode auo_b101xtn01_mode = {
609 .clock = 72000,
610 .hdisplay = 1366,
611 .hsync_start = 1366 + 20,
612 .hsync_end = 1366 + 20 + 70,
613 .htotal = 1366 + 20 + 70,
614 .vdisplay = 768,
615 .vsync_start = 768 + 14,
616 .vsync_end = 768 + 14 + 42,
617 .vtotal = 768 + 14 + 42,
618 .vrefresh = 60,
619 .flags = DRM_MODE_FLAG_NVSYNC | DRM_MODE_FLAG_NHSYNC,
622 static const struct panel_desc auo_b101xtn01 = {
623 .modes = &auo_b101xtn01_mode,
624 .num_modes = 1,
625 .bpc = 6,
626 .size = {
627 .width = 223,
628 .height = 125,
632 static const struct drm_display_mode auo_b116xak01_mode = {
633 .clock = 69300,
634 .hdisplay = 1366,
635 .hsync_start = 1366 + 48,
636 .hsync_end = 1366 + 48 + 32,
637 .htotal = 1366 + 48 + 32 + 10,
638 .vdisplay = 768,
639 .vsync_start = 768 + 4,
640 .vsync_end = 768 + 4 + 6,
641 .vtotal = 768 + 4 + 6 + 15,
642 .vrefresh = 60,
643 .flags = DRM_MODE_FLAG_NVSYNC | DRM_MODE_FLAG_NHSYNC,
646 static const struct panel_desc auo_b116xak01 = {
647 .modes = &auo_b116xak01_mode,
648 .num_modes = 1,
649 .bpc = 6,
650 .size = {
651 .width = 256,
652 .height = 144,
654 .delay = {
655 .hpd_absent_delay = 200,
657 .bus_format = MEDIA_BUS_FMT_RGB666_1X18,
658 .connector_type = DRM_MODE_CONNECTOR_eDP,
661 static const struct drm_display_mode auo_b116xw03_mode = {
662 .clock = 70589,
663 .hdisplay = 1366,
664 .hsync_start = 1366 + 40,
665 .hsync_end = 1366 + 40 + 40,
666 .htotal = 1366 + 40 + 40 + 32,
667 .vdisplay = 768,
668 .vsync_start = 768 + 10,
669 .vsync_end = 768 + 10 + 12,
670 .vtotal = 768 + 10 + 12 + 6,
671 .vrefresh = 60,
674 static const struct panel_desc auo_b116xw03 = {
675 .modes = &auo_b116xw03_mode,
676 .num_modes = 1,
677 .bpc = 6,
678 .size = {
679 .width = 256,
680 .height = 144,
684 static const struct drm_display_mode auo_b133xtn01_mode = {
685 .clock = 69500,
686 .hdisplay = 1366,
687 .hsync_start = 1366 + 48,
688 .hsync_end = 1366 + 48 + 32,
689 .htotal = 1366 + 48 + 32 + 20,
690 .vdisplay = 768,
691 .vsync_start = 768 + 3,
692 .vsync_end = 768 + 3 + 6,
693 .vtotal = 768 + 3 + 6 + 13,
694 .vrefresh = 60,
697 static const struct panel_desc auo_b133xtn01 = {
698 .modes = &auo_b133xtn01_mode,
699 .num_modes = 1,
700 .bpc = 6,
701 .size = {
702 .width = 293,
703 .height = 165,
707 static const struct drm_display_mode auo_b133htn01_mode = {
708 .clock = 150660,
709 .hdisplay = 1920,
710 .hsync_start = 1920 + 172,
711 .hsync_end = 1920 + 172 + 80,
712 .htotal = 1920 + 172 + 80 + 60,
713 .vdisplay = 1080,
714 .vsync_start = 1080 + 25,
715 .vsync_end = 1080 + 25 + 10,
716 .vtotal = 1080 + 25 + 10 + 10,
717 .vrefresh = 60,
720 static const struct panel_desc auo_b133htn01 = {
721 .modes = &auo_b133htn01_mode,
722 .num_modes = 1,
723 .bpc = 6,
724 .size = {
725 .width = 293,
726 .height = 165,
728 .delay = {
729 .prepare = 105,
730 .enable = 20,
731 .unprepare = 50,
735 static const struct display_timing auo_g070vvn01_timings = {
736 .pixelclock = { 33300000, 34209000, 45000000 },
737 .hactive = { 800, 800, 800 },
738 .hfront_porch = { 20, 40, 200 },
739 .hback_porch = { 87, 40, 1 },
740 .hsync_len = { 1, 48, 87 },
741 .vactive = { 480, 480, 480 },
742 .vfront_porch = { 5, 13, 200 },
743 .vback_porch = { 31, 31, 29 },
744 .vsync_len = { 1, 1, 3 },
747 static const struct panel_desc auo_g070vvn01 = {
748 .timings = &auo_g070vvn01_timings,
749 .num_timings = 1,
750 .bpc = 8,
751 .size = {
752 .width = 152,
753 .height = 91,
755 .delay = {
756 .prepare = 200,
757 .enable = 50,
758 .disable = 50,
759 .unprepare = 1000,
763 static const struct drm_display_mode auo_g101evn010_mode = {
764 .clock = 68930,
765 .hdisplay = 1280,
766 .hsync_start = 1280 + 82,
767 .hsync_end = 1280 + 82 + 2,
768 .htotal = 1280 + 82 + 2 + 84,
769 .vdisplay = 800,
770 .vsync_start = 800 + 8,
771 .vsync_end = 800 + 8 + 2,
772 .vtotal = 800 + 8 + 2 + 6,
773 .vrefresh = 60,
776 static const struct panel_desc auo_g101evn010 = {
777 .modes = &auo_g101evn010_mode,
778 .num_modes = 1,
779 .bpc = 6,
780 .size = {
781 .width = 216,
782 .height = 135,
784 .bus_format = MEDIA_BUS_FMT_RGB666_1X18,
787 static const struct drm_display_mode auo_g104sn02_mode = {
788 .clock = 40000,
789 .hdisplay = 800,
790 .hsync_start = 800 + 40,
791 .hsync_end = 800 + 40 + 216,
792 .htotal = 800 + 40 + 216 + 128,
793 .vdisplay = 600,
794 .vsync_start = 600 + 10,
795 .vsync_end = 600 + 10 + 35,
796 .vtotal = 600 + 10 + 35 + 2,
797 .vrefresh = 60,
800 static const struct panel_desc auo_g104sn02 = {
801 .modes = &auo_g104sn02_mode,
802 .num_modes = 1,
803 .bpc = 8,
804 .size = {
805 .width = 211,
806 .height = 158,
810 static const struct display_timing auo_g133han01_timings = {
811 .pixelclock = { 134000000, 141200000, 149000000 },
812 .hactive = { 1920, 1920, 1920 },
813 .hfront_porch = { 39, 58, 77 },
814 .hback_porch = { 59, 88, 117 },
815 .hsync_len = { 28, 42, 56 },
816 .vactive = { 1080, 1080, 1080 },
817 .vfront_porch = { 3, 8, 11 },
818 .vback_porch = { 5, 14, 19 },
819 .vsync_len = { 4, 14, 19 },
822 static const struct panel_desc auo_g133han01 = {
823 .timings = &auo_g133han01_timings,
824 .num_timings = 1,
825 .bpc = 8,
826 .size = {
827 .width = 293,
828 .height = 165,
830 .delay = {
831 .prepare = 200,
832 .enable = 50,
833 .disable = 50,
834 .unprepare = 1000,
836 .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_JEIDA,
837 .connector_type = DRM_MODE_CONNECTOR_LVDS,
840 static const struct display_timing auo_g185han01_timings = {
841 .pixelclock = { 120000000, 144000000, 175000000 },
842 .hactive = { 1920, 1920, 1920 },
843 .hfront_porch = { 36, 120, 148 },
844 .hback_porch = { 24, 88, 108 },
845 .hsync_len = { 20, 48, 64 },
846 .vactive = { 1080, 1080, 1080 },
847 .vfront_porch = { 6, 10, 40 },
848 .vback_porch = { 2, 5, 20 },
849 .vsync_len = { 2, 5, 20 },
852 static const struct panel_desc auo_g185han01 = {
853 .timings = &auo_g185han01_timings,
854 .num_timings = 1,
855 .bpc = 8,
856 .size = {
857 .width = 409,
858 .height = 230,
860 .delay = {
861 .prepare = 50,
862 .enable = 200,
863 .disable = 110,
864 .unprepare = 1000,
866 .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
867 .connector_type = DRM_MODE_CONNECTOR_LVDS,
870 static const struct display_timing auo_p320hvn03_timings = {
871 .pixelclock = { 106000000, 148500000, 164000000 },
872 .hactive = { 1920, 1920, 1920 },
873 .hfront_porch = { 25, 50, 130 },
874 .hback_porch = { 25, 50, 130 },
875 .hsync_len = { 20, 40, 105 },
876 .vactive = { 1080, 1080, 1080 },
877 .vfront_porch = { 8, 17, 150 },
878 .vback_porch = { 8, 17, 150 },
879 .vsync_len = { 4, 11, 100 },
882 static const struct panel_desc auo_p320hvn03 = {
883 .timings = &auo_p320hvn03_timings,
884 .num_timings = 1,
885 .bpc = 8,
886 .size = {
887 .width = 698,
888 .height = 393,
890 .delay = {
891 .prepare = 1,
892 .enable = 450,
893 .unprepare = 500,
895 .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
896 .connector_type = DRM_MODE_CONNECTOR_LVDS,
899 static const struct drm_display_mode auo_t215hvn01_mode = {
900 .clock = 148800,
901 .hdisplay = 1920,
902 .hsync_start = 1920 + 88,
903 .hsync_end = 1920 + 88 + 44,
904 .htotal = 1920 + 88 + 44 + 148,
905 .vdisplay = 1080,
906 .vsync_start = 1080 + 4,
907 .vsync_end = 1080 + 4 + 5,
908 .vtotal = 1080 + 4 + 5 + 36,
909 .vrefresh = 60,
912 static const struct panel_desc auo_t215hvn01 = {
913 .modes = &auo_t215hvn01_mode,
914 .num_modes = 1,
915 .bpc = 8,
916 .size = {
917 .width = 430,
918 .height = 270,
920 .delay = {
921 .disable = 5,
922 .unprepare = 1000,
926 static const struct drm_display_mode avic_tm070ddh03_mode = {
927 .clock = 51200,
928 .hdisplay = 1024,
929 .hsync_start = 1024 + 160,
930 .hsync_end = 1024 + 160 + 4,
931 .htotal = 1024 + 160 + 4 + 156,
932 .vdisplay = 600,
933 .vsync_start = 600 + 17,
934 .vsync_end = 600 + 17 + 1,
935 .vtotal = 600 + 17 + 1 + 17,
936 .vrefresh = 60,
939 static const struct panel_desc avic_tm070ddh03 = {
940 .modes = &avic_tm070ddh03_mode,
941 .num_modes = 1,
942 .bpc = 8,
943 .size = {
944 .width = 154,
945 .height = 90,
947 .delay = {
948 .prepare = 20,
949 .enable = 200,
950 .disable = 200,
954 static const struct drm_display_mode bananapi_s070wv20_ct16_mode = {
955 .clock = 30000,
956 .hdisplay = 800,
957 .hsync_start = 800 + 40,
958 .hsync_end = 800 + 40 + 48,
959 .htotal = 800 + 40 + 48 + 40,
960 .vdisplay = 480,
961 .vsync_start = 480 + 13,
962 .vsync_end = 480 + 13 + 3,
963 .vtotal = 480 + 13 + 3 + 29,
966 static const struct panel_desc bananapi_s070wv20_ct16 = {
967 .modes = &bananapi_s070wv20_ct16_mode,
968 .num_modes = 1,
969 .bpc = 6,
970 .size = {
971 .width = 154,
972 .height = 86,
976 static const struct drm_display_mode boe_hv070wsa_mode = {
977 .clock = 42105,
978 .hdisplay = 1024,
979 .hsync_start = 1024 + 30,
980 .hsync_end = 1024 + 30 + 30,
981 .htotal = 1024 + 30 + 30 + 30,
982 .vdisplay = 600,
983 .vsync_start = 600 + 10,
984 .vsync_end = 600 + 10 + 10,
985 .vtotal = 600 + 10 + 10 + 10,
986 .vrefresh = 60,
989 static const struct panel_desc boe_hv070wsa = {
990 .modes = &boe_hv070wsa_mode,
991 .num_modes = 1,
992 .size = {
993 .width = 154,
994 .height = 90,
998 static const struct drm_display_mode boe_nv101wxmn51_modes[] = {
1000 .clock = 71900,
1001 .hdisplay = 1280,
1002 .hsync_start = 1280 + 48,
1003 .hsync_end = 1280 + 48 + 32,
1004 .htotal = 1280 + 48 + 32 + 80,
1005 .vdisplay = 800,
1006 .vsync_start = 800 + 3,
1007 .vsync_end = 800 + 3 + 5,
1008 .vtotal = 800 + 3 + 5 + 24,
1009 .vrefresh = 60,
1012 .clock = 57500,
1013 .hdisplay = 1280,
1014 .hsync_start = 1280 + 48,
1015 .hsync_end = 1280 + 48 + 32,
1016 .htotal = 1280 + 48 + 32 + 80,
1017 .vdisplay = 800,
1018 .vsync_start = 800 + 3,
1019 .vsync_end = 800 + 3 + 5,
1020 .vtotal = 800 + 3 + 5 + 24,
1021 .vrefresh = 48,
1025 static const struct panel_desc boe_nv101wxmn51 = {
1026 .modes = boe_nv101wxmn51_modes,
1027 .num_modes = ARRAY_SIZE(boe_nv101wxmn51_modes),
1028 .bpc = 8,
1029 .size = {
1030 .width = 217,
1031 .height = 136,
1033 .delay = {
1034 .prepare = 210,
1035 .enable = 50,
1036 .unprepare = 160,
1040 static const struct drm_display_mode boe_nv140fhmn49_modes[] = {
1042 .clock = 148500,
1043 .hdisplay = 1920,
1044 .hsync_start = 1920 + 48,
1045 .hsync_end = 1920 + 48 + 32,
1046 .htotal = 2200,
1047 .vdisplay = 1080,
1048 .vsync_start = 1080 + 3,
1049 .vsync_end = 1080 + 3 + 5,
1050 .vtotal = 1125,
1051 .vrefresh = 60,
1055 static const struct panel_desc boe_nv140fhmn49 = {
1056 .modes = boe_nv140fhmn49_modes,
1057 .num_modes = ARRAY_SIZE(boe_nv140fhmn49_modes),
1058 .bpc = 6,
1059 .size = {
1060 .width = 309,
1061 .height = 174,
1063 .delay = {
1064 .prepare = 210,
1065 .enable = 50,
1066 .unprepare = 160,
1068 .bus_format = MEDIA_BUS_FMT_RGB666_1X18,
1069 .connector_type = DRM_MODE_CONNECTOR_eDP,
1072 static const struct drm_display_mode cdtech_s043wq26h_ct7_mode = {
1073 .clock = 9000,
1074 .hdisplay = 480,
1075 .hsync_start = 480 + 5,
1076 .hsync_end = 480 + 5 + 5,
1077 .htotal = 480 + 5 + 5 + 40,
1078 .vdisplay = 272,
1079 .vsync_start = 272 + 8,
1080 .vsync_end = 272 + 8 + 8,
1081 .vtotal = 272 + 8 + 8 + 8,
1082 .vrefresh = 60,
1083 .flags = DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC,
1086 static const struct panel_desc cdtech_s043wq26h_ct7 = {
1087 .modes = &cdtech_s043wq26h_ct7_mode,
1088 .num_modes = 1,
1089 .bpc = 8,
1090 .size = {
1091 .width = 95,
1092 .height = 54,
1094 .bus_flags = DRM_BUS_FLAG_PIXDATA_DRIVE_POSEDGE,
1097 static const struct drm_display_mode cdtech_s070wv95_ct16_mode = {
1098 .clock = 35000,
1099 .hdisplay = 800,
1100 .hsync_start = 800 + 40,
1101 .hsync_end = 800 + 40 + 40,
1102 .htotal = 800 + 40 + 40 + 48,
1103 .vdisplay = 480,
1104 .vsync_start = 480 + 29,
1105 .vsync_end = 480 + 29 + 13,
1106 .vtotal = 480 + 29 + 13 + 3,
1107 .vrefresh = 60,
1108 .flags = DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC,
1111 static const struct panel_desc cdtech_s070wv95_ct16 = {
1112 .modes = &cdtech_s070wv95_ct16_mode,
1113 .num_modes = 1,
1114 .bpc = 8,
1115 .size = {
1116 .width = 154,
1117 .height = 85,
1121 static const struct drm_display_mode chunghwa_claa070wp03xg_mode = {
1122 .clock = 66770,
1123 .hdisplay = 800,
1124 .hsync_start = 800 + 49,
1125 .hsync_end = 800 + 49 + 33,
1126 .htotal = 800 + 49 + 33 + 17,
1127 .vdisplay = 1280,
1128 .vsync_start = 1280 + 1,
1129 .vsync_end = 1280 + 1 + 7,
1130 .vtotal = 1280 + 1 + 7 + 15,
1131 .vrefresh = 60,
1132 .flags = DRM_MODE_FLAG_NVSYNC | DRM_MODE_FLAG_NHSYNC,
1135 static const struct panel_desc chunghwa_claa070wp03xg = {
1136 .modes = &chunghwa_claa070wp03xg_mode,
1137 .num_modes = 1,
1138 .bpc = 6,
1139 .size = {
1140 .width = 94,
1141 .height = 150,
1145 static const struct drm_display_mode chunghwa_claa101wa01a_mode = {
1146 .clock = 72070,
1147 .hdisplay = 1366,
1148 .hsync_start = 1366 + 58,
1149 .hsync_end = 1366 + 58 + 58,
1150 .htotal = 1366 + 58 + 58 + 58,
1151 .vdisplay = 768,
1152 .vsync_start = 768 + 4,
1153 .vsync_end = 768 + 4 + 4,
1154 .vtotal = 768 + 4 + 4 + 4,
1155 .vrefresh = 60,
1158 static const struct panel_desc chunghwa_claa101wa01a = {
1159 .modes = &chunghwa_claa101wa01a_mode,
1160 .num_modes = 1,
1161 .bpc = 6,
1162 .size = {
1163 .width = 220,
1164 .height = 120,
1168 static const struct drm_display_mode chunghwa_claa101wb01_mode = {
1169 .clock = 69300,
1170 .hdisplay = 1366,
1171 .hsync_start = 1366 + 48,
1172 .hsync_end = 1366 + 48 + 32,
1173 .htotal = 1366 + 48 + 32 + 20,
1174 .vdisplay = 768,
1175 .vsync_start = 768 + 16,
1176 .vsync_end = 768 + 16 + 8,
1177 .vtotal = 768 + 16 + 8 + 16,
1178 .vrefresh = 60,
1181 static const struct panel_desc chunghwa_claa101wb01 = {
1182 .modes = &chunghwa_claa101wb01_mode,
1183 .num_modes = 1,
1184 .bpc = 6,
1185 .size = {
1186 .width = 223,
1187 .height = 125,
1191 static const struct drm_display_mode dataimage_scf0700c48ggu18_mode = {
1192 .clock = 33260,
1193 .hdisplay = 800,
1194 .hsync_start = 800 + 40,
1195 .hsync_end = 800 + 40 + 128,
1196 .htotal = 800 + 40 + 128 + 88,
1197 .vdisplay = 480,
1198 .vsync_start = 480 + 10,
1199 .vsync_end = 480 + 10 + 2,
1200 .vtotal = 480 + 10 + 2 + 33,
1201 .vrefresh = 60,
1202 .flags = DRM_MODE_FLAG_NVSYNC | DRM_MODE_FLAG_NHSYNC,
1205 static const struct panel_desc dataimage_scf0700c48ggu18 = {
1206 .modes = &dataimage_scf0700c48ggu18_mode,
1207 .num_modes = 1,
1208 .bpc = 8,
1209 .size = {
1210 .width = 152,
1211 .height = 91,
1213 .bus_format = MEDIA_BUS_FMT_RGB888_1X24,
1214 .bus_flags = DRM_BUS_FLAG_DE_HIGH | DRM_BUS_FLAG_PIXDATA_DRIVE_POSEDGE,
1217 static const struct display_timing dlc_dlc0700yzg_1_timing = {
1218 .pixelclock = { 45000000, 51200000, 57000000 },
1219 .hactive = { 1024, 1024, 1024 },
1220 .hfront_porch = { 100, 106, 113 },
1221 .hback_porch = { 100, 106, 113 },
1222 .hsync_len = { 100, 108, 114 },
1223 .vactive = { 600, 600, 600 },
1224 .vfront_porch = { 8, 11, 15 },
1225 .vback_porch = { 8, 11, 15 },
1226 .vsync_len = { 9, 13, 15 },
1227 .flags = DISPLAY_FLAGS_DE_HIGH,
1230 static const struct panel_desc dlc_dlc0700yzg_1 = {
1231 .timings = &dlc_dlc0700yzg_1_timing,
1232 .num_timings = 1,
1233 .bpc = 6,
1234 .size = {
1235 .width = 154,
1236 .height = 86,
1238 .delay = {
1239 .prepare = 30,
1240 .enable = 200,
1241 .disable = 200,
1243 .bus_format = MEDIA_BUS_FMT_RGB666_1X7X3_SPWG,
1244 .connector_type = DRM_MODE_CONNECTOR_LVDS,
1247 static const struct display_timing dlc_dlc1010gig_timing = {
1248 .pixelclock = { 68900000, 71100000, 73400000 },
1249 .hactive = { 1280, 1280, 1280 },
1250 .hfront_porch = { 43, 53, 63 },
1251 .hback_porch = { 43, 53, 63 },
1252 .hsync_len = { 44, 54, 64 },
1253 .vactive = { 800, 800, 800 },
1254 .vfront_porch = { 5, 8, 11 },
1255 .vback_porch = { 5, 8, 11 },
1256 .vsync_len = { 5, 7, 11 },
1257 .flags = DISPLAY_FLAGS_DE_HIGH,
1260 static const struct panel_desc dlc_dlc1010gig = {
1261 .timings = &dlc_dlc1010gig_timing,
1262 .num_timings = 1,
1263 .bpc = 8,
1264 .size = {
1265 .width = 216,
1266 .height = 135,
1268 .delay = {
1269 .prepare = 60,
1270 .enable = 150,
1271 .disable = 100,
1272 .unprepare = 60,
1274 .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
1275 .connector_type = DRM_MODE_CONNECTOR_LVDS,
1278 static const struct drm_display_mode edt_et035012dm6_mode = {
1279 .clock = 6500,
1280 .hdisplay = 320,
1281 .hsync_start = 320 + 20,
1282 .hsync_end = 320 + 20 + 30,
1283 .htotal = 320 + 20 + 68,
1284 .vdisplay = 240,
1285 .vsync_start = 240 + 4,
1286 .vsync_end = 240 + 4 + 4,
1287 .vtotal = 240 + 4 + 4 + 14,
1288 .vrefresh = 60,
1289 .flags = DRM_MODE_FLAG_NVSYNC | DRM_MODE_FLAG_NHSYNC,
1292 static const struct panel_desc edt_et035012dm6 = {
1293 .modes = &edt_et035012dm6_mode,
1294 .num_modes = 1,
1295 .bpc = 8,
1296 .size = {
1297 .width = 70,
1298 .height = 52,
1300 .bus_format = MEDIA_BUS_FMT_RGB888_1X24,
1301 .bus_flags = DRM_BUS_FLAG_DE_LOW | DRM_BUS_FLAG_PIXDATA_NEGEDGE,
1304 static const struct drm_display_mode edt_etm0430g0dh6_mode = {
1305 .clock = 9000,
1306 .hdisplay = 480,
1307 .hsync_start = 480 + 2,
1308 .hsync_end = 480 + 2 + 41,
1309 .htotal = 480 + 2 + 41 + 2,
1310 .vdisplay = 272,
1311 .vsync_start = 272 + 2,
1312 .vsync_end = 272 + 2 + 10,
1313 .vtotal = 272 + 2 + 10 + 2,
1314 .vrefresh = 60,
1315 .flags = DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC,
1318 static const struct panel_desc edt_etm0430g0dh6 = {
1319 .modes = &edt_etm0430g0dh6_mode,
1320 .num_modes = 1,
1321 .bpc = 6,
1322 .size = {
1323 .width = 95,
1324 .height = 54,
1328 static const struct drm_display_mode edt_et057090dhu_mode = {
1329 .clock = 25175,
1330 .hdisplay = 640,
1331 .hsync_start = 640 + 16,
1332 .hsync_end = 640 + 16 + 30,
1333 .htotal = 640 + 16 + 30 + 114,
1334 .vdisplay = 480,
1335 .vsync_start = 480 + 10,
1336 .vsync_end = 480 + 10 + 3,
1337 .vtotal = 480 + 10 + 3 + 32,
1338 .vrefresh = 60,
1339 .flags = DRM_MODE_FLAG_NVSYNC | DRM_MODE_FLAG_NHSYNC,
1342 static const struct panel_desc edt_et057090dhu = {
1343 .modes = &edt_et057090dhu_mode,
1344 .num_modes = 1,
1345 .bpc = 6,
1346 .size = {
1347 .width = 115,
1348 .height = 86,
1350 .bus_format = MEDIA_BUS_FMT_RGB666_1X18,
1351 .bus_flags = DRM_BUS_FLAG_DE_HIGH | DRM_BUS_FLAG_PIXDATA_DRIVE_NEGEDGE,
1354 static const struct drm_display_mode edt_etm0700g0dh6_mode = {
1355 .clock = 33260,
1356 .hdisplay = 800,
1357 .hsync_start = 800 + 40,
1358 .hsync_end = 800 + 40 + 128,
1359 .htotal = 800 + 40 + 128 + 88,
1360 .vdisplay = 480,
1361 .vsync_start = 480 + 10,
1362 .vsync_end = 480 + 10 + 2,
1363 .vtotal = 480 + 10 + 2 + 33,
1364 .vrefresh = 60,
1365 .flags = DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC,
1368 static const struct panel_desc edt_etm0700g0dh6 = {
1369 .modes = &edt_etm0700g0dh6_mode,
1370 .num_modes = 1,
1371 .bpc = 6,
1372 .size = {
1373 .width = 152,
1374 .height = 91,
1376 .bus_format = MEDIA_BUS_FMT_RGB666_1X18,
1377 .bus_flags = DRM_BUS_FLAG_DE_HIGH | DRM_BUS_FLAG_PIXDATA_DRIVE_NEGEDGE,
1380 static const struct panel_desc edt_etm0700g0bdh6 = {
1381 .modes = &edt_etm0700g0dh6_mode,
1382 .num_modes = 1,
1383 .bpc = 6,
1384 .size = {
1385 .width = 152,
1386 .height = 91,
1388 .bus_format = MEDIA_BUS_FMT_RGB666_1X18,
1389 .bus_flags = DRM_BUS_FLAG_DE_HIGH | DRM_BUS_FLAG_PIXDATA_DRIVE_POSEDGE,
1392 static const struct display_timing evervision_vgg804821_timing = {
1393 .pixelclock = { 27600000, 33300000, 50000000 },
1394 .hactive = { 800, 800, 800 },
1395 .hfront_porch = { 40, 66, 70 },
1396 .hback_porch = { 40, 67, 70 },
1397 .hsync_len = { 40, 67, 70 },
1398 .vactive = { 480, 480, 480 },
1399 .vfront_porch = { 6, 10, 10 },
1400 .vback_porch = { 7, 11, 11 },
1401 .vsync_len = { 7, 11, 11 },
1402 .flags = DISPLAY_FLAGS_HSYNC_HIGH | DISPLAY_FLAGS_VSYNC_HIGH |
1403 DISPLAY_FLAGS_DE_HIGH | DISPLAY_FLAGS_PIXDATA_NEGEDGE |
1404 DISPLAY_FLAGS_SYNC_NEGEDGE,
1407 static const struct panel_desc evervision_vgg804821 = {
1408 .timings = &evervision_vgg804821_timing,
1409 .num_timings = 1,
1410 .bpc = 8,
1411 .size = {
1412 .width = 108,
1413 .height = 64,
1415 .bus_format = MEDIA_BUS_FMT_RGB888_1X24,
1416 .bus_flags = DRM_BUS_FLAG_DE_HIGH | DRM_BUS_FLAG_PIXDATA_NEGEDGE,
1419 static const struct drm_display_mode foxlink_fl500wvr00_a0t_mode = {
1420 .clock = 32260,
1421 .hdisplay = 800,
1422 .hsync_start = 800 + 168,
1423 .hsync_end = 800 + 168 + 64,
1424 .htotal = 800 + 168 + 64 + 88,
1425 .vdisplay = 480,
1426 .vsync_start = 480 + 37,
1427 .vsync_end = 480 + 37 + 2,
1428 .vtotal = 480 + 37 + 2 + 8,
1429 .vrefresh = 60,
1432 static const struct panel_desc foxlink_fl500wvr00_a0t = {
1433 .modes = &foxlink_fl500wvr00_a0t_mode,
1434 .num_modes = 1,
1435 .bpc = 8,
1436 .size = {
1437 .width = 108,
1438 .height = 65,
1440 .bus_format = MEDIA_BUS_FMT_RGB888_1X24,
1443 static const struct drm_display_mode friendlyarm_hd702e_mode = {
1444 .clock = 67185,
1445 .hdisplay = 800,
1446 .hsync_start = 800 + 20,
1447 .hsync_end = 800 + 20 + 24,
1448 .htotal = 800 + 20 + 24 + 20,
1449 .vdisplay = 1280,
1450 .vsync_start = 1280 + 4,
1451 .vsync_end = 1280 + 4 + 8,
1452 .vtotal = 1280 + 4 + 8 + 4,
1453 .vrefresh = 60,
1454 .flags = DRM_MODE_FLAG_NVSYNC | DRM_MODE_FLAG_NHSYNC,
1457 static const struct panel_desc friendlyarm_hd702e = {
1458 .modes = &friendlyarm_hd702e_mode,
1459 .num_modes = 1,
1460 .size = {
1461 .width = 94,
1462 .height = 151,
1466 static const struct drm_display_mode giantplus_gpg482739qs5_mode = {
1467 .clock = 9000,
1468 .hdisplay = 480,
1469 .hsync_start = 480 + 5,
1470 .hsync_end = 480 + 5 + 1,
1471 .htotal = 480 + 5 + 1 + 40,
1472 .vdisplay = 272,
1473 .vsync_start = 272 + 8,
1474 .vsync_end = 272 + 8 + 1,
1475 .vtotal = 272 + 8 + 1 + 8,
1476 .vrefresh = 60,
1479 static const struct panel_desc giantplus_gpg482739qs5 = {
1480 .modes = &giantplus_gpg482739qs5_mode,
1481 .num_modes = 1,
1482 .bpc = 8,
1483 .size = {
1484 .width = 95,
1485 .height = 54,
1487 .bus_format = MEDIA_BUS_FMT_RGB888_1X24,
1490 static const struct display_timing giantplus_gpm940b0_timing = {
1491 .pixelclock = { 13500000, 27000000, 27500000 },
1492 .hactive = { 320, 320, 320 },
1493 .hfront_porch = { 14, 686, 718 },
1494 .hback_porch = { 50, 70, 255 },
1495 .hsync_len = { 1, 1, 1 },
1496 .vactive = { 240, 240, 240 },
1497 .vfront_porch = { 1, 1, 179 },
1498 .vback_porch = { 1, 21, 31 },
1499 .vsync_len = { 1, 1, 6 },
1500 .flags = DISPLAY_FLAGS_HSYNC_LOW | DISPLAY_FLAGS_VSYNC_LOW,
1503 static const struct panel_desc giantplus_gpm940b0 = {
1504 .timings = &giantplus_gpm940b0_timing,
1505 .num_timings = 1,
1506 .bpc = 8,
1507 .size = {
1508 .width = 60,
1509 .height = 45,
1511 .bus_format = MEDIA_BUS_FMT_RGB888_3X8,
1512 .bus_flags = DRM_BUS_FLAG_DE_HIGH | DRM_BUS_FLAG_PIXDATA_NEGEDGE,
1515 static const struct display_timing hannstar_hsd070pww1_timing = {
1516 .pixelclock = { 64300000, 71100000, 82000000 },
1517 .hactive = { 1280, 1280, 1280 },
1518 .hfront_porch = { 1, 1, 10 },
1519 .hback_porch = { 1, 1, 10 },
1521 * According to the data sheet, the minimum horizontal blanking interval
1522 * is 54 clocks (1 + 52 + 1), but tests with a Nitrogen6X have shown the
1523 * minimum working horizontal blanking interval to be 60 clocks.
1525 .hsync_len = { 58, 158, 661 },
1526 .vactive = { 800, 800, 800 },
1527 .vfront_porch = { 1, 1, 10 },
1528 .vback_porch = { 1, 1, 10 },
1529 .vsync_len = { 1, 21, 203 },
1530 .flags = DISPLAY_FLAGS_DE_HIGH,
1533 static const struct panel_desc hannstar_hsd070pww1 = {
1534 .timings = &hannstar_hsd070pww1_timing,
1535 .num_timings = 1,
1536 .bpc = 6,
1537 .size = {
1538 .width = 151,
1539 .height = 94,
1541 .bus_format = MEDIA_BUS_FMT_RGB666_1X7X3_SPWG,
1542 .connector_type = DRM_MODE_CONNECTOR_LVDS,
1545 static const struct display_timing hannstar_hsd100pxn1_timing = {
1546 .pixelclock = { 55000000, 65000000, 75000000 },
1547 .hactive = { 1024, 1024, 1024 },
1548 .hfront_porch = { 40, 40, 40 },
1549 .hback_porch = { 220, 220, 220 },
1550 .hsync_len = { 20, 60, 100 },
1551 .vactive = { 768, 768, 768 },
1552 .vfront_porch = { 7, 7, 7 },
1553 .vback_porch = { 21, 21, 21 },
1554 .vsync_len = { 10, 10, 10 },
1555 .flags = DISPLAY_FLAGS_DE_HIGH,
1558 static const struct panel_desc hannstar_hsd100pxn1 = {
1559 .timings = &hannstar_hsd100pxn1_timing,
1560 .num_timings = 1,
1561 .bpc = 6,
1562 .size = {
1563 .width = 203,
1564 .height = 152,
1566 .bus_format = MEDIA_BUS_FMT_RGB666_1X7X3_SPWG,
1567 .connector_type = DRM_MODE_CONNECTOR_LVDS,
1570 static const struct drm_display_mode hitachi_tx23d38vm0caa_mode = {
1571 .clock = 33333,
1572 .hdisplay = 800,
1573 .hsync_start = 800 + 85,
1574 .hsync_end = 800 + 85 + 86,
1575 .htotal = 800 + 85 + 86 + 85,
1576 .vdisplay = 480,
1577 .vsync_start = 480 + 16,
1578 .vsync_end = 480 + 16 + 13,
1579 .vtotal = 480 + 16 + 13 + 16,
1580 .vrefresh = 60,
1583 static const struct panel_desc hitachi_tx23d38vm0caa = {
1584 .modes = &hitachi_tx23d38vm0caa_mode,
1585 .num_modes = 1,
1586 .bpc = 6,
1587 .size = {
1588 .width = 195,
1589 .height = 117,
1591 .delay = {
1592 .enable = 160,
1593 .disable = 160,
1597 static const struct drm_display_mode innolux_at043tn24_mode = {
1598 .clock = 9000,
1599 .hdisplay = 480,
1600 .hsync_start = 480 + 2,
1601 .hsync_end = 480 + 2 + 41,
1602 .htotal = 480 + 2 + 41 + 2,
1603 .vdisplay = 272,
1604 .vsync_start = 272 + 2,
1605 .vsync_end = 272 + 2 + 10,
1606 .vtotal = 272 + 2 + 10 + 2,
1607 .vrefresh = 60,
1608 .flags = DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC,
1611 static const struct panel_desc innolux_at043tn24 = {
1612 .modes = &innolux_at043tn24_mode,
1613 .num_modes = 1,
1614 .bpc = 8,
1615 .size = {
1616 .width = 95,
1617 .height = 54,
1619 .bus_format = MEDIA_BUS_FMT_RGB888_1X24,
1620 .bus_flags = DRM_BUS_FLAG_DE_HIGH | DRM_BUS_FLAG_PIXDATA_DRIVE_POSEDGE,
1623 static const struct drm_display_mode innolux_at070tn92_mode = {
1624 .clock = 33333,
1625 .hdisplay = 800,
1626 .hsync_start = 800 + 210,
1627 .hsync_end = 800 + 210 + 20,
1628 .htotal = 800 + 210 + 20 + 46,
1629 .vdisplay = 480,
1630 .vsync_start = 480 + 22,
1631 .vsync_end = 480 + 22 + 10,
1632 .vtotal = 480 + 22 + 23 + 10,
1633 .vrefresh = 60,
1636 static const struct panel_desc innolux_at070tn92 = {
1637 .modes = &innolux_at070tn92_mode,
1638 .num_modes = 1,
1639 .size = {
1640 .width = 154,
1641 .height = 86,
1643 .bus_format = MEDIA_BUS_FMT_RGB888_1X24,
1646 static const struct display_timing innolux_g070y2_l01_timing = {
1647 .pixelclock = { 28000000, 29500000, 32000000 },
1648 .hactive = { 800, 800, 800 },
1649 .hfront_porch = { 61, 91, 141 },
1650 .hback_porch = { 60, 90, 140 },
1651 .hsync_len = { 12, 12, 12 },
1652 .vactive = { 480, 480, 480 },
1653 .vfront_porch = { 4, 9, 30 },
1654 .vback_porch = { 4, 8, 28 },
1655 .vsync_len = { 2, 2, 2 },
1656 .flags = DISPLAY_FLAGS_DE_HIGH,
1659 static const struct panel_desc innolux_g070y2_l01 = {
1660 .timings = &innolux_g070y2_l01_timing,
1661 .num_timings = 1,
1662 .bpc = 6,
1663 .size = {
1664 .width = 152,
1665 .height = 91,
1667 .delay = {
1668 .prepare = 10,
1669 .enable = 100,
1670 .disable = 100,
1671 .unprepare = 800,
1673 .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
1674 .connector_type = DRM_MODE_CONNECTOR_LVDS,
1677 static const struct display_timing innolux_g101ice_l01_timing = {
1678 .pixelclock = { 60400000, 71100000, 74700000 },
1679 .hactive = { 1280, 1280, 1280 },
1680 .hfront_porch = { 41, 80, 100 },
1681 .hback_porch = { 40, 79, 99 },
1682 .hsync_len = { 1, 1, 1 },
1683 .vactive = { 800, 800, 800 },
1684 .vfront_porch = { 5, 11, 14 },
1685 .vback_porch = { 4, 11, 14 },
1686 .vsync_len = { 1, 1, 1 },
1687 .flags = DISPLAY_FLAGS_DE_HIGH,
1690 static const struct panel_desc innolux_g101ice_l01 = {
1691 .timings = &innolux_g101ice_l01_timing,
1692 .num_timings = 1,
1693 .bpc = 8,
1694 .size = {
1695 .width = 217,
1696 .height = 135,
1698 .delay = {
1699 .enable = 200,
1700 .disable = 200,
1702 .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
1703 .connector_type = DRM_MODE_CONNECTOR_LVDS,
1706 static const struct display_timing innolux_g121i1_l01_timing = {
1707 .pixelclock = { 67450000, 71000000, 74550000 },
1708 .hactive = { 1280, 1280, 1280 },
1709 .hfront_porch = { 40, 80, 160 },
1710 .hback_porch = { 39, 79, 159 },
1711 .hsync_len = { 1, 1, 1 },
1712 .vactive = { 800, 800, 800 },
1713 .vfront_porch = { 5, 11, 100 },
1714 .vback_porch = { 4, 11, 99 },
1715 .vsync_len = { 1, 1, 1 },
1718 static const struct panel_desc innolux_g121i1_l01 = {
1719 .timings = &innolux_g121i1_l01_timing,
1720 .num_timings = 1,
1721 .bpc = 6,
1722 .size = {
1723 .width = 261,
1724 .height = 163,
1726 .delay = {
1727 .enable = 200,
1728 .disable = 20,
1730 .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
1731 .connector_type = DRM_MODE_CONNECTOR_LVDS,
1734 static const struct drm_display_mode innolux_g121x1_l03_mode = {
1735 .clock = 65000,
1736 .hdisplay = 1024,
1737 .hsync_start = 1024 + 0,
1738 .hsync_end = 1024 + 1,
1739 .htotal = 1024 + 0 + 1 + 320,
1740 .vdisplay = 768,
1741 .vsync_start = 768 + 38,
1742 .vsync_end = 768 + 38 + 1,
1743 .vtotal = 768 + 38 + 1 + 0,
1744 .vrefresh = 60,
1745 .flags = DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC,
1748 static const struct panel_desc innolux_g121x1_l03 = {
1749 .modes = &innolux_g121x1_l03_mode,
1750 .num_modes = 1,
1751 .bpc = 6,
1752 .size = {
1753 .width = 246,
1754 .height = 185,
1756 .delay = {
1757 .enable = 200,
1758 .unprepare = 200,
1759 .disable = 400,
1764 * Datasheet specifies that at 60 Hz refresh rate:
1765 * - total horizontal time: { 1506, 1592, 1716 }
1766 * - total vertical time: { 788, 800, 868 }
1768 * ...but doesn't go into exactly how that should be split into a front
1769 * porch, back porch, or sync length. For now we'll leave a single setting
1770 * here which allows a bit of tweaking of the pixel clock at the expense of
1771 * refresh rate.
1773 static const struct display_timing innolux_n116bge_timing = {
1774 .pixelclock = { 72600000, 76420000, 80240000 },
1775 .hactive = { 1366, 1366, 1366 },
1776 .hfront_porch = { 136, 136, 136 },
1777 .hback_porch = { 60, 60, 60 },
1778 .hsync_len = { 30, 30, 30 },
1779 .vactive = { 768, 768, 768 },
1780 .vfront_porch = { 8, 8, 8 },
1781 .vback_porch = { 12, 12, 12 },
1782 .vsync_len = { 12, 12, 12 },
1783 .flags = DISPLAY_FLAGS_VSYNC_LOW | DISPLAY_FLAGS_HSYNC_LOW,
1786 static const struct panel_desc innolux_n116bge = {
1787 .timings = &innolux_n116bge_timing,
1788 .num_timings = 1,
1789 .bpc = 6,
1790 .size = {
1791 .width = 256,
1792 .height = 144,
1796 static const struct drm_display_mode innolux_n156bge_l21_mode = {
1797 .clock = 69300,
1798 .hdisplay = 1366,
1799 .hsync_start = 1366 + 16,
1800 .hsync_end = 1366 + 16 + 34,
1801 .htotal = 1366 + 16 + 34 + 50,
1802 .vdisplay = 768,
1803 .vsync_start = 768 + 2,
1804 .vsync_end = 768 + 2 + 6,
1805 .vtotal = 768 + 2 + 6 + 12,
1806 .vrefresh = 60,
1809 static const struct panel_desc innolux_n156bge_l21 = {
1810 .modes = &innolux_n156bge_l21_mode,
1811 .num_modes = 1,
1812 .bpc = 6,
1813 .size = {
1814 .width = 344,
1815 .height = 193,
1819 static const struct drm_display_mode innolux_p120zdg_bf1_mode = {
1820 .clock = 206016,
1821 .hdisplay = 2160,
1822 .hsync_start = 2160 + 48,
1823 .hsync_end = 2160 + 48 + 32,
1824 .htotal = 2160 + 48 + 32 + 80,
1825 .vdisplay = 1440,
1826 .vsync_start = 1440 + 3,
1827 .vsync_end = 1440 + 3 + 10,
1828 .vtotal = 1440 + 3 + 10 + 27,
1829 .vrefresh = 60,
1830 .flags = DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC,
1833 static const struct panel_desc innolux_p120zdg_bf1 = {
1834 .modes = &innolux_p120zdg_bf1_mode,
1835 .num_modes = 1,
1836 .bpc = 8,
1837 .size = {
1838 .width = 254,
1839 .height = 169,
1841 .delay = {
1842 .hpd_absent_delay = 200,
1843 .unprepare = 500,
1847 static const struct drm_display_mode innolux_zj070na_01p_mode = {
1848 .clock = 51501,
1849 .hdisplay = 1024,
1850 .hsync_start = 1024 + 128,
1851 .hsync_end = 1024 + 128 + 64,
1852 .htotal = 1024 + 128 + 64 + 128,
1853 .vdisplay = 600,
1854 .vsync_start = 600 + 16,
1855 .vsync_end = 600 + 16 + 4,
1856 .vtotal = 600 + 16 + 4 + 16,
1857 .vrefresh = 60,
1860 static const struct panel_desc innolux_zj070na_01p = {
1861 .modes = &innolux_zj070na_01p_mode,
1862 .num_modes = 1,
1863 .bpc = 6,
1864 .size = {
1865 .width = 154,
1866 .height = 90,
1870 static const struct display_timing koe_tx14d24vm1bpa_timing = {
1871 .pixelclock = { 5580000, 5850000, 6200000 },
1872 .hactive = { 320, 320, 320 },
1873 .hfront_porch = { 30, 30, 30 },
1874 .hback_porch = { 30, 30, 30 },
1875 .hsync_len = { 1, 5, 17 },
1876 .vactive = { 240, 240, 240 },
1877 .vfront_porch = { 6, 6, 6 },
1878 .vback_porch = { 5, 5, 5 },
1879 .vsync_len = { 1, 2, 11 },
1880 .flags = DISPLAY_FLAGS_DE_HIGH,
1883 static const struct panel_desc koe_tx14d24vm1bpa = {
1884 .timings = &koe_tx14d24vm1bpa_timing,
1885 .num_timings = 1,
1886 .bpc = 6,
1887 .size = {
1888 .width = 115,
1889 .height = 86,
1893 static const struct display_timing koe_tx31d200vm0baa_timing = {
1894 .pixelclock = { 39600000, 43200000, 48000000 },
1895 .hactive = { 1280, 1280, 1280 },
1896 .hfront_porch = { 16, 36, 56 },
1897 .hback_porch = { 16, 36, 56 },
1898 .hsync_len = { 8, 8, 8 },
1899 .vactive = { 480, 480, 480 },
1900 .vfront_porch = { 6, 21, 33 },
1901 .vback_porch = { 6, 21, 33 },
1902 .vsync_len = { 8, 8, 8 },
1903 .flags = DISPLAY_FLAGS_DE_HIGH,
1906 static const struct panel_desc koe_tx31d200vm0baa = {
1907 .timings = &koe_tx31d200vm0baa_timing,
1908 .num_timings = 1,
1909 .bpc = 6,
1910 .size = {
1911 .width = 292,
1912 .height = 109,
1914 .bus_format = MEDIA_BUS_FMT_RGB666_1X7X3_SPWG,
1915 .connector_type = DRM_MODE_CONNECTOR_LVDS,
1918 static const struct display_timing kyo_tcg121xglp_timing = {
1919 .pixelclock = { 52000000, 65000000, 71000000 },
1920 .hactive = { 1024, 1024, 1024 },
1921 .hfront_porch = { 2, 2, 2 },
1922 .hback_porch = { 2, 2, 2 },
1923 .hsync_len = { 86, 124, 244 },
1924 .vactive = { 768, 768, 768 },
1925 .vfront_porch = { 2, 2, 2 },
1926 .vback_porch = { 2, 2, 2 },
1927 .vsync_len = { 6, 34, 73 },
1928 .flags = DISPLAY_FLAGS_DE_HIGH,
1931 static const struct panel_desc kyo_tcg121xglp = {
1932 .timings = &kyo_tcg121xglp_timing,
1933 .num_timings = 1,
1934 .bpc = 8,
1935 .size = {
1936 .width = 246,
1937 .height = 184,
1939 .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
1940 .connector_type = DRM_MODE_CONNECTOR_LVDS,
1943 static const struct drm_display_mode lemaker_bl035_rgb_002_mode = {
1944 .clock = 7000,
1945 .hdisplay = 320,
1946 .hsync_start = 320 + 20,
1947 .hsync_end = 320 + 20 + 30,
1948 .htotal = 320 + 20 + 30 + 38,
1949 .vdisplay = 240,
1950 .vsync_start = 240 + 4,
1951 .vsync_end = 240 + 4 + 3,
1952 .vtotal = 240 + 4 + 3 + 15,
1953 .vrefresh = 60,
1956 static const struct panel_desc lemaker_bl035_rgb_002 = {
1957 .modes = &lemaker_bl035_rgb_002_mode,
1958 .num_modes = 1,
1959 .size = {
1960 .width = 70,
1961 .height = 52,
1963 .bus_format = MEDIA_BUS_FMT_RGB888_1X24,
1964 .bus_flags = DRM_BUS_FLAG_DE_LOW,
1967 static const struct drm_display_mode lg_lb070wv8_mode = {
1968 .clock = 33246,
1969 .hdisplay = 800,
1970 .hsync_start = 800 + 88,
1971 .hsync_end = 800 + 88 + 80,
1972 .htotal = 800 + 88 + 80 + 88,
1973 .vdisplay = 480,
1974 .vsync_start = 480 + 10,
1975 .vsync_end = 480 + 10 + 25,
1976 .vtotal = 480 + 10 + 25 + 10,
1977 .vrefresh = 60,
1980 static const struct panel_desc lg_lb070wv8 = {
1981 .modes = &lg_lb070wv8_mode,
1982 .num_modes = 1,
1983 .bpc = 16,
1984 .size = {
1985 .width = 151,
1986 .height = 91,
1988 .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
1989 .connector_type = DRM_MODE_CONNECTOR_LVDS,
1992 static const struct drm_display_mode lg_lp079qx1_sp0v_mode = {
1993 .clock = 200000,
1994 .hdisplay = 1536,
1995 .hsync_start = 1536 + 12,
1996 .hsync_end = 1536 + 12 + 16,
1997 .htotal = 1536 + 12 + 16 + 48,
1998 .vdisplay = 2048,
1999 .vsync_start = 2048 + 8,
2000 .vsync_end = 2048 + 8 + 4,
2001 .vtotal = 2048 + 8 + 4 + 8,
2002 .vrefresh = 60,
2003 .flags = DRM_MODE_FLAG_NVSYNC | DRM_MODE_FLAG_NHSYNC,
2006 static const struct panel_desc lg_lp079qx1_sp0v = {
2007 .modes = &lg_lp079qx1_sp0v_mode,
2008 .num_modes = 1,
2009 .size = {
2010 .width = 129,
2011 .height = 171,
2015 static const struct drm_display_mode lg_lp097qx1_spa1_mode = {
2016 .clock = 205210,
2017 .hdisplay = 2048,
2018 .hsync_start = 2048 + 150,
2019 .hsync_end = 2048 + 150 + 5,
2020 .htotal = 2048 + 150 + 5 + 5,
2021 .vdisplay = 1536,
2022 .vsync_start = 1536 + 3,
2023 .vsync_end = 1536 + 3 + 1,
2024 .vtotal = 1536 + 3 + 1 + 9,
2025 .vrefresh = 60,
2028 static const struct panel_desc lg_lp097qx1_spa1 = {
2029 .modes = &lg_lp097qx1_spa1_mode,
2030 .num_modes = 1,
2031 .size = {
2032 .width = 208,
2033 .height = 147,
2037 static const struct drm_display_mode lg_lp120up1_mode = {
2038 .clock = 162300,
2039 .hdisplay = 1920,
2040 .hsync_start = 1920 + 40,
2041 .hsync_end = 1920 + 40 + 40,
2042 .htotal = 1920 + 40 + 40+ 80,
2043 .vdisplay = 1280,
2044 .vsync_start = 1280 + 4,
2045 .vsync_end = 1280 + 4 + 4,
2046 .vtotal = 1280 + 4 + 4 + 12,
2047 .vrefresh = 60,
2050 static const struct panel_desc lg_lp120up1 = {
2051 .modes = &lg_lp120up1_mode,
2052 .num_modes = 1,
2053 .bpc = 8,
2054 .size = {
2055 .width = 267,
2056 .height = 183,
2060 static const struct drm_display_mode lg_lp129qe_mode = {
2061 .clock = 285250,
2062 .hdisplay = 2560,
2063 .hsync_start = 2560 + 48,
2064 .hsync_end = 2560 + 48 + 32,
2065 .htotal = 2560 + 48 + 32 + 80,
2066 .vdisplay = 1700,
2067 .vsync_start = 1700 + 3,
2068 .vsync_end = 1700 + 3 + 10,
2069 .vtotal = 1700 + 3 + 10 + 36,
2070 .vrefresh = 60,
2073 static const struct panel_desc lg_lp129qe = {
2074 .modes = &lg_lp129qe_mode,
2075 .num_modes = 1,
2076 .bpc = 8,
2077 .size = {
2078 .width = 272,
2079 .height = 181,
2083 static const struct drm_display_mode mitsubishi_aa070mc01_mode = {
2084 .clock = 30400,
2085 .hdisplay = 800,
2086 .hsync_start = 800 + 0,
2087 .hsync_end = 800 + 1,
2088 .htotal = 800 + 0 + 1 + 160,
2089 .vdisplay = 480,
2090 .vsync_start = 480 + 0,
2091 .vsync_end = 480 + 48 + 1,
2092 .vtotal = 480 + 48 + 1 + 0,
2093 .vrefresh = 60,
2094 .flags = DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC,
2097 static const struct drm_display_mode logicpd_type_28_mode = {
2098 .clock = 9000,
2099 .hdisplay = 480,
2100 .hsync_start = 480 + 3,
2101 .hsync_end = 480 + 3 + 42,
2102 .htotal = 480 + 3 + 42 + 2,
2104 .vdisplay = 272,
2105 .vsync_start = 272 + 2,
2106 .vsync_end = 272 + 2 + 11,
2107 .vtotal = 272 + 2 + 11 + 3,
2108 .vrefresh = 60,
2109 .flags = DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC,
2112 static const struct panel_desc logicpd_type_28 = {
2113 .modes = &logicpd_type_28_mode,
2114 .num_modes = 1,
2115 .bpc = 8,
2116 .size = {
2117 .width = 105,
2118 .height = 67,
2120 .delay = {
2121 .prepare = 200,
2122 .enable = 200,
2123 .unprepare = 200,
2124 .disable = 200,
2126 .bus_format = MEDIA_BUS_FMT_RGB888_1X24,
2127 .bus_flags = DRM_BUS_FLAG_DE_HIGH | DRM_BUS_FLAG_PIXDATA_DRIVE_POSEDGE |
2128 DRM_BUS_FLAG_SYNC_DRIVE_NEGEDGE,
2131 static const struct panel_desc mitsubishi_aa070mc01 = {
2132 .modes = &mitsubishi_aa070mc01_mode,
2133 .num_modes = 1,
2134 .bpc = 8,
2135 .size = {
2136 .width = 152,
2137 .height = 91,
2140 .delay = {
2141 .enable = 200,
2142 .unprepare = 200,
2143 .disable = 400,
2145 .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
2146 .connector_type = DRM_MODE_CONNECTOR_LVDS,
2147 .bus_flags = DRM_BUS_FLAG_DE_HIGH,
2150 static const struct display_timing nec_nl12880bc20_05_timing = {
2151 .pixelclock = { 67000000, 71000000, 75000000 },
2152 .hactive = { 1280, 1280, 1280 },
2153 .hfront_porch = { 2, 30, 30 },
2154 .hback_porch = { 6, 100, 100 },
2155 .hsync_len = { 2, 30, 30 },
2156 .vactive = { 800, 800, 800 },
2157 .vfront_porch = { 5, 5, 5 },
2158 .vback_porch = { 11, 11, 11 },
2159 .vsync_len = { 7, 7, 7 },
2162 static const struct panel_desc nec_nl12880bc20_05 = {
2163 .timings = &nec_nl12880bc20_05_timing,
2164 .num_timings = 1,
2165 .bpc = 8,
2166 .size = {
2167 .width = 261,
2168 .height = 163,
2170 .delay = {
2171 .enable = 50,
2172 .disable = 50,
2174 .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
2175 .connector_type = DRM_MODE_CONNECTOR_LVDS,
2178 static const struct drm_display_mode nec_nl4827hc19_05b_mode = {
2179 .clock = 10870,
2180 .hdisplay = 480,
2181 .hsync_start = 480 + 2,
2182 .hsync_end = 480 + 2 + 41,
2183 .htotal = 480 + 2 + 41 + 2,
2184 .vdisplay = 272,
2185 .vsync_start = 272 + 2,
2186 .vsync_end = 272 + 2 + 4,
2187 .vtotal = 272 + 2 + 4 + 2,
2188 .vrefresh = 74,
2189 .flags = DRM_MODE_FLAG_NVSYNC | DRM_MODE_FLAG_NHSYNC,
2192 static const struct panel_desc nec_nl4827hc19_05b = {
2193 .modes = &nec_nl4827hc19_05b_mode,
2194 .num_modes = 1,
2195 .bpc = 8,
2196 .size = {
2197 .width = 95,
2198 .height = 54,
2200 .bus_format = MEDIA_BUS_FMT_RGB888_1X24,
2201 .bus_flags = DRM_BUS_FLAG_PIXDATA_DRIVE_POSEDGE,
2204 static const struct drm_display_mode netron_dy_e231732_mode = {
2205 .clock = 66000,
2206 .hdisplay = 1024,
2207 .hsync_start = 1024 + 160,
2208 .hsync_end = 1024 + 160 + 70,
2209 .htotal = 1024 + 160 + 70 + 90,
2210 .vdisplay = 600,
2211 .vsync_start = 600 + 127,
2212 .vsync_end = 600 + 127 + 20,
2213 .vtotal = 600 + 127 + 20 + 3,
2214 .vrefresh = 60,
2217 static const struct panel_desc netron_dy_e231732 = {
2218 .modes = &netron_dy_e231732_mode,
2219 .num_modes = 1,
2220 .size = {
2221 .width = 154,
2222 .height = 87,
2224 .bus_format = MEDIA_BUS_FMT_RGB666_1X18,
2227 static const struct drm_display_mode newhaven_nhd_43_480272ef_atxl_mode = {
2228 .clock = 9000,
2229 .hdisplay = 480,
2230 .hsync_start = 480 + 2,
2231 .hsync_end = 480 + 2 + 41,
2232 .htotal = 480 + 2 + 41 + 2,
2233 .vdisplay = 272,
2234 .vsync_start = 272 + 2,
2235 .vsync_end = 272 + 2 + 10,
2236 .vtotal = 272 + 2 + 10 + 2,
2237 .vrefresh = 60,
2238 .flags = DRM_MODE_FLAG_NVSYNC | DRM_MODE_FLAG_NHSYNC,
2241 static const struct panel_desc newhaven_nhd_43_480272ef_atxl = {
2242 .modes = &newhaven_nhd_43_480272ef_atxl_mode,
2243 .num_modes = 1,
2244 .bpc = 8,
2245 .size = {
2246 .width = 95,
2247 .height = 54,
2249 .bus_format = MEDIA_BUS_FMT_RGB888_1X24,
2250 .bus_flags = DRM_BUS_FLAG_DE_HIGH | DRM_BUS_FLAG_PIXDATA_DRIVE_POSEDGE |
2251 DRM_BUS_FLAG_SYNC_DRIVE_POSEDGE,
2254 static const struct display_timing nlt_nl192108ac18_02d_timing = {
2255 .pixelclock = { 130000000, 148350000, 163000000 },
2256 .hactive = { 1920, 1920, 1920 },
2257 .hfront_porch = { 80, 100, 100 },
2258 .hback_porch = { 100, 120, 120 },
2259 .hsync_len = { 50, 60, 60 },
2260 .vactive = { 1080, 1080, 1080 },
2261 .vfront_porch = { 12, 30, 30 },
2262 .vback_porch = { 4, 10, 10 },
2263 .vsync_len = { 4, 5, 5 },
2266 static const struct panel_desc nlt_nl192108ac18_02d = {
2267 .timings = &nlt_nl192108ac18_02d_timing,
2268 .num_timings = 1,
2269 .bpc = 8,
2270 .size = {
2271 .width = 344,
2272 .height = 194,
2274 .delay = {
2275 .unprepare = 500,
2277 .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
2278 .connector_type = DRM_MODE_CONNECTOR_LVDS,
2281 static const struct drm_display_mode nvd_9128_mode = {
2282 .clock = 29500,
2283 .hdisplay = 800,
2284 .hsync_start = 800 + 130,
2285 .hsync_end = 800 + 130 + 98,
2286 .htotal = 800 + 0 + 130 + 98,
2287 .vdisplay = 480,
2288 .vsync_start = 480 + 10,
2289 .vsync_end = 480 + 10 + 50,
2290 .vtotal = 480 + 0 + 10 + 50,
2293 static const struct panel_desc nvd_9128 = {
2294 .modes = &nvd_9128_mode,
2295 .num_modes = 1,
2296 .bpc = 8,
2297 .size = {
2298 .width = 156,
2299 .height = 88,
2301 .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
2302 .connector_type = DRM_MODE_CONNECTOR_LVDS,
2305 static const struct display_timing okaya_rs800480t_7x0gp_timing = {
2306 .pixelclock = { 30000000, 30000000, 40000000 },
2307 .hactive = { 800, 800, 800 },
2308 .hfront_porch = { 40, 40, 40 },
2309 .hback_porch = { 40, 40, 40 },
2310 .hsync_len = { 1, 48, 48 },
2311 .vactive = { 480, 480, 480 },
2312 .vfront_porch = { 13, 13, 13 },
2313 .vback_porch = { 29, 29, 29 },
2314 .vsync_len = { 3, 3, 3 },
2315 .flags = DISPLAY_FLAGS_DE_HIGH,
2318 static const struct panel_desc okaya_rs800480t_7x0gp = {
2319 .timings = &okaya_rs800480t_7x0gp_timing,
2320 .num_timings = 1,
2321 .bpc = 6,
2322 .size = {
2323 .width = 154,
2324 .height = 87,
2326 .delay = {
2327 .prepare = 41,
2328 .enable = 50,
2329 .unprepare = 41,
2330 .disable = 50,
2332 .bus_format = MEDIA_BUS_FMT_RGB666_1X18,
2335 static const struct drm_display_mode olimex_lcd_olinuxino_43ts_mode = {
2336 .clock = 9000,
2337 .hdisplay = 480,
2338 .hsync_start = 480 + 5,
2339 .hsync_end = 480 + 5 + 30,
2340 .htotal = 480 + 5 + 30 + 10,
2341 .vdisplay = 272,
2342 .vsync_start = 272 + 8,
2343 .vsync_end = 272 + 8 + 5,
2344 .vtotal = 272 + 8 + 5 + 3,
2345 .vrefresh = 60,
2348 static const struct panel_desc olimex_lcd_olinuxino_43ts = {
2349 .modes = &olimex_lcd_olinuxino_43ts_mode,
2350 .num_modes = 1,
2351 .size = {
2352 .width = 95,
2353 .height = 54,
2355 .bus_format = MEDIA_BUS_FMT_RGB888_1X24,
2359 * 800x480 CVT. The panel appears to be quite accepting, at least as far as
2360 * pixel clocks, but this is the timing that was being used in the Adafruit
2361 * installation instructions.
2363 static const struct drm_display_mode ontat_yx700wv03_mode = {
2364 .clock = 29500,
2365 .hdisplay = 800,
2366 .hsync_start = 824,
2367 .hsync_end = 896,
2368 .htotal = 992,
2369 .vdisplay = 480,
2370 .vsync_start = 483,
2371 .vsync_end = 493,
2372 .vtotal = 500,
2373 .vrefresh = 60,
2374 .flags = DRM_MODE_FLAG_NVSYNC | DRM_MODE_FLAG_NHSYNC,
2378 * Specification at:
2379 * https://www.adafruit.com/images/product-files/2406/c3163.pdf
2381 static const struct panel_desc ontat_yx700wv03 = {
2382 .modes = &ontat_yx700wv03_mode,
2383 .num_modes = 1,
2384 .bpc = 8,
2385 .size = {
2386 .width = 154,
2387 .height = 83,
2389 .bus_format = MEDIA_BUS_FMT_RGB666_1X18,
2392 static const struct drm_display_mode ortustech_com37h3m_mode = {
2393 .clock = 22153,
2394 .hdisplay = 480,
2395 .hsync_start = 480 + 8,
2396 .hsync_end = 480 + 8 + 10,
2397 .htotal = 480 + 8 + 10 + 10,
2398 .vdisplay = 640,
2399 .vsync_start = 640 + 4,
2400 .vsync_end = 640 + 4 + 3,
2401 .vtotal = 640 + 4 + 3 + 4,
2402 .vrefresh = 60,
2403 .flags = DRM_MODE_FLAG_NVSYNC | DRM_MODE_FLAG_NHSYNC,
2406 static const struct panel_desc ortustech_com37h3m = {
2407 .modes = &ortustech_com37h3m_mode,
2408 .num_modes = 1,
2409 .bpc = 8,
2410 .size = {
2411 .width = 56, /* 56.16mm */
2412 .height = 75, /* 74.88mm */
2414 .bus_format = MEDIA_BUS_FMT_RGB888_1X24,
2415 .bus_flags = DRM_BUS_FLAG_DE_HIGH | DRM_BUS_FLAG_PIXDATA_POSEDGE |
2416 DRM_BUS_FLAG_SYNC_DRIVE_POSEDGE,
2419 static const struct drm_display_mode ortustech_com43h4m85ulc_mode = {
2420 .clock = 25000,
2421 .hdisplay = 480,
2422 .hsync_start = 480 + 10,
2423 .hsync_end = 480 + 10 + 10,
2424 .htotal = 480 + 10 + 10 + 15,
2425 .vdisplay = 800,
2426 .vsync_start = 800 + 3,
2427 .vsync_end = 800 + 3 + 3,
2428 .vtotal = 800 + 3 + 3 + 3,
2429 .vrefresh = 60,
2432 static const struct panel_desc ortustech_com43h4m85ulc = {
2433 .modes = &ortustech_com43h4m85ulc_mode,
2434 .num_modes = 1,
2435 .bpc = 8,
2436 .size = {
2437 .width = 56,
2438 .height = 93,
2440 .bus_format = MEDIA_BUS_FMT_RGB888_1X24,
2441 .bus_flags = DRM_BUS_FLAG_DE_HIGH | DRM_BUS_FLAG_PIXDATA_DRIVE_POSEDGE,
2444 static const struct drm_display_mode osddisplays_osd070t1718_19ts_mode = {
2445 .clock = 33000,
2446 .hdisplay = 800,
2447 .hsync_start = 800 + 210,
2448 .hsync_end = 800 + 210 + 30,
2449 .htotal = 800 + 210 + 30 + 16,
2450 .vdisplay = 480,
2451 .vsync_start = 480 + 22,
2452 .vsync_end = 480 + 22 + 13,
2453 .vtotal = 480 + 22 + 13 + 10,
2454 .vrefresh = 60,
2455 .flags = DRM_MODE_FLAG_NVSYNC | DRM_MODE_FLAG_NHSYNC,
2458 static const struct panel_desc osddisplays_osd070t1718_19ts = {
2459 .modes = &osddisplays_osd070t1718_19ts_mode,
2460 .num_modes = 1,
2461 .bpc = 8,
2462 .size = {
2463 .width = 152,
2464 .height = 91,
2466 .bus_format = MEDIA_BUS_FMT_RGB888_1X24,
2467 .bus_flags = DRM_BUS_FLAG_DE_HIGH | DRM_BUS_FLAG_PIXDATA_DRIVE_POSEDGE,
2468 .connector_type = DRM_MODE_CONNECTOR_DPI,
2471 static const struct drm_display_mode pda_91_00156_a0_mode = {
2472 .clock = 33300,
2473 .hdisplay = 800,
2474 .hsync_start = 800 + 1,
2475 .hsync_end = 800 + 1 + 64,
2476 .htotal = 800 + 1 + 64 + 64,
2477 .vdisplay = 480,
2478 .vsync_start = 480 + 1,
2479 .vsync_end = 480 + 1 + 23,
2480 .vtotal = 480 + 1 + 23 + 22,
2481 .vrefresh = 60,
2484 static const struct panel_desc pda_91_00156_a0 = {
2485 .modes = &pda_91_00156_a0_mode,
2486 .num_modes = 1,
2487 .size = {
2488 .width = 152,
2489 .height = 91,
2491 .bus_format = MEDIA_BUS_FMT_RGB888_1X24,
2495 static const struct drm_display_mode qd43003c0_40_mode = {
2496 .clock = 9000,
2497 .hdisplay = 480,
2498 .hsync_start = 480 + 8,
2499 .hsync_end = 480 + 8 + 4,
2500 .htotal = 480 + 8 + 4 + 39,
2501 .vdisplay = 272,
2502 .vsync_start = 272 + 4,
2503 .vsync_end = 272 + 4 + 10,
2504 .vtotal = 272 + 4 + 10 + 2,
2505 .vrefresh = 60,
2508 static const struct panel_desc qd43003c0_40 = {
2509 .modes = &qd43003c0_40_mode,
2510 .num_modes = 1,
2511 .bpc = 8,
2512 .size = {
2513 .width = 95,
2514 .height = 53,
2516 .bus_format = MEDIA_BUS_FMT_RGB888_1X24,
2519 static const struct display_timing rocktech_rk070er9427_timing = {
2520 .pixelclock = { 26400000, 33300000, 46800000 },
2521 .hactive = { 800, 800, 800 },
2522 .hfront_porch = { 16, 210, 354 },
2523 .hback_porch = { 46, 46, 46 },
2524 .hsync_len = { 1, 1, 1 },
2525 .vactive = { 480, 480, 480 },
2526 .vfront_porch = { 7, 22, 147 },
2527 .vback_porch = { 23, 23, 23 },
2528 .vsync_len = { 1, 1, 1 },
2529 .flags = DISPLAY_FLAGS_DE_HIGH,
2532 static const struct panel_desc rocktech_rk070er9427 = {
2533 .timings = &rocktech_rk070er9427_timing,
2534 .num_timings = 1,
2535 .bpc = 6,
2536 .size = {
2537 .width = 154,
2538 .height = 86,
2540 .delay = {
2541 .prepare = 41,
2542 .enable = 50,
2543 .unprepare = 41,
2544 .disable = 50,
2546 .bus_format = MEDIA_BUS_FMT_RGB666_1X18,
2549 static const struct drm_display_mode samsung_lsn122dl01_c01_mode = {
2550 .clock = 271560,
2551 .hdisplay = 2560,
2552 .hsync_start = 2560 + 48,
2553 .hsync_end = 2560 + 48 + 32,
2554 .htotal = 2560 + 48 + 32 + 80,
2555 .vdisplay = 1600,
2556 .vsync_start = 1600 + 2,
2557 .vsync_end = 1600 + 2 + 5,
2558 .vtotal = 1600 + 2 + 5 + 57,
2559 .vrefresh = 60,
2562 static const struct panel_desc samsung_lsn122dl01_c01 = {
2563 .modes = &samsung_lsn122dl01_c01_mode,
2564 .num_modes = 1,
2565 .size = {
2566 .width = 263,
2567 .height = 164,
2571 static const struct drm_display_mode samsung_ltn101nt05_mode = {
2572 .clock = 54030,
2573 .hdisplay = 1024,
2574 .hsync_start = 1024 + 24,
2575 .hsync_end = 1024 + 24 + 136,
2576 .htotal = 1024 + 24 + 136 + 160,
2577 .vdisplay = 600,
2578 .vsync_start = 600 + 3,
2579 .vsync_end = 600 + 3 + 6,
2580 .vtotal = 600 + 3 + 6 + 61,
2581 .vrefresh = 60,
2584 static const struct panel_desc samsung_ltn101nt05 = {
2585 .modes = &samsung_ltn101nt05_mode,
2586 .num_modes = 1,
2587 .bpc = 6,
2588 .size = {
2589 .width = 223,
2590 .height = 125,
2594 static const struct drm_display_mode samsung_ltn140at29_301_mode = {
2595 .clock = 76300,
2596 .hdisplay = 1366,
2597 .hsync_start = 1366 + 64,
2598 .hsync_end = 1366 + 64 + 48,
2599 .htotal = 1366 + 64 + 48 + 128,
2600 .vdisplay = 768,
2601 .vsync_start = 768 + 2,
2602 .vsync_end = 768 + 2 + 5,
2603 .vtotal = 768 + 2 + 5 + 17,
2604 .vrefresh = 60,
2607 static const struct panel_desc samsung_ltn140at29_301 = {
2608 .modes = &samsung_ltn140at29_301_mode,
2609 .num_modes = 1,
2610 .bpc = 6,
2611 .size = {
2612 .width = 320,
2613 .height = 187,
2617 static const struct display_timing satoz_sat050at40h12r2_timing = {
2618 .pixelclock = {33300000, 33300000, 50000000},
2619 .hactive = {800, 800, 800},
2620 .hfront_porch = {16, 210, 354},
2621 .hback_porch = {46, 46, 46},
2622 .hsync_len = {1, 1, 40},
2623 .vactive = {480, 480, 480},
2624 .vfront_porch = {7, 22, 147},
2625 .vback_porch = {23, 23, 23},
2626 .vsync_len = {1, 1, 20},
2629 static const struct panel_desc satoz_sat050at40h12r2 = {
2630 .timings = &satoz_sat050at40h12r2_timing,
2631 .num_timings = 1,
2632 .bpc = 8,
2633 .size = {
2634 .width = 108,
2635 .height = 65,
2637 .bus_format = MEDIA_BUS_FMT_RGB888_1X24,
2638 .connector_type = DRM_MODE_CONNECTOR_LVDS,
2641 static const struct drm_display_mode sharp_ld_d5116z01b_mode = {
2642 .clock = 168480,
2643 .hdisplay = 1920,
2644 .hsync_start = 1920 + 48,
2645 .hsync_end = 1920 + 48 + 32,
2646 .htotal = 1920 + 48 + 32 + 80,
2647 .vdisplay = 1280,
2648 .vsync_start = 1280 + 3,
2649 .vsync_end = 1280 + 3 + 10,
2650 .vtotal = 1280 + 3 + 10 + 57,
2651 .vrefresh = 60,
2652 .flags = DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC,
2655 static const struct panel_desc sharp_ld_d5116z01b = {
2656 .modes = &sharp_ld_d5116z01b_mode,
2657 .num_modes = 1,
2658 .bpc = 8,
2659 .size = {
2660 .width = 260,
2661 .height = 120,
2663 .bus_format = MEDIA_BUS_FMT_RGB888_1X24,
2664 .bus_flags = DRM_BUS_FLAG_DATA_MSB_TO_LSB,
2667 static const struct drm_display_mode sharp_lq070y3dg3b_mode = {
2668 .clock = 33260,
2669 .hdisplay = 800,
2670 .hsync_start = 800 + 64,
2671 .hsync_end = 800 + 64 + 128,
2672 .htotal = 800 + 64 + 128 + 64,
2673 .vdisplay = 480,
2674 .vsync_start = 480 + 8,
2675 .vsync_end = 480 + 8 + 2,
2676 .vtotal = 480 + 8 + 2 + 35,
2677 .vrefresh = 60,
2678 .flags = DISPLAY_FLAGS_PIXDATA_POSEDGE,
2681 static const struct panel_desc sharp_lq070y3dg3b = {
2682 .modes = &sharp_lq070y3dg3b_mode,
2683 .num_modes = 1,
2684 .bpc = 8,
2685 .size = {
2686 .width = 152, /* 152.4mm */
2687 .height = 91, /* 91.4mm */
2689 .bus_format = MEDIA_BUS_FMT_RGB888_1X24,
2690 .bus_flags = DRM_BUS_FLAG_DE_HIGH | DRM_BUS_FLAG_PIXDATA_POSEDGE |
2691 DRM_BUS_FLAG_SYNC_DRIVE_POSEDGE,
2694 static const struct drm_display_mode sharp_lq035q7db03_mode = {
2695 .clock = 5500,
2696 .hdisplay = 240,
2697 .hsync_start = 240 + 16,
2698 .hsync_end = 240 + 16 + 7,
2699 .htotal = 240 + 16 + 7 + 5,
2700 .vdisplay = 320,
2701 .vsync_start = 320 + 9,
2702 .vsync_end = 320 + 9 + 1,
2703 .vtotal = 320 + 9 + 1 + 7,
2704 .vrefresh = 60,
2707 static const struct panel_desc sharp_lq035q7db03 = {
2708 .modes = &sharp_lq035q7db03_mode,
2709 .num_modes = 1,
2710 .bpc = 6,
2711 .size = {
2712 .width = 54,
2713 .height = 72,
2715 .bus_format = MEDIA_BUS_FMT_RGB666_1X18,
2718 static const struct display_timing sharp_lq101k1ly04_timing = {
2719 .pixelclock = { 60000000, 65000000, 80000000 },
2720 .hactive = { 1280, 1280, 1280 },
2721 .hfront_porch = { 20, 20, 20 },
2722 .hback_porch = { 20, 20, 20 },
2723 .hsync_len = { 10, 10, 10 },
2724 .vactive = { 800, 800, 800 },
2725 .vfront_porch = { 4, 4, 4 },
2726 .vback_porch = { 4, 4, 4 },
2727 .vsync_len = { 4, 4, 4 },
2728 .flags = DISPLAY_FLAGS_PIXDATA_POSEDGE,
2731 static const struct panel_desc sharp_lq101k1ly04 = {
2732 .timings = &sharp_lq101k1ly04_timing,
2733 .num_timings = 1,
2734 .bpc = 8,
2735 .size = {
2736 .width = 217,
2737 .height = 136,
2739 .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_JEIDA,
2740 .connector_type = DRM_MODE_CONNECTOR_LVDS,
2743 static const struct display_timing sharp_lq123p1jx31_timing = {
2744 .pixelclock = { 252750000, 252750000, 266604720 },
2745 .hactive = { 2400, 2400, 2400 },
2746 .hfront_porch = { 48, 48, 48 },
2747 .hback_porch = { 80, 80, 84 },
2748 .hsync_len = { 32, 32, 32 },
2749 .vactive = { 1600, 1600, 1600 },
2750 .vfront_porch = { 3, 3, 3 },
2751 .vback_porch = { 33, 33, 120 },
2752 .vsync_len = { 10, 10, 10 },
2753 .flags = DISPLAY_FLAGS_VSYNC_LOW | DISPLAY_FLAGS_HSYNC_LOW,
2756 static const struct panel_desc sharp_lq123p1jx31 = {
2757 .timings = &sharp_lq123p1jx31_timing,
2758 .num_timings = 1,
2759 .bpc = 8,
2760 .size = {
2761 .width = 259,
2762 .height = 173,
2764 .delay = {
2765 .prepare = 110,
2766 .enable = 50,
2767 .unprepare = 550,
2771 static const struct drm_display_mode sharp_lq150x1lg11_mode = {
2772 .clock = 71100,
2773 .hdisplay = 1024,
2774 .hsync_start = 1024 + 168,
2775 .hsync_end = 1024 + 168 + 64,
2776 .htotal = 1024 + 168 + 64 + 88,
2777 .vdisplay = 768,
2778 .vsync_start = 768 + 37,
2779 .vsync_end = 768 + 37 + 2,
2780 .vtotal = 768 + 37 + 2 + 8,
2781 .vrefresh = 60,
2784 static const struct panel_desc sharp_lq150x1lg11 = {
2785 .modes = &sharp_lq150x1lg11_mode,
2786 .num_modes = 1,
2787 .bpc = 6,
2788 .size = {
2789 .width = 304,
2790 .height = 228,
2792 .bus_format = MEDIA_BUS_FMT_RGB565_1X16,
2795 static const struct display_timing sharp_ls020b1dd01d_timing = {
2796 .pixelclock = { 2000000, 4200000, 5000000 },
2797 .hactive = { 240, 240, 240 },
2798 .hfront_porch = { 66, 66, 66 },
2799 .hback_porch = { 1, 1, 1 },
2800 .hsync_len = { 1, 1, 1 },
2801 .vactive = { 160, 160, 160 },
2802 .vfront_porch = { 52, 52, 52 },
2803 .vback_porch = { 6, 6, 6 },
2804 .vsync_len = { 10, 10, 10 },
2805 .flags = DISPLAY_FLAGS_HSYNC_HIGH | DISPLAY_FLAGS_VSYNC_LOW,
2808 static const struct panel_desc sharp_ls020b1dd01d = {
2809 .timings = &sharp_ls020b1dd01d_timing,
2810 .num_timings = 1,
2811 .bpc = 6,
2812 .size = {
2813 .width = 42,
2814 .height = 28,
2816 .bus_format = MEDIA_BUS_FMT_RGB565_1X16,
2817 .bus_flags = DRM_BUS_FLAG_DE_HIGH
2818 | DRM_BUS_FLAG_PIXDATA_NEGEDGE
2819 | DRM_BUS_FLAG_SHARP_SIGNALS,
2822 static const struct drm_display_mode shelly_sca07010_bfn_lnn_mode = {
2823 .clock = 33300,
2824 .hdisplay = 800,
2825 .hsync_start = 800 + 1,
2826 .hsync_end = 800 + 1 + 64,
2827 .htotal = 800 + 1 + 64 + 64,
2828 .vdisplay = 480,
2829 .vsync_start = 480 + 1,
2830 .vsync_end = 480 + 1 + 23,
2831 .vtotal = 480 + 1 + 23 + 22,
2832 .vrefresh = 60,
2835 static const struct panel_desc shelly_sca07010_bfn_lnn = {
2836 .modes = &shelly_sca07010_bfn_lnn_mode,
2837 .num_modes = 1,
2838 .size = {
2839 .width = 152,
2840 .height = 91,
2842 .bus_format = MEDIA_BUS_FMT_RGB666_1X18,
2845 static const struct drm_display_mode starry_kr122ea0sra_mode = {
2846 .clock = 147000,
2847 .hdisplay = 1920,
2848 .hsync_start = 1920 + 16,
2849 .hsync_end = 1920 + 16 + 16,
2850 .htotal = 1920 + 16 + 16 + 32,
2851 .vdisplay = 1200,
2852 .vsync_start = 1200 + 15,
2853 .vsync_end = 1200 + 15 + 2,
2854 .vtotal = 1200 + 15 + 2 + 18,
2855 .vrefresh = 60,
2856 .flags = DRM_MODE_FLAG_NVSYNC | DRM_MODE_FLAG_NHSYNC,
2859 static const struct panel_desc starry_kr122ea0sra = {
2860 .modes = &starry_kr122ea0sra_mode,
2861 .num_modes = 1,
2862 .size = {
2863 .width = 263,
2864 .height = 164,
2866 .delay = {
2867 .prepare = 10 + 200,
2868 .enable = 50,
2869 .unprepare = 10 + 500,
2873 static const struct drm_display_mode tfc_s9700rtwv43tr_01b_mode = {
2874 .clock = 30000,
2875 .hdisplay = 800,
2876 .hsync_start = 800 + 39,
2877 .hsync_end = 800 + 39 + 47,
2878 .htotal = 800 + 39 + 47 + 39,
2879 .vdisplay = 480,
2880 .vsync_start = 480 + 13,
2881 .vsync_end = 480 + 13 + 2,
2882 .vtotal = 480 + 13 + 2 + 29,
2883 .vrefresh = 62,
2886 static const struct panel_desc tfc_s9700rtwv43tr_01b = {
2887 .modes = &tfc_s9700rtwv43tr_01b_mode,
2888 .num_modes = 1,
2889 .bpc = 8,
2890 .size = {
2891 .width = 155,
2892 .height = 90,
2894 .bus_format = MEDIA_BUS_FMT_RGB888_1X24,
2895 .bus_flags = DRM_BUS_FLAG_DE_HIGH | DRM_BUS_FLAG_PIXDATA_POSEDGE,
2898 static const struct display_timing tianma_tm070jdhg30_timing = {
2899 .pixelclock = { 62600000, 68200000, 78100000 },
2900 .hactive = { 1280, 1280, 1280 },
2901 .hfront_porch = { 15, 64, 159 },
2902 .hback_porch = { 5, 5, 5 },
2903 .hsync_len = { 1, 1, 256 },
2904 .vactive = { 800, 800, 800 },
2905 .vfront_porch = { 3, 40, 99 },
2906 .vback_porch = { 2, 2, 2 },
2907 .vsync_len = { 1, 1, 128 },
2908 .flags = DISPLAY_FLAGS_DE_HIGH,
2911 static const struct panel_desc tianma_tm070jdhg30 = {
2912 .timings = &tianma_tm070jdhg30_timing,
2913 .num_timings = 1,
2914 .bpc = 8,
2915 .size = {
2916 .width = 151,
2917 .height = 95,
2919 .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
2920 .connector_type = DRM_MODE_CONNECTOR_LVDS,
2923 static const struct display_timing tianma_tm070rvhg71_timing = {
2924 .pixelclock = { 27700000, 29200000, 39600000 },
2925 .hactive = { 800, 800, 800 },
2926 .hfront_porch = { 12, 40, 212 },
2927 .hback_porch = { 88, 88, 88 },
2928 .hsync_len = { 1, 1, 40 },
2929 .vactive = { 480, 480, 480 },
2930 .vfront_porch = { 1, 13, 88 },
2931 .vback_porch = { 32, 32, 32 },
2932 .vsync_len = { 1, 1, 3 },
2933 .flags = DISPLAY_FLAGS_DE_HIGH,
2936 static const struct panel_desc tianma_tm070rvhg71 = {
2937 .timings = &tianma_tm070rvhg71_timing,
2938 .num_timings = 1,
2939 .bpc = 8,
2940 .size = {
2941 .width = 154,
2942 .height = 86,
2944 .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
2945 .connector_type = DRM_MODE_CONNECTOR_LVDS,
2948 static const struct drm_display_mode ti_nspire_cx_lcd_mode[] = {
2950 .clock = 10000,
2951 .hdisplay = 320,
2952 .hsync_start = 320 + 50,
2953 .hsync_end = 320 + 50 + 6,
2954 .htotal = 320 + 50 + 6 + 38,
2955 .vdisplay = 240,
2956 .vsync_start = 240 + 3,
2957 .vsync_end = 240 + 3 + 1,
2958 .vtotal = 240 + 3 + 1 + 17,
2959 .vrefresh = 60,
2960 .flags = DRM_MODE_FLAG_NVSYNC | DRM_MODE_FLAG_NHSYNC,
2964 static const struct panel_desc ti_nspire_cx_lcd_panel = {
2965 .modes = ti_nspire_cx_lcd_mode,
2966 .num_modes = 1,
2967 .bpc = 8,
2968 .size = {
2969 .width = 65,
2970 .height = 49,
2972 .bus_format = MEDIA_BUS_FMT_RGB888_1X24,
2973 .bus_flags = DRM_BUS_FLAG_PIXDATA_NEGEDGE,
2976 static const struct drm_display_mode ti_nspire_classic_lcd_mode[] = {
2978 .clock = 10000,
2979 .hdisplay = 320,
2980 .hsync_start = 320 + 6,
2981 .hsync_end = 320 + 6 + 6,
2982 .htotal = 320 + 6 + 6 + 6,
2983 .vdisplay = 240,
2984 .vsync_start = 240 + 0,
2985 .vsync_end = 240 + 0 + 1,
2986 .vtotal = 240 + 0 + 1 + 0,
2987 .vrefresh = 60,
2988 .flags = DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC,
2992 static const struct panel_desc ti_nspire_classic_lcd_panel = {
2993 .modes = ti_nspire_classic_lcd_mode,
2994 .num_modes = 1,
2995 /* The grayscale panel has 8 bit for the color .. Y (black) */
2996 .bpc = 8,
2997 .size = {
2998 .width = 71,
2999 .height = 53,
3001 /* This is the grayscale bus format */
3002 .bus_format = MEDIA_BUS_FMT_Y8_1X8,
3003 .bus_flags = DRM_BUS_FLAG_PIXDATA_POSEDGE,
3006 static const struct drm_display_mode toshiba_lt089ac29000_mode = {
3007 .clock = 79500,
3008 .hdisplay = 1280,
3009 .hsync_start = 1280 + 192,
3010 .hsync_end = 1280 + 192 + 128,
3011 .htotal = 1280 + 192 + 128 + 64,
3012 .vdisplay = 768,
3013 .vsync_start = 768 + 20,
3014 .vsync_end = 768 + 20 + 7,
3015 .vtotal = 768 + 20 + 7 + 3,
3016 .vrefresh = 60,
3019 static const struct panel_desc toshiba_lt089ac29000 = {
3020 .modes = &toshiba_lt089ac29000_mode,
3021 .num_modes = 1,
3022 .size = {
3023 .width = 194,
3024 .height = 116,
3026 .bus_format = MEDIA_BUS_FMT_RGB888_1X24,
3027 .bus_flags = DRM_BUS_FLAG_DE_HIGH | DRM_BUS_FLAG_PIXDATA_DRIVE_POSEDGE,
3028 .connector_type = DRM_MODE_CONNECTOR_LVDS,
3031 static const struct drm_display_mode tpk_f07a_0102_mode = {
3032 .clock = 33260,
3033 .hdisplay = 800,
3034 .hsync_start = 800 + 40,
3035 .hsync_end = 800 + 40 + 128,
3036 .htotal = 800 + 40 + 128 + 88,
3037 .vdisplay = 480,
3038 .vsync_start = 480 + 10,
3039 .vsync_end = 480 + 10 + 2,
3040 .vtotal = 480 + 10 + 2 + 33,
3041 .vrefresh = 60,
3044 static const struct panel_desc tpk_f07a_0102 = {
3045 .modes = &tpk_f07a_0102_mode,
3046 .num_modes = 1,
3047 .size = {
3048 .width = 152,
3049 .height = 91,
3051 .bus_flags = DRM_BUS_FLAG_PIXDATA_DRIVE_POSEDGE,
3054 static const struct drm_display_mode tpk_f10a_0102_mode = {
3055 .clock = 45000,
3056 .hdisplay = 1024,
3057 .hsync_start = 1024 + 176,
3058 .hsync_end = 1024 + 176 + 5,
3059 .htotal = 1024 + 176 + 5 + 88,
3060 .vdisplay = 600,
3061 .vsync_start = 600 + 20,
3062 .vsync_end = 600 + 20 + 5,
3063 .vtotal = 600 + 20 + 5 + 25,
3064 .vrefresh = 60,
3067 static const struct panel_desc tpk_f10a_0102 = {
3068 .modes = &tpk_f10a_0102_mode,
3069 .num_modes = 1,
3070 .size = {
3071 .width = 223,
3072 .height = 125,
3076 static const struct display_timing urt_umsh_8596md_timing = {
3077 .pixelclock = { 33260000, 33260000, 33260000 },
3078 .hactive = { 800, 800, 800 },
3079 .hfront_porch = { 41, 41, 41 },
3080 .hback_porch = { 216 - 128, 216 - 128, 216 - 128 },
3081 .hsync_len = { 71, 128, 128 },
3082 .vactive = { 480, 480, 480 },
3083 .vfront_porch = { 10, 10, 10 },
3084 .vback_porch = { 35 - 2, 35 - 2, 35 - 2 },
3085 .vsync_len = { 2, 2, 2 },
3086 .flags = DISPLAY_FLAGS_DE_HIGH | DISPLAY_FLAGS_PIXDATA_NEGEDGE |
3087 DISPLAY_FLAGS_HSYNC_LOW | DISPLAY_FLAGS_VSYNC_LOW,
3090 static const struct panel_desc urt_umsh_8596md_lvds = {
3091 .timings = &urt_umsh_8596md_timing,
3092 .num_timings = 1,
3093 .bpc = 6,
3094 .size = {
3095 .width = 152,
3096 .height = 91,
3098 .bus_format = MEDIA_BUS_FMT_RGB666_1X7X3_SPWG,
3099 .connector_type = DRM_MODE_CONNECTOR_LVDS,
3102 static const struct panel_desc urt_umsh_8596md_parallel = {
3103 .timings = &urt_umsh_8596md_timing,
3104 .num_timings = 1,
3105 .bpc = 6,
3106 .size = {
3107 .width = 152,
3108 .height = 91,
3110 .bus_format = MEDIA_BUS_FMT_RGB666_1X18,
3113 static const struct drm_display_mode vl050_8048nt_c01_mode = {
3114 .clock = 33333,
3115 .hdisplay = 800,
3116 .hsync_start = 800 + 210,
3117 .hsync_end = 800 + 210 + 20,
3118 .htotal = 800 + 210 + 20 + 46,
3119 .vdisplay = 480,
3120 .vsync_start = 480 + 22,
3121 .vsync_end = 480 + 22 + 10,
3122 .vtotal = 480 + 22 + 10 + 23,
3123 .vrefresh = 60,
3124 .flags = DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC,
3127 static const struct panel_desc vl050_8048nt_c01 = {
3128 .modes = &vl050_8048nt_c01_mode,
3129 .num_modes = 1,
3130 .bpc = 8,
3131 .size = {
3132 .width = 120,
3133 .height = 76,
3135 .bus_format = MEDIA_BUS_FMT_RGB888_1X24,
3136 .bus_flags = DRM_BUS_FLAG_DE_HIGH | DRM_BUS_FLAG_PIXDATA_POSEDGE,
3139 static const struct drm_display_mode winstar_wf35ltiacd_mode = {
3140 .clock = 6410,
3141 .hdisplay = 320,
3142 .hsync_start = 320 + 20,
3143 .hsync_end = 320 + 20 + 30,
3144 .htotal = 320 + 20 + 30 + 38,
3145 .vdisplay = 240,
3146 .vsync_start = 240 + 4,
3147 .vsync_end = 240 + 4 + 3,
3148 .vtotal = 240 + 4 + 3 + 15,
3149 .vrefresh = 60,
3150 .flags = DRM_MODE_FLAG_NVSYNC | DRM_MODE_FLAG_NHSYNC,
3153 static const struct panel_desc winstar_wf35ltiacd = {
3154 .modes = &winstar_wf35ltiacd_mode,
3155 .num_modes = 1,
3156 .bpc = 8,
3157 .size = {
3158 .width = 70,
3159 .height = 53,
3161 .bus_format = MEDIA_BUS_FMT_RGB888_1X24,
3164 static const struct drm_display_mode arm_rtsm_mode[] = {
3166 .clock = 65000,
3167 .hdisplay = 1024,
3168 .hsync_start = 1024 + 24,
3169 .hsync_end = 1024 + 24 + 136,
3170 .htotal = 1024 + 24 + 136 + 160,
3171 .vdisplay = 768,
3172 .vsync_start = 768 + 3,
3173 .vsync_end = 768 + 3 + 6,
3174 .vtotal = 768 + 3 + 6 + 29,
3175 .vrefresh = 60,
3176 .flags = DRM_MODE_FLAG_NVSYNC | DRM_MODE_FLAG_NHSYNC,
3180 static const struct panel_desc arm_rtsm = {
3181 .modes = arm_rtsm_mode,
3182 .num_modes = 1,
3183 .bpc = 8,
3184 .size = {
3185 .width = 400,
3186 .height = 300,
3188 .bus_format = MEDIA_BUS_FMT_RGB888_1X24,
3191 static const struct of_device_id platform_of_match[] = {
3193 .compatible = "ampire,am-480272h3tmqw-t01h",
3194 .data = &ampire_am_480272h3tmqw_t01h,
3195 }, {
3196 .compatible = "ampire,am800480r3tmqwa1h",
3197 .data = &ampire_am800480r3tmqwa1h,
3198 }, {
3199 .compatible = "arm,rtsm-display",
3200 .data = &arm_rtsm,
3201 }, {
3202 .compatible = "armadeus,st0700-adapt",
3203 .data = &armadeus_st0700_adapt,
3204 }, {
3205 .compatible = "auo,b101aw03",
3206 .data = &auo_b101aw03,
3207 }, {
3208 .compatible = "auo,b101ean01",
3209 .data = &auo_b101ean01,
3210 }, {
3211 .compatible = "auo,b101xtn01",
3212 .data = &auo_b101xtn01,
3213 }, {
3214 .compatible = "auo,b116xa01",
3215 .data = &auo_b116xak01,
3216 }, {
3217 .compatible = "auo,b116xw03",
3218 .data = &auo_b116xw03,
3219 }, {
3220 .compatible = "auo,b133htn01",
3221 .data = &auo_b133htn01,
3222 }, {
3223 .compatible = "auo,b133xtn01",
3224 .data = &auo_b133xtn01,
3225 }, {
3226 .compatible = "auo,g070vvn01",
3227 .data = &auo_g070vvn01,
3228 }, {
3229 .compatible = "auo,g101evn010",
3230 .data = &auo_g101evn010,
3231 }, {
3232 .compatible = "auo,g104sn02",
3233 .data = &auo_g104sn02,
3234 }, {
3235 .compatible = "auo,g133han01",
3236 .data = &auo_g133han01,
3237 }, {
3238 .compatible = "auo,g185han01",
3239 .data = &auo_g185han01,
3240 }, {
3241 .compatible = "auo,p320hvn03",
3242 .data = &auo_p320hvn03,
3243 }, {
3244 .compatible = "auo,t215hvn01",
3245 .data = &auo_t215hvn01,
3246 }, {
3247 .compatible = "avic,tm070ddh03",
3248 .data = &avic_tm070ddh03,
3249 }, {
3250 .compatible = "bananapi,s070wv20-ct16",
3251 .data = &bananapi_s070wv20_ct16,
3252 }, {
3253 .compatible = "boe,hv070wsa-100",
3254 .data = &boe_hv070wsa
3255 }, {
3256 .compatible = "boe,nv101wxmn51",
3257 .data = &boe_nv101wxmn51,
3258 }, {
3259 .compatible = "boe,nv140fhmn49",
3260 .data = &boe_nv140fhmn49,
3261 }, {
3262 .compatible = "cdtech,s043wq26h-ct7",
3263 .data = &cdtech_s043wq26h_ct7,
3264 }, {
3265 .compatible = "cdtech,s070wv95-ct16",
3266 .data = &cdtech_s070wv95_ct16,
3267 }, {
3268 .compatible = "chunghwa,claa070wp03xg",
3269 .data = &chunghwa_claa070wp03xg,
3270 }, {
3271 .compatible = "chunghwa,claa101wa01a",
3272 .data = &chunghwa_claa101wa01a
3273 }, {
3274 .compatible = "chunghwa,claa101wb01",
3275 .data = &chunghwa_claa101wb01
3276 }, {
3277 .compatible = "dataimage,scf0700c48ggu18",
3278 .data = &dataimage_scf0700c48ggu18,
3279 }, {
3280 .compatible = "dlc,dlc0700yzg-1",
3281 .data = &dlc_dlc0700yzg_1,
3282 }, {
3283 .compatible = "dlc,dlc1010gig",
3284 .data = &dlc_dlc1010gig,
3285 }, {
3286 .compatible = "edt,et035012dm6",
3287 .data = &edt_et035012dm6,
3288 }, {
3289 .compatible = "edt,etm0430g0dh6",
3290 .data = &edt_etm0430g0dh6,
3291 }, {
3292 .compatible = "edt,et057090dhu",
3293 .data = &edt_et057090dhu,
3294 }, {
3295 .compatible = "edt,et070080dh6",
3296 .data = &edt_etm0700g0dh6,
3297 }, {
3298 .compatible = "edt,etm0700g0dh6",
3299 .data = &edt_etm0700g0dh6,
3300 }, {
3301 .compatible = "edt,etm0700g0bdh6",
3302 .data = &edt_etm0700g0bdh6,
3303 }, {
3304 .compatible = "edt,etm0700g0edh6",
3305 .data = &edt_etm0700g0bdh6,
3306 }, {
3307 .compatible = "evervision,vgg804821",
3308 .data = &evervision_vgg804821,
3309 }, {
3310 .compatible = "foxlink,fl500wvr00-a0t",
3311 .data = &foxlink_fl500wvr00_a0t,
3312 }, {
3313 .compatible = "friendlyarm,hd702e",
3314 .data = &friendlyarm_hd702e,
3315 }, {
3316 .compatible = "giantplus,gpg482739qs5",
3317 .data = &giantplus_gpg482739qs5
3318 }, {
3319 .compatible = "giantplus,gpm940b0",
3320 .data = &giantplus_gpm940b0,
3321 }, {
3322 .compatible = "hannstar,hsd070pww1",
3323 .data = &hannstar_hsd070pww1,
3324 }, {
3325 .compatible = "hannstar,hsd100pxn1",
3326 .data = &hannstar_hsd100pxn1,
3327 }, {
3328 .compatible = "hit,tx23d38vm0caa",
3329 .data = &hitachi_tx23d38vm0caa
3330 }, {
3331 .compatible = "innolux,at043tn24",
3332 .data = &innolux_at043tn24,
3333 }, {
3334 .compatible = "innolux,at070tn92",
3335 .data = &innolux_at070tn92,
3336 }, {
3337 .compatible = "innolux,g070y2-l01",
3338 .data = &innolux_g070y2_l01,
3339 }, {
3340 .compatible = "innolux,g101ice-l01",
3341 .data = &innolux_g101ice_l01
3342 }, {
3343 .compatible = "innolux,g121i1-l01",
3344 .data = &innolux_g121i1_l01
3345 }, {
3346 .compatible = "innolux,g121x1-l03",
3347 .data = &innolux_g121x1_l03,
3348 }, {
3349 .compatible = "innolux,n116bge",
3350 .data = &innolux_n116bge,
3351 }, {
3352 .compatible = "innolux,n156bge-l21",
3353 .data = &innolux_n156bge_l21,
3354 }, {
3355 .compatible = "innolux,p120zdg-bf1",
3356 .data = &innolux_p120zdg_bf1,
3357 }, {
3358 .compatible = "innolux,zj070na-01p",
3359 .data = &innolux_zj070na_01p,
3360 }, {
3361 .compatible = "koe,tx14d24vm1bpa",
3362 .data = &koe_tx14d24vm1bpa,
3363 }, {
3364 .compatible = "koe,tx31d200vm0baa",
3365 .data = &koe_tx31d200vm0baa,
3366 }, {
3367 .compatible = "kyo,tcg121xglp",
3368 .data = &kyo_tcg121xglp,
3369 }, {
3370 .compatible = "lemaker,bl035-rgb-002",
3371 .data = &lemaker_bl035_rgb_002,
3372 }, {
3373 .compatible = "lg,lb070wv8",
3374 .data = &lg_lb070wv8,
3375 }, {
3376 .compatible = "lg,lp079qx1-sp0v",
3377 .data = &lg_lp079qx1_sp0v,
3378 }, {
3379 .compatible = "lg,lp097qx1-spa1",
3380 .data = &lg_lp097qx1_spa1,
3381 }, {
3382 .compatible = "lg,lp120up1",
3383 .data = &lg_lp120up1,
3384 }, {
3385 .compatible = "lg,lp129qe",
3386 .data = &lg_lp129qe,
3387 }, {
3388 .compatible = "logicpd,type28",
3389 .data = &logicpd_type_28,
3390 }, {
3391 .compatible = "mitsubishi,aa070mc01-ca1",
3392 .data = &mitsubishi_aa070mc01,
3393 }, {
3394 .compatible = "nec,nl12880bc20-05",
3395 .data = &nec_nl12880bc20_05,
3396 }, {
3397 .compatible = "nec,nl4827hc19-05b",
3398 .data = &nec_nl4827hc19_05b,
3399 }, {
3400 .compatible = "netron-dy,e231732",
3401 .data = &netron_dy_e231732,
3402 }, {
3403 .compatible = "newhaven,nhd-4.3-480272ef-atxl",
3404 .data = &newhaven_nhd_43_480272ef_atxl,
3405 }, {
3406 .compatible = "nlt,nl192108ac18-02d",
3407 .data = &nlt_nl192108ac18_02d,
3408 }, {
3409 .compatible = "nvd,9128",
3410 .data = &nvd_9128,
3411 }, {
3412 .compatible = "okaya,rs800480t-7x0gp",
3413 .data = &okaya_rs800480t_7x0gp,
3414 }, {
3415 .compatible = "olimex,lcd-olinuxino-43-ts",
3416 .data = &olimex_lcd_olinuxino_43ts,
3417 }, {
3418 .compatible = "ontat,yx700wv03",
3419 .data = &ontat_yx700wv03,
3420 }, {
3421 .compatible = "ortustech,com37h3m05dtc",
3422 .data = &ortustech_com37h3m,
3423 }, {
3424 .compatible = "ortustech,com37h3m99dtc",
3425 .data = &ortustech_com37h3m,
3426 }, {
3427 .compatible = "ortustech,com43h4m85ulc",
3428 .data = &ortustech_com43h4m85ulc,
3429 }, {
3430 .compatible = "osddisplays,osd070t1718-19ts",
3431 .data = &osddisplays_osd070t1718_19ts,
3432 }, {
3433 .compatible = "pda,91-00156-a0",
3434 .data = &pda_91_00156_a0,
3435 }, {
3436 .compatible = "qiaodian,qd43003c0-40",
3437 .data = &qd43003c0_40,
3438 }, {
3439 .compatible = "rocktech,rk070er9427",
3440 .data = &rocktech_rk070er9427,
3441 }, {
3442 .compatible = "samsung,lsn122dl01-c01",
3443 .data = &samsung_lsn122dl01_c01,
3444 }, {
3445 .compatible = "samsung,ltn101nt05",
3446 .data = &samsung_ltn101nt05,
3447 }, {
3448 .compatible = "samsung,ltn140at29-301",
3449 .data = &samsung_ltn140at29_301,
3450 }, {
3451 .compatible = "satoz,sat050at40h12r2",
3452 .data = &satoz_sat050at40h12r2,
3453 }, {
3454 .compatible = "sharp,ld-d5116z01b",
3455 .data = &sharp_ld_d5116z01b,
3456 }, {
3457 .compatible = "sharp,lq035q7db03",
3458 .data = &sharp_lq035q7db03,
3459 }, {
3460 .compatible = "sharp,lq070y3dg3b",
3461 .data = &sharp_lq070y3dg3b,
3462 }, {
3463 .compatible = "sharp,lq101k1ly04",
3464 .data = &sharp_lq101k1ly04,
3465 }, {
3466 .compatible = "sharp,lq123p1jx31",
3467 .data = &sharp_lq123p1jx31,
3468 }, {
3469 .compatible = "sharp,lq150x1lg11",
3470 .data = &sharp_lq150x1lg11,
3471 }, {
3472 .compatible = "sharp,ls020b1dd01d",
3473 .data = &sharp_ls020b1dd01d,
3474 }, {
3475 .compatible = "shelly,sca07010-bfn-lnn",
3476 .data = &shelly_sca07010_bfn_lnn,
3477 }, {
3478 .compatible = "starry,kr122ea0sra",
3479 .data = &starry_kr122ea0sra,
3480 }, {
3481 .compatible = "tfc,s9700rtwv43tr-01b",
3482 .data = &tfc_s9700rtwv43tr_01b,
3483 }, {
3484 .compatible = "tianma,tm070jdhg30",
3485 .data = &tianma_tm070jdhg30,
3486 }, {
3487 .compatible = "tianma,tm070rvhg71",
3488 .data = &tianma_tm070rvhg71,
3489 }, {
3490 .compatible = "ti,nspire-cx-lcd-panel",
3491 .data = &ti_nspire_cx_lcd_panel,
3492 }, {
3493 .compatible = "ti,nspire-classic-lcd-panel",
3494 .data = &ti_nspire_classic_lcd_panel,
3495 }, {
3496 .compatible = "toshiba,lt089ac29000",
3497 .data = &toshiba_lt089ac29000,
3498 }, {
3499 .compatible = "tpk,f07a-0102",
3500 .data = &tpk_f07a_0102,
3501 }, {
3502 .compatible = "tpk,f10a-0102",
3503 .data = &tpk_f10a_0102,
3504 }, {
3505 .compatible = "urt,umsh-8596md-t",
3506 .data = &urt_umsh_8596md_parallel,
3507 }, {
3508 .compatible = "urt,umsh-8596md-1t",
3509 .data = &urt_umsh_8596md_parallel,
3510 }, {
3511 .compatible = "urt,umsh-8596md-7t",
3512 .data = &urt_umsh_8596md_parallel,
3513 }, {
3514 .compatible = "urt,umsh-8596md-11t",
3515 .data = &urt_umsh_8596md_lvds,
3516 }, {
3517 .compatible = "urt,umsh-8596md-19t",
3518 .data = &urt_umsh_8596md_lvds,
3519 }, {
3520 .compatible = "urt,umsh-8596md-20t",
3521 .data = &urt_umsh_8596md_parallel,
3522 }, {
3523 .compatible = "vxt,vl050-8048nt-c01",
3524 .data = &vl050_8048nt_c01,
3525 }, {
3526 .compatible = "winstar,wf35ltiacd",
3527 .data = &winstar_wf35ltiacd,
3528 }, {
3529 /* sentinel */
3532 MODULE_DEVICE_TABLE(of, platform_of_match);
3534 static int panel_simple_platform_probe(struct platform_device *pdev)
3536 const struct of_device_id *id;
3538 id = of_match_node(platform_of_match, pdev->dev.of_node);
3539 if (!id)
3540 return -ENODEV;
3542 return panel_simple_probe(&pdev->dev, id->data);
3545 static int panel_simple_platform_remove(struct platform_device *pdev)
3547 return panel_simple_remove(&pdev->dev);
3550 static void panel_simple_platform_shutdown(struct platform_device *pdev)
3552 panel_simple_shutdown(&pdev->dev);
3555 static struct platform_driver panel_simple_platform_driver = {
3556 .driver = {
3557 .name = "panel-simple",
3558 .of_match_table = platform_of_match,
3560 .probe = panel_simple_platform_probe,
3561 .remove = panel_simple_platform_remove,
3562 .shutdown = panel_simple_platform_shutdown,
3565 struct panel_desc_dsi {
3566 struct panel_desc desc;
3568 unsigned long flags;
3569 enum mipi_dsi_pixel_format format;
3570 unsigned int lanes;
3573 static const struct drm_display_mode auo_b080uan01_mode = {
3574 .clock = 154500,
3575 .hdisplay = 1200,
3576 .hsync_start = 1200 + 62,
3577 .hsync_end = 1200 + 62 + 4,
3578 .htotal = 1200 + 62 + 4 + 62,
3579 .vdisplay = 1920,
3580 .vsync_start = 1920 + 9,
3581 .vsync_end = 1920 + 9 + 2,
3582 .vtotal = 1920 + 9 + 2 + 8,
3583 .vrefresh = 60,
3586 static const struct panel_desc_dsi auo_b080uan01 = {
3587 .desc = {
3588 .modes = &auo_b080uan01_mode,
3589 .num_modes = 1,
3590 .bpc = 8,
3591 .size = {
3592 .width = 108,
3593 .height = 272,
3596 .flags = MIPI_DSI_MODE_VIDEO | MIPI_DSI_CLOCK_NON_CONTINUOUS,
3597 .format = MIPI_DSI_FMT_RGB888,
3598 .lanes = 4,
3601 static const struct drm_display_mode boe_tv080wum_nl0_mode = {
3602 .clock = 160000,
3603 .hdisplay = 1200,
3604 .hsync_start = 1200 + 120,
3605 .hsync_end = 1200 + 120 + 20,
3606 .htotal = 1200 + 120 + 20 + 21,
3607 .vdisplay = 1920,
3608 .vsync_start = 1920 + 21,
3609 .vsync_end = 1920 + 21 + 3,
3610 .vtotal = 1920 + 21 + 3 + 18,
3611 .vrefresh = 60,
3612 .flags = DRM_MODE_FLAG_NVSYNC | DRM_MODE_FLAG_NHSYNC,
3615 static const struct panel_desc_dsi boe_tv080wum_nl0 = {
3616 .desc = {
3617 .modes = &boe_tv080wum_nl0_mode,
3618 .num_modes = 1,
3619 .size = {
3620 .width = 107,
3621 .height = 172,
3624 .flags = MIPI_DSI_MODE_VIDEO |
3625 MIPI_DSI_MODE_VIDEO_BURST |
3626 MIPI_DSI_MODE_VIDEO_SYNC_PULSE,
3627 .format = MIPI_DSI_FMT_RGB888,
3628 .lanes = 4,
3631 static const struct drm_display_mode lg_ld070wx3_sl01_mode = {
3632 .clock = 71000,
3633 .hdisplay = 800,
3634 .hsync_start = 800 + 32,
3635 .hsync_end = 800 + 32 + 1,
3636 .htotal = 800 + 32 + 1 + 57,
3637 .vdisplay = 1280,
3638 .vsync_start = 1280 + 28,
3639 .vsync_end = 1280 + 28 + 1,
3640 .vtotal = 1280 + 28 + 1 + 14,
3641 .vrefresh = 60,
3644 static const struct panel_desc_dsi lg_ld070wx3_sl01 = {
3645 .desc = {
3646 .modes = &lg_ld070wx3_sl01_mode,
3647 .num_modes = 1,
3648 .bpc = 8,
3649 .size = {
3650 .width = 94,
3651 .height = 151,
3654 .flags = MIPI_DSI_MODE_VIDEO | MIPI_DSI_CLOCK_NON_CONTINUOUS,
3655 .format = MIPI_DSI_FMT_RGB888,
3656 .lanes = 4,
3659 static const struct drm_display_mode lg_lh500wx1_sd03_mode = {
3660 .clock = 67000,
3661 .hdisplay = 720,
3662 .hsync_start = 720 + 12,
3663 .hsync_end = 720 + 12 + 4,
3664 .htotal = 720 + 12 + 4 + 112,
3665 .vdisplay = 1280,
3666 .vsync_start = 1280 + 8,
3667 .vsync_end = 1280 + 8 + 4,
3668 .vtotal = 1280 + 8 + 4 + 12,
3669 .vrefresh = 60,
3672 static const struct panel_desc_dsi lg_lh500wx1_sd03 = {
3673 .desc = {
3674 .modes = &lg_lh500wx1_sd03_mode,
3675 .num_modes = 1,
3676 .bpc = 8,
3677 .size = {
3678 .width = 62,
3679 .height = 110,
3682 .flags = MIPI_DSI_MODE_VIDEO,
3683 .format = MIPI_DSI_FMT_RGB888,
3684 .lanes = 4,
3687 static const struct drm_display_mode panasonic_vvx10f004b00_mode = {
3688 .clock = 157200,
3689 .hdisplay = 1920,
3690 .hsync_start = 1920 + 154,
3691 .hsync_end = 1920 + 154 + 16,
3692 .htotal = 1920 + 154 + 16 + 32,
3693 .vdisplay = 1200,
3694 .vsync_start = 1200 + 17,
3695 .vsync_end = 1200 + 17 + 2,
3696 .vtotal = 1200 + 17 + 2 + 16,
3697 .vrefresh = 60,
3700 static const struct panel_desc_dsi panasonic_vvx10f004b00 = {
3701 .desc = {
3702 .modes = &panasonic_vvx10f004b00_mode,
3703 .num_modes = 1,
3704 .bpc = 8,
3705 .size = {
3706 .width = 217,
3707 .height = 136,
3710 .flags = MIPI_DSI_MODE_VIDEO | MIPI_DSI_MODE_VIDEO_SYNC_PULSE |
3711 MIPI_DSI_CLOCK_NON_CONTINUOUS,
3712 .format = MIPI_DSI_FMT_RGB888,
3713 .lanes = 4,
3716 static const struct drm_display_mode lg_acx467akm_7_mode = {
3717 .clock = 150000,
3718 .hdisplay = 1080,
3719 .hsync_start = 1080 + 2,
3720 .hsync_end = 1080 + 2 + 2,
3721 .htotal = 1080 + 2 + 2 + 2,
3722 .vdisplay = 1920,
3723 .vsync_start = 1920 + 2,
3724 .vsync_end = 1920 + 2 + 2,
3725 .vtotal = 1920 + 2 + 2 + 2,
3726 .vrefresh = 60,
3729 static const struct panel_desc_dsi lg_acx467akm_7 = {
3730 .desc = {
3731 .modes = &lg_acx467akm_7_mode,
3732 .num_modes = 1,
3733 .bpc = 8,
3734 .size = {
3735 .width = 62,
3736 .height = 110,
3739 .flags = 0,
3740 .format = MIPI_DSI_FMT_RGB888,
3741 .lanes = 4,
3744 static const struct drm_display_mode osd101t2045_53ts_mode = {
3745 .clock = 154500,
3746 .hdisplay = 1920,
3747 .hsync_start = 1920 + 112,
3748 .hsync_end = 1920 + 112 + 16,
3749 .htotal = 1920 + 112 + 16 + 32,
3750 .vdisplay = 1200,
3751 .vsync_start = 1200 + 16,
3752 .vsync_end = 1200 + 16 + 2,
3753 .vtotal = 1200 + 16 + 2 + 16,
3754 .vrefresh = 60,
3755 .flags = DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC,
3758 static const struct panel_desc_dsi osd101t2045_53ts = {
3759 .desc = {
3760 .modes = &osd101t2045_53ts_mode,
3761 .num_modes = 1,
3762 .bpc = 8,
3763 .size = {
3764 .width = 217,
3765 .height = 136,
3768 .flags = MIPI_DSI_MODE_VIDEO | MIPI_DSI_MODE_VIDEO_BURST |
3769 MIPI_DSI_MODE_VIDEO_SYNC_PULSE |
3770 MIPI_DSI_MODE_EOT_PACKET,
3771 .format = MIPI_DSI_FMT_RGB888,
3772 .lanes = 4,
3775 static const struct of_device_id dsi_of_match[] = {
3777 .compatible = "auo,b080uan01",
3778 .data = &auo_b080uan01
3779 }, {
3780 .compatible = "boe,tv080wum-nl0",
3781 .data = &boe_tv080wum_nl0
3782 }, {
3783 .compatible = "lg,ld070wx3-sl01",
3784 .data = &lg_ld070wx3_sl01
3785 }, {
3786 .compatible = "lg,lh500wx1-sd03",
3787 .data = &lg_lh500wx1_sd03
3788 }, {
3789 .compatible = "panasonic,vvx10f004b00",
3790 .data = &panasonic_vvx10f004b00
3791 }, {
3792 .compatible = "lg,acx467akm-7",
3793 .data = &lg_acx467akm_7
3794 }, {
3795 .compatible = "osddisplays,osd101t2045-53ts",
3796 .data = &osd101t2045_53ts
3797 }, {
3798 /* sentinel */
3801 MODULE_DEVICE_TABLE(of, dsi_of_match);
3803 static int panel_simple_dsi_probe(struct mipi_dsi_device *dsi)
3805 const struct panel_desc_dsi *desc;
3806 const struct of_device_id *id;
3807 int err;
3809 id = of_match_node(dsi_of_match, dsi->dev.of_node);
3810 if (!id)
3811 return -ENODEV;
3813 desc = id->data;
3815 err = panel_simple_probe(&dsi->dev, &desc->desc);
3816 if (err < 0)
3817 return err;
3819 dsi->mode_flags = desc->flags;
3820 dsi->format = desc->format;
3821 dsi->lanes = desc->lanes;
3823 err = mipi_dsi_attach(dsi);
3824 if (err) {
3825 struct panel_simple *panel = dev_get_drvdata(&dsi->dev);
3827 drm_panel_remove(&panel->base);
3830 return err;
3833 static int panel_simple_dsi_remove(struct mipi_dsi_device *dsi)
3835 int err;
3837 err = mipi_dsi_detach(dsi);
3838 if (err < 0)
3839 dev_err(&dsi->dev, "failed to detach from DSI host: %d\n", err);
3841 return panel_simple_remove(&dsi->dev);
3844 static void panel_simple_dsi_shutdown(struct mipi_dsi_device *dsi)
3846 panel_simple_shutdown(&dsi->dev);
3849 static struct mipi_dsi_driver panel_simple_dsi_driver = {
3850 .driver = {
3851 .name = "panel-simple-dsi",
3852 .of_match_table = dsi_of_match,
3854 .probe = panel_simple_dsi_probe,
3855 .remove = panel_simple_dsi_remove,
3856 .shutdown = panel_simple_dsi_shutdown,
3859 static int __init panel_simple_init(void)
3861 int err;
3863 err = platform_driver_register(&panel_simple_platform_driver);
3864 if (err < 0)
3865 return err;
3867 if (IS_ENABLED(CONFIG_DRM_MIPI_DSI)) {
3868 err = mipi_dsi_driver_register(&panel_simple_dsi_driver);
3869 if (err < 0)
3870 return err;
3873 return 0;
3875 module_init(panel_simple_init);
3877 static void __exit panel_simple_exit(void)
3879 if (IS_ENABLED(CONFIG_DRM_MIPI_DSI))
3880 mipi_dsi_driver_unregister(&panel_simple_dsi_driver);
3882 platform_driver_unregister(&panel_simple_platform_driver);
3884 module_exit(panel_simple_exit);
3886 MODULE_AUTHOR("Thierry Reding <treding@nvidia.com>");
3887 MODULE_DESCRIPTION("DRM Driver for Simple Panels");
3888 MODULE_LICENSE("GPL and additional rights");