drm/panel: simple - Disable panel on shutdown
[deliverable/linux.git] / drivers / gpu / drm / panel / panel-simple.c
CommitLineData
280921de
TR
1/*
2 * Copyright (C) 2013, NVIDIA Corporation. All rights reserved.
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sub license,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the
12 * next paragraph) shall be included in all copies or substantial portions
13 * of the Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21 * DEALINGS IN THE SOFTWARE.
22 */
23
24#include <linux/backlight.h>
cfdf0549 25#include <linux/gpio/consumer.h>
280921de 26#include <linux/module.h>
280921de
TR
27#include <linux/of_platform.h>
28#include <linux/platform_device.h>
29#include <linux/regulator/consumer.h>
30
31#include <drm/drmP.h>
32#include <drm/drm_crtc.h>
210fcd9d 33#include <drm/drm_mipi_dsi.h>
280921de
TR
34#include <drm/drm_panel.h>
35
36struct panel_desc {
37 const struct drm_display_mode *modes;
38 unsigned int num_modes;
39
40 struct {
41 unsigned int width;
42 unsigned int height;
43 } size;
44};
45
280921de
TR
46struct panel_simple {
47 struct drm_panel base;
48 bool enabled;
49
50 const struct panel_desc *desc;
51
52 struct backlight_device *backlight;
53 struct regulator *supply;
54 struct i2c_adapter *ddc;
55
cfdf0549 56 struct gpio_desc *enable_gpio;
280921de
TR
57};
58
59static inline struct panel_simple *to_panel_simple(struct drm_panel *panel)
60{
61 return container_of(panel, struct panel_simple, base);
62}
63
64static int panel_simple_get_fixed_modes(struct panel_simple *panel)
65{
66 struct drm_connector *connector = panel->base.connector;
67 struct drm_device *drm = panel->base.drm;
68 struct drm_display_mode *mode;
69 unsigned int i, num = 0;
70
71 if (!panel->desc)
72 return 0;
73
74 for (i = 0; i < panel->desc->num_modes; i++) {
75 const struct drm_display_mode *m = &panel->desc->modes[i];
76
77 mode = drm_mode_duplicate(drm, m);
78 if (!mode) {
79 dev_err(drm->dev, "failed to add mode %ux%u@%u\n",
80 m->hdisplay, m->vdisplay, m->vrefresh);
81 continue;
82 }
83
84 drm_mode_set_name(mode);
85
86 drm_mode_probed_add(connector, mode);
87 num++;
88 }
89
90 connector->display_info.width_mm = panel->desc->size.width;
91 connector->display_info.height_mm = panel->desc->size.height;
92
93 return num;
94}
95
96static int panel_simple_disable(struct drm_panel *panel)
97{
98 struct panel_simple *p = to_panel_simple(panel);
99
100 if (!p->enabled)
101 return 0;
102
103 if (p->backlight) {
104 p->backlight->props.power = FB_BLANK_POWERDOWN;
105 backlight_update_status(p->backlight);
106 }
107
cfdf0549 108 if (p->enable_gpio)
15c1a919 109 gpiod_set_value_cansleep(p->enable_gpio, 0);
280921de
TR
110
111 regulator_disable(p->supply);
112 p->enabled = false;
113
114 return 0;
115}
116
117static int panel_simple_enable(struct drm_panel *panel)
118{
119 struct panel_simple *p = to_panel_simple(panel);
120 int err;
121
122 if (p->enabled)
123 return 0;
124
125 err = regulator_enable(p->supply);
126 if (err < 0) {
127 dev_err(panel->dev, "failed to enable supply: %d\n", err);
128 return err;
129 }
130
cfdf0549 131 if (p->enable_gpio)
15c1a919 132 gpiod_set_value_cansleep(p->enable_gpio, 1);
280921de
TR
133
134 if (p->backlight) {
135 p->backlight->props.power = FB_BLANK_UNBLANK;
136 backlight_update_status(p->backlight);
137 }
138
139 p->enabled = true;
140
141 return 0;
142}
143
144static int panel_simple_get_modes(struct drm_panel *panel)
145{
146 struct panel_simple *p = to_panel_simple(panel);
147 int num = 0;
148
149 /* probe EDID if a DDC bus is available */
150 if (p->ddc) {
151 struct edid *edid = drm_get_edid(panel->connector, p->ddc);
70bf6878 152 drm_mode_connector_update_edid_property(panel->connector, edid);
280921de
TR
153 if (edid) {
154 num += drm_add_edid_modes(panel->connector, edid);
155 kfree(edid);
156 }
157 }
158
159 /* add hard-coded panel modes */
160 num += panel_simple_get_fixed_modes(p);
161
162 return num;
163}
164
165static const struct drm_panel_funcs panel_simple_funcs = {
166 .disable = panel_simple_disable,
167 .enable = panel_simple_enable,
168 .get_modes = panel_simple_get_modes,
169};
170
171static int panel_simple_probe(struct device *dev, const struct panel_desc *desc)
172{
173 struct device_node *backlight, *ddc;
174 struct panel_simple *panel;
280921de
TR
175 int err;
176
177 panel = devm_kzalloc(dev, sizeof(*panel), GFP_KERNEL);
178 if (!panel)
179 return -ENOMEM;
180
181 panel->enabled = false;
182 panel->desc = desc;
183
184 panel->supply = devm_regulator_get(dev, "power");
185 if (IS_ERR(panel->supply))
186 return PTR_ERR(panel->supply);
187
cfdf0549
AC
188 panel->enable_gpio = devm_gpiod_get(dev, "enable");
189 if (IS_ERR(panel->enable_gpio)) {
190 err = PTR_ERR(panel->enable_gpio);
191 if (err != -ENOENT) {
192 dev_err(dev, "failed to request GPIO: %d\n", err);
280921de
TR
193 return err;
194 }
195
cfdf0549
AC
196 panel->enable_gpio = NULL;
197 } else {
198 err = gpiod_direction_output(panel->enable_gpio, 0);
280921de 199 if (err < 0) {
cfdf0549
AC
200 dev_err(dev, "failed to setup GPIO: %d\n", err);
201 return err;
280921de
TR
202 }
203 }
204
205 backlight = of_parse_phandle(dev->of_node, "backlight", 0);
206 if (backlight) {
207 panel->backlight = of_find_backlight_by_node(backlight);
208 of_node_put(backlight);
209
cfdf0549
AC
210 if (!panel->backlight)
211 return -EPROBE_DEFER;
280921de
TR
212 }
213
214 ddc = of_parse_phandle(dev->of_node, "ddc-i2c-bus", 0);
215 if (ddc) {
216 panel->ddc = of_find_i2c_adapter_by_node(ddc);
217 of_node_put(ddc);
218
219 if (!panel->ddc) {
220 err = -EPROBE_DEFER;
221 goto free_backlight;
222 }
223 }
224
225 drm_panel_init(&panel->base);
226 panel->base.dev = dev;
227 panel->base.funcs = &panel_simple_funcs;
228
229 err = drm_panel_add(&panel->base);
230 if (err < 0)
231 goto free_ddc;
232
233 dev_set_drvdata(dev, panel);
234
235 return 0;
236
237free_ddc:
238 if (panel->ddc)
239 put_device(&panel->ddc->dev);
240free_backlight:
241 if (panel->backlight)
242 put_device(&panel->backlight->dev);
280921de
TR
243
244 return err;
245}
246
247static int panel_simple_remove(struct device *dev)
248{
249 struct panel_simple *panel = dev_get_drvdata(dev);
250
251 drm_panel_detach(&panel->base);
252 drm_panel_remove(&panel->base);
253
254 panel_simple_disable(&panel->base);
255
256 if (panel->ddc)
257 put_device(&panel->ddc->dev);
258
259 if (panel->backlight)
260 put_device(&panel->backlight->dev);
261
280921de
TR
262 return 0;
263}
264
d02fd93e
TR
265static void panel_simple_shutdown(struct device *dev)
266{
267 struct panel_simple *panel = dev_get_drvdata(dev);
268
269 panel_simple_disable(&panel->base);
270}
271
280921de
TR
272static const struct drm_display_mode auo_b101aw03_mode = {
273 .clock = 51450,
274 .hdisplay = 1024,
275 .hsync_start = 1024 + 156,
276 .hsync_end = 1024 + 156 + 8,
277 .htotal = 1024 + 156 + 8 + 156,
278 .vdisplay = 600,
279 .vsync_start = 600 + 16,
280 .vsync_end = 600 + 16 + 6,
281 .vtotal = 600 + 16 + 6 + 16,
282 .vrefresh = 60,
283};
284
285static const struct panel_desc auo_b101aw03 = {
286 .modes = &auo_b101aw03_mode,
287 .num_modes = 1,
288 .size = {
289 .width = 223,
290 .height = 125,
291 },
292};
293
4c930757
SW
294static const struct drm_display_mode chunghwa_claa101wa01a_mode = {
295 .clock = 72070,
296 .hdisplay = 1366,
297 .hsync_start = 1366 + 58,
298 .hsync_end = 1366 + 58 + 58,
299 .htotal = 1366 + 58 + 58 + 58,
300 .vdisplay = 768,
301 .vsync_start = 768 + 4,
302 .vsync_end = 768 + 4 + 4,
303 .vtotal = 768 + 4 + 4 + 4,
304 .vrefresh = 60,
305};
306
307static const struct panel_desc chunghwa_claa101wa01a = {
308 .modes = &chunghwa_claa101wa01a_mode,
309 .num_modes = 1,
310 .size = {
311 .width = 220,
312 .height = 120,
313 },
314};
315
280921de
TR
316static const struct drm_display_mode chunghwa_claa101wb01_mode = {
317 .clock = 69300,
318 .hdisplay = 1366,
319 .hsync_start = 1366 + 48,
320 .hsync_end = 1366 + 48 + 32,
321 .htotal = 1366 + 48 + 32 + 20,
322 .vdisplay = 768,
323 .vsync_start = 768 + 16,
324 .vsync_end = 768 + 16 + 8,
325 .vtotal = 768 + 16 + 8 + 16,
326 .vrefresh = 60,
327};
328
329static const struct panel_desc chunghwa_claa101wb01 = {
330 .modes = &chunghwa_claa101wb01_mode,
331 .num_modes = 1,
332 .size = {
333 .width = 223,
334 .height = 125,
335 },
336};
337
26ab0065
SA
338static const struct drm_display_mode edt_et057090dhu_mode = {
339 .clock = 25175,
340 .hdisplay = 640,
341 .hsync_start = 640 + 16,
342 .hsync_end = 640 + 16 + 30,
343 .htotal = 640 + 16 + 30 + 114,
344 .vdisplay = 480,
345 .vsync_start = 480 + 10,
346 .vsync_end = 480 + 10 + 3,
347 .vtotal = 480 + 10 + 3 + 32,
348 .vrefresh = 60,
349 .flags = DRM_MODE_FLAG_NVSYNC | DRM_MODE_FLAG_NHSYNC,
350};
351
352static const struct panel_desc edt_et057090dhu = {
353 .modes = &edt_et057090dhu_mode,
354 .num_modes = 1,
355 .size = {
356 .width = 115,
357 .height = 86,
358 },
359};
360
fff5de45
PZ
361static const struct drm_display_mode edt_etm0700g0dh6_mode = {
362 .clock = 33260,
363 .hdisplay = 800,
364 .hsync_start = 800 + 40,
365 .hsync_end = 800 + 40 + 128,
366 .htotal = 800 + 40 + 128 + 88,
367 .vdisplay = 480,
368 .vsync_start = 480 + 10,
369 .vsync_end = 480 + 10 + 2,
370 .vtotal = 480 + 10 + 2 + 33,
371 .vrefresh = 60,
372 .flags = DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC,
373};
374
375static const struct panel_desc edt_etm0700g0dh6 = {
376 .modes = &edt_etm0700g0dh6_mode,
377 .num_modes = 1,
378 .size = {
379 .width = 152,
380 .height = 91,
381 },
382};
383
ec7c5653
TR
384static const struct drm_display_mode lg_lp129qe_mode = {
385 .clock = 285250,
386 .hdisplay = 2560,
387 .hsync_start = 2560 + 48,
388 .hsync_end = 2560 + 48 + 32,
389 .htotal = 2560 + 48 + 32 + 80,
390 .vdisplay = 1700,
391 .vsync_start = 1700 + 3,
392 .vsync_end = 1700 + 3 + 10,
393 .vtotal = 1700 + 3 + 10 + 36,
394 .vrefresh = 60,
395};
396
397static const struct panel_desc lg_lp129qe = {
398 .modes = &lg_lp129qe_mode,
399 .num_modes = 1,
400 .size = {
401 .width = 272,
402 .height = 181,
403 },
404};
405
6d54e3d2
MD
406static const struct drm_display_mode samsung_ltn101nt05_mode = {
407 .clock = 54030,
408 .hdisplay = 1024,
409 .hsync_start = 1024 + 24,
410 .hsync_end = 1024 + 24 + 136,
411 .htotal = 1024 + 24 + 136 + 160,
412 .vdisplay = 600,
413 .vsync_start = 600 + 3,
414 .vsync_end = 600 + 3 + 6,
415 .vtotal = 600 + 3 + 6 + 61,
416 .vrefresh = 60,
417};
418
419static const struct panel_desc samsung_ltn101nt05 = {
420 .modes = &samsung_ltn101nt05_mode,
421 .num_modes = 1,
422 .size = {
423 .width = 1024,
424 .height = 600,
425 },
426};
427
280921de
TR
428static const struct of_device_id platform_of_match[] = {
429 {
430 .compatible = "auo,b101aw03",
431 .data = &auo_b101aw03,
4c930757
SW
432 }, {
433 .compatible = "chunghwa,claa101wa01a",
434 .data = &chunghwa_claa101wa01a
280921de
TR
435 }, {
436 .compatible = "chunghwa,claa101wb01",
437 .data = &chunghwa_claa101wb01
26ab0065
SA
438 }, {
439 .compatible = "edt,et057090dhu",
440 .data = &edt_et057090dhu,
fff5de45
PZ
441 }, {
442 .compatible = "edt,et070080dh6",
443 .data = &edt_etm0700g0dh6,
444 }, {
445 .compatible = "edt,etm0700g0dh6",
446 .data = &edt_etm0700g0dh6,
ec7c5653
TR
447 }, {
448 .compatible = "lg,lp129qe",
449 .data = &lg_lp129qe,
6d54e3d2
MD
450 }, {
451 .compatible = "samsung,ltn101nt05",
452 .data = &samsung_ltn101nt05,
280921de
TR
453 }, {
454 .compatible = "simple-panel",
455 }, {
456 /* sentinel */
457 }
458};
459MODULE_DEVICE_TABLE(of, platform_of_match);
460
461static int panel_simple_platform_probe(struct platform_device *pdev)
462{
463 const struct of_device_id *id;
464
465 id = of_match_node(platform_of_match, pdev->dev.of_node);
466 if (!id)
467 return -ENODEV;
468
469 return panel_simple_probe(&pdev->dev, id->data);
470}
471
472static int panel_simple_platform_remove(struct platform_device *pdev)
473{
474 return panel_simple_remove(&pdev->dev);
475}
476
d02fd93e
TR
477static void panel_simple_platform_shutdown(struct platform_device *pdev)
478{
479 panel_simple_shutdown(&pdev->dev);
480}
481
280921de
TR
482static struct platform_driver panel_simple_platform_driver = {
483 .driver = {
484 .name = "panel-simple",
485 .owner = THIS_MODULE,
486 .of_match_table = platform_of_match,
487 },
488 .probe = panel_simple_platform_probe,
489 .remove = panel_simple_platform_remove,
d02fd93e 490 .shutdown = panel_simple_platform_shutdown,
280921de
TR
491};
492
210fcd9d
TR
493struct panel_desc_dsi {
494 struct panel_desc desc;
495
462658b8 496 unsigned long flags;
210fcd9d
TR
497 enum mipi_dsi_pixel_format format;
498 unsigned int lanes;
499};
500
712ac1ba
AC
501static const struct drm_display_mode lg_ld070wx3_sl01_mode = {
502 .clock = 71000,
503 .hdisplay = 800,
504 .hsync_start = 800 + 32,
505 .hsync_end = 800 + 32 + 1,
506 .htotal = 800 + 32 + 1 + 57,
507 .vdisplay = 1280,
508 .vsync_start = 1280 + 28,
509 .vsync_end = 1280 + 28 + 1,
510 .vtotal = 1280 + 28 + 1 + 14,
511 .vrefresh = 60,
512};
513
514static const struct panel_desc_dsi lg_ld070wx3_sl01 = {
515 .desc = {
516 .modes = &lg_ld070wx3_sl01_mode,
517 .num_modes = 1,
518 .size = {
519 .width = 94,
520 .height = 151,
521 },
522 },
523 .flags = MIPI_DSI_MODE_VIDEO,
524 .format = MIPI_DSI_FMT_RGB888,
525 .lanes = 4,
526};
527
499ce85a
AC
528static const struct drm_display_mode lg_lh500wx1_sd03_mode = {
529 .clock = 67000,
530 .hdisplay = 720,
531 .hsync_start = 720 + 12,
532 .hsync_end = 720 + 12 + 4,
533 .htotal = 720 + 12 + 4 + 112,
534 .vdisplay = 1280,
535 .vsync_start = 1280 + 8,
536 .vsync_end = 1280 + 8 + 4,
537 .vtotal = 1280 + 8 + 4 + 12,
538 .vrefresh = 60,
539};
540
541static const struct panel_desc_dsi lg_lh500wx1_sd03 = {
542 .desc = {
543 .modes = &lg_lh500wx1_sd03_mode,
544 .num_modes = 1,
545 .size = {
546 .width = 62,
547 .height = 110,
548 },
549 },
550 .flags = MIPI_DSI_MODE_VIDEO,
551 .format = MIPI_DSI_FMT_RGB888,
552 .lanes = 4,
553};
554
280921de
TR
555static const struct drm_display_mode panasonic_vvx10f004b00_mode = {
556 .clock = 157200,
557 .hdisplay = 1920,
558 .hsync_start = 1920 + 154,
559 .hsync_end = 1920 + 154 + 16,
560 .htotal = 1920 + 154 + 16 + 32,
561 .vdisplay = 1200,
562 .vsync_start = 1200 + 17,
563 .vsync_end = 1200 + 17 + 2,
564 .vtotal = 1200 + 17 + 2 + 16,
565 .vrefresh = 60,
566};
567
210fcd9d
TR
568static const struct panel_desc_dsi panasonic_vvx10f004b00 = {
569 .desc = {
570 .modes = &panasonic_vvx10f004b00_mode,
571 .num_modes = 1,
572 .size = {
573 .width = 217,
574 .height = 136,
575 },
280921de 576 },
462658b8 577 .flags = MIPI_DSI_MODE_VIDEO | MIPI_DSI_MODE_VIDEO_SYNC_PULSE,
210fcd9d
TR
578 .format = MIPI_DSI_FMT_RGB888,
579 .lanes = 4,
580};
581
582static const struct of_device_id dsi_of_match[] = {
583 {
712ac1ba
AC
584 .compatible = "lg,ld070wx3-sl01",
585 .data = &lg_ld070wx3_sl01
586 }, {
499ce85a
AC
587 .compatible = "lg,lh500wx1-sd03",
588 .data = &lg_lh500wx1_sd03
589 }, {
210fcd9d
TR
590 .compatible = "panasonic,vvx10f004b00",
591 .data = &panasonic_vvx10f004b00
592 }, {
593 /* sentinel */
594 }
595};
596MODULE_DEVICE_TABLE(of, dsi_of_match);
597
598static int panel_simple_dsi_probe(struct mipi_dsi_device *dsi)
599{
600 const struct panel_desc_dsi *desc;
601 const struct of_device_id *id;
602 int err;
603
604 id = of_match_node(dsi_of_match, dsi->dev.of_node);
605 if (!id)
606 return -ENODEV;
607
608 desc = id->data;
609
610 err = panel_simple_probe(&dsi->dev, &desc->desc);
611 if (err < 0)
612 return err;
613
462658b8 614 dsi->mode_flags = desc->flags;
210fcd9d
TR
615 dsi->format = desc->format;
616 dsi->lanes = desc->lanes;
617
618 return mipi_dsi_attach(dsi);
619}
620
621static int panel_simple_dsi_remove(struct mipi_dsi_device *dsi)
622{
623 int err;
624
625 err = mipi_dsi_detach(dsi);
626 if (err < 0)
627 dev_err(&dsi->dev, "failed to detach from DSI host: %d\n", err);
628
629 return panel_simple_remove(&dsi->dev);
630}
631
d02fd93e
TR
632static void panel_simple_dsi_shutdown(struct mipi_dsi_device *dsi)
633{
634 panel_simple_shutdown(&dsi->dev);
635}
636
210fcd9d
TR
637static struct mipi_dsi_driver panel_simple_dsi_driver = {
638 .driver = {
639 .name = "panel-simple-dsi",
640 .owner = THIS_MODULE,
641 .of_match_table = dsi_of_match,
642 },
643 .probe = panel_simple_dsi_probe,
644 .remove = panel_simple_dsi_remove,
d02fd93e 645 .shutdown = panel_simple_dsi_shutdown,
280921de
TR
646};
647
648static int __init panel_simple_init(void)
649{
210fcd9d
TR
650 int err;
651
652 err = platform_driver_register(&panel_simple_platform_driver);
653 if (err < 0)
654 return err;
655
656 if (IS_ENABLED(CONFIG_DRM_MIPI_DSI)) {
657 err = mipi_dsi_driver_register(&panel_simple_dsi_driver);
658 if (err < 0)
659 return err;
660 }
661
662 return 0;
280921de
TR
663}
664module_init(panel_simple_init);
665
666static void __exit panel_simple_exit(void)
667{
210fcd9d
TR
668 if (IS_ENABLED(CONFIG_DRM_MIPI_DSI))
669 mipi_dsi_driver_unregister(&panel_simple_dsi_driver);
670
280921de
TR
671 platform_driver_unregister(&panel_simple_platform_driver);
672}
673module_exit(panel_simple_exit);
674
675MODULE_AUTHOR("Thierry Reding <treding@nvidia.com>");
676MODULE_DESCRIPTION("DRM Driver for Simple Panels");
677MODULE_LICENSE("GPL and additional rights");
This page took 0.083127 seconds and 5 git commands to generate.