2 * Copyright (C) 2013, NVIDIA Corporation. All rights reserved.
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:
11 * The above copyright notice and this permission notice (including the
12 * next paragraph) shall be included in all copies or substantial portions
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.
24 #include <linux/backlight.h>
25 #include <linux/gpio/consumer.h>
26 #include <linux/module.h>
27 #include <linux/of_platform.h>
28 #include <linux/platform_device.h>
29 #include <linux/regulator/consumer.h>
32 #include <drm/drm_crtc.h>
33 #include <drm/drm_mipi_dsi.h>
34 #include <drm/drm_panel.h>
36 #include <video/display_timing.h>
37 #include <video/videomode.h>
40 const struct drm_display_mode
*modes
;
41 unsigned int num_modes
;
42 const struct display_timing
*timings
;
43 unsigned int num_timings
;
53 * @prepare: the time (in milliseconds) that it takes for the panel to
54 * become ready and start receiving video data
55 * @enable: the time (in milliseconds) that it takes for the panel to
56 * display the first valid frame after starting to receive
58 * @disable: the time (in milliseconds) that it takes for the panel to
59 * turn the display off (no content is visible)
60 * @unprepare: the time (in milliseconds) that it takes for the panel
61 * to power itself down completely
67 unsigned int unprepare
;
74 struct drm_panel base
;
78 const struct panel_desc
*desc
;
80 struct backlight_device
*backlight
;
81 struct regulator
*supply
;
82 struct i2c_adapter
*ddc
;
84 struct gpio_desc
*enable_gpio
;
87 static inline struct panel_simple
*to_panel_simple(struct drm_panel
*panel
)
89 return container_of(panel
, struct panel_simple
, base
);
92 static int panel_simple_get_fixed_modes(struct panel_simple
*panel
)
94 struct drm_connector
*connector
= panel
->base
.connector
;
95 struct drm_device
*drm
= panel
->base
.drm
;
96 struct drm_display_mode
*mode
;
97 unsigned int i
, num
= 0;
102 for (i
= 0; i
< panel
->desc
->num_timings
; i
++) {
103 const struct display_timing
*dt
= &panel
->desc
->timings
[i
];
106 videomode_from_timing(dt
, &vm
);
107 mode
= drm_mode_create(drm
);
109 dev_err(drm
->dev
, "failed to add mode %ux%u\n",
110 dt
->hactive
.typ
, dt
->vactive
.typ
);
114 drm_display_mode_from_videomode(&vm
, mode
);
115 drm_mode_set_name(mode
);
117 drm_mode_probed_add(connector
, mode
);
121 for (i
= 0; i
< panel
->desc
->num_modes
; i
++) {
122 const struct drm_display_mode
*m
= &panel
->desc
->modes
[i
];
124 mode
= drm_mode_duplicate(drm
, m
);
126 dev_err(drm
->dev
, "failed to add mode %ux%u@%u\n",
127 m
->hdisplay
, m
->vdisplay
, m
->vrefresh
);
131 drm_mode_set_name(mode
);
133 drm_mode_probed_add(connector
, mode
);
137 connector
->display_info
.bpc
= panel
->desc
->bpc
;
138 connector
->display_info
.width_mm
= panel
->desc
->size
.width
;
139 connector
->display_info
.height_mm
= panel
->desc
->size
.height
;
140 if (panel
->desc
->bus_format
)
141 drm_display_info_set_bus_formats(&connector
->display_info
,
142 &panel
->desc
->bus_format
, 1);
147 static int panel_simple_disable(struct drm_panel
*panel
)
149 struct panel_simple
*p
= to_panel_simple(panel
);
155 p
->backlight
->props
.power
= FB_BLANK_POWERDOWN
;
156 backlight_update_status(p
->backlight
);
159 if (p
->desc
->delay
.disable
)
160 msleep(p
->desc
->delay
.disable
);
167 static int panel_simple_unprepare(struct drm_panel
*panel
)
169 struct panel_simple
*p
= to_panel_simple(panel
);
175 gpiod_set_value_cansleep(p
->enable_gpio
, 0);
177 regulator_disable(p
->supply
);
179 if (p
->desc
->delay
.unprepare
)
180 msleep(p
->desc
->delay
.unprepare
);
187 static int panel_simple_prepare(struct drm_panel
*panel
)
189 struct panel_simple
*p
= to_panel_simple(panel
);
195 err
= regulator_enable(p
->supply
);
197 dev_err(panel
->dev
, "failed to enable supply: %d\n", err
);
202 gpiod_set_value_cansleep(p
->enable_gpio
, 1);
204 if (p
->desc
->delay
.prepare
)
205 msleep(p
->desc
->delay
.prepare
);
212 static int panel_simple_enable(struct drm_panel
*panel
)
214 struct panel_simple
*p
= to_panel_simple(panel
);
219 if (p
->desc
->delay
.enable
)
220 msleep(p
->desc
->delay
.enable
);
223 p
->backlight
->props
.power
= FB_BLANK_UNBLANK
;
224 backlight_update_status(p
->backlight
);
232 static int panel_simple_get_modes(struct drm_panel
*panel
)
234 struct panel_simple
*p
= to_panel_simple(panel
);
237 /* probe EDID if a DDC bus is available */
239 struct edid
*edid
= drm_get_edid(panel
->connector
, p
->ddc
);
240 drm_mode_connector_update_edid_property(panel
->connector
, edid
);
242 num
+= drm_add_edid_modes(panel
->connector
, edid
);
247 /* add hard-coded panel modes */
248 num
+= panel_simple_get_fixed_modes(p
);
253 static int panel_simple_get_timings(struct drm_panel
*panel
,
254 unsigned int num_timings
,
255 struct display_timing
*timings
)
257 struct panel_simple
*p
= to_panel_simple(panel
);
260 if (p
->desc
->num_timings
< num_timings
)
261 num_timings
= p
->desc
->num_timings
;
264 for (i
= 0; i
< num_timings
; i
++)
265 timings
[i
] = p
->desc
->timings
[i
];
267 return p
->desc
->num_timings
;
270 static const struct drm_panel_funcs panel_simple_funcs
= {
271 .disable
= panel_simple_disable
,
272 .unprepare
= panel_simple_unprepare
,
273 .prepare
= panel_simple_prepare
,
274 .enable
= panel_simple_enable
,
275 .get_modes
= panel_simple_get_modes
,
276 .get_timings
= panel_simple_get_timings
,
279 static int panel_simple_probe(struct device
*dev
, const struct panel_desc
*desc
)
281 struct device_node
*backlight
, *ddc
;
282 struct panel_simple
*panel
;
285 panel
= devm_kzalloc(dev
, sizeof(*panel
), GFP_KERNEL
);
289 panel
->enabled
= false;
290 panel
->prepared
= false;
293 panel
->supply
= devm_regulator_get(dev
, "power");
294 if (IS_ERR(panel
->supply
))
295 return PTR_ERR(panel
->supply
);
297 panel
->enable_gpio
= devm_gpiod_get_optional(dev
, "enable",
299 if (IS_ERR(panel
->enable_gpio
)) {
300 err
= PTR_ERR(panel
->enable_gpio
);
301 dev_err(dev
, "failed to request GPIO: %d\n", err
);
305 backlight
= of_parse_phandle(dev
->of_node
, "backlight", 0);
307 panel
->backlight
= of_find_backlight_by_node(backlight
);
308 of_node_put(backlight
);
310 if (!panel
->backlight
)
311 return -EPROBE_DEFER
;
314 ddc
= of_parse_phandle(dev
->of_node
, "ddc-i2c-bus", 0);
316 panel
->ddc
= of_find_i2c_adapter_by_node(ddc
);
325 drm_panel_init(&panel
->base
);
326 panel
->base
.dev
= dev
;
327 panel
->base
.funcs
= &panel_simple_funcs
;
329 err
= drm_panel_add(&panel
->base
);
333 dev_set_drvdata(dev
, panel
);
339 put_device(&panel
->ddc
->dev
);
341 if (panel
->backlight
)
342 put_device(&panel
->backlight
->dev
);
347 static int panel_simple_remove(struct device
*dev
)
349 struct panel_simple
*panel
= dev_get_drvdata(dev
);
351 drm_panel_detach(&panel
->base
);
352 drm_panel_remove(&panel
->base
);
354 panel_simple_disable(&panel
->base
);
357 put_device(&panel
->ddc
->dev
);
359 if (panel
->backlight
)
360 put_device(&panel
->backlight
->dev
);
365 static void panel_simple_shutdown(struct device
*dev
)
367 struct panel_simple
*panel
= dev_get_drvdata(dev
);
369 panel_simple_disable(&panel
->base
);
372 static const struct drm_display_mode ampire_am800480r3tmqwa1h_mode
= {
375 .hsync_start
= 800 + 0,
376 .hsync_end
= 800 + 0 + 255,
377 .htotal
= 800 + 0 + 255 + 0,
379 .vsync_start
= 480 + 2,
380 .vsync_end
= 480 + 2 + 45,
381 .vtotal
= 480 + 2 + 45 + 0,
383 .flags
= DRM_MODE_FLAG_PHSYNC
| DRM_MODE_FLAG_PVSYNC
,
386 static const struct panel_desc ampire_am800480r3tmqwa1h
= {
387 .modes
= &ire_am800480r3tmqwa1h_mode
,
394 .bus_format
= MEDIA_BUS_FMT_RGB666_1X18
,
397 static const struct drm_display_mode auo_b101aw03_mode
= {
400 .hsync_start
= 1024 + 156,
401 .hsync_end
= 1024 + 156 + 8,
402 .htotal
= 1024 + 156 + 8 + 156,
404 .vsync_start
= 600 + 16,
405 .vsync_end
= 600 + 16 + 6,
406 .vtotal
= 600 + 16 + 6 + 16,
410 static const struct panel_desc auo_b101aw03
= {
411 .modes
= &auo_b101aw03_mode
,
420 static const struct drm_display_mode auo_b101ean01_mode
= {
423 .hsync_start
= 1280 + 119,
424 .hsync_end
= 1280 + 119 + 32,
425 .htotal
= 1280 + 119 + 32 + 21,
427 .vsync_start
= 800 + 4,
428 .vsync_end
= 800 + 4 + 20,
429 .vtotal
= 800 + 4 + 20 + 8,
433 static const struct panel_desc auo_b101ean01
= {
434 .modes
= &auo_b101ean01_mode
,
443 static const struct drm_display_mode auo_b101xtn01_mode
= {
446 .hsync_start
= 1366 + 20,
447 .hsync_end
= 1366 + 20 + 70,
448 .htotal
= 1366 + 20 + 70,
450 .vsync_start
= 768 + 14,
451 .vsync_end
= 768 + 14 + 42,
452 .vtotal
= 768 + 14 + 42,
454 .flags
= DRM_MODE_FLAG_NVSYNC
| DRM_MODE_FLAG_NHSYNC
,
457 static const struct panel_desc auo_b101xtn01
= {
458 .modes
= &auo_b101xtn01_mode
,
467 static const struct drm_display_mode auo_b116xw03_mode
= {
470 .hsync_start
= 1366 + 40,
471 .hsync_end
= 1366 + 40 + 40,
472 .htotal
= 1366 + 40 + 40 + 32,
474 .vsync_start
= 768 + 10,
475 .vsync_end
= 768 + 10 + 12,
476 .vtotal
= 768 + 10 + 12 + 6,
480 static const struct panel_desc auo_b116xw03
= {
481 .modes
= &auo_b116xw03_mode
,
490 static const struct drm_display_mode auo_b133xtn01_mode
= {
493 .hsync_start
= 1366 + 48,
494 .hsync_end
= 1366 + 48 + 32,
495 .htotal
= 1366 + 48 + 32 + 20,
497 .vsync_start
= 768 + 3,
498 .vsync_end
= 768 + 3 + 6,
499 .vtotal
= 768 + 3 + 6 + 13,
503 static const struct panel_desc auo_b133xtn01
= {
504 .modes
= &auo_b133xtn01_mode
,
513 static const struct drm_display_mode auo_b133htn01_mode
= {
516 .hsync_start
= 1920 + 172,
517 .hsync_end
= 1920 + 172 + 80,
518 .htotal
= 1920 + 172 + 80 + 60,
520 .vsync_start
= 1080 + 25,
521 .vsync_end
= 1080 + 25 + 10,
522 .vtotal
= 1080 + 25 + 10 + 10,
526 static const struct panel_desc auo_b133htn01
= {
527 .modes
= &auo_b133htn01_mode
,
541 static const struct drm_display_mode avic_tm070ddh03_mode
= {
544 .hsync_start
= 1024 + 160,
545 .hsync_end
= 1024 + 160 + 4,
546 .htotal
= 1024 + 160 + 4 + 156,
548 .vsync_start
= 600 + 17,
549 .vsync_end
= 600 + 17 + 1,
550 .vtotal
= 600 + 17 + 1 + 17,
554 static const struct panel_desc avic_tm070ddh03
= {
555 .modes
= &avic_tm070ddh03_mode
,
569 static const struct drm_display_mode chunghwa_claa101wa01a_mode
= {
572 .hsync_start
= 1366 + 58,
573 .hsync_end
= 1366 + 58 + 58,
574 .htotal
= 1366 + 58 + 58 + 58,
576 .vsync_start
= 768 + 4,
577 .vsync_end
= 768 + 4 + 4,
578 .vtotal
= 768 + 4 + 4 + 4,
582 static const struct panel_desc chunghwa_claa101wa01a
= {
583 .modes
= &chunghwa_claa101wa01a_mode
,
592 static const struct drm_display_mode chunghwa_claa101wb01_mode
= {
595 .hsync_start
= 1366 + 48,
596 .hsync_end
= 1366 + 48 + 32,
597 .htotal
= 1366 + 48 + 32 + 20,
599 .vsync_start
= 768 + 16,
600 .vsync_end
= 768 + 16 + 8,
601 .vtotal
= 768 + 16 + 8 + 16,
605 static const struct panel_desc chunghwa_claa101wb01
= {
606 .modes
= &chunghwa_claa101wb01_mode
,
615 static const struct drm_display_mode edt_et057090dhu_mode
= {
618 .hsync_start
= 640 + 16,
619 .hsync_end
= 640 + 16 + 30,
620 .htotal
= 640 + 16 + 30 + 114,
622 .vsync_start
= 480 + 10,
623 .vsync_end
= 480 + 10 + 3,
624 .vtotal
= 480 + 10 + 3 + 32,
626 .flags
= DRM_MODE_FLAG_NVSYNC
| DRM_MODE_FLAG_NHSYNC
,
629 static const struct panel_desc edt_et057090dhu
= {
630 .modes
= &edt_et057090dhu_mode
,
639 static const struct drm_display_mode edt_etm0700g0dh6_mode
= {
642 .hsync_start
= 800 + 40,
643 .hsync_end
= 800 + 40 + 128,
644 .htotal
= 800 + 40 + 128 + 88,
646 .vsync_start
= 480 + 10,
647 .vsync_end
= 480 + 10 + 2,
648 .vtotal
= 480 + 10 + 2 + 33,
650 .flags
= DRM_MODE_FLAG_NHSYNC
| DRM_MODE_FLAG_NVSYNC
,
653 static const struct panel_desc edt_etm0700g0dh6
= {
654 .modes
= &edt_etm0700g0dh6_mode
,
663 static const struct drm_display_mode foxlink_fl500wvr00_a0t_mode
= {
666 .hsync_start
= 800 + 168,
667 .hsync_end
= 800 + 168 + 64,
668 .htotal
= 800 + 168 + 64 + 88,
670 .vsync_start
= 480 + 37,
671 .vsync_end
= 480 + 37 + 2,
672 .vtotal
= 480 + 37 + 2 + 8,
676 static const struct panel_desc foxlink_fl500wvr00_a0t
= {
677 .modes
= &foxlink_fl500wvr00_a0t_mode
,
684 .bus_format
= MEDIA_BUS_FMT_RGB888_1X24
,
687 static const struct drm_display_mode giantplus_gpg482739qs5_mode
= {
690 .hsync_start
= 480 + 5,
691 .hsync_end
= 480 + 5 + 1,
692 .htotal
= 480 + 5 + 1 + 40,
694 .vsync_start
= 272 + 8,
695 .vsync_end
= 272 + 8 + 1,
696 .vtotal
= 272 + 8 + 1 + 8,
700 static const struct panel_desc giantplus_gpg482739qs5
= {
701 .modes
= &giantplus_gpg482739qs5_mode
,
708 .bus_format
= MEDIA_BUS_FMT_RGB888_1X24
,
711 static const struct display_timing hannstar_hsd070pww1_timing
= {
712 .pixelclock
= { 64300000, 71100000, 82000000 },
713 .hactive
= { 1280, 1280, 1280 },
714 .hfront_porch
= { 1, 1, 10 },
715 .hback_porch
= { 1, 1, 10 },
717 * According to the data sheet, the minimum horizontal blanking interval
718 * is 54 clocks (1 + 52 + 1), but tests with a Nitrogen6X have shown the
719 * minimum working horizontal blanking interval to be 60 clocks.
721 .hsync_len
= { 58, 158, 661 },
722 .vactive
= { 800, 800, 800 },
723 .vfront_porch
= { 1, 1, 10 },
724 .vback_porch
= { 1, 1, 10 },
725 .vsync_len
= { 1, 21, 203 },
726 .flags
= DISPLAY_FLAGS_DE_HIGH
,
729 static const struct panel_desc hannstar_hsd070pww1
= {
730 .timings
= &hannstar_hsd070pww1_timing
,
737 .bus_format
= MEDIA_BUS_FMT_RGB666_1X7X3_SPWG
,
740 static const struct display_timing hannstar_hsd100pxn1_timing
= {
741 .pixelclock
= { 55000000, 65000000, 75000000 },
742 .hactive
= { 1024, 1024, 1024 },
743 .hfront_porch
= { 40, 40, 40 },
744 .hback_porch
= { 220, 220, 220 },
745 .hsync_len
= { 20, 60, 100 },
746 .vactive
= { 768, 768, 768 },
747 .vfront_porch
= { 7, 7, 7 },
748 .vback_porch
= { 21, 21, 21 },
749 .vsync_len
= { 10, 10, 10 },
750 .flags
= DISPLAY_FLAGS_DE_HIGH
,
753 static const struct panel_desc hannstar_hsd100pxn1
= {
754 .timings
= &hannstar_hsd100pxn1_timing
,
761 .bus_format
= MEDIA_BUS_FMT_RGB666_1X7X3_SPWG
,
764 static const struct drm_display_mode hitachi_tx23d38vm0caa_mode
= {
767 .hsync_start
= 800 + 85,
768 .hsync_end
= 800 + 85 + 86,
769 .htotal
= 800 + 85 + 86 + 85,
771 .vsync_start
= 480 + 16,
772 .vsync_end
= 480 + 16 + 13,
773 .vtotal
= 480 + 16 + 13 + 16,
777 static const struct panel_desc hitachi_tx23d38vm0caa
= {
778 .modes
= &hitachi_tx23d38vm0caa_mode
,
787 static const struct drm_display_mode innolux_at043tn24_mode
= {
790 .hsync_start
= 480 + 2,
791 .hsync_end
= 480 + 2 + 41,
792 .htotal
= 480 + 2 + 41 + 2,
794 .vsync_start
= 272 + 2,
795 .vsync_end
= 272 + 2 + 11,
796 .vtotal
= 272 + 2 + 11 + 2,
798 .flags
= DRM_MODE_FLAG_NHSYNC
| DRM_MODE_FLAG_NVSYNC
,
801 static const struct panel_desc innolux_at043tn24
= {
802 .modes
= &innolux_at043tn24_mode
,
809 .bus_format
= MEDIA_BUS_FMT_RGB888_1X24
,
812 static const struct drm_display_mode innolux_g121i1_l01_mode
= {
815 .hsync_start
= 1280 + 64,
816 .hsync_end
= 1280 + 64 + 32,
817 .htotal
= 1280 + 64 + 32 + 64,
819 .vsync_start
= 800 + 9,
820 .vsync_end
= 800 + 9 + 6,
821 .vtotal
= 800 + 9 + 6 + 9,
825 static const struct panel_desc innolux_g121i1_l01
= {
826 .modes
= &innolux_g121i1_l01_mode
,
835 static const struct drm_display_mode innolux_n116bge_mode
= {
838 .hsync_start
= 1366 + 136,
839 .hsync_end
= 1366 + 136 + 30,
840 .htotal
= 1366 + 136 + 30 + 60,
842 .vsync_start
= 768 + 8,
843 .vsync_end
= 768 + 8 + 12,
844 .vtotal
= 768 + 8 + 12 + 12,
846 .flags
= DRM_MODE_FLAG_NHSYNC
| DRM_MODE_FLAG_NVSYNC
,
849 static const struct panel_desc innolux_n116bge
= {
850 .modes
= &innolux_n116bge_mode
,
859 static const struct drm_display_mode innolux_n156bge_l21_mode
= {
862 .hsync_start
= 1366 + 16,
863 .hsync_end
= 1366 + 16 + 34,
864 .htotal
= 1366 + 16 + 34 + 50,
866 .vsync_start
= 768 + 2,
867 .vsync_end
= 768 + 2 + 6,
868 .vtotal
= 768 + 2 + 6 + 12,
872 static const struct panel_desc innolux_n156bge_l21
= {
873 .modes
= &innolux_n156bge_l21_mode
,
882 static const struct drm_display_mode innolux_zj070na_01p_mode
= {
885 .hsync_start
= 1024 + 128,
886 .hsync_end
= 1024 + 128 + 64,
887 .htotal
= 1024 + 128 + 64 + 128,
889 .vsync_start
= 600 + 16,
890 .vsync_end
= 600 + 16 + 4,
891 .vtotal
= 600 + 16 + 4 + 16,
895 static const struct panel_desc innolux_zj070na_01p
= {
896 .modes
= &innolux_zj070na_01p_mode
,
905 static const struct drm_display_mode lg_lb070wv8_mode
= {
908 .hsync_start
= 800 + 88,
909 .hsync_end
= 800 + 88 + 80,
910 .htotal
= 800 + 88 + 80 + 88,
912 .vsync_start
= 480 + 10,
913 .vsync_end
= 480 + 10 + 25,
914 .vtotal
= 480 + 10 + 25 + 10,
918 static const struct panel_desc lg_lb070wv8
= {
919 .modes
= &lg_lb070wv8_mode
,
926 .bus_format
= MEDIA_BUS_FMT_RGB888_1X7X4_SPWG
,
929 static const struct drm_display_mode lg_lp129qe_mode
= {
932 .hsync_start
= 2560 + 48,
933 .hsync_end
= 2560 + 48 + 32,
934 .htotal
= 2560 + 48 + 32 + 80,
936 .vsync_start
= 1700 + 3,
937 .vsync_end
= 1700 + 3 + 10,
938 .vtotal
= 1700 + 3 + 10 + 36,
942 static const struct panel_desc lg_lp129qe
= {
943 .modes
= &lg_lp129qe_mode
,
952 static const struct drm_display_mode nec_nl4827hc19_05b_mode
= {
955 .hsync_start
= 480 + 2,
956 .hsync_end
= 480 + 2 + 41,
957 .htotal
= 480 + 2 + 41 + 2,
959 .vsync_start
= 272 + 2,
960 .vsync_end
= 272 + 2 + 4,
961 .vtotal
= 272 + 2 + 4 + 2,
965 static const struct panel_desc nec_nl4827hc19_05b
= {
966 .modes
= &nec_nl4827hc19_05b_mode
,
973 .bus_format
= MEDIA_BUS_FMT_RGB888_1X24
976 static const struct display_timing okaya_rs800480t_7x0gp_timing
= {
977 .pixelclock
= { 30000000, 30000000, 40000000 },
978 .hactive
= { 800, 800, 800 },
979 .hfront_porch
= { 40, 40, 40 },
980 .hback_porch
= { 40, 40, 40 },
981 .hsync_len
= { 1, 48, 48 },
982 .vactive
= { 480, 480, 480 },
983 .vfront_porch
= { 13, 13, 13 },
984 .vback_porch
= { 29, 29, 29 },
985 .vsync_len
= { 3, 3, 3 },
986 .flags
= DISPLAY_FLAGS_DE_HIGH
,
989 static const struct panel_desc okaya_rs800480t_7x0gp
= {
990 .timings
= &okaya_rs800480t_7x0gp_timing
,
1003 .bus_format
= MEDIA_BUS_FMT_RGB666_1X18
,
1006 static const struct drm_display_mode ortustech_com43h4m85ulc_mode
= {
1009 .hsync_start
= 480 + 10,
1010 .hsync_end
= 480 + 10 + 10,
1011 .htotal
= 480 + 10 + 10 + 15,
1013 .vsync_start
= 800 + 3,
1014 .vsync_end
= 800 + 3 + 3,
1015 .vtotal
= 800 + 3 + 3 + 3,
1019 static const struct panel_desc ortustech_com43h4m85ulc
= {
1020 .modes
= &ortustech_com43h4m85ulc_mode
,
1027 .bus_format
= MEDIA_BUS_FMT_RGB888_1X24
,
1030 static const struct drm_display_mode samsung_ltn101nt05_mode
= {
1033 .hsync_start
= 1024 + 24,
1034 .hsync_end
= 1024 + 24 + 136,
1035 .htotal
= 1024 + 24 + 136 + 160,
1037 .vsync_start
= 600 + 3,
1038 .vsync_end
= 600 + 3 + 6,
1039 .vtotal
= 600 + 3 + 6 + 61,
1043 static const struct panel_desc samsung_ltn101nt05
= {
1044 .modes
= &samsung_ltn101nt05_mode
,
1053 static const struct drm_display_mode samsung_ltn140at29_301_mode
= {
1056 .hsync_start
= 1366 + 64,
1057 .hsync_end
= 1366 + 64 + 48,
1058 .htotal
= 1366 + 64 + 48 + 128,
1060 .vsync_start
= 768 + 2,
1061 .vsync_end
= 768 + 2 + 5,
1062 .vtotal
= 768 + 2 + 5 + 17,
1066 static const struct panel_desc samsung_ltn140at29_301
= {
1067 .modes
= &samsung_ltn140at29_301_mode
,
1076 static const struct drm_display_mode shelly_sca07010_bfn_lnn_mode
= {
1079 .hsync_start
= 800 + 1,
1080 .hsync_end
= 800 + 1 + 64,
1081 .htotal
= 800 + 1 + 64 + 64,
1083 .vsync_start
= 480 + 1,
1084 .vsync_end
= 480 + 1 + 23,
1085 .vtotal
= 480 + 1 + 23 + 22,
1089 static const struct panel_desc shelly_sca07010_bfn_lnn
= {
1090 .modes
= &shelly_sca07010_bfn_lnn_mode
,
1096 .bus_format
= MEDIA_BUS_FMT_RGB666_1X18
,
1099 static const struct of_device_id platform_of_match
[] = {
1101 .compatible
= "ampire,am800480r3tmqwa1h",
1102 .data
= &ire_am800480r3tmqwa1h
,
1104 .compatible
= "auo,b101aw03",
1105 .data
= &auo_b101aw03
,
1107 .compatible
= "auo,b101ean01",
1108 .data
= &auo_b101ean01
,
1110 .compatible
= "auo,b101xtn01",
1111 .data
= &auo_b101xtn01
,
1113 .compatible
= "auo,b116xw03",
1114 .data
= &auo_b116xw03
,
1116 .compatible
= "auo,b133htn01",
1117 .data
= &auo_b133htn01
,
1119 .compatible
= "auo,b133xtn01",
1120 .data
= &auo_b133xtn01
,
1122 .compatible
= "avic,tm070ddh03",
1123 .data
= &avic_tm070ddh03
,
1125 .compatible
= "chunghwa,claa101wa01a",
1126 .data
= &chunghwa_claa101wa01a
1128 .compatible
= "chunghwa,claa101wb01",
1129 .data
= &chunghwa_claa101wb01
1131 .compatible
= "edt,et057090dhu",
1132 .data
= &edt_et057090dhu
,
1134 .compatible
= "edt,et070080dh6",
1135 .data
= &edt_etm0700g0dh6
,
1137 .compatible
= "edt,etm0700g0dh6",
1138 .data
= &edt_etm0700g0dh6
,
1140 .compatible
= "foxlink,fl500wvr00-a0t",
1141 .data
= &foxlink_fl500wvr00_a0t
,
1143 .compatible
= "giantplus,gpg482739qs5",
1144 .data
= &giantplus_gpg482739qs5
1146 .compatible
= "hannstar,hsd070pww1",
1147 .data
= &hannstar_hsd070pww1
,
1149 .compatible
= "hannstar,hsd100pxn1",
1150 .data
= &hannstar_hsd100pxn1
,
1152 .compatible
= "hit,tx23d38vm0caa",
1153 .data
= &hitachi_tx23d38vm0caa
1155 .compatible
= "innolux,at043tn24",
1156 .data
= &innolux_at043tn24
,
1158 .compatible
="innolux,g121i1-l01",
1159 .data
= &innolux_g121i1_l01
1161 .compatible
= "innolux,n116bge",
1162 .data
= &innolux_n116bge
,
1164 .compatible
= "innolux,n156bge-l21",
1165 .data
= &innolux_n156bge_l21
,
1167 .compatible
= "innolux,zj070na-01p",
1168 .data
= &innolux_zj070na_01p
,
1170 .compatible
= "lg,lb070wv8",
1171 .data
= &lg_lb070wv8
,
1173 .compatible
= "lg,lp129qe",
1174 .data
= &lg_lp129qe
,
1176 .compatible
= "nec,nl4827hc19-05b",
1177 .data
= &nec_nl4827hc19_05b
,
1179 .compatible
= "okaya,rs800480t-7x0gp",
1180 .data
= &okaya_rs800480t_7x0gp
,
1182 .compatible
= "ortustech,com43h4m85ulc",
1183 .data
= &ortustech_com43h4m85ulc
,
1185 .compatible
= "samsung,ltn101nt05",
1186 .data
= &samsung_ltn101nt05
,
1188 .compatible
= "samsung,ltn140at29-301",
1189 .data
= &samsung_ltn140at29_301
,
1191 .compatible
= "shelly,sca07010-bfn-lnn",
1192 .data
= &shelly_sca07010_bfn_lnn
,
1197 MODULE_DEVICE_TABLE(of
, platform_of_match
);
1199 static int panel_simple_platform_probe(struct platform_device
*pdev
)
1201 const struct of_device_id
*id
;
1203 id
= of_match_node(platform_of_match
, pdev
->dev
.of_node
);
1207 return panel_simple_probe(&pdev
->dev
, id
->data
);
1210 static int panel_simple_platform_remove(struct platform_device
*pdev
)
1212 return panel_simple_remove(&pdev
->dev
);
1215 static void panel_simple_platform_shutdown(struct platform_device
*pdev
)
1217 panel_simple_shutdown(&pdev
->dev
);
1220 static struct platform_driver panel_simple_platform_driver
= {
1222 .name
= "panel-simple",
1223 .of_match_table
= platform_of_match
,
1225 .probe
= panel_simple_platform_probe
,
1226 .remove
= panel_simple_platform_remove
,
1227 .shutdown
= panel_simple_platform_shutdown
,
1230 struct panel_desc_dsi
{
1231 struct panel_desc desc
;
1233 unsigned long flags
;
1234 enum mipi_dsi_pixel_format format
;
1238 static const struct drm_display_mode auo_b080uan01_mode
= {
1241 .hsync_start
= 1200 + 62,
1242 .hsync_end
= 1200 + 62 + 4,
1243 .htotal
= 1200 + 62 + 4 + 62,
1245 .vsync_start
= 1920 + 9,
1246 .vsync_end
= 1920 + 9 + 2,
1247 .vtotal
= 1920 + 9 + 2 + 8,
1251 static const struct panel_desc_dsi auo_b080uan01
= {
1253 .modes
= &auo_b080uan01_mode
,
1261 .flags
= MIPI_DSI_MODE_VIDEO
| MIPI_DSI_CLOCK_NON_CONTINUOUS
,
1262 .format
= MIPI_DSI_FMT_RGB888
,
1266 static const struct drm_display_mode lg_ld070wx3_sl01_mode
= {
1269 .hsync_start
= 800 + 32,
1270 .hsync_end
= 800 + 32 + 1,
1271 .htotal
= 800 + 32 + 1 + 57,
1273 .vsync_start
= 1280 + 28,
1274 .vsync_end
= 1280 + 28 + 1,
1275 .vtotal
= 1280 + 28 + 1 + 14,
1279 static const struct panel_desc_dsi lg_ld070wx3_sl01
= {
1281 .modes
= &lg_ld070wx3_sl01_mode
,
1289 .flags
= MIPI_DSI_MODE_VIDEO
| MIPI_DSI_CLOCK_NON_CONTINUOUS
,
1290 .format
= MIPI_DSI_FMT_RGB888
,
1294 static const struct drm_display_mode lg_lh500wx1_sd03_mode
= {
1297 .hsync_start
= 720 + 12,
1298 .hsync_end
= 720 + 12 + 4,
1299 .htotal
= 720 + 12 + 4 + 112,
1301 .vsync_start
= 1280 + 8,
1302 .vsync_end
= 1280 + 8 + 4,
1303 .vtotal
= 1280 + 8 + 4 + 12,
1307 static const struct panel_desc_dsi lg_lh500wx1_sd03
= {
1309 .modes
= &lg_lh500wx1_sd03_mode
,
1317 .flags
= MIPI_DSI_MODE_VIDEO
,
1318 .format
= MIPI_DSI_FMT_RGB888
,
1322 static const struct drm_display_mode panasonic_vvx10f004b00_mode
= {
1325 .hsync_start
= 1920 + 154,
1326 .hsync_end
= 1920 + 154 + 16,
1327 .htotal
= 1920 + 154 + 16 + 32,
1329 .vsync_start
= 1200 + 17,
1330 .vsync_end
= 1200 + 17 + 2,
1331 .vtotal
= 1200 + 17 + 2 + 16,
1335 static const struct panel_desc_dsi panasonic_vvx10f004b00
= {
1337 .modes
= &panasonic_vvx10f004b00_mode
,
1345 .flags
= MIPI_DSI_MODE_VIDEO
| MIPI_DSI_MODE_VIDEO_SYNC_PULSE
|
1346 MIPI_DSI_CLOCK_NON_CONTINUOUS
,
1347 .format
= MIPI_DSI_FMT_RGB888
,
1351 static const struct of_device_id dsi_of_match
[] = {
1353 .compatible
= "auo,b080uan01",
1354 .data
= &auo_b080uan01
1356 .compatible
= "lg,ld070wx3-sl01",
1357 .data
= &lg_ld070wx3_sl01
1359 .compatible
= "lg,lh500wx1-sd03",
1360 .data
= &lg_lh500wx1_sd03
1362 .compatible
= "panasonic,vvx10f004b00",
1363 .data
= &panasonic_vvx10f004b00
1368 MODULE_DEVICE_TABLE(of
, dsi_of_match
);
1370 static int panel_simple_dsi_probe(struct mipi_dsi_device
*dsi
)
1372 const struct panel_desc_dsi
*desc
;
1373 const struct of_device_id
*id
;
1376 id
= of_match_node(dsi_of_match
, dsi
->dev
.of_node
);
1382 err
= panel_simple_probe(&dsi
->dev
, &desc
->desc
);
1386 dsi
->mode_flags
= desc
->flags
;
1387 dsi
->format
= desc
->format
;
1388 dsi
->lanes
= desc
->lanes
;
1390 return mipi_dsi_attach(dsi
);
1393 static int panel_simple_dsi_remove(struct mipi_dsi_device
*dsi
)
1397 err
= mipi_dsi_detach(dsi
);
1399 dev_err(&dsi
->dev
, "failed to detach from DSI host: %d\n", err
);
1401 return panel_simple_remove(&dsi
->dev
);
1404 static void panel_simple_dsi_shutdown(struct mipi_dsi_device
*dsi
)
1406 panel_simple_shutdown(&dsi
->dev
);
1409 static struct mipi_dsi_driver panel_simple_dsi_driver
= {
1411 .name
= "panel-simple-dsi",
1412 .of_match_table
= dsi_of_match
,
1414 .probe
= panel_simple_dsi_probe
,
1415 .remove
= panel_simple_dsi_remove
,
1416 .shutdown
= panel_simple_dsi_shutdown
,
1419 static int __init
panel_simple_init(void)
1423 err
= platform_driver_register(&panel_simple_platform_driver
);
1427 if (IS_ENABLED(CONFIG_DRM_MIPI_DSI
)) {
1428 err
= mipi_dsi_driver_register(&panel_simple_dsi_driver
);
1435 module_init(panel_simple_init
);
1437 static void __exit
panel_simple_exit(void)
1439 if (IS_ENABLED(CONFIG_DRM_MIPI_DSI
))
1440 mipi_dsi_driver_unregister(&panel_simple_dsi_driver
);
1442 platform_driver_unregister(&panel_simple_platform_driver
);
1444 module_exit(panel_simple_exit
);
1446 MODULE_AUTHOR("Thierry Reding <treding@nvidia.com>");
1447 MODULE_DESCRIPTION("DRM Driver for Simple Panels");
1448 MODULE_LICENSE("GPL and additional rights");