blob: 5dc1948b4d93c88cbdbe11527f0ed7d02063a587 [file] [log] [blame]
Thierry Reding280921d2013-08-30 15:10:14 +02001/*
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>
Alexandre Courbotcfdf0542014-03-01 14:00:58 +090025#include <linux/gpio/consumer.h>
Thierry Reding280921d2013-08-30 15:10:14 +020026#include <linux/module.h>
Thierry Reding280921d2013-08-30 15:10:14 +020027#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>
Thierry Reding210fcd92013-11-22 19:27:11 +010033#include <drm/drm_mipi_dsi.h>
Thierry Reding280921d2013-08-30 15:10:14 +020034#include <drm/drm_panel.h>
35
Philipp Zabela5d3e622014-12-11 18:32:45 +010036#include <video/display_timing.h>
37#include <video/videomode.h>
38
Thierry Reding280921d2013-08-30 15:10:14 +020039struct panel_desc {
40 const struct drm_display_mode *modes;
41 unsigned int num_modes;
Philipp Zabela5d3e622014-12-11 18:32:45 +010042 const struct display_timing *timings;
43 unsigned int num_timings;
Thierry Reding280921d2013-08-30 15:10:14 +020044
Stéphane Marchesin0208d512014-06-19 18:18:28 -070045 unsigned int bpc;
46
Ulrich Ölmann85533e32015-12-04 12:31:28 +010047 /**
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 */
Thierry Reding280921d2013-08-30 15:10:14 +020051 struct {
52 unsigned int width;
53 unsigned int height;
54 } size;
Ajay Kumarf673c372014-07-31 23:12:11 +053055
56 /**
57 * @prepare: the time (in milliseconds) that it takes for the panel to
58 * become ready and start receiving video data
Douglas Anderson2ed3e952018-10-25 15:21:30 -070059 * @hpd_absent_delay: Add this to the prepare delay if we know Hot
60 * Plug Detect isn't used.
Ajay Kumarf673c372014-07-31 23:12:11 +053061 * @enable: the time (in milliseconds) that it takes for the panel to
62 * display the first valid frame after starting to receive
63 * video data
64 * @disable: the time (in milliseconds) that it takes for the panel to
65 * turn the display off (no content is visible)
66 * @unprepare: the time (in milliseconds) that it takes for the panel
67 * to power itself down completely
68 */
69 struct {
70 unsigned int prepare;
Douglas Anderson2ed3e952018-10-25 15:21:30 -070071 unsigned int hpd_absent_delay;
Ajay Kumarf673c372014-07-31 23:12:11 +053072 unsigned int enable;
73 unsigned int disable;
74 unsigned int unprepare;
75 } delay;
Boris Brezillon795f7ab2014-07-22 13:33:59 +020076
77 u32 bus_format;
Stefan Agnerf0aa0832016-02-08 11:38:14 -080078 u32 bus_flags;
Thierry Reding280921d2013-08-30 15:10:14 +020079};
80
Thierry Reding280921d2013-08-30 15:10:14 +020081struct panel_simple {
82 struct drm_panel base;
Ajay Kumar613a6332014-07-31 23:12:10 +053083 bool prepared;
Thierry Reding280921d2013-08-30 15:10:14 +020084 bool enabled;
Douglas Anderson2ed3e952018-10-25 15:21:30 -070085 bool no_hpd;
Thierry Reding280921d2013-08-30 15:10:14 +020086
87 const struct panel_desc *desc;
88
89 struct backlight_device *backlight;
90 struct regulator *supply;
91 struct i2c_adapter *ddc;
92
Alexandre Courbotcfdf0542014-03-01 14:00:58 +090093 struct gpio_desc *enable_gpio;
Thierry Reding280921d2013-08-30 15:10:14 +020094};
95
96static inline struct panel_simple *to_panel_simple(struct drm_panel *panel)
97{
98 return container_of(panel, struct panel_simple, base);
99}
100
101static int panel_simple_get_fixed_modes(struct panel_simple *panel)
102{
103 struct drm_connector *connector = panel->base.connector;
104 struct drm_device *drm = panel->base.drm;
105 struct drm_display_mode *mode;
106 unsigned int i, num = 0;
107
108 if (!panel->desc)
109 return 0;
110
Philipp Zabela5d3e622014-12-11 18:32:45 +0100111 for (i = 0; i < panel->desc->num_timings; i++) {
112 const struct display_timing *dt = &panel->desc->timings[i];
113 struct videomode vm;
114
115 videomode_from_timing(dt, &vm);
116 mode = drm_mode_create(drm);
117 if (!mode) {
118 dev_err(drm->dev, "failed to add mode %ux%u\n",
119 dt->hactive.typ, dt->vactive.typ);
120 continue;
121 }
122
123 drm_display_mode_from_videomode(&vm, mode);
Boris Brezilloncda55372016-04-15 18:23:33 +0200124
125 mode->type |= DRM_MODE_TYPE_DRIVER;
126
Chen-Yu Tsai230c5b42016-10-24 21:21:15 +0800127 if (panel->desc->num_timings == 1)
Boris Brezilloncda55372016-04-15 18:23:33 +0200128 mode->type |= DRM_MODE_TYPE_PREFERRED;
129
Philipp Zabela5d3e622014-12-11 18:32:45 +0100130 drm_mode_probed_add(connector, mode);
131 num++;
132 }
133
Thierry Reding280921d2013-08-30 15:10:14 +0200134 for (i = 0; i < panel->desc->num_modes; i++) {
135 const struct drm_display_mode *m = &panel->desc->modes[i];
136
137 mode = drm_mode_duplicate(drm, m);
138 if (!mode) {
139 dev_err(drm->dev, "failed to add mode %ux%u@%u\n",
140 m->hdisplay, m->vdisplay, m->vrefresh);
141 continue;
142 }
143
Boris Brezilloncda55372016-04-15 18:23:33 +0200144 mode->type |= DRM_MODE_TYPE_DRIVER;
145
146 if (panel->desc->num_modes == 1)
147 mode->type |= DRM_MODE_TYPE_PREFERRED;
148
Thierry Reding280921d2013-08-30 15:10:14 +0200149 drm_mode_set_name(mode);
150
151 drm_mode_probed_add(connector, mode);
152 num++;
153 }
154
Stéphane Marchesin0208d512014-06-19 18:18:28 -0700155 connector->display_info.bpc = panel->desc->bpc;
Thierry Reding280921d2013-08-30 15:10:14 +0200156 connector->display_info.width_mm = panel->desc->size.width;
157 connector->display_info.height_mm = panel->desc->size.height;
Boris Brezillon795f7ab2014-07-22 13:33:59 +0200158 if (panel->desc->bus_format)
159 drm_display_info_set_bus_formats(&connector->display_info,
160 &panel->desc->bus_format, 1);
Stefan Agnerf0aa0832016-02-08 11:38:14 -0800161 connector->display_info.bus_flags = panel->desc->bus_flags;
Thierry Reding280921d2013-08-30 15:10:14 +0200162
163 return num;
164}
165
166static int panel_simple_disable(struct drm_panel *panel)
167{
168 struct panel_simple *p = to_panel_simple(panel);
169
170 if (!p->enabled)
171 return 0;
172
173 if (p->backlight) {
174 p->backlight->props.power = FB_BLANK_POWERDOWN;
Thierry Redinge4aa3422016-06-17 19:11:53 +0200175 p->backlight->props.state |= BL_CORE_FBBLANK;
Thierry Reding280921d2013-08-30 15:10:14 +0200176 backlight_update_status(p->backlight);
177 }
178
Ajay Kumarf673c372014-07-31 23:12:11 +0530179 if (p->desc->delay.disable)
180 msleep(p->desc->delay.disable);
181
Thierry Reding280921d2013-08-30 15:10:14 +0200182 p->enabled = false;
183
184 return 0;
185}
186
Ajay Kumarc0e1d172014-07-31 23:12:04 +0530187static int panel_simple_unprepare(struct drm_panel *panel)
188{
Ajay Kumar613a6332014-07-31 23:12:10 +0530189 struct panel_simple *p = to_panel_simple(panel);
190
191 if (!p->prepared)
192 return 0;
193
Fabio Estevam756b9182017-07-16 21:05:39 -0300194 gpiod_set_value_cansleep(p->enable_gpio, 0);
Ajay Kumar613a6332014-07-31 23:12:10 +0530195
196 regulator_disable(p->supply);
197
Ajay Kumarf673c372014-07-31 23:12:11 +0530198 if (p->desc->delay.unprepare)
199 msleep(p->desc->delay.unprepare);
200
Ajay Kumar613a6332014-07-31 23:12:10 +0530201 p->prepared = false;
202
Ajay Kumarc0e1d172014-07-31 23:12:04 +0530203 return 0;
204}
205
206static int panel_simple_prepare(struct drm_panel *panel)
207{
Thierry Reding280921d2013-08-30 15:10:14 +0200208 struct panel_simple *p = to_panel_simple(panel);
Douglas Anderson2ed3e952018-10-25 15:21:30 -0700209 unsigned int delay;
Thierry Reding280921d2013-08-30 15:10:14 +0200210 int err;
211
Ajay Kumar613a6332014-07-31 23:12:10 +0530212 if (p->prepared)
Thierry Reding280921d2013-08-30 15:10:14 +0200213 return 0;
214
215 err = regulator_enable(p->supply);
216 if (err < 0) {
217 dev_err(panel->dev, "failed to enable supply: %d\n", err);
218 return err;
219 }
220
Fabio Estevam756b9182017-07-16 21:05:39 -0300221 gpiod_set_value_cansleep(p->enable_gpio, 1);
Thierry Reding280921d2013-08-30 15:10:14 +0200222
Douglas Anderson2ed3e952018-10-25 15:21:30 -0700223 delay = p->desc->delay.prepare;
224 if (p->no_hpd)
225 delay += p->desc->delay.hpd_absent_delay;
226 if (delay)
227 msleep(delay);
Ajay Kumarf673c372014-07-31 23:12:11 +0530228
Ajay Kumar613a6332014-07-31 23:12:10 +0530229 p->prepared = true;
230
231 return 0;
232}
233
234static int panel_simple_enable(struct drm_panel *panel)
235{
236 struct panel_simple *p = to_panel_simple(panel);
237
238 if (p->enabled)
239 return 0;
240
Ajay Kumarf673c372014-07-31 23:12:11 +0530241 if (p->desc->delay.enable)
242 msleep(p->desc->delay.enable);
243
Thierry Reding280921d2013-08-30 15:10:14 +0200244 if (p->backlight) {
Thierry Redinge4aa3422016-06-17 19:11:53 +0200245 p->backlight->props.state &= ~BL_CORE_FBBLANK;
Thierry Reding280921d2013-08-30 15:10:14 +0200246 p->backlight->props.power = FB_BLANK_UNBLANK;
247 backlight_update_status(p->backlight);
248 }
249
250 p->enabled = true;
251
252 return 0;
253}
254
255static int panel_simple_get_modes(struct drm_panel *panel)
256{
257 struct panel_simple *p = to_panel_simple(panel);
258 int num = 0;
259
260 /* probe EDID if a DDC bus is available */
261 if (p->ddc) {
262 struct edid *edid = drm_get_edid(panel->connector, p->ddc);
Daniel Vetterc555f022018-07-09 10:40:06 +0200263 drm_connector_update_edid_property(panel->connector, edid);
Thierry Reding280921d2013-08-30 15:10:14 +0200264 if (edid) {
265 num += drm_add_edid_modes(panel->connector, edid);
266 kfree(edid);
267 }
268 }
269
270 /* add hard-coded panel modes */
271 num += panel_simple_get_fixed_modes(p);
272
273 return num;
274}
275
Philipp Zabela5d3e622014-12-11 18:32:45 +0100276static int panel_simple_get_timings(struct drm_panel *panel,
277 unsigned int num_timings,
278 struct display_timing *timings)
279{
280 struct panel_simple *p = to_panel_simple(panel);
281 unsigned int i;
282
283 if (p->desc->num_timings < num_timings)
284 num_timings = p->desc->num_timings;
285
286 if (timings)
287 for (i = 0; i < num_timings; i++)
288 timings[i] = p->desc->timings[i];
289
290 return p->desc->num_timings;
291}
292
Thierry Reding280921d2013-08-30 15:10:14 +0200293static const struct drm_panel_funcs panel_simple_funcs = {
294 .disable = panel_simple_disable,
Ajay Kumarc0e1d172014-07-31 23:12:04 +0530295 .unprepare = panel_simple_unprepare,
296 .prepare = panel_simple_prepare,
Thierry Reding280921d2013-08-30 15:10:14 +0200297 .enable = panel_simple_enable,
298 .get_modes = panel_simple_get_modes,
Philipp Zabela5d3e622014-12-11 18:32:45 +0100299 .get_timings = panel_simple_get_timings,
Thierry Reding280921d2013-08-30 15:10:14 +0200300};
301
302static int panel_simple_probe(struct device *dev, const struct panel_desc *desc)
303{
304 struct device_node *backlight, *ddc;
305 struct panel_simple *panel;
Thierry Reding280921d2013-08-30 15:10:14 +0200306 int err;
307
308 panel = devm_kzalloc(dev, sizeof(*panel), GFP_KERNEL);
309 if (!panel)
310 return -ENOMEM;
311
312 panel->enabled = false;
Ajay Kumar613a6332014-07-31 23:12:10 +0530313 panel->prepared = false;
Thierry Reding280921d2013-08-30 15:10:14 +0200314 panel->desc = desc;
315
Douglas Anderson2ed3e952018-10-25 15:21:30 -0700316 panel->no_hpd = of_property_read_bool(dev->of_node, "no-hpd");
317
Thierry Reding280921d2013-08-30 15:10:14 +0200318 panel->supply = devm_regulator_get(dev, "power");
319 if (IS_ERR(panel->supply))
320 return PTR_ERR(panel->supply);
321
Alexandre Courbota61400d2014-10-23 17:16:58 +0900322 panel->enable_gpio = devm_gpiod_get_optional(dev, "enable",
323 GPIOD_OUT_LOW);
Alexandre Courbotcfdf0542014-03-01 14:00:58 +0900324 if (IS_ERR(panel->enable_gpio)) {
325 err = PTR_ERR(panel->enable_gpio);
Fabio Estevamb8e93802017-06-30 18:14:46 -0300326 if (err != -EPROBE_DEFER)
327 dev_err(dev, "failed to request GPIO: %d\n", err);
Alexandre Courbot9746c612014-07-25 23:47:25 +0900328 return err;
329 }
Thierry Reding280921d2013-08-30 15:10:14 +0200330
Thierry Reding280921d2013-08-30 15:10:14 +0200331 backlight = of_parse_phandle(dev->of_node, "backlight", 0);
332 if (backlight) {
333 panel->backlight = of_find_backlight_by_node(backlight);
334 of_node_put(backlight);
335
Alexandre Courbotcfdf0542014-03-01 14:00:58 +0900336 if (!panel->backlight)
337 return -EPROBE_DEFER;
Thierry Reding280921d2013-08-30 15:10:14 +0200338 }
339
340 ddc = of_parse_phandle(dev->of_node, "ddc-i2c-bus", 0);
341 if (ddc) {
342 panel->ddc = of_find_i2c_adapter_by_node(ddc);
343 of_node_put(ddc);
344
345 if (!panel->ddc) {
346 err = -EPROBE_DEFER;
347 goto free_backlight;
348 }
349 }
350
351 drm_panel_init(&panel->base);
352 panel->base.dev = dev;
353 panel->base.funcs = &panel_simple_funcs;
354
355 err = drm_panel_add(&panel->base);
356 if (err < 0)
357 goto free_ddc;
358
359 dev_set_drvdata(dev, panel);
360
361 return 0;
362
363free_ddc:
364 if (panel->ddc)
365 put_device(&panel->ddc->dev);
366free_backlight:
367 if (panel->backlight)
368 put_device(&panel->backlight->dev);
Thierry Reding280921d2013-08-30 15:10:14 +0200369
370 return err;
371}
372
373static int panel_simple_remove(struct device *dev)
374{
375 struct panel_simple *panel = dev_get_drvdata(dev);
376
Thierry Reding280921d2013-08-30 15:10:14 +0200377 drm_panel_remove(&panel->base);
378
379 panel_simple_disable(&panel->base);
Jonathan Liuf3621a82017-08-07 21:55:45 +1000380 panel_simple_unprepare(&panel->base);
Thierry Reding280921d2013-08-30 15:10:14 +0200381
382 if (panel->ddc)
383 put_device(&panel->ddc->dev);
384
385 if (panel->backlight)
386 put_device(&panel->backlight->dev);
387
Thierry Reding280921d2013-08-30 15:10:14 +0200388 return 0;
389}
390
Thierry Redingd02fd932014-04-29 17:21:21 +0200391static void panel_simple_shutdown(struct device *dev)
392{
393 struct panel_simple *panel = dev_get_drvdata(dev);
394
395 panel_simple_disable(&panel->base);
Jonathan Liuf3621a82017-08-07 21:55:45 +1000396 panel_simple_unprepare(&panel->base);
Thierry Redingd02fd932014-04-29 17:21:21 +0200397}
398
Yannick Fertre966fea72017-03-28 11:44:49 +0200399static const struct drm_display_mode ampire_am_480272h3tmqw_t01h_mode = {
400 .clock = 9000,
401 .hdisplay = 480,
402 .hsync_start = 480 + 2,
403 .hsync_end = 480 + 2 + 41,
404 .htotal = 480 + 2 + 41 + 2,
405 .vdisplay = 272,
406 .vsync_start = 272 + 2,
407 .vsync_end = 272 + 2 + 10,
408 .vtotal = 272 + 2 + 10 + 2,
409 .vrefresh = 60,
410 .flags = DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC,
411};
412
413static const struct panel_desc ampire_am_480272h3tmqw_t01h = {
414 .modes = &ampire_am_480272h3tmqw_t01h_mode,
415 .num_modes = 1,
416 .bpc = 8,
417 .size = {
418 .width = 105,
419 .height = 67,
420 },
421 .bus_format = MEDIA_BUS_FMT_RGB888_1X24,
422};
423
Philipp Zabel1c550fa12015-02-11 18:50:09 +0100424static const struct drm_display_mode ampire_am800480r3tmqwa1h_mode = {
425 .clock = 33333,
426 .hdisplay = 800,
427 .hsync_start = 800 + 0,
428 .hsync_end = 800 + 0 + 255,
429 .htotal = 800 + 0 + 255 + 0,
430 .vdisplay = 480,
431 .vsync_start = 480 + 2,
432 .vsync_end = 480 + 2 + 45,
433 .vtotal = 480 + 2 + 45 + 0,
434 .vrefresh = 60,
435 .flags = DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC,
436};
437
438static const struct panel_desc ampire_am800480r3tmqwa1h = {
439 .modes = &ampire_am800480r3tmqwa1h_mode,
440 .num_modes = 1,
441 .bpc = 6,
442 .size = {
443 .width = 152,
444 .height = 91,
445 },
446 .bus_format = MEDIA_BUS_FMT_RGB666_1X18,
447};
448
Thierry Reding280921d2013-08-30 15:10:14 +0200449static const struct drm_display_mode auo_b101aw03_mode = {
450 .clock = 51450,
451 .hdisplay = 1024,
452 .hsync_start = 1024 + 156,
453 .hsync_end = 1024 + 156 + 8,
454 .htotal = 1024 + 156 + 8 + 156,
455 .vdisplay = 600,
456 .vsync_start = 600 + 16,
457 .vsync_end = 600 + 16 + 6,
458 .vtotal = 600 + 16 + 6 + 16,
459 .vrefresh = 60,
460};
461
462static const struct panel_desc auo_b101aw03 = {
463 .modes = &auo_b101aw03_mode,
464 .num_modes = 1,
Stéphane Marchesin0208d512014-06-19 18:18:28 -0700465 .bpc = 6,
Thierry Reding280921d2013-08-30 15:10:14 +0200466 .size = {
467 .width = 223,
468 .height = 125,
469 },
470};
471
Huang Lina531bc32015-02-28 10:18:58 +0800472static const struct drm_display_mode auo_b101ean01_mode = {
473 .clock = 72500,
474 .hdisplay = 1280,
475 .hsync_start = 1280 + 119,
476 .hsync_end = 1280 + 119 + 32,
477 .htotal = 1280 + 119 + 32 + 21,
478 .vdisplay = 800,
479 .vsync_start = 800 + 4,
480 .vsync_end = 800 + 4 + 20,
481 .vtotal = 800 + 4 + 20 + 8,
482 .vrefresh = 60,
483};
484
485static const struct panel_desc auo_b101ean01 = {
486 .modes = &auo_b101ean01_mode,
487 .num_modes = 1,
488 .bpc = 6,
489 .size = {
490 .width = 217,
491 .height = 136,
492 },
493};
494
Rob Clarkdac746e2014-08-01 17:01:06 -0400495static const struct drm_display_mode auo_b101xtn01_mode = {
496 .clock = 72000,
497 .hdisplay = 1366,
498 .hsync_start = 1366 + 20,
499 .hsync_end = 1366 + 20 + 70,
500 .htotal = 1366 + 20 + 70,
501 .vdisplay = 768,
502 .vsync_start = 768 + 14,
503 .vsync_end = 768 + 14 + 42,
504 .vtotal = 768 + 14 + 42,
505 .vrefresh = 60,
506 .flags = DRM_MODE_FLAG_NVSYNC | DRM_MODE_FLAG_NHSYNC,
507};
508
509static const struct panel_desc auo_b101xtn01 = {
510 .modes = &auo_b101xtn01_mode,
511 .num_modes = 1,
512 .bpc = 6,
513 .size = {
514 .width = 223,
515 .height = 125,
516 },
517};
518
Ajay Kumare35e3052014-09-01 15:40:02 +0530519static const struct drm_display_mode auo_b116xw03_mode = {
520 .clock = 70589,
521 .hdisplay = 1366,
522 .hsync_start = 1366 + 40,
523 .hsync_end = 1366 + 40 + 40,
524 .htotal = 1366 + 40 + 40 + 32,
525 .vdisplay = 768,
526 .vsync_start = 768 + 10,
527 .vsync_end = 768 + 10 + 12,
528 .vtotal = 768 + 10 + 12 + 6,
529 .vrefresh = 60,
530};
531
532static const struct panel_desc auo_b116xw03 = {
533 .modes = &auo_b116xw03_mode,
534 .num_modes = 1,
535 .bpc = 6,
536 .size = {
537 .width = 256,
538 .height = 144,
539 },
540};
541
Stéphane Marchesina333f7a2014-05-23 19:27:59 -0700542static const struct drm_display_mode auo_b133xtn01_mode = {
543 .clock = 69500,
544 .hdisplay = 1366,
545 .hsync_start = 1366 + 48,
546 .hsync_end = 1366 + 48 + 32,
547 .htotal = 1366 + 48 + 32 + 20,
548 .vdisplay = 768,
549 .vsync_start = 768 + 3,
550 .vsync_end = 768 + 3 + 6,
551 .vtotal = 768 + 3 + 6 + 13,
552 .vrefresh = 60,
553};
554
555static const struct panel_desc auo_b133xtn01 = {
556 .modes = &auo_b133xtn01_mode,
557 .num_modes = 1,
Stéphane Marchesin0208d512014-06-19 18:18:28 -0700558 .bpc = 6,
Stéphane Marchesina333f7a2014-05-23 19:27:59 -0700559 .size = {
560 .width = 293,
561 .height = 165,
562 },
563};
564
Ajay Kumar3e51d602014-07-31 23:12:12 +0530565static const struct drm_display_mode auo_b133htn01_mode = {
566 .clock = 150660,
567 .hdisplay = 1920,
568 .hsync_start = 1920 + 172,
569 .hsync_end = 1920 + 172 + 80,
570 .htotal = 1920 + 172 + 80 + 60,
571 .vdisplay = 1080,
572 .vsync_start = 1080 + 25,
573 .vsync_end = 1080 + 25 + 10,
574 .vtotal = 1080 + 25 + 10 + 10,
575 .vrefresh = 60,
576};
577
578static const struct panel_desc auo_b133htn01 = {
579 .modes = &auo_b133htn01_mode,
580 .num_modes = 1,
Thierry Redingd7a839c2014-11-06 10:11:01 +0100581 .bpc = 6,
Ajay Kumar3e51d602014-07-31 23:12:12 +0530582 .size = {
583 .width = 293,
584 .height = 165,
585 },
586 .delay = {
587 .prepare = 105,
588 .enable = 20,
589 .unprepare = 50,
590 },
591};
592
Lukasz Majewskibccfaff2018-05-14 21:08:49 +0200593static const struct display_timing auo_g070vvn01_timings = {
594 .pixelclock = { 33300000, 34209000, 45000000 },
595 .hactive = { 800, 800, 800 },
596 .hfront_porch = { 20, 40, 200 },
597 .hback_porch = { 87, 40, 1 },
598 .hsync_len = { 1, 48, 87 },
599 .vactive = { 480, 480, 480 },
600 .vfront_porch = { 5, 13, 200 },
601 .vback_porch = { 31, 31, 29 },
602 .vsync_len = { 1, 1, 3 },
603};
604
605static const struct panel_desc auo_g070vvn01 = {
606 .timings = &auo_g070vvn01_timings,
607 .num_timings = 1,
608 .bpc = 8,
609 .size = {
610 .width = 152,
611 .height = 91,
612 },
613 .delay = {
614 .prepare = 200,
615 .enable = 50,
616 .disable = 50,
617 .unprepare = 1000,
618 },
619};
620
Alex Gonzalez4fb86402018-10-25 17:09:30 +0200621static const struct drm_display_mode auo_g101evn010_mode = {
622 .clock = 68930,
623 .hdisplay = 1280,
624 .hsync_start = 1280 + 82,
625 .hsync_end = 1280 + 82 + 2,
626 .htotal = 1280 + 82 + 2 + 84,
627 .vdisplay = 800,
628 .vsync_start = 800 + 8,
629 .vsync_end = 800 + 8 + 2,
630 .vtotal = 800 + 8 + 2 + 6,
631 .vrefresh = 60,
632};
633
634static const struct panel_desc auo_g101evn010 = {
635 .modes = &auo_g101evn010_mode,
636 .num_modes = 1,
637 .bpc = 6,
638 .size = {
639 .width = 216,
640 .height = 135,
641 },
642 .bus_format = MEDIA_BUS_FMT_RGB666_1X18,
643};
644
Christoph Fritz4451c282017-12-16 14:13:36 +0100645static const struct drm_display_mode auo_g104sn02_mode = {
646 .clock = 40000,
647 .hdisplay = 800,
648 .hsync_start = 800 + 40,
649 .hsync_end = 800 + 40 + 216,
650 .htotal = 800 + 40 + 216 + 128,
651 .vdisplay = 600,
652 .vsync_start = 600 + 10,
653 .vsync_end = 600 + 10 + 35,
654 .vtotal = 600 + 10 + 35 + 2,
655 .vrefresh = 60,
656};
657
658static const struct panel_desc auo_g104sn02 = {
659 .modes = &auo_g104sn02_mode,
660 .num_modes = 1,
661 .bpc = 8,
662 .size = {
663 .width = 211,
664 .height = 158,
665 },
666};
667
Lucas Stach697035c2016-11-30 14:09:55 +0100668static const struct display_timing auo_g133han01_timings = {
669 .pixelclock = { 134000000, 141200000, 149000000 },
670 .hactive = { 1920, 1920, 1920 },
671 .hfront_porch = { 39, 58, 77 },
672 .hback_porch = { 59, 88, 117 },
673 .hsync_len = { 28, 42, 56 },
674 .vactive = { 1080, 1080, 1080 },
675 .vfront_porch = { 3, 8, 11 },
676 .vback_porch = { 5, 14, 19 },
677 .vsync_len = { 4, 14, 19 },
678};
679
680static const struct panel_desc auo_g133han01 = {
681 .timings = &auo_g133han01_timings,
682 .num_timings = 1,
683 .bpc = 8,
684 .size = {
685 .width = 293,
686 .height = 165,
687 },
688 .delay = {
689 .prepare = 200,
690 .enable = 50,
691 .disable = 50,
692 .unprepare = 1000,
693 },
694 .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_JEIDA,
695};
696
Lucas Stach8c31f602016-11-30 14:09:56 +0100697static const struct display_timing auo_g185han01_timings = {
698 .pixelclock = { 120000000, 144000000, 175000000 },
699 .hactive = { 1920, 1920, 1920 },
700 .hfront_porch = { 18, 60, 74 },
701 .hback_porch = { 12, 44, 54 },
702 .hsync_len = { 10, 24, 32 },
703 .vactive = { 1080, 1080, 1080 },
704 .vfront_porch = { 6, 10, 40 },
705 .vback_porch = { 2, 5, 20 },
706 .vsync_len = { 2, 5, 20 },
707};
708
709static const struct panel_desc auo_g185han01 = {
710 .timings = &auo_g185han01_timings,
711 .num_timings = 1,
712 .bpc = 8,
713 .size = {
714 .width = 409,
715 .height = 230,
716 },
717 .delay = {
718 .prepare = 50,
719 .enable = 200,
720 .disable = 110,
721 .unprepare = 1000,
722 },
723 .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
724};
725
Lucas Stach70c0d5b2017-06-08 20:07:58 +0200726static const struct display_timing auo_p320hvn03_timings = {
727 .pixelclock = { 106000000, 148500000, 164000000 },
728 .hactive = { 1920, 1920, 1920 },
729 .hfront_porch = { 25, 50, 130 },
730 .hback_porch = { 25, 50, 130 },
731 .hsync_len = { 20, 40, 105 },
732 .vactive = { 1080, 1080, 1080 },
733 .vfront_porch = { 8, 17, 150 },
734 .vback_porch = { 8, 17, 150 },
735 .vsync_len = { 4, 11, 100 },
736};
737
738static const struct panel_desc auo_p320hvn03 = {
739 .timings = &auo_p320hvn03_timings,
740 .num_timings = 1,
741 .bpc = 8,
742 .size = {
743 .width = 698,
744 .height = 393,
745 },
746 .delay = {
747 .prepare = 1,
748 .enable = 450,
749 .unprepare = 500,
750 },
Lucas Stach2554f152018-04-11 17:27:41 +0200751 .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
Lucas Stach70c0d5b2017-06-08 20:07:58 +0200752};
753
Haixia Shi7ee933a2016-10-11 14:59:16 -0700754static const struct drm_display_mode auo_t215hvn01_mode = {
755 .clock = 148800,
756 .hdisplay = 1920,
757 .hsync_start = 1920 + 88,
758 .hsync_end = 1920 + 88 + 44,
759 .htotal = 1920 + 88 + 44 + 148,
760 .vdisplay = 1080,
761 .vsync_start = 1080 + 4,
762 .vsync_end = 1080 + 4 + 5,
763 .vtotal = 1080 + 4 + 5 + 36,
764 .vrefresh = 60,
765};
766
767static const struct panel_desc auo_t215hvn01 = {
768 .modes = &auo_t215hvn01_mode,
769 .num_modes = 1,
770 .bpc = 8,
771 .size = {
772 .width = 430,
773 .height = 270,
774 },
775 .delay = {
776 .disable = 5,
777 .unprepare = 1000,
778 }
779};
780
Philipp Zabeld47df632014-12-18 16:43:43 +0100781static const struct drm_display_mode avic_tm070ddh03_mode = {
782 .clock = 51200,
783 .hdisplay = 1024,
784 .hsync_start = 1024 + 160,
785 .hsync_end = 1024 + 160 + 4,
786 .htotal = 1024 + 160 + 4 + 156,
787 .vdisplay = 600,
788 .vsync_start = 600 + 17,
789 .vsync_end = 600 + 17 + 1,
790 .vtotal = 600 + 17 + 1 + 17,
791 .vrefresh = 60,
792};
793
794static const struct panel_desc avic_tm070ddh03 = {
795 .modes = &avic_tm070ddh03_mode,
796 .num_modes = 1,
797 .bpc = 8,
798 .size = {
799 .width = 154,
800 .height = 90,
801 },
802 .delay = {
803 .prepare = 20,
804 .enable = 200,
805 .disable = 200,
806 },
807};
808
Chen-Yu Tsai7ad8b412018-09-07 12:19:46 +0800809static const struct drm_display_mode bananapi_s070wv20_ct16_mode = {
810 .clock = 30000,
811 .hdisplay = 800,
812 .hsync_start = 800 + 40,
813 .hsync_end = 800 + 40 + 48,
814 .htotal = 800 + 40 + 48 + 40,
815 .vdisplay = 480,
816 .vsync_start = 480 + 13,
817 .vsync_end = 480 + 13 + 3,
818 .vtotal = 480 + 13 + 3 + 29,
819};
820
821static const struct panel_desc bananapi_s070wv20_ct16 = {
822 .modes = &bananapi_s070wv20_ct16_mode,
823 .num_modes = 1,
824 .bpc = 6,
825 .size = {
826 .width = 154,
827 .height = 86,
828 },
829};
830
Andrzej Hajdaae8cf412018-06-19 10:19:26 +0200831static const struct drm_display_mode boe_hv070wsa_mode = {
Andrzej Hajdae077e2f2018-07-25 17:46:43 +0200832 .clock = 42105,
Andrzej Hajdaae8cf412018-06-19 10:19:26 +0200833 .hdisplay = 1024,
Andrzej Hajdae077e2f2018-07-25 17:46:43 +0200834 .hsync_start = 1024 + 30,
835 .hsync_end = 1024 + 30 + 30,
836 .htotal = 1024 + 30 + 30 + 30,
Andrzej Hajdaae8cf412018-06-19 10:19:26 +0200837 .vdisplay = 600,
Andrzej Hajdae077e2f2018-07-25 17:46:43 +0200838 .vsync_start = 600 + 10,
839 .vsync_end = 600 + 10 + 10,
840 .vtotal = 600 + 10 + 10 + 10,
Andrzej Hajdaae8cf412018-06-19 10:19:26 +0200841 .vrefresh = 60,
842};
843
844static const struct panel_desc boe_hv070wsa = {
845 .modes = &boe_hv070wsa_mode,
846 .num_modes = 1,
847 .size = {
848 .width = 154,
849 .height = 90,
850 },
851};
852
Caesar Wangcac1a412016-12-14 11:19:56 +0800853static const struct drm_display_mode boe_nv101wxmn51_modes[] = {
854 {
855 .clock = 71900,
856 .hdisplay = 1280,
857 .hsync_start = 1280 + 48,
858 .hsync_end = 1280 + 48 + 32,
859 .htotal = 1280 + 48 + 32 + 80,
860 .vdisplay = 800,
861 .vsync_start = 800 + 3,
862 .vsync_end = 800 + 3 + 5,
863 .vtotal = 800 + 3 + 5 + 24,
864 .vrefresh = 60,
865 },
866 {
867 .clock = 57500,
868 .hdisplay = 1280,
869 .hsync_start = 1280 + 48,
870 .hsync_end = 1280 + 48 + 32,
871 .htotal = 1280 + 48 + 32 + 80,
872 .vdisplay = 800,
873 .vsync_start = 800 + 3,
874 .vsync_end = 800 + 3 + 5,
875 .vtotal = 800 + 3 + 5 + 24,
876 .vrefresh = 48,
877 },
878};
879
880static const struct panel_desc boe_nv101wxmn51 = {
881 .modes = boe_nv101wxmn51_modes,
882 .num_modes = ARRAY_SIZE(boe_nv101wxmn51_modes),
883 .bpc = 8,
884 .size = {
885 .width = 217,
886 .height = 136,
887 },
888 .delay = {
889 .prepare = 210,
890 .enable = 50,
891 .unprepare = 160,
892 },
893};
894
Giulio Benettie58edce2018-07-31 01:11:16 +0200895static const struct drm_display_mode cdtech_s043wq26h_ct7_mode = {
896 .clock = 9000,
897 .hdisplay = 480,
898 .hsync_start = 480 + 5,
899 .hsync_end = 480 + 5 + 5,
900 .htotal = 480 + 5 + 5 + 40,
901 .vdisplay = 272,
902 .vsync_start = 272 + 8,
903 .vsync_end = 272 + 8 + 8,
904 .vtotal = 272 + 8 + 8 + 8,
905 .vrefresh = 60,
906 .flags = DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC,
907};
908
909static const struct panel_desc cdtech_s043wq26h_ct7 = {
910 .modes = &cdtech_s043wq26h_ct7_mode,
911 .num_modes = 1,
912 .bpc = 8,
913 .size = {
914 .width = 95,
915 .height = 54,
916 },
Laurent Pinchart88bc4172018-09-22 15:02:42 +0300917 .bus_flags = DRM_BUS_FLAG_PIXDATA_DRIVE_POSEDGE,
Giulio Benettie58edce2018-07-31 01:11:16 +0200918};
919
Giulio Benetti982f9442018-07-31 01:11:14 +0200920static const struct drm_display_mode cdtech_s070wv95_ct16_mode = {
921 .clock = 35000,
922 .hdisplay = 800,
923 .hsync_start = 800 + 40,
924 .hsync_end = 800 + 40 + 40,
925 .htotal = 800 + 40 + 40 + 48,
926 .vdisplay = 480,
927 .vsync_start = 480 + 29,
928 .vsync_end = 480 + 29 + 13,
929 .vtotal = 480 + 29 + 13 + 3,
930 .vrefresh = 60,
931 .flags = DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC,
932};
933
934static const struct panel_desc cdtech_s070wv95_ct16 = {
935 .modes = &cdtech_s070wv95_ct16_mode,
936 .num_modes = 1,
937 .bpc = 8,
938 .size = {
939 .width = 154,
940 .height = 85,
941 },
942};
943
Randy Li2cb35c82016-09-20 03:02:51 +0800944static const struct drm_display_mode chunghwa_claa070wp03xg_mode = {
945 .clock = 66770,
946 .hdisplay = 800,
947 .hsync_start = 800 + 49,
948 .hsync_end = 800 + 49 + 33,
949 .htotal = 800 + 49 + 33 + 17,
950 .vdisplay = 1280,
951 .vsync_start = 1280 + 1,
952 .vsync_end = 1280 + 1 + 7,
953 .vtotal = 1280 + 1 + 7 + 15,
954 .vrefresh = 60,
955 .flags = DRM_MODE_FLAG_NVSYNC | DRM_MODE_FLAG_NHSYNC,
956};
957
958static const struct panel_desc chunghwa_claa070wp03xg = {
959 .modes = &chunghwa_claa070wp03xg_mode,
960 .num_modes = 1,
961 .bpc = 6,
962 .size = {
963 .width = 94,
964 .height = 150,
965 },
966};
967
Stephen Warren4c930752014-01-07 16:46:26 -0700968static const struct drm_display_mode chunghwa_claa101wa01a_mode = {
969 .clock = 72070,
970 .hdisplay = 1366,
971 .hsync_start = 1366 + 58,
972 .hsync_end = 1366 + 58 + 58,
973 .htotal = 1366 + 58 + 58 + 58,
974 .vdisplay = 768,
975 .vsync_start = 768 + 4,
976 .vsync_end = 768 + 4 + 4,
977 .vtotal = 768 + 4 + 4 + 4,
978 .vrefresh = 60,
979};
980
981static const struct panel_desc chunghwa_claa101wa01a = {
982 .modes = &chunghwa_claa101wa01a_mode,
983 .num_modes = 1,
Stéphane Marchesin0208d512014-06-19 18:18:28 -0700984 .bpc = 6,
Stephen Warren4c930752014-01-07 16:46:26 -0700985 .size = {
986 .width = 220,
987 .height = 120,
988 },
989};
990
Thierry Reding280921d2013-08-30 15:10:14 +0200991static const struct drm_display_mode chunghwa_claa101wb01_mode = {
992 .clock = 69300,
993 .hdisplay = 1366,
994 .hsync_start = 1366 + 48,
995 .hsync_end = 1366 + 48 + 32,
996 .htotal = 1366 + 48 + 32 + 20,
997 .vdisplay = 768,
998 .vsync_start = 768 + 16,
999 .vsync_end = 768 + 16 + 8,
1000 .vtotal = 768 + 16 + 8 + 16,
1001 .vrefresh = 60,
1002};
1003
1004static const struct panel_desc chunghwa_claa101wb01 = {
1005 .modes = &chunghwa_claa101wb01_mode,
1006 .num_modes = 1,
Stéphane Marchesin0208d512014-06-19 18:18:28 -07001007 .bpc = 6,
Thierry Reding280921d2013-08-30 15:10:14 +02001008 .size = {
1009 .width = 223,
1010 .height = 125,
1011 },
1012};
1013
Michal Vokáč97ceb1f2018-06-25 14:41:30 +02001014static const struct drm_display_mode dataimage_scf0700c48ggu18_mode = {
1015 .clock = 33260,
1016 .hdisplay = 800,
1017 .hsync_start = 800 + 40,
1018 .hsync_end = 800 + 40 + 128,
1019 .htotal = 800 + 40 + 128 + 88,
1020 .vdisplay = 480,
1021 .vsync_start = 480 + 10,
1022 .vsync_end = 480 + 10 + 2,
1023 .vtotal = 480 + 10 + 2 + 33,
1024 .vrefresh = 60,
1025 .flags = DRM_MODE_FLAG_NVSYNC | DRM_MODE_FLAG_NHSYNC,
1026};
1027
1028static const struct panel_desc dataimage_scf0700c48ggu18 = {
1029 .modes = &dataimage_scf0700c48ggu18_mode,
1030 .num_modes = 1,
1031 .bpc = 8,
1032 .size = {
1033 .width = 152,
1034 .height = 91,
1035 },
1036 .bus_format = MEDIA_BUS_FMT_RGB888_1X24,
Laurent Pinchart88bc4172018-09-22 15:02:42 +03001037 .bus_flags = DRM_BUS_FLAG_DE_HIGH | DRM_BUS_FLAG_PIXDATA_DRIVE_POSEDGE,
Michal Vokáč97ceb1f2018-06-25 14:41:30 +02001038};
1039
Philipp Zabel0ca0c822018-05-23 11:25:04 +02001040static const struct display_timing dlc_dlc0700yzg_1_timing = {
1041 .pixelclock = { 45000000, 51200000, 57000000 },
1042 .hactive = { 1024, 1024, 1024 },
1043 .hfront_porch = { 100, 106, 113 },
1044 .hback_porch = { 100, 106, 113 },
1045 .hsync_len = { 100, 108, 114 },
1046 .vactive = { 600, 600, 600 },
1047 .vfront_porch = { 8, 11, 15 },
1048 .vback_porch = { 8, 11, 15 },
1049 .vsync_len = { 9, 13, 15 },
1050 .flags = DISPLAY_FLAGS_DE_HIGH,
1051};
1052
1053static const struct panel_desc dlc_dlc0700yzg_1 = {
1054 .timings = &dlc_dlc0700yzg_1_timing,
1055 .num_timings = 1,
1056 .bpc = 6,
1057 .size = {
1058 .width = 154,
1059 .height = 86,
1060 },
1061 .delay = {
1062 .prepare = 30,
1063 .enable = 200,
1064 .disable = 200,
1065 },
1066 .bus_format = MEDIA_BUS_FMT_RGB666_1X7X3_SPWG,
1067};
1068
Marco Felsch6cbe7cd2018-09-24 17:26:10 +02001069static const struct display_timing dlc_dlc1010gig_timing = {
1070 .pixelclock = { 68900000, 71100000, 73400000 },
1071 .hactive = { 1280, 1280, 1280 },
1072 .hfront_porch = { 43, 53, 63 },
1073 .hback_porch = { 43, 53, 63 },
1074 .hsync_len = { 44, 54, 64 },
1075 .vactive = { 800, 800, 800 },
1076 .vfront_porch = { 5, 8, 11 },
1077 .vback_porch = { 5, 8, 11 },
1078 .vsync_len = { 5, 7, 11 },
1079 .flags = DISPLAY_FLAGS_DE_HIGH,
1080};
1081
1082static const struct panel_desc dlc_dlc1010gig = {
1083 .timings = &dlc_dlc1010gig_timing,
1084 .num_timings = 1,
1085 .bpc = 8,
1086 .size = {
1087 .width = 216,
1088 .height = 135,
1089 },
1090 .delay = {
1091 .prepare = 60,
1092 .enable = 150,
1093 .disable = 100,
1094 .unprepare = 60,
1095 },
1096 .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
1097};
1098
Marek Vasutfd819bf2019-02-19 15:04:38 +01001099static const struct drm_display_mode edt_etm0430g0dh6_mode = {
1100 .clock = 9000,
1101 .hdisplay = 480,
1102 .hsync_start = 480 + 2,
1103 .hsync_end = 480 + 2 + 41,
1104 .htotal = 480 + 2 + 41 + 2,
1105 .vdisplay = 272,
1106 .vsync_start = 272 + 2,
1107 .vsync_end = 272 + 2 + 10,
1108 .vtotal = 272 + 2 + 10 + 2,
1109 .vrefresh = 60,
1110 .flags = DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC,
1111};
1112
1113static const struct panel_desc edt_etm0430g0dh6 = {
1114 .modes = &edt_etm0430g0dh6_mode,
1115 .num_modes = 1,
1116 .bpc = 6,
1117 .size = {
1118 .width = 95,
1119 .height = 54,
1120 },
1121};
1122
Stefan Agner26ab0062014-05-15 11:38:45 +02001123static const struct drm_display_mode edt_et057090dhu_mode = {
1124 .clock = 25175,
1125 .hdisplay = 640,
1126 .hsync_start = 640 + 16,
1127 .hsync_end = 640 + 16 + 30,
1128 .htotal = 640 + 16 + 30 + 114,
1129 .vdisplay = 480,
1130 .vsync_start = 480 + 10,
1131 .vsync_end = 480 + 10 + 3,
1132 .vtotal = 480 + 10 + 3 + 32,
1133 .vrefresh = 60,
1134 .flags = DRM_MODE_FLAG_NVSYNC | DRM_MODE_FLAG_NHSYNC,
1135};
1136
1137static const struct panel_desc edt_et057090dhu = {
1138 .modes = &edt_et057090dhu_mode,
1139 .num_modes = 1,
Stéphane Marchesin0208d512014-06-19 18:18:28 -07001140 .bpc = 6,
Stefan Agner26ab0062014-05-15 11:38:45 +02001141 .size = {
1142 .width = 115,
1143 .height = 86,
1144 },
Stefan Agnereaeebff2016-12-08 14:54:31 -08001145 .bus_format = MEDIA_BUS_FMT_RGB666_1X18,
Laurent Pinchart88bc4172018-09-22 15:02:42 +03001146 .bus_flags = DRM_BUS_FLAG_DE_HIGH | DRM_BUS_FLAG_PIXDATA_DRIVE_NEGEDGE,
Stefan Agner26ab0062014-05-15 11:38:45 +02001147};
1148
Philipp Zabelfff5de42014-05-15 12:25:47 +02001149static const struct drm_display_mode edt_etm0700g0dh6_mode = {
1150 .clock = 33260,
1151 .hdisplay = 800,
1152 .hsync_start = 800 + 40,
1153 .hsync_end = 800 + 40 + 128,
1154 .htotal = 800 + 40 + 128 + 88,
1155 .vdisplay = 480,
1156 .vsync_start = 480 + 10,
1157 .vsync_end = 480 + 10 + 2,
1158 .vtotal = 480 + 10 + 2 + 33,
1159 .vrefresh = 60,
1160 .flags = DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC,
1161};
1162
1163static const struct panel_desc edt_etm0700g0dh6 = {
1164 .modes = &edt_etm0700g0dh6_mode,
1165 .num_modes = 1,
Stéphane Marchesin0208d512014-06-19 18:18:28 -07001166 .bpc = 6,
Philipp Zabelfff5de42014-05-15 12:25:47 +02001167 .size = {
1168 .width = 152,
1169 .height = 91,
1170 },
Stefan Agnereaeebff2016-12-08 14:54:31 -08001171 .bus_format = MEDIA_BUS_FMT_RGB666_1X18,
Laurent Pinchart88bc4172018-09-22 15:02:42 +03001172 .bus_flags = DRM_BUS_FLAG_DE_HIGH | DRM_BUS_FLAG_PIXDATA_DRIVE_NEGEDGE,
Philipp Zabelfff5de42014-05-15 12:25:47 +02001173};
1174
Jan Tuerkaa7e6452018-06-19 11:55:44 +02001175static const struct panel_desc edt_etm0700g0bdh6 = {
1176 .modes = &edt_etm0700g0dh6_mode,
1177 .num_modes = 1,
1178 .bpc = 6,
1179 .size = {
1180 .width = 152,
1181 .height = 91,
1182 },
1183 .bus_format = MEDIA_BUS_FMT_RGB666_1X18,
Laurent Pinchart88bc4172018-09-22 15:02:42 +03001184 .bus_flags = DRM_BUS_FLAG_DE_HIGH | DRM_BUS_FLAG_PIXDATA_DRIVE_POSEDGE,
Jan Tuerkaa7e6452018-06-19 11:55:44 +02001185};
1186
Boris BREZILLON102932b2014-06-05 15:53:32 +02001187static const struct drm_display_mode foxlink_fl500wvr00_a0t_mode = {
1188 .clock = 32260,
1189 .hdisplay = 800,
1190 .hsync_start = 800 + 168,
1191 .hsync_end = 800 + 168 + 64,
1192 .htotal = 800 + 168 + 64 + 88,
1193 .vdisplay = 480,
1194 .vsync_start = 480 + 37,
1195 .vsync_end = 480 + 37 + 2,
1196 .vtotal = 480 + 37 + 2 + 8,
1197 .vrefresh = 60,
1198};
1199
1200static const struct panel_desc foxlink_fl500wvr00_a0t = {
1201 .modes = &foxlink_fl500wvr00_a0t_mode,
1202 .num_modes = 1,
Thierry Redingd7a839c2014-11-06 10:11:01 +01001203 .bpc = 8,
Boris BREZILLON102932b2014-06-05 15:53:32 +02001204 .size = {
1205 .width = 108,
1206 .height = 65,
1207 },
Boris Brezillonbb276cb2014-07-22 13:35:47 +02001208 .bus_format = MEDIA_BUS_FMT_RGB888_1X24,
Boris BREZILLON102932b2014-06-05 15:53:32 +02001209};
1210
Philipp Zabeld435a2a2014-11-19 10:29:55 +01001211static const struct drm_display_mode giantplus_gpg482739qs5_mode = {
1212 .clock = 9000,
1213 .hdisplay = 480,
1214 .hsync_start = 480 + 5,
1215 .hsync_end = 480 + 5 + 1,
1216 .htotal = 480 + 5 + 1 + 40,
1217 .vdisplay = 272,
1218 .vsync_start = 272 + 8,
1219 .vsync_end = 272 + 8 + 1,
1220 .vtotal = 272 + 8 + 1 + 8,
1221 .vrefresh = 60,
1222};
1223
1224static const struct panel_desc giantplus_gpg482739qs5 = {
1225 .modes = &giantplus_gpg482739qs5_mode,
1226 .num_modes = 1,
1227 .bpc = 8,
1228 .size = {
1229 .width = 95,
1230 .height = 54,
1231 },
Philipp Zabel33536a02015-02-11 18:50:07 +01001232 .bus_format = MEDIA_BUS_FMT_RGB888_1X24,
Philipp Zabeld435a2a2014-11-19 10:29:55 +01001233};
1234
Philipp Zabelab077252014-12-11 18:32:46 +01001235static const struct display_timing hannstar_hsd070pww1_timing = {
1236 .pixelclock = { 64300000, 71100000, 82000000 },
1237 .hactive = { 1280, 1280, 1280 },
1238 .hfront_porch = { 1, 1, 10 },
1239 .hback_porch = { 1, 1, 10 },
Philipp Zabeld901d2b2015-08-12 12:32:13 +02001240 /*
1241 * According to the data sheet, the minimum horizontal blanking interval
1242 * is 54 clocks (1 + 52 + 1), but tests with a Nitrogen6X have shown the
1243 * minimum working horizontal blanking interval to be 60 clocks.
1244 */
1245 .hsync_len = { 58, 158, 661 },
Philipp Zabelab077252014-12-11 18:32:46 +01001246 .vactive = { 800, 800, 800 },
1247 .vfront_porch = { 1, 1, 10 },
1248 .vback_porch = { 1, 1, 10 },
1249 .vsync_len = { 1, 21, 203 },
1250 .flags = DISPLAY_FLAGS_DE_HIGH,
Philipp Zabela8532052014-10-23 16:31:06 +02001251};
1252
1253static const struct panel_desc hannstar_hsd070pww1 = {
Philipp Zabelab077252014-12-11 18:32:46 +01001254 .timings = &hannstar_hsd070pww1_timing,
1255 .num_timings = 1,
Philipp Zabela8532052014-10-23 16:31:06 +02001256 .bpc = 6,
1257 .size = {
1258 .width = 151,
1259 .height = 94,
1260 },
Philipp Zabel58d6a7b2015-08-12 12:32:12 +02001261 .bus_format = MEDIA_BUS_FMT_RGB666_1X7X3_SPWG,
Philipp Zabela8532052014-10-23 16:31:06 +02001262};
1263
Eric Nelsonc0d607e2015-04-13 15:09:26 -07001264static const struct display_timing hannstar_hsd100pxn1_timing = {
1265 .pixelclock = { 55000000, 65000000, 75000000 },
1266 .hactive = { 1024, 1024, 1024 },
1267 .hfront_porch = { 40, 40, 40 },
1268 .hback_porch = { 220, 220, 220 },
1269 .hsync_len = { 20, 60, 100 },
1270 .vactive = { 768, 768, 768 },
1271 .vfront_porch = { 7, 7, 7 },
1272 .vback_porch = { 21, 21, 21 },
1273 .vsync_len = { 10, 10, 10 },
1274 .flags = DISPLAY_FLAGS_DE_HIGH,
1275};
1276
1277static const struct panel_desc hannstar_hsd100pxn1 = {
1278 .timings = &hannstar_hsd100pxn1_timing,
1279 .num_timings = 1,
1280 .bpc = 6,
1281 .size = {
1282 .width = 203,
1283 .height = 152,
1284 },
Philipp Zabel4946b042015-05-20 11:34:08 +02001285 .bus_format = MEDIA_BUS_FMT_RGB666_1X7X3_SPWG,
Eric Nelsonc0d607e2015-04-13 15:09:26 -07001286};
1287
Lucas Stach61ac0bf2014-11-06 17:44:35 +01001288static const struct drm_display_mode hitachi_tx23d38vm0caa_mode = {
1289 .clock = 33333,
1290 .hdisplay = 800,
1291 .hsync_start = 800 + 85,
1292 .hsync_end = 800 + 85 + 86,
1293 .htotal = 800 + 85 + 86 + 85,
1294 .vdisplay = 480,
1295 .vsync_start = 480 + 16,
1296 .vsync_end = 480 + 16 + 13,
1297 .vtotal = 480 + 16 + 13 + 16,
1298 .vrefresh = 60,
1299};
1300
1301static const struct panel_desc hitachi_tx23d38vm0caa = {
1302 .modes = &hitachi_tx23d38vm0caa_mode,
1303 .num_modes = 1,
1304 .bpc = 6,
1305 .size = {
1306 .width = 195,
1307 .height = 117,
1308 },
Philipp Zabel6c684e32017-10-11 14:59:58 +02001309 .delay = {
1310 .enable = 160,
1311 .disable = 160,
1312 },
Lucas Stach61ac0bf2014-11-06 17:44:35 +01001313};
1314
Nicolas Ferre41bcceb2015-03-19 14:43:01 +01001315static const struct drm_display_mode innolux_at043tn24_mode = {
1316 .clock = 9000,
1317 .hdisplay = 480,
1318 .hsync_start = 480 + 2,
1319 .hsync_end = 480 + 2 + 41,
1320 .htotal = 480 + 2 + 41 + 2,
1321 .vdisplay = 272,
1322 .vsync_start = 272 + 2,
Philipp Zabela4831592017-10-11 14:59:56 +02001323 .vsync_end = 272 + 2 + 10,
1324 .vtotal = 272 + 2 + 10 + 2,
Nicolas Ferre41bcceb2015-03-19 14:43:01 +01001325 .vrefresh = 60,
1326 .flags = DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC,
1327};
1328
1329static const struct panel_desc innolux_at043tn24 = {
1330 .modes = &innolux_at043tn24_mode,
1331 .num_modes = 1,
1332 .bpc = 8,
1333 .size = {
1334 .width = 95,
1335 .height = 54,
1336 },
1337 .bus_format = MEDIA_BUS_FMT_RGB888_1X24,
Laurent Pinchart88bc4172018-09-22 15:02:42 +03001338 .bus_flags = DRM_BUS_FLAG_DE_HIGH | DRM_BUS_FLAG_PIXDATA_DRIVE_POSEDGE,
Nicolas Ferre41bcceb2015-03-19 14:43:01 +01001339};
1340
Riccardo Bortolato4fc24ab2016-04-20 15:37:15 +02001341static const struct drm_display_mode innolux_at070tn92_mode = {
1342 .clock = 33333,
1343 .hdisplay = 800,
1344 .hsync_start = 800 + 210,
1345 .hsync_end = 800 + 210 + 20,
1346 .htotal = 800 + 210 + 20 + 46,
1347 .vdisplay = 480,
1348 .vsync_start = 480 + 22,
1349 .vsync_end = 480 + 22 + 10,
1350 .vtotal = 480 + 22 + 23 + 10,
1351 .vrefresh = 60,
1352};
1353
1354static const struct panel_desc innolux_at070tn92 = {
1355 .modes = &innolux_at070tn92_mode,
1356 .num_modes = 1,
1357 .size = {
1358 .width = 154,
1359 .height = 86,
1360 },
1361 .bus_format = MEDIA_BUS_FMT_RGB888_1X24,
1362};
1363
Christoph Fritza5d2ade2018-06-04 13:16:48 +02001364static const struct display_timing innolux_g070y2_l01_timing = {
1365 .pixelclock = { 28000000, 29500000, 32000000 },
1366 .hactive = { 800, 800, 800 },
1367 .hfront_porch = { 61, 91, 141 },
1368 .hback_porch = { 60, 90, 140 },
1369 .hsync_len = { 12, 12, 12 },
1370 .vactive = { 480, 480, 480 },
1371 .vfront_porch = { 4, 9, 30 },
1372 .vback_porch = { 4, 8, 28 },
1373 .vsync_len = { 2, 2, 2 },
1374 .flags = DISPLAY_FLAGS_DE_HIGH,
1375};
1376
1377static const struct panel_desc innolux_g070y2_l01 = {
1378 .timings = &innolux_g070y2_l01_timing,
1379 .num_timings = 1,
1380 .bpc = 6,
1381 .size = {
1382 .width = 152,
1383 .height = 91,
1384 },
1385 .delay = {
1386 .prepare = 10,
1387 .enable = 100,
1388 .disable = 100,
1389 .unprepare = 800,
1390 },
1391 .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
1392};
1393
Michael Olbrich1e29b842016-08-15 14:32:02 +02001394static const struct display_timing innolux_g101ice_l01_timing = {
1395 .pixelclock = { 60400000, 71100000, 74700000 },
1396 .hactive = { 1280, 1280, 1280 },
1397 .hfront_porch = { 41, 80, 100 },
1398 .hback_porch = { 40, 79, 99 },
1399 .hsync_len = { 1, 1, 1 },
1400 .vactive = { 800, 800, 800 },
1401 .vfront_porch = { 5, 11, 14 },
1402 .vback_porch = { 4, 11, 14 },
1403 .vsync_len = { 1, 1, 1 },
1404 .flags = DISPLAY_FLAGS_DE_HIGH,
1405};
1406
1407static const struct panel_desc innolux_g101ice_l01 = {
1408 .timings = &innolux_g101ice_l01_timing,
1409 .num_timings = 1,
1410 .bpc = 8,
1411 .size = {
1412 .width = 217,
1413 .height = 135,
1414 },
1415 .delay = {
1416 .enable = 200,
1417 .disable = 200,
1418 },
1419 .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
1420};
1421
Lucas Stach4ae13e42016-11-30 14:09:54 +01001422static const struct display_timing innolux_g121i1_l01_timing = {
1423 .pixelclock = { 67450000, 71000000, 74550000 },
1424 .hactive = { 1280, 1280, 1280 },
1425 .hfront_porch = { 40, 80, 160 },
1426 .hback_porch = { 39, 79, 159 },
1427 .hsync_len = { 1, 1, 1 },
1428 .vactive = { 800, 800, 800 },
1429 .vfront_porch = { 5, 11, 100 },
1430 .vback_porch = { 4, 11, 99 },
1431 .vsync_len = { 1, 1, 1 },
Lucas Stachd731f662014-11-06 17:44:33 +01001432};
1433
1434static const struct panel_desc innolux_g121i1_l01 = {
Lucas Stach4ae13e42016-11-30 14:09:54 +01001435 .timings = &innolux_g121i1_l01_timing,
1436 .num_timings = 1,
Lucas Stachd731f662014-11-06 17:44:33 +01001437 .bpc = 6,
1438 .size = {
1439 .width = 261,
1440 .height = 163,
1441 },
Lucas Stach4ae13e42016-11-30 14:09:54 +01001442 .delay = {
1443 .enable = 200,
1444 .disable = 20,
1445 },
1446 .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
Lucas Stachd731f662014-11-06 17:44:33 +01001447};
1448
Akshay Bhatf8fa17b2015-11-18 15:57:47 -05001449static const struct drm_display_mode innolux_g121x1_l03_mode = {
1450 .clock = 65000,
1451 .hdisplay = 1024,
1452 .hsync_start = 1024 + 0,
1453 .hsync_end = 1024 + 1,
1454 .htotal = 1024 + 0 + 1 + 320,
1455 .vdisplay = 768,
1456 .vsync_start = 768 + 38,
1457 .vsync_end = 768 + 38 + 1,
1458 .vtotal = 768 + 38 + 1 + 0,
1459 .vrefresh = 60,
Akshay Bhat2e8c5eb2016-03-01 18:06:54 -05001460 .flags = DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC,
Akshay Bhatf8fa17b2015-11-18 15:57:47 -05001461};
1462
1463static const struct panel_desc innolux_g121x1_l03 = {
1464 .modes = &innolux_g121x1_l03_mode,
1465 .num_modes = 1,
1466 .bpc = 6,
1467 .size = {
1468 .width = 246,
1469 .height = 185,
1470 },
1471 .delay = {
1472 .enable = 200,
1473 .unprepare = 200,
1474 .disable = 400,
1475 },
1476};
1477
Thierry Reding0a2288c2014-07-03 14:02:59 +02001478static const struct drm_display_mode innolux_n116bge_mode = {
Daniel Kurtz7fe8c772014-09-02 10:56:46 +08001479 .clock = 76420,
Thierry Reding0a2288c2014-07-03 14:02:59 +02001480 .hdisplay = 1366,
Daniel Kurtz7fe8c772014-09-02 10:56:46 +08001481 .hsync_start = 1366 + 136,
1482 .hsync_end = 1366 + 136 + 30,
1483 .htotal = 1366 + 136 + 30 + 60,
Thierry Reding0a2288c2014-07-03 14:02:59 +02001484 .vdisplay = 768,
1485 .vsync_start = 768 + 8,
Daniel Kurtz7fe8c772014-09-02 10:56:46 +08001486 .vsync_end = 768 + 8 + 12,
1487 .vtotal = 768 + 8 + 12 + 12,
Thierry Reding0a2288c2014-07-03 14:02:59 +02001488 .vrefresh = 60,
1489 .flags = DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC,
1490};
1491
1492static const struct panel_desc innolux_n116bge = {
1493 .modes = &innolux_n116bge_mode,
1494 .num_modes = 1,
1495 .bpc = 6,
1496 .size = {
1497 .width = 256,
1498 .height = 144,
1499 },
1500};
1501
Alban Bedelea447392014-07-22 08:38:55 +02001502static const struct drm_display_mode innolux_n156bge_l21_mode = {
1503 .clock = 69300,
1504 .hdisplay = 1366,
1505 .hsync_start = 1366 + 16,
1506 .hsync_end = 1366 + 16 + 34,
1507 .htotal = 1366 + 16 + 34 + 50,
1508 .vdisplay = 768,
1509 .vsync_start = 768 + 2,
1510 .vsync_end = 768 + 2 + 6,
1511 .vtotal = 768 + 2 + 6 + 12,
1512 .vrefresh = 60,
1513};
1514
1515static const struct panel_desc innolux_n156bge_l21 = {
1516 .modes = &innolux_n156bge_l21_mode,
1517 .num_modes = 1,
Stéphane Marchesin0208d512014-06-19 18:18:28 -07001518 .bpc = 6,
Alban Bedelea447392014-07-22 08:38:55 +02001519 .size = {
1520 .width = 344,
1521 .height = 193,
1522 },
1523};
1524
Douglas Anderson8f054b62018-10-25 15:21:34 -07001525static const struct drm_display_mode innolux_p120zdg_bf1_mode = {
spanda@codeaurora.orgda50bd42018-05-15 11:22:43 +05301526 .clock = 206016,
1527 .hdisplay = 2160,
1528 .hsync_start = 2160 + 48,
1529 .hsync_end = 2160 + 48 + 32,
1530 .htotal = 2160 + 48 + 32 + 80,
1531 .vdisplay = 1440,
1532 .vsync_start = 1440 + 3,
1533 .vsync_end = 1440 + 3 + 10,
1534 .vtotal = 1440 + 3 + 10 + 27,
1535 .vrefresh = 60,
1536 .flags = DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC,
1537};
1538
Douglas Anderson8f054b62018-10-25 15:21:34 -07001539static const struct panel_desc innolux_p120zdg_bf1 = {
1540 .modes = &innolux_p120zdg_bf1_mode,
spanda@codeaurora.orgda50bd42018-05-15 11:22:43 +05301541 .num_modes = 1,
1542 .bpc = 8,
1543 .size = {
Douglas Anderson8f054b62018-10-25 15:21:34 -07001544 .width = 254,
1545 .height = 169,
spanda@codeaurora.orgda50bd42018-05-15 11:22:43 +05301546 },
Sean Paul22fd99e2018-08-13 17:30:40 -04001547 .delay = {
Douglas Anderson625d3b52018-10-25 15:21:31 -07001548 .hpd_absent_delay = 200,
Sean Paul22fd99e2018-08-13 17:30:40 -04001549 .unprepare = 500,
1550 },
spanda@codeaurora.orgda50bd42018-05-15 11:22:43 +05301551};
1552
Michael Grzeschikbccac3f2015-03-19 12:22:44 +01001553static const struct drm_display_mode innolux_zj070na_01p_mode = {
1554 .clock = 51501,
1555 .hdisplay = 1024,
1556 .hsync_start = 1024 + 128,
1557 .hsync_end = 1024 + 128 + 64,
1558 .htotal = 1024 + 128 + 64 + 128,
1559 .vdisplay = 600,
1560 .vsync_start = 600 + 16,
1561 .vsync_end = 600 + 16 + 4,
1562 .vtotal = 600 + 16 + 4 + 16,
1563 .vrefresh = 60,
1564};
1565
1566static const struct panel_desc innolux_zj070na_01p = {
1567 .modes = &innolux_zj070na_01p_mode,
1568 .num_modes = 1,
1569 .bpc = 6,
1570 .size = {
Thierry Reding81598842016-06-10 15:33:13 +02001571 .width = 154,
1572 .height = 90,
Michael Grzeschikbccac3f2015-03-19 12:22:44 +01001573 },
1574};
1575
Jagan Teki8cfe8342018-02-04 23:19:28 +05301576static const struct display_timing koe_tx31d200vm0baa_timing = {
1577 .pixelclock = { 39600000, 43200000, 48000000 },
1578 .hactive = { 1280, 1280, 1280 },
1579 .hfront_porch = { 16, 36, 56 },
1580 .hback_porch = { 16, 36, 56 },
1581 .hsync_len = { 8, 8, 8 },
1582 .vactive = { 480, 480, 480 },
Stefan Agnerc9b6be72018-04-19 23:20:03 +02001583 .vfront_porch = { 6, 21, 33 },
1584 .vback_porch = { 6, 21, 33 },
Jagan Teki8cfe8342018-02-04 23:19:28 +05301585 .vsync_len = { 8, 8, 8 },
1586 .flags = DISPLAY_FLAGS_DE_HIGH,
1587};
1588
1589static const struct panel_desc koe_tx31d200vm0baa = {
1590 .timings = &koe_tx31d200vm0baa_timing,
1591 .num_timings = 1,
1592 .bpc = 6,
1593 .size = {
1594 .width = 292,
1595 .height = 109,
1596 },
1597 .bus_format = MEDIA_BUS_FMT_RGB666_1X7X3_SPWG,
1598};
1599
Lucas Stach8def22e2015-12-02 19:41:11 +01001600static const struct display_timing kyo_tcg121xglp_timing = {
1601 .pixelclock = { 52000000, 65000000, 71000000 },
1602 .hactive = { 1024, 1024, 1024 },
1603 .hfront_porch = { 2, 2, 2 },
1604 .hback_porch = { 2, 2, 2 },
1605 .hsync_len = { 86, 124, 244 },
1606 .vactive = { 768, 768, 768 },
1607 .vfront_porch = { 2, 2, 2 },
1608 .vback_porch = { 2, 2, 2 },
1609 .vsync_len = { 6, 34, 73 },
1610 .flags = DISPLAY_FLAGS_DE_HIGH,
1611};
1612
1613static const struct panel_desc kyo_tcg121xglp = {
1614 .timings = &kyo_tcg121xglp_timing,
1615 .num_timings = 1,
1616 .bpc = 8,
1617 .size = {
1618 .width = 246,
1619 .height = 184,
1620 },
1621 .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
1622};
1623
Paul Kocialkowski27abdd82018-11-07 19:18:41 +01001624static const struct drm_display_mode lemaker_bl035_rgb_002_mode = {
1625 .clock = 7000,
1626 .hdisplay = 320,
1627 .hsync_start = 320 + 20,
1628 .hsync_end = 320 + 20 + 30,
1629 .htotal = 320 + 20 + 30 + 38,
1630 .vdisplay = 240,
1631 .vsync_start = 240 + 4,
1632 .vsync_end = 240 + 4 + 3,
1633 .vtotal = 240 + 4 + 3 + 15,
1634 .vrefresh = 60,
1635};
1636
1637static const struct panel_desc lemaker_bl035_rgb_002 = {
1638 .modes = &lemaker_bl035_rgb_002_mode,
1639 .num_modes = 1,
1640 .size = {
1641 .width = 70,
1642 .height = 52,
1643 },
1644 .bus_format = MEDIA_BUS_FMT_RGB888_1X24,
1645 .bus_flags = DRM_BUS_FLAG_DE_LOW,
1646};
1647
Heiko Schocherdd015002015-05-22 10:25:57 +02001648static const struct drm_display_mode lg_lb070wv8_mode = {
1649 .clock = 33246,
1650 .hdisplay = 800,
1651 .hsync_start = 800 + 88,
1652 .hsync_end = 800 + 88 + 80,
1653 .htotal = 800 + 88 + 80 + 88,
1654 .vdisplay = 480,
1655 .vsync_start = 480 + 10,
1656 .vsync_end = 480 + 10 + 25,
1657 .vtotal = 480 + 10 + 25 + 10,
1658 .vrefresh = 60,
1659};
1660
1661static const struct panel_desc lg_lb070wv8 = {
1662 .modes = &lg_lb070wv8_mode,
1663 .num_modes = 1,
1664 .bpc = 16,
1665 .size = {
1666 .width = 151,
1667 .height = 91,
1668 },
1669 .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
1670};
1671
Yakir Yangc5ece402016-06-28 12:51:15 +08001672static const struct drm_display_mode lg_lp079qx1_sp0v_mode = {
1673 .clock = 200000,
1674 .hdisplay = 1536,
1675 .hsync_start = 1536 + 12,
1676 .hsync_end = 1536 + 12 + 16,
1677 .htotal = 1536 + 12 + 16 + 48,
1678 .vdisplay = 2048,
1679 .vsync_start = 2048 + 8,
1680 .vsync_end = 2048 + 8 + 4,
1681 .vtotal = 2048 + 8 + 4 + 8,
1682 .vrefresh = 60,
1683 .flags = DRM_MODE_FLAG_NVSYNC | DRM_MODE_FLAG_NHSYNC,
1684};
1685
1686static const struct panel_desc lg_lp079qx1_sp0v = {
1687 .modes = &lg_lp079qx1_sp0v_mode,
1688 .num_modes = 1,
1689 .size = {
1690 .width = 129,
1691 .height = 171,
1692 },
1693};
1694
Yakir Yang0355dde2016-06-12 10:56:02 +08001695static const struct drm_display_mode lg_lp097qx1_spa1_mode = {
1696 .clock = 205210,
1697 .hdisplay = 2048,
1698 .hsync_start = 2048 + 150,
1699 .hsync_end = 2048 + 150 + 5,
1700 .htotal = 2048 + 150 + 5 + 5,
1701 .vdisplay = 1536,
1702 .vsync_start = 1536 + 3,
1703 .vsync_end = 1536 + 3 + 1,
1704 .vtotal = 1536 + 3 + 1 + 9,
1705 .vrefresh = 60,
1706};
1707
1708static const struct panel_desc lg_lp097qx1_spa1 = {
1709 .modes = &lg_lp097qx1_spa1_mode,
1710 .num_modes = 1,
1711 .size = {
1712 .width = 208,
1713 .height = 147,
1714 },
1715};
1716
Jitao Shi690d8fa2016-02-22 19:01:44 +08001717static const struct drm_display_mode lg_lp120up1_mode = {
1718 .clock = 162300,
1719 .hdisplay = 1920,
1720 .hsync_start = 1920 + 40,
1721 .hsync_end = 1920 + 40 + 40,
1722 .htotal = 1920 + 40 + 40+ 80,
1723 .vdisplay = 1280,
1724 .vsync_start = 1280 + 4,
1725 .vsync_end = 1280 + 4 + 4,
1726 .vtotal = 1280 + 4 + 4 + 12,
1727 .vrefresh = 60,
1728};
1729
1730static const struct panel_desc lg_lp120up1 = {
1731 .modes = &lg_lp120up1_mode,
1732 .num_modes = 1,
1733 .bpc = 8,
1734 .size = {
1735 .width = 267,
1736 .height = 183,
1737 },
1738};
1739
Thierry Redingec7c5652013-11-15 15:59:32 +01001740static const struct drm_display_mode lg_lp129qe_mode = {
1741 .clock = 285250,
1742 .hdisplay = 2560,
1743 .hsync_start = 2560 + 48,
1744 .hsync_end = 2560 + 48 + 32,
1745 .htotal = 2560 + 48 + 32 + 80,
1746 .vdisplay = 1700,
1747 .vsync_start = 1700 + 3,
1748 .vsync_end = 1700 + 3 + 10,
1749 .vtotal = 1700 + 3 + 10 + 36,
1750 .vrefresh = 60,
1751};
1752
1753static const struct panel_desc lg_lp129qe = {
1754 .modes = &lg_lp129qe_mode,
1755 .num_modes = 1,
Stéphane Marchesin0208d512014-06-19 18:18:28 -07001756 .bpc = 8,
Thierry Redingec7c5652013-11-15 15:59:32 +01001757 .size = {
1758 .width = 272,
1759 .height = 181,
1760 },
1761};
1762
Lukasz Majewski65c766c2017-10-21 00:18:37 +02001763static const struct drm_display_mode mitsubishi_aa070mc01_mode = {
1764 .clock = 30400,
1765 .hdisplay = 800,
1766 .hsync_start = 800 + 0,
1767 .hsync_end = 800 + 1,
1768 .htotal = 800 + 0 + 1 + 160,
1769 .vdisplay = 480,
1770 .vsync_start = 480 + 0,
1771 .vsync_end = 480 + 48 + 1,
1772 .vtotal = 480 + 48 + 1 + 0,
1773 .vrefresh = 60,
1774 .flags = DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC,
1775};
1776
1777static const struct panel_desc mitsubishi_aa070mc01 = {
1778 .modes = &mitsubishi_aa070mc01_mode,
1779 .num_modes = 1,
1780 .bpc = 8,
1781 .size = {
1782 .width = 152,
1783 .height = 91,
1784 },
1785
1786 .delay = {
1787 .enable = 200,
1788 .unprepare = 200,
1789 .disable = 400,
1790 },
1791 .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
1792 .bus_flags = DRM_BUS_FLAG_DE_HIGH,
1793};
1794
Lucas Stach01bacc132017-06-08 20:07:55 +02001795static const struct display_timing nec_nl12880bc20_05_timing = {
1796 .pixelclock = { 67000000, 71000000, 75000000 },
1797 .hactive = { 1280, 1280, 1280 },
1798 .hfront_porch = { 2, 30, 30 },
1799 .hback_porch = { 6, 100, 100 },
1800 .hsync_len = { 2, 30, 30 },
1801 .vactive = { 800, 800, 800 },
1802 .vfront_porch = { 5, 5, 5 },
1803 .vback_porch = { 11, 11, 11 },
1804 .vsync_len = { 7, 7, 7 },
1805};
1806
1807static const struct panel_desc nec_nl12880bc20_05 = {
1808 .timings = &nec_nl12880bc20_05_timing,
1809 .num_timings = 1,
1810 .bpc = 8,
1811 .size = {
1812 .width = 261,
1813 .height = 163,
1814 },
1815 .delay = {
1816 .enable = 50,
1817 .disable = 50,
1818 },
1819 .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
1820};
1821
jianwei wangc6e87f92015-07-29 16:30:02 +08001822static const struct drm_display_mode nec_nl4827hc19_05b_mode = {
1823 .clock = 10870,
1824 .hdisplay = 480,
1825 .hsync_start = 480 + 2,
1826 .hsync_end = 480 + 2 + 41,
1827 .htotal = 480 + 2 + 41 + 2,
1828 .vdisplay = 272,
1829 .vsync_start = 272 + 2,
1830 .vsync_end = 272 + 2 + 4,
1831 .vtotal = 272 + 2 + 4 + 2,
1832 .vrefresh = 74,
Stefan Agner4bc390c2015-11-17 19:10:29 -08001833 .flags = DRM_MODE_FLAG_NVSYNC | DRM_MODE_FLAG_NHSYNC,
jianwei wangc6e87f92015-07-29 16:30:02 +08001834};
1835
1836static const struct panel_desc nec_nl4827hc19_05b = {
1837 .modes = &nec_nl4827hc19_05b_mode,
1838 .num_modes = 1,
1839 .bpc = 8,
1840 .size = {
1841 .width = 95,
1842 .height = 54,
1843 },
Stefan Agner2c806612016-02-08 12:50:13 -08001844 .bus_format = MEDIA_BUS_FMT_RGB888_1X24,
Laurent Pinchart88bc4172018-09-22 15:02:42 +03001845 .bus_flags = DRM_BUS_FLAG_PIXDATA_DRIVE_POSEDGE,
jianwei wangc6e87f92015-07-29 16:30:02 +08001846};
1847
Maxime Riparde6c2f062016-09-06 16:46:17 +02001848static const struct drm_display_mode netron_dy_e231732_mode = {
1849 .clock = 66000,
1850 .hdisplay = 1024,
1851 .hsync_start = 1024 + 160,
1852 .hsync_end = 1024 + 160 + 70,
1853 .htotal = 1024 + 160 + 70 + 90,
1854 .vdisplay = 600,
1855 .vsync_start = 600 + 127,
1856 .vsync_end = 600 + 127 + 20,
1857 .vtotal = 600 + 127 + 20 + 3,
1858 .vrefresh = 60,
1859};
1860
1861static const struct panel_desc netron_dy_e231732 = {
1862 .modes = &netron_dy_e231732_mode,
1863 .num_modes = 1,
1864 .size = {
1865 .width = 154,
1866 .height = 87,
1867 },
1868 .bus_format = MEDIA_BUS_FMT_RGB666_1X18,
1869};
1870
Tomi Valkeinen3b39ad72018-06-18 16:22:40 +03001871static const struct drm_display_mode newhaven_nhd_43_480272ef_atxl_mode = {
1872 .clock = 9000,
1873 .hdisplay = 480,
1874 .hsync_start = 480 + 2,
1875 .hsync_end = 480 + 2 + 41,
1876 .htotal = 480 + 2 + 41 + 2,
1877 .vdisplay = 272,
1878 .vsync_start = 272 + 2,
1879 .vsync_end = 272 + 2 + 10,
1880 .vtotal = 272 + 2 + 10 + 2,
1881 .vrefresh = 60,
1882 .flags = DRM_MODE_FLAG_NVSYNC | DRM_MODE_FLAG_NHSYNC,
1883};
1884
1885static const struct panel_desc newhaven_nhd_43_480272ef_atxl = {
1886 .modes = &newhaven_nhd_43_480272ef_atxl_mode,
1887 .num_modes = 1,
1888 .bpc = 8,
1889 .size = {
1890 .width = 95,
1891 .height = 54,
1892 },
1893 .bus_format = MEDIA_BUS_FMT_RGB888_1X24,
Laurent Pinchart88bc4172018-09-22 15:02:42 +03001894 .bus_flags = DRM_BUS_FLAG_DE_HIGH | DRM_BUS_FLAG_PIXDATA_DRIVE_POSEDGE |
1895 DRM_BUS_FLAG_SYNC_DRIVE_POSEDGE,
Tomi Valkeinen3b39ad72018-06-18 16:22:40 +03001896};
1897
Lucas Stach4177fa62017-06-08 20:07:57 +02001898static const struct display_timing nlt_nl192108ac18_02d_timing = {
1899 .pixelclock = { 130000000, 148350000, 163000000 },
1900 .hactive = { 1920, 1920, 1920 },
1901 .hfront_porch = { 80, 100, 100 },
1902 .hback_porch = { 100, 120, 120 },
1903 .hsync_len = { 50, 60, 60 },
1904 .vactive = { 1080, 1080, 1080 },
1905 .vfront_porch = { 12, 30, 30 },
1906 .vback_porch = { 4, 10, 10 },
1907 .vsync_len = { 4, 5, 5 },
1908};
1909
1910static const struct panel_desc nlt_nl192108ac18_02d = {
1911 .timings = &nlt_nl192108ac18_02d_timing,
1912 .num_timings = 1,
1913 .bpc = 8,
1914 .size = {
1915 .width = 344,
1916 .height = 194,
1917 },
1918 .delay = {
1919 .unprepare = 500,
1920 },
1921 .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
1922};
1923
Fabien Lahoudere05ec0e42016-10-17 11:38:01 +02001924static const struct drm_display_mode nvd_9128_mode = {
1925 .clock = 29500,
1926 .hdisplay = 800,
1927 .hsync_start = 800 + 130,
1928 .hsync_end = 800 + 130 + 98,
1929 .htotal = 800 + 0 + 130 + 98,
1930 .vdisplay = 480,
1931 .vsync_start = 480 + 10,
1932 .vsync_end = 480 + 10 + 50,
1933 .vtotal = 480 + 0 + 10 + 50,
1934};
1935
1936static const struct panel_desc nvd_9128 = {
1937 .modes = &nvd_9128_mode,
1938 .num_modes = 1,
1939 .bpc = 8,
1940 .size = {
1941 .width = 156,
1942 .height = 88,
1943 },
1944 .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
1945};
1946
Gary Bissona99fb622015-06-10 18:44:23 +02001947static const struct display_timing okaya_rs800480t_7x0gp_timing = {
1948 .pixelclock = { 30000000, 30000000, 40000000 },
1949 .hactive = { 800, 800, 800 },
1950 .hfront_porch = { 40, 40, 40 },
1951 .hback_porch = { 40, 40, 40 },
1952 .hsync_len = { 1, 48, 48 },
1953 .vactive = { 480, 480, 480 },
1954 .vfront_porch = { 13, 13, 13 },
1955 .vback_porch = { 29, 29, 29 },
1956 .vsync_len = { 3, 3, 3 },
1957 .flags = DISPLAY_FLAGS_DE_HIGH,
1958};
1959
1960static const struct panel_desc okaya_rs800480t_7x0gp = {
1961 .timings = &okaya_rs800480t_7x0gp_timing,
1962 .num_timings = 1,
1963 .bpc = 6,
1964 .size = {
1965 .width = 154,
1966 .height = 87,
1967 },
1968 .delay = {
1969 .prepare = 41,
1970 .enable = 50,
1971 .unprepare = 41,
1972 .disable = 50,
1973 },
1974 .bus_format = MEDIA_BUS_FMT_RGB666_1X18,
1975};
1976
Maxime Ripardcf5c9e62016-03-23 17:38:34 +01001977static const struct drm_display_mode olimex_lcd_olinuxino_43ts_mode = {
1978 .clock = 9000,
1979 .hdisplay = 480,
1980 .hsync_start = 480 + 5,
1981 .hsync_end = 480 + 5 + 30,
1982 .htotal = 480 + 5 + 30 + 10,
1983 .vdisplay = 272,
1984 .vsync_start = 272 + 8,
1985 .vsync_end = 272 + 8 + 5,
1986 .vtotal = 272 + 8 + 5 + 3,
1987 .vrefresh = 60,
1988};
1989
1990static const struct panel_desc olimex_lcd_olinuxino_43ts = {
1991 .modes = &olimex_lcd_olinuxino_43ts_mode,
1992 .num_modes = 1,
1993 .size = {
Jonathan Liu30c6d7ab92017-07-20 20:29:43 +10001994 .width = 95,
1995 .height = 54,
Maxime Ripardcf5c9e62016-03-23 17:38:34 +01001996 },
Jonathan Liu5c2a7c62016-09-11 20:46:55 +10001997 .bus_format = MEDIA_BUS_FMT_RGB888_1X24,
Maxime Ripardcf5c9e62016-03-23 17:38:34 +01001998};
1999
Eric Anholte8b6f562016-03-24 17:23:48 -07002000/*
2001 * 800x480 CVT. The panel appears to be quite accepting, at least as far as
2002 * pixel clocks, but this is the timing that was being used in the Adafruit
2003 * installation instructions.
2004 */
2005static const struct drm_display_mode ontat_yx700wv03_mode = {
2006 .clock = 29500,
2007 .hdisplay = 800,
2008 .hsync_start = 824,
2009 .hsync_end = 896,
2010 .htotal = 992,
2011 .vdisplay = 480,
2012 .vsync_start = 483,
2013 .vsync_end = 493,
2014 .vtotal = 500,
2015 .vrefresh = 60,
2016 .flags = DRM_MODE_FLAG_NVSYNC | DRM_MODE_FLAG_NHSYNC,
2017};
2018
2019/*
2020 * Specification at:
2021 * https://www.adafruit.com/images/product-files/2406/c3163.pdf
2022 */
2023static const struct panel_desc ontat_yx700wv03 = {
2024 .modes = &ontat_yx700wv03_mode,
2025 .num_modes = 1,
2026 .bpc = 8,
2027 .size = {
2028 .width = 154,
2029 .height = 83,
2030 },
Eric Anholt5651e5e2018-03-09 15:33:32 -08002031 .bus_format = MEDIA_BUS_FMT_RGB666_1X18,
Eric Anholte8b6f562016-03-24 17:23:48 -07002032};
2033
Philipp Zabel725c9d42015-02-11 18:50:11 +01002034static const struct drm_display_mode ortustech_com43h4m85ulc_mode = {
2035 .clock = 25000,
2036 .hdisplay = 480,
2037 .hsync_start = 480 + 10,
2038 .hsync_end = 480 + 10 + 10,
2039 .htotal = 480 + 10 + 10 + 15,
2040 .vdisplay = 800,
2041 .vsync_start = 800 + 3,
2042 .vsync_end = 800 + 3 + 3,
2043 .vtotal = 800 + 3 + 3 + 3,
2044 .vrefresh = 60,
2045};
2046
2047static const struct panel_desc ortustech_com43h4m85ulc = {
2048 .modes = &ortustech_com43h4m85ulc_mode,
2049 .num_modes = 1,
2050 .bpc = 8,
2051 .size = {
2052 .width = 56,
2053 .height = 93,
2054 },
2055 .bus_format = MEDIA_BUS_FMT_RGB888_1X24,
Laurent Pinchart88bc4172018-09-22 15:02:42 +03002056 .bus_flags = DRM_BUS_FLAG_DE_HIGH | DRM_BUS_FLAG_PIXDATA_DRIVE_POSEDGE,
Philipp Zabel725c9d42015-02-11 18:50:11 +01002057};
2058
Laurent Pinchart163f7a32018-12-07 22:13:44 +02002059static const struct drm_display_mode osddisplays_osd070t1718_19ts_mode = {
2060 .clock = 33000,
2061 .hdisplay = 800,
2062 .hsync_start = 800 + 210,
2063 .hsync_end = 800 + 210 + 30,
2064 .htotal = 800 + 210 + 30 + 16,
2065 .vdisplay = 480,
2066 .vsync_start = 480 + 22,
2067 .vsync_end = 480 + 22 + 13,
2068 .vtotal = 480 + 22 + 13 + 10,
2069 .vrefresh = 60,
2070 .flags = DRM_MODE_FLAG_NVSYNC | DRM_MODE_FLAG_NHSYNC,
2071};
2072
2073static const struct panel_desc osddisplays_osd070t1718_19ts = {
2074 .modes = &osddisplays_osd070t1718_19ts_mode,
2075 .num_modes = 1,
2076 .bpc = 8,
2077 .size = {
2078 .width = 152,
2079 .height = 91,
2080 },
2081 .bus_format = MEDIA_BUS_FMT_RGB888_1X24,
2082 .bus_flags = DRM_BUS_FLAG_DE_HIGH | DRM_BUS_FLAG_PIXDATA_DRIVE_POSEDGE,
2083};
2084
Eugen Hristev4ba3e562019-01-14 09:43:31 +00002085static const struct drm_display_mode pda_91_00156_a0_mode = {
2086 .clock = 33300,
2087 .hdisplay = 800,
2088 .hsync_start = 800 + 1,
2089 .hsync_end = 800 + 1 + 64,
2090 .htotal = 800 + 1 + 64 + 64,
2091 .vdisplay = 480,
2092 .vsync_start = 480 + 1,
2093 .vsync_end = 480 + 1 + 23,
2094 .vtotal = 480 + 1 + 23 + 22,
2095 .vrefresh = 60,
2096};
2097
2098static const struct panel_desc pda_91_00156_a0 = {
2099 .modes = &pda_91_00156_a0_mode,
2100 .num_modes = 1,
2101 .size = {
2102 .width = 152,
2103 .height = 91,
2104 },
2105 .bus_format = MEDIA_BUS_FMT_RGB888_1X24,
2106};
2107
2108
Josh Wud2a6f0f2015-10-08 17:42:41 +02002109static const struct drm_display_mode qd43003c0_40_mode = {
2110 .clock = 9000,
2111 .hdisplay = 480,
2112 .hsync_start = 480 + 8,
2113 .hsync_end = 480 + 8 + 4,
2114 .htotal = 480 + 8 + 4 + 39,
2115 .vdisplay = 272,
2116 .vsync_start = 272 + 4,
2117 .vsync_end = 272 + 4 + 10,
2118 .vtotal = 272 + 4 + 10 + 2,
2119 .vrefresh = 60,
2120};
2121
2122static const struct panel_desc qd43003c0_40 = {
2123 .modes = &qd43003c0_40_mode,
2124 .num_modes = 1,
2125 .bpc = 8,
2126 .size = {
2127 .width = 95,
2128 .height = 53,
2129 },
2130 .bus_format = MEDIA_BUS_FMT_RGB888_1X24,
2131};
2132
Jagan Teki23167fa2018-06-07 19:16:48 +05302133static const struct display_timing rocktech_rk070er9427_timing = {
2134 .pixelclock = { 26400000, 33300000, 46800000 },
2135 .hactive = { 800, 800, 800 },
2136 .hfront_porch = { 16, 210, 354 },
2137 .hback_porch = { 46, 46, 46 },
2138 .hsync_len = { 1, 1, 1 },
2139 .vactive = { 480, 480, 480 },
2140 .vfront_porch = { 7, 22, 147 },
2141 .vback_porch = { 23, 23, 23 },
2142 .vsync_len = { 1, 1, 1 },
2143 .flags = DISPLAY_FLAGS_DE_HIGH,
2144};
2145
2146static const struct panel_desc rocktech_rk070er9427 = {
2147 .timings = &rocktech_rk070er9427_timing,
2148 .num_timings = 1,
2149 .bpc = 6,
2150 .size = {
2151 .width = 154,
2152 .height = 86,
2153 },
2154 .delay = {
2155 .prepare = 41,
2156 .enable = 50,
2157 .unprepare = 41,
2158 .disable = 50,
2159 },
2160 .bus_format = MEDIA_BUS_FMT_RGB666_1X18,
2161};
2162
Yakir Yang0330eaf2016-06-12 10:56:13 +08002163static const struct drm_display_mode samsung_lsn122dl01_c01_mode = {
2164 .clock = 271560,
2165 .hdisplay = 2560,
2166 .hsync_start = 2560 + 48,
2167 .hsync_end = 2560 + 48 + 32,
2168 .htotal = 2560 + 48 + 32 + 80,
2169 .vdisplay = 1600,
2170 .vsync_start = 1600 + 2,
2171 .vsync_end = 1600 + 2 + 5,
2172 .vtotal = 1600 + 2 + 5 + 57,
2173 .vrefresh = 60,
2174};
2175
2176static const struct panel_desc samsung_lsn122dl01_c01 = {
2177 .modes = &samsung_lsn122dl01_c01_mode,
2178 .num_modes = 1,
2179 .size = {
2180 .width = 263,
2181 .height = 164,
2182 },
2183};
2184
Marc Dietrich6d54e3d2013-12-21 21:38:12 +01002185static const struct drm_display_mode samsung_ltn101nt05_mode = {
2186 .clock = 54030,
2187 .hdisplay = 1024,
2188 .hsync_start = 1024 + 24,
2189 .hsync_end = 1024 + 24 + 136,
2190 .htotal = 1024 + 24 + 136 + 160,
2191 .vdisplay = 600,
2192 .vsync_start = 600 + 3,
2193 .vsync_end = 600 + 3 + 6,
2194 .vtotal = 600 + 3 + 6 + 61,
2195 .vrefresh = 60,
2196};
2197
2198static const struct panel_desc samsung_ltn101nt05 = {
2199 .modes = &samsung_ltn101nt05_mode,
2200 .num_modes = 1,
Stéphane Marchesin0208d512014-06-19 18:18:28 -07002201 .bpc = 6,
Marc Dietrich6d54e3d2013-12-21 21:38:12 +01002202 .size = {
Thierry Reding81598842016-06-10 15:33:13 +02002203 .width = 223,
2204 .height = 125,
Marc Dietrich6d54e3d2013-12-21 21:38:12 +01002205 },
2206};
2207
Stéphane Marchesin0c934302015-03-18 10:52:18 +01002208static const struct drm_display_mode samsung_ltn140at29_301_mode = {
2209 .clock = 76300,
2210 .hdisplay = 1366,
2211 .hsync_start = 1366 + 64,
2212 .hsync_end = 1366 + 64 + 48,
2213 .htotal = 1366 + 64 + 48 + 128,
2214 .vdisplay = 768,
2215 .vsync_start = 768 + 2,
2216 .vsync_end = 768 + 2 + 5,
2217 .vtotal = 768 + 2 + 5 + 17,
2218 .vrefresh = 60,
2219};
2220
2221static const struct panel_desc samsung_ltn140at29_301 = {
2222 .modes = &samsung_ltn140at29_301_mode,
2223 .num_modes = 1,
2224 .bpc = 6,
2225 .size = {
2226 .width = 320,
2227 .height = 187,
2228 },
2229};
2230
Vladimir Zapolskiy03e3ec92018-07-06 21:51:01 +03002231static const struct drm_display_mode sharp_lq035q7db03_mode = {
2232 .clock = 5500,
2233 .hdisplay = 240,
2234 .hsync_start = 240 + 16,
2235 .hsync_end = 240 + 16 + 7,
2236 .htotal = 240 + 16 + 7 + 5,
2237 .vdisplay = 320,
2238 .vsync_start = 320 + 9,
2239 .vsync_end = 320 + 9 + 1,
2240 .vtotal = 320 + 9 + 1 + 7,
2241 .vrefresh = 60,
2242};
2243
2244static const struct panel_desc sharp_lq035q7db03 = {
2245 .modes = &sharp_lq035q7db03_mode,
2246 .num_modes = 1,
2247 .bpc = 6,
2248 .size = {
2249 .width = 54,
2250 .height = 72,
2251 },
2252 .bus_format = MEDIA_BUS_FMT_RGB666_1X18,
2253};
2254
Joshua Clayton592aa022016-07-06 15:59:16 -07002255static const struct display_timing sharp_lq101k1ly04_timing = {
2256 .pixelclock = { 60000000, 65000000, 80000000 },
2257 .hactive = { 1280, 1280, 1280 },
2258 .hfront_porch = { 20, 20, 20 },
2259 .hback_porch = { 20, 20, 20 },
2260 .hsync_len = { 10, 10, 10 },
2261 .vactive = { 800, 800, 800 },
2262 .vfront_porch = { 4, 4, 4 },
2263 .vback_porch = { 4, 4, 4 },
2264 .vsync_len = { 4, 4, 4 },
2265 .flags = DISPLAY_FLAGS_PIXDATA_POSEDGE,
2266};
2267
2268static const struct panel_desc sharp_lq101k1ly04 = {
2269 .timings = &sharp_lq101k1ly04_timing,
2270 .num_timings = 1,
2271 .bpc = 8,
2272 .size = {
2273 .width = 217,
2274 .height = 136,
2275 },
2276 .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_JEIDA,
2277};
2278
Sean Paul9f7bae22018-02-08 12:48:52 -05002279static const struct display_timing sharp_lq123p1jx31_timing = {
2280 .pixelclock = { 252750000, 252750000, 266604720 },
2281 .hactive = { 2400, 2400, 2400 },
2282 .hfront_porch = { 48, 48, 48 },
2283 .hback_porch = { 80, 80, 84 },
2284 .hsync_len = { 32, 32, 32 },
2285 .vactive = { 1600, 1600, 1600 },
2286 .vfront_porch = { 3, 3, 3 },
2287 .vback_porch = { 33, 33, 120 },
2288 .vsync_len = { 10, 10, 10 },
2289 .flags = DISPLAY_FLAGS_VSYNC_LOW | DISPLAY_FLAGS_HSYNC_LOW,
Yakir Yang739c7de2016-06-12 10:56:35 +08002290};
2291
2292static const struct panel_desc sharp_lq123p1jx31 = {
Sean Paul9f7bae22018-02-08 12:48:52 -05002293 .timings = &sharp_lq123p1jx31_timing,
2294 .num_timings = 1,
zain wang5466a632016-11-19 10:27:16 +08002295 .bpc = 8,
Yakir Yang739c7de2016-06-12 10:56:35 +08002296 .size = {
2297 .width = 259,
2298 .height = 173,
2299 },
Yakir Yanga42f6e32016-07-21 21:14:34 +08002300 .delay = {
2301 .prepare = 110,
2302 .enable = 50,
2303 .unprepare = 550,
2304 },
Yakir Yang739c7de2016-06-12 10:56:35 +08002305};
2306
Gustaf Lindström0f9cdd72016-10-04 17:29:21 +02002307static const struct drm_display_mode sharp_lq150x1lg11_mode = {
2308 .clock = 71100,
2309 .hdisplay = 1024,
2310 .hsync_start = 1024 + 168,
2311 .hsync_end = 1024 + 168 + 64,
2312 .htotal = 1024 + 168 + 64 + 88,
2313 .vdisplay = 768,
2314 .vsync_start = 768 + 37,
2315 .vsync_end = 768 + 37 + 2,
2316 .vtotal = 768 + 37 + 2 + 8,
2317 .vrefresh = 60,
2318};
2319
2320static const struct panel_desc sharp_lq150x1lg11 = {
2321 .modes = &sharp_lq150x1lg11_mode,
2322 .num_modes = 1,
2323 .bpc = 6,
2324 .size = {
2325 .width = 304,
2326 .height = 228,
2327 },
2328 .bus_format = MEDIA_BUS_FMT_RGB565_1X16,
2329};
2330
Boris BREZILLON9c6615b2015-03-19 14:43:00 +01002331static const struct drm_display_mode shelly_sca07010_bfn_lnn_mode = {
2332 .clock = 33300,
2333 .hdisplay = 800,
2334 .hsync_start = 800 + 1,
2335 .hsync_end = 800 + 1 + 64,
2336 .htotal = 800 + 1 + 64 + 64,
2337 .vdisplay = 480,
2338 .vsync_start = 480 + 1,
2339 .vsync_end = 480 + 1 + 23,
2340 .vtotal = 480 + 1 + 23 + 22,
2341 .vrefresh = 60,
2342};
2343
2344static const struct panel_desc shelly_sca07010_bfn_lnn = {
2345 .modes = &shelly_sca07010_bfn_lnn_mode,
2346 .num_modes = 1,
2347 .size = {
2348 .width = 152,
2349 .height = 91,
2350 },
2351 .bus_format = MEDIA_BUS_FMT_RGB666_1X18,
2352};
2353
Douglas Anderson9bb34c42016-06-10 10:02:07 -07002354static const struct drm_display_mode starry_kr122ea0sra_mode = {
2355 .clock = 147000,
2356 .hdisplay = 1920,
2357 .hsync_start = 1920 + 16,
2358 .hsync_end = 1920 + 16 + 16,
2359 .htotal = 1920 + 16 + 16 + 32,
2360 .vdisplay = 1200,
2361 .vsync_start = 1200 + 15,
2362 .vsync_end = 1200 + 15 + 2,
2363 .vtotal = 1200 + 15 + 2 + 18,
2364 .vrefresh = 60,
2365 .flags = DRM_MODE_FLAG_NVSYNC | DRM_MODE_FLAG_NHSYNC,
2366};
2367
2368static const struct panel_desc starry_kr122ea0sra = {
2369 .modes = &starry_kr122ea0sra_mode,
2370 .num_modes = 1,
2371 .size = {
2372 .width = 263,
2373 .height = 164,
2374 },
Brian Norrisc46b9242016-08-26 14:32:14 -07002375 .delay = {
2376 .prepare = 10 + 200,
2377 .enable = 50,
2378 .unprepare = 10 + 500,
2379 },
Douglas Anderson9bb34c42016-06-10 10:02:07 -07002380};
2381
Gary Bissonadb973e2016-12-02 09:52:08 +01002382static const struct display_timing tianma_tm070jdhg30_timing = {
2383 .pixelclock = { 62600000, 68200000, 78100000 },
2384 .hactive = { 1280, 1280, 1280 },
2385 .hfront_porch = { 15, 64, 159 },
2386 .hback_porch = { 5, 5, 5 },
2387 .hsync_len = { 1, 1, 256 },
2388 .vactive = { 800, 800, 800 },
2389 .vfront_porch = { 3, 40, 99 },
2390 .vback_porch = { 2, 2, 2 },
2391 .vsync_len = { 1, 1, 128 },
2392 .flags = DISPLAY_FLAGS_DE_HIGH,
2393};
2394
2395static const struct panel_desc tianma_tm070jdhg30 = {
2396 .timings = &tianma_tm070jdhg30_timing,
2397 .num_timings = 1,
2398 .bpc = 8,
2399 .size = {
2400 .width = 151,
2401 .height = 95,
2402 },
2403 .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
2404};
2405
Lukasz Majewski870a0b12017-11-07 16:30:58 +01002406static const struct display_timing tianma_tm070rvhg71_timing = {
2407 .pixelclock = { 27700000, 29200000, 39600000 },
2408 .hactive = { 800, 800, 800 },
2409 .hfront_porch = { 12, 40, 212 },
2410 .hback_porch = { 88, 88, 88 },
2411 .hsync_len = { 1, 1, 40 },
2412 .vactive = { 480, 480, 480 },
2413 .vfront_porch = { 1, 13, 88 },
2414 .vback_porch = { 32, 32, 32 },
2415 .vsync_len = { 1, 1, 3 },
2416 .flags = DISPLAY_FLAGS_DE_HIGH,
2417};
2418
2419static const struct panel_desc tianma_tm070rvhg71 = {
2420 .timings = &tianma_tm070rvhg71_timing,
2421 .num_timings = 1,
2422 .bpc = 8,
2423 .size = {
2424 .width = 154,
2425 .height = 86,
2426 },
2427 .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
2428};
2429
Lucas Stach06e733e2017-10-18 19:22:40 +02002430static const struct drm_display_mode toshiba_lt089ac29000_mode = {
2431 .clock = 79500,
2432 .hdisplay = 1280,
2433 .hsync_start = 1280 + 192,
2434 .hsync_end = 1280 + 192 + 128,
2435 .htotal = 1280 + 192 + 128 + 64,
2436 .vdisplay = 768,
2437 .vsync_start = 768 + 20,
2438 .vsync_end = 768 + 20 + 7,
2439 .vtotal = 768 + 20 + 7 + 3,
2440 .vrefresh = 60,
2441};
2442
2443static const struct panel_desc toshiba_lt089ac29000 = {
2444 .modes = &toshiba_lt089ac29000_mode,
2445 .num_modes = 1,
2446 .size = {
2447 .width = 194,
2448 .height = 116,
2449 },
2450 .bus_format = MEDIA_BUS_FMT_RGB888_1X24,
Laurent Pinchart88bc4172018-09-22 15:02:42 +03002451 .bus_flags = DRM_BUS_FLAG_DE_HIGH | DRM_BUS_FLAG_PIXDATA_DRIVE_POSEDGE,
Lucas Stach06e733e2017-10-18 19:22:40 +02002452};
2453
Bhuvanchandra DV227e4f42016-05-05 11:47:07 +05302454static const struct drm_display_mode tpk_f07a_0102_mode = {
2455 .clock = 33260,
2456 .hdisplay = 800,
2457 .hsync_start = 800 + 40,
2458 .hsync_end = 800 + 40 + 128,
2459 .htotal = 800 + 40 + 128 + 88,
2460 .vdisplay = 480,
2461 .vsync_start = 480 + 10,
2462 .vsync_end = 480 + 10 + 2,
2463 .vtotal = 480 + 10 + 2 + 33,
2464 .vrefresh = 60,
2465};
2466
2467static const struct panel_desc tpk_f07a_0102 = {
2468 .modes = &tpk_f07a_0102_mode,
2469 .num_modes = 1,
2470 .size = {
2471 .width = 152,
2472 .height = 91,
2473 },
Laurent Pinchart88bc4172018-09-22 15:02:42 +03002474 .bus_flags = DRM_BUS_FLAG_PIXDATA_DRIVE_POSEDGE,
Bhuvanchandra DV227e4f42016-05-05 11:47:07 +05302475};
2476
2477static const struct drm_display_mode tpk_f10a_0102_mode = {
2478 .clock = 45000,
2479 .hdisplay = 1024,
2480 .hsync_start = 1024 + 176,
2481 .hsync_end = 1024 + 176 + 5,
2482 .htotal = 1024 + 176 + 5 + 88,
2483 .vdisplay = 600,
2484 .vsync_start = 600 + 20,
2485 .vsync_end = 600 + 20 + 5,
2486 .vtotal = 600 + 20 + 5 + 25,
2487 .vrefresh = 60,
2488};
2489
2490static const struct panel_desc tpk_f10a_0102 = {
2491 .modes = &tpk_f10a_0102_mode,
2492 .num_modes = 1,
2493 .size = {
2494 .width = 223,
2495 .height = 125,
2496 },
2497};
2498
Maciej S. Szmigiero06a9dc62016-02-13 22:52:03 +01002499static const struct display_timing urt_umsh_8596md_timing = {
2500 .pixelclock = { 33260000, 33260000, 33260000 },
2501 .hactive = { 800, 800, 800 },
2502 .hfront_porch = { 41, 41, 41 },
2503 .hback_porch = { 216 - 128, 216 - 128, 216 - 128 },
2504 .hsync_len = { 71, 128, 128 },
2505 .vactive = { 480, 480, 480 },
2506 .vfront_porch = { 10, 10, 10 },
2507 .vback_porch = { 35 - 2, 35 - 2, 35 - 2 },
2508 .vsync_len = { 2, 2, 2 },
2509 .flags = DISPLAY_FLAGS_DE_HIGH | DISPLAY_FLAGS_PIXDATA_NEGEDGE |
2510 DISPLAY_FLAGS_HSYNC_LOW | DISPLAY_FLAGS_VSYNC_LOW,
2511};
2512
2513static const struct panel_desc urt_umsh_8596md_lvds = {
2514 .timings = &urt_umsh_8596md_timing,
2515 .num_timings = 1,
2516 .bpc = 6,
2517 .size = {
2518 .width = 152,
2519 .height = 91,
2520 },
2521 .bus_format = MEDIA_BUS_FMT_RGB666_1X7X3_SPWG,
2522};
2523
2524static const struct panel_desc urt_umsh_8596md_parallel = {
2525 .timings = &urt_umsh_8596md_timing,
2526 .num_timings = 1,
2527 .bpc = 6,
2528 .size = {
2529 .width = 152,
2530 .height = 91,
2531 },
2532 .bus_format = MEDIA_BUS_FMT_RGB666_1X18,
2533};
2534
Fabio Estevam04206182019-02-18 21:27:06 -03002535static const struct drm_display_mode vl050_8048nt_c01_mode = {
2536 .clock = 33333,
2537 .hdisplay = 800,
2538 .hsync_start = 800 + 210,
2539 .hsync_end = 800 + 210 + 20,
2540 .htotal = 800 + 210 + 20 + 46,
2541 .vdisplay = 480,
2542 .vsync_start = 480 + 22,
2543 .vsync_end = 480 + 22 + 10,
2544 .vtotal = 480 + 22 + 10 + 23,
2545 .vrefresh = 60,
2546 .flags = DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC,
2547};
2548
2549static const struct panel_desc vl050_8048nt_c01 = {
2550 .modes = &vl050_8048nt_c01_mode,
2551 .num_modes = 1,
2552 .bpc = 8,
2553 .size = {
2554 .width = 120,
2555 .height = 76,
2556 },
2557 .bus_format = MEDIA_BUS_FMT_RGB888_1X24,
2558 .bus_flags = DRM_BUS_FLAG_DE_HIGH | DRM_BUS_FLAG_PIXDATA_POSEDGE,
2559};
2560
Richard Genoude4bac402017-03-27 12:33:23 +02002561static const struct drm_display_mode winstar_wf35ltiacd_mode = {
2562 .clock = 6410,
2563 .hdisplay = 320,
2564 .hsync_start = 320 + 20,
2565 .hsync_end = 320 + 20 + 30,
2566 .htotal = 320 + 20 + 30 + 38,
2567 .vdisplay = 240,
2568 .vsync_start = 240 + 4,
2569 .vsync_end = 240 + 4 + 3,
2570 .vtotal = 240 + 4 + 3 + 15,
2571 .vrefresh = 60,
2572 .flags = DRM_MODE_FLAG_NVSYNC | DRM_MODE_FLAG_NHSYNC,
2573};
2574
2575static const struct panel_desc winstar_wf35ltiacd = {
2576 .modes = &winstar_wf35ltiacd_mode,
2577 .num_modes = 1,
2578 .bpc = 8,
2579 .size = {
2580 .width = 70,
2581 .height = 53,
2582 },
2583 .bus_format = MEDIA_BUS_FMT_RGB888_1X24,
2584};
2585
Linus Walleijfcec4162018-10-26 13:13:34 +02002586static const struct drm_display_mode arm_rtsm_mode[] = {
2587 {
2588 .clock = 65000,
2589 .hdisplay = 1024,
2590 .hsync_start = 1024 + 24,
2591 .hsync_end = 1024 + 24 + 136,
2592 .htotal = 1024 + 24 + 136 + 160,
2593 .vdisplay = 768,
2594 .vsync_start = 768 + 3,
2595 .vsync_end = 768 + 3 + 6,
2596 .vtotal = 768 + 3 + 6 + 29,
2597 .vrefresh = 60,
2598 .flags = DRM_MODE_FLAG_NVSYNC | DRM_MODE_FLAG_NHSYNC,
2599 },
2600};
2601
2602static const struct panel_desc arm_rtsm = {
2603 .modes = arm_rtsm_mode,
2604 .num_modes = 1,
2605 .bpc = 8,
2606 .size = {
2607 .width = 400,
2608 .height = 300,
2609 },
2610 .bus_format = MEDIA_BUS_FMT_RGB888_1X24,
2611};
2612
Thierry Reding280921d2013-08-30 15:10:14 +02002613static const struct of_device_id platform_of_match[] = {
2614 {
Yannick Fertre966fea72017-03-28 11:44:49 +02002615 .compatible = "ampire,am-480272h3tmqw-t01h",
2616 .data = &ampire_am_480272h3tmqw_t01h,
2617 }, {
Philipp Zabel1c550fa12015-02-11 18:50:09 +01002618 .compatible = "ampire,am800480r3tmqwa1h",
2619 .data = &ampire_am800480r3tmqwa1h,
2620 }, {
Linus Walleijfcec4162018-10-26 13:13:34 +02002621 .compatible = "arm,rtsm-display",
2622 .data = &arm_rtsm,
2623 }, {
Thierry Reding280921d2013-08-30 15:10:14 +02002624 .compatible = "auo,b101aw03",
2625 .data = &auo_b101aw03,
2626 }, {
Huang Lina531bc32015-02-28 10:18:58 +08002627 .compatible = "auo,b101ean01",
2628 .data = &auo_b101ean01,
2629 }, {
Rob Clarkdac746e2014-08-01 17:01:06 -04002630 .compatible = "auo,b101xtn01",
2631 .data = &auo_b101xtn01,
2632 }, {
Ajay Kumare35e3052014-09-01 15:40:02 +05302633 .compatible = "auo,b116xw03",
2634 .data = &auo_b116xw03,
2635 }, {
Ajay Kumar3e51d602014-07-31 23:12:12 +05302636 .compatible = "auo,b133htn01",
2637 .data = &auo_b133htn01,
2638 }, {
Stéphane Marchesina333f7a2014-05-23 19:27:59 -07002639 .compatible = "auo,b133xtn01",
2640 .data = &auo_b133xtn01,
2641 }, {
Lukasz Majewskibccfaff2018-05-14 21:08:49 +02002642 .compatible = "auo,g070vvn01",
2643 .data = &auo_g070vvn01,
2644 }, {
Alex Gonzalez4fb86402018-10-25 17:09:30 +02002645 .compatible = "auo,g101evn010",
2646 .data = &auo_g101evn010,
2647 }, {
Christoph Fritz4451c282017-12-16 14:13:36 +01002648 .compatible = "auo,g104sn02",
2649 .data = &auo_g104sn02,
2650 }, {
Lucas Stach697035c2016-11-30 14:09:55 +01002651 .compatible = "auo,g133han01",
2652 .data = &auo_g133han01,
2653 }, {
Lucas Stach8c31f602016-11-30 14:09:56 +01002654 .compatible = "auo,g185han01",
2655 .data = &auo_g185han01,
2656 }, {
Lucas Stach70c0d5b2017-06-08 20:07:58 +02002657 .compatible = "auo,p320hvn03",
2658 .data = &auo_p320hvn03,
2659 }, {
Haixia Shi7ee933a2016-10-11 14:59:16 -07002660 .compatible = "auo,t215hvn01",
2661 .data = &auo_t215hvn01,
2662 }, {
Philipp Zabeld47df632014-12-18 16:43:43 +01002663 .compatible = "avic,tm070ddh03",
2664 .data = &avic_tm070ddh03,
2665 }, {
Chen-Yu Tsai7ad8b412018-09-07 12:19:46 +08002666 .compatible = "bananapi,s070wv20-ct16",
2667 .data = &bananapi_s070wv20_ct16,
2668 }, {
Andrzej Hajdaae8cf412018-06-19 10:19:26 +02002669 .compatible = "boe,hv070wsa-100",
2670 .data = &boe_hv070wsa
2671 }, {
Caesar Wangcac1a412016-12-14 11:19:56 +08002672 .compatible = "boe,nv101wxmn51",
2673 .data = &boe_nv101wxmn51,
2674 }, {
Giulio Benettie58edce2018-07-31 01:11:16 +02002675 .compatible = "cdtech,s043wq26h-ct7",
2676 .data = &cdtech_s043wq26h_ct7,
2677 }, {
Giulio Benetti982f9442018-07-31 01:11:14 +02002678 .compatible = "cdtech,s070wv95-ct16",
2679 .data = &cdtech_s070wv95_ct16,
2680 }, {
Randy Li2cb35c82016-09-20 03:02:51 +08002681 .compatible = "chunghwa,claa070wp03xg",
2682 .data = &chunghwa_claa070wp03xg,
2683 }, {
Stephen Warren4c930752014-01-07 16:46:26 -07002684 .compatible = "chunghwa,claa101wa01a",
2685 .data = &chunghwa_claa101wa01a
2686 }, {
Thierry Reding280921d2013-08-30 15:10:14 +02002687 .compatible = "chunghwa,claa101wb01",
2688 .data = &chunghwa_claa101wb01
2689 }, {
Michal Vokáč97ceb1f2018-06-25 14:41:30 +02002690 .compatible = "dataimage,scf0700c48ggu18",
2691 .data = &dataimage_scf0700c48ggu18,
2692 }, {
Philipp Zabel0ca0c822018-05-23 11:25:04 +02002693 .compatible = "dlc,dlc0700yzg-1",
2694 .data = &dlc_dlc0700yzg_1,
2695 }, {
Marco Felsch6cbe7cd2018-09-24 17:26:10 +02002696 .compatible = "dlc,dlc1010gig",
2697 .data = &dlc_dlc1010gig,
2698 }, {
Marek Vasutfd819bf2019-02-19 15:04:38 +01002699 .compatible = "edt,etm0430g0dh6",
2700 .data = &edt_etm0430g0dh6,
2701 }, {
Stefan Agner26ab0062014-05-15 11:38:45 +02002702 .compatible = "edt,et057090dhu",
2703 .data = &edt_et057090dhu,
2704 }, {
Philipp Zabelfff5de42014-05-15 12:25:47 +02002705 .compatible = "edt,et070080dh6",
2706 .data = &edt_etm0700g0dh6,
2707 }, {
2708 .compatible = "edt,etm0700g0dh6",
2709 .data = &edt_etm0700g0dh6,
2710 }, {
Jan Tuerkaa7e6452018-06-19 11:55:44 +02002711 .compatible = "edt,etm0700g0bdh6",
2712 .data = &edt_etm0700g0bdh6,
2713 }, {
Jan Tuerkaad34de2018-06-19 11:55:45 +02002714 .compatible = "edt,etm0700g0edh6",
2715 .data = &edt_etm0700g0bdh6,
2716 }, {
Boris BREZILLON102932b2014-06-05 15:53:32 +02002717 .compatible = "foxlink,fl500wvr00-a0t",
2718 .data = &foxlink_fl500wvr00_a0t,
2719 }, {
Philipp Zabeld435a2a2014-11-19 10:29:55 +01002720 .compatible = "giantplus,gpg482739qs5",
2721 .data = &giantplus_gpg482739qs5
2722 }, {
Philipp Zabela8532052014-10-23 16:31:06 +02002723 .compatible = "hannstar,hsd070pww1",
2724 .data = &hannstar_hsd070pww1,
2725 }, {
Eric Nelsonc0d607e2015-04-13 15:09:26 -07002726 .compatible = "hannstar,hsd100pxn1",
2727 .data = &hannstar_hsd100pxn1,
2728 }, {
Lucas Stach61ac0bf2014-11-06 17:44:35 +01002729 .compatible = "hit,tx23d38vm0caa",
2730 .data = &hitachi_tx23d38vm0caa
2731 }, {
Nicolas Ferre41bcceb2015-03-19 14:43:01 +01002732 .compatible = "innolux,at043tn24",
2733 .data = &innolux_at043tn24,
2734 }, {
Riccardo Bortolato4fc24ab2016-04-20 15:37:15 +02002735 .compatible = "innolux,at070tn92",
2736 .data = &innolux_at070tn92,
2737 }, {
Christoph Fritza5d2ade2018-06-04 13:16:48 +02002738 .compatible = "innolux,g070y2-l01",
2739 .data = &innolux_g070y2_l01,
2740 }, {
2741 .compatible = "innolux,g101ice-l01",
Michael Olbrich1e29b842016-08-15 14:32:02 +02002742 .data = &innolux_g101ice_l01
2743 }, {
Christoph Fritza5d2ade2018-06-04 13:16:48 +02002744 .compatible = "innolux,g121i1-l01",
Lucas Stachd731f662014-11-06 17:44:33 +01002745 .data = &innolux_g121i1_l01
2746 }, {
Akshay Bhatf8fa17b2015-11-18 15:57:47 -05002747 .compatible = "innolux,g121x1-l03",
2748 .data = &innolux_g121x1_l03,
2749 }, {
Thierry Reding0a2288c2014-07-03 14:02:59 +02002750 .compatible = "innolux,n116bge",
2751 .data = &innolux_n116bge,
2752 }, {
Alban Bedelea447392014-07-22 08:38:55 +02002753 .compatible = "innolux,n156bge-l21",
2754 .data = &innolux_n156bge_l21,
2755 }, {
Douglas Anderson8f054b62018-10-25 15:21:34 -07002756 .compatible = "innolux,p120zdg-bf1",
2757 .data = &innolux_p120zdg_bf1,
spanda@codeaurora.orgda50bd42018-05-15 11:22:43 +05302758 }, {
Michael Grzeschikbccac3f2015-03-19 12:22:44 +01002759 .compatible = "innolux,zj070na-01p",
2760 .data = &innolux_zj070na_01p,
2761 }, {
Jagan Teki8cfe8342018-02-04 23:19:28 +05302762 .compatible = "koe,tx31d200vm0baa",
2763 .data = &koe_tx31d200vm0baa,
2764 }, {
Lucas Stach8def22e2015-12-02 19:41:11 +01002765 .compatible = "kyo,tcg121xglp",
2766 .data = &kyo_tcg121xglp,
2767 }, {
Paul Kocialkowski27abdd82018-11-07 19:18:41 +01002768 .compatible = "lemaker,bl035-rgb-002",
2769 .data = &lemaker_bl035_rgb_002,
2770 }, {
Heiko Schocherdd015002015-05-22 10:25:57 +02002771 .compatible = "lg,lb070wv8",
2772 .data = &lg_lb070wv8,
2773 }, {
Yakir Yangc5ece402016-06-28 12:51:15 +08002774 .compatible = "lg,lp079qx1-sp0v",
2775 .data = &lg_lp079qx1_sp0v,
2776 }, {
Yakir Yang0355dde2016-06-12 10:56:02 +08002777 .compatible = "lg,lp097qx1-spa1",
2778 .data = &lg_lp097qx1_spa1,
2779 }, {
Jitao Shi690d8fa2016-02-22 19:01:44 +08002780 .compatible = "lg,lp120up1",
2781 .data = &lg_lp120up1,
2782 }, {
Thierry Redingec7c5652013-11-15 15:59:32 +01002783 .compatible = "lg,lp129qe",
2784 .data = &lg_lp129qe,
2785 }, {
Lukasz Majewski65c766c2017-10-21 00:18:37 +02002786 .compatible = "mitsubishi,aa070mc01-ca1",
2787 .data = &mitsubishi_aa070mc01,
2788 }, {
Lucas Stach01bacc132017-06-08 20:07:55 +02002789 .compatible = "nec,nl12880bc20-05",
2790 .data = &nec_nl12880bc20_05,
2791 }, {
jianwei wangc6e87f92015-07-29 16:30:02 +08002792 .compatible = "nec,nl4827hc19-05b",
2793 .data = &nec_nl4827hc19_05b,
2794 }, {
Maxime Riparde6c2f062016-09-06 16:46:17 +02002795 .compatible = "netron-dy,e231732",
2796 .data = &netron_dy_e231732,
2797 }, {
Tomi Valkeinen3b39ad72018-06-18 16:22:40 +03002798 .compatible = "newhaven,nhd-4.3-480272ef-atxl",
2799 .data = &newhaven_nhd_43_480272ef_atxl,
2800 }, {
Lucas Stach4177fa62017-06-08 20:07:57 +02002801 .compatible = "nlt,nl192108ac18-02d",
2802 .data = &nlt_nl192108ac18_02d,
2803 }, {
Fabien Lahoudere05ec0e42016-10-17 11:38:01 +02002804 .compatible = "nvd,9128",
2805 .data = &nvd_9128,
2806 }, {
Gary Bissona99fb622015-06-10 18:44:23 +02002807 .compatible = "okaya,rs800480t-7x0gp",
2808 .data = &okaya_rs800480t_7x0gp,
2809 }, {
Maxime Ripardcf5c9e62016-03-23 17:38:34 +01002810 .compatible = "olimex,lcd-olinuxino-43-ts",
2811 .data = &olimex_lcd_olinuxino_43ts,
2812 }, {
Eric Anholte8b6f562016-03-24 17:23:48 -07002813 .compatible = "ontat,yx700wv03",
2814 .data = &ontat_yx700wv03,
2815 }, {
Philipp Zabel725c9d42015-02-11 18:50:11 +01002816 .compatible = "ortustech,com43h4m85ulc",
2817 .data = &ortustech_com43h4m85ulc,
2818 }, {
Laurent Pinchart163f7a32018-12-07 22:13:44 +02002819 .compatible = "osddisplays,osd070t1718-19ts",
2820 .data = &osddisplays_osd070t1718_19ts,
2821 }, {
Eugen Hristev4ba3e562019-01-14 09:43:31 +00002822 .compatible = "pda,91-00156-a0",
2823 .data = &pda_91_00156_a0,
2824 }, {
Josh Wud2a6f0f2015-10-08 17:42:41 +02002825 .compatible = "qiaodian,qd43003c0-40",
2826 .data = &qd43003c0_40,
2827 }, {
Jagan Teki23167fa2018-06-07 19:16:48 +05302828 .compatible = "rocktech,rk070er9427",
2829 .data = &rocktech_rk070er9427,
2830 }, {
Yakir Yang0330eaf2016-06-12 10:56:13 +08002831 .compatible = "samsung,lsn122dl01-c01",
2832 .data = &samsung_lsn122dl01_c01,
2833 }, {
Marc Dietrich6d54e3d2013-12-21 21:38:12 +01002834 .compatible = "samsung,ltn101nt05",
2835 .data = &samsung_ltn101nt05,
2836 }, {
Stéphane Marchesin0c934302015-03-18 10:52:18 +01002837 .compatible = "samsung,ltn140at29-301",
2838 .data = &samsung_ltn140at29_301,
2839 }, {
Vladimir Zapolskiy03e3ec92018-07-06 21:51:01 +03002840 .compatible = "sharp,lq035q7db03",
2841 .data = &sharp_lq035q7db03,
2842 }, {
Joshua Clayton592aa022016-07-06 15:59:16 -07002843 .compatible = "sharp,lq101k1ly04",
2844 .data = &sharp_lq101k1ly04,
2845 }, {
Yakir Yang739c7de2016-06-12 10:56:35 +08002846 .compatible = "sharp,lq123p1jx31",
2847 .data = &sharp_lq123p1jx31,
2848 }, {
Gustaf Lindström0f9cdd72016-10-04 17:29:21 +02002849 .compatible = "sharp,lq150x1lg11",
2850 .data = &sharp_lq150x1lg11,
2851 }, {
Boris BREZILLON9c6615b2015-03-19 14:43:00 +01002852 .compatible = "shelly,sca07010-bfn-lnn",
2853 .data = &shelly_sca07010_bfn_lnn,
2854 }, {
Douglas Anderson9bb34c42016-06-10 10:02:07 -07002855 .compatible = "starry,kr122ea0sra",
2856 .data = &starry_kr122ea0sra,
2857 }, {
Gary Bissonadb973e2016-12-02 09:52:08 +01002858 .compatible = "tianma,tm070jdhg30",
2859 .data = &tianma_tm070jdhg30,
2860 }, {
Lukasz Majewski870a0b12017-11-07 16:30:58 +01002861 .compatible = "tianma,tm070rvhg71",
2862 .data = &tianma_tm070rvhg71,
2863 }, {
Lucas Stach06e733e2017-10-18 19:22:40 +02002864 .compatible = "toshiba,lt089ac29000",
2865 .data = &toshiba_lt089ac29000,
2866 }, {
Bhuvanchandra DV227e4f42016-05-05 11:47:07 +05302867 .compatible = "tpk,f07a-0102",
2868 .data = &tpk_f07a_0102,
2869 }, {
2870 .compatible = "tpk,f10a-0102",
2871 .data = &tpk_f10a_0102,
2872 }, {
Maciej S. Szmigiero06a9dc62016-02-13 22:52:03 +01002873 .compatible = "urt,umsh-8596md-t",
2874 .data = &urt_umsh_8596md_parallel,
2875 }, {
2876 .compatible = "urt,umsh-8596md-1t",
2877 .data = &urt_umsh_8596md_parallel,
2878 }, {
2879 .compatible = "urt,umsh-8596md-7t",
2880 .data = &urt_umsh_8596md_parallel,
2881 }, {
2882 .compatible = "urt,umsh-8596md-11t",
2883 .data = &urt_umsh_8596md_lvds,
2884 }, {
2885 .compatible = "urt,umsh-8596md-19t",
2886 .data = &urt_umsh_8596md_lvds,
2887 }, {
2888 .compatible = "urt,umsh-8596md-20t",
2889 .data = &urt_umsh_8596md_parallel,
2890 }, {
Fabio Estevam04206182019-02-18 21:27:06 -03002891 .compatible = "vxt,vl050-8048nt-c01",
2892 .data = &vl050_8048nt_c01,
2893 }, {
Richard Genoude4bac402017-03-27 12:33:23 +02002894 .compatible = "winstar,wf35ltiacd",
2895 .data = &winstar_wf35ltiacd,
2896 }, {
Thierry Reding280921d2013-08-30 15:10:14 +02002897 /* sentinel */
2898 }
2899};
2900MODULE_DEVICE_TABLE(of, platform_of_match);
2901
2902static int panel_simple_platform_probe(struct platform_device *pdev)
2903{
2904 const struct of_device_id *id;
2905
2906 id = of_match_node(platform_of_match, pdev->dev.of_node);
2907 if (!id)
2908 return -ENODEV;
2909
2910 return panel_simple_probe(&pdev->dev, id->data);
2911}
2912
2913static int panel_simple_platform_remove(struct platform_device *pdev)
2914{
2915 return panel_simple_remove(&pdev->dev);
2916}
2917
Thierry Redingd02fd932014-04-29 17:21:21 +02002918static void panel_simple_platform_shutdown(struct platform_device *pdev)
2919{
2920 panel_simple_shutdown(&pdev->dev);
2921}
2922
Thierry Reding280921d2013-08-30 15:10:14 +02002923static struct platform_driver panel_simple_platform_driver = {
2924 .driver = {
2925 .name = "panel-simple",
Thierry Reding280921d2013-08-30 15:10:14 +02002926 .of_match_table = platform_of_match,
2927 },
2928 .probe = panel_simple_platform_probe,
2929 .remove = panel_simple_platform_remove,
Thierry Redingd02fd932014-04-29 17:21:21 +02002930 .shutdown = panel_simple_platform_shutdown,
Thierry Reding280921d2013-08-30 15:10:14 +02002931};
2932
Thierry Reding210fcd92013-11-22 19:27:11 +01002933struct panel_desc_dsi {
2934 struct panel_desc desc;
2935
Thierry Reding462658b2014-03-14 11:24:57 +01002936 unsigned long flags;
Thierry Reding210fcd92013-11-22 19:27:11 +01002937 enum mipi_dsi_pixel_format format;
2938 unsigned int lanes;
2939};
2940
Thierry Redingd718d792015-04-08 16:52:33 +02002941static const struct drm_display_mode auo_b080uan01_mode = {
2942 .clock = 154500,
2943 .hdisplay = 1200,
2944 .hsync_start = 1200 + 62,
2945 .hsync_end = 1200 + 62 + 4,
2946 .htotal = 1200 + 62 + 4 + 62,
2947 .vdisplay = 1920,
2948 .vsync_start = 1920 + 9,
2949 .vsync_end = 1920 + 9 + 2,
2950 .vtotal = 1920 + 9 + 2 + 8,
2951 .vrefresh = 60,
2952};
2953
2954static const struct panel_desc_dsi auo_b080uan01 = {
2955 .desc = {
2956 .modes = &auo_b080uan01_mode,
2957 .num_modes = 1,
2958 .bpc = 8,
2959 .size = {
2960 .width = 108,
2961 .height = 272,
2962 },
2963 },
2964 .flags = MIPI_DSI_MODE_VIDEO | MIPI_DSI_CLOCK_NON_CONTINUOUS,
2965 .format = MIPI_DSI_FMT_RGB888,
2966 .lanes = 4,
2967};
2968
Chris Zhongc8521962015-11-20 16:15:37 +08002969static const struct drm_display_mode boe_tv080wum_nl0_mode = {
2970 .clock = 160000,
2971 .hdisplay = 1200,
2972 .hsync_start = 1200 + 120,
2973 .hsync_end = 1200 + 120 + 20,
2974 .htotal = 1200 + 120 + 20 + 21,
2975 .vdisplay = 1920,
2976 .vsync_start = 1920 + 21,
2977 .vsync_end = 1920 + 21 + 3,
2978 .vtotal = 1920 + 21 + 3 + 18,
2979 .vrefresh = 60,
2980 .flags = DRM_MODE_FLAG_NVSYNC | DRM_MODE_FLAG_NHSYNC,
2981};
2982
2983static const struct panel_desc_dsi boe_tv080wum_nl0 = {
2984 .desc = {
2985 .modes = &boe_tv080wum_nl0_mode,
2986 .num_modes = 1,
2987 .size = {
2988 .width = 107,
2989 .height = 172,
2990 },
2991 },
2992 .flags = MIPI_DSI_MODE_VIDEO |
2993 MIPI_DSI_MODE_VIDEO_BURST |
2994 MIPI_DSI_MODE_VIDEO_SYNC_PULSE,
2995 .format = MIPI_DSI_FMT_RGB888,
2996 .lanes = 4,
2997};
2998
Alexandre Courbot712ac1b2014-01-21 18:57:10 +09002999static const struct drm_display_mode lg_ld070wx3_sl01_mode = {
3000 .clock = 71000,
3001 .hdisplay = 800,
3002 .hsync_start = 800 + 32,
3003 .hsync_end = 800 + 32 + 1,
3004 .htotal = 800 + 32 + 1 + 57,
3005 .vdisplay = 1280,
3006 .vsync_start = 1280 + 28,
3007 .vsync_end = 1280 + 28 + 1,
3008 .vtotal = 1280 + 28 + 1 + 14,
3009 .vrefresh = 60,
3010};
3011
3012static const struct panel_desc_dsi lg_ld070wx3_sl01 = {
3013 .desc = {
3014 .modes = &lg_ld070wx3_sl01_mode,
3015 .num_modes = 1,
Thierry Redingd7a839c2014-11-06 10:11:01 +01003016 .bpc = 8,
Alexandre Courbot712ac1b2014-01-21 18:57:10 +09003017 .size = {
3018 .width = 94,
3019 .height = 151,
3020 },
3021 },
Alexandre Courbot5e4cc272014-07-08 21:32:12 +09003022 .flags = MIPI_DSI_MODE_VIDEO | MIPI_DSI_CLOCK_NON_CONTINUOUS,
Alexandre Courbot712ac1b2014-01-21 18:57:10 +09003023 .format = MIPI_DSI_FMT_RGB888,
3024 .lanes = 4,
3025};
3026
Alexandre Courbot499ce852014-01-21 18:57:09 +09003027static const struct drm_display_mode lg_lh500wx1_sd03_mode = {
3028 .clock = 67000,
3029 .hdisplay = 720,
3030 .hsync_start = 720 + 12,
3031 .hsync_end = 720 + 12 + 4,
3032 .htotal = 720 + 12 + 4 + 112,
3033 .vdisplay = 1280,
3034 .vsync_start = 1280 + 8,
3035 .vsync_end = 1280 + 8 + 4,
3036 .vtotal = 1280 + 8 + 4 + 12,
3037 .vrefresh = 60,
3038};
3039
3040static const struct panel_desc_dsi lg_lh500wx1_sd03 = {
3041 .desc = {
3042 .modes = &lg_lh500wx1_sd03_mode,
3043 .num_modes = 1,
Thierry Redingd7a839c2014-11-06 10:11:01 +01003044 .bpc = 8,
Alexandre Courbot499ce852014-01-21 18:57:09 +09003045 .size = {
3046 .width = 62,
3047 .height = 110,
3048 },
3049 },
3050 .flags = MIPI_DSI_MODE_VIDEO,
3051 .format = MIPI_DSI_FMT_RGB888,
3052 .lanes = 4,
3053};
3054
Thierry Reding280921d2013-08-30 15:10:14 +02003055static const struct drm_display_mode panasonic_vvx10f004b00_mode = {
3056 .clock = 157200,
3057 .hdisplay = 1920,
3058 .hsync_start = 1920 + 154,
3059 .hsync_end = 1920 + 154 + 16,
3060 .htotal = 1920 + 154 + 16 + 32,
3061 .vdisplay = 1200,
3062 .vsync_start = 1200 + 17,
3063 .vsync_end = 1200 + 17 + 2,
3064 .vtotal = 1200 + 17 + 2 + 16,
3065 .vrefresh = 60,
3066};
3067
Thierry Reding210fcd92013-11-22 19:27:11 +01003068static const struct panel_desc_dsi panasonic_vvx10f004b00 = {
3069 .desc = {
3070 .modes = &panasonic_vvx10f004b00_mode,
3071 .num_modes = 1,
Thierry Redingd7a839c2014-11-06 10:11:01 +01003072 .bpc = 8,
Thierry Reding210fcd92013-11-22 19:27:11 +01003073 .size = {
3074 .width = 217,
3075 .height = 136,
3076 },
Thierry Reding280921d2013-08-30 15:10:14 +02003077 },
Alexandre Courbot5e4cc272014-07-08 21:32:12 +09003078 .flags = MIPI_DSI_MODE_VIDEO | MIPI_DSI_MODE_VIDEO_SYNC_PULSE |
3079 MIPI_DSI_CLOCK_NON_CONTINUOUS,
Thierry Reding210fcd92013-11-22 19:27:11 +01003080 .format = MIPI_DSI_FMT_RGB888,
3081 .lanes = 4,
3082};
3083
Jonathan Marekdebcd8f2018-11-24 15:06:28 -05003084static const struct drm_display_mode lg_acx467akm_7_mode = {
3085 .clock = 150000,
3086 .hdisplay = 1080,
3087 .hsync_start = 1080 + 2,
3088 .hsync_end = 1080 + 2 + 2,
3089 .htotal = 1080 + 2 + 2 + 2,
3090 .vdisplay = 1920,
3091 .vsync_start = 1920 + 2,
3092 .vsync_end = 1920 + 2 + 2,
3093 .vtotal = 1920 + 2 + 2 + 2,
3094 .vrefresh = 60,
3095};
3096
3097static const struct panel_desc_dsi lg_acx467akm_7 = {
3098 .desc = {
3099 .modes = &lg_acx467akm_7_mode,
3100 .num_modes = 1,
3101 .bpc = 8,
3102 .size = {
3103 .width = 62,
3104 .height = 110,
3105 },
3106 },
3107 .flags = 0,
3108 .format = MIPI_DSI_FMT_RGB888,
3109 .lanes = 4,
3110};
3111
Peter Ujfalusi62967232019-02-26 09:55:21 +02003112static const struct drm_display_mode osd101t2045_53ts_mode = {
3113 .clock = 154500,
3114 .hdisplay = 1920,
3115 .hsync_start = 1920 + 112,
3116 .hsync_end = 1920 + 112 + 16,
3117 .htotal = 1920 + 112 + 16 + 32,
3118 .vdisplay = 1200,
3119 .vsync_start = 1200 + 16,
3120 .vsync_end = 1200 + 16 + 2,
3121 .vtotal = 1200 + 16 + 2 + 16,
3122 .vrefresh = 60,
3123 .flags = DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC,
3124};
3125
3126static const struct panel_desc_dsi osd101t2045_53ts = {
3127 .desc = {
3128 .modes = &osd101t2045_53ts_mode,
3129 .num_modes = 1,
3130 .bpc = 8,
3131 .size = {
3132 .width = 217,
3133 .height = 136,
3134 },
3135 },
3136 .flags = MIPI_DSI_MODE_VIDEO | MIPI_DSI_MODE_VIDEO_BURST |
3137 MIPI_DSI_MODE_VIDEO_SYNC_PULSE |
3138 MIPI_DSI_MODE_EOT_PACKET,
3139 .format = MIPI_DSI_FMT_RGB888,
3140 .lanes = 4,
3141};
3142
Thierry Reding210fcd92013-11-22 19:27:11 +01003143static const struct of_device_id dsi_of_match[] = {
3144 {
Thierry Redingd718d792015-04-08 16:52:33 +02003145 .compatible = "auo,b080uan01",
3146 .data = &auo_b080uan01
3147 }, {
Chris Zhongc8521962015-11-20 16:15:37 +08003148 .compatible = "boe,tv080wum-nl0",
3149 .data = &boe_tv080wum_nl0
3150 }, {
Alexandre Courbot712ac1b2014-01-21 18:57:10 +09003151 .compatible = "lg,ld070wx3-sl01",
3152 .data = &lg_ld070wx3_sl01
3153 }, {
Alexandre Courbot499ce852014-01-21 18:57:09 +09003154 .compatible = "lg,lh500wx1-sd03",
3155 .data = &lg_lh500wx1_sd03
3156 }, {
Thierry Reding210fcd92013-11-22 19:27:11 +01003157 .compatible = "panasonic,vvx10f004b00",
3158 .data = &panasonic_vvx10f004b00
3159 }, {
Jonathan Marekdebcd8f2018-11-24 15:06:28 -05003160 .compatible = "lg,acx467akm-7",
3161 .data = &lg_acx467akm_7
3162 }, {
Peter Ujfalusi62967232019-02-26 09:55:21 +02003163 .compatible = "osddisplays,osd101t2045-53ts",
3164 .data = &osd101t2045_53ts
3165 }, {
Thierry Reding210fcd92013-11-22 19:27:11 +01003166 /* sentinel */
3167 }
3168};
3169MODULE_DEVICE_TABLE(of, dsi_of_match);
3170
3171static int panel_simple_dsi_probe(struct mipi_dsi_device *dsi)
3172{
3173 const struct panel_desc_dsi *desc;
3174 const struct of_device_id *id;
3175 int err;
3176
3177 id = of_match_node(dsi_of_match, dsi->dev.of_node);
3178 if (!id)
3179 return -ENODEV;
3180
3181 desc = id->data;
3182
3183 err = panel_simple_probe(&dsi->dev, &desc->desc);
3184 if (err < 0)
3185 return err;
3186
Thierry Reding462658b2014-03-14 11:24:57 +01003187 dsi->mode_flags = desc->flags;
Thierry Reding210fcd92013-11-22 19:27:11 +01003188 dsi->format = desc->format;
3189 dsi->lanes = desc->lanes;
3190
Peter Ujfalusi7ad9db62019-02-26 10:11:53 +02003191 err = mipi_dsi_attach(dsi);
3192 if (err) {
3193 struct panel_simple *panel = dev_get_drvdata(&dsi->dev);
3194
3195 drm_panel_remove(&panel->base);
3196 }
3197
3198 return err;
Thierry Reding210fcd92013-11-22 19:27:11 +01003199}
3200
3201static int panel_simple_dsi_remove(struct mipi_dsi_device *dsi)
3202{
3203 int err;
3204
3205 err = mipi_dsi_detach(dsi);
3206 if (err < 0)
3207 dev_err(&dsi->dev, "failed to detach from DSI host: %d\n", err);
3208
3209 return panel_simple_remove(&dsi->dev);
3210}
3211
Thierry Redingd02fd932014-04-29 17:21:21 +02003212static void panel_simple_dsi_shutdown(struct mipi_dsi_device *dsi)
3213{
3214 panel_simple_shutdown(&dsi->dev);
3215}
3216
Thierry Reding210fcd92013-11-22 19:27:11 +01003217static struct mipi_dsi_driver panel_simple_dsi_driver = {
3218 .driver = {
3219 .name = "panel-simple-dsi",
Thierry Reding210fcd92013-11-22 19:27:11 +01003220 .of_match_table = dsi_of_match,
3221 },
3222 .probe = panel_simple_dsi_probe,
3223 .remove = panel_simple_dsi_remove,
Thierry Redingd02fd932014-04-29 17:21:21 +02003224 .shutdown = panel_simple_dsi_shutdown,
Thierry Reding280921d2013-08-30 15:10:14 +02003225};
3226
3227static int __init panel_simple_init(void)
3228{
Thierry Reding210fcd92013-11-22 19:27:11 +01003229 int err;
3230
3231 err = platform_driver_register(&panel_simple_platform_driver);
3232 if (err < 0)
3233 return err;
3234
3235 if (IS_ENABLED(CONFIG_DRM_MIPI_DSI)) {
3236 err = mipi_dsi_driver_register(&panel_simple_dsi_driver);
3237 if (err < 0)
3238 return err;
3239 }
3240
3241 return 0;
Thierry Reding280921d2013-08-30 15:10:14 +02003242}
3243module_init(panel_simple_init);
3244
3245static void __exit panel_simple_exit(void)
3246{
Thierry Reding210fcd92013-11-22 19:27:11 +01003247 if (IS_ENABLED(CONFIG_DRM_MIPI_DSI))
3248 mipi_dsi_driver_unregister(&panel_simple_dsi_driver);
3249
Thierry Reding280921d2013-08-30 15:10:14 +02003250 platform_driver_unregister(&panel_simple_platform_driver);
3251}
3252module_exit(panel_simple_exit);
3253
3254MODULE_AUTHOR("Thierry Reding <treding@nvidia.com>");
3255MODULE_DESCRIPTION("DRM Driver for Simple Panels");
3256MODULE_LICENSE("GPL and additional rights");