drm/panel: simple: Add support for AUO B125HAN03.1 1920x1080 panel
[firefly-linux-kernel-4.4.55.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/of_display_timing.h>
38 #include <video/videomode.h>
39
40 struct panel_desc {
41         const struct drm_display_mode *modes;
42         unsigned int num_modes;
43         const struct display_timing *timings;
44         unsigned int num_timings;
45
46         unsigned int bpc;
47
48         struct {
49                 unsigned int width;
50                 unsigned int height;
51         } size;
52
53         /**
54          * @prepare: the time (in milliseconds) that it takes for the panel to
55          *           become ready and start receiving video data
56          * @enable: the time (in milliseconds) that it takes for the panel to
57          *          display the first valid frame after starting to receive
58          *          video data
59          * @disable: the time (in milliseconds) that it takes for the panel to
60          *           turn the display off (no content is visible)
61          * @unprepare: the time (in milliseconds) that it takes for the panel
62          *             to power itself down completely
63          */
64         struct {
65                 unsigned int prepare;
66                 unsigned int enable;
67                 unsigned int disable;
68                 unsigned int unprepare;
69         } delay;
70
71         u32 bus_format;
72 };
73
74 struct panel_simple {
75         struct drm_panel base;
76         bool prepared;
77         bool enabled;
78
79         struct device *dev;
80         const struct panel_desc *desc;
81
82         struct backlight_device *backlight;
83         struct regulator *supply;
84         struct i2c_adapter *ddc;
85
86         struct gpio_desc *enable_gpio;
87 };
88
89 static inline struct panel_simple *to_panel_simple(struct drm_panel *panel)
90 {
91         return container_of(panel, struct panel_simple, base);
92 }
93
94 static int panel_simple_get_fixed_modes(struct panel_simple *panel)
95 {
96         struct drm_connector *connector = panel->base.connector;
97         struct drm_device *drm = panel->base.drm;
98         struct drm_display_mode *mode;
99         unsigned int i, num = 0;
100
101         if (!panel->desc)
102                 return 0;
103
104         for (i = 0; i < panel->desc->num_timings; i++) {
105                 const struct display_timing *dt = &panel->desc->timings[i];
106                 struct videomode vm;
107
108                 videomode_from_timing(dt, &vm);
109                 mode = drm_mode_create(drm);
110                 if (!mode) {
111                         dev_err(drm->dev, "failed to add mode %ux%u\n",
112                                 dt->hactive.typ, dt->vactive.typ);
113                         continue;
114                 }
115
116                 drm_display_mode_from_videomode(&vm, mode);
117                 drm_mode_set_name(mode);
118
119                 drm_mode_probed_add(connector, mode);
120                 num++;
121         }
122
123         for (i = 0; i < panel->desc->num_modes; i++) {
124                 const struct drm_display_mode *m = &panel->desc->modes[i];
125
126                 mode = drm_mode_duplicate(drm, m);
127                 if (!mode) {
128                         dev_err(drm->dev, "failed to add mode %ux%u@%u\n",
129                                 m->hdisplay, m->vdisplay, m->vrefresh);
130                         continue;
131                 }
132
133                 drm_mode_set_name(mode);
134
135                 drm_mode_probed_add(connector, mode);
136                 num++;
137         }
138
139         connector->display_info.bpc = panel->desc->bpc;
140         connector->display_info.width_mm = panel->desc->size.width;
141         connector->display_info.height_mm = panel->desc->size.height;
142         if (panel->desc->bus_format)
143                 drm_display_info_set_bus_formats(&connector->display_info,
144                                                  &panel->desc->bus_format, 1);
145
146         return num;
147 }
148
149 static int panel_simple_of_get_native_mode(struct panel_simple *panel)
150 {
151         struct drm_connector *connector = panel->base.connector;
152         struct drm_device *drm = panel->base.drm;
153         struct drm_display_mode *mode;
154         struct device_node *timings_np;
155         int ret;
156
157         timings_np = of_get_child_by_name(panel->dev->of_node,
158                                           "display-timings");
159         if (!timings_np) {
160                 dev_dbg(panel->dev, "failed to find display-timings node\n");
161                 return 0;
162         }
163
164         of_node_put(timings_np);
165         mode = drm_mode_create(drm);
166         if (!mode)
167                 return 0;
168
169         ret = of_get_drm_display_mode(panel->dev->of_node, mode,
170                                       OF_USE_NATIVE_MODE);
171         if (ret) {
172                 dev_dbg(panel->dev, "failed to find dts display timings\n");
173                 drm_mode_destroy(drm, mode);
174                 return 0;
175         }
176
177         drm_mode_set_name(mode);
178         mode->type |= DRM_MODE_TYPE_PREFERRED;
179         drm_mode_probed_add(connector, mode);
180
181         return 1;
182 }
183
184 static int panel_simple_disable(struct drm_panel *panel)
185 {
186         struct panel_simple *p = to_panel_simple(panel);
187
188         if (!p->enabled)
189                 return 0;
190
191         if (p->backlight) {
192                 p->backlight->props.power = FB_BLANK_POWERDOWN;
193                 backlight_update_status(p->backlight);
194         }
195
196         if (p->desc && p->desc->delay.disable)
197                 msleep(p->desc->delay.disable);
198
199         p->enabled = false;
200
201         return 0;
202 }
203
204 static int panel_simple_unprepare(struct drm_panel *panel)
205 {
206         struct panel_simple *p = to_panel_simple(panel);
207
208         if (!p->prepared)
209                 return 0;
210
211         if (p->enable_gpio)
212                 gpiod_direction_output(p->enable_gpio, 0);
213
214         regulator_disable(p->supply);
215
216         if (p->desc && p->desc->delay.unprepare)
217                 msleep(p->desc->delay.unprepare);
218
219         p->prepared = false;
220
221         return 0;
222 }
223
224 static int panel_simple_prepare(struct drm_panel *panel)
225 {
226         struct panel_simple *p = to_panel_simple(panel);
227         int err;
228
229         if (p->prepared)
230                 return 0;
231
232         err = regulator_enable(p->supply);
233         if (err < 0) {
234                 dev_err(panel->dev, "failed to enable supply: %d\n", err);
235                 return err;
236         }
237
238         if (p->enable_gpio)
239                 gpiod_direction_output(p->enable_gpio, 1);
240
241         if (p->desc && p->desc->delay.prepare)
242                 msleep(p->desc->delay.prepare);
243
244         p->prepared = true;
245
246         return 0;
247 }
248
249 static int panel_simple_enable(struct drm_panel *panel)
250 {
251         struct panel_simple *p = to_panel_simple(panel);
252
253         if (p->enabled)
254                 return 0;
255
256         if (p->desc && p->desc->delay.enable)
257                 msleep(p->desc->delay.enable);
258
259         if (p->backlight) {
260                 p->backlight->props.power = FB_BLANK_UNBLANK;
261                 backlight_update_status(p->backlight);
262         }
263
264         p->enabled = true;
265
266         return 0;
267 }
268
269 static int panel_simple_get_modes(struct drm_panel *panel)
270 {
271         struct panel_simple *p = to_panel_simple(panel);
272         int num = 0;
273
274         /* probe EDID if a DDC bus is available */
275         if (p->ddc) {
276                 struct edid *edid = drm_get_edid(panel->connector, p->ddc);
277                 drm_mode_connector_update_edid_property(panel->connector, edid);
278                 if (edid) {
279                         num += drm_add_edid_modes(panel->connector, edid);
280                         kfree(edid);
281                 }
282         }
283
284         /* add hard-coded panel modes */
285         num += panel_simple_get_fixed_modes(p);
286
287         /* add device node plane modes */
288         num += panel_simple_of_get_native_mode(p);
289
290         return num;
291 }
292
293 static int panel_simple_get_timings(struct drm_panel *panel,
294                                     unsigned int num_timings,
295                                     struct display_timing *timings)
296 {
297         struct panel_simple *p = to_panel_simple(panel);
298         unsigned int i;
299
300         if (!p->desc)
301                 return 0;
302
303         if (p->desc->num_timings < num_timings)
304                 num_timings = p->desc->num_timings;
305
306         if (timings)
307                 for (i = 0; i < num_timings; i++)
308                         timings[i] = p->desc->timings[i];
309
310         return p->desc->num_timings;
311 }
312
313 static const struct drm_panel_funcs panel_simple_funcs = {
314         .disable = panel_simple_disable,
315         .unprepare = panel_simple_unprepare,
316         .prepare = panel_simple_prepare,
317         .enable = panel_simple_enable,
318         .get_modes = panel_simple_get_modes,
319         .get_timings = panel_simple_get_timings,
320 };
321
322 static int panel_simple_probe(struct device *dev, const struct panel_desc *desc)
323 {
324         struct device_node *backlight, *ddc;
325         struct panel_simple *panel;
326         int err;
327
328         panel = devm_kzalloc(dev, sizeof(*panel), GFP_KERNEL);
329         if (!panel)
330                 return -ENOMEM;
331
332         panel->enabled = false;
333         panel->prepared = false;
334         panel->desc = desc;
335         panel->dev = dev;
336
337         panel->supply = devm_regulator_get(dev, "power");
338         if (IS_ERR(panel->supply))
339                 return PTR_ERR(panel->supply);
340
341         panel->enable_gpio = devm_gpiod_get_optional(dev, "enable", 0);
342         if (IS_ERR(panel->enable_gpio)) {
343                 err = PTR_ERR(panel->enable_gpio);
344                 dev_err(dev, "failed to request GPIO: %d\n", err);
345                 return err;
346         }
347
348         backlight = of_parse_phandle(dev->of_node, "backlight", 0);
349         if (backlight) {
350                 panel->backlight = of_find_backlight_by_node(backlight);
351                 of_node_put(backlight);
352
353                 if (!panel->backlight)
354                         return -EPROBE_DEFER;
355         }
356
357         ddc = of_parse_phandle(dev->of_node, "ddc-i2c-bus", 0);
358         if (ddc) {
359                 panel->ddc = of_find_i2c_adapter_by_node(ddc);
360                 of_node_put(ddc);
361
362                 if (!panel->ddc) {
363                         err = -EPROBE_DEFER;
364                         goto free_backlight;
365                 }
366         }
367
368         drm_panel_init(&panel->base);
369         panel->base.dev = dev;
370         panel->base.funcs = &panel_simple_funcs;
371
372         err = drm_panel_add(&panel->base);
373         if (err < 0)
374                 goto free_ddc;
375
376         dev_set_drvdata(dev, panel);
377
378         return 0;
379
380 free_ddc:
381         if (panel->ddc)
382                 put_device(&panel->ddc->dev);
383 free_backlight:
384         if (panel->backlight)
385                 put_device(&panel->backlight->dev);
386
387         return err;
388 }
389
390 static int panel_simple_remove(struct device *dev)
391 {
392         struct panel_simple *panel = dev_get_drvdata(dev);
393
394         drm_panel_detach(&panel->base);
395         drm_panel_remove(&panel->base);
396
397         panel_simple_disable(&panel->base);
398
399         if (panel->ddc)
400                 put_device(&panel->ddc->dev);
401
402         if (panel->backlight)
403                 put_device(&panel->backlight->dev);
404
405         return 0;
406 }
407
408 static void panel_simple_shutdown(struct device *dev)
409 {
410         struct panel_simple *panel = dev_get_drvdata(dev);
411
412         panel_simple_disable(&panel->base);
413 }
414
415 static const struct drm_display_mode ampire_am800480r3tmqwa1h_mode = {
416         .clock = 33333,
417         .hdisplay = 800,
418         .hsync_start = 800 + 0,
419         .hsync_end = 800 + 0 + 255,
420         .htotal = 800 + 0 + 255 + 0,
421         .vdisplay = 480,
422         .vsync_start = 480 + 2,
423         .vsync_end = 480 + 2 + 45,
424         .vtotal = 480 + 2 + 45 + 0,
425         .vrefresh = 60,
426         .flags = DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC,
427 };
428
429 static const struct panel_desc ampire_am800480r3tmqwa1h = {
430         .modes = &ampire_am800480r3tmqwa1h_mode,
431         .num_modes = 1,
432         .bpc = 6,
433         .size = {
434                 .width = 152,
435                 .height = 91,
436         },
437         .bus_format = MEDIA_BUS_FMT_RGB666_1X18,
438 };
439
440 static const struct drm_display_mode auo_b101aw03_mode = {
441         .clock = 51450,
442         .hdisplay = 1024,
443         .hsync_start = 1024 + 156,
444         .hsync_end = 1024 + 156 + 8,
445         .htotal = 1024 + 156 + 8 + 156,
446         .vdisplay = 600,
447         .vsync_start = 600 + 16,
448         .vsync_end = 600 + 16 + 6,
449         .vtotal = 600 + 16 + 6 + 16,
450         .vrefresh = 60,
451 };
452
453 static const struct panel_desc auo_b101aw03 = {
454         .modes = &auo_b101aw03_mode,
455         .num_modes = 1,
456         .bpc = 6,
457         .size = {
458                 .width = 223,
459                 .height = 125,
460         },
461 };
462
463 static const struct drm_display_mode auo_b101ean01_mode = {
464         .clock = 72500,
465         .hdisplay = 1280,
466         .hsync_start = 1280 + 119,
467         .hsync_end = 1280 + 119 + 32,
468         .htotal = 1280 + 119 + 32 + 21,
469         .vdisplay = 800,
470         .vsync_start = 800 + 4,
471         .vsync_end = 800 + 4 + 20,
472         .vtotal = 800 + 4 + 20 + 8,
473         .vrefresh = 60,
474 };
475
476 static const struct panel_desc auo_b101ean01 = {
477         .modes = &auo_b101ean01_mode,
478         .num_modes = 1,
479         .bpc = 6,
480         .size = {
481                 .width = 217,
482                 .height = 136,
483         },
484 };
485
486 static const struct drm_display_mode auo_b101ew05_mode = {
487         .clock = 71000,
488         .hdisplay = 1280,
489         .hsync_start = 1280 + 18,
490         .hsync_end = 1280 + 18 + 10,
491         .htotal = 1280 + 18 + 10 + 100,
492         .vdisplay = 800,
493         .vsync_start = 800 + 6,
494         .vsync_end = 800 + 6 + 2,
495         .vtotal = 800 + 6 + 2 + 8,
496         .vrefresh = 60,
497 };
498
499 static const struct panel_desc auo_b101ew05 = {
500         .modes = &auo_b101ew05_mode,
501         .num_modes = 1,
502         .bpc = 6,
503         .size = {
504                 .width = 217,
505                 .height = 136,
506         },
507 };
508
509 static const struct drm_display_mode auo_b101xtn01_mode = {
510         .clock = 72000,
511         .hdisplay = 1366,
512         .hsync_start = 1366 + 20,
513         .hsync_end = 1366 + 20 + 70,
514         .htotal = 1366 + 20 + 70,
515         .vdisplay = 768,
516         .vsync_start = 768 + 14,
517         .vsync_end = 768 + 14 + 42,
518         .vtotal = 768 + 14 + 42,
519         .vrefresh = 60,
520         .flags = DRM_MODE_FLAG_NVSYNC | DRM_MODE_FLAG_NHSYNC,
521 };
522
523 static const struct panel_desc auo_b101xtn01 = {
524         .modes = &auo_b101xtn01_mode,
525         .num_modes = 1,
526         .bpc = 6,
527         .size = {
528                 .width = 223,
529                 .height = 125,
530         },
531 };
532
533 static const struct drm_display_mode auo_b116xw03_mode = {
534         .clock = 70589,
535         .hdisplay = 1366,
536         .hsync_start = 1366 + 40,
537         .hsync_end = 1366 + 40 + 40,
538         .htotal = 1366 + 40 + 40 + 32,
539         .vdisplay = 768,
540         .vsync_start = 768 + 10,
541         .vsync_end = 768 + 10 + 12,
542         .vtotal = 768 + 10 + 12 + 6,
543         .vrefresh = 60,
544 };
545
546 static const struct panel_desc auo_b116xw03 = {
547         .modes = &auo_b116xw03_mode,
548         .num_modes = 1,
549         .bpc = 6,
550         .size = {
551                 .width = 256,
552                 .height = 144,
553         },
554 };
555
556 static const struct drm_display_mode auo_b125han03_mode = {
557         .clock = 141000,
558         .hdisplay = 1920,
559         .hsync_start = 1920 + 88,
560         .hsync_end = 1920 + 88 + 60,
561         .htotal = 1920 + 88 + 60 + 36,
562         .vdisplay = 1080,
563         .vsync_start = 1080 + 12,
564         .vsync_end = 1080 + 12 + 4,
565         .vtotal = 1080 + 12 + 4 + 20,
566         .vrefresh = 60,
567         .flags = DRM_MODE_FLAG_NVSYNC | DRM_MODE_FLAG_NHSYNC,
568 };
569
570 static const struct panel_desc auo_b125han03 = {
571         .modes = &auo_b125han03_mode,
572         .num_modes = 1,
573         .bpc = 6,
574         .size = {
575                 .width = 276,
576                 .height = 156,
577         },
578         .bus_format = MEDIA_BUS_FMT_RGB666_1X18,
579 };
580
581 static const struct drm_display_mode auo_b133xtn01_mode = {
582         .clock = 69500,
583         .hdisplay = 1366,
584         .hsync_start = 1366 + 48,
585         .hsync_end = 1366 + 48 + 32,
586         .htotal = 1366 + 48 + 32 + 20,
587         .vdisplay = 768,
588         .vsync_start = 768 + 3,
589         .vsync_end = 768 + 3 + 6,
590         .vtotal = 768 + 3 + 6 + 13,
591         .vrefresh = 60,
592 };
593
594 static const struct panel_desc auo_b133xtn01 = {
595         .modes = &auo_b133xtn01_mode,
596         .num_modes = 1,
597         .bpc = 6,
598         .size = {
599                 .width = 293,
600                 .height = 165,
601         },
602 };
603
604 static const struct drm_display_mode auo_b133htn01_mode = {
605         .clock = 150660,
606         .hdisplay = 1920,
607         .hsync_start = 1920 + 172,
608         .hsync_end = 1920 + 172 + 80,
609         .htotal = 1920 + 172 + 80 + 60,
610         .vdisplay = 1080,
611         .vsync_start = 1080 + 25,
612         .vsync_end = 1080 + 25 + 10,
613         .vtotal = 1080 + 25 + 10 + 10,
614         .vrefresh = 60,
615 };
616
617 static const struct panel_desc auo_b133htn01 = {
618         .modes = &auo_b133htn01_mode,
619         .num_modes = 1,
620         .bpc = 6,
621         .size = {
622                 .width = 293,
623                 .height = 165,
624         },
625         .delay = {
626                 .prepare = 105,
627                 .enable = 20,
628                 .unprepare = 50,
629         },
630 };
631
632 static const struct drm_display_mode avic_tm070ddh03_mode = {
633         .clock = 51200,
634         .hdisplay = 1024,
635         .hsync_start = 1024 + 160,
636         .hsync_end = 1024 + 160 + 4,
637         .htotal = 1024 + 160 + 4 + 156,
638         .vdisplay = 600,
639         .vsync_start = 600 + 17,
640         .vsync_end = 600 + 17 + 1,
641         .vtotal = 600 + 17 + 1 + 17,
642         .vrefresh = 60,
643 };
644
645 static const struct panel_desc avic_tm070ddh03 = {
646         .modes = &avic_tm070ddh03_mode,
647         .num_modes = 1,
648         .bpc = 8,
649         .size = {
650                 .width = 154,
651                 .height = 90,
652         },
653         .delay = {
654                 .prepare = 20,
655                 .enable = 200,
656                 .disable = 200,
657         },
658 };
659
660 static const struct drm_display_mode boe_nv125fhm_n73_mode = {
661         .clock = 72300,
662         .hdisplay = 1366,
663         .hsync_start = 1366 + 80,
664         .hsync_end = 1366 + 80 + 20,
665         .htotal = 1366 + 80 + 20 + 60,
666         .vdisplay = 768,
667         .vsync_start = 768 + 12,
668         .vsync_end = 768 + 12 + 2,
669         .vtotal = 768 + 12 + 2 + 8,
670         .vrefresh = 60,
671         .flags = DRM_MODE_FLAG_NVSYNC | DRM_MODE_FLAG_NHSYNC,
672 };
673
674 static const struct panel_desc boe_nv125fhm_n73 = {
675         .modes = &boe_nv125fhm_n73_mode,
676         .num_modes = 1,
677         .bpc = 6,
678         .size = {
679                 .width = 276,
680                 .height = 156,
681         },
682         .delay = {
683                 .unprepare = 160,
684         },
685         .bus_format = MEDIA_BUS_FMT_RGB666_1X18,
686 };
687
688 static const struct drm_display_mode chunghwa_claa070wp03xg_mode = {
689         .clock = 67000,
690         .hdisplay = 800,
691         .hsync_start = 800 + 24,
692         .hsync_end = 800 + 24 + 16,
693         .htotal = 800 + 24 + 16 + 24,
694         .vdisplay = 1280,
695         .vsync_start = 1280 + 2,
696         .vsync_end = 1280 + 2 + 2,
697         .vtotal = 1280 + 2 + 2 + 4,
698         .vrefresh = 60,
699 };
700
701 static const struct panel_desc chunghwa_claa070wp03xg = {
702         .modes = &chunghwa_claa070wp03xg_mode,
703         .num_modes = 1,
704         .bpc = 6,
705         .size = {
706                 .width = 94,
707                 .height = 151,
708         },
709 };
710
711 static const struct drm_display_mode chunghwa_claa101wa01a_mode = {
712         .clock = 72070,
713         .hdisplay = 1366,
714         .hsync_start = 1366 + 58,
715         .hsync_end = 1366 + 58 + 58,
716         .htotal = 1366 + 58 + 58 + 58,
717         .vdisplay = 768,
718         .vsync_start = 768 + 4,
719         .vsync_end = 768 + 4 + 4,
720         .vtotal = 768 + 4 + 4 + 4,
721         .vrefresh = 60,
722 };
723
724 static const struct panel_desc chunghwa_claa101wa01a = {
725         .modes = &chunghwa_claa101wa01a_mode,
726         .num_modes = 1,
727         .bpc = 6,
728         .size = {
729                 .width = 220,
730                 .height = 120,
731         },
732 };
733
734 static const struct drm_display_mode chunghwa_claa101wb01_mode = {
735         .clock = 69300,
736         .hdisplay = 1366,
737         .hsync_start = 1366 + 48,
738         .hsync_end = 1366 + 48 + 32,
739         .htotal = 1366 + 48 + 32 + 20,
740         .vdisplay = 768,
741         .vsync_start = 768 + 16,
742         .vsync_end = 768 + 16 + 8,
743         .vtotal = 768 + 16 + 8 + 16,
744         .vrefresh = 60,
745 };
746
747 static const struct panel_desc chunghwa_claa101wb01 = {
748         .modes = &chunghwa_claa101wb01_mode,
749         .num_modes = 1,
750         .bpc = 6,
751         .size = {
752                 .width = 223,
753                 .height = 125,
754         },
755 };
756
757 static const struct drm_display_mode edt_et057090dhu_mode = {
758         .clock = 25175,
759         .hdisplay = 640,
760         .hsync_start = 640 + 16,
761         .hsync_end = 640 + 16 + 30,
762         .htotal = 640 + 16 + 30 + 114,
763         .vdisplay = 480,
764         .vsync_start = 480 + 10,
765         .vsync_end = 480 + 10 + 3,
766         .vtotal = 480 + 10 + 3 + 32,
767         .vrefresh = 60,
768         .flags = DRM_MODE_FLAG_NVSYNC | DRM_MODE_FLAG_NHSYNC,
769 };
770
771 static const struct panel_desc edt_et057090dhu = {
772         .modes = &edt_et057090dhu_mode,
773         .num_modes = 1,
774         .bpc = 6,
775         .size = {
776                 .width = 115,
777                 .height = 86,
778         },
779 };
780
781 static const struct drm_display_mode edt_etm0700g0dh6_mode = {
782         .clock = 33260,
783         .hdisplay = 800,
784         .hsync_start = 800 + 40,
785         .hsync_end = 800 + 40 + 128,
786         .htotal = 800 + 40 + 128 + 88,
787         .vdisplay = 480,
788         .vsync_start = 480 + 10,
789         .vsync_end = 480 + 10 + 2,
790         .vtotal = 480 + 10 + 2 + 33,
791         .vrefresh = 60,
792         .flags = DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC,
793 };
794
795 static const struct panel_desc edt_etm0700g0dh6 = {
796         .modes = &edt_etm0700g0dh6_mode,
797         .num_modes = 1,
798         .bpc = 6,
799         .size = {
800                 .width = 152,
801                 .height = 91,
802         },
803 };
804
805 static const struct drm_display_mode foxlink_fl500wvr00_a0t_mode = {
806         .clock = 32260,
807         .hdisplay = 800,
808         .hsync_start = 800 + 168,
809         .hsync_end = 800 + 168 + 64,
810         .htotal = 800 + 168 + 64 + 88,
811         .vdisplay = 480,
812         .vsync_start = 480 + 37,
813         .vsync_end = 480 + 37 + 2,
814         .vtotal = 480 + 37 + 2 + 8,
815         .vrefresh = 60,
816 };
817
818 static const struct panel_desc foxlink_fl500wvr00_a0t = {
819         .modes = &foxlink_fl500wvr00_a0t_mode,
820         .num_modes = 1,
821         .bpc = 8,
822         .size = {
823                 .width = 108,
824                 .height = 65,
825         },
826         .bus_format = MEDIA_BUS_FMT_RGB888_1X24,
827 };
828
829 static const struct drm_display_mode giantplus_gpg482739qs5_mode = {
830         .clock = 9000,
831         .hdisplay = 480,
832         .hsync_start = 480 + 5,
833         .hsync_end = 480 + 5 + 1,
834         .htotal = 480 + 5 + 1 + 40,
835         .vdisplay = 272,
836         .vsync_start = 272 + 8,
837         .vsync_end = 272 + 8 + 1,
838         .vtotal = 272 + 8 + 1 + 8,
839         .vrefresh = 60,
840 };
841
842 static const struct panel_desc giantplus_gpg482739qs5 = {
843         .modes = &giantplus_gpg482739qs5_mode,
844         .num_modes = 1,
845         .bpc = 8,
846         .size = {
847                 .width = 95,
848                 .height = 54,
849         },
850         .bus_format = MEDIA_BUS_FMT_RGB888_1X24,
851 };
852
853 static const struct display_timing hannstar_hsd070pww1_timing = {
854         .pixelclock = { 64300000, 71100000, 82000000 },
855         .hactive = { 1280, 1280, 1280 },
856         .hfront_porch = { 1, 1, 10 },
857         .hback_porch = { 1, 1, 10 },
858         /*
859          * According to the data sheet, the minimum horizontal blanking interval
860          * is 54 clocks (1 + 52 + 1), but tests with a Nitrogen6X have shown the
861          * minimum working horizontal blanking interval to be 60 clocks.
862          */
863         .hsync_len = { 58, 158, 661 },
864         .vactive = { 800, 800, 800 },
865         .vfront_porch = { 1, 1, 10 },
866         .vback_porch = { 1, 1, 10 },
867         .vsync_len = { 1, 21, 203 },
868         .flags = DISPLAY_FLAGS_DE_HIGH,
869 };
870
871 static const struct panel_desc hannstar_hsd070pww1 = {
872         .timings = &hannstar_hsd070pww1_timing,
873         .num_timings = 1,
874         .bpc = 6,
875         .size = {
876                 .width = 151,
877                 .height = 94,
878         },
879         .bus_format = MEDIA_BUS_FMT_RGB666_1X7X3_SPWG,
880 };
881
882 static const struct display_timing hannstar_hsd100pxn1_timing = {
883         .pixelclock = { 55000000, 65000000, 75000000 },
884         .hactive = { 1024, 1024, 1024 },
885         .hfront_porch = { 40, 40, 40 },
886         .hback_porch = { 220, 220, 220 },
887         .hsync_len = { 20, 60, 100 },
888         .vactive = { 768, 768, 768 },
889         .vfront_porch = { 7, 7, 7 },
890         .vback_porch = { 21, 21, 21 },
891         .vsync_len = { 10, 10, 10 },
892         .flags = DISPLAY_FLAGS_DE_HIGH,
893 };
894
895 static const struct panel_desc hannstar_hsd100pxn1 = {
896         .timings = &hannstar_hsd100pxn1_timing,
897         .num_timings = 1,
898         .bpc = 6,
899         .size = {
900                 .width = 203,
901                 .height = 152,
902         },
903         .bus_format = MEDIA_BUS_FMT_RGB666_1X7X3_SPWG,
904 };
905
906 static const struct drm_display_mode hitachi_tx23d38vm0caa_mode = {
907         .clock = 33333,
908         .hdisplay = 800,
909         .hsync_start = 800 + 85,
910         .hsync_end = 800 + 85 + 86,
911         .htotal = 800 + 85 + 86 + 85,
912         .vdisplay = 480,
913         .vsync_start = 480 + 16,
914         .vsync_end = 480 + 16 + 13,
915         .vtotal = 480 + 16 + 13 + 16,
916         .vrefresh = 60,
917 };
918
919 static const struct panel_desc hitachi_tx23d38vm0caa = {
920         .modes = &hitachi_tx23d38vm0caa_mode,
921         .num_modes = 1,
922         .bpc = 6,
923         .size = {
924                 .width = 195,
925                 .height = 117,
926         },
927 };
928
929 static const struct drm_display_mode innolux_at043tn24_mode = {
930         .clock = 9000,
931         .hdisplay = 480,
932         .hsync_start = 480 + 2,
933         .hsync_end = 480 + 2 + 41,
934         .htotal = 480 + 2 + 41 + 2,
935         .vdisplay = 272,
936         .vsync_start = 272 + 2,
937         .vsync_end = 272 + 2 + 11,
938         .vtotal = 272 + 2 + 11 + 2,
939         .vrefresh = 60,
940         .flags = DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC,
941 };
942
943 static const struct panel_desc innolux_at043tn24 = {
944         .modes = &innolux_at043tn24_mode,
945         .num_modes = 1,
946         .bpc = 8,
947         .size = {
948                 .width = 95,
949                 .height = 54,
950         },
951         .bus_format = MEDIA_BUS_FMT_RGB888_1X24,
952 };
953
954 static const struct drm_display_mode innolux_g121i1_l01_mode = {
955         .clock = 71000,
956         .hdisplay = 1280,
957         .hsync_start = 1280 + 64,
958         .hsync_end = 1280 + 64 + 32,
959         .htotal = 1280 + 64 + 32 + 64,
960         .vdisplay = 800,
961         .vsync_start = 800 + 9,
962         .vsync_end = 800 + 9 + 6,
963         .vtotal = 800 + 9 + 6 + 9,
964         .vrefresh = 60,
965 };
966
967 static const struct panel_desc innolux_g121i1_l01 = {
968         .modes = &innolux_g121i1_l01_mode,
969         .num_modes = 1,
970         .bpc = 6,
971         .size = {
972                 .width = 261,
973                 .height = 163,
974         },
975 };
976
977 static const struct drm_display_mode innolux_n116bge_mode = {
978         .clock = 76420,
979         .hdisplay = 1366,
980         .hsync_start = 1366 + 136,
981         .hsync_end = 1366 + 136 + 30,
982         .htotal = 1366 + 136 + 30 + 60,
983         .vdisplay = 768,
984         .vsync_start = 768 + 8,
985         .vsync_end = 768 + 8 + 12,
986         .vtotal = 768 + 8 + 12 + 12,
987         .vrefresh = 60,
988         .flags = DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC,
989 };
990
991 static const struct panel_desc innolux_n116bge = {
992         .modes = &innolux_n116bge_mode,
993         .num_modes = 1,
994         .bpc = 6,
995         .size = {
996                 .width = 256,
997                 .height = 144,
998         },
999 };
1000
1001 static const struct drm_display_mode innolux_n156bge_l21_mode = {
1002         .clock = 69300,
1003         .hdisplay = 1366,
1004         .hsync_start = 1366 + 16,
1005         .hsync_end = 1366 + 16 + 34,
1006         .htotal = 1366 + 16 + 34 + 50,
1007         .vdisplay = 768,
1008         .vsync_start = 768 + 2,
1009         .vsync_end = 768 + 2 + 6,
1010         .vtotal = 768 + 2 + 6 + 12,
1011         .vrefresh = 60,
1012 };
1013
1014 static const struct panel_desc innolux_n156bge_l21 = {
1015         .modes = &innolux_n156bge_l21_mode,
1016         .num_modes = 1,
1017         .bpc = 6,
1018         .size = {
1019                 .width = 344,
1020                 .height = 193,
1021         },
1022 };
1023
1024 static const struct drm_display_mode innolux_zj070na_01p_mode = {
1025         .clock = 51501,
1026         .hdisplay = 1024,
1027         .hsync_start = 1024 + 128,
1028         .hsync_end = 1024 + 128 + 64,
1029         .htotal = 1024 + 128 + 64 + 128,
1030         .vdisplay = 600,
1031         .vsync_start = 600 + 16,
1032         .vsync_end = 600 + 16 + 4,
1033         .vtotal = 600 + 16 + 4 + 16,
1034         .vrefresh = 60,
1035 };
1036
1037 static const struct panel_desc innolux_zj070na_01p = {
1038         .modes = &innolux_zj070na_01p_mode,
1039         .num_modes = 1,
1040         .bpc = 6,
1041         .size = {
1042                 .width = 1024,
1043                 .height = 600,
1044         },
1045 };
1046
1047 static const struct drm_display_mode lg_lb070wv8_mode = {
1048         .clock = 33246,
1049         .hdisplay = 800,
1050         .hsync_start = 800 + 88,
1051         .hsync_end = 800 + 88 + 80,
1052         .htotal = 800 + 88 + 80 + 88,
1053         .vdisplay = 480,
1054         .vsync_start = 480 + 10,
1055         .vsync_end = 480 + 10 + 25,
1056         .vtotal = 480 + 10 + 25 + 10,
1057         .vrefresh = 60,
1058 };
1059
1060 static const struct panel_desc lg_lb070wv8 = {
1061         .modes = &lg_lb070wv8_mode,
1062         .num_modes = 1,
1063         .bpc = 16,
1064         .size = {
1065                 .width = 151,
1066                 .height = 91,
1067         },
1068         .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
1069 };
1070
1071 static const struct drm_display_mode lg_lp079qx1_sp0v_mode = {
1072         .clock = 200000,
1073         .hdisplay = 1536,
1074         .hsync_start = 1536 + 12,
1075         .hsync_end = 1536 + 12 + 16,
1076         .htotal = 1536 + 12 + 16 + 48,
1077         .vdisplay = 2048,
1078         .vsync_start = 2048 + 8,
1079         .vsync_end = 2048 + 8 + 4,
1080         .vtotal = 2048 + 8 + 4 + 8,
1081         .vrefresh = 60,
1082         .flags = DRM_MODE_FLAG_NVSYNC | DRM_MODE_FLAG_NHSYNC,
1083 };
1084
1085 static const struct panel_desc lg_lp079qx1_sp0v = {
1086         .modes = &lg_lp079qx1_sp0v_mode,
1087         .num_modes = 1,
1088         .size = {
1089                 .width = 129,
1090                 .height = 171,
1091         },
1092         .bus_format = MEDIA_BUS_FMT_RGB666_1X18,
1093 };
1094
1095 static const struct drm_display_mode lg_lp097qx1_spa1_mode = {
1096         .clock = 205210,
1097         .hdisplay = 2048,
1098         .hsync_start = 2048 + 150,
1099         .hsync_end = 2048 + 150 + 5,
1100         .htotal = 2048 + 150 + 5 + 5,
1101         .vdisplay = 1536,
1102         .vsync_start = 1536 + 3,
1103         .vsync_end = 1536 + 3 + 1,
1104         .vtotal = 1536 + 3 + 1 + 9,
1105         .vrefresh = 60,
1106 };
1107
1108 static const struct panel_desc lg_lp097qx1_spa1 = {
1109         .modes = &lg_lp097qx1_spa1_mode,
1110         .num_modes = 1,
1111         .size = {
1112                 .width = 320,
1113                 .height = 187,
1114         },
1115 };
1116
1117 static const struct drm_display_mode lg_lp129qe_mode = {
1118         .clock = 285250,
1119         .hdisplay = 2560,
1120         .hsync_start = 2560 + 48,
1121         .hsync_end = 2560 + 48 + 32,
1122         .htotal = 2560 + 48 + 32 + 80,
1123         .vdisplay = 1700,
1124         .vsync_start = 1700 + 3,
1125         .vsync_end = 1700 + 3 + 10,
1126         .vtotal = 1700 + 3 + 10 + 36,
1127         .vrefresh = 60,
1128 };
1129
1130 static const struct panel_desc lg_lp129qe = {
1131         .modes = &lg_lp129qe_mode,
1132         .num_modes = 1,
1133         .bpc = 8,
1134         .size = {
1135                 .width = 272,
1136                 .height = 181,
1137         },
1138 };
1139
1140 static const struct drm_display_mode nec_nl4827hc19_05b_mode = {
1141         .clock = 10870,
1142         .hdisplay = 480,
1143         .hsync_start = 480 + 2,
1144         .hsync_end = 480 + 2 + 41,
1145         .htotal = 480 + 2 + 41 + 2,
1146         .vdisplay = 272,
1147         .vsync_start = 272 + 2,
1148         .vsync_end = 272 + 2 + 4,
1149         .vtotal = 272 + 2 + 4 + 2,
1150         .vrefresh = 74,
1151 };
1152
1153 static const struct panel_desc nec_nl4827hc19_05b = {
1154         .modes = &nec_nl4827hc19_05b_mode,
1155         .num_modes = 1,
1156         .bpc = 8,
1157         .size = {
1158                 .width = 95,
1159                 .height = 54,
1160         },
1161         .bus_format = MEDIA_BUS_FMT_RGB888_1X24
1162 };
1163
1164 static const struct display_timing okaya_rs800480t_7x0gp_timing = {
1165         .pixelclock = { 30000000, 30000000, 40000000 },
1166         .hactive = { 800, 800, 800 },
1167         .hfront_porch = { 40, 40, 40 },
1168         .hback_porch = { 40, 40, 40 },
1169         .hsync_len = { 1, 48, 48 },
1170         .vactive = { 480, 480, 480 },
1171         .vfront_porch = { 13, 13, 13 },
1172         .vback_porch = { 29, 29, 29 },
1173         .vsync_len = { 3, 3, 3 },
1174         .flags = DISPLAY_FLAGS_DE_HIGH,
1175 };
1176
1177 static const struct panel_desc okaya_rs800480t_7x0gp = {
1178         .timings = &okaya_rs800480t_7x0gp_timing,
1179         .num_timings = 1,
1180         .bpc = 6,
1181         .size = {
1182                 .width = 154,
1183                 .height = 87,
1184         },
1185         .delay = {
1186                 .prepare = 41,
1187                 .enable = 50,
1188                 .unprepare = 41,
1189                 .disable = 50,
1190         },
1191         .bus_format = MEDIA_BUS_FMT_RGB666_1X18,
1192 };
1193
1194 static const struct drm_display_mode ortustech_com43h4m85ulc_mode  = {
1195         .clock = 25000,
1196         .hdisplay = 480,
1197         .hsync_start = 480 + 10,
1198         .hsync_end = 480 + 10 + 10,
1199         .htotal = 480 + 10 + 10 + 15,
1200         .vdisplay = 800,
1201         .vsync_start = 800 + 3,
1202         .vsync_end = 800 + 3 + 3,
1203         .vtotal = 800 + 3 + 3 + 3,
1204         .vrefresh = 60,
1205 };
1206
1207 static const struct panel_desc ortustech_com43h4m85ulc = {
1208         .modes = &ortustech_com43h4m85ulc_mode,
1209         .num_modes = 1,
1210         .bpc = 8,
1211         .size = {
1212                 .width = 56,
1213                 .height = 93,
1214         },
1215         .bus_format = MEDIA_BUS_FMT_RGB888_1X24,
1216 };
1217
1218 static const struct drm_display_mode samsung_lsn122dl01_c01_mode = {
1219         .clock = 271560,
1220         .hdisplay = 2560,
1221         .hsync_start = 2560 + 48,
1222         .hsync_end = 2560 + 48 + 32,
1223         .htotal = 2560 + 48 + 32 + 80,
1224         .vdisplay = 1600,
1225         .vsync_start = 1600 + 2,
1226         .vsync_end = 1600 + 2 + 5,
1227         .vtotal = 1600 + 2 + 5 + 57,
1228         .vrefresh = 60,
1229 };
1230
1231 static const struct panel_desc samsung_lsn122dl01_c01 = {
1232         .modes = &samsung_lsn122dl01_c01_mode,
1233         .num_modes = 1,
1234         .size = {
1235                 .width = 2560,
1236                 .height = 1600,
1237         },
1238 };
1239
1240 static const struct drm_display_mode samsung_ltn101nt05_mode = {
1241         .clock = 54030,
1242         .hdisplay = 1024,
1243         .hsync_start = 1024 + 24,
1244         .hsync_end = 1024 + 24 + 136,
1245         .htotal = 1024 + 24 + 136 + 160,
1246         .vdisplay = 600,
1247         .vsync_start = 600 + 3,
1248         .vsync_end = 600 + 3 + 6,
1249         .vtotal = 600 + 3 + 6 + 61,
1250         .vrefresh = 60,
1251 };
1252
1253 static const struct panel_desc samsung_ltn101nt05 = {
1254         .modes = &samsung_ltn101nt05_mode,
1255         .num_modes = 1,
1256         .bpc = 6,
1257         .size = {
1258                 .width = 1024,
1259                 .height = 600,
1260         },
1261 };
1262
1263 static const struct drm_display_mode samsung_ltn140at29_301_mode = {
1264         .clock = 76300,
1265         .hdisplay = 1366,
1266         .hsync_start = 1366 + 64,
1267         .hsync_end = 1366 + 64 + 48,
1268         .htotal = 1366 + 64 + 48 + 128,
1269         .vdisplay = 768,
1270         .vsync_start = 768 + 2,
1271         .vsync_end = 768 + 2 + 5,
1272         .vtotal = 768 + 2 + 5 + 17,
1273         .vrefresh = 60,
1274 };
1275
1276 static const struct panel_desc samsung_ltn140at29_301 = {
1277         .modes = &samsung_ltn140at29_301_mode,
1278         .num_modes = 1,
1279         .bpc = 6,
1280         .size = {
1281                 .width = 320,
1282                 .height = 187,
1283         },
1284 };
1285
1286 static const struct drm_display_mode shelly_sca07010_bfn_lnn_mode = {
1287         .clock = 33300,
1288         .hdisplay = 800,
1289         .hsync_start = 800 + 1,
1290         .hsync_end = 800 + 1 + 64,
1291         .htotal = 800 + 1 + 64 + 64,
1292         .vdisplay = 480,
1293         .vsync_start = 480 + 1,
1294         .vsync_end = 480 + 1 + 23,
1295         .vtotal = 480 + 1 + 23 + 22,
1296         .vrefresh = 60,
1297 };
1298
1299 static const struct panel_desc shelly_sca07010_bfn_lnn = {
1300         .modes = &shelly_sca07010_bfn_lnn_mode,
1301         .num_modes = 1,
1302         .size = {
1303                 .width = 152,
1304                 .height = 91,
1305         },
1306         .bus_format = MEDIA_BUS_FMT_RGB666_1X18,
1307 };
1308
1309 static const struct of_device_id platform_of_match[] = {
1310         {
1311                 .compatible = "simple-panel",
1312                 .data = NULL,
1313         }, {
1314                 .compatible = "ampire,am800480r3tmqwa1h",
1315                 .data = &ampire_am800480r3tmqwa1h,
1316         }, {
1317                 .compatible = "auo,b101aw03",
1318                 .data = &auo_b101aw03,
1319         }, {
1320                 .compatible = "auo,b101ean01",
1321                 .data = &auo_b101ean01,
1322         }, {
1323                 .compatible = "auo,b101ew05",
1324                 .data = &auo_b101ew05,
1325         }, {
1326                 .compatible = "auo,b101xtn01",
1327                 .data = &auo_b101xtn01,
1328         }, {
1329                 .compatible = "auo,b116xw03",
1330                 .data = &auo_b116xw03,
1331         }, {
1332                 .compatible = "auo,b125han03",
1333                 .data = &auo_b125han03,
1334         }, {
1335                 .compatible = "auo,b133htn01",
1336                 .data = &auo_b133htn01,
1337         }, {
1338                 .compatible = "auo,b133xtn01",
1339                 .data = &auo_b133xtn01,
1340         }, {
1341                 .compatible = "avic,tm070ddh03",
1342                 .data = &avic_tm070ddh03,
1343         }, {
1344                 .compatible = "boe,nv125fhm-n73",
1345                 .data = &boe_nv125fhm_n73,
1346         }, {
1347                 .compatible = "chunghwa,claa070wp03xg",
1348                 .data = &chunghwa_claa070wp03xg,
1349         }, {
1350                 .compatible = "chunghwa,claa101wa01a",
1351                 .data = &chunghwa_claa101wa01a
1352         }, {
1353                 .compatible = "chunghwa,claa101wb01",
1354                 .data = &chunghwa_claa101wb01
1355         }, {
1356                 .compatible = "edt,et057090dhu",
1357                 .data = &edt_et057090dhu,
1358         }, {
1359                 .compatible = "edt,et070080dh6",
1360                 .data = &edt_etm0700g0dh6,
1361         }, {
1362                 .compatible = "edt,etm0700g0dh6",
1363                 .data = &edt_etm0700g0dh6,
1364         }, {
1365                 .compatible = "foxlink,fl500wvr00-a0t",
1366                 .data = &foxlink_fl500wvr00_a0t,
1367         }, {
1368                 .compatible = "giantplus,gpg482739qs5",
1369                 .data = &giantplus_gpg482739qs5
1370         }, {
1371                 .compatible = "hannstar,hsd070pww1",
1372                 .data = &hannstar_hsd070pww1,
1373         }, {
1374                 .compatible = "hannstar,hsd100pxn1",
1375                 .data = &hannstar_hsd100pxn1,
1376         }, {
1377                 .compatible = "hit,tx23d38vm0caa",
1378                 .data = &hitachi_tx23d38vm0caa
1379         }, {
1380                 .compatible = "innolux,at043tn24",
1381                 .data = &innolux_at043tn24,
1382         }, {
1383                 .compatible ="innolux,g121i1-l01",
1384                 .data = &innolux_g121i1_l01
1385         }, {
1386                 .compatible = "innolux,n116bge",
1387                 .data = &innolux_n116bge,
1388         }, {
1389                 .compatible = "innolux,n156bge-l21",
1390                 .data = &innolux_n156bge_l21,
1391         }, {
1392                 .compatible = "innolux,zj070na-01p",
1393                 .data = &innolux_zj070na_01p,
1394         }, {
1395                 .compatible = "lg,lb070wv8",
1396                 .data = &lg_lb070wv8,
1397         }, {
1398                 .compatible = "lg,lp079qx1-sp0v",
1399                 .data = &lg_lp079qx1_sp0v,
1400         }, {
1401                 .compatible = "lg,lp097qx1-spa1",
1402                 .data = &lg_lp097qx1_spa1,
1403         }, {
1404                 .compatible = "lg,lp129qe",
1405                 .data = &lg_lp129qe,
1406         }, {
1407                 .compatible = "nec,nl4827hc19-05b",
1408                 .data = &nec_nl4827hc19_05b,
1409         }, {
1410                 .compatible = "okaya,rs800480t-7x0gp",
1411                 .data = &okaya_rs800480t_7x0gp,
1412         }, {
1413                 .compatible = "ortustech,com43h4m85ulc",
1414                 .data = &ortustech_com43h4m85ulc,
1415         }, {
1416                 .compatible = "samsung,lsn122dl01-c01",
1417                 .data = &samsung_lsn122dl01_c01,
1418         }, {
1419                 .compatible = "samsung,ltn101nt05",
1420                 .data = &samsung_ltn101nt05,
1421         }, {
1422                 .compatible = "samsung,ltn140at29-301",
1423                 .data = &samsung_ltn140at29_301,
1424         }, {
1425                 .compatible = "shelly,sca07010-bfn-lnn",
1426                 .data = &shelly_sca07010_bfn_lnn,
1427         }, {
1428                 /* sentinel */
1429         }
1430 };
1431 MODULE_DEVICE_TABLE(of, platform_of_match);
1432
1433 static int panel_simple_platform_probe(struct platform_device *pdev)
1434 {
1435         const struct of_device_id *id;
1436
1437         id = of_match_node(platform_of_match, pdev->dev.of_node);
1438         if (!id)
1439                 return -ENODEV;
1440
1441         return panel_simple_probe(&pdev->dev, id->data);
1442 }
1443
1444 static int panel_simple_platform_remove(struct platform_device *pdev)
1445 {
1446         return panel_simple_remove(&pdev->dev);
1447 }
1448
1449 static void panel_simple_platform_shutdown(struct platform_device *pdev)
1450 {
1451         panel_simple_shutdown(&pdev->dev);
1452 }
1453
1454 static struct platform_driver panel_simple_platform_driver = {
1455         .driver = {
1456                 .name = "panel-simple",
1457                 .of_match_table = platform_of_match,
1458         },
1459         .probe = panel_simple_platform_probe,
1460         .remove = panel_simple_platform_remove,
1461         .shutdown = panel_simple_platform_shutdown,
1462 };
1463
1464 struct panel_desc_dsi {
1465         struct panel_desc desc;
1466
1467         unsigned long flags;
1468         enum mipi_dsi_pixel_format format;
1469         unsigned int lanes;
1470 };
1471
1472 static const struct drm_display_mode auo_b080uan01_mode = {
1473         .clock = 154500,
1474         .hdisplay = 1200,
1475         .hsync_start = 1200 + 62,
1476         .hsync_end = 1200 + 62 + 4,
1477         .htotal = 1200 + 62 + 4 + 62,
1478         .vdisplay = 1920,
1479         .vsync_start = 1920 + 9,
1480         .vsync_end = 1920 + 9 + 2,
1481         .vtotal = 1920 + 9 + 2 + 8,
1482         .vrefresh = 60,
1483 };
1484
1485 static const struct panel_desc_dsi auo_b080uan01 = {
1486         .desc = {
1487                 .modes = &auo_b080uan01_mode,
1488                 .num_modes = 1,
1489                 .bpc = 8,
1490                 .size = {
1491                         .width = 108,
1492                         .height = 272,
1493                 },
1494         },
1495         .flags = MIPI_DSI_MODE_VIDEO | MIPI_DSI_CLOCK_NON_CONTINUOUS,
1496         .format = MIPI_DSI_FMT_RGB888,
1497         .lanes = 4,
1498 };
1499
1500 static const struct drm_display_mode boe_tv080wum_nl0_mode = {
1501         .clock = 160000,
1502         .hdisplay = 1200,
1503         .hsync_start = 1200 + 120,
1504         .hsync_end = 1200 + 120 + 20,
1505         .htotal = 1200 + 120 + 20 + 21,
1506         .vdisplay = 1920,
1507         .vsync_start = 1920 + 21,
1508         .vsync_end = 1920 + 21 + 3,
1509         .vtotal = 1920 + 21 + 3 + 18,
1510         .vrefresh = 60,
1511         .flags = DRM_MODE_FLAG_NVSYNC | DRM_MODE_FLAG_NHSYNC,
1512 };
1513
1514 static const struct panel_desc_dsi boe_tv080wum_nl0 = {
1515         .desc = {
1516                 .modes = &boe_tv080wum_nl0_mode,
1517                 .num_modes = 1,
1518                 .size = {
1519                         .width = 107,
1520                         .height = 172,
1521                 },
1522         },
1523         .flags = MIPI_DSI_MODE_VIDEO |
1524                  MIPI_DSI_MODE_VIDEO_BURST |
1525                  MIPI_DSI_MODE_VIDEO_SYNC_PULSE,
1526         .format = MIPI_DSI_FMT_RGB888,
1527         .lanes = 4,
1528 };
1529
1530 static const struct drm_display_mode lg_ld070wx3_sl01_mode = {
1531         .clock = 71000,
1532         .hdisplay = 800,
1533         .hsync_start = 800 + 32,
1534         .hsync_end = 800 + 32 + 1,
1535         .htotal = 800 + 32 + 1 + 57,
1536         .vdisplay = 1280,
1537         .vsync_start = 1280 + 28,
1538         .vsync_end = 1280 + 28 + 1,
1539         .vtotal = 1280 + 28 + 1 + 14,
1540         .vrefresh = 60,
1541 };
1542
1543 static const struct panel_desc_dsi lg_ld070wx3_sl01 = {
1544         .desc = {
1545                 .modes = &lg_ld070wx3_sl01_mode,
1546                 .num_modes = 1,
1547                 .bpc = 8,
1548                 .size = {
1549                         .width = 94,
1550                         .height = 151,
1551                 },
1552         },
1553         .flags = MIPI_DSI_MODE_VIDEO | MIPI_DSI_CLOCK_NON_CONTINUOUS,
1554         .format = MIPI_DSI_FMT_RGB888,
1555         .lanes = 4,
1556 };
1557
1558 static const struct drm_display_mode lg_lh500wx1_sd03_mode = {
1559         .clock = 67000,
1560         .hdisplay = 720,
1561         .hsync_start = 720 + 12,
1562         .hsync_end = 720 + 12 + 4,
1563         .htotal = 720 + 12 + 4 + 112,
1564         .vdisplay = 1280,
1565         .vsync_start = 1280 + 8,
1566         .vsync_end = 1280 + 8 + 4,
1567         .vtotal = 1280 + 8 + 4 + 12,
1568         .vrefresh = 60,
1569 };
1570
1571 static const struct panel_desc_dsi lg_lh500wx1_sd03 = {
1572         .desc = {
1573                 .modes = &lg_lh500wx1_sd03_mode,
1574                 .num_modes = 1,
1575                 .bpc = 8,
1576                 .size = {
1577                         .width = 62,
1578                         .height = 110,
1579                 },
1580         },
1581         .flags = MIPI_DSI_MODE_VIDEO,
1582         .format = MIPI_DSI_FMT_RGB888,
1583         .lanes = 4,
1584 };
1585
1586 static const struct drm_display_mode panasonic_vvx10f004b00_mode = {
1587         .clock = 157200,
1588         .hdisplay = 1920,
1589         .hsync_start = 1920 + 154,
1590         .hsync_end = 1920 + 154 + 16,
1591         .htotal = 1920 + 154 + 16 + 32,
1592         .vdisplay = 1200,
1593         .vsync_start = 1200 + 17,
1594         .vsync_end = 1200 + 17 + 2,
1595         .vtotal = 1200 + 17 + 2 + 16,
1596         .vrefresh = 60,
1597 };
1598
1599 static const struct panel_desc_dsi panasonic_vvx10f004b00 = {
1600         .desc = {
1601                 .modes = &panasonic_vvx10f004b00_mode,
1602                 .num_modes = 1,
1603                 .bpc = 8,
1604                 .size = {
1605                         .width = 217,
1606                         .height = 136,
1607                 },
1608         },
1609         .flags = MIPI_DSI_MODE_VIDEO | MIPI_DSI_MODE_VIDEO_SYNC_PULSE |
1610                  MIPI_DSI_CLOCK_NON_CONTINUOUS,
1611         .format = MIPI_DSI_FMT_RGB888,
1612         .lanes = 4,
1613 };
1614
1615
1616 static const struct of_device_id dsi_of_match[] = {
1617         {
1618                 .compatible = "simple-panel-dsi",
1619                 .data = NULL
1620         }, {
1621                 .compatible = "auo,b080uan01",
1622                 .data = &auo_b080uan01
1623         }, {
1624                 .compatible = "boe,tv080wum-nl0",
1625                 .data = &boe_tv080wum_nl0
1626         }, {
1627                 .compatible = "lg,ld070wx3-sl01",
1628                 .data = &lg_ld070wx3_sl01
1629         }, {
1630                 .compatible = "lg,lh500wx1-sd03",
1631                 .data = &lg_lh500wx1_sd03
1632         }, {
1633                 .compatible = "panasonic,vvx10f004b00",
1634                 .data = &panasonic_vvx10f004b00
1635         }, {
1636                 /* sentinel */
1637         }
1638 };
1639 MODULE_DEVICE_TABLE(of, dsi_of_match);
1640
1641 static int panel_simple_dsi_probe(struct mipi_dsi_device *dsi)
1642 {
1643         const struct panel_desc_dsi *desc;
1644         const struct of_device_id *id;
1645         const struct panel_desc *pdesc;
1646         u32 val;
1647         int err;
1648
1649         id = of_match_node(dsi_of_match, dsi->dev.of_node);
1650         if (!id)
1651                 return -ENODEV;
1652
1653         desc = id->data;
1654
1655         if (desc) {
1656                 dsi->mode_flags = desc->flags;
1657                 dsi->format = desc->format;
1658                 dsi->lanes = desc->lanes;
1659                 pdesc = &desc->desc;
1660         } else {
1661                 pdesc = NULL;
1662         }
1663
1664         err = panel_simple_probe(&dsi->dev, pdesc);
1665         if (err < 0)
1666                 return err;
1667
1668         if (!of_property_read_u32(dsi->dev.of_node, "dsi,flags", &val))
1669                 dsi->mode_flags = val;
1670
1671         if (!of_property_read_u32(dsi->dev.of_node, "dsi,format", &val))
1672                 dsi->format = val;
1673
1674         if (!of_property_read_u32(dsi->dev.of_node, "dsi,lanes", &val))
1675                 dsi->lanes = val;
1676
1677         return mipi_dsi_attach(dsi);
1678 }
1679
1680 static int panel_simple_dsi_remove(struct mipi_dsi_device *dsi)
1681 {
1682         int err;
1683
1684         err = mipi_dsi_detach(dsi);
1685         if (err < 0)
1686                 dev_err(&dsi->dev, "failed to detach from DSI host: %d\n", err);
1687
1688         return panel_simple_remove(&dsi->dev);
1689 }
1690
1691 static void panel_simple_dsi_shutdown(struct mipi_dsi_device *dsi)
1692 {
1693         panel_simple_shutdown(&dsi->dev);
1694 }
1695
1696 static struct mipi_dsi_driver panel_simple_dsi_driver = {
1697         .driver = {
1698                 .name = "panel-simple-dsi",
1699                 .of_match_table = dsi_of_match,
1700         },
1701         .probe = panel_simple_dsi_probe,
1702         .remove = panel_simple_dsi_remove,
1703         .shutdown = panel_simple_dsi_shutdown,
1704 };
1705
1706 static int __init panel_simple_init(void)
1707 {
1708         int err;
1709
1710         err = platform_driver_register(&panel_simple_platform_driver);
1711         if (err < 0)
1712                 return err;
1713
1714         if (IS_ENABLED(CONFIG_DRM_MIPI_DSI)) {
1715                 err = mipi_dsi_driver_register(&panel_simple_dsi_driver);
1716                 if (err < 0)
1717                         return err;
1718         }
1719
1720         return 0;
1721 }
1722 module_init(panel_simple_init);
1723
1724 static void __exit panel_simple_exit(void)
1725 {
1726         if (IS_ENABLED(CONFIG_DRM_MIPI_DSI))
1727                 mipi_dsi_driver_unregister(&panel_simple_dsi_driver);
1728
1729         platform_driver_unregister(&panel_simple_platform_driver);
1730 }
1731 module_exit(panel_simple_exit);
1732
1733 MODULE_AUTHOR("Thierry Reding <treding@nvidia.com>");
1734 MODULE_DESCRIPTION("DRM Driver for Simple Panels");
1735 MODULE_LICENSE("GPL and additional rights");