blob: 06aaf79de8c86fab262829d91781810ebd99ed66 [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
59 * @enable: the time (in milliseconds) that it takes for the panel to
60 * display the first valid frame after starting to receive
61 * video data
62 * @disable: the time (in milliseconds) that it takes for the panel to
63 * turn the display off (no content is visible)
64 * @unprepare: the time (in milliseconds) that it takes for the panel
65 * to power itself down completely
66 */
67 struct {
68 unsigned int prepare;
69 unsigned int enable;
70 unsigned int disable;
71 unsigned int unprepare;
72 } delay;
Boris Brezillon795f7ab2014-07-22 13:33:59 +020073
74 u32 bus_format;
Stefan Agnerf0aa0832016-02-08 11:38:14 -080075 u32 bus_flags;
Thierry Reding280921d2013-08-30 15:10:14 +020076};
77
Thierry Reding280921d2013-08-30 15:10:14 +020078struct panel_simple {
79 struct drm_panel base;
Ajay Kumar613a6332014-07-31 23:12:10 +053080 bool prepared;
Thierry Reding280921d2013-08-30 15:10:14 +020081 bool enabled;
82
83 const struct panel_desc *desc;
84
85 struct backlight_device *backlight;
86 struct regulator *supply;
87 struct i2c_adapter *ddc;
88
Alexandre Courbotcfdf0542014-03-01 14:00:58 +090089 struct gpio_desc *enable_gpio;
Thierry Reding280921d2013-08-30 15:10:14 +020090};
91
92static inline struct panel_simple *to_panel_simple(struct drm_panel *panel)
93{
94 return container_of(panel, struct panel_simple, base);
95}
96
97static int panel_simple_get_fixed_modes(struct panel_simple *panel)
98{
99 struct drm_connector *connector = panel->base.connector;
100 struct drm_device *drm = panel->base.drm;
101 struct drm_display_mode *mode;
102 unsigned int i, num = 0;
103
104 if (!panel->desc)
105 return 0;
106
Philipp Zabela5d3e622014-12-11 18:32:45 +0100107 for (i = 0; i < panel->desc->num_timings; i++) {
108 const struct display_timing *dt = &panel->desc->timings[i];
109 struct videomode vm;
110
111 videomode_from_timing(dt, &vm);
112 mode = drm_mode_create(drm);
113 if (!mode) {
114 dev_err(drm->dev, "failed to add mode %ux%u\n",
115 dt->hactive.typ, dt->vactive.typ);
116 continue;
117 }
118
119 drm_display_mode_from_videomode(&vm, mode);
Boris Brezilloncda55372016-04-15 18:23:33 +0200120
121 mode->type |= DRM_MODE_TYPE_DRIVER;
122
Chen-Yu Tsai230c5b42016-10-24 21:21:15 +0800123 if (panel->desc->num_timings == 1)
Boris Brezilloncda55372016-04-15 18:23:33 +0200124 mode->type |= DRM_MODE_TYPE_PREFERRED;
125
Philipp Zabela5d3e622014-12-11 18:32:45 +0100126 drm_mode_probed_add(connector, mode);
127 num++;
128 }
129
Thierry Reding280921d2013-08-30 15:10:14 +0200130 for (i = 0; i < panel->desc->num_modes; i++) {
131 const struct drm_display_mode *m = &panel->desc->modes[i];
132
133 mode = drm_mode_duplicate(drm, m);
134 if (!mode) {
135 dev_err(drm->dev, "failed to add mode %ux%u@%u\n",
136 m->hdisplay, m->vdisplay, m->vrefresh);
137 continue;
138 }
139
Boris Brezilloncda55372016-04-15 18:23:33 +0200140 mode->type |= DRM_MODE_TYPE_DRIVER;
141
142 if (panel->desc->num_modes == 1)
143 mode->type |= DRM_MODE_TYPE_PREFERRED;
144
Thierry Reding280921d2013-08-30 15:10:14 +0200145 drm_mode_set_name(mode);
146
147 drm_mode_probed_add(connector, mode);
148 num++;
149 }
150
Stéphane Marchesin0208d512014-06-19 18:18:28 -0700151 connector->display_info.bpc = panel->desc->bpc;
Thierry Reding280921d2013-08-30 15:10:14 +0200152 connector->display_info.width_mm = panel->desc->size.width;
153 connector->display_info.height_mm = panel->desc->size.height;
Boris Brezillon795f7ab2014-07-22 13:33:59 +0200154 if (panel->desc->bus_format)
155 drm_display_info_set_bus_formats(&connector->display_info,
156 &panel->desc->bus_format, 1);
Stefan Agnerf0aa0832016-02-08 11:38:14 -0800157 connector->display_info.bus_flags = panel->desc->bus_flags;
Thierry Reding280921d2013-08-30 15:10:14 +0200158
159 return num;
160}
161
162static int panel_simple_disable(struct drm_panel *panel)
163{
164 struct panel_simple *p = to_panel_simple(panel);
165
166 if (!p->enabled)
167 return 0;
168
169 if (p->backlight) {
170 p->backlight->props.power = FB_BLANK_POWERDOWN;
Thierry Redinge4aa3422016-06-17 19:11:53 +0200171 p->backlight->props.state |= BL_CORE_FBBLANK;
Thierry Reding280921d2013-08-30 15:10:14 +0200172 backlight_update_status(p->backlight);
173 }
174
Ajay Kumarf673c372014-07-31 23:12:11 +0530175 if (p->desc->delay.disable)
176 msleep(p->desc->delay.disable);
177
Thierry Reding280921d2013-08-30 15:10:14 +0200178 p->enabled = false;
179
180 return 0;
181}
182
Ajay Kumarc0e1d172014-07-31 23:12:04 +0530183static int panel_simple_unprepare(struct drm_panel *panel)
184{
Ajay Kumar613a6332014-07-31 23:12:10 +0530185 struct panel_simple *p = to_panel_simple(panel);
186
187 if (!p->prepared)
188 return 0;
189
190 if (p->enable_gpio)
191 gpiod_set_value_cansleep(p->enable_gpio, 0);
192
193 regulator_disable(p->supply);
194
Ajay Kumarf673c372014-07-31 23:12:11 +0530195 if (p->desc->delay.unprepare)
196 msleep(p->desc->delay.unprepare);
197
Ajay Kumar613a6332014-07-31 23:12:10 +0530198 p->prepared = false;
199
Ajay Kumarc0e1d172014-07-31 23:12:04 +0530200 return 0;
201}
202
203static int panel_simple_prepare(struct drm_panel *panel)
204{
Thierry Reding280921d2013-08-30 15:10:14 +0200205 struct panel_simple *p = to_panel_simple(panel);
206 int err;
207
Ajay Kumar613a6332014-07-31 23:12:10 +0530208 if (p->prepared)
Thierry Reding280921d2013-08-30 15:10:14 +0200209 return 0;
210
211 err = regulator_enable(p->supply);
212 if (err < 0) {
213 dev_err(panel->dev, "failed to enable supply: %d\n", err);
214 return err;
215 }
216
Alexandre Courbotcfdf0542014-03-01 14:00:58 +0900217 if (p->enable_gpio)
Thierry Reding15c1a912014-03-14 12:03:47 +0100218 gpiod_set_value_cansleep(p->enable_gpio, 1);
Thierry Reding280921d2013-08-30 15:10:14 +0200219
Ajay Kumarf673c372014-07-31 23:12:11 +0530220 if (p->desc->delay.prepare)
221 msleep(p->desc->delay.prepare);
222
Ajay Kumar613a6332014-07-31 23:12:10 +0530223 p->prepared = true;
224
225 return 0;
226}
227
228static int panel_simple_enable(struct drm_panel *panel)
229{
230 struct panel_simple *p = to_panel_simple(panel);
231
232 if (p->enabled)
233 return 0;
234
Ajay Kumarf673c372014-07-31 23:12:11 +0530235 if (p->desc->delay.enable)
236 msleep(p->desc->delay.enable);
237
Thierry Reding280921d2013-08-30 15:10:14 +0200238 if (p->backlight) {
Thierry Redinge4aa3422016-06-17 19:11:53 +0200239 p->backlight->props.state &= ~BL_CORE_FBBLANK;
Thierry Reding280921d2013-08-30 15:10:14 +0200240 p->backlight->props.power = FB_BLANK_UNBLANK;
241 backlight_update_status(p->backlight);
242 }
243
244 p->enabled = true;
245
246 return 0;
247}
248
249static int panel_simple_get_modes(struct drm_panel *panel)
250{
251 struct panel_simple *p = to_panel_simple(panel);
252 int num = 0;
253
254 /* probe EDID if a DDC bus is available */
255 if (p->ddc) {
256 struct edid *edid = drm_get_edid(panel->connector, p->ddc);
Stephen Warren70bf6872014-01-09 11:37:34 -0700257 drm_mode_connector_update_edid_property(panel->connector, edid);
Thierry Reding280921d2013-08-30 15:10:14 +0200258 if (edid) {
259 num += drm_add_edid_modes(panel->connector, edid);
260 kfree(edid);
261 }
262 }
263
264 /* add hard-coded panel modes */
265 num += panel_simple_get_fixed_modes(p);
266
267 return num;
268}
269
Philipp Zabela5d3e622014-12-11 18:32:45 +0100270static int panel_simple_get_timings(struct drm_panel *panel,
271 unsigned int num_timings,
272 struct display_timing *timings)
273{
274 struct panel_simple *p = to_panel_simple(panel);
275 unsigned int i;
276
277 if (p->desc->num_timings < num_timings)
278 num_timings = p->desc->num_timings;
279
280 if (timings)
281 for (i = 0; i < num_timings; i++)
282 timings[i] = p->desc->timings[i];
283
284 return p->desc->num_timings;
285}
286
Thierry Reding280921d2013-08-30 15:10:14 +0200287static const struct drm_panel_funcs panel_simple_funcs = {
288 .disable = panel_simple_disable,
Ajay Kumarc0e1d172014-07-31 23:12:04 +0530289 .unprepare = panel_simple_unprepare,
290 .prepare = panel_simple_prepare,
Thierry Reding280921d2013-08-30 15:10:14 +0200291 .enable = panel_simple_enable,
292 .get_modes = panel_simple_get_modes,
Philipp Zabela5d3e622014-12-11 18:32:45 +0100293 .get_timings = panel_simple_get_timings,
Thierry Reding280921d2013-08-30 15:10:14 +0200294};
295
296static int panel_simple_probe(struct device *dev, const struct panel_desc *desc)
297{
298 struct device_node *backlight, *ddc;
299 struct panel_simple *panel;
Thierry Reding280921d2013-08-30 15:10:14 +0200300 int err;
301
302 panel = devm_kzalloc(dev, sizeof(*panel), GFP_KERNEL);
303 if (!panel)
304 return -ENOMEM;
305
306 panel->enabled = false;
Ajay Kumar613a6332014-07-31 23:12:10 +0530307 panel->prepared = false;
Thierry Reding280921d2013-08-30 15:10:14 +0200308 panel->desc = desc;
309
310 panel->supply = devm_regulator_get(dev, "power");
311 if (IS_ERR(panel->supply))
312 return PTR_ERR(panel->supply);
313
Alexandre Courbota61400d2014-10-23 17:16:58 +0900314 panel->enable_gpio = devm_gpiod_get_optional(dev, "enable",
315 GPIOD_OUT_LOW);
Alexandre Courbotcfdf0542014-03-01 14:00:58 +0900316 if (IS_ERR(panel->enable_gpio)) {
317 err = PTR_ERR(panel->enable_gpio);
Alexandre Courbot9746c612014-07-25 23:47:25 +0900318 dev_err(dev, "failed to request GPIO: %d\n", err);
319 return err;
320 }
Thierry Reding280921d2013-08-30 15:10:14 +0200321
Thierry Reding280921d2013-08-30 15:10:14 +0200322 backlight = of_parse_phandle(dev->of_node, "backlight", 0);
323 if (backlight) {
324 panel->backlight = of_find_backlight_by_node(backlight);
325 of_node_put(backlight);
326
Alexandre Courbotcfdf0542014-03-01 14:00:58 +0900327 if (!panel->backlight)
328 return -EPROBE_DEFER;
Thierry Reding280921d2013-08-30 15:10:14 +0200329 }
330
331 ddc = of_parse_phandle(dev->of_node, "ddc-i2c-bus", 0);
332 if (ddc) {
333 panel->ddc = of_find_i2c_adapter_by_node(ddc);
334 of_node_put(ddc);
335
336 if (!panel->ddc) {
337 err = -EPROBE_DEFER;
338 goto free_backlight;
339 }
340 }
341
342 drm_panel_init(&panel->base);
343 panel->base.dev = dev;
344 panel->base.funcs = &panel_simple_funcs;
345
346 err = drm_panel_add(&panel->base);
347 if (err < 0)
348 goto free_ddc;
349
350 dev_set_drvdata(dev, panel);
351
352 return 0;
353
354free_ddc:
355 if (panel->ddc)
356 put_device(&panel->ddc->dev);
357free_backlight:
358 if (panel->backlight)
359 put_device(&panel->backlight->dev);
Thierry Reding280921d2013-08-30 15:10:14 +0200360
361 return err;
362}
363
364static int panel_simple_remove(struct device *dev)
365{
366 struct panel_simple *panel = dev_get_drvdata(dev);
367
368 drm_panel_detach(&panel->base);
369 drm_panel_remove(&panel->base);
370
371 panel_simple_disable(&panel->base);
372
373 if (panel->ddc)
374 put_device(&panel->ddc->dev);
375
376 if (panel->backlight)
377 put_device(&panel->backlight->dev);
378
Thierry Reding280921d2013-08-30 15:10:14 +0200379 return 0;
380}
381
Thierry Redingd02fd932014-04-29 17:21:21 +0200382static void panel_simple_shutdown(struct device *dev)
383{
384 struct panel_simple *panel = dev_get_drvdata(dev);
385
386 panel_simple_disable(&panel->base);
387}
388
Philipp Zabel1c550fa12015-02-11 18:50:09 +0100389static const struct drm_display_mode ampire_am800480r3tmqwa1h_mode = {
390 .clock = 33333,
391 .hdisplay = 800,
392 .hsync_start = 800 + 0,
393 .hsync_end = 800 + 0 + 255,
394 .htotal = 800 + 0 + 255 + 0,
395 .vdisplay = 480,
396 .vsync_start = 480 + 2,
397 .vsync_end = 480 + 2 + 45,
398 .vtotal = 480 + 2 + 45 + 0,
399 .vrefresh = 60,
400 .flags = DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC,
401};
402
403static const struct panel_desc ampire_am800480r3tmqwa1h = {
404 .modes = &ampire_am800480r3tmqwa1h_mode,
405 .num_modes = 1,
406 .bpc = 6,
407 .size = {
408 .width = 152,
409 .height = 91,
410 },
411 .bus_format = MEDIA_BUS_FMT_RGB666_1X18,
412};
413
Thierry Reding280921d2013-08-30 15:10:14 +0200414static const struct drm_display_mode auo_b101aw03_mode = {
415 .clock = 51450,
416 .hdisplay = 1024,
417 .hsync_start = 1024 + 156,
418 .hsync_end = 1024 + 156 + 8,
419 .htotal = 1024 + 156 + 8 + 156,
420 .vdisplay = 600,
421 .vsync_start = 600 + 16,
422 .vsync_end = 600 + 16 + 6,
423 .vtotal = 600 + 16 + 6 + 16,
424 .vrefresh = 60,
425};
426
427static const struct panel_desc auo_b101aw03 = {
428 .modes = &auo_b101aw03_mode,
429 .num_modes = 1,
Stéphane Marchesin0208d512014-06-19 18:18:28 -0700430 .bpc = 6,
Thierry Reding280921d2013-08-30 15:10:14 +0200431 .size = {
432 .width = 223,
433 .height = 125,
434 },
435};
436
Huang Lina531bc32015-02-28 10:18:58 +0800437static const struct drm_display_mode auo_b101ean01_mode = {
438 .clock = 72500,
439 .hdisplay = 1280,
440 .hsync_start = 1280 + 119,
441 .hsync_end = 1280 + 119 + 32,
442 .htotal = 1280 + 119 + 32 + 21,
443 .vdisplay = 800,
444 .vsync_start = 800 + 4,
445 .vsync_end = 800 + 4 + 20,
446 .vtotal = 800 + 4 + 20 + 8,
447 .vrefresh = 60,
448};
449
450static const struct panel_desc auo_b101ean01 = {
451 .modes = &auo_b101ean01_mode,
452 .num_modes = 1,
453 .bpc = 6,
454 .size = {
455 .width = 217,
456 .height = 136,
457 },
458};
459
Rob Clarkdac746e2014-08-01 17:01:06 -0400460static const struct drm_display_mode auo_b101xtn01_mode = {
461 .clock = 72000,
462 .hdisplay = 1366,
463 .hsync_start = 1366 + 20,
464 .hsync_end = 1366 + 20 + 70,
465 .htotal = 1366 + 20 + 70,
466 .vdisplay = 768,
467 .vsync_start = 768 + 14,
468 .vsync_end = 768 + 14 + 42,
469 .vtotal = 768 + 14 + 42,
470 .vrefresh = 60,
471 .flags = DRM_MODE_FLAG_NVSYNC | DRM_MODE_FLAG_NHSYNC,
472};
473
474static const struct panel_desc auo_b101xtn01 = {
475 .modes = &auo_b101xtn01_mode,
476 .num_modes = 1,
477 .bpc = 6,
478 .size = {
479 .width = 223,
480 .height = 125,
481 },
482};
483
Ajay Kumare35e3052014-09-01 15:40:02 +0530484static const struct drm_display_mode auo_b116xw03_mode = {
485 .clock = 70589,
486 .hdisplay = 1366,
487 .hsync_start = 1366 + 40,
488 .hsync_end = 1366 + 40 + 40,
489 .htotal = 1366 + 40 + 40 + 32,
490 .vdisplay = 768,
491 .vsync_start = 768 + 10,
492 .vsync_end = 768 + 10 + 12,
493 .vtotal = 768 + 10 + 12 + 6,
494 .vrefresh = 60,
495};
496
497static const struct panel_desc auo_b116xw03 = {
498 .modes = &auo_b116xw03_mode,
499 .num_modes = 1,
500 .bpc = 6,
501 .size = {
502 .width = 256,
503 .height = 144,
504 },
505};
506
Stéphane Marchesina333f7a2014-05-23 19:27:59 -0700507static const struct drm_display_mode auo_b133xtn01_mode = {
508 .clock = 69500,
509 .hdisplay = 1366,
510 .hsync_start = 1366 + 48,
511 .hsync_end = 1366 + 48 + 32,
512 .htotal = 1366 + 48 + 32 + 20,
513 .vdisplay = 768,
514 .vsync_start = 768 + 3,
515 .vsync_end = 768 + 3 + 6,
516 .vtotal = 768 + 3 + 6 + 13,
517 .vrefresh = 60,
518};
519
520static const struct panel_desc auo_b133xtn01 = {
521 .modes = &auo_b133xtn01_mode,
522 .num_modes = 1,
Stéphane Marchesin0208d512014-06-19 18:18:28 -0700523 .bpc = 6,
Stéphane Marchesina333f7a2014-05-23 19:27:59 -0700524 .size = {
525 .width = 293,
526 .height = 165,
527 },
528};
529
Ajay Kumar3e51d602014-07-31 23:12:12 +0530530static const struct drm_display_mode auo_b133htn01_mode = {
531 .clock = 150660,
532 .hdisplay = 1920,
533 .hsync_start = 1920 + 172,
534 .hsync_end = 1920 + 172 + 80,
535 .htotal = 1920 + 172 + 80 + 60,
536 .vdisplay = 1080,
537 .vsync_start = 1080 + 25,
538 .vsync_end = 1080 + 25 + 10,
539 .vtotal = 1080 + 25 + 10 + 10,
540 .vrefresh = 60,
541};
542
543static const struct panel_desc auo_b133htn01 = {
544 .modes = &auo_b133htn01_mode,
545 .num_modes = 1,
Thierry Redingd7a839c2014-11-06 10:11:01 +0100546 .bpc = 6,
Ajay Kumar3e51d602014-07-31 23:12:12 +0530547 .size = {
548 .width = 293,
549 .height = 165,
550 },
551 .delay = {
552 .prepare = 105,
553 .enable = 20,
554 .unprepare = 50,
555 },
556};
557
Lucas Stach697035c2016-11-30 14:09:55 +0100558static const struct display_timing auo_g133han01_timings = {
559 .pixelclock = { 134000000, 141200000, 149000000 },
560 .hactive = { 1920, 1920, 1920 },
561 .hfront_porch = { 39, 58, 77 },
562 .hback_porch = { 59, 88, 117 },
563 .hsync_len = { 28, 42, 56 },
564 .vactive = { 1080, 1080, 1080 },
565 .vfront_porch = { 3, 8, 11 },
566 .vback_porch = { 5, 14, 19 },
567 .vsync_len = { 4, 14, 19 },
568};
569
570static const struct panel_desc auo_g133han01 = {
571 .timings = &auo_g133han01_timings,
572 .num_timings = 1,
573 .bpc = 8,
574 .size = {
575 .width = 293,
576 .height = 165,
577 },
578 .delay = {
579 .prepare = 200,
580 .enable = 50,
581 .disable = 50,
582 .unprepare = 1000,
583 },
584 .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_JEIDA,
585};
586
Lucas Stach8c31f602016-11-30 14:09:56 +0100587static const struct display_timing auo_g185han01_timings = {
588 .pixelclock = { 120000000, 144000000, 175000000 },
589 .hactive = { 1920, 1920, 1920 },
590 .hfront_porch = { 18, 60, 74 },
591 .hback_porch = { 12, 44, 54 },
592 .hsync_len = { 10, 24, 32 },
593 .vactive = { 1080, 1080, 1080 },
594 .vfront_porch = { 6, 10, 40 },
595 .vback_porch = { 2, 5, 20 },
596 .vsync_len = { 2, 5, 20 },
597};
598
599static const struct panel_desc auo_g185han01 = {
600 .timings = &auo_g185han01_timings,
601 .num_timings = 1,
602 .bpc = 8,
603 .size = {
604 .width = 409,
605 .height = 230,
606 },
607 .delay = {
608 .prepare = 50,
609 .enable = 200,
610 .disable = 110,
611 .unprepare = 1000,
612 },
613 .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
614};
615
Haixia Shi7ee933a2016-10-11 14:59:16 -0700616static const struct drm_display_mode auo_t215hvn01_mode = {
617 .clock = 148800,
618 .hdisplay = 1920,
619 .hsync_start = 1920 + 88,
620 .hsync_end = 1920 + 88 + 44,
621 .htotal = 1920 + 88 + 44 + 148,
622 .vdisplay = 1080,
623 .vsync_start = 1080 + 4,
624 .vsync_end = 1080 + 4 + 5,
625 .vtotal = 1080 + 4 + 5 + 36,
626 .vrefresh = 60,
627};
628
629static const struct panel_desc auo_t215hvn01 = {
630 .modes = &auo_t215hvn01_mode,
631 .num_modes = 1,
632 .bpc = 8,
633 .size = {
634 .width = 430,
635 .height = 270,
636 },
637 .delay = {
638 .disable = 5,
639 .unprepare = 1000,
640 }
641};
642
Philipp Zabeld47df632014-12-18 16:43:43 +0100643static const struct drm_display_mode avic_tm070ddh03_mode = {
644 .clock = 51200,
645 .hdisplay = 1024,
646 .hsync_start = 1024 + 160,
647 .hsync_end = 1024 + 160 + 4,
648 .htotal = 1024 + 160 + 4 + 156,
649 .vdisplay = 600,
650 .vsync_start = 600 + 17,
651 .vsync_end = 600 + 17 + 1,
652 .vtotal = 600 + 17 + 1 + 17,
653 .vrefresh = 60,
654};
655
656static const struct panel_desc avic_tm070ddh03 = {
657 .modes = &avic_tm070ddh03_mode,
658 .num_modes = 1,
659 .bpc = 8,
660 .size = {
661 .width = 154,
662 .height = 90,
663 },
664 .delay = {
665 .prepare = 20,
666 .enable = 200,
667 .disable = 200,
668 },
669};
670
Randy Li2cb35c82016-09-20 03:02:51 +0800671static const struct drm_display_mode chunghwa_claa070wp03xg_mode = {
672 .clock = 66770,
673 .hdisplay = 800,
674 .hsync_start = 800 + 49,
675 .hsync_end = 800 + 49 + 33,
676 .htotal = 800 + 49 + 33 + 17,
677 .vdisplay = 1280,
678 .vsync_start = 1280 + 1,
679 .vsync_end = 1280 + 1 + 7,
680 .vtotal = 1280 + 1 + 7 + 15,
681 .vrefresh = 60,
682 .flags = DRM_MODE_FLAG_NVSYNC | DRM_MODE_FLAG_NHSYNC,
683};
684
685static const struct panel_desc chunghwa_claa070wp03xg = {
686 .modes = &chunghwa_claa070wp03xg_mode,
687 .num_modes = 1,
688 .bpc = 6,
689 .size = {
690 .width = 94,
691 .height = 150,
692 },
693};
694
Stephen Warren4c930752014-01-07 16:46:26 -0700695static const struct drm_display_mode chunghwa_claa101wa01a_mode = {
696 .clock = 72070,
697 .hdisplay = 1366,
698 .hsync_start = 1366 + 58,
699 .hsync_end = 1366 + 58 + 58,
700 .htotal = 1366 + 58 + 58 + 58,
701 .vdisplay = 768,
702 .vsync_start = 768 + 4,
703 .vsync_end = 768 + 4 + 4,
704 .vtotal = 768 + 4 + 4 + 4,
705 .vrefresh = 60,
706};
707
708static const struct panel_desc chunghwa_claa101wa01a = {
709 .modes = &chunghwa_claa101wa01a_mode,
710 .num_modes = 1,
Stéphane Marchesin0208d512014-06-19 18:18:28 -0700711 .bpc = 6,
Stephen Warren4c930752014-01-07 16:46:26 -0700712 .size = {
713 .width = 220,
714 .height = 120,
715 },
716};
717
Thierry Reding280921d2013-08-30 15:10:14 +0200718static const struct drm_display_mode chunghwa_claa101wb01_mode = {
719 .clock = 69300,
720 .hdisplay = 1366,
721 .hsync_start = 1366 + 48,
722 .hsync_end = 1366 + 48 + 32,
723 .htotal = 1366 + 48 + 32 + 20,
724 .vdisplay = 768,
725 .vsync_start = 768 + 16,
726 .vsync_end = 768 + 16 + 8,
727 .vtotal = 768 + 16 + 8 + 16,
728 .vrefresh = 60,
729};
730
731static const struct panel_desc chunghwa_claa101wb01 = {
732 .modes = &chunghwa_claa101wb01_mode,
733 .num_modes = 1,
Stéphane Marchesin0208d512014-06-19 18:18:28 -0700734 .bpc = 6,
Thierry Reding280921d2013-08-30 15:10:14 +0200735 .size = {
736 .width = 223,
737 .height = 125,
738 },
739};
740
Stefan Agner26ab0062014-05-15 11:38:45 +0200741static const struct drm_display_mode edt_et057090dhu_mode = {
742 .clock = 25175,
743 .hdisplay = 640,
744 .hsync_start = 640 + 16,
745 .hsync_end = 640 + 16 + 30,
746 .htotal = 640 + 16 + 30 + 114,
747 .vdisplay = 480,
748 .vsync_start = 480 + 10,
749 .vsync_end = 480 + 10 + 3,
750 .vtotal = 480 + 10 + 3 + 32,
751 .vrefresh = 60,
752 .flags = DRM_MODE_FLAG_NVSYNC | DRM_MODE_FLAG_NHSYNC,
753};
754
755static const struct panel_desc edt_et057090dhu = {
756 .modes = &edt_et057090dhu_mode,
757 .num_modes = 1,
Stéphane Marchesin0208d512014-06-19 18:18:28 -0700758 .bpc = 6,
Stefan Agner26ab0062014-05-15 11:38:45 +0200759 .size = {
760 .width = 115,
761 .height = 86,
762 },
763};
764
Philipp Zabelfff5de42014-05-15 12:25:47 +0200765static const struct drm_display_mode edt_etm0700g0dh6_mode = {
766 .clock = 33260,
767 .hdisplay = 800,
768 .hsync_start = 800 + 40,
769 .hsync_end = 800 + 40 + 128,
770 .htotal = 800 + 40 + 128 + 88,
771 .vdisplay = 480,
772 .vsync_start = 480 + 10,
773 .vsync_end = 480 + 10 + 2,
774 .vtotal = 480 + 10 + 2 + 33,
775 .vrefresh = 60,
776 .flags = DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC,
777};
778
779static const struct panel_desc edt_etm0700g0dh6 = {
780 .modes = &edt_etm0700g0dh6_mode,
781 .num_modes = 1,
Stéphane Marchesin0208d512014-06-19 18:18:28 -0700782 .bpc = 6,
Philipp Zabelfff5de42014-05-15 12:25:47 +0200783 .size = {
784 .width = 152,
785 .height = 91,
786 },
787};
788
Boris BREZILLON102932b2014-06-05 15:53:32 +0200789static const struct drm_display_mode foxlink_fl500wvr00_a0t_mode = {
790 .clock = 32260,
791 .hdisplay = 800,
792 .hsync_start = 800 + 168,
793 .hsync_end = 800 + 168 + 64,
794 .htotal = 800 + 168 + 64 + 88,
795 .vdisplay = 480,
796 .vsync_start = 480 + 37,
797 .vsync_end = 480 + 37 + 2,
798 .vtotal = 480 + 37 + 2 + 8,
799 .vrefresh = 60,
800};
801
802static const struct panel_desc foxlink_fl500wvr00_a0t = {
803 .modes = &foxlink_fl500wvr00_a0t_mode,
804 .num_modes = 1,
Thierry Redingd7a839c2014-11-06 10:11:01 +0100805 .bpc = 8,
Boris BREZILLON102932b2014-06-05 15:53:32 +0200806 .size = {
807 .width = 108,
808 .height = 65,
809 },
Boris Brezillonbb276cb2014-07-22 13:35:47 +0200810 .bus_format = MEDIA_BUS_FMT_RGB888_1X24,
Boris BREZILLON102932b2014-06-05 15:53:32 +0200811};
812
Philipp Zabeld435a2a2014-11-19 10:29:55 +0100813static const struct drm_display_mode giantplus_gpg482739qs5_mode = {
814 .clock = 9000,
815 .hdisplay = 480,
816 .hsync_start = 480 + 5,
817 .hsync_end = 480 + 5 + 1,
818 .htotal = 480 + 5 + 1 + 40,
819 .vdisplay = 272,
820 .vsync_start = 272 + 8,
821 .vsync_end = 272 + 8 + 1,
822 .vtotal = 272 + 8 + 1 + 8,
823 .vrefresh = 60,
824};
825
826static const struct panel_desc giantplus_gpg482739qs5 = {
827 .modes = &giantplus_gpg482739qs5_mode,
828 .num_modes = 1,
829 .bpc = 8,
830 .size = {
831 .width = 95,
832 .height = 54,
833 },
Philipp Zabel33536a02015-02-11 18:50:07 +0100834 .bus_format = MEDIA_BUS_FMT_RGB888_1X24,
Philipp Zabeld435a2a2014-11-19 10:29:55 +0100835};
836
Philipp Zabelab077252014-12-11 18:32:46 +0100837static const struct display_timing hannstar_hsd070pww1_timing = {
838 .pixelclock = { 64300000, 71100000, 82000000 },
839 .hactive = { 1280, 1280, 1280 },
840 .hfront_porch = { 1, 1, 10 },
841 .hback_porch = { 1, 1, 10 },
Philipp Zabeld901d2b2015-08-12 12:32:13 +0200842 /*
843 * According to the data sheet, the minimum horizontal blanking interval
844 * is 54 clocks (1 + 52 + 1), but tests with a Nitrogen6X have shown the
845 * minimum working horizontal blanking interval to be 60 clocks.
846 */
847 .hsync_len = { 58, 158, 661 },
Philipp Zabelab077252014-12-11 18:32:46 +0100848 .vactive = { 800, 800, 800 },
849 .vfront_porch = { 1, 1, 10 },
850 .vback_porch = { 1, 1, 10 },
851 .vsync_len = { 1, 21, 203 },
852 .flags = DISPLAY_FLAGS_DE_HIGH,
Philipp Zabela8532052014-10-23 16:31:06 +0200853};
854
855static const struct panel_desc hannstar_hsd070pww1 = {
Philipp Zabelab077252014-12-11 18:32:46 +0100856 .timings = &hannstar_hsd070pww1_timing,
857 .num_timings = 1,
Philipp Zabela8532052014-10-23 16:31:06 +0200858 .bpc = 6,
859 .size = {
860 .width = 151,
861 .height = 94,
862 },
Philipp Zabel58d6a7b2015-08-12 12:32:12 +0200863 .bus_format = MEDIA_BUS_FMT_RGB666_1X7X3_SPWG,
Philipp Zabela8532052014-10-23 16:31:06 +0200864};
865
Eric Nelsonc0d607e2015-04-13 15:09:26 -0700866static const struct display_timing hannstar_hsd100pxn1_timing = {
867 .pixelclock = { 55000000, 65000000, 75000000 },
868 .hactive = { 1024, 1024, 1024 },
869 .hfront_porch = { 40, 40, 40 },
870 .hback_porch = { 220, 220, 220 },
871 .hsync_len = { 20, 60, 100 },
872 .vactive = { 768, 768, 768 },
873 .vfront_porch = { 7, 7, 7 },
874 .vback_porch = { 21, 21, 21 },
875 .vsync_len = { 10, 10, 10 },
876 .flags = DISPLAY_FLAGS_DE_HIGH,
877};
878
879static const struct panel_desc hannstar_hsd100pxn1 = {
880 .timings = &hannstar_hsd100pxn1_timing,
881 .num_timings = 1,
882 .bpc = 6,
883 .size = {
884 .width = 203,
885 .height = 152,
886 },
Philipp Zabel4946b042015-05-20 11:34:08 +0200887 .bus_format = MEDIA_BUS_FMT_RGB666_1X7X3_SPWG,
Eric Nelsonc0d607e2015-04-13 15:09:26 -0700888};
889
Lucas Stach61ac0bf2014-11-06 17:44:35 +0100890static const struct drm_display_mode hitachi_tx23d38vm0caa_mode = {
891 .clock = 33333,
892 .hdisplay = 800,
893 .hsync_start = 800 + 85,
894 .hsync_end = 800 + 85 + 86,
895 .htotal = 800 + 85 + 86 + 85,
896 .vdisplay = 480,
897 .vsync_start = 480 + 16,
898 .vsync_end = 480 + 16 + 13,
899 .vtotal = 480 + 16 + 13 + 16,
900 .vrefresh = 60,
901};
902
903static const struct panel_desc hitachi_tx23d38vm0caa = {
904 .modes = &hitachi_tx23d38vm0caa_mode,
905 .num_modes = 1,
906 .bpc = 6,
907 .size = {
908 .width = 195,
909 .height = 117,
910 },
911};
912
Nicolas Ferre41bcceb2015-03-19 14:43:01 +0100913static const struct drm_display_mode innolux_at043tn24_mode = {
914 .clock = 9000,
915 .hdisplay = 480,
916 .hsync_start = 480 + 2,
917 .hsync_end = 480 + 2 + 41,
918 .htotal = 480 + 2 + 41 + 2,
919 .vdisplay = 272,
920 .vsync_start = 272 + 2,
921 .vsync_end = 272 + 2 + 11,
922 .vtotal = 272 + 2 + 11 + 2,
923 .vrefresh = 60,
924 .flags = DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC,
925};
926
927static const struct panel_desc innolux_at043tn24 = {
928 .modes = &innolux_at043tn24_mode,
929 .num_modes = 1,
930 .bpc = 8,
931 .size = {
932 .width = 95,
933 .height = 54,
934 },
935 .bus_format = MEDIA_BUS_FMT_RGB888_1X24,
936};
937
Riccardo Bortolato4fc24ab2016-04-20 15:37:15 +0200938static const struct drm_display_mode innolux_at070tn92_mode = {
939 .clock = 33333,
940 .hdisplay = 800,
941 .hsync_start = 800 + 210,
942 .hsync_end = 800 + 210 + 20,
943 .htotal = 800 + 210 + 20 + 46,
944 .vdisplay = 480,
945 .vsync_start = 480 + 22,
946 .vsync_end = 480 + 22 + 10,
947 .vtotal = 480 + 22 + 23 + 10,
948 .vrefresh = 60,
949};
950
951static const struct panel_desc innolux_at070tn92 = {
952 .modes = &innolux_at070tn92_mode,
953 .num_modes = 1,
954 .size = {
955 .width = 154,
956 .height = 86,
957 },
958 .bus_format = MEDIA_BUS_FMT_RGB888_1X24,
959};
960
Michael Olbrich1e29b842016-08-15 14:32:02 +0200961static const struct display_timing innolux_g101ice_l01_timing = {
962 .pixelclock = { 60400000, 71100000, 74700000 },
963 .hactive = { 1280, 1280, 1280 },
964 .hfront_porch = { 41, 80, 100 },
965 .hback_porch = { 40, 79, 99 },
966 .hsync_len = { 1, 1, 1 },
967 .vactive = { 800, 800, 800 },
968 .vfront_porch = { 5, 11, 14 },
969 .vback_porch = { 4, 11, 14 },
970 .vsync_len = { 1, 1, 1 },
971 .flags = DISPLAY_FLAGS_DE_HIGH,
972};
973
974static const struct panel_desc innolux_g101ice_l01 = {
975 .timings = &innolux_g101ice_l01_timing,
976 .num_timings = 1,
977 .bpc = 8,
978 .size = {
979 .width = 217,
980 .height = 135,
981 },
982 .delay = {
983 .enable = 200,
984 .disable = 200,
985 },
986 .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
987};
988
Lucas Stach4ae13e42016-11-30 14:09:54 +0100989static const struct display_timing innolux_g121i1_l01_timing = {
990 .pixelclock = { 67450000, 71000000, 74550000 },
991 .hactive = { 1280, 1280, 1280 },
992 .hfront_porch = { 40, 80, 160 },
993 .hback_porch = { 39, 79, 159 },
994 .hsync_len = { 1, 1, 1 },
995 .vactive = { 800, 800, 800 },
996 .vfront_porch = { 5, 11, 100 },
997 .vback_porch = { 4, 11, 99 },
998 .vsync_len = { 1, 1, 1 },
Lucas Stachd731f662014-11-06 17:44:33 +0100999};
1000
1001static const struct panel_desc innolux_g121i1_l01 = {
Lucas Stach4ae13e42016-11-30 14:09:54 +01001002 .timings = &innolux_g121i1_l01_timing,
1003 .num_timings = 1,
Lucas Stachd731f662014-11-06 17:44:33 +01001004 .bpc = 6,
1005 .size = {
1006 .width = 261,
1007 .height = 163,
1008 },
Lucas Stach4ae13e42016-11-30 14:09:54 +01001009 .delay = {
1010 .enable = 200,
1011 .disable = 20,
1012 },
1013 .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
Lucas Stachd731f662014-11-06 17:44:33 +01001014};
1015
Akshay Bhatf8fa17b2015-11-18 15:57:47 -05001016static const struct drm_display_mode innolux_g121x1_l03_mode = {
1017 .clock = 65000,
1018 .hdisplay = 1024,
1019 .hsync_start = 1024 + 0,
1020 .hsync_end = 1024 + 1,
1021 .htotal = 1024 + 0 + 1 + 320,
1022 .vdisplay = 768,
1023 .vsync_start = 768 + 38,
1024 .vsync_end = 768 + 38 + 1,
1025 .vtotal = 768 + 38 + 1 + 0,
1026 .vrefresh = 60,
Akshay Bhat2e8c5eb2016-03-01 18:06:54 -05001027 .flags = DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC,
Akshay Bhatf8fa17b2015-11-18 15:57:47 -05001028};
1029
1030static const struct panel_desc innolux_g121x1_l03 = {
1031 .modes = &innolux_g121x1_l03_mode,
1032 .num_modes = 1,
1033 .bpc = 6,
1034 .size = {
1035 .width = 246,
1036 .height = 185,
1037 },
1038 .delay = {
1039 .enable = 200,
1040 .unprepare = 200,
1041 .disable = 400,
1042 },
1043};
1044
Thierry Reding0a2288c2014-07-03 14:02:59 +02001045static const struct drm_display_mode innolux_n116bge_mode = {
Daniel Kurtz7fe8c772014-09-02 10:56:46 +08001046 .clock = 76420,
Thierry Reding0a2288c2014-07-03 14:02:59 +02001047 .hdisplay = 1366,
Daniel Kurtz7fe8c772014-09-02 10:56:46 +08001048 .hsync_start = 1366 + 136,
1049 .hsync_end = 1366 + 136 + 30,
1050 .htotal = 1366 + 136 + 30 + 60,
Thierry Reding0a2288c2014-07-03 14:02:59 +02001051 .vdisplay = 768,
1052 .vsync_start = 768 + 8,
Daniel Kurtz7fe8c772014-09-02 10:56:46 +08001053 .vsync_end = 768 + 8 + 12,
1054 .vtotal = 768 + 8 + 12 + 12,
Thierry Reding0a2288c2014-07-03 14:02:59 +02001055 .vrefresh = 60,
1056 .flags = DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC,
1057};
1058
1059static const struct panel_desc innolux_n116bge = {
1060 .modes = &innolux_n116bge_mode,
1061 .num_modes = 1,
1062 .bpc = 6,
1063 .size = {
1064 .width = 256,
1065 .height = 144,
1066 },
1067};
1068
Alban Bedelea447392014-07-22 08:38:55 +02001069static const struct drm_display_mode innolux_n156bge_l21_mode = {
1070 .clock = 69300,
1071 .hdisplay = 1366,
1072 .hsync_start = 1366 + 16,
1073 .hsync_end = 1366 + 16 + 34,
1074 .htotal = 1366 + 16 + 34 + 50,
1075 .vdisplay = 768,
1076 .vsync_start = 768 + 2,
1077 .vsync_end = 768 + 2 + 6,
1078 .vtotal = 768 + 2 + 6 + 12,
1079 .vrefresh = 60,
1080};
1081
1082static const struct panel_desc innolux_n156bge_l21 = {
1083 .modes = &innolux_n156bge_l21_mode,
1084 .num_modes = 1,
Stéphane Marchesin0208d512014-06-19 18:18:28 -07001085 .bpc = 6,
Alban Bedelea447392014-07-22 08:38:55 +02001086 .size = {
1087 .width = 344,
1088 .height = 193,
1089 },
1090};
1091
Michael Grzeschikbccac3f2015-03-19 12:22:44 +01001092static const struct drm_display_mode innolux_zj070na_01p_mode = {
1093 .clock = 51501,
1094 .hdisplay = 1024,
1095 .hsync_start = 1024 + 128,
1096 .hsync_end = 1024 + 128 + 64,
1097 .htotal = 1024 + 128 + 64 + 128,
1098 .vdisplay = 600,
1099 .vsync_start = 600 + 16,
1100 .vsync_end = 600 + 16 + 4,
1101 .vtotal = 600 + 16 + 4 + 16,
1102 .vrefresh = 60,
1103};
1104
1105static const struct panel_desc innolux_zj070na_01p = {
1106 .modes = &innolux_zj070na_01p_mode,
1107 .num_modes = 1,
1108 .bpc = 6,
1109 .size = {
Thierry Reding81598842016-06-10 15:33:13 +02001110 .width = 154,
1111 .height = 90,
Michael Grzeschikbccac3f2015-03-19 12:22:44 +01001112 },
1113};
1114
Lucas Stach8def22e2015-12-02 19:41:11 +01001115static const struct display_timing kyo_tcg121xglp_timing = {
1116 .pixelclock = { 52000000, 65000000, 71000000 },
1117 .hactive = { 1024, 1024, 1024 },
1118 .hfront_porch = { 2, 2, 2 },
1119 .hback_porch = { 2, 2, 2 },
1120 .hsync_len = { 86, 124, 244 },
1121 .vactive = { 768, 768, 768 },
1122 .vfront_porch = { 2, 2, 2 },
1123 .vback_porch = { 2, 2, 2 },
1124 .vsync_len = { 6, 34, 73 },
1125 .flags = DISPLAY_FLAGS_DE_HIGH,
1126};
1127
1128static const struct panel_desc kyo_tcg121xglp = {
1129 .timings = &kyo_tcg121xglp_timing,
1130 .num_timings = 1,
1131 .bpc = 8,
1132 .size = {
1133 .width = 246,
1134 .height = 184,
1135 },
1136 .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
1137};
1138
Heiko Schocherdd015002015-05-22 10:25:57 +02001139static const struct drm_display_mode lg_lb070wv8_mode = {
1140 .clock = 33246,
1141 .hdisplay = 800,
1142 .hsync_start = 800 + 88,
1143 .hsync_end = 800 + 88 + 80,
1144 .htotal = 800 + 88 + 80 + 88,
1145 .vdisplay = 480,
1146 .vsync_start = 480 + 10,
1147 .vsync_end = 480 + 10 + 25,
1148 .vtotal = 480 + 10 + 25 + 10,
1149 .vrefresh = 60,
1150};
1151
1152static const struct panel_desc lg_lb070wv8 = {
1153 .modes = &lg_lb070wv8_mode,
1154 .num_modes = 1,
1155 .bpc = 16,
1156 .size = {
1157 .width = 151,
1158 .height = 91,
1159 },
1160 .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
1161};
1162
Yakir Yangc5ece402016-06-28 12:51:15 +08001163static const struct drm_display_mode lg_lp079qx1_sp0v_mode = {
1164 .clock = 200000,
1165 .hdisplay = 1536,
1166 .hsync_start = 1536 + 12,
1167 .hsync_end = 1536 + 12 + 16,
1168 .htotal = 1536 + 12 + 16 + 48,
1169 .vdisplay = 2048,
1170 .vsync_start = 2048 + 8,
1171 .vsync_end = 2048 + 8 + 4,
1172 .vtotal = 2048 + 8 + 4 + 8,
1173 .vrefresh = 60,
1174 .flags = DRM_MODE_FLAG_NVSYNC | DRM_MODE_FLAG_NHSYNC,
1175};
1176
1177static const struct panel_desc lg_lp079qx1_sp0v = {
1178 .modes = &lg_lp079qx1_sp0v_mode,
1179 .num_modes = 1,
1180 .size = {
1181 .width = 129,
1182 .height = 171,
1183 },
1184};
1185
Yakir Yang0355dde2016-06-12 10:56:02 +08001186static const struct drm_display_mode lg_lp097qx1_spa1_mode = {
1187 .clock = 205210,
1188 .hdisplay = 2048,
1189 .hsync_start = 2048 + 150,
1190 .hsync_end = 2048 + 150 + 5,
1191 .htotal = 2048 + 150 + 5 + 5,
1192 .vdisplay = 1536,
1193 .vsync_start = 1536 + 3,
1194 .vsync_end = 1536 + 3 + 1,
1195 .vtotal = 1536 + 3 + 1 + 9,
1196 .vrefresh = 60,
1197};
1198
1199static const struct panel_desc lg_lp097qx1_spa1 = {
1200 .modes = &lg_lp097qx1_spa1_mode,
1201 .num_modes = 1,
1202 .size = {
1203 .width = 208,
1204 .height = 147,
1205 },
1206};
1207
Jitao Shi690d8fa2016-02-22 19:01:44 +08001208static const struct drm_display_mode lg_lp120up1_mode = {
1209 .clock = 162300,
1210 .hdisplay = 1920,
1211 .hsync_start = 1920 + 40,
1212 .hsync_end = 1920 + 40 + 40,
1213 .htotal = 1920 + 40 + 40+ 80,
1214 .vdisplay = 1280,
1215 .vsync_start = 1280 + 4,
1216 .vsync_end = 1280 + 4 + 4,
1217 .vtotal = 1280 + 4 + 4 + 12,
1218 .vrefresh = 60,
1219};
1220
1221static const struct panel_desc lg_lp120up1 = {
1222 .modes = &lg_lp120up1_mode,
1223 .num_modes = 1,
1224 .bpc = 8,
1225 .size = {
1226 .width = 267,
1227 .height = 183,
1228 },
1229};
1230
Thierry Redingec7c5652013-11-15 15:59:32 +01001231static const struct drm_display_mode lg_lp129qe_mode = {
1232 .clock = 285250,
1233 .hdisplay = 2560,
1234 .hsync_start = 2560 + 48,
1235 .hsync_end = 2560 + 48 + 32,
1236 .htotal = 2560 + 48 + 32 + 80,
1237 .vdisplay = 1700,
1238 .vsync_start = 1700 + 3,
1239 .vsync_end = 1700 + 3 + 10,
1240 .vtotal = 1700 + 3 + 10 + 36,
1241 .vrefresh = 60,
1242};
1243
1244static const struct panel_desc lg_lp129qe = {
1245 .modes = &lg_lp129qe_mode,
1246 .num_modes = 1,
Stéphane Marchesin0208d512014-06-19 18:18:28 -07001247 .bpc = 8,
Thierry Redingec7c5652013-11-15 15:59:32 +01001248 .size = {
1249 .width = 272,
1250 .height = 181,
1251 },
1252};
1253
jianwei wangc6e87f92015-07-29 16:30:02 +08001254static const struct drm_display_mode nec_nl4827hc19_05b_mode = {
1255 .clock = 10870,
1256 .hdisplay = 480,
1257 .hsync_start = 480 + 2,
1258 .hsync_end = 480 + 2 + 41,
1259 .htotal = 480 + 2 + 41 + 2,
1260 .vdisplay = 272,
1261 .vsync_start = 272 + 2,
1262 .vsync_end = 272 + 2 + 4,
1263 .vtotal = 272 + 2 + 4 + 2,
1264 .vrefresh = 74,
Stefan Agner4bc390c2015-11-17 19:10:29 -08001265 .flags = DRM_MODE_FLAG_NVSYNC | DRM_MODE_FLAG_NHSYNC,
jianwei wangc6e87f92015-07-29 16:30:02 +08001266};
1267
1268static const struct panel_desc nec_nl4827hc19_05b = {
1269 .modes = &nec_nl4827hc19_05b_mode,
1270 .num_modes = 1,
1271 .bpc = 8,
1272 .size = {
1273 .width = 95,
1274 .height = 54,
1275 },
Stefan Agner2c806612016-02-08 12:50:13 -08001276 .bus_format = MEDIA_BUS_FMT_RGB888_1X24,
1277 .bus_flags = DRM_BUS_FLAG_PIXDATA_POSEDGE,
jianwei wangc6e87f92015-07-29 16:30:02 +08001278};
1279
Fabien Lahoudere05ec0e42016-10-17 11:38:01 +02001280static const struct drm_display_mode nvd_9128_mode = {
1281 .clock = 29500,
1282 .hdisplay = 800,
1283 .hsync_start = 800 + 130,
1284 .hsync_end = 800 + 130 + 98,
1285 .htotal = 800 + 0 + 130 + 98,
1286 .vdisplay = 480,
1287 .vsync_start = 480 + 10,
1288 .vsync_end = 480 + 10 + 50,
1289 .vtotal = 480 + 0 + 10 + 50,
1290};
1291
1292static const struct panel_desc nvd_9128 = {
1293 .modes = &nvd_9128_mode,
1294 .num_modes = 1,
1295 .bpc = 8,
1296 .size = {
1297 .width = 156,
1298 .height = 88,
1299 },
1300 .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
1301};
1302
Gary Bissona99fb622015-06-10 18:44:23 +02001303static const struct display_timing okaya_rs800480t_7x0gp_timing = {
1304 .pixelclock = { 30000000, 30000000, 40000000 },
1305 .hactive = { 800, 800, 800 },
1306 .hfront_porch = { 40, 40, 40 },
1307 .hback_porch = { 40, 40, 40 },
1308 .hsync_len = { 1, 48, 48 },
1309 .vactive = { 480, 480, 480 },
1310 .vfront_porch = { 13, 13, 13 },
1311 .vback_porch = { 29, 29, 29 },
1312 .vsync_len = { 3, 3, 3 },
1313 .flags = DISPLAY_FLAGS_DE_HIGH,
1314};
1315
1316static const struct panel_desc okaya_rs800480t_7x0gp = {
1317 .timings = &okaya_rs800480t_7x0gp_timing,
1318 .num_timings = 1,
1319 .bpc = 6,
1320 .size = {
1321 .width = 154,
1322 .height = 87,
1323 },
1324 .delay = {
1325 .prepare = 41,
1326 .enable = 50,
1327 .unprepare = 41,
1328 .disable = 50,
1329 },
1330 .bus_format = MEDIA_BUS_FMT_RGB666_1X18,
1331};
1332
Maxime Ripardcf5c9e62016-03-23 17:38:34 +01001333static const struct drm_display_mode olimex_lcd_olinuxino_43ts_mode = {
1334 .clock = 9000,
1335 .hdisplay = 480,
1336 .hsync_start = 480 + 5,
1337 .hsync_end = 480 + 5 + 30,
1338 .htotal = 480 + 5 + 30 + 10,
1339 .vdisplay = 272,
1340 .vsync_start = 272 + 8,
1341 .vsync_end = 272 + 8 + 5,
1342 .vtotal = 272 + 8 + 5 + 3,
1343 .vrefresh = 60,
1344};
1345
1346static const struct panel_desc olimex_lcd_olinuxino_43ts = {
1347 .modes = &olimex_lcd_olinuxino_43ts_mode,
1348 .num_modes = 1,
1349 .size = {
1350 .width = 105,
1351 .height = 67,
1352 },
Jonathan Liu5c2a7c62016-09-11 20:46:55 +10001353 .bus_format = MEDIA_BUS_FMT_RGB888_1X24,
Maxime Ripardcf5c9e62016-03-23 17:38:34 +01001354};
1355
Eric Anholte8b6f562016-03-24 17:23:48 -07001356/*
1357 * 800x480 CVT. The panel appears to be quite accepting, at least as far as
1358 * pixel clocks, but this is the timing that was being used in the Adafruit
1359 * installation instructions.
1360 */
1361static const struct drm_display_mode ontat_yx700wv03_mode = {
1362 .clock = 29500,
1363 .hdisplay = 800,
1364 .hsync_start = 824,
1365 .hsync_end = 896,
1366 .htotal = 992,
1367 .vdisplay = 480,
1368 .vsync_start = 483,
1369 .vsync_end = 493,
1370 .vtotal = 500,
1371 .vrefresh = 60,
1372 .flags = DRM_MODE_FLAG_NVSYNC | DRM_MODE_FLAG_NHSYNC,
1373};
1374
1375/*
1376 * Specification at:
1377 * https://www.adafruit.com/images/product-files/2406/c3163.pdf
1378 */
1379static const struct panel_desc ontat_yx700wv03 = {
1380 .modes = &ontat_yx700wv03_mode,
1381 .num_modes = 1,
1382 .bpc = 8,
1383 .size = {
1384 .width = 154,
1385 .height = 83,
1386 },
1387 .bus_format = MEDIA_BUS_FMT_RGB888_1X24,
1388};
1389
Philipp Zabel725c9d42015-02-11 18:50:11 +01001390static const struct drm_display_mode ortustech_com43h4m85ulc_mode = {
1391 .clock = 25000,
1392 .hdisplay = 480,
1393 .hsync_start = 480 + 10,
1394 .hsync_end = 480 + 10 + 10,
1395 .htotal = 480 + 10 + 10 + 15,
1396 .vdisplay = 800,
1397 .vsync_start = 800 + 3,
1398 .vsync_end = 800 + 3 + 3,
1399 .vtotal = 800 + 3 + 3 + 3,
1400 .vrefresh = 60,
1401};
1402
1403static const struct panel_desc ortustech_com43h4m85ulc = {
1404 .modes = &ortustech_com43h4m85ulc_mode,
1405 .num_modes = 1,
1406 .bpc = 8,
1407 .size = {
1408 .width = 56,
1409 .height = 93,
1410 },
1411 .bus_format = MEDIA_BUS_FMT_RGB888_1X24,
Marek Vasute0932f92016-08-26 18:26:00 +02001412 .bus_flags = DRM_BUS_FLAG_DE_HIGH | DRM_BUS_FLAG_PIXDATA_POSEDGE,
Philipp Zabel725c9d42015-02-11 18:50:11 +01001413};
1414
Josh Wud2a6f0f2015-10-08 17:42:41 +02001415static const struct drm_display_mode qd43003c0_40_mode = {
1416 .clock = 9000,
1417 .hdisplay = 480,
1418 .hsync_start = 480 + 8,
1419 .hsync_end = 480 + 8 + 4,
1420 .htotal = 480 + 8 + 4 + 39,
1421 .vdisplay = 272,
1422 .vsync_start = 272 + 4,
1423 .vsync_end = 272 + 4 + 10,
1424 .vtotal = 272 + 4 + 10 + 2,
1425 .vrefresh = 60,
1426};
1427
1428static const struct panel_desc qd43003c0_40 = {
1429 .modes = &qd43003c0_40_mode,
1430 .num_modes = 1,
1431 .bpc = 8,
1432 .size = {
1433 .width = 95,
1434 .height = 53,
1435 },
1436 .bus_format = MEDIA_BUS_FMT_RGB888_1X24,
1437};
1438
Yakir Yang0330eaf2016-06-12 10:56:13 +08001439static const struct drm_display_mode samsung_lsn122dl01_c01_mode = {
1440 .clock = 271560,
1441 .hdisplay = 2560,
1442 .hsync_start = 2560 + 48,
1443 .hsync_end = 2560 + 48 + 32,
1444 .htotal = 2560 + 48 + 32 + 80,
1445 .vdisplay = 1600,
1446 .vsync_start = 1600 + 2,
1447 .vsync_end = 1600 + 2 + 5,
1448 .vtotal = 1600 + 2 + 5 + 57,
1449 .vrefresh = 60,
1450};
1451
1452static const struct panel_desc samsung_lsn122dl01_c01 = {
1453 .modes = &samsung_lsn122dl01_c01_mode,
1454 .num_modes = 1,
1455 .size = {
1456 .width = 263,
1457 .height = 164,
1458 },
1459};
1460
Marc Dietrich6d54e3d2013-12-21 21:38:12 +01001461static const struct drm_display_mode samsung_ltn101nt05_mode = {
1462 .clock = 54030,
1463 .hdisplay = 1024,
1464 .hsync_start = 1024 + 24,
1465 .hsync_end = 1024 + 24 + 136,
1466 .htotal = 1024 + 24 + 136 + 160,
1467 .vdisplay = 600,
1468 .vsync_start = 600 + 3,
1469 .vsync_end = 600 + 3 + 6,
1470 .vtotal = 600 + 3 + 6 + 61,
1471 .vrefresh = 60,
1472};
1473
1474static const struct panel_desc samsung_ltn101nt05 = {
1475 .modes = &samsung_ltn101nt05_mode,
1476 .num_modes = 1,
Stéphane Marchesin0208d512014-06-19 18:18:28 -07001477 .bpc = 6,
Marc Dietrich6d54e3d2013-12-21 21:38:12 +01001478 .size = {
Thierry Reding81598842016-06-10 15:33:13 +02001479 .width = 223,
1480 .height = 125,
Marc Dietrich6d54e3d2013-12-21 21:38:12 +01001481 },
1482};
1483
Stéphane Marchesin0c934302015-03-18 10:52:18 +01001484static const struct drm_display_mode samsung_ltn140at29_301_mode = {
1485 .clock = 76300,
1486 .hdisplay = 1366,
1487 .hsync_start = 1366 + 64,
1488 .hsync_end = 1366 + 64 + 48,
1489 .htotal = 1366 + 64 + 48 + 128,
1490 .vdisplay = 768,
1491 .vsync_start = 768 + 2,
1492 .vsync_end = 768 + 2 + 5,
1493 .vtotal = 768 + 2 + 5 + 17,
1494 .vrefresh = 60,
1495};
1496
1497static const struct panel_desc samsung_ltn140at29_301 = {
1498 .modes = &samsung_ltn140at29_301_mode,
1499 .num_modes = 1,
1500 .bpc = 6,
1501 .size = {
1502 .width = 320,
1503 .height = 187,
1504 },
1505};
1506
Joshua Clayton592aa022016-07-06 15:59:16 -07001507static const struct display_timing sharp_lq101k1ly04_timing = {
1508 .pixelclock = { 60000000, 65000000, 80000000 },
1509 .hactive = { 1280, 1280, 1280 },
1510 .hfront_porch = { 20, 20, 20 },
1511 .hback_porch = { 20, 20, 20 },
1512 .hsync_len = { 10, 10, 10 },
1513 .vactive = { 800, 800, 800 },
1514 .vfront_porch = { 4, 4, 4 },
1515 .vback_porch = { 4, 4, 4 },
1516 .vsync_len = { 4, 4, 4 },
1517 .flags = DISPLAY_FLAGS_PIXDATA_POSEDGE,
1518};
1519
1520static const struct panel_desc sharp_lq101k1ly04 = {
1521 .timings = &sharp_lq101k1ly04_timing,
1522 .num_timings = 1,
1523 .bpc = 8,
1524 .size = {
1525 .width = 217,
1526 .height = 136,
1527 },
1528 .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_JEIDA,
1529};
1530
Yakir Yang739c7de2016-06-12 10:56:35 +08001531static const struct drm_display_mode sharp_lq123p1jx31_mode = {
1532 .clock = 252750,
1533 .hdisplay = 2400,
1534 .hsync_start = 2400 + 48,
1535 .hsync_end = 2400 + 48 + 32,
1536 .htotal = 2400 + 48 + 32 + 80,
1537 .vdisplay = 1600,
1538 .vsync_start = 1600 + 3,
1539 .vsync_end = 1600 + 3 + 10,
1540 .vtotal = 1600 + 3 + 10 + 33,
1541 .vrefresh = 60,
1542 .flags = DRM_MODE_FLAG_NVSYNC | DRM_MODE_FLAG_NHSYNC,
1543};
1544
1545static const struct panel_desc sharp_lq123p1jx31 = {
1546 .modes = &sharp_lq123p1jx31_mode,
1547 .num_modes = 1,
zain wang5466a632016-11-19 10:27:16 +08001548 .bpc = 8,
Yakir Yang739c7de2016-06-12 10:56:35 +08001549 .size = {
1550 .width = 259,
1551 .height = 173,
1552 },
Yakir Yanga42f6e32016-07-21 21:14:34 +08001553 .delay = {
1554 .prepare = 110,
1555 .enable = 50,
1556 .unprepare = 550,
1557 },
Yakir Yang739c7de2016-06-12 10:56:35 +08001558};
1559
Gustaf Lindström0f9cdd72016-10-04 17:29:21 +02001560static const struct drm_display_mode sharp_lq150x1lg11_mode = {
1561 .clock = 71100,
1562 .hdisplay = 1024,
1563 .hsync_start = 1024 + 168,
1564 .hsync_end = 1024 + 168 + 64,
1565 .htotal = 1024 + 168 + 64 + 88,
1566 .vdisplay = 768,
1567 .vsync_start = 768 + 37,
1568 .vsync_end = 768 + 37 + 2,
1569 .vtotal = 768 + 37 + 2 + 8,
1570 .vrefresh = 60,
1571};
1572
1573static const struct panel_desc sharp_lq150x1lg11 = {
1574 .modes = &sharp_lq150x1lg11_mode,
1575 .num_modes = 1,
1576 .bpc = 6,
1577 .size = {
1578 .width = 304,
1579 .height = 228,
1580 },
1581 .bus_format = MEDIA_BUS_FMT_RGB565_1X16,
1582};
1583
Boris BREZILLON9c6615b2015-03-19 14:43:00 +01001584static const struct drm_display_mode shelly_sca07010_bfn_lnn_mode = {
1585 .clock = 33300,
1586 .hdisplay = 800,
1587 .hsync_start = 800 + 1,
1588 .hsync_end = 800 + 1 + 64,
1589 .htotal = 800 + 1 + 64 + 64,
1590 .vdisplay = 480,
1591 .vsync_start = 480 + 1,
1592 .vsync_end = 480 + 1 + 23,
1593 .vtotal = 480 + 1 + 23 + 22,
1594 .vrefresh = 60,
1595};
1596
1597static const struct panel_desc shelly_sca07010_bfn_lnn = {
1598 .modes = &shelly_sca07010_bfn_lnn_mode,
1599 .num_modes = 1,
1600 .size = {
1601 .width = 152,
1602 .height = 91,
1603 },
1604 .bus_format = MEDIA_BUS_FMT_RGB666_1X18,
1605};
1606
Douglas Anderson9bb34c42016-06-10 10:02:07 -07001607static const struct drm_display_mode starry_kr122ea0sra_mode = {
1608 .clock = 147000,
1609 .hdisplay = 1920,
1610 .hsync_start = 1920 + 16,
1611 .hsync_end = 1920 + 16 + 16,
1612 .htotal = 1920 + 16 + 16 + 32,
1613 .vdisplay = 1200,
1614 .vsync_start = 1200 + 15,
1615 .vsync_end = 1200 + 15 + 2,
1616 .vtotal = 1200 + 15 + 2 + 18,
1617 .vrefresh = 60,
1618 .flags = DRM_MODE_FLAG_NVSYNC | DRM_MODE_FLAG_NHSYNC,
1619};
1620
1621static const struct panel_desc starry_kr122ea0sra = {
1622 .modes = &starry_kr122ea0sra_mode,
1623 .num_modes = 1,
1624 .size = {
1625 .width = 263,
1626 .height = 164,
1627 },
Brian Norrisc46b9242016-08-26 14:32:14 -07001628 .delay = {
1629 .prepare = 10 + 200,
1630 .enable = 50,
1631 .unprepare = 10 + 500,
1632 },
Douglas Anderson9bb34c42016-06-10 10:02:07 -07001633};
1634
Bhuvanchandra DV227e4f42016-05-05 11:47:07 +05301635static const struct drm_display_mode tpk_f07a_0102_mode = {
1636 .clock = 33260,
1637 .hdisplay = 800,
1638 .hsync_start = 800 + 40,
1639 .hsync_end = 800 + 40 + 128,
1640 .htotal = 800 + 40 + 128 + 88,
1641 .vdisplay = 480,
1642 .vsync_start = 480 + 10,
1643 .vsync_end = 480 + 10 + 2,
1644 .vtotal = 480 + 10 + 2 + 33,
1645 .vrefresh = 60,
1646};
1647
1648static const struct panel_desc tpk_f07a_0102 = {
1649 .modes = &tpk_f07a_0102_mode,
1650 .num_modes = 1,
1651 .size = {
1652 .width = 152,
1653 .height = 91,
1654 },
1655 .bus_flags = DRM_BUS_FLAG_PIXDATA_POSEDGE,
1656};
1657
1658static const struct drm_display_mode tpk_f10a_0102_mode = {
1659 .clock = 45000,
1660 .hdisplay = 1024,
1661 .hsync_start = 1024 + 176,
1662 .hsync_end = 1024 + 176 + 5,
1663 .htotal = 1024 + 176 + 5 + 88,
1664 .vdisplay = 600,
1665 .vsync_start = 600 + 20,
1666 .vsync_end = 600 + 20 + 5,
1667 .vtotal = 600 + 20 + 5 + 25,
1668 .vrefresh = 60,
1669};
1670
1671static const struct panel_desc tpk_f10a_0102 = {
1672 .modes = &tpk_f10a_0102_mode,
1673 .num_modes = 1,
1674 .size = {
1675 .width = 223,
1676 .height = 125,
1677 },
1678};
1679
Maciej S. Szmigiero06a9dc62016-02-13 22:52:03 +01001680static const struct display_timing urt_umsh_8596md_timing = {
1681 .pixelclock = { 33260000, 33260000, 33260000 },
1682 .hactive = { 800, 800, 800 },
1683 .hfront_porch = { 41, 41, 41 },
1684 .hback_porch = { 216 - 128, 216 - 128, 216 - 128 },
1685 .hsync_len = { 71, 128, 128 },
1686 .vactive = { 480, 480, 480 },
1687 .vfront_porch = { 10, 10, 10 },
1688 .vback_porch = { 35 - 2, 35 - 2, 35 - 2 },
1689 .vsync_len = { 2, 2, 2 },
1690 .flags = DISPLAY_FLAGS_DE_HIGH | DISPLAY_FLAGS_PIXDATA_NEGEDGE |
1691 DISPLAY_FLAGS_HSYNC_LOW | DISPLAY_FLAGS_VSYNC_LOW,
1692};
1693
1694static const struct panel_desc urt_umsh_8596md_lvds = {
1695 .timings = &urt_umsh_8596md_timing,
1696 .num_timings = 1,
1697 .bpc = 6,
1698 .size = {
1699 .width = 152,
1700 .height = 91,
1701 },
1702 .bus_format = MEDIA_BUS_FMT_RGB666_1X7X3_SPWG,
1703};
1704
1705static const struct panel_desc urt_umsh_8596md_parallel = {
1706 .timings = &urt_umsh_8596md_timing,
1707 .num_timings = 1,
1708 .bpc = 6,
1709 .size = {
1710 .width = 152,
1711 .height = 91,
1712 },
1713 .bus_format = MEDIA_BUS_FMT_RGB666_1X18,
1714};
1715
Thierry Reding280921d2013-08-30 15:10:14 +02001716static const struct of_device_id platform_of_match[] = {
1717 {
Philipp Zabel1c550fa12015-02-11 18:50:09 +01001718 .compatible = "ampire,am800480r3tmqwa1h",
1719 .data = &ampire_am800480r3tmqwa1h,
1720 }, {
Thierry Reding280921d2013-08-30 15:10:14 +02001721 .compatible = "auo,b101aw03",
1722 .data = &auo_b101aw03,
1723 }, {
Huang Lina531bc32015-02-28 10:18:58 +08001724 .compatible = "auo,b101ean01",
1725 .data = &auo_b101ean01,
1726 }, {
Rob Clarkdac746e2014-08-01 17:01:06 -04001727 .compatible = "auo,b101xtn01",
1728 .data = &auo_b101xtn01,
1729 }, {
Ajay Kumare35e3052014-09-01 15:40:02 +05301730 .compatible = "auo,b116xw03",
1731 .data = &auo_b116xw03,
1732 }, {
Ajay Kumar3e51d602014-07-31 23:12:12 +05301733 .compatible = "auo,b133htn01",
1734 .data = &auo_b133htn01,
1735 }, {
Stéphane Marchesina333f7a2014-05-23 19:27:59 -07001736 .compatible = "auo,b133xtn01",
1737 .data = &auo_b133xtn01,
1738 }, {
Lucas Stach697035c2016-11-30 14:09:55 +01001739 .compatible = "auo,g133han01",
1740 .data = &auo_g133han01,
1741 }, {
Lucas Stach8c31f602016-11-30 14:09:56 +01001742 .compatible = "auo,g185han01",
1743 .data = &auo_g185han01,
1744 }, {
Haixia Shi7ee933a2016-10-11 14:59:16 -07001745 .compatible = "auo,t215hvn01",
1746 .data = &auo_t215hvn01,
1747 }, {
Philipp Zabeld47df632014-12-18 16:43:43 +01001748 .compatible = "avic,tm070ddh03",
1749 .data = &avic_tm070ddh03,
1750 }, {
Randy Li2cb35c82016-09-20 03:02:51 +08001751 .compatible = "chunghwa,claa070wp03xg",
1752 .data = &chunghwa_claa070wp03xg,
1753 }, {
Stephen Warren4c930752014-01-07 16:46:26 -07001754 .compatible = "chunghwa,claa101wa01a",
1755 .data = &chunghwa_claa101wa01a
1756 }, {
Thierry Reding280921d2013-08-30 15:10:14 +02001757 .compatible = "chunghwa,claa101wb01",
1758 .data = &chunghwa_claa101wb01
1759 }, {
Stefan Agner26ab0062014-05-15 11:38:45 +02001760 .compatible = "edt,et057090dhu",
1761 .data = &edt_et057090dhu,
1762 }, {
Philipp Zabelfff5de42014-05-15 12:25:47 +02001763 .compatible = "edt,et070080dh6",
1764 .data = &edt_etm0700g0dh6,
1765 }, {
1766 .compatible = "edt,etm0700g0dh6",
1767 .data = &edt_etm0700g0dh6,
1768 }, {
Boris BREZILLON102932b2014-06-05 15:53:32 +02001769 .compatible = "foxlink,fl500wvr00-a0t",
1770 .data = &foxlink_fl500wvr00_a0t,
1771 }, {
Philipp Zabeld435a2a2014-11-19 10:29:55 +01001772 .compatible = "giantplus,gpg482739qs5",
1773 .data = &giantplus_gpg482739qs5
1774 }, {
Philipp Zabela8532052014-10-23 16:31:06 +02001775 .compatible = "hannstar,hsd070pww1",
1776 .data = &hannstar_hsd070pww1,
1777 }, {
Eric Nelsonc0d607e2015-04-13 15:09:26 -07001778 .compatible = "hannstar,hsd100pxn1",
1779 .data = &hannstar_hsd100pxn1,
1780 }, {
Lucas Stach61ac0bf2014-11-06 17:44:35 +01001781 .compatible = "hit,tx23d38vm0caa",
1782 .data = &hitachi_tx23d38vm0caa
1783 }, {
Nicolas Ferre41bcceb2015-03-19 14:43:01 +01001784 .compatible = "innolux,at043tn24",
1785 .data = &innolux_at043tn24,
1786 }, {
Riccardo Bortolato4fc24ab2016-04-20 15:37:15 +02001787 .compatible = "innolux,at070tn92",
1788 .data = &innolux_at070tn92,
1789 }, {
Michael Olbrich1e29b842016-08-15 14:32:02 +02001790 .compatible ="innolux,g101ice-l01",
1791 .data = &innolux_g101ice_l01
1792 }, {
Lucas Stachd731f662014-11-06 17:44:33 +01001793 .compatible ="innolux,g121i1-l01",
1794 .data = &innolux_g121i1_l01
1795 }, {
Akshay Bhatf8fa17b2015-11-18 15:57:47 -05001796 .compatible = "innolux,g121x1-l03",
1797 .data = &innolux_g121x1_l03,
1798 }, {
Thierry Reding0a2288c2014-07-03 14:02:59 +02001799 .compatible = "innolux,n116bge",
1800 .data = &innolux_n116bge,
1801 }, {
Alban Bedelea447392014-07-22 08:38:55 +02001802 .compatible = "innolux,n156bge-l21",
1803 .data = &innolux_n156bge_l21,
1804 }, {
Michael Grzeschikbccac3f2015-03-19 12:22:44 +01001805 .compatible = "innolux,zj070na-01p",
1806 .data = &innolux_zj070na_01p,
1807 }, {
Lucas Stach8def22e2015-12-02 19:41:11 +01001808 .compatible = "kyo,tcg121xglp",
1809 .data = &kyo_tcg121xglp,
1810 }, {
Heiko Schocherdd015002015-05-22 10:25:57 +02001811 .compatible = "lg,lb070wv8",
1812 .data = &lg_lb070wv8,
1813 }, {
Yakir Yangc5ece402016-06-28 12:51:15 +08001814 .compatible = "lg,lp079qx1-sp0v",
1815 .data = &lg_lp079qx1_sp0v,
1816 }, {
Yakir Yang0355dde2016-06-12 10:56:02 +08001817 .compatible = "lg,lp097qx1-spa1",
1818 .data = &lg_lp097qx1_spa1,
1819 }, {
Jitao Shi690d8fa2016-02-22 19:01:44 +08001820 .compatible = "lg,lp120up1",
1821 .data = &lg_lp120up1,
1822 }, {
Thierry Redingec7c5652013-11-15 15:59:32 +01001823 .compatible = "lg,lp129qe",
1824 .data = &lg_lp129qe,
1825 }, {
jianwei wangc6e87f92015-07-29 16:30:02 +08001826 .compatible = "nec,nl4827hc19-05b",
1827 .data = &nec_nl4827hc19_05b,
1828 }, {
Fabien Lahoudere05ec0e42016-10-17 11:38:01 +02001829 .compatible = "nvd,9128",
1830 .data = &nvd_9128,
1831 }, {
Gary Bissona99fb622015-06-10 18:44:23 +02001832 .compatible = "okaya,rs800480t-7x0gp",
1833 .data = &okaya_rs800480t_7x0gp,
1834 }, {
Maxime Ripardcf5c9e62016-03-23 17:38:34 +01001835 .compatible = "olimex,lcd-olinuxino-43-ts",
1836 .data = &olimex_lcd_olinuxino_43ts,
1837 }, {
Eric Anholte8b6f562016-03-24 17:23:48 -07001838 .compatible = "ontat,yx700wv03",
1839 .data = &ontat_yx700wv03,
1840 }, {
Philipp Zabel725c9d42015-02-11 18:50:11 +01001841 .compatible = "ortustech,com43h4m85ulc",
1842 .data = &ortustech_com43h4m85ulc,
1843 }, {
Josh Wud2a6f0f2015-10-08 17:42:41 +02001844 .compatible = "qiaodian,qd43003c0-40",
1845 .data = &qd43003c0_40,
1846 }, {
Yakir Yang0330eaf2016-06-12 10:56:13 +08001847 .compatible = "samsung,lsn122dl01-c01",
1848 .data = &samsung_lsn122dl01_c01,
1849 }, {
Marc Dietrich6d54e3d2013-12-21 21:38:12 +01001850 .compatible = "samsung,ltn101nt05",
1851 .data = &samsung_ltn101nt05,
1852 }, {
Stéphane Marchesin0c934302015-03-18 10:52:18 +01001853 .compatible = "samsung,ltn140at29-301",
1854 .data = &samsung_ltn140at29_301,
1855 }, {
Joshua Clayton592aa022016-07-06 15:59:16 -07001856 .compatible = "sharp,lq101k1ly04",
1857 .data = &sharp_lq101k1ly04,
1858 }, {
Yakir Yang739c7de2016-06-12 10:56:35 +08001859 .compatible = "sharp,lq123p1jx31",
1860 .data = &sharp_lq123p1jx31,
1861 }, {
Gustaf Lindström0f9cdd72016-10-04 17:29:21 +02001862 .compatible = "sharp,lq150x1lg11",
1863 .data = &sharp_lq150x1lg11,
1864 }, {
Boris BREZILLON9c6615b2015-03-19 14:43:00 +01001865 .compatible = "shelly,sca07010-bfn-lnn",
1866 .data = &shelly_sca07010_bfn_lnn,
1867 }, {
Douglas Anderson9bb34c42016-06-10 10:02:07 -07001868 .compatible = "starry,kr122ea0sra",
1869 .data = &starry_kr122ea0sra,
1870 }, {
Bhuvanchandra DV227e4f42016-05-05 11:47:07 +05301871 .compatible = "tpk,f07a-0102",
1872 .data = &tpk_f07a_0102,
1873 }, {
1874 .compatible = "tpk,f10a-0102",
1875 .data = &tpk_f10a_0102,
1876 }, {
Maciej S. Szmigiero06a9dc62016-02-13 22:52:03 +01001877 .compatible = "urt,umsh-8596md-t",
1878 .data = &urt_umsh_8596md_parallel,
1879 }, {
1880 .compatible = "urt,umsh-8596md-1t",
1881 .data = &urt_umsh_8596md_parallel,
1882 }, {
1883 .compatible = "urt,umsh-8596md-7t",
1884 .data = &urt_umsh_8596md_parallel,
1885 }, {
1886 .compatible = "urt,umsh-8596md-11t",
1887 .data = &urt_umsh_8596md_lvds,
1888 }, {
1889 .compatible = "urt,umsh-8596md-19t",
1890 .data = &urt_umsh_8596md_lvds,
1891 }, {
1892 .compatible = "urt,umsh-8596md-20t",
1893 .data = &urt_umsh_8596md_parallel,
1894 }, {
Thierry Reding280921d2013-08-30 15:10:14 +02001895 /* sentinel */
1896 }
1897};
1898MODULE_DEVICE_TABLE(of, platform_of_match);
1899
1900static int panel_simple_platform_probe(struct platform_device *pdev)
1901{
1902 const struct of_device_id *id;
1903
1904 id = of_match_node(platform_of_match, pdev->dev.of_node);
1905 if (!id)
1906 return -ENODEV;
1907
1908 return panel_simple_probe(&pdev->dev, id->data);
1909}
1910
1911static int panel_simple_platform_remove(struct platform_device *pdev)
1912{
1913 return panel_simple_remove(&pdev->dev);
1914}
1915
Thierry Redingd02fd932014-04-29 17:21:21 +02001916static void panel_simple_platform_shutdown(struct platform_device *pdev)
1917{
1918 panel_simple_shutdown(&pdev->dev);
1919}
1920
Thierry Reding280921d2013-08-30 15:10:14 +02001921static struct platform_driver panel_simple_platform_driver = {
1922 .driver = {
1923 .name = "panel-simple",
Thierry Reding280921d2013-08-30 15:10:14 +02001924 .of_match_table = platform_of_match,
1925 },
1926 .probe = panel_simple_platform_probe,
1927 .remove = panel_simple_platform_remove,
Thierry Redingd02fd932014-04-29 17:21:21 +02001928 .shutdown = panel_simple_platform_shutdown,
Thierry Reding280921d2013-08-30 15:10:14 +02001929};
1930
Thierry Reding210fcd92013-11-22 19:27:11 +01001931struct panel_desc_dsi {
1932 struct panel_desc desc;
1933
Thierry Reding462658b2014-03-14 11:24:57 +01001934 unsigned long flags;
Thierry Reding210fcd92013-11-22 19:27:11 +01001935 enum mipi_dsi_pixel_format format;
1936 unsigned int lanes;
1937};
1938
Thierry Redingd718d792015-04-08 16:52:33 +02001939static const struct drm_display_mode auo_b080uan01_mode = {
1940 .clock = 154500,
1941 .hdisplay = 1200,
1942 .hsync_start = 1200 + 62,
1943 .hsync_end = 1200 + 62 + 4,
1944 .htotal = 1200 + 62 + 4 + 62,
1945 .vdisplay = 1920,
1946 .vsync_start = 1920 + 9,
1947 .vsync_end = 1920 + 9 + 2,
1948 .vtotal = 1920 + 9 + 2 + 8,
1949 .vrefresh = 60,
1950};
1951
1952static const struct panel_desc_dsi auo_b080uan01 = {
1953 .desc = {
1954 .modes = &auo_b080uan01_mode,
1955 .num_modes = 1,
1956 .bpc = 8,
1957 .size = {
1958 .width = 108,
1959 .height = 272,
1960 },
1961 },
1962 .flags = MIPI_DSI_MODE_VIDEO | MIPI_DSI_CLOCK_NON_CONTINUOUS,
1963 .format = MIPI_DSI_FMT_RGB888,
1964 .lanes = 4,
1965};
1966
Chris Zhongc8521962015-11-20 16:15:37 +08001967static const struct drm_display_mode boe_tv080wum_nl0_mode = {
1968 .clock = 160000,
1969 .hdisplay = 1200,
1970 .hsync_start = 1200 + 120,
1971 .hsync_end = 1200 + 120 + 20,
1972 .htotal = 1200 + 120 + 20 + 21,
1973 .vdisplay = 1920,
1974 .vsync_start = 1920 + 21,
1975 .vsync_end = 1920 + 21 + 3,
1976 .vtotal = 1920 + 21 + 3 + 18,
1977 .vrefresh = 60,
1978 .flags = DRM_MODE_FLAG_NVSYNC | DRM_MODE_FLAG_NHSYNC,
1979};
1980
1981static const struct panel_desc_dsi boe_tv080wum_nl0 = {
1982 .desc = {
1983 .modes = &boe_tv080wum_nl0_mode,
1984 .num_modes = 1,
1985 .size = {
1986 .width = 107,
1987 .height = 172,
1988 },
1989 },
1990 .flags = MIPI_DSI_MODE_VIDEO |
1991 MIPI_DSI_MODE_VIDEO_BURST |
1992 MIPI_DSI_MODE_VIDEO_SYNC_PULSE,
1993 .format = MIPI_DSI_FMT_RGB888,
1994 .lanes = 4,
1995};
1996
Alexandre Courbot712ac1b2014-01-21 18:57:10 +09001997static const struct drm_display_mode lg_ld070wx3_sl01_mode = {
1998 .clock = 71000,
1999 .hdisplay = 800,
2000 .hsync_start = 800 + 32,
2001 .hsync_end = 800 + 32 + 1,
2002 .htotal = 800 + 32 + 1 + 57,
2003 .vdisplay = 1280,
2004 .vsync_start = 1280 + 28,
2005 .vsync_end = 1280 + 28 + 1,
2006 .vtotal = 1280 + 28 + 1 + 14,
2007 .vrefresh = 60,
2008};
2009
2010static const struct panel_desc_dsi lg_ld070wx3_sl01 = {
2011 .desc = {
2012 .modes = &lg_ld070wx3_sl01_mode,
2013 .num_modes = 1,
Thierry Redingd7a839c2014-11-06 10:11:01 +01002014 .bpc = 8,
Alexandre Courbot712ac1b2014-01-21 18:57:10 +09002015 .size = {
2016 .width = 94,
2017 .height = 151,
2018 },
2019 },
Alexandre Courbot5e4cc272014-07-08 21:32:12 +09002020 .flags = MIPI_DSI_MODE_VIDEO | MIPI_DSI_CLOCK_NON_CONTINUOUS,
Alexandre Courbot712ac1b2014-01-21 18:57:10 +09002021 .format = MIPI_DSI_FMT_RGB888,
2022 .lanes = 4,
2023};
2024
Alexandre Courbot499ce852014-01-21 18:57:09 +09002025static const struct drm_display_mode lg_lh500wx1_sd03_mode = {
2026 .clock = 67000,
2027 .hdisplay = 720,
2028 .hsync_start = 720 + 12,
2029 .hsync_end = 720 + 12 + 4,
2030 .htotal = 720 + 12 + 4 + 112,
2031 .vdisplay = 1280,
2032 .vsync_start = 1280 + 8,
2033 .vsync_end = 1280 + 8 + 4,
2034 .vtotal = 1280 + 8 + 4 + 12,
2035 .vrefresh = 60,
2036};
2037
2038static const struct panel_desc_dsi lg_lh500wx1_sd03 = {
2039 .desc = {
2040 .modes = &lg_lh500wx1_sd03_mode,
2041 .num_modes = 1,
Thierry Redingd7a839c2014-11-06 10:11:01 +01002042 .bpc = 8,
Alexandre Courbot499ce852014-01-21 18:57:09 +09002043 .size = {
2044 .width = 62,
2045 .height = 110,
2046 },
2047 },
2048 .flags = MIPI_DSI_MODE_VIDEO,
2049 .format = MIPI_DSI_FMT_RGB888,
2050 .lanes = 4,
2051};
2052
Thierry Reding280921d2013-08-30 15:10:14 +02002053static const struct drm_display_mode panasonic_vvx10f004b00_mode = {
2054 .clock = 157200,
2055 .hdisplay = 1920,
2056 .hsync_start = 1920 + 154,
2057 .hsync_end = 1920 + 154 + 16,
2058 .htotal = 1920 + 154 + 16 + 32,
2059 .vdisplay = 1200,
2060 .vsync_start = 1200 + 17,
2061 .vsync_end = 1200 + 17 + 2,
2062 .vtotal = 1200 + 17 + 2 + 16,
2063 .vrefresh = 60,
2064};
2065
Thierry Reding210fcd92013-11-22 19:27:11 +01002066static const struct panel_desc_dsi panasonic_vvx10f004b00 = {
2067 .desc = {
2068 .modes = &panasonic_vvx10f004b00_mode,
2069 .num_modes = 1,
Thierry Redingd7a839c2014-11-06 10:11:01 +01002070 .bpc = 8,
Thierry Reding210fcd92013-11-22 19:27:11 +01002071 .size = {
2072 .width = 217,
2073 .height = 136,
2074 },
Thierry Reding280921d2013-08-30 15:10:14 +02002075 },
Alexandre Courbot5e4cc272014-07-08 21:32:12 +09002076 .flags = MIPI_DSI_MODE_VIDEO | MIPI_DSI_MODE_VIDEO_SYNC_PULSE |
2077 MIPI_DSI_CLOCK_NON_CONTINUOUS,
Thierry Reding210fcd92013-11-22 19:27:11 +01002078 .format = MIPI_DSI_FMT_RGB888,
2079 .lanes = 4,
2080};
2081
2082static const struct of_device_id dsi_of_match[] = {
2083 {
Thierry Redingd718d792015-04-08 16:52:33 +02002084 .compatible = "auo,b080uan01",
2085 .data = &auo_b080uan01
2086 }, {
Chris Zhongc8521962015-11-20 16:15:37 +08002087 .compatible = "boe,tv080wum-nl0",
2088 .data = &boe_tv080wum_nl0
2089 }, {
Alexandre Courbot712ac1b2014-01-21 18:57:10 +09002090 .compatible = "lg,ld070wx3-sl01",
2091 .data = &lg_ld070wx3_sl01
2092 }, {
Alexandre Courbot499ce852014-01-21 18:57:09 +09002093 .compatible = "lg,lh500wx1-sd03",
2094 .data = &lg_lh500wx1_sd03
2095 }, {
Thierry Reding210fcd92013-11-22 19:27:11 +01002096 .compatible = "panasonic,vvx10f004b00",
2097 .data = &panasonic_vvx10f004b00
2098 }, {
2099 /* sentinel */
2100 }
2101};
2102MODULE_DEVICE_TABLE(of, dsi_of_match);
2103
2104static int panel_simple_dsi_probe(struct mipi_dsi_device *dsi)
2105{
2106 const struct panel_desc_dsi *desc;
2107 const struct of_device_id *id;
2108 int err;
2109
2110 id = of_match_node(dsi_of_match, dsi->dev.of_node);
2111 if (!id)
2112 return -ENODEV;
2113
2114 desc = id->data;
2115
2116 err = panel_simple_probe(&dsi->dev, &desc->desc);
2117 if (err < 0)
2118 return err;
2119
Thierry Reding462658b2014-03-14 11:24:57 +01002120 dsi->mode_flags = desc->flags;
Thierry Reding210fcd92013-11-22 19:27:11 +01002121 dsi->format = desc->format;
2122 dsi->lanes = desc->lanes;
2123
2124 return mipi_dsi_attach(dsi);
2125}
2126
2127static int panel_simple_dsi_remove(struct mipi_dsi_device *dsi)
2128{
2129 int err;
2130
2131 err = mipi_dsi_detach(dsi);
2132 if (err < 0)
2133 dev_err(&dsi->dev, "failed to detach from DSI host: %d\n", err);
2134
2135 return panel_simple_remove(&dsi->dev);
2136}
2137
Thierry Redingd02fd932014-04-29 17:21:21 +02002138static void panel_simple_dsi_shutdown(struct mipi_dsi_device *dsi)
2139{
2140 panel_simple_shutdown(&dsi->dev);
2141}
2142
Thierry Reding210fcd92013-11-22 19:27:11 +01002143static struct mipi_dsi_driver panel_simple_dsi_driver = {
2144 .driver = {
2145 .name = "panel-simple-dsi",
Thierry Reding210fcd92013-11-22 19:27:11 +01002146 .of_match_table = dsi_of_match,
2147 },
2148 .probe = panel_simple_dsi_probe,
2149 .remove = panel_simple_dsi_remove,
Thierry Redingd02fd932014-04-29 17:21:21 +02002150 .shutdown = panel_simple_dsi_shutdown,
Thierry Reding280921d2013-08-30 15:10:14 +02002151};
2152
2153static int __init panel_simple_init(void)
2154{
Thierry Reding210fcd92013-11-22 19:27:11 +01002155 int err;
2156
2157 err = platform_driver_register(&panel_simple_platform_driver);
2158 if (err < 0)
2159 return err;
2160
2161 if (IS_ENABLED(CONFIG_DRM_MIPI_DSI)) {
2162 err = mipi_dsi_driver_register(&panel_simple_dsi_driver);
2163 if (err < 0)
2164 return err;
2165 }
2166
2167 return 0;
Thierry Reding280921d2013-08-30 15:10:14 +02002168}
2169module_init(panel_simple_init);
2170
2171static void __exit panel_simple_exit(void)
2172{
Thierry Reding210fcd92013-11-22 19:27:11 +01002173 if (IS_ENABLED(CONFIG_DRM_MIPI_DSI))
2174 mipi_dsi_driver_unregister(&panel_simple_dsi_driver);
2175
Thierry Reding280921d2013-08-30 15:10:14 +02002176 platform_driver_unregister(&panel_simple_platform_driver);
2177}
2178module_exit(panel_simple_exit);
2179
2180MODULE_AUTHOR("Thierry Reding <treding@nvidia.com>");
2181MODULE_DESCRIPTION("DRM Driver for Simple Panels");
2182MODULE_LICENSE("GPL and additional rights");