]> git.karo-electronics.de Git - karo-tx-linux.git/blob - drivers/gpu/drm/panel/panel-simple.c
f57b463b06e9045bd5cbcd99c047abf7d7d834bd
[karo-tx-linux.git] / drivers / gpu / drm / panel / panel-simple.c
1 /*
2  * Copyright (C) 2013, NVIDIA Corporation.  All rights reserved.
3  *
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:
10  *
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.
14  *
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.
22  */
23
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>
30
31 #include <drm/drmP.h>
32 #include <drm/drm_crtc.h>
33 #include <drm/drm_mipi_dsi.h>
34 #include <drm/drm_panel.h>
35
36 #include <video/display_timing.h>
37 #include <video/videomode.h>
38
39 struct panel_desc {
40         const struct drm_display_mode *modes;
41         unsigned int num_modes;
42         const struct display_timing *timings;
43         unsigned int num_timings;
44
45         unsigned int bpc;
46
47         /**
48          * @width: width (in millimeters) of the panel's active display area
49          * @height: height (in millimeters) of the panel's active display area
50          */
51         struct {
52                 unsigned int width;
53                 unsigned int height;
54         } size;
55
56         /**
57          * @prepare: the time (in milliseconds) that it takes for the panel to
58          *           become ready and start receiving video data
59          * @enable: the time (in milliseconds) that it takes for the panel to
60          *          display the first valid frame after starting to receive
61          *          video data
62          * @disable: the time (in milliseconds) that it takes for the panel to
63          *           turn the display off (no content is visible)
64          * @unprepare: the time (in milliseconds) that it takes for the panel
65          *             to power itself down completely
66          */
67         struct {
68                 unsigned int prepare;
69                 unsigned int enable;
70                 unsigned int disable;
71                 unsigned int unprepare;
72         } delay;
73
74         u32 bus_format;
75         u32 bus_flags;
76 };
77
78 struct panel_simple {
79         struct drm_panel base;
80         bool prepared;
81         bool enabled;
82
83         const struct panel_desc *desc;
84
85         struct backlight_device *backlight;
86         struct regulator *supply;
87         struct i2c_adapter *ddc;
88
89         struct gpio_desc *enable_gpio;
90
91         u32 bus_fmt_override;
92         u32 quirks;
93 };
94
95 enum {
96         PANEL_QUIRK_PIXDATA_NEGEDGE = BIT(0),
97         PANEL_QUIRK_PIXDATA_POSEDGE = BIT(1),
98 };
99
100 #define SP_DISPLAY_MODE(freq, ha, hfp, hs, hbp, va, vfp, vs, vbp, vr, flgs) { \
101         .clock = freq,                                                  \
102         .hdisplay = ha,                                                 \
103         .hsync_start = (ha) + (hfp),                                    \
104         .hsync_end = (ha) + (hfp) + (hs),                               \
105         .htotal = (ha) + (hfp) + (hs) + (hbp),                          \
106         .vdisplay = (va),                                               \
107         .vsync_start = (va) + (vfp),                                    \
108         .vsync_end = (va) + (vfp) + (vs),                               \
109         .vtotal = (va) + (vfp) + (vs) + (vbp),                          \
110         .vrefresh = vr,                                                 \
111         .flags = flgs,                                                  \
112 }
113
114 static inline struct panel_simple *to_panel_simple(struct drm_panel *panel)
115 {
116         return container_of(panel, struct panel_simple, base);
117 }
118
119 static inline void panel_simple_apply_quirks(struct panel_simple *panel,
120                                              struct drm_display_info *info)
121 {
122         if (panel->quirks & PANEL_QUIRK_PIXDATA_NEGEDGE)
123                 info->bus_flags |= DRM_BUS_FLAG_PIXDATA_NEGEDGE;
124         if (panel->quirks & PANEL_QUIRK_PIXDATA_POSEDGE)
125                 info->bus_flags |= DRM_BUS_FLAG_PIXDATA_POSEDGE;
126 }
127
128 static int panel_simple_get_fixed_modes(struct panel_simple *panel)
129 {
130         struct drm_connector *connector = panel->base.connector;
131         struct drm_device *drm = panel->base.drm;
132         struct drm_display_mode *mode;
133         unsigned int i, num = 0;
134
135         if (!panel->desc)
136                 return 0;
137
138         for (i = 0; i < panel->desc->num_timings; i++) {
139                 const struct display_timing *dt = &panel->desc->timings[i];
140                 struct videomode vm;
141
142                 videomode_from_timing(dt, &vm);
143                 mode = drm_mode_create(drm);
144                 if (!mode) {
145                         dev_err(drm->dev, "failed to add mode %ux%u\n",
146                                 dt->hactive.typ, dt->vactive.typ);
147                         continue;
148                 }
149
150                 drm_display_mode_from_videomode(&vm, mode);
151
152                 mode->type |= DRM_MODE_TYPE_DRIVER;
153
154                 if (panel->desc->num_timings == 1)
155                         mode->type |= DRM_MODE_TYPE_PREFERRED;
156
157                 drm_mode_probed_add(connector, mode);
158                 num++;
159         }
160
161         for (i = 0; i < panel->desc->num_modes; i++) {
162                 const struct drm_display_mode *m = &panel->desc->modes[i];
163
164                 mode = drm_mode_duplicate(drm, m);
165                 if (!mode) {
166                         dev_err(drm->dev, "failed to add mode %ux%u@%u\n",
167                                 m->hdisplay, m->vdisplay, m->vrefresh);
168                         continue;
169                 }
170
171                 mode->type |= DRM_MODE_TYPE_DRIVER;
172
173                 if (panel->desc->num_modes == 1)
174                         mode->type |= DRM_MODE_TYPE_PREFERRED;
175
176                 drm_mode_set_name(mode);
177
178                 drm_mode_probed_add(connector, mode);
179                 num++;
180         }
181
182         connector->display_info.bpc = panel->desc->bpc;
183         connector->display_info.width_mm = panel->desc->size.width;
184         connector->display_info.height_mm = panel->desc->size.height;
185
186         if (panel->bus_fmt_override)
187                 drm_display_info_set_bus_formats(&connector->display_info,
188                                                  &panel->bus_fmt_override, 1);
189         else if (panel->desc->bus_format)
190                 drm_display_info_set_bus_formats(&connector->display_info,
191                                                  &panel->desc->bus_format, 1);
192         connector->display_info.bus_flags = panel->desc->bus_flags;
193         if (panel->quirks)
194                 panel_simple_apply_quirks(panel, &connector->display_info);
195
196         return num;
197 }
198
199 static int panel_simple_disable(struct drm_panel *panel)
200 {
201         struct panel_simple *p = to_panel_simple(panel);
202
203         if (!p->enabled)
204                 return 0;
205
206         if (p->backlight) {
207                 p->backlight->props.power = FB_BLANK_POWERDOWN;
208                 p->backlight->props.state |= BL_CORE_FBBLANK;
209                 backlight_update_status(p->backlight);
210         }
211
212         if (p->desc->delay.disable)
213                 msleep(p->desc->delay.disable);
214
215         p->enabled = false;
216
217         return 0;
218 }
219
220 static int panel_simple_unprepare(struct drm_panel *panel)
221 {
222         struct panel_simple *p = to_panel_simple(panel);
223
224         if (!p->prepared)
225                 return 0;
226
227         if (p->enable_gpio)
228                 gpiod_set_value_cansleep(p->enable_gpio, 0);
229
230         regulator_disable(p->supply);
231
232         if (p->desc->delay.unprepare)
233                 msleep(p->desc->delay.unprepare);
234
235         p->prepared = false;
236
237         return 0;
238 }
239
240 static int panel_simple_prepare(struct drm_panel *panel)
241 {
242         struct panel_simple *p = to_panel_simple(panel);
243         int err;
244
245         if (p->prepared)
246                 return 0;
247
248         err = regulator_enable(p->supply);
249         if (err < 0) {
250                 dev_err(panel->dev, "failed to enable supply: %d\n", err);
251                 return err;
252         }
253
254         if (p->enable_gpio)
255                 gpiod_set_value_cansleep(p->enable_gpio, 1);
256
257         if (p->desc->delay.prepare)
258                 msleep(p->desc->delay.prepare);
259
260         p->prepared = true;
261
262         return 0;
263 }
264
265 static int panel_simple_enable(struct drm_panel *panel)
266 {
267         struct panel_simple *p = to_panel_simple(panel);
268
269         if (p->enabled)
270                 return 0;
271
272         if (p->desc->delay.enable)
273                 msleep(p->desc->delay.enable);
274
275         if (p->backlight) {
276                 p->backlight->props.state &= ~BL_CORE_FBBLANK;
277                 p->backlight->props.power = FB_BLANK_UNBLANK;
278                 backlight_update_status(p->backlight);
279         }
280
281         p->enabled = true;
282
283         return 0;
284 }
285
286 static int panel_simple_get_modes(struct drm_panel *panel)
287 {
288         struct panel_simple *p = to_panel_simple(panel);
289         int num = 0;
290
291         /* probe EDID if a DDC bus is available */
292         if (p->ddc) {
293                 struct edid *edid = drm_get_edid(panel->connector, p->ddc);
294                 drm_mode_connector_update_edid_property(panel->connector, edid);
295                 if (edid) {
296                         num += drm_add_edid_modes(panel->connector, edid);
297                         kfree(edid);
298                 }
299         }
300
301         /* add hard-coded panel modes */
302         num += panel_simple_get_fixed_modes(p);
303
304         return num;
305 }
306
307 static int panel_simple_get_timings(struct drm_panel *panel,
308                                     unsigned int num_timings,
309                                     struct display_timing *timings)
310 {
311         struct panel_simple *p = to_panel_simple(panel);
312         unsigned int i;
313
314         if (p->desc->num_timings < num_timings)
315                 num_timings = p->desc->num_timings;
316
317         if (timings)
318                 for (i = 0; i < num_timings; i++)
319                         timings[i] = p->desc->timings[i];
320
321         return p->desc->num_timings;
322 }
323
324 static inline int panel_simple_check_quirks(struct device *dev,
325                                             struct panel_simple *p)
326 {
327         const char *bus_fmt;
328         u32 clkpol;
329
330         if (of_property_read_string(dev->of_node, "bus-format-override",
331                                     &bus_fmt) == 0) {
332                 if (strcmp(bus_fmt, "rgb24") == 0)
333                         p->bus_fmt_override = MEDIA_BUS_FMT_RGB888_1X24;
334                 else if (strcmp(bus_fmt, "rgb666") == 0)
335                         p->bus_fmt_override = MEDIA_BUS_FMT_RGB666_1X18;
336                 else if (strcmp(bus_fmt, "rgb565") == 0)
337                         p->bus_fmt_override = MEDIA_BUS_FMT_RGB565_1X16;
338                 else if (strcmp(bus_fmt, "spwg-18") == 0)
339                         p->bus_fmt_override = MEDIA_BUS_FMT_RGB666_1X7X3_SPWG;
340                 else if (strcmp(bus_fmt, "spwg-24") == 0)
341                         p->bus_fmt_override = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG;
342                 else if (strcmp(bus_fmt, "jeida-24") == 0)
343                         p->bus_fmt_override = MEDIA_BUS_FMT_RGB888_1X7X4_JEIDA;
344                 else
345                         dev_err(dev,
346                                 "Unsupported bus-format-override value: '%s'\n",
347                                 bus_fmt);
348                 return p->bus_fmt_override ? 0 : -EINVAL;
349         }
350
351         if (of_property_read_u32(dev->of_node, "pixelclk-active",
352                                  &clkpol) == 0) {
353                 if (clkpol & ~1) {
354                         dev_err(dev,
355                                 "Invalid value for pixelclk-active: '%u' (should be <0> or <1>)\n",
356                                 clkpol);
357                         return -EINVAL;
358                 }
359                 p->quirks |= clkpol ? PANEL_QUIRK_PIXDATA_POSEDGE :
360                         PANEL_QUIRK_PIXDATA_NEGEDGE;
361         }
362         return 0;
363 }
364
365 static const struct drm_panel_funcs panel_simple_funcs = {
366         .disable = panel_simple_disable,
367         .unprepare = panel_simple_unprepare,
368         .prepare = panel_simple_prepare,
369         .enable = panel_simple_enable,
370         .get_modes = panel_simple_get_modes,
371         .get_timings = panel_simple_get_timings,
372 };
373
374 static int panel_simple_probe(struct device *dev, const struct panel_desc *desc)
375 {
376         struct device_node *backlight, *ddc;
377         struct panel_simple *panel;
378         int err;
379
380         panel = devm_kzalloc(dev, sizeof(*panel), GFP_KERNEL);
381         if (!panel)
382                 return -ENOMEM;
383
384         panel->enabled = false;
385         panel->prepared = false;
386         panel->desc = desc;
387
388         panel->supply = devm_regulator_get(dev, "power");
389         if (IS_ERR(panel->supply))
390                 return PTR_ERR(panel->supply);
391
392         panel->enable_gpio = devm_gpiod_get_optional(dev, "enable",
393                                                      GPIOD_OUT_LOW);
394         if (IS_ERR(panel->enable_gpio)) {
395                 err = PTR_ERR(panel->enable_gpio);
396                 dev_err(dev, "failed to request GPIO: %d\n", err);
397                 return err;
398         }
399
400         backlight = of_parse_phandle(dev->of_node, "backlight", 0);
401         if (backlight) {
402                 panel->backlight = of_find_backlight_by_node(backlight);
403                 of_node_put(backlight);
404
405                 if (!panel->backlight)
406                         return -EPROBE_DEFER;
407         }
408
409         ddc = of_parse_phandle(dev->of_node, "ddc-i2c-bus", 0);
410         if (ddc) {
411                 panel->ddc = of_find_i2c_adapter_by_node(ddc);
412                 of_node_put(ddc);
413
414                 if (!panel->ddc) {
415                         err = -EPROBE_DEFER;
416                         goto free_backlight;
417                 }
418         }
419
420         err = panel_simple_check_quirks(dev, panel);
421         if (err)
422                 goto free_ddc;
423
424         drm_panel_init(&panel->base);
425         panel->base.dev = dev;
426         panel->base.funcs = &panel_simple_funcs;
427
428         err = drm_panel_add(&panel->base);
429         if (err < 0)
430                 goto free_ddc;
431
432         dev_set_drvdata(dev, panel);
433
434         return 0;
435
436 free_ddc:
437         if (panel->ddc)
438                 put_device(&panel->ddc->dev);
439 free_backlight:
440         if (panel->backlight)
441                 put_device(&panel->backlight->dev);
442
443         return err;
444 }
445
446 static int panel_simple_remove(struct device *dev)
447 {
448         struct panel_simple *panel = dev_get_drvdata(dev);
449
450         drm_panel_detach(&panel->base);
451         drm_panel_remove(&panel->base);
452
453         panel_simple_disable(&panel->base);
454
455         if (panel->ddc)
456                 put_device(&panel->ddc->dev);
457
458         if (panel->backlight)
459                 put_device(&panel->backlight->dev);
460
461         return 0;
462 }
463
464 static void panel_simple_shutdown(struct device *dev)
465 {
466         struct panel_simple *panel = dev_get_drvdata(dev);
467
468         panel_simple_disable(&panel->base);
469 }
470
471 static const struct drm_display_mode ampire_am_480272h3tmqw_t01h_mode =
472         SP_DISPLAY_MODE(9000, 480, 2, 41, 2, 272, 2, 10, 2, 60,
473                         DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC);
474
475 static const struct panel_desc ampire_am_480272h3tmqw_t01h = {
476         .modes = &ampire_am_480272h3tmqw_t01h_mode,
477         .num_modes = 1,
478         .bpc = 8,
479         .size = {
480                 .width = 105,
481                 .height = 67,
482         },
483         .bus_format = MEDIA_BUS_FMT_RGB888_1X24,
484 };
485
486 static const struct drm_display_mode ampire_am800480r3tmqwa1h_mode =
487         SP_DISPLAY_MODE(33333, 800, 0, 255, 0, 480, 2, 45, 0, 60,
488                         DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC);
489
490 static const struct panel_desc ampire_am800480r3tmqwa1h = {
491         .modes = &ampire_am800480r3tmqwa1h_mode,
492         .num_modes = 1,
493         .bpc = 6,
494         .size = {
495                 .width = 152,
496                 .height = 91,
497         },
498         .bus_format = MEDIA_BUS_FMT_RGB666_1X18,
499 };
500
501 static const struct drm_display_mode auo_b101aw03_mode =
502         SP_DISPLAY_MODE(51450, 1024, 156, 8, 156, 600, 16, 6, 16, 60, 0);
503
504 static const struct panel_desc auo_b101aw03 = {
505         .modes = &auo_b101aw03_mode,
506         .num_modes = 1,
507         .bpc = 6,
508         .size = {
509                 .width = 223,
510                 .height = 125,
511         },
512 };
513
514 static const struct drm_display_mode auo_b101ean01_mode =
515         SP_DISPLAY_MODE(72500, 1280, 119, 32, 21, 800, 4, 20, 8, 60, 0);
516
517 static const struct panel_desc auo_b101ean01 = {
518         .modes = &auo_b101ean01_mode,
519         .num_modes = 1,
520         .bpc = 6,
521         .size = {
522                 .width = 217,
523                 .height = 136,
524         },
525 };
526
527 static const struct drm_display_mode auo_b101xtn01_mode =
528         SP_DISPLAY_MODE(72000, 1366, 20, 70, 0, 768, 14, 42, 0, 60,
529                         DRM_MODE_FLAG_NVSYNC | DRM_MODE_FLAG_NHSYNC);
530
531 static const struct panel_desc auo_b101xtn01 = {
532         .modes = &auo_b101xtn01_mode,
533         .num_modes = 1,
534         .bpc = 6,
535         .size = {
536                 .width = 223,
537                 .height = 125,
538         },
539 };
540
541 static const struct drm_display_mode auo_b116xw03_mode =
542         SP_DISPLAY_MODE(70589, 1366, 40, 40, 32, 768, 10, 12, 6, 60, 0);
543
544 static const struct panel_desc auo_b116xw03 = {
545         .modes = &auo_b116xw03_mode,
546         .num_modes = 1,
547         .bpc = 6,
548         .size = {
549                 .width = 256,
550                 .height = 144,
551         },
552 };
553
554 static const struct drm_display_mode auo_b133xtn01_mode =
555         SP_DISPLAY_MODE(69500, 1366, 48, 32, 20, 768, 3, 6, 13, 60, 0);
556
557 static const struct panel_desc auo_b133xtn01 = {
558         .modes = &auo_b133xtn01_mode,
559         .num_modes = 1,
560         .bpc = 6,
561         .size = {
562                 .width = 293,
563                 .height = 165,
564         },
565 };
566
567 static const struct drm_display_mode auo_b133htn01_mode =
568         SP_DISPLAY_MODE(150660, 1920, 172, 80, 60, 1080, 25, 10, 10, 60, 0);
569
570 static const struct panel_desc auo_b133htn01 = {
571         .modes = &auo_b133htn01_mode,
572         .num_modes = 1,
573         .bpc = 6,
574         .size = {
575                 .width = 293,
576                 .height = 165,
577         },
578         .delay = {
579                 .prepare = 105,
580                 .enable = 20,
581                 .unprepare = 50,
582         },
583 };
584
585 static const struct display_timing auo_g133han01_timings = {
586         .pixelclock = { 134000000, 141200000, 149000000 },
587         .hactive = { 1920, 1920, 1920 },
588         .hfront_porch = { 39, 58, 77 },
589         .hback_porch = { 59, 88, 117 },
590         .hsync_len = { 28, 42, 56 },
591         .vactive = { 1080, 1080, 1080 },
592         .vfront_porch = { 3, 8, 11 },
593         .vback_porch = { 5, 14, 19 },
594         .vsync_len = { 4, 14, 19 },
595 };
596
597 static const struct panel_desc auo_g133han01 = {
598         .timings = &auo_g133han01_timings,
599         .num_timings = 1,
600         .bpc = 8,
601         .size = {
602                 .width = 293,
603                 .height = 165,
604         },
605         .delay = {
606                 .prepare = 200,
607                 .enable = 50,
608                 .disable = 50,
609                 .unprepare = 1000,
610         },
611         .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_JEIDA,
612 };
613
614 static const struct display_timing auo_g185han01_timings = {
615         .pixelclock = { 120000000, 144000000, 175000000 },
616         .hactive = { 1920, 1920, 1920 },
617         .hfront_porch = { 18, 60, 74 },
618         .hback_porch = { 12, 44, 54 },
619         .hsync_len = { 10, 24, 32 },
620         .vactive = { 1080, 1080, 1080 },
621         .vfront_porch = { 6, 10, 40 },
622         .vback_porch = { 2, 5, 20 },
623         .vsync_len = { 2, 5, 20 },
624 };
625
626 static const struct panel_desc auo_g185han01 = {
627         .timings = &auo_g185han01_timings,
628         .num_timings = 1,
629         .bpc = 8,
630         .size = {
631                 .width = 409,
632                 .height = 230,
633         },
634         .delay = {
635                 .prepare = 50,
636                 .enable = 200,
637                 .disable = 110,
638                 .unprepare = 1000,
639         },
640         .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
641 };
642
643 static const struct display_timing auo_p320hvn03_timings = {
644         .pixelclock = { 106000000, 148500000, 164000000 },
645         .hactive = { 1920, 1920, 1920 },
646         .hfront_porch = { 25, 50, 130 },
647         .hback_porch = { 25, 50, 130 },
648         .hsync_len = { 20, 40, 105 },
649         .vactive = { 1080, 1080, 1080 },
650         .vfront_porch = { 8, 17, 150 },
651         .vback_porch = { 8, 17, 150 },
652         .vsync_len = { 4, 11, 100 },
653 };
654
655 static const struct panel_desc auo_p320hvn03 = {
656         .timings = &auo_p320hvn03_timings,
657         .num_timings = 1,
658         .bpc = 8,
659         .size = {
660                 .width = 698,
661                 .height = 393,
662         },
663         .delay = {
664                 .prepare = 1,
665                 .enable = 450,
666                 .unprepare = 500,
667         },
668         .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_JEIDA,
669 };
670
671 static const struct drm_display_mode auo_t215hvn01_mode =
672         SP_DISPLAY_MODE(148800, 1920, 88, 44, 148, 1080, 4, 5, 36, 60, 0);
673
674 static const struct panel_desc auo_t215hvn01 = {
675         .modes = &auo_t215hvn01_mode,
676         .num_modes = 1,
677         .bpc = 8,
678         .size = {
679                 .width = 430,
680                 .height = 270,
681         },
682         .delay = {
683                 .disable = 5,
684                 .unprepare = 1000,
685         }
686 };
687
688 static const struct drm_display_mode avic_tm070ddh03_mode =
689         SP_DISPLAY_MODE(51200, 1024, 160, 4, 156, 600, 17, 1, 17, 60, 0);
690
691 static const struct panel_desc avic_tm070ddh03 = {
692         .modes = &avic_tm070ddh03_mode,
693         .num_modes = 1,
694         .bpc = 8,
695         .size = {
696                 .width = 154,
697                 .height = 90,
698         },
699         .delay = {
700                 .prepare = 20,
701                 .enable = 200,
702                 .disable = 200,
703         },
704 };
705
706 static const struct drm_display_mode boe_nv101wxmn51_modes[] = {
707         SP_DISPLAY_MODE(71900, 1280, 48, 32, 80, 800, 3, 5, 24, 60, 0),
708         SP_DISPLAY_MODE(57500, 1280, 48, 32, 80, 800, 3, 5, 24, 48, 0),
709 };
710
711 static const struct panel_desc boe_nv101wxmn51 = {
712         .modes = boe_nv101wxmn51_modes,
713         .num_modes = ARRAY_SIZE(boe_nv101wxmn51_modes),
714         .bpc = 8,
715         .size = {
716                 .width = 217,
717                 .height = 136,
718         },
719         .delay = {
720                 .prepare = 210,
721                 .enable = 50,
722                 .unprepare = 160,
723         },
724 };
725
726 static const struct drm_display_mode chunghwa_claa070wp03xg_mode =
727         SP_DISPLAY_MODE(66770, 800, 49, 33, 17, 1280, 1, 7, 15, 60,
728                         DRM_MODE_FLAG_NVSYNC | DRM_MODE_FLAG_NHSYNC);
729
730 static const struct panel_desc chunghwa_claa070wp03xg = {
731         .modes = &chunghwa_claa070wp03xg_mode,
732         .num_modes = 1,
733         .bpc = 6,
734         .size = {
735                 .width = 94,
736                 .height = 150,
737         },
738 };
739
740 static const struct drm_display_mode chunghwa_claa101wa01a_mode =
741         SP_DISPLAY_MODE(72070, 1366, 58, 58, 58, 768, 4, 4, 4, 60, 0);
742
743 static const struct panel_desc chunghwa_claa101wa01a = {
744         .modes = &chunghwa_claa101wa01a_mode,
745         .num_modes = 1,
746         .bpc = 6,
747         .size = {
748                 .width = 220,
749                 .height = 120,
750         },
751 };
752
753 static const struct drm_display_mode chunghwa_claa101wb01_mode =
754         SP_DISPLAY_MODE(69300, 1366, 48, 32, 20, 768, 16, 8, 16, 60, 0);
755
756 static const struct panel_desc chunghwa_claa101wb01 = {
757         .modes = &chunghwa_claa101wb01_mode,
758         .num_modes = 1,
759         .bpc = 6,
760         .size = {
761                 .width = 223,
762                 .height = 125,
763         },
764 };
765
766 static const struct drm_display_mode edt_et0350g0dh6_mode =
767         SP_DISPLAY_MODE(6500, 320, 20, 0, 68, 240, 4, 0, 18, 60,
768                         DRM_MODE_FLAG_NVSYNC | DRM_MODE_FLAG_NHSYNC);
769
770 static const struct panel_desc edt_et0350g0dh6 = {
771         .modes = &edt_et0350g0dh6_mode,
772         .num_modes = 1,
773         .bpc = 6,
774         .size = {
775                 .width = 70,
776                 .height = 53,
777         },
778         .bus_format = MEDIA_BUS_FMT_RGB666_1X18,
779         .bus_flags = DRM_BUS_FLAG_DE_HIGH | DRM_BUS_FLAG_PIXDATA_NEGEDGE,
780 };
781
782 static const struct drm_display_mode edt_et057090dhu_mode =
783         SP_DISPLAY_MODE(25175, 640, 16, 30, 114, 480, 10, 3, 32, 60,
784                         DRM_MODE_FLAG_NVSYNC | DRM_MODE_FLAG_NHSYNC);
785
786 static const struct panel_desc edt_et057090dhu = {
787         .modes = &edt_et057090dhu_mode,
788         .num_modes = 1,
789         .bpc = 6,
790         .size = {
791                 .width = 115,
792                 .height = 86,
793         },
794         .bus_format = MEDIA_BUS_FMT_RGB666_1X18,
795         .bus_flags = DRM_BUS_FLAG_DE_HIGH | DRM_BUS_FLAG_PIXDATA_NEGEDGE,
796 };
797
798 static const struct drm_display_mode edt_etm0700g0dh6_mode =
799         SP_DISPLAY_MODE(33260, 800, 40, 128, 88, 480, 10, 2, 33, 60,
800                         DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC);
801
802 static const struct panel_desc edt_etm0700g0dh6 = {
803         .modes = &edt_etm0700g0dh6_mode,
804         .num_modes = 1,
805         .bpc = 6,
806         .size = {
807                 .width = 152,
808                 .height = 91,
809         },
810         .bus_format = MEDIA_BUS_FMT_RGB666_1X18,
811         .bus_flags = DRM_BUS_FLAG_DE_HIGH | DRM_BUS_FLAG_PIXDATA_NEGEDGE,
812 };
813
814 static const struct drm_display_mode foxlink_fl500wvr00_a0t_mode =
815         SP_DISPLAY_MODE(32260, 800, 168, 64, 88, 480, 37, 2, 8, 60, 0);
816
817 static const struct panel_desc foxlink_fl500wvr00_a0t = {
818         .modes = &foxlink_fl500wvr00_a0t_mode,
819         .num_modes = 1,
820         .bpc = 8,
821         .size = {
822                 .width = 108,
823                 .height = 65,
824         },
825         .bus_format = MEDIA_BUS_FMT_RGB888_1X24,
826 };
827
828 static const struct drm_display_mode giantplus_gpg482739qs5_mode =
829         SP_DISPLAY_MODE(9000, 480, 5, 1, 40, 272, 8, 1, 8, 60, 0);
830
831 static const struct panel_desc giantplus_gpg482739qs5 = {
832         .modes = &giantplus_gpg482739qs5_mode,
833         .num_modes = 1,
834         .bpc = 8,
835         .size = {
836                 .width = 95,
837                 .height = 54,
838         },
839         .bus_format = MEDIA_BUS_FMT_RGB888_1X24,
840 };
841
842 static const struct display_timing hannstar_hsd070pww1_timing = {
843         .pixelclock = { 64300000, 71100000, 82000000 },
844         .hactive = { 1280, 1280, 1280 },
845         .hfront_porch = { 1, 1, 10 },
846         .hback_porch = { 1, 1, 10 },
847         /*
848          * According to the data sheet, the minimum horizontal blanking interval
849          * is 54 clocks (1 + 52 + 1), but tests with a Nitrogen6X have shown the
850          * minimum working horizontal blanking interval to be 60 clocks.
851          */
852         .hsync_len = { 58, 158, 661 },
853         .vactive = { 800, 800, 800 },
854         .vfront_porch = { 1, 1, 10 },
855         .vback_porch = { 1, 1, 10 },
856         .vsync_len = { 1, 21, 203 },
857         .flags = DISPLAY_FLAGS_DE_HIGH,
858 };
859
860 static const struct panel_desc hannstar_hsd070pww1 = {
861         .timings = &hannstar_hsd070pww1_timing,
862         .num_timings = 1,
863         .bpc = 6,
864         .size = {
865                 .width = 151,
866                 .height = 94,
867         },
868         .bus_format = MEDIA_BUS_FMT_RGB666_1X7X3_SPWG,
869 };
870
871 static const struct display_timing hannstar_hsd100pxn1_timing = {
872         .pixelclock = { 55000000, 65000000, 75000000 },
873         .hactive = { 1024, 1024, 1024 },
874         .hfront_porch = { 40, 40, 40 },
875         .hback_porch = { 220, 220, 220 },
876         .hsync_len = { 20, 60, 100 },
877         .vactive = { 768, 768, 768 },
878         .vfront_porch = { 7, 7, 7 },
879         .vback_porch = { 21, 21, 21 },
880         .vsync_len = { 10, 10, 10 },
881         .flags = DISPLAY_FLAGS_DE_HIGH,
882 };
883
884 static const struct panel_desc hannstar_hsd100pxn1 = {
885         .timings = &hannstar_hsd100pxn1_timing,
886         .num_timings = 1,
887         .bpc = 6,
888         .size = {
889                 .width = 203,
890                 .height = 152,
891         },
892         .bus_format = MEDIA_BUS_FMT_RGB666_1X7X3_SPWG,
893 };
894
895 static const struct drm_display_mode hitachi_tx23d38vm0caa_mode =
896         SP_DISPLAY_MODE(33333, 800, 85, 86, 85, 480, 16, 13, 16, 60, 0);
897
898 static const struct panel_desc hitachi_tx23d38vm0caa = {
899         .modes = &hitachi_tx23d38vm0caa_mode,
900         .num_modes = 1,
901         .bpc = 6,
902         .size = {
903                 .width = 195,
904                 .height = 117,
905         },
906 };
907
908 static const struct drm_display_mode innolux_at043tn24_mode =
909         SP_DISPLAY_MODE(9000, 480, 2, 41, 2, 272, 2, 11, 2, 60,
910                         DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC);
911
912 static const struct panel_desc innolux_at043tn24 = {
913         .modes = &innolux_at043tn24_mode,
914         .num_modes = 1,
915         .bpc = 8,
916         .size = {
917                 .width = 95,
918                 .height = 54,
919         },
920         .bus_format = MEDIA_BUS_FMT_RGB888_1X24,
921 };
922
923 static const struct drm_display_mode innolux_at070tn92_mode =
924         SP_DISPLAY_MODE(33333, 800, 210, 20, 46, 480, 22, 10, 23, 60, 0);
925
926 static const struct panel_desc innolux_at070tn92 = {
927         .modes = &innolux_at070tn92_mode,
928         .num_modes = 1,
929         .size = {
930                 .width = 154,
931                 .height = 86,
932         },
933         .bus_format = MEDIA_BUS_FMT_RGB888_1X24,
934 };
935
936 static const struct display_timing innolux_g101ice_l01_timing = {
937         .pixelclock = { 60400000, 71100000, 74700000 },
938         .hactive = { 1280, 1280, 1280 },
939         .hfront_porch = { 41, 80, 100 },
940         .hback_porch = { 40, 79, 99 },
941         .hsync_len = { 1, 1, 1 },
942         .vactive = { 800, 800, 800 },
943         .vfront_porch = { 5, 11, 14 },
944         .vback_porch = { 4, 11, 14 },
945         .vsync_len = { 1, 1, 1 },
946         .flags = DISPLAY_FLAGS_DE_HIGH,
947 };
948
949 static const struct panel_desc innolux_g101ice_l01 = {
950         .timings = &innolux_g101ice_l01_timing,
951         .num_timings = 1,
952         .bpc = 8,
953         .size = {
954                 .width = 217,
955                 .height = 135,
956         },
957         .delay = {
958                 .enable = 200,
959                 .disable = 200,
960         },
961         .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
962 };
963
964 static const struct display_timing innolux_g121i1_l01_timing = {
965         .pixelclock = { 67450000, 71000000, 74550000 },
966         .hactive = { 1280, 1280, 1280 },
967         .hfront_porch = { 40, 80, 160 },
968         .hback_porch = { 39, 79, 159 },
969         .hsync_len = { 1, 1, 1 },
970         .vactive = { 800, 800, 800 },
971         .vfront_porch = { 5, 11, 100 },
972         .vback_porch = { 4, 11, 99 },
973         .vsync_len = { 1, 1, 1 },
974 };
975
976 static const struct panel_desc innolux_g121i1_l01 = {
977         .timings = &innolux_g121i1_l01_timing,
978         .num_timings = 1,
979         .bpc = 6,
980         .size = {
981                 .width = 261,
982                 .height = 163,
983         },
984         .delay = {
985                 .enable = 200,
986                 .disable = 20,
987         },
988         .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
989 };
990
991 static const struct drm_display_mode innolux_g121x1_l03_mode =
992         SP_DISPLAY_MODE(65000, 1024, 0, 1, 320, 768, 38, 1, 0, 60,
993                         DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC);
994
995 static const struct panel_desc innolux_g121x1_l03 = {
996         .modes = &innolux_g121x1_l03_mode,
997         .num_modes = 1,
998         .bpc = 6,
999         .size = {
1000                 .width = 246,
1001                 .height = 185,
1002         },
1003         .delay = {
1004                 .enable = 200,
1005                 .unprepare = 200,
1006                 .disable = 400,
1007         },
1008 };
1009
1010 static const struct drm_display_mode innolux_n116bge_mode =
1011         SP_DISPLAY_MODE(76420, 1366, 136, 30, 60, 768, 8, 12, 12, 60,
1012                         DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC);
1013
1014 static const struct panel_desc innolux_n116bge = {
1015         .modes = &innolux_n116bge_mode,
1016         .num_modes = 1,
1017         .bpc = 6,
1018         .size = {
1019                 .width = 256,
1020                 .height = 144,
1021         },
1022 };
1023
1024 static const struct drm_display_mode innolux_n156bge_l21_mode =
1025         SP_DISPLAY_MODE(69300, 1366, 16, 34, 50, 768, 2, 6, 12, 60, 0);
1026
1027 static const struct panel_desc innolux_n156bge_l21 = {
1028         .modes = &innolux_n156bge_l21_mode,
1029         .num_modes = 1,
1030         .bpc = 6,
1031         .size = {
1032                 .width = 344,
1033                 .height = 193,
1034         },
1035 };
1036
1037 static const struct drm_display_mode innolux_zj070na_01p_mode =
1038         SP_DISPLAY_MODE(51501, 1024, 128, 64, 128, 600, 16, 4, 16, 60, 0);
1039
1040 static const struct panel_desc innolux_zj070na_01p = {
1041         .modes = &innolux_zj070na_01p_mode,
1042         .num_modes = 1,
1043         .bpc = 6,
1044         .size = {
1045                 .width = 154,
1046                 .height = 90,
1047         },
1048 };
1049
1050 static const struct display_timing kyo_tcg121xglp_timing = {
1051         .pixelclock = { 52000000, 65000000, 71000000 },
1052         .hactive = { 1024, 1024, 1024 },
1053         .hfront_porch = { 2, 2, 2 },
1054         .hback_porch = { 2, 2, 2 },
1055         .hsync_len = { 86, 124, 244 },
1056         .vactive = { 768, 768, 768 },
1057         .vfront_porch = { 2, 2, 2 },
1058         .vback_porch = { 2, 2, 2 },
1059         .vsync_len = { 6, 34, 73 },
1060         .flags = DISPLAY_FLAGS_DE_HIGH,
1061 };
1062
1063 static const struct panel_desc kyo_tcg121xglp = {
1064         .timings = &kyo_tcg121xglp_timing,
1065         .num_timings = 1,
1066         .bpc = 8,
1067         .size = {
1068                 .width = 246,
1069                 .height = 184,
1070         },
1071         .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
1072 };
1073
1074 static const struct drm_display_mode lg_lb070wv8_mode =
1075         SP_DISPLAY_MODE(33246, 800, 88, 80, 88, 480, 10, 25, 10, 60, 0);
1076
1077 static const struct panel_desc lg_lb070wv8 = {
1078         .modes = &lg_lb070wv8_mode,
1079         .num_modes = 1,
1080         .bpc = 16,
1081         .size = {
1082                 .width = 151,
1083                 .height = 91,
1084         },
1085         .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
1086 };
1087
1088 static const struct drm_display_mode lg_lp079qx1_sp0v_mode =
1089         SP_DISPLAY_MODE(200000, 1536, 12, 16, 48, 2048, 8, 4, 8, 60,
1090                          DRM_MODE_FLAG_NVSYNC | DRM_MODE_FLAG_NHSYNC);
1091
1092 static const struct panel_desc lg_lp079qx1_sp0v = {
1093         .modes = &lg_lp079qx1_sp0v_mode,
1094         .num_modes = 1,
1095         .size = {
1096                 .width = 129,
1097                 .height = 171,
1098         },
1099 };
1100
1101 static const struct drm_display_mode lg_lp097qx1_spa1_mode =
1102         SP_DISPLAY_MODE(205210, 2048, 150, 5, 5, 1536, 3, 1, 9, 60, 0);
1103
1104 static const struct panel_desc lg_lp097qx1_spa1 = {
1105         .modes = &lg_lp097qx1_spa1_mode,
1106         .num_modes = 1,
1107         .size = {
1108                 .width = 208,
1109                 .height = 147,
1110         },
1111 };
1112
1113 static const struct drm_display_mode lg_lp120up1_mode =
1114         SP_DISPLAY_MODE(162300, 1920, 40, 40, 80, 1280, 4, 4, 12, 60, 0);
1115
1116 static const struct panel_desc lg_lp120up1 = {
1117         .modes = &lg_lp120up1_mode,
1118         .num_modes = 1,
1119         .bpc = 8,
1120         .size = {
1121                 .width = 267,
1122                 .height = 183,
1123         },
1124 };
1125
1126 static const struct drm_display_mode lg_lp129qe_mode =
1127         SP_DISPLAY_MODE(285250, 2560, 48, 32, 80, 1700, 3, 10, 36, 60, 0);
1128
1129 static const struct panel_desc lg_lp129qe = {
1130         .modes = &lg_lp129qe_mode,
1131         .num_modes = 1,
1132         .bpc = 8,
1133         .size = {
1134                 .width = 272,
1135                 .height = 181,
1136         },
1137 };
1138
1139 static const struct display_timing nec_nl12880bc20_05_timing = {
1140         .pixelclock = { 67000000, 71000000, 75000000 },
1141         .hactive = { 1280, 1280, 1280 },
1142         .hfront_porch = { 2, 30, 30 },
1143         .hback_porch = { 6, 100, 100 },
1144         .hsync_len = { 2, 30, 30 },
1145         .vactive = { 800, 800, 800 },
1146         .vfront_porch = { 5, 5, 5 },
1147         .vback_porch = { 11, 11, 11 },
1148         .vsync_len = { 7, 7, 7 },
1149 };
1150
1151 static const struct panel_desc nec_nl12880bc20_05 = {
1152         .timings = &nec_nl12880bc20_05_timing,
1153         .num_timings = 1,
1154         .bpc = 8,
1155         .size = {
1156                 .width = 261,
1157                 .height = 163,
1158         },
1159         .delay = {
1160                 .enable = 50,
1161                 .disable = 50,
1162         },
1163         .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
1164 };
1165
1166 static const struct drm_display_mode nec_nl4827hc19_05b_mode =
1167         SP_DISPLAY_MODE(10870, 480, 2, 41, 2, 272, 2, 4, 2, 74,
1168                          DRM_MODE_FLAG_NVSYNC | DRM_MODE_FLAG_NHSYNC);
1169
1170 static const struct panel_desc nec_nl4827hc19_05b = {
1171         .modes = &nec_nl4827hc19_05b_mode,
1172         .num_modes = 1,
1173         .bpc = 8,
1174         .size = {
1175                 .width = 95,
1176                 .height = 54,
1177         },
1178         .bus_format = MEDIA_BUS_FMT_RGB888_1X24,
1179         .bus_flags = DRM_BUS_FLAG_PIXDATA_POSEDGE,
1180 };
1181
1182 static const struct drm_display_mode netron_dy_e231732_mode =
1183         SP_DISPLAY_MODE(66000, 1024, 160, 70, 90, 600, 127, 20, 3, 60, 0);
1184
1185 static const struct panel_desc netron_dy_e231732 = {
1186         .modes = &netron_dy_e231732_mode,
1187         .num_modes = 1,
1188         .size = {
1189                 .width = 154,
1190                 .height = 87,
1191         },
1192         .bus_format = MEDIA_BUS_FMT_RGB666_1X18,
1193 };
1194
1195 static const struct display_timing nlt_nl192108ac18_02d_timing = {
1196         .pixelclock = { 130000000, 148350000, 163000000 },
1197         .hactive = { 1920, 1920, 1920 },
1198         .hfront_porch = { 80, 100, 100 },
1199         .hback_porch = { 100, 120, 120 },
1200         .hsync_len = { 50, 60, 60 },
1201         .vactive = { 1080, 1080, 1080 },
1202         .vfront_porch = { 12, 30, 30 },
1203         .vback_porch = { 4, 10, 10 },
1204         .vsync_len = { 4, 5, 5 },
1205 };
1206
1207 static const struct panel_desc nlt_nl192108ac18_02d = {
1208         .timings = &nlt_nl192108ac18_02d_timing,
1209         .num_timings = 1,
1210         .bpc = 8,
1211         .size = {
1212                 .width = 344,
1213                 .height = 194,
1214         },
1215         .delay = {
1216                 .unprepare = 500,
1217         },
1218         .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
1219 };
1220
1221 static const struct drm_display_mode nvd_9128_mode =
1222         SP_DISPLAY_MODE(29500, 800, 130, 98, 0, 480, 10, 50, 0, 0, 0);
1223
1224 static const struct panel_desc nvd_9128 = {
1225         .modes = &nvd_9128_mode,
1226         .num_modes = 1,
1227         .bpc = 8,
1228         .size = {
1229                 .width = 156,
1230                 .height = 88,
1231         },
1232         .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
1233 };
1234
1235 static const struct display_timing okaya_rs800480t_7x0gp_timing = {
1236         .pixelclock = { 30000000, 30000000, 40000000 },
1237         .hactive = { 800, 800, 800 },
1238         .hfront_porch = { 40, 40, 40 },
1239         .hback_porch = { 40, 40, 40 },
1240         .hsync_len = { 1, 48, 48 },
1241         .vactive = { 480, 480, 480 },
1242         .vfront_porch = { 13, 13, 13 },
1243         .vback_porch = { 29, 29, 29 },
1244         .vsync_len = { 3, 3, 3 },
1245         .flags = DISPLAY_FLAGS_DE_HIGH,
1246 };
1247
1248 static const struct panel_desc okaya_rs800480t_7x0gp = {
1249         .timings = &okaya_rs800480t_7x0gp_timing,
1250         .num_timings = 1,
1251         .bpc = 6,
1252         .size = {
1253                 .width = 154,
1254                 .height = 87,
1255         },
1256         .delay = {
1257                 .prepare = 41,
1258                 .enable = 50,
1259                 .unprepare = 41,
1260                 .disable = 50,
1261         },
1262         .bus_format = MEDIA_BUS_FMT_RGB666_1X18,
1263 };
1264
1265 static const struct drm_display_mode olimex_lcd_olinuxino_43ts_mode =
1266         SP_DISPLAY_MODE(9000, 480, 5, 30, 10, 272, 8, 5, 3, 60, 0);
1267
1268 static const struct panel_desc olimex_lcd_olinuxino_43ts = {
1269         .modes = &olimex_lcd_olinuxino_43ts_mode,
1270         .num_modes = 1,
1271         .size = {
1272                 .width = 105,
1273                 .height = 67,
1274         },
1275         .bus_format = MEDIA_BUS_FMT_RGB888_1X24,
1276 };
1277
1278 /*
1279  * 800x480 CVT. The panel appears to be quite accepting, at least as far as
1280  * pixel clocks, but this is the timing that was being used in the Adafruit
1281  * installation instructions.
1282  */
1283 static const struct drm_display_mode ontat_yx700wv03_mode =
1284         SP_DISPLAY_MODE(29500, 800, 24, 72, 96, 480, 3, 10, 7, 60,
1285                         DRM_MODE_FLAG_NVSYNC | DRM_MODE_FLAG_NHSYNC);
1286
1287 /*
1288  * Specification at:
1289  * https://www.adafruit.com/images/product-files/2406/c3163.pdf
1290  */
1291 static const struct panel_desc ontat_yx700wv03 = {
1292         .modes = &ontat_yx700wv03_mode,
1293         .num_modes = 1,
1294         .bpc = 8,
1295         .size = {
1296                 .width = 154,
1297                 .height = 83,
1298         },
1299         .bus_format = MEDIA_BUS_FMT_RGB888_1X24,
1300 };
1301
1302 static const struct drm_display_mode ortustech_com43h4m85ulc_mode  =
1303         SP_DISPLAY_MODE(25000, 480, 10, 10, 15, 800, 3, 3, 3, 60, 0);
1304
1305 static const struct panel_desc ortustech_com43h4m85ulc = {
1306         .modes = &ortustech_com43h4m85ulc_mode,
1307         .num_modes = 1,
1308         .bpc = 8,
1309         .size = {
1310                 .width = 56,
1311                 .height = 93,
1312         },
1313         .bus_format = MEDIA_BUS_FMT_RGB888_1X24,
1314         .bus_flags = DRM_BUS_FLAG_DE_HIGH | DRM_BUS_FLAG_PIXDATA_POSEDGE,
1315 };
1316
1317 static const struct drm_display_mode qd43003c0_40_mode =
1318         SP_DISPLAY_MODE(9000, 480, 8, 4, 39, 272, 4, 10, 2, 60, 0);
1319
1320 static const struct panel_desc qd43003c0_40 = {
1321         .modes = &qd43003c0_40_mode,
1322         .num_modes = 1,
1323         .bpc = 8,
1324         .size = {
1325                 .width = 95,
1326                 .height = 53,
1327         },
1328         .bus_format = MEDIA_BUS_FMT_RGB888_1X24,
1329 };
1330
1331 static const struct drm_display_mode samsung_lsn122dl01_c01_mode =
1332         SP_DISPLAY_MODE(271560, 2560, 48, 32, 80, 1600, 2, 5, 57, 60, 0);
1333
1334 static const struct panel_desc samsung_lsn122dl01_c01 = {
1335         .modes = &samsung_lsn122dl01_c01_mode,
1336         .num_modes = 1,
1337         .size = {
1338                 .width = 263,
1339                 .height = 164,
1340         },
1341 };
1342
1343 static const struct drm_display_mode samsung_ltn101nt05_mode =
1344         SP_DISPLAY_MODE(54030, 1024, 24, 136, 160, 600, 3, 6, 61, 60, 0);
1345
1346 static const struct panel_desc samsung_ltn101nt05 = {
1347         .modes = &samsung_ltn101nt05_mode,
1348         .num_modes = 1,
1349         .bpc = 6,
1350         .size = {
1351                 .width = 223,
1352                 .height = 125,
1353         },
1354 };
1355
1356 static const struct drm_display_mode samsung_ltn140at29_301_mode =
1357         SP_DISPLAY_MODE(76300, 1366, 64, 48, 128, 768, 2, 5, 17, 60, 0);
1358
1359 static const struct panel_desc samsung_ltn140at29_301 = {
1360         .modes = &samsung_ltn140at29_301_mode,
1361         .num_modes = 1,
1362         .bpc = 6,
1363         .size = {
1364                 .width = 320,
1365                 .height = 187,
1366         },
1367 };
1368
1369 static const struct display_timing sharp_lq101k1ly04_timing = {
1370         .pixelclock = { 60000000, 65000000, 80000000 },
1371         .hactive = { 1280, 1280, 1280 },
1372         .hfront_porch = { 20, 20, 20 },
1373         .hback_porch = { 20, 20, 20 },
1374         .hsync_len = { 10, 10, 10 },
1375         .vactive = { 800, 800, 800 },
1376         .vfront_porch = { 4, 4, 4 },
1377         .vback_porch = { 4, 4, 4 },
1378         .vsync_len = { 4, 4, 4 },
1379         .flags = DISPLAY_FLAGS_PIXDATA_POSEDGE,
1380 };
1381
1382 static const struct panel_desc sharp_lq101k1ly04 = {
1383         .timings = &sharp_lq101k1ly04_timing,
1384         .num_timings = 1,
1385         .bpc = 8,
1386         .size = {
1387                 .width = 217,
1388                 .height = 136,
1389         },
1390         .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_JEIDA,
1391 };
1392
1393 static const struct drm_display_mode sharp_lq123p1jx31_mode =
1394         SP_DISPLAY_MODE(252750, 2400, 48, 32, 80, 1600, 3, 10, 33, 60,
1395                          DRM_MODE_FLAG_NVSYNC | DRM_MODE_FLAG_NHSYNC);
1396
1397 static const struct panel_desc sharp_lq123p1jx31 = {
1398         .modes = &sharp_lq123p1jx31_mode,
1399         .num_modes = 1,
1400         .bpc = 8,
1401         .size = {
1402                 .width = 259,
1403                 .height = 173,
1404         },
1405         .delay = {
1406                 .prepare = 110,
1407                 .enable = 50,
1408                 .unprepare = 550,
1409         },
1410 };
1411
1412 static const struct drm_display_mode sharp_lq150x1lg11_mode =
1413         SP_DISPLAY_MODE(71100, 1024, 168, 64, 88, 768, 37, 2, 8, 60, 0);
1414
1415 static const struct panel_desc sharp_lq150x1lg11 = {
1416         .modes = &sharp_lq150x1lg11_mode,
1417         .num_modes = 1,
1418         .bpc = 6,
1419         .size = {
1420                 .width = 304,
1421                 .height = 228,
1422         },
1423         .bus_format = MEDIA_BUS_FMT_RGB565_1X16,
1424 };
1425
1426 static const struct drm_display_mode shelly_sca07010_bfn_lnn_mode =
1427         SP_DISPLAY_MODE(33300, 800, 1, 64, 64, 480, 1, 23, 22, 60, 0);
1428
1429 static const struct panel_desc shelly_sca07010_bfn_lnn = {
1430         .modes = &shelly_sca07010_bfn_lnn_mode,
1431         .num_modes = 1,
1432         .size = {
1433                 .width = 152,
1434                 .height = 91,
1435         },
1436         .bus_format = MEDIA_BUS_FMT_RGB666_1X18,
1437 };
1438
1439 static const struct drm_display_mode starry_kr122ea0sra_mode =
1440         SP_DISPLAY_MODE(147000, 1920, 16, 16, 32, 1200, 15, 2, 18, 60,
1441                          DRM_MODE_FLAG_NVSYNC | DRM_MODE_FLAG_NHSYNC);
1442
1443 static const struct panel_desc starry_kr122ea0sra = {
1444         .modes = &starry_kr122ea0sra_mode,
1445         .num_modes = 1,
1446         .size = {
1447                 .width = 263,
1448                 .height = 164,
1449         },
1450         .delay = {
1451                 .prepare = 10 + 200,
1452                 .enable = 50,
1453                 .unprepare = 10 + 500,
1454         },
1455 };
1456
1457 static const struct display_timing tianma_tm070jdhg30_timing = {
1458         .pixelclock = { 62600000, 68200000, 78100000 },
1459         .hactive = { 1280, 1280, 1280 },
1460         .hfront_porch = { 15, 64, 159 },
1461         .hback_porch = { 5, 5, 5 },
1462         .hsync_len = { 1, 1, 256 },
1463         .vactive = { 800, 800, 800 },
1464         .vfront_porch = { 3, 40, 99 },
1465         .vback_porch = { 2, 2, 2 },
1466         .vsync_len = { 1, 1, 128 },
1467         .flags = DISPLAY_FLAGS_DE_HIGH,
1468 };
1469
1470 static const struct panel_desc tianma_tm070jdhg30 = {
1471         .timings = &tianma_tm070jdhg30_timing,
1472         .num_timings = 1,
1473         .bpc = 8,
1474         .size = {
1475                 .width = 151,
1476                 .height = 95,
1477         },
1478         .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
1479 };
1480
1481 static const struct drm_display_mode tpk_f07a_0102_mode =
1482         SP_DISPLAY_MODE(33260, 800, 40, 128, 88, 480, 10, 2, 33, 60, 0);
1483
1484 static const struct panel_desc tpk_f07a_0102 = {
1485         .modes = &tpk_f07a_0102_mode,
1486         .num_modes = 1,
1487         .size = {
1488                 .width = 152,
1489                 .height = 91,
1490         },
1491         .bus_flags = DRM_BUS_FLAG_PIXDATA_POSEDGE,
1492 };
1493
1494 static const struct drm_display_mode tpk_f10a_0102_mode =
1495         SP_DISPLAY_MODE(45000, 1024, 176, 5, 88, 600, 20, 5, 25, 60, 0);
1496
1497 static const struct panel_desc tpk_f10a_0102 = {
1498         .modes = &tpk_f10a_0102_mode,
1499         .num_modes = 1,
1500         .size = {
1501                 .width = 223,
1502                 .height = 125,
1503         },
1504 };
1505
1506 static const struct display_timing urt_umsh_8596md_timing = {
1507         .pixelclock = { 33260000, 33260000, 33260000 },
1508         .hactive = { 800, 800, 800 },
1509         .hfront_porch = { 41, 41, 41 },
1510         .hback_porch = { 216 - 128, 216 - 128, 216 - 128 },
1511         .hsync_len = { 71, 128, 128 },
1512         .vactive = { 480, 480, 480 },
1513         .vfront_porch = { 10, 10, 10 },
1514         .vback_porch = { 35 - 2, 35 - 2, 35 - 2 },
1515         .vsync_len = { 2, 2, 2 },
1516         .flags = DISPLAY_FLAGS_DE_HIGH | DISPLAY_FLAGS_PIXDATA_NEGEDGE |
1517                 DISPLAY_FLAGS_HSYNC_LOW | DISPLAY_FLAGS_VSYNC_LOW,
1518 };
1519
1520 static const struct panel_desc urt_umsh_8596md_lvds = {
1521         .timings = &urt_umsh_8596md_timing,
1522         .num_timings = 1,
1523         .bpc = 6,
1524         .size = {
1525                 .width = 152,
1526                 .height = 91,
1527         },
1528         .bus_format = MEDIA_BUS_FMT_RGB666_1X7X3_SPWG,
1529 };
1530
1531 static const struct panel_desc urt_umsh_8596md_parallel = {
1532         .timings = &urt_umsh_8596md_timing,
1533         .num_timings = 1,
1534         .bpc = 6,
1535         .size = {
1536                 .width = 152,
1537                 .height = 91,
1538         },
1539         .bus_format = MEDIA_BUS_FMT_RGB666_1X18,
1540 };
1541
1542 static const struct drm_display_mode winstar_wf35ltiacd_mode =
1543         SP_DISPLAY_MODE(6410, 320, 20, 30, 38, 240, 4, 3, 15, 60,
1544                         DRM_MODE_FLAG_NVSYNC | DRM_MODE_FLAG_NHSYNC);
1545
1546 static const struct panel_desc winstar_wf35ltiacd = {
1547         .modes = &winstar_wf35ltiacd_mode,
1548         .num_modes = 1,
1549         .bpc = 8,
1550         .size = {
1551                 .width = 70,
1552                 .height = 53,
1553         },
1554         .bus_format = MEDIA_BUS_FMT_RGB888_1X24,
1555 };
1556
1557 static const struct of_device_id platform_of_match[] = {
1558         {
1559                 .compatible = "ampire,am-480272h3tmqw-t01h",
1560                 .data = &ampire_am_480272h3tmqw_t01h,
1561         }, {
1562                 .compatible = "ampire,am800480r3tmqwa1h",
1563                 .data = &ampire_am800480r3tmqwa1h,
1564         }, {
1565                 .compatible = "auo,b101aw03",
1566                 .data = &auo_b101aw03,
1567         }, {
1568                 .compatible = "auo,b101ean01",
1569                 .data = &auo_b101ean01,
1570         }, {
1571                 .compatible = "auo,b101xtn01",
1572                 .data = &auo_b101xtn01,
1573         }, {
1574                 .compatible = "auo,b116xw03",
1575                 .data = &auo_b116xw03,
1576         }, {
1577                 .compatible = "auo,b133htn01",
1578                 .data = &auo_b133htn01,
1579         }, {
1580                 .compatible = "auo,b133xtn01",
1581                 .data = &auo_b133xtn01,
1582         }, {
1583                 .compatible = "auo,g133han01",
1584                 .data = &auo_g133han01,
1585         }, {
1586                 .compatible = "auo,g185han01",
1587                 .data = &auo_g185han01,
1588         }, {
1589                 .compatible = "auo,p320hvn03",
1590                 .data = &auo_p320hvn03,
1591         }, {
1592                 .compatible = "auo,t215hvn01",
1593                 .data = &auo_t215hvn01,
1594         }, {
1595                 .compatible = "avic,tm070ddh03",
1596                 .data = &avic_tm070ddh03,
1597         }, {
1598                 .compatible = "boe,nv101wxmn51",
1599                 .data = &boe_nv101wxmn51,
1600         }, {
1601                 .compatible = "chunghwa,claa070wp03xg",
1602                 .data = &chunghwa_claa070wp03xg,
1603         }, {
1604                 .compatible = "chunghwa,claa101wa01a",
1605                 .data = &chunghwa_claa101wa01a
1606         }, {
1607                 .compatible = "chunghwa,claa101wb01",
1608                 .data = &chunghwa_claa101wb01
1609         }, {
1610                 .compatible = "edt,et0350g0dh6",
1611                 .data = &edt_et0350g0dh6,
1612         }, {
1613                 .compatible = "edt,et057090dhu",
1614                 .data = &edt_et057090dhu,
1615         }, {
1616                 .compatible = "edt,et070080dh6",
1617                 .data = &edt_etm0700g0dh6,
1618         }, {
1619                 .compatible = "edt,etm0700g0dh6",
1620                 .data = &edt_etm0700g0dh6,
1621         }, {
1622                 .compatible = "foxlink,fl500wvr00-a0t",
1623                 .data = &foxlink_fl500wvr00_a0t,
1624         }, {
1625                 .compatible = "giantplus,gpg482739qs5",
1626                 .data = &giantplus_gpg482739qs5
1627         }, {
1628                 .compatible = "hannstar,hsd070pww1",
1629                 .data = &hannstar_hsd070pww1,
1630         }, {
1631                 .compatible = "hannstar,hsd100pxn1",
1632                 .data = &hannstar_hsd100pxn1,
1633         }, {
1634                 .compatible = "hit,tx23d38vm0caa",
1635                 .data = &hitachi_tx23d38vm0caa
1636         }, {
1637                 .compatible = "innolux,at043tn24",
1638                 .data = &innolux_at043tn24,
1639         }, {
1640                 .compatible = "innolux,at070tn92",
1641                 .data = &innolux_at070tn92,
1642         }, {
1643                 .compatible ="innolux,g101ice-l01",
1644                 .data = &innolux_g101ice_l01
1645         }, {
1646                 .compatible ="innolux,g121i1-l01",
1647                 .data = &innolux_g121i1_l01
1648         }, {
1649                 .compatible = "innolux,g121x1-l03",
1650                 .data = &innolux_g121x1_l03,
1651         }, {
1652                 .compatible = "innolux,n116bge",
1653                 .data = &innolux_n116bge,
1654         }, {
1655                 .compatible = "innolux,n156bge-l21",
1656                 .data = &innolux_n156bge_l21,
1657         }, {
1658                 .compatible = "innolux,zj070na-01p",
1659                 .data = &innolux_zj070na_01p,
1660         }, {
1661                 .compatible = "kyo,tcg121xglp",
1662                 .data = &kyo_tcg121xglp,
1663         }, {
1664                 .compatible = "lg,lb070wv8",
1665                 .data = &lg_lb070wv8,
1666         }, {
1667                 .compatible = "lg,lp079qx1-sp0v",
1668                 .data = &lg_lp079qx1_sp0v,
1669         }, {
1670                 .compatible = "lg,lp097qx1-spa1",
1671                 .data = &lg_lp097qx1_spa1,
1672         }, {
1673                 .compatible = "lg,lp120up1",
1674                 .data = &lg_lp120up1,
1675         }, {
1676                 .compatible = "lg,lp129qe",
1677                 .data = &lg_lp129qe,
1678         }, {
1679                 .compatible = "nec,nl12880bc20-05",
1680                 .data = &nec_nl12880bc20_05,
1681         }, {
1682                 .compatible = "nec,nl4827hc19-05b",
1683                 .data = &nec_nl4827hc19_05b,
1684         }, {
1685                 .compatible = "netron-dy,e231732",
1686                 .data = &netron_dy_e231732,
1687         }, {
1688                 .compatible = "nlt,nl192108ac18-02d",
1689                 .data = &nlt_nl192108ac18_02d,
1690         }, {
1691                 .compatible = "nvd,9128",
1692                 .data = &nvd_9128,
1693         }, {
1694                 .compatible = "okaya,rs800480t-7x0gp",
1695                 .data = &okaya_rs800480t_7x0gp,
1696         }, {
1697                 .compatible = "olimex,lcd-olinuxino-43-ts",
1698                 .data = &olimex_lcd_olinuxino_43ts,
1699         }, {
1700                 .compatible = "ontat,yx700wv03",
1701                 .data = &ontat_yx700wv03,
1702         }, {
1703                 .compatible = "ortustech,com43h4m85ulc",
1704                 .data = &ortustech_com43h4m85ulc,
1705         }, {
1706                 .compatible = "qiaodian,qd43003c0-40",
1707                 .data = &qd43003c0_40,
1708         }, {
1709                 .compatible = "samsung,lsn122dl01-c01",
1710                 .data = &samsung_lsn122dl01_c01,
1711         }, {
1712                 .compatible = "samsung,ltn101nt05",
1713                 .data = &samsung_ltn101nt05,
1714         }, {
1715                 .compatible = "samsung,ltn140at29-301",
1716                 .data = &samsung_ltn140at29_301,
1717         }, {
1718                 .compatible = "sharp,lq101k1ly04",
1719                 .data = &sharp_lq101k1ly04,
1720         }, {
1721                 .compatible = "sharp,lq123p1jx31",
1722                 .data = &sharp_lq123p1jx31,
1723         }, {
1724                 .compatible = "sharp,lq150x1lg11",
1725                 .data = &sharp_lq150x1lg11,
1726         }, {
1727                 .compatible = "shelly,sca07010-bfn-lnn",
1728                 .data = &shelly_sca07010_bfn_lnn,
1729         }, {
1730                 .compatible = "starry,kr122ea0sra",
1731                 .data = &starry_kr122ea0sra,
1732         }, {
1733                 .compatible = "tianma,tm070jdhg30",
1734                 .data = &tianma_tm070jdhg30,
1735         }, {
1736                 .compatible = "tpk,f07a-0102",
1737                 .data = &tpk_f07a_0102,
1738         }, {
1739                 .compatible = "tpk,f10a-0102",
1740                 .data = &tpk_f10a_0102,
1741         }, {
1742                 .compatible = "urt,umsh-8596md-t",
1743                 .data = &urt_umsh_8596md_parallel,
1744         }, {
1745                 .compatible = "urt,umsh-8596md-1t",
1746                 .data = &urt_umsh_8596md_parallel,
1747         }, {
1748                 .compatible = "urt,umsh-8596md-7t",
1749                 .data = &urt_umsh_8596md_parallel,
1750         }, {
1751                 .compatible = "urt,umsh-8596md-11t",
1752                 .data = &urt_umsh_8596md_lvds,
1753         }, {
1754                 .compatible = "urt,umsh-8596md-19t",
1755                 .data = &urt_umsh_8596md_lvds,
1756         }, {
1757                 .compatible = "urt,umsh-8596md-20t",
1758                 .data = &urt_umsh_8596md_parallel,
1759         }, {
1760                 .compatible = "winstar,wf35ltiacd",
1761                 .data = &winstar_wf35ltiacd,
1762         }, {
1763                 /* sentinel */
1764         }
1765 };
1766 MODULE_DEVICE_TABLE(of, platform_of_match);
1767
1768 static int panel_simple_platform_probe(struct platform_device *pdev)
1769 {
1770         const struct of_device_id *id;
1771
1772         id = of_match_node(platform_of_match, pdev->dev.of_node);
1773         if (!id)
1774                 return -ENODEV;
1775
1776         return panel_simple_probe(&pdev->dev, id->data);
1777 }
1778
1779 static int panel_simple_platform_remove(struct platform_device *pdev)
1780 {
1781         return panel_simple_remove(&pdev->dev);
1782 }
1783
1784 static void panel_simple_platform_shutdown(struct platform_device *pdev)
1785 {
1786         panel_simple_shutdown(&pdev->dev);
1787 }
1788
1789 static struct platform_driver panel_simple_platform_driver = {
1790         .driver = {
1791                 .name = "panel-simple",
1792                 .of_match_table = platform_of_match,
1793         },
1794         .probe = panel_simple_platform_probe,
1795         .remove = panel_simple_platform_remove,
1796         .shutdown = panel_simple_platform_shutdown,
1797 };
1798
1799 struct panel_desc_dsi {
1800         struct panel_desc desc;
1801
1802         unsigned long flags;
1803         enum mipi_dsi_pixel_format format;
1804         unsigned int lanes;
1805 };
1806
1807 static const struct drm_display_mode auo_b080uan01_mode =
1808         SP_DISPLAY_MODE(154500, 1200, 62, 4, 62, 1920, 9, 2, 8, 60, 0);
1809
1810 static const struct panel_desc_dsi auo_b080uan01 = {
1811         .desc = {
1812                 .modes = &auo_b080uan01_mode,
1813                 .num_modes = 1,
1814                 .bpc = 8,
1815                 .size = {
1816                         .width = 108,
1817                         .height = 272,
1818                 },
1819         },
1820         .flags = MIPI_DSI_MODE_VIDEO | MIPI_DSI_CLOCK_NON_CONTINUOUS,
1821         .format = MIPI_DSI_FMT_RGB888,
1822         .lanes = 4,
1823 };
1824
1825 static const struct drm_display_mode boe_tv080wum_nl0_mode =
1826         SP_DISPLAY_MODE(160000, 1200, 120, 20, 21, 1920, 21, 3, 18, 60,
1827                          DRM_MODE_FLAG_NVSYNC | DRM_MODE_FLAG_NHSYNC);
1828
1829 static const struct panel_desc_dsi boe_tv080wum_nl0 = {
1830         .desc = {
1831                 .modes = &boe_tv080wum_nl0_mode,
1832                 .num_modes = 1,
1833                 .size = {
1834                         .width = 107,
1835                         .height = 172,
1836                 },
1837         },
1838         .flags = MIPI_DSI_MODE_VIDEO |
1839                  MIPI_DSI_MODE_VIDEO_BURST |
1840                  MIPI_DSI_MODE_VIDEO_SYNC_PULSE,
1841         .format = MIPI_DSI_FMT_RGB888,
1842         .lanes = 4,
1843 };
1844
1845 static const struct drm_display_mode lg_ld070wx3_sl01_mode =
1846         SP_DISPLAY_MODE(71000, 800, 32, 1, 57, 1280, 28, 1, 14, 60, 0);
1847
1848 static const struct panel_desc_dsi lg_ld070wx3_sl01 = {
1849         .desc = {
1850                 .modes = &lg_ld070wx3_sl01_mode,
1851                 .num_modes = 1,
1852                 .bpc = 8,
1853                 .size = {
1854                         .width = 94,
1855                         .height = 151,
1856                 },
1857         },
1858         .flags = MIPI_DSI_MODE_VIDEO | MIPI_DSI_CLOCK_NON_CONTINUOUS,
1859         .format = MIPI_DSI_FMT_RGB888,
1860         .lanes = 4,
1861 };
1862
1863 static const struct drm_display_mode lg_lh500wx1_sd03_mode =
1864         SP_DISPLAY_MODE(67000, 720, 12, 4, 112, 1280, 8, 4, 12, 60, 0);
1865
1866 static const struct panel_desc_dsi lg_lh500wx1_sd03 = {
1867         .desc = {
1868                 .modes = &lg_lh500wx1_sd03_mode,
1869                 .num_modes = 1,
1870                 .bpc = 8,
1871                 .size = {
1872                         .width = 62,
1873                         .height = 110,
1874                 },
1875         },
1876         .flags = MIPI_DSI_MODE_VIDEO,
1877         .format = MIPI_DSI_FMT_RGB888,
1878         .lanes = 4,
1879 };
1880
1881 static const struct drm_display_mode panasonic_vvx10f004b00_mode =
1882         SP_DISPLAY_MODE(157200, 1920, 154, 16, 32, 1200, 17, 2, 16, 60, 0);
1883
1884 static const struct panel_desc_dsi panasonic_vvx10f004b00 = {
1885         .desc = {
1886                 .modes = &panasonic_vvx10f004b00_mode,
1887                 .num_modes = 1,
1888                 .bpc = 8,
1889                 .size = {
1890                         .width = 217,
1891                         .height = 136,
1892                 },
1893         },
1894         .flags = MIPI_DSI_MODE_VIDEO | MIPI_DSI_MODE_VIDEO_SYNC_PULSE |
1895                  MIPI_DSI_CLOCK_NON_CONTINUOUS,
1896         .format = MIPI_DSI_FMT_RGB888,
1897         .lanes = 4,
1898 };
1899
1900 static const struct of_device_id dsi_of_match[] = {
1901         {
1902                 .compatible = "auo,b080uan01",
1903                 .data = &auo_b080uan01
1904         }, {
1905                 .compatible = "boe,tv080wum-nl0",
1906                 .data = &boe_tv080wum_nl0
1907         }, {
1908                 .compatible = "lg,ld070wx3-sl01",
1909                 .data = &lg_ld070wx3_sl01
1910         }, {
1911                 .compatible = "lg,lh500wx1-sd03",
1912                 .data = &lg_lh500wx1_sd03
1913         }, {
1914                 .compatible = "panasonic,vvx10f004b00",
1915                 .data = &panasonic_vvx10f004b00
1916         }, {
1917                 /* sentinel */
1918         }
1919 };
1920 MODULE_DEVICE_TABLE(of, dsi_of_match);
1921
1922 static int panel_simple_dsi_probe(struct mipi_dsi_device *dsi)
1923 {
1924         const struct panel_desc_dsi *desc;
1925         const struct of_device_id *id;
1926         int err;
1927
1928         id = of_match_node(dsi_of_match, dsi->dev.of_node);
1929         if (!id)
1930                 return -ENODEV;
1931
1932         desc = id->data;
1933
1934         err = panel_simple_probe(&dsi->dev, &desc->desc);
1935         if (err < 0)
1936                 return err;
1937
1938         dsi->mode_flags = desc->flags;
1939         dsi->format = desc->format;
1940         dsi->lanes = desc->lanes;
1941
1942         return mipi_dsi_attach(dsi);
1943 }
1944
1945 static int panel_simple_dsi_remove(struct mipi_dsi_device *dsi)
1946 {
1947         int err;
1948
1949         err = mipi_dsi_detach(dsi);
1950         if (err < 0)
1951                 dev_err(&dsi->dev, "failed to detach from DSI host: %d\n", err);
1952
1953         return panel_simple_remove(&dsi->dev);
1954 }
1955
1956 static void panel_simple_dsi_shutdown(struct mipi_dsi_device *dsi)
1957 {
1958         panel_simple_shutdown(&dsi->dev);
1959 }
1960
1961 static struct mipi_dsi_driver panel_simple_dsi_driver = {
1962         .driver = {
1963                 .name = "panel-simple-dsi",
1964                 .of_match_table = dsi_of_match,
1965         },
1966         .probe = panel_simple_dsi_probe,
1967         .remove = panel_simple_dsi_remove,
1968         .shutdown = panel_simple_dsi_shutdown,
1969 };
1970
1971 static int __init panel_simple_init(void)
1972 {
1973         int err;
1974
1975         err = platform_driver_register(&panel_simple_platform_driver);
1976         if (err < 0)
1977                 return err;
1978
1979         if (IS_ENABLED(CONFIG_DRM_MIPI_DSI)) {
1980                 err = mipi_dsi_driver_register(&panel_simple_dsi_driver);
1981                 if (err < 0)
1982                         return err;
1983         }
1984
1985         return 0;
1986 }
1987 module_init(panel_simple_init);
1988
1989 static void __exit panel_simple_exit(void)
1990 {
1991         if (IS_ENABLED(CONFIG_DRM_MIPI_DSI))
1992                 mipi_dsi_driver_unregister(&panel_simple_dsi_driver);
1993
1994         platform_driver_unregister(&panel_simple_platform_driver);
1995 }
1996 module_exit(panel_simple_exit);
1997
1998 MODULE_AUTHOR("Thierry Reding <treding@nvidia.com>");
1999 MODULE_DESCRIPTION("DRM Driver for Simple Panels");
2000 MODULE_LICENSE("GPL and additional rights");