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
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21 * DEALINGS IN THE SOFTWARE.
24 #include <linux/backlight.h>
25 #include <linux/gpio/consumer.h>
26 #include <linux/module.h>
27 #include <linux/of_platform.h>
28 #include <linux/platform_device.h>
29 #include <linux/regulator/consumer.h>
32 #include <drm/drm_crtc.h>
33 #include <drm/drm_mipi_dsi.h>
34 #include <drm/drm_panel.h>
36 #include <video/display_timing.h>
37 #include <video/videomode.h>
40 const struct drm_display_mode *modes;
41 unsigned int num_modes;
42 const struct display_timing *timings;
43 unsigned int num_timings;
48 * @width: width (in millimeters) of the panel's active display area
49 * @height: height (in millimeters) of the panel's active display area
57 * @prepare: the time (in milliseconds) that it takes for the panel to
58 * become ready and start receiving video data
59 * @hpd_absent_delay: Add this to the prepare delay if we know Hot
60 * Plug Detect isn't used.
61 * @enable: the time (in milliseconds) that it takes for the panel to
62 * display the first valid frame after starting to receive
64 * @disable: the time (in milliseconds) that it takes for the panel to
65 * turn the display off (no content is visible)
66 * @unprepare: the time (in milliseconds) that it takes for the panel
67 * to power itself down completely
71 unsigned int hpd_absent_delay;
74 unsigned int unprepare;
82 struct drm_panel base;
87 const struct panel_desc *desc;
89 struct backlight_device *backlight;
90 struct regulator *supply;
91 struct i2c_adapter *ddc;
93 struct gpio_desc *enable_gpio;
96 static inline struct panel_simple *to_panel_simple(struct drm_panel *panel)
98 return container_of(panel, struct panel_simple, base);
101 static int panel_simple_get_fixed_modes(struct panel_simple *panel)
103 struct drm_connector *connector = panel->base.connector;
104 struct drm_device *drm = panel->base.drm;
105 struct drm_display_mode *mode;
106 unsigned int i, num = 0;
111 for (i = 0; i < panel->desc->num_timings; i++) {
112 const struct display_timing *dt = &panel->desc->timings[i];
115 videomode_from_timing(dt, &vm);
116 mode = drm_mode_create(drm);
118 dev_err(drm->dev, "failed to add mode %ux%u\n",
119 dt->hactive.typ, dt->vactive.typ);
123 drm_display_mode_from_videomode(&vm, mode);
125 mode->type |= DRM_MODE_TYPE_DRIVER;
127 if (panel->desc->num_timings == 1)
128 mode->type |= DRM_MODE_TYPE_PREFERRED;
130 drm_mode_probed_add(connector, mode);
134 for (i = 0; i < panel->desc->num_modes; i++) {
135 const struct drm_display_mode *m = &panel->desc->modes[i];
137 mode = drm_mode_duplicate(drm, m);
139 dev_err(drm->dev, "failed to add mode %ux%u@%u\n",
140 m->hdisplay, m->vdisplay, m->vrefresh);
144 mode->type |= DRM_MODE_TYPE_DRIVER;
146 if (panel->desc->num_modes == 1)
147 mode->type |= DRM_MODE_TYPE_PREFERRED;
149 drm_mode_set_name(mode);
151 drm_mode_probed_add(connector, mode);
155 connector->display_info.bpc = panel->desc->bpc;
156 connector->display_info.width_mm = panel->desc->size.width;
157 connector->display_info.height_mm = panel->desc->size.height;
158 if (panel->desc->bus_format)
159 drm_display_info_set_bus_formats(&connector->display_info,
160 &panel->desc->bus_format, 1);
161 connector->display_info.bus_flags = panel->desc->bus_flags;
166 static int panel_simple_disable(struct drm_panel *panel)
168 struct panel_simple *p = to_panel_simple(panel);
174 p->backlight->props.power = FB_BLANK_POWERDOWN;
175 p->backlight->props.state |= BL_CORE_FBBLANK;
176 backlight_update_status(p->backlight);
179 if (p->desc->delay.disable)
180 msleep(p->desc->delay.disable);
187 static int panel_simple_unprepare(struct drm_panel *panel)
189 struct panel_simple *p = to_panel_simple(panel);
194 gpiod_set_value_cansleep(p->enable_gpio, 0);
196 regulator_disable(p->supply);
198 if (p->desc->delay.unprepare)
199 msleep(p->desc->delay.unprepare);
206 static int panel_simple_prepare(struct drm_panel *panel)
208 struct panel_simple *p = to_panel_simple(panel);
215 err = regulator_enable(p->supply);
217 dev_err(panel->dev, "failed to enable supply: %d\n", err);
221 gpiod_set_value_cansleep(p->enable_gpio, 1);
223 delay = p->desc->delay.prepare;
225 delay += p->desc->delay.hpd_absent_delay;
234 static int panel_simple_enable(struct drm_panel *panel)
236 struct panel_simple *p = to_panel_simple(panel);
241 if (p->desc->delay.enable)
242 msleep(p->desc->delay.enable);
245 p->backlight->props.state &= ~BL_CORE_FBBLANK;
246 p->backlight->props.power = FB_BLANK_UNBLANK;
247 backlight_update_status(p->backlight);
255 static int panel_simple_get_modes(struct drm_panel *panel)
257 struct panel_simple *p = to_panel_simple(panel);
260 /* probe EDID if a DDC bus is available */
262 struct edid *edid = drm_get_edid(panel->connector, p->ddc);
263 drm_connector_update_edid_property(panel->connector, edid);
265 num += drm_add_edid_modes(panel->connector, edid);
270 /* add hard-coded panel modes */
271 num += panel_simple_get_fixed_modes(p);
276 static int panel_simple_get_timings(struct drm_panel *panel,
277 unsigned int num_timings,
278 struct display_timing *timings)
280 struct panel_simple *p = to_panel_simple(panel);
283 if (p->desc->num_timings < num_timings)
284 num_timings = p->desc->num_timings;
287 for (i = 0; i < num_timings; i++)
288 timings[i] = p->desc->timings[i];
290 return p->desc->num_timings;
293 static const struct drm_panel_funcs panel_simple_funcs = {
294 .disable = panel_simple_disable,
295 .unprepare = panel_simple_unprepare,
296 .prepare = panel_simple_prepare,
297 .enable = panel_simple_enable,
298 .get_modes = panel_simple_get_modes,
299 .get_timings = panel_simple_get_timings,
302 static int panel_simple_probe(struct device *dev, const struct panel_desc *desc)
304 struct device_node *backlight, *ddc;
305 struct panel_simple *panel;
308 panel = devm_kzalloc(dev, sizeof(*panel), GFP_KERNEL);
312 panel->enabled = false;
313 panel->prepared = false;
316 panel->no_hpd = of_property_read_bool(dev->of_node, "no-hpd");
318 panel->supply = devm_regulator_get(dev, "power");
319 if (IS_ERR(panel->supply))
320 return PTR_ERR(panel->supply);
322 panel->enable_gpio = devm_gpiod_get_optional(dev, "enable",
324 if (IS_ERR(panel->enable_gpio)) {
325 err = PTR_ERR(panel->enable_gpio);
326 if (err != -EPROBE_DEFER)
327 dev_err(dev, "failed to request GPIO: %d\n", err);
331 backlight = of_parse_phandle(dev->of_node, "backlight", 0);
333 panel->backlight = of_find_backlight_by_node(backlight);
334 of_node_put(backlight);
336 if (!panel->backlight)
337 return -EPROBE_DEFER;
340 ddc = of_parse_phandle(dev->of_node, "ddc-i2c-bus", 0);
342 panel->ddc = of_find_i2c_adapter_by_node(ddc);
351 drm_panel_init(&panel->base);
352 panel->base.dev = dev;
353 panel->base.funcs = &panel_simple_funcs;
355 err = drm_panel_add(&panel->base);
359 dev_set_drvdata(dev, panel);
365 put_device(&panel->ddc->dev);
367 if (panel->backlight)
368 put_device(&panel->backlight->dev);
373 static int panel_simple_remove(struct device *dev)
375 struct panel_simple *panel = dev_get_drvdata(dev);
377 drm_panel_remove(&panel->base);
379 panel_simple_disable(&panel->base);
380 panel_simple_unprepare(&panel->base);
383 put_device(&panel->ddc->dev);
385 if (panel->backlight)
386 put_device(&panel->backlight->dev);
391 static void panel_simple_shutdown(struct device *dev)
393 struct panel_simple *panel = dev_get_drvdata(dev);
395 panel_simple_disable(&panel->base);
396 panel_simple_unprepare(&panel->base);
399 static const struct drm_display_mode ampire_am_480272h3tmqw_t01h_mode = {
402 .hsync_start = 480 + 2,
403 .hsync_end = 480 + 2 + 41,
404 .htotal = 480 + 2 + 41 + 2,
406 .vsync_start = 272 + 2,
407 .vsync_end = 272 + 2 + 10,
408 .vtotal = 272 + 2 + 10 + 2,
410 .flags = DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC,
413 static const struct panel_desc ampire_am_480272h3tmqw_t01h = {
414 .modes = &ire_am_480272h3tmqw_t01h_mode,
421 .bus_format = MEDIA_BUS_FMT_RGB888_1X24,
424 static const struct drm_display_mode ampire_am800480r3tmqwa1h_mode = {
427 .hsync_start = 800 + 0,
428 .hsync_end = 800 + 0 + 255,
429 .htotal = 800 + 0 + 255 + 0,
431 .vsync_start = 480 + 2,
432 .vsync_end = 480 + 2 + 45,
433 .vtotal = 480 + 2 + 45 + 0,
435 .flags = DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC,
438 static const struct panel_desc ampire_am800480r3tmqwa1h = {
439 .modes = &ire_am800480r3tmqwa1h_mode,
446 .bus_format = MEDIA_BUS_FMT_RGB666_1X18,
449 static const struct drm_display_mode auo_b101aw03_mode = {
452 .hsync_start = 1024 + 156,
453 .hsync_end = 1024 + 156 + 8,
454 .htotal = 1024 + 156 + 8 + 156,
456 .vsync_start = 600 + 16,
457 .vsync_end = 600 + 16 + 6,
458 .vtotal = 600 + 16 + 6 + 16,
462 static const struct panel_desc auo_b101aw03 = {
463 .modes = &auo_b101aw03_mode,
472 static const struct drm_display_mode auo_b101ean01_mode = {
475 .hsync_start = 1280 + 119,
476 .hsync_end = 1280 + 119 + 32,
477 .htotal = 1280 + 119 + 32 + 21,
479 .vsync_start = 800 + 4,
480 .vsync_end = 800 + 4 + 20,
481 .vtotal = 800 + 4 + 20 + 8,
485 static const struct panel_desc auo_b101ean01 = {
486 .modes = &auo_b101ean01_mode,
495 static const struct drm_display_mode auo_b101xtn01_mode = {
498 .hsync_start = 1366 + 20,
499 .hsync_end = 1366 + 20 + 70,
500 .htotal = 1366 + 20 + 70,
502 .vsync_start = 768 + 14,
503 .vsync_end = 768 + 14 + 42,
504 .vtotal = 768 + 14 + 42,
506 .flags = DRM_MODE_FLAG_NVSYNC | DRM_MODE_FLAG_NHSYNC,
509 static const struct panel_desc auo_b101xtn01 = {
510 .modes = &auo_b101xtn01_mode,
519 static const struct drm_display_mode auo_b116xw03_mode = {
522 .hsync_start = 1366 + 40,
523 .hsync_end = 1366 + 40 + 40,
524 .htotal = 1366 + 40 + 40 + 32,
526 .vsync_start = 768 + 10,
527 .vsync_end = 768 + 10 + 12,
528 .vtotal = 768 + 10 + 12 + 6,
532 static const struct panel_desc auo_b116xw03 = {
533 .modes = &auo_b116xw03_mode,
542 static const struct drm_display_mode auo_b133xtn01_mode = {
545 .hsync_start = 1366 + 48,
546 .hsync_end = 1366 + 48 + 32,
547 .htotal = 1366 + 48 + 32 + 20,
549 .vsync_start = 768 + 3,
550 .vsync_end = 768 + 3 + 6,
551 .vtotal = 768 + 3 + 6 + 13,
555 static const struct panel_desc auo_b133xtn01 = {
556 .modes = &auo_b133xtn01_mode,
565 static const struct drm_display_mode auo_b133htn01_mode = {
568 .hsync_start = 1920 + 172,
569 .hsync_end = 1920 + 172 + 80,
570 .htotal = 1920 + 172 + 80 + 60,
572 .vsync_start = 1080 + 25,
573 .vsync_end = 1080 + 25 + 10,
574 .vtotal = 1080 + 25 + 10 + 10,
578 static const struct panel_desc auo_b133htn01 = {
579 .modes = &auo_b133htn01_mode,
593 static const struct display_timing auo_g070vvn01_timings = {
594 .pixelclock = { 33300000, 34209000, 45000000 },
595 .hactive = { 800, 800, 800 },
596 .hfront_porch = { 20, 40, 200 },
597 .hback_porch = { 87, 40, 1 },
598 .hsync_len = { 1, 48, 87 },
599 .vactive = { 480, 480, 480 },
600 .vfront_porch = { 5, 13, 200 },
601 .vback_porch = { 31, 31, 29 },
602 .vsync_len = { 1, 1, 3 },
605 static const struct panel_desc auo_g070vvn01 = {
606 .timings = &auo_g070vvn01_timings,
621 static const struct drm_display_mode auo_g101evn010_mode = {
624 .hsync_start = 1280 + 82,
625 .hsync_end = 1280 + 82 + 2,
626 .htotal = 1280 + 82 + 2 + 84,
628 .vsync_start = 800 + 8,
629 .vsync_end = 800 + 8 + 2,
630 .vtotal = 800 + 8 + 2 + 6,
634 static const struct panel_desc auo_g101evn010 = {
635 .modes = &auo_g101evn010_mode,
642 .bus_format = MEDIA_BUS_FMT_RGB666_1X18,
645 static const struct drm_display_mode auo_g104sn02_mode = {
648 .hsync_start = 800 + 40,
649 .hsync_end = 800 + 40 + 216,
650 .htotal = 800 + 40 + 216 + 128,
652 .vsync_start = 600 + 10,
653 .vsync_end = 600 + 10 + 35,
654 .vtotal = 600 + 10 + 35 + 2,
658 static const struct panel_desc auo_g104sn02 = {
659 .modes = &auo_g104sn02_mode,
668 static const struct display_timing auo_g133han01_timings = {
669 .pixelclock = { 134000000, 141200000, 149000000 },
670 .hactive = { 1920, 1920, 1920 },
671 .hfront_porch = { 39, 58, 77 },
672 .hback_porch = { 59, 88, 117 },
673 .hsync_len = { 28, 42, 56 },
674 .vactive = { 1080, 1080, 1080 },
675 .vfront_porch = { 3, 8, 11 },
676 .vback_porch = { 5, 14, 19 },
677 .vsync_len = { 4, 14, 19 },
680 static const struct panel_desc auo_g133han01 = {
681 .timings = &auo_g133han01_timings,
694 .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_JEIDA,
697 static const struct display_timing auo_g185han01_timings = {
698 .pixelclock = { 120000000, 144000000, 175000000 },
699 .hactive = { 1920, 1920, 1920 },
700 .hfront_porch = { 18, 60, 74 },
701 .hback_porch = { 12, 44, 54 },
702 .hsync_len = { 10, 24, 32 },
703 .vactive = { 1080, 1080, 1080 },
704 .vfront_porch = { 6, 10, 40 },
705 .vback_porch = { 2, 5, 20 },
706 .vsync_len = { 2, 5, 20 },
709 static const struct panel_desc auo_g185han01 = {
710 .timings = &auo_g185han01_timings,
723 .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
726 static const struct display_timing auo_p320hvn03_timings = {
727 .pixelclock = { 106000000, 148500000, 164000000 },
728 .hactive = { 1920, 1920, 1920 },
729 .hfront_porch = { 25, 50, 130 },
730 .hback_porch = { 25, 50, 130 },
731 .hsync_len = { 20, 40, 105 },
732 .vactive = { 1080, 1080, 1080 },
733 .vfront_porch = { 8, 17, 150 },
734 .vback_porch = { 8, 17, 150 },
735 .vsync_len = { 4, 11, 100 },
738 static const struct panel_desc auo_p320hvn03 = {
739 .timings = &auo_p320hvn03_timings,
751 .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
754 static const struct drm_display_mode auo_t215hvn01_mode = {
757 .hsync_start = 1920 + 88,
758 .hsync_end = 1920 + 88 + 44,
759 .htotal = 1920 + 88 + 44 + 148,
761 .vsync_start = 1080 + 4,
762 .vsync_end = 1080 + 4 + 5,
763 .vtotal = 1080 + 4 + 5 + 36,
767 static const struct panel_desc auo_t215hvn01 = {
768 .modes = &auo_t215hvn01_mode,
781 static const struct drm_display_mode avic_tm070ddh03_mode = {
784 .hsync_start = 1024 + 160,
785 .hsync_end = 1024 + 160 + 4,
786 .htotal = 1024 + 160 + 4 + 156,
788 .vsync_start = 600 + 17,
789 .vsync_end = 600 + 17 + 1,
790 .vtotal = 600 + 17 + 1 + 17,
794 static const struct panel_desc avic_tm070ddh03 = {
795 .modes = &avic_tm070ddh03_mode,
809 static const struct drm_display_mode bananapi_s070wv20_ct16_mode = {
812 .hsync_start = 800 + 40,
813 .hsync_end = 800 + 40 + 48,
814 .htotal = 800 + 40 + 48 + 40,
816 .vsync_start = 480 + 13,
817 .vsync_end = 480 + 13 + 3,
818 .vtotal = 480 + 13 + 3 + 29,
821 static const struct panel_desc bananapi_s070wv20_ct16 = {
822 .modes = &bananapi_s070wv20_ct16_mode,
831 static const struct drm_display_mode boe_hv070wsa_mode = {
834 .hsync_start = 1024 + 30,
835 .hsync_end = 1024 + 30 + 30,
836 .htotal = 1024 + 30 + 30 + 30,
838 .vsync_start = 600 + 10,
839 .vsync_end = 600 + 10 + 10,
840 .vtotal = 600 + 10 + 10 + 10,
844 static const struct panel_desc boe_hv070wsa = {
845 .modes = &boe_hv070wsa_mode,
853 static const struct drm_display_mode boe_nv101wxmn51_modes[] = {
857 .hsync_start = 1280 + 48,
858 .hsync_end = 1280 + 48 + 32,
859 .htotal = 1280 + 48 + 32 + 80,
861 .vsync_start = 800 + 3,
862 .vsync_end = 800 + 3 + 5,
863 .vtotal = 800 + 3 + 5 + 24,
869 .hsync_start = 1280 + 48,
870 .hsync_end = 1280 + 48 + 32,
871 .htotal = 1280 + 48 + 32 + 80,
873 .vsync_start = 800 + 3,
874 .vsync_end = 800 + 3 + 5,
875 .vtotal = 800 + 3 + 5 + 24,
880 static const struct panel_desc boe_nv101wxmn51 = {
881 .modes = boe_nv101wxmn51_modes,
882 .num_modes = ARRAY_SIZE(boe_nv101wxmn51_modes),
895 static const struct drm_display_mode cdtech_s043wq26h_ct7_mode = {
898 .hsync_start = 480 + 5,
899 .hsync_end = 480 + 5 + 5,
900 .htotal = 480 + 5 + 5 + 40,
902 .vsync_start = 272 + 8,
903 .vsync_end = 272 + 8 + 8,
904 .vtotal = 272 + 8 + 8 + 8,
906 .flags = DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC,
909 static const struct panel_desc cdtech_s043wq26h_ct7 = {
910 .modes = &cdtech_s043wq26h_ct7_mode,
917 .bus_flags = DRM_BUS_FLAG_PIXDATA_POSEDGE,
920 static const struct drm_display_mode cdtech_s070wv95_ct16_mode = {
923 .hsync_start = 800 + 40,
924 .hsync_end = 800 + 40 + 40,
925 .htotal = 800 + 40 + 40 + 48,
927 .vsync_start = 480 + 29,
928 .vsync_end = 480 + 29 + 13,
929 .vtotal = 480 + 29 + 13 + 3,
931 .flags = DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC,
934 static const struct panel_desc cdtech_s070wv95_ct16 = {
935 .modes = &cdtech_s070wv95_ct16_mode,
944 static const struct drm_display_mode chunghwa_claa070wp03xg_mode = {
947 .hsync_start = 800 + 49,
948 .hsync_end = 800 + 49 + 33,
949 .htotal = 800 + 49 + 33 + 17,
951 .vsync_start = 1280 + 1,
952 .vsync_end = 1280 + 1 + 7,
953 .vtotal = 1280 + 1 + 7 + 15,
955 .flags = DRM_MODE_FLAG_NVSYNC | DRM_MODE_FLAG_NHSYNC,
958 static const struct panel_desc chunghwa_claa070wp03xg = {
959 .modes = &chunghwa_claa070wp03xg_mode,
968 static const struct drm_display_mode chunghwa_claa101wa01a_mode = {
971 .hsync_start = 1366 + 58,
972 .hsync_end = 1366 + 58 + 58,
973 .htotal = 1366 + 58 + 58 + 58,
975 .vsync_start = 768 + 4,
976 .vsync_end = 768 + 4 + 4,
977 .vtotal = 768 + 4 + 4 + 4,
981 static const struct panel_desc chunghwa_claa101wa01a = {
982 .modes = &chunghwa_claa101wa01a_mode,
991 static const struct drm_display_mode chunghwa_claa101wb01_mode = {
994 .hsync_start = 1366 + 48,
995 .hsync_end = 1366 + 48 + 32,
996 .htotal = 1366 + 48 + 32 + 20,
998 .vsync_start = 768 + 16,
999 .vsync_end = 768 + 16 + 8,
1000 .vtotal = 768 + 16 + 8 + 16,
1004 static const struct panel_desc chunghwa_claa101wb01 = {
1005 .modes = &chunghwa_claa101wb01_mode,
1014 static const struct drm_display_mode dataimage_scf0700c48ggu18_mode = {
1017 .hsync_start = 800 + 40,
1018 .hsync_end = 800 + 40 + 128,
1019 .htotal = 800 + 40 + 128 + 88,
1021 .vsync_start = 480 + 10,
1022 .vsync_end = 480 + 10 + 2,
1023 .vtotal = 480 + 10 + 2 + 33,
1025 .flags = DRM_MODE_FLAG_NVSYNC | DRM_MODE_FLAG_NHSYNC,
1028 static const struct panel_desc dataimage_scf0700c48ggu18 = {
1029 .modes = &dataimage_scf0700c48ggu18_mode,
1036 .bus_format = MEDIA_BUS_FMT_RGB888_1X24,
1037 .bus_flags = DRM_BUS_FLAG_DE_HIGH | DRM_BUS_FLAG_PIXDATA_POSEDGE,
1040 static const struct display_timing dlc_dlc0700yzg_1_timing = {
1041 .pixelclock = { 45000000, 51200000, 57000000 },
1042 .hactive = { 1024, 1024, 1024 },
1043 .hfront_porch = { 100, 106, 113 },
1044 .hback_porch = { 100, 106, 113 },
1045 .hsync_len = { 100, 108, 114 },
1046 .vactive = { 600, 600, 600 },
1047 .vfront_porch = { 8, 11, 15 },
1048 .vback_porch = { 8, 11, 15 },
1049 .vsync_len = { 9, 13, 15 },
1050 .flags = DISPLAY_FLAGS_DE_HIGH,
1053 static const struct panel_desc dlc_dlc0700yzg_1 = {
1054 .timings = &dlc_dlc0700yzg_1_timing,
1066 .bus_format = MEDIA_BUS_FMT_RGB666_1X7X3_SPWG,
1069 static const struct display_timing dlc_dlc1010gig_timing = {
1070 .pixelclock = { 68900000, 71100000, 73400000 },
1071 .hactive = { 1280, 1280, 1280 },
1072 .hfront_porch = { 43, 53, 63 },
1073 .hback_porch = { 43, 53, 63 },
1074 .hsync_len = { 44, 54, 64 },
1075 .vactive = { 800, 800, 800 },
1076 .vfront_porch = { 5, 8, 11 },
1077 .vback_porch = { 5, 8, 11 },
1078 .vsync_len = { 5, 7, 11 },
1079 .flags = DISPLAY_FLAGS_DE_HIGH,
1082 static const struct panel_desc dlc_dlc1010gig = {
1083 .timings = &dlc_dlc1010gig_timing,
1096 .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
1099 static const struct drm_display_mode edt_et057090dhu_mode = {
1102 .hsync_start = 640 + 16,
1103 .hsync_end = 640 + 16 + 30,
1104 .htotal = 640 + 16 + 30 + 114,
1106 .vsync_start = 480 + 10,
1107 .vsync_end = 480 + 10 + 3,
1108 .vtotal = 480 + 10 + 3 + 32,
1110 .flags = DRM_MODE_FLAG_NVSYNC | DRM_MODE_FLAG_NHSYNC,
1113 static const struct panel_desc edt_et057090dhu = {
1114 .modes = &edt_et057090dhu_mode,
1121 .bus_format = MEDIA_BUS_FMT_RGB666_1X18,
1122 .bus_flags = DRM_BUS_FLAG_DE_HIGH | DRM_BUS_FLAG_PIXDATA_NEGEDGE,
1125 static const struct drm_display_mode edt_etm0700g0dh6_mode = {
1128 .hsync_start = 800 + 40,
1129 .hsync_end = 800 + 40 + 128,
1130 .htotal = 800 + 40 + 128 + 88,
1132 .vsync_start = 480 + 10,
1133 .vsync_end = 480 + 10 + 2,
1134 .vtotal = 480 + 10 + 2 + 33,
1136 .flags = DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC,
1139 static const struct panel_desc edt_etm0700g0dh6 = {
1140 .modes = &edt_etm0700g0dh6_mode,
1147 .bus_format = MEDIA_BUS_FMT_RGB666_1X18,
1148 .bus_flags = DRM_BUS_FLAG_DE_HIGH | DRM_BUS_FLAG_PIXDATA_NEGEDGE,
1151 static const struct panel_desc edt_etm0700g0bdh6 = {
1152 .modes = &edt_etm0700g0dh6_mode,
1159 .bus_format = MEDIA_BUS_FMT_RGB666_1X18,
1160 .bus_flags = DRM_BUS_FLAG_DE_HIGH | DRM_BUS_FLAG_PIXDATA_POSEDGE,
1163 static const struct drm_display_mode foxlink_fl500wvr00_a0t_mode = {
1166 .hsync_start = 800 + 168,
1167 .hsync_end = 800 + 168 + 64,
1168 .htotal = 800 + 168 + 64 + 88,
1170 .vsync_start = 480 + 37,
1171 .vsync_end = 480 + 37 + 2,
1172 .vtotal = 480 + 37 + 2 + 8,
1176 static const struct panel_desc foxlink_fl500wvr00_a0t = {
1177 .modes = &foxlink_fl500wvr00_a0t_mode,
1184 .bus_format = MEDIA_BUS_FMT_RGB888_1X24,
1187 static const struct drm_display_mode giantplus_gpg482739qs5_mode = {
1190 .hsync_start = 480 + 5,
1191 .hsync_end = 480 + 5 + 1,
1192 .htotal = 480 + 5 + 1 + 40,
1194 .vsync_start = 272 + 8,
1195 .vsync_end = 272 + 8 + 1,
1196 .vtotal = 272 + 8 + 1 + 8,
1200 static const struct panel_desc giantplus_gpg482739qs5 = {
1201 .modes = &giantplus_gpg482739qs5_mode,
1208 .bus_format = MEDIA_BUS_FMT_RGB888_1X24,
1211 static const struct display_timing hannstar_hsd070pww1_timing = {
1212 .pixelclock = { 64300000, 71100000, 82000000 },
1213 .hactive = { 1280, 1280, 1280 },
1214 .hfront_porch = { 1, 1, 10 },
1215 .hback_porch = { 1, 1, 10 },
1217 * According to the data sheet, the minimum horizontal blanking interval
1218 * is 54 clocks (1 + 52 + 1), but tests with a Nitrogen6X have shown the
1219 * minimum working horizontal blanking interval to be 60 clocks.
1221 .hsync_len = { 58, 158, 661 },
1222 .vactive = { 800, 800, 800 },
1223 .vfront_porch = { 1, 1, 10 },
1224 .vback_porch = { 1, 1, 10 },
1225 .vsync_len = { 1, 21, 203 },
1226 .flags = DISPLAY_FLAGS_DE_HIGH,
1229 static const struct panel_desc hannstar_hsd070pww1 = {
1230 .timings = &hannstar_hsd070pww1_timing,
1237 .bus_format = MEDIA_BUS_FMT_RGB666_1X7X3_SPWG,
1240 static const struct display_timing hannstar_hsd100pxn1_timing = {
1241 .pixelclock = { 55000000, 65000000, 75000000 },
1242 .hactive = { 1024, 1024, 1024 },
1243 .hfront_porch = { 40, 40, 40 },
1244 .hback_porch = { 220, 220, 220 },
1245 .hsync_len = { 20, 60, 100 },
1246 .vactive = { 768, 768, 768 },
1247 .vfront_porch = { 7, 7, 7 },
1248 .vback_porch = { 21, 21, 21 },
1249 .vsync_len = { 10, 10, 10 },
1250 .flags = DISPLAY_FLAGS_DE_HIGH,
1253 static const struct panel_desc hannstar_hsd100pxn1 = {
1254 .timings = &hannstar_hsd100pxn1_timing,
1261 .bus_format = MEDIA_BUS_FMT_RGB666_1X7X3_SPWG,
1264 static const struct drm_display_mode hitachi_tx23d38vm0caa_mode = {
1267 .hsync_start = 800 + 85,
1268 .hsync_end = 800 + 85 + 86,
1269 .htotal = 800 + 85 + 86 + 85,
1271 .vsync_start = 480 + 16,
1272 .vsync_end = 480 + 16 + 13,
1273 .vtotal = 480 + 16 + 13 + 16,
1277 static const struct panel_desc hitachi_tx23d38vm0caa = {
1278 .modes = &hitachi_tx23d38vm0caa_mode,
1291 static const struct drm_display_mode innolux_at043tn24_mode = {
1294 .hsync_start = 480 + 2,
1295 .hsync_end = 480 + 2 + 41,
1296 .htotal = 480 + 2 + 41 + 2,
1298 .vsync_start = 272 + 2,
1299 .vsync_end = 272 + 2 + 10,
1300 .vtotal = 272 + 2 + 10 + 2,
1302 .flags = DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC,
1305 static const struct panel_desc innolux_at043tn24 = {
1306 .modes = &innolux_at043tn24_mode,
1313 .bus_format = MEDIA_BUS_FMT_RGB888_1X24,
1314 .bus_flags = DRM_BUS_FLAG_DE_HIGH | DRM_BUS_FLAG_PIXDATA_POSEDGE,
1317 static const struct drm_display_mode innolux_at070tn92_mode = {
1320 .hsync_start = 800 + 210,
1321 .hsync_end = 800 + 210 + 20,
1322 .htotal = 800 + 210 + 20 + 46,
1324 .vsync_start = 480 + 22,
1325 .vsync_end = 480 + 22 + 10,
1326 .vtotal = 480 + 22 + 23 + 10,
1330 static const struct panel_desc innolux_at070tn92 = {
1331 .modes = &innolux_at070tn92_mode,
1337 .bus_format = MEDIA_BUS_FMT_RGB888_1X24,
1340 static const struct display_timing innolux_g070y2_l01_timing = {
1341 .pixelclock = { 28000000, 29500000, 32000000 },
1342 .hactive = { 800, 800, 800 },
1343 .hfront_porch = { 61, 91, 141 },
1344 .hback_porch = { 60, 90, 140 },
1345 .hsync_len = { 12, 12, 12 },
1346 .vactive = { 480, 480, 480 },
1347 .vfront_porch = { 4, 9, 30 },
1348 .vback_porch = { 4, 8, 28 },
1349 .vsync_len = { 2, 2, 2 },
1350 .flags = DISPLAY_FLAGS_DE_HIGH,
1353 static const struct panel_desc innolux_g070y2_l01 = {
1354 .timings = &innolux_g070y2_l01_timing,
1367 .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
1370 static const struct display_timing innolux_g101ice_l01_timing = {
1371 .pixelclock = { 60400000, 71100000, 74700000 },
1372 .hactive = { 1280, 1280, 1280 },
1373 .hfront_porch = { 41, 80, 100 },
1374 .hback_porch = { 40, 79, 99 },
1375 .hsync_len = { 1, 1, 1 },
1376 .vactive = { 800, 800, 800 },
1377 .vfront_porch = { 5, 11, 14 },
1378 .vback_porch = { 4, 11, 14 },
1379 .vsync_len = { 1, 1, 1 },
1380 .flags = DISPLAY_FLAGS_DE_HIGH,
1383 static const struct panel_desc innolux_g101ice_l01 = {
1384 .timings = &innolux_g101ice_l01_timing,
1395 .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
1398 static const struct display_timing innolux_g121i1_l01_timing = {
1399 .pixelclock = { 67450000, 71000000, 74550000 },
1400 .hactive = { 1280, 1280, 1280 },
1401 .hfront_porch = { 40, 80, 160 },
1402 .hback_porch = { 39, 79, 159 },
1403 .hsync_len = { 1, 1, 1 },
1404 .vactive = { 800, 800, 800 },
1405 .vfront_porch = { 5, 11, 100 },
1406 .vback_porch = { 4, 11, 99 },
1407 .vsync_len = { 1, 1, 1 },
1410 static const struct panel_desc innolux_g121i1_l01 = {
1411 .timings = &innolux_g121i1_l01_timing,
1422 .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
1425 static const struct drm_display_mode innolux_g121x1_l03_mode = {
1428 .hsync_start = 1024 + 0,
1429 .hsync_end = 1024 + 1,
1430 .htotal = 1024 + 0 + 1 + 320,
1432 .vsync_start = 768 + 38,
1433 .vsync_end = 768 + 38 + 1,
1434 .vtotal = 768 + 38 + 1 + 0,
1436 .flags = DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC,
1439 static const struct panel_desc innolux_g121x1_l03 = {
1440 .modes = &innolux_g121x1_l03_mode,
1454 static const struct drm_display_mode innolux_n116bge_mode = {
1457 .hsync_start = 1366 + 136,
1458 .hsync_end = 1366 + 136 + 30,
1459 .htotal = 1366 + 136 + 30 + 60,
1461 .vsync_start = 768 + 8,
1462 .vsync_end = 768 + 8 + 12,
1463 .vtotal = 768 + 8 + 12 + 12,
1465 .flags = DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC,
1468 static const struct panel_desc innolux_n116bge = {
1469 .modes = &innolux_n116bge_mode,
1478 static const struct drm_display_mode innolux_n156bge_l21_mode = {
1481 .hsync_start = 1366 + 16,
1482 .hsync_end = 1366 + 16 + 34,
1483 .htotal = 1366 + 16 + 34 + 50,
1485 .vsync_start = 768 + 2,
1486 .vsync_end = 768 + 2 + 6,
1487 .vtotal = 768 + 2 + 6 + 12,
1491 static const struct panel_desc innolux_n156bge_l21 = {
1492 .modes = &innolux_n156bge_l21_mode,
1501 static const struct drm_display_mode innolux_p120zdg_bf1_mode = {
1504 .hsync_start = 2160 + 48,
1505 .hsync_end = 2160 + 48 + 32,
1506 .htotal = 2160 + 48 + 32 + 80,
1508 .vsync_start = 1440 + 3,
1509 .vsync_end = 1440 + 3 + 10,
1510 .vtotal = 1440 + 3 + 10 + 27,
1512 .flags = DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC,
1515 static const struct panel_desc innolux_p120zdg_bf1 = {
1516 .modes = &innolux_p120zdg_bf1_mode,
1524 .hpd_absent_delay = 200,
1529 static const struct drm_display_mode innolux_zj070na_01p_mode = {
1532 .hsync_start = 1024 + 128,
1533 .hsync_end = 1024 + 128 + 64,
1534 .htotal = 1024 + 128 + 64 + 128,
1536 .vsync_start = 600 + 16,
1537 .vsync_end = 600 + 16 + 4,
1538 .vtotal = 600 + 16 + 4 + 16,
1542 static const struct panel_desc innolux_zj070na_01p = {
1543 .modes = &innolux_zj070na_01p_mode,
1552 static const struct display_timing koe_tx31d200vm0baa_timing = {
1553 .pixelclock = { 39600000, 43200000, 48000000 },
1554 .hactive = { 1280, 1280, 1280 },
1555 .hfront_porch = { 16, 36, 56 },
1556 .hback_porch = { 16, 36, 56 },
1557 .hsync_len = { 8, 8, 8 },
1558 .vactive = { 480, 480, 480 },
1559 .vfront_porch = { 6, 21, 33 },
1560 .vback_porch = { 6, 21, 33 },
1561 .vsync_len = { 8, 8, 8 },
1562 .flags = DISPLAY_FLAGS_DE_HIGH,
1565 static const struct panel_desc koe_tx31d200vm0baa = {
1566 .timings = &koe_tx31d200vm0baa_timing,
1573 .bus_format = MEDIA_BUS_FMT_RGB666_1X7X3_SPWG,
1576 static const struct display_timing kyo_tcg121xglp_timing = {
1577 .pixelclock = { 52000000, 65000000, 71000000 },
1578 .hactive = { 1024, 1024, 1024 },
1579 .hfront_porch = { 2, 2, 2 },
1580 .hback_porch = { 2, 2, 2 },
1581 .hsync_len = { 86, 124, 244 },
1582 .vactive = { 768, 768, 768 },
1583 .vfront_porch = { 2, 2, 2 },
1584 .vback_porch = { 2, 2, 2 },
1585 .vsync_len = { 6, 34, 73 },
1586 .flags = DISPLAY_FLAGS_DE_HIGH,
1589 static const struct panel_desc kyo_tcg121xglp = {
1590 .timings = &kyo_tcg121xglp_timing,
1597 .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
1600 static const struct drm_display_mode lg_lb070wv8_mode = {
1603 .hsync_start = 800 + 88,
1604 .hsync_end = 800 + 88 + 80,
1605 .htotal = 800 + 88 + 80 + 88,
1607 .vsync_start = 480 + 10,
1608 .vsync_end = 480 + 10 + 25,
1609 .vtotal = 480 + 10 + 25 + 10,
1613 static const struct panel_desc lg_lb070wv8 = {
1614 .modes = &lg_lb070wv8_mode,
1621 .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
1624 static const struct drm_display_mode lg_lp079qx1_sp0v_mode = {
1627 .hsync_start = 1536 + 12,
1628 .hsync_end = 1536 + 12 + 16,
1629 .htotal = 1536 + 12 + 16 + 48,
1631 .vsync_start = 2048 + 8,
1632 .vsync_end = 2048 + 8 + 4,
1633 .vtotal = 2048 + 8 + 4 + 8,
1635 .flags = DRM_MODE_FLAG_NVSYNC | DRM_MODE_FLAG_NHSYNC,
1638 static const struct panel_desc lg_lp079qx1_sp0v = {
1639 .modes = &lg_lp079qx1_sp0v_mode,
1647 static const struct drm_display_mode lg_lp097qx1_spa1_mode = {
1650 .hsync_start = 2048 + 150,
1651 .hsync_end = 2048 + 150 + 5,
1652 .htotal = 2048 + 150 + 5 + 5,
1654 .vsync_start = 1536 + 3,
1655 .vsync_end = 1536 + 3 + 1,
1656 .vtotal = 1536 + 3 + 1 + 9,
1660 static const struct panel_desc lg_lp097qx1_spa1 = {
1661 .modes = &lg_lp097qx1_spa1_mode,
1669 static const struct drm_display_mode lg_lp120up1_mode = {
1672 .hsync_start = 1920 + 40,
1673 .hsync_end = 1920 + 40 + 40,
1674 .htotal = 1920 + 40 + 40+ 80,
1676 .vsync_start = 1280 + 4,
1677 .vsync_end = 1280 + 4 + 4,
1678 .vtotal = 1280 + 4 + 4 + 12,
1682 static const struct panel_desc lg_lp120up1 = {
1683 .modes = &lg_lp120up1_mode,
1692 static const struct drm_display_mode lg_lp129qe_mode = {
1695 .hsync_start = 2560 + 48,
1696 .hsync_end = 2560 + 48 + 32,
1697 .htotal = 2560 + 48 + 32 + 80,
1699 .vsync_start = 1700 + 3,
1700 .vsync_end = 1700 + 3 + 10,
1701 .vtotal = 1700 + 3 + 10 + 36,
1705 static const struct panel_desc lg_lp129qe = {
1706 .modes = &lg_lp129qe_mode,
1715 static const struct drm_display_mode mitsubishi_aa070mc01_mode = {
1718 .hsync_start = 800 + 0,
1719 .hsync_end = 800 + 1,
1720 .htotal = 800 + 0 + 1 + 160,
1722 .vsync_start = 480 + 0,
1723 .vsync_end = 480 + 48 + 1,
1724 .vtotal = 480 + 48 + 1 + 0,
1726 .flags = DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC,
1729 static const struct panel_desc mitsubishi_aa070mc01 = {
1730 .modes = &mitsubishi_aa070mc01_mode,
1743 .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
1744 .bus_flags = DRM_BUS_FLAG_DE_HIGH,
1747 static const struct display_timing nec_nl12880bc20_05_timing = {
1748 .pixelclock = { 67000000, 71000000, 75000000 },
1749 .hactive = { 1280, 1280, 1280 },
1750 .hfront_porch = { 2, 30, 30 },
1751 .hback_porch = { 6, 100, 100 },
1752 .hsync_len = { 2, 30, 30 },
1753 .vactive = { 800, 800, 800 },
1754 .vfront_porch = { 5, 5, 5 },
1755 .vback_porch = { 11, 11, 11 },
1756 .vsync_len = { 7, 7, 7 },
1759 static const struct panel_desc nec_nl12880bc20_05 = {
1760 .timings = &nec_nl12880bc20_05_timing,
1771 .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
1774 static const struct drm_display_mode nec_nl4827hc19_05b_mode = {
1777 .hsync_start = 480 + 2,
1778 .hsync_end = 480 + 2 + 41,
1779 .htotal = 480 + 2 + 41 + 2,
1781 .vsync_start = 272 + 2,
1782 .vsync_end = 272 + 2 + 4,
1783 .vtotal = 272 + 2 + 4 + 2,
1785 .flags = DRM_MODE_FLAG_NVSYNC | DRM_MODE_FLAG_NHSYNC,
1788 static const struct panel_desc nec_nl4827hc19_05b = {
1789 .modes = &nec_nl4827hc19_05b_mode,
1796 .bus_format = MEDIA_BUS_FMT_RGB888_1X24,
1797 .bus_flags = DRM_BUS_FLAG_PIXDATA_POSEDGE,
1800 static const struct drm_display_mode netron_dy_e231732_mode = {
1803 .hsync_start = 1024 + 160,
1804 .hsync_end = 1024 + 160 + 70,
1805 .htotal = 1024 + 160 + 70 + 90,
1807 .vsync_start = 600 + 127,
1808 .vsync_end = 600 + 127 + 20,
1809 .vtotal = 600 + 127 + 20 + 3,
1813 static const struct panel_desc netron_dy_e231732 = {
1814 .modes = &netron_dy_e231732_mode,
1820 .bus_format = MEDIA_BUS_FMT_RGB666_1X18,
1823 static const struct drm_display_mode newhaven_nhd_43_480272ef_atxl_mode = {
1826 .hsync_start = 480 + 2,
1827 .hsync_end = 480 + 2 + 41,
1828 .htotal = 480 + 2 + 41 + 2,
1830 .vsync_start = 272 + 2,
1831 .vsync_end = 272 + 2 + 10,
1832 .vtotal = 272 + 2 + 10 + 2,
1834 .flags = DRM_MODE_FLAG_NVSYNC | DRM_MODE_FLAG_NHSYNC,
1837 static const struct panel_desc newhaven_nhd_43_480272ef_atxl = {
1838 .modes = &newhaven_nhd_43_480272ef_atxl_mode,
1845 .bus_format = MEDIA_BUS_FMT_RGB888_1X24,
1846 .bus_flags = DRM_BUS_FLAG_DE_HIGH | DRM_BUS_FLAG_PIXDATA_POSEDGE |
1847 DRM_BUS_FLAG_SYNC_POSEDGE,
1850 static const struct display_timing nlt_nl192108ac18_02d_timing = {
1851 .pixelclock = { 130000000, 148350000, 163000000 },
1852 .hactive = { 1920, 1920, 1920 },
1853 .hfront_porch = { 80, 100, 100 },
1854 .hback_porch = { 100, 120, 120 },
1855 .hsync_len = { 50, 60, 60 },
1856 .vactive = { 1080, 1080, 1080 },
1857 .vfront_porch = { 12, 30, 30 },
1858 .vback_porch = { 4, 10, 10 },
1859 .vsync_len = { 4, 5, 5 },
1862 static const struct panel_desc nlt_nl192108ac18_02d = {
1863 .timings = &nlt_nl192108ac18_02d_timing,
1873 .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
1876 static const struct drm_display_mode nvd_9128_mode = {
1879 .hsync_start = 800 + 130,
1880 .hsync_end = 800 + 130 + 98,
1881 .htotal = 800 + 0 + 130 + 98,
1883 .vsync_start = 480 + 10,
1884 .vsync_end = 480 + 10 + 50,
1885 .vtotal = 480 + 0 + 10 + 50,
1888 static const struct panel_desc nvd_9128 = {
1889 .modes = &nvd_9128_mode,
1896 .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
1899 static const struct display_timing okaya_rs800480t_7x0gp_timing = {
1900 .pixelclock = { 30000000, 30000000, 40000000 },
1901 .hactive = { 800, 800, 800 },
1902 .hfront_porch = { 40, 40, 40 },
1903 .hback_porch = { 40, 40, 40 },
1904 .hsync_len = { 1, 48, 48 },
1905 .vactive = { 480, 480, 480 },
1906 .vfront_porch = { 13, 13, 13 },
1907 .vback_porch = { 29, 29, 29 },
1908 .vsync_len = { 3, 3, 3 },
1909 .flags = DISPLAY_FLAGS_DE_HIGH,
1912 static const struct panel_desc okaya_rs800480t_7x0gp = {
1913 .timings = &okaya_rs800480t_7x0gp_timing,
1926 .bus_format = MEDIA_BUS_FMT_RGB666_1X18,
1929 static const struct drm_display_mode olimex_lcd_olinuxino_43ts_mode = {
1932 .hsync_start = 480 + 5,
1933 .hsync_end = 480 + 5 + 30,
1934 .htotal = 480 + 5 + 30 + 10,
1936 .vsync_start = 272 + 8,
1937 .vsync_end = 272 + 8 + 5,
1938 .vtotal = 272 + 8 + 5 + 3,
1942 static const struct panel_desc olimex_lcd_olinuxino_43ts = {
1943 .modes = &olimex_lcd_olinuxino_43ts_mode,
1949 .bus_format = MEDIA_BUS_FMT_RGB888_1X24,
1953 * 800x480 CVT. The panel appears to be quite accepting, at least as far as
1954 * pixel clocks, but this is the timing that was being used in the Adafruit
1955 * installation instructions.
1957 static const struct drm_display_mode ontat_yx700wv03_mode = {
1968 .flags = DRM_MODE_FLAG_NVSYNC | DRM_MODE_FLAG_NHSYNC,
1973 * https://www.adafruit.com/images/product-files/2406/c3163.pdf
1975 static const struct panel_desc ontat_yx700wv03 = {
1976 .modes = &ontat_yx700wv03_mode,
1983 .bus_format = MEDIA_BUS_FMT_RGB666_1X18,
1986 static const struct drm_display_mode ortustech_com43h4m85ulc_mode = {
1989 .hsync_start = 480 + 10,
1990 .hsync_end = 480 + 10 + 10,
1991 .htotal = 480 + 10 + 10 + 15,
1993 .vsync_start = 800 + 3,
1994 .vsync_end = 800 + 3 + 3,
1995 .vtotal = 800 + 3 + 3 + 3,
1999 static const struct panel_desc ortustech_com43h4m85ulc = {
2000 .modes = &ortustech_com43h4m85ulc_mode,
2007 .bus_format = MEDIA_BUS_FMT_RGB888_1X24,
2008 .bus_flags = DRM_BUS_FLAG_DE_HIGH | DRM_BUS_FLAG_PIXDATA_POSEDGE,
2011 static const struct drm_display_mode qd43003c0_40_mode = {
2014 .hsync_start = 480 + 8,
2015 .hsync_end = 480 + 8 + 4,
2016 .htotal = 480 + 8 + 4 + 39,
2018 .vsync_start = 272 + 4,
2019 .vsync_end = 272 + 4 + 10,
2020 .vtotal = 272 + 4 + 10 + 2,
2024 static const struct panel_desc qd43003c0_40 = {
2025 .modes = &qd43003c0_40_mode,
2032 .bus_format = MEDIA_BUS_FMT_RGB888_1X24,
2035 static const struct display_timing rocktech_rk070er9427_timing = {
2036 .pixelclock = { 26400000, 33300000, 46800000 },
2037 .hactive = { 800, 800, 800 },
2038 .hfront_porch = { 16, 210, 354 },
2039 .hback_porch = { 46, 46, 46 },
2040 .hsync_len = { 1, 1, 1 },
2041 .vactive = { 480, 480, 480 },
2042 .vfront_porch = { 7, 22, 147 },
2043 .vback_porch = { 23, 23, 23 },
2044 .vsync_len = { 1, 1, 1 },
2045 .flags = DISPLAY_FLAGS_DE_HIGH,
2048 static const struct panel_desc rocktech_rk070er9427 = {
2049 .timings = &rocktech_rk070er9427_timing,
2062 .bus_format = MEDIA_BUS_FMT_RGB666_1X18,
2065 static const struct drm_display_mode samsung_lsn122dl01_c01_mode = {
2068 .hsync_start = 2560 + 48,
2069 .hsync_end = 2560 + 48 + 32,
2070 .htotal = 2560 + 48 + 32 + 80,
2072 .vsync_start = 1600 + 2,
2073 .vsync_end = 1600 + 2 + 5,
2074 .vtotal = 1600 + 2 + 5 + 57,
2078 static const struct panel_desc samsung_lsn122dl01_c01 = {
2079 .modes = &samsung_lsn122dl01_c01_mode,
2087 static const struct drm_display_mode samsung_ltn101nt05_mode = {
2090 .hsync_start = 1024 + 24,
2091 .hsync_end = 1024 + 24 + 136,
2092 .htotal = 1024 + 24 + 136 + 160,
2094 .vsync_start = 600 + 3,
2095 .vsync_end = 600 + 3 + 6,
2096 .vtotal = 600 + 3 + 6 + 61,
2100 static const struct panel_desc samsung_ltn101nt05 = {
2101 .modes = &samsung_ltn101nt05_mode,
2110 static const struct drm_display_mode samsung_ltn140at29_301_mode = {
2113 .hsync_start = 1366 + 64,
2114 .hsync_end = 1366 + 64 + 48,
2115 .htotal = 1366 + 64 + 48 + 128,
2117 .vsync_start = 768 + 2,
2118 .vsync_end = 768 + 2 + 5,
2119 .vtotal = 768 + 2 + 5 + 17,
2123 static const struct panel_desc samsung_ltn140at29_301 = {
2124 .modes = &samsung_ltn140at29_301_mode,
2133 static const struct drm_display_mode sharp_lq035q7db03_mode = {
2136 .hsync_start = 240 + 16,
2137 .hsync_end = 240 + 16 + 7,
2138 .htotal = 240 + 16 + 7 + 5,
2140 .vsync_start = 320 + 9,
2141 .vsync_end = 320 + 9 + 1,
2142 .vtotal = 320 + 9 + 1 + 7,
2146 static const struct panel_desc sharp_lq035q7db03 = {
2147 .modes = &sharp_lq035q7db03_mode,
2154 .bus_format = MEDIA_BUS_FMT_RGB666_1X18,
2157 static const struct display_timing sharp_lq101k1ly04_timing = {
2158 .pixelclock = { 60000000, 65000000, 80000000 },
2159 .hactive = { 1280, 1280, 1280 },
2160 .hfront_porch = { 20, 20, 20 },
2161 .hback_porch = { 20, 20, 20 },
2162 .hsync_len = { 10, 10, 10 },
2163 .vactive = { 800, 800, 800 },
2164 .vfront_porch = { 4, 4, 4 },
2165 .vback_porch = { 4, 4, 4 },
2166 .vsync_len = { 4, 4, 4 },
2167 .flags = DISPLAY_FLAGS_PIXDATA_POSEDGE,
2170 static const struct panel_desc sharp_lq101k1ly04 = {
2171 .timings = &sharp_lq101k1ly04_timing,
2178 .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_JEIDA,
2181 static const struct display_timing sharp_lq123p1jx31_timing = {
2182 .pixelclock = { 252750000, 252750000, 266604720 },
2183 .hactive = { 2400, 2400, 2400 },
2184 .hfront_porch = { 48, 48, 48 },
2185 .hback_porch = { 80, 80, 84 },
2186 .hsync_len = { 32, 32, 32 },
2187 .vactive = { 1600, 1600, 1600 },
2188 .vfront_porch = { 3, 3, 3 },
2189 .vback_porch = { 33, 33, 120 },
2190 .vsync_len = { 10, 10, 10 },
2191 .flags = DISPLAY_FLAGS_VSYNC_LOW | DISPLAY_FLAGS_HSYNC_LOW,
2194 static const struct panel_desc sharp_lq123p1jx31 = {
2195 .timings = &sharp_lq123p1jx31_timing,
2209 static const struct drm_display_mode sharp_lq150x1lg11_mode = {
2212 .hsync_start = 1024 + 168,
2213 .hsync_end = 1024 + 168 + 64,
2214 .htotal = 1024 + 168 + 64 + 88,
2216 .vsync_start = 768 + 37,
2217 .vsync_end = 768 + 37 + 2,
2218 .vtotal = 768 + 37 + 2 + 8,
2222 static const struct panel_desc sharp_lq150x1lg11 = {
2223 .modes = &sharp_lq150x1lg11_mode,
2230 .bus_format = MEDIA_BUS_FMT_RGB565_1X16,
2233 static const struct drm_display_mode shelly_sca07010_bfn_lnn_mode = {
2236 .hsync_start = 800 + 1,
2237 .hsync_end = 800 + 1 + 64,
2238 .htotal = 800 + 1 + 64 + 64,
2240 .vsync_start = 480 + 1,
2241 .vsync_end = 480 + 1 + 23,
2242 .vtotal = 480 + 1 + 23 + 22,
2246 static const struct panel_desc shelly_sca07010_bfn_lnn = {
2247 .modes = &shelly_sca07010_bfn_lnn_mode,
2253 .bus_format = MEDIA_BUS_FMT_RGB666_1X18,
2256 static const struct drm_display_mode starry_kr122ea0sra_mode = {
2259 .hsync_start = 1920 + 16,
2260 .hsync_end = 1920 + 16 + 16,
2261 .htotal = 1920 + 16 + 16 + 32,
2263 .vsync_start = 1200 + 15,
2264 .vsync_end = 1200 + 15 + 2,
2265 .vtotal = 1200 + 15 + 2 + 18,
2267 .flags = DRM_MODE_FLAG_NVSYNC | DRM_MODE_FLAG_NHSYNC,
2270 static const struct panel_desc starry_kr122ea0sra = {
2271 .modes = &starry_kr122ea0sra_mode,
2278 .prepare = 10 + 200,
2280 .unprepare = 10 + 500,
2284 static const struct display_timing tianma_tm070jdhg30_timing = {
2285 .pixelclock = { 62600000, 68200000, 78100000 },
2286 .hactive = { 1280, 1280, 1280 },
2287 .hfront_porch = { 15, 64, 159 },
2288 .hback_porch = { 5, 5, 5 },
2289 .hsync_len = { 1, 1, 256 },
2290 .vactive = { 800, 800, 800 },
2291 .vfront_porch = { 3, 40, 99 },
2292 .vback_porch = { 2, 2, 2 },
2293 .vsync_len = { 1, 1, 128 },
2294 .flags = DISPLAY_FLAGS_DE_HIGH,
2297 static const struct panel_desc tianma_tm070jdhg30 = {
2298 .timings = &tianma_tm070jdhg30_timing,
2305 .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
2308 static const struct display_timing tianma_tm070rvhg71_timing = {
2309 .pixelclock = { 27700000, 29200000, 39600000 },
2310 .hactive = { 800, 800, 800 },
2311 .hfront_porch = { 12, 40, 212 },
2312 .hback_porch = { 88, 88, 88 },
2313 .hsync_len = { 1, 1, 40 },
2314 .vactive = { 480, 480, 480 },
2315 .vfront_porch = { 1, 13, 88 },
2316 .vback_porch = { 32, 32, 32 },
2317 .vsync_len = { 1, 1, 3 },
2318 .flags = DISPLAY_FLAGS_DE_HIGH,
2321 static const struct panel_desc tianma_tm070rvhg71 = {
2322 .timings = &tianma_tm070rvhg71_timing,
2329 .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
2332 static const struct drm_display_mode toshiba_lt089ac29000_mode = {
2335 .hsync_start = 1280 + 192,
2336 .hsync_end = 1280 + 192 + 128,
2337 .htotal = 1280 + 192 + 128 + 64,
2339 .vsync_start = 768 + 20,
2340 .vsync_end = 768 + 20 + 7,
2341 .vtotal = 768 + 20 + 7 + 3,
2345 static const struct panel_desc toshiba_lt089ac29000 = {
2346 .modes = &toshiba_lt089ac29000_mode,
2352 .bus_format = MEDIA_BUS_FMT_RGB888_1X24,
2353 .bus_flags = DRM_BUS_FLAG_DE_HIGH | DRM_BUS_FLAG_PIXDATA_POSEDGE,
2356 static const struct drm_display_mode tpk_f07a_0102_mode = {
2359 .hsync_start = 800 + 40,
2360 .hsync_end = 800 + 40 + 128,
2361 .htotal = 800 + 40 + 128 + 88,
2363 .vsync_start = 480 + 10,
2364 .vsync_end = 480 + 10 + 2,
2365 .vtotal = 480 + 10 + 2 + 33,
2369 static const struct panel_desc tpk_f07a_0102 = {
2370 .modes = &tpk_f07a_0102_mode,
2376 .bus_flags = DRM_BUS_FLAG_PIXDATA_POSEDGE,
2379 static const struct drm_display_mode tpk_f10a_0102_mode = {
2382 .hsync_start = 1024 + 176,
2383 .hsync_end = 1024 + 176 + 5,
2384 .htotal = 1024 + 176 + 5 + 88,
2386 .vsync_start = 600 + 20,
2387 .vsync_end = 600 + 20 + 5,
2388 .vtotal = 600 + 20 + 5 + 25,
2392 static const struct panel_desc tpk_f10a_0102 = {
2393 .modes = &tpk_f10a_0102_mode,
2401 static const struct display_timing urt_umsh_8596md_timing = {
2402 .pixelclock = { 33260000, 33260000, 33260000 },
2403 .hactive = { 800, 800, 800 },
2404 .hfront_porch = { 41, 41, 41 },
2405 .hback_porch = { 216 - 128, 216 - 128, 216 - 128 },
2406 .hsync_len = { 71, 128, 128 },
2407 .vactive = { 480, 480, 480 },
2408 .vfront_porch = { 10, 10, 10 },
2409 .vback_porch = { 35 - 2, 35 - 2, 35 - 2 },
2410 .vsync_len = { 2, 2, 2 },
2411 .flags = DISPLAY_FLAGS_DE_HIGH | DISPLAY_FLAGS_PIXDATA_NEGEDGE |
2412 DISPLAY_FLAGS_HSYNC_LOW | DISPLAY_FLAGS_VSYNC_LOW,
2415 static const struct panel_desc urt_umsh_8596md_lvds = {
2416 .timings = &urt_umsh_8596md_timing,
2423 .bus_format = MEDIA_BUS_FMT_RGB666_1X7X3_SPWG,
2426 static const struct panel_desc urt_umsh_8596md_parallel = {
2427 .timings = &urt_umsh_8596md_timing,
2434 .bus_format = MEDIA_BUS_FMT_RGB666_1X18,
2437 static const struct drm_display_mode winstar_wf35ltiacd_mode = {
2440 .hsync_start = 320 + 20,
2441 .hsync_end = 320 + 20 + 30,
2442 .htotal = 320 + 20 + 30 + 38,
2444 .vsync_start = 240 + 4,
2445 .vsync_end = 240 + 4 + 3,
2446 .vtotal = 240 + 4 + 3 + 15,
2448 .flags = DRM_MODE_FLAG_NVSYNC | DRM_MODE_FLAG_NHSYNC,
2451 static const struct panel_desc winstar_wf35ltiacd = {
2452 .modes = &winstar_wf35ltiacd_mode,
2459 .bus_format = MEDIA_BUS_FMT_RGB888_1X24,
2462 static const struct drm_display_mode arm_rtsm_mode[] = {
2466 .hsync_start = 1024 + 24,
2467 .hsync_end = 1024 + 24 + 136,
2468 .htotal = 1024 + 24 + 136 + 160,
2470 .vsync_start = 768 + 3,
2471 .vsync_end = 768 + 3 + 6,
2472 .vtotal = 768 + 3 + 6 + 29,
2474 .flags = DRM_MODE_FLAG_NVSYNC | DRM_MODE_FLAG_NHSYNC,
2478 static const struct panel_desc arm_rtsm = {
2479 .modes = arm_rtsm_mode,
2486 .bus_format = MEDIA_BUS_FMT_RGB888_1X24,
2489 static const struct of_device_id platform_of_match[] = {
2491 .compatible = "ampire,am-480272h3tmqw-t01h",
2492 .data = &ire_am_480272h3tmqw_t01h,
2494 .compatible = "ampire,am800480r3tmqwa1h",
2495 .data = &ire_am800480r3tmqwa1h,
2497 .compatible = "arm,rtsm-display",
2500 .compatible = "auo,b101aw03",
2501 .data = &auo_b101aw03,
2503 .compatible = "auo,b101ean01",
2504 .data = &auo_b101ean01,
2506 .compatible = "auo,b101xtn01",
2507 .data = &auo_b101xtn01,
2509 .compatible = "auo,b116xw03",
2510 .data = &auo_b116xw03,
2512 .compatible = "auo,b133htn01",
2513 .data = &auo_b133htn01,
2515 .compatible = "auo,b133xtn01",
2516 .data = &auo_b133xtn01,
2518 .compatible = "auo,g070vvn01",
2519 .data = &auo_g070vvn01,
2521 .compatible = "auo,g101evn010",
2522 .data = &auo_g101evn010,
2524 .compatible = "auo,g104sn02",
2525 .data = &auo_g104sn02,
2527 .compatible = "auo,g133han01",
2528 .data = &auo_g133han01,
2530 .compatible = "auo,g185han01",
2531 .data = &auo_g185han01,
2533 .compatible = "auo,p320hvn03",
2534 .data = &auo_p320hvn03,
2536 .compatible = "auo,t215hvn01",
2537 .data = &auo_t215hvn01,
2539 .compatible = "avic,tm070ddh03",
2540 .data = &avic_tm070ddh03,
2542 .compatible = "bananapi,s070wv20-ct16",
2543 .data = &bananapi_s070wv20_ct16,
2545 .compatible = "boe,hv070wsa-100",
2546 .data = &boe_hv070wsa
2548 .compatible = "boe,nv101wxmn51",
2549 .data = &boe_nv101wxmn51,
2551 .compatible = "cdtech,s043wq26h-ct7",
2552 .data = &cdtech_s043wq26h_ct7,
2554 .compatible = "cdtech,s070wv95-ct16",
2555 .data = &cdtech_s070wv95_ct16,
2557 .compatible = "chunghwa,claa070wp03xg",
2558 .data = &chunghwa_claa070wp03xg,
2560 .compatible = "chunghwa,claa101wa01a",
2561 .data = &chunghwa_claa101wa01a
2563 .compatible = "chunghwa,claa101wb01",
2564 .data = &chunghwa_claa101wb01
2566 .compatible = "dataimage,scf0700c48ggu18",
2567 .data = &dataimage_scf0700c48ggu18,
2569 .compatible = "dlc,dlc0700yzg-1",
2570 .data = &dlc_dlc0700yzg_1,
2572 .compatible = "dlc,dlc1010gig",
2573 .data = &dlc_dlc1010gig,
2575 .compatible = "edt,et057090dhu",
2576 .data = &edt_et057090dhu,
2578 .compatible = "edt,et070080dh6",
2579 .data = &edt_etm0700g0dh6,
2581 .compatible = "edt,etm0700g0dh6",
2582 .data = &edt_etm0700g0dh6,
2584 .compatible = "edt,etm0700g0bdh6",
2585 .data = &edt_etm0700g0bdh6,
2587 .compatible = "edt,etm0700g0edh6",
2588 .data = &edt_etm0700g0bdh6,
2590 .compatible = "foxlink,fl500wvr00-a0t",
2591 .data = &foxlink_fl500wvr00_a0t,
2593 .compatible = "giantplus,gpg482739qs5",
2594 .data = &giantplus_gpg482739qs5
2596 .compatible = "hannstar,hsd070pww1",
2597 .data = &hannstar_hsd070pww1,
2599 .compatible = "hannstar,hsd100pxn1",
2600 .data = &hannstar_hsd100pxn1,
2602 .compatible = "hit,tx23d38vm0caa",
2603 .data = &hitachi_tx23d38vm0caa
2605 .compatible = "innolux,at043tn24",
2606 .data = &innolux_at043tn24,
2608 .compatible = "innolux,at070tn92",
2609 .data = &innolux_at070tn92,
2611 .compatible = "innolux,g070y2-l01",
2612 .data = &innolux_g070y2_l01,
2614 .compatible = "innolux,g101ice-l01",
2615 .data = &innolux_g101ice_l01
2617 .compatible = "innolux,g121i1-l01",
2618 .data = &innolux_g121i1_l01
2620 .compatible = "innolux,g121x1-l03",
2621 .data = &innolux_g121x1_l03,
2623 .compatible = "innolux,n116bge",
2624 .data = &innolux_n116bge,
2626 .compatible = "innolux,n156bge-l21",
2627 .data = &innolux_n156bge_l21,
2629 .compatible = "innolux,p120zdg-bf1",
2630 .data = &innolux_p120zdg_bf1,
2632 .compatible = "innolux,zj070na-01p",
2633 .data = &innolux_zj070na_01p,
2635 .compatible = "koe,tx31d200vm0baa",
2636 .data = &koe_tx31d200vm0baa,
2638 .compatible = "kyo,tcg121xglp",
2639 .data = &kyo_tcg121xglp,
2641 .compatible = "lg,lb070wv8",
2642 .data = &lg_lb070wv8,
2644 .compatible = "lg,lp079qx1-sp0v",
2645 .data = &lg_lp079qx1_sp0v,
2647 .compatible = "lg,lp097qx1-spa1",
2648 .data = &lg_lp097qx1_spa1,
2650 .compatible = "lg,lp120up1",
2651 .data = &lg_lp120up1,
2653 .compatible = "lg,lp129qe",
2654 .data = &lg_lp129qe,
2656 .compatible = "mitsubishi,aa070mc01-ca1",
2657 .data = &mitsubishi_aa070mc01,
2659 .compatible = "nec,nl12880bc20-05",
2660 .data = &nec_nl12880bc20_05,
2662 .compatible = "nec,nl4827hc19-05b",
2663 .data = &nec_nl4827hc19_05b,
2665 .compatible = "netron-dy,e231732",
2666 .data = &netron_dy_e231732,
2668 .compatible = "newhaven,nhd-4.3-480272ef-atxl",
2669 .data = &newhaven_nhd_43_480272ef_atxl,
2671 .compatible = "nlt,nl192108ac18-02d",
2672 .data = &nlt_nl192108ac18_02d,
2674 .compatible = "nvd,9128",
2677 .compatible = "okaya,rs800480t-7x0gp",
2678 .data = &okaya_rs800480t_7x0gp,
2680 .compatible = "olimex,lcd-olinuxino-43-ts",
2681 .data = &olimex_lcd_olinuxino_43ts,
2683 .compatible = "ontat,yx700wv03",
2684 .data = &ontat_yx700wv03,
2686 .compatible = "ortustech,com43h4m85ulc",
2687 .data = &ortustech_com43h4m85ulc,
2689 .compatible = "qiaodian,qd43003c0-40",
2690 .data = &qd43003c0_40,
2692 .compatible = "rocktech,rk070er9427",
2693 .data = &rocktech_rk070er9427,
2695 .compatible = "samsung,lsn122dl01-c01",
2696 .data = &samsung_lsn122dl01_c01,
2698 .compatible = "samsung,ltn101nt05",
2699 .data = &samsung_ltn101nt05,
2701 .compatible = "samsung,ltn140at29-301",
2702 .data = &samsung_ltn140at29_301,
2704 .compatible = "sharp,lq035q7db03",
2705 .data = &sharp_lq035q7db03,
2707 .compatible = "sharp,lq101k1ly04",
2708 .data = &sharp_lq101k1ly04,
2710 .compatible = "sharp,lq123p1jx31",
2711 .data = &sharp_lq123p1jx31,
2713 .compatible = "sharp,lq150x1lg11",
2714 .data = &sharp_lq150x1lg11,
2716 .compatible = "shelly,sca07010-bfn-lnn",
2717 .data = &shelly_sca07010_bfn_lnn,
2719 .compatible = "starry,kr122ea0sra",
2720 .data = &starry_kr122ea0sra,
2722 .compatible = "tianma,tm070jdhg30",
2723 .data = &tianma_tm070jdhg30,
2725 .compatible = "tianma,tm070rvhg71",
2726 .data = &tianma_tm070rvhg71,
2728 .compatible = "toshiba,lt089ac29000",
2729 .data = &toshiba_lt089ac29000,
2731 .compatible = "tpk,f07a-0102",
2732 .data = &tpk_f07a_0102,
2734 .compatible = "tpk,f10a-0102",
2735 .data = &tpk_f10a_0102,
2737 .compatible = "urt,umsh-8596md-t",
2738 .data = &urt_umsh_8596md_parallel,
2740 .compatible = "urt,umsh-8596md-1t",
2741 .data = &urt_umsh_8596md_parallel,
2743 .compatible = "urt,umsh-8596md-7t",
2744 .data = &urt_umsh_8596md_parallel,
2746 .compatible = "urt,umsh-8596md-11t",
2747 .data = &urt_umsh_8596md_lvds,
2749 .compatible = "urt,umsh-8596md-19t",
2750 .data = &urt_umsh_8596md_lvds,
2752 .compatible = "urt,umsh-8596md-20t",
2753 .data = &urt_umsh_8596md_parallel,
2755 .compatible = "winstar,wf35ltiacd",
2756 .data = &winstar_wf35ltiacd,
2761 MODULE_DEVICE_TABLE(of, platform_of_match);
2763 static int panel_simple_platform_probe(struct platform_device *pdev)
2765 const struct of_device_id *id;
2767 id = of_match_node(platform_of_match, pdev->dev.of_node);
2771 return panel_simple_probe(&pdev->dev, id->data);
2774 static int panel_simple_platform_remove(struct platform_device *pdev)
2776 return panel_simple_remove(&pdev->dev);
2779 static void panel_simple_platform_shutdown(struct platform_device *pdev)
2781 panel_simple_shutdown(&pdev->dev);
2784 static struct platform_driver panel_simple_platform_driver = {
2786 .name = "panel-simple",
2787 .of_match_table = platform_of_match,
2789 .probe = panel_simple_platform_probe,
2790 .remove = panel_simple_platform_remove,
2791 .shutdown = panel_simple_platform_shutdown,
2794 struct panel_desc_dsi {
2795 struct panel_desc desc;
2797 unsigned long flags;
2798 enum mipi_dsi_pixel_format format;
2802 static const struct drm_display_mode auo_b080uan01_mode = {
2805 .hsync_start = 1200 + 62,
2806 .hsync_end = 1200 + 62 + 4,
2807 .htotal = 1200 + 62 + 4 + 62,
2809 .vsync_start = 1920 + 9,
2810 .vsync_end = 1920 + 9 + 2,
2811 .vtotal = 1920 + 9 + 2 + 8,
2815 static const struct panel_desc_dsi auo_b080uan01 = {
2817 .modes = &auo_b080uan01_mode,
2825 .flags = MIPI_DSI_MODE_VIDEO | MIPI_DSI_CLOCK_NON_CONTINUOUS,
2826 .format = MIPI_DSI_FMT_RGB888,
2830 static const struct drm_display_mode boe_tv080wum_nl0_mode = {
2833 .hsync_start = 1200 + 120,
2834 .hsync_end = 1200 + 120 + 20,
2835 .htotal = 1200 + 120 + 20 + 21,
2837 .vsync_start = 1920 + 21,
2838 .vsync_end = 1920 + 21 + 3,
2839 .vtotal = 1920 + 21 + 3 + 18,
2841 .flags = DRM_MODE_FLAG_NVSYNC | DRM_MODE_FLAG_NHSYNC,
2844 static const struct panel_desc_dsi boe_tv080wum_nl0 = {
2846 .modes = &boe_tv080wum_nl0_mode,
2853 .flags = MIPI_DSI_MODE_VIDEO |
2854 MIPI_DSI_MODE_VIDEO_BURST |
2855 MIPI_DSI_MODE_VIDEO_SYNC_PULSE,
2856 .format = MIPI_DSI_FMT_RGB888,
2860 static const struct drm_display_mode lg_ld070wx3_sl01_mode = {
2863 .hsync_start = 800 + 32,
2864 .hsync_end = 800 + 32 + 1,
2865 .htotal = 800 + 32 + 1 + 57,
2867 .vsync_start = 1280 + 28,
2868 .vsync_end = 1280 + 28 + 1,
2869 .vtotal = 1280 + 28 + 1 + 14,
2873 static const struct panel_desc_dsi lg_ld070wx3_sl01 = {
2875 .modes = &lg_ld070wx3_sl01_mode,
2883 .flags = MIPI_DSI_MODE_VIDEO | MIPI_DSI_CLOCK_NON_CONTINUOUS,
2884 .format = MIPI_DSI_FMT_RGB888,
2888 static const struct drm_display_mode lg_lh500wx1_sd03_mode = {
2891 .hsync_start = 720 + 12,
2892 .hsync_end = 720 + 12 + 4,
2893 .htotal = 720 + 12 + 4 + 112,
2895 .vsync_start = 1280 + 8,
2896 .vsync_end = 1280 + 8 + 4,
2897 .vtotal = 1280 + 8 + 4 + 12,
2901 static const struct panel_desc_dsi lg_lh500wx1_sd03 = {
2903 .modes = &lg_lh500wx1_sd03_mode,
2911 .flags = MIPI_DSI_MODE_VIDEO,
2912 .format = MIPI_DSI_FMT_RGB888,
2916 static const struct drm_display_mode panasonic_vvx10f004b00_mode = {
2919 .hsync_start = 1920 + 154,
2920 .hsync_end = 1920 + 154 + 16,
2921 .htotal = 1920 + 154 + 16 + 32,
2923 .vsync_start = 1200 + 17,
2924 .vsync_end = 1200 + 17 + 2,
2925 .vtotal = 1200 + 17 + 2 + 16,
2929 static const struct panel_desc_dsi panasonic_vvx10f004b00 = {
2931 .modes = &panasonic_vvx10f004b00_mode,
2939 .flags = MIPI_DSI_MODE_VIDEO | MIPI_DSI_MODE_VIDEO_SYNC_PULSE |
2940 MIPI_DSI_CLOCK_NON_CONTINUOUS,
2941 .format = MIPI_DSI_FMT_RGB888,
2945 static const struct of_device_id dsi_of_match[] = {
2947 .compatible = "auo,b080uan01",
2948 .data = &auo_b080uan01
2950 .compatible = "boe,tv080wum-nl0",
2951 .data = &boe_tv080wum_nl0
2953 .compatible = "lg,ld070wx3-sl01",
2954 .data = &lg_ld070wx3_sl01
2956 .compatible = "lg,lh500wx1-sd03",
2957 .data = &lg_lh500wx1_sd03
2959 .compatible = "panasonic,vvx10f004b00",
2960 .data = &panasonic_vvx10f004b00
2965 MODULE_DEVICE_TABLE(of, dsi_of_match);
2967 static int panel_simple_dsi_probe(struct mipi_dsi_device *dsi)
2969 const struct panel_desc_dsi *desc;
2970 const struct of_device_id *id;
2973 id = of_match_node(dsi_of_match, dsi->dev.of_node);
2979 err = panel_simple_probe(&dsi->dev, &desc->desc);
2983 dsi->mode_flags = desc->flags;
2984 dsi->format = desc->format;
2985 dsi->lanes = desc->lanes;
2987 return mipi_dsi_attach(dsi);
2990 static int panel_simple_dsi_remove(struct mipi_dsi_device *dsi)
2994 err = mipi_dsi_detach(dsi);
2996 dev_err(&dsi->dev, "failed to detach from DSI host: %d\n", err);
2998 return panel_simple_remove(&dsi->dev);
3001 static void panel_simple_dsi_shutdown(struct mipi_dsi_device *dsi)
3003 panel_simple_shutdown(&dsi->dev);
3006 static struct mipi_dsi_driver panel_simple_dsi_driver = {
3008 .name = "panel-simple-dsi",
3009 .of_match_table = dsi_of_match,
3011 .probe = panel_simple_dsi_probe,
3012 .remove = panel_simple_dsi_remove,
3013 .shutdown = panel_simple_dsi_shutdown,
3016 static int __init panel_simple_init(void)
3020 err = platform_driver_register(&panel_simple_platform_driver);
3024 if (IS_ENABLED(CONFIG_DRM_MIPI_DSI)) {
3025 err = mipi_dsi_driver_register(&panel_simple_dsi_driver);
3032 module_init(panel_simple_init);
3034 static void __exit panel_simple_exit(void)
3036 if (IS_ENABLED(CONFIG_DRM_MIPI_DSI))
3037 mipi_dsi_driver_unregister(&panel_simple_dsi_driver);
3039 platform_driver_unregister(&panel_simple_platform_driver);
3041 module_exit(panel_simple_exit);
3044 MODULE_DESCRIPTION("DRM Driver for Simple Panels");
3045 MODULE_LICENSE("GPL and additional rights");