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/delay.h>
25 #include <linux/gpio/consumer.h>
26 #include <linux/iopoll.h>
27 #include <linux/module.h>
28 #include <linux/of_platform.h>
29 #include <linux/platform_device.h>
30 #include <linux/regulator/consumer.h>
32 #include <video/display_timing.h>
33 #include <video/of_display_timing.h>
34 #include <video/videomode.h>
36 #include <drm/drm_crtc.h>
37 #include <drm/drm_device.h>
38 #include <drm/drm_mipi_dsi.h>
39 #include <drm/drm_panel.h>
42 * @modes: Pointer to array of fixed modes appropriate for this panel. If
43 * only one mode then this can just be the address of this the mode.
44 * NOTE: cannot be used with "timings" and also if this is specified
45 * then you cannot override the mode in the device tree.
46 * @num_modes: Number of elements in modes array.
47 * @timings: Pointer to array of display timings. NOTE: cannot be used with
48 * "modes" and also these will be used to validate a device tree
49 * override if one is present.
50 * @num_timings: Number of elements in timings array.
51 * @bpc: Bits per color.
52 * @size: Structure containing the physical size of this panel.
53 * @delay: Structure containing various delay values for this panel.
54 * @bus_format: See MEDIA_BUS_FMT_... defines.
55 * @bus_flags: See DRM_BUS_FLAG_... defines.
58 const struct drm_display_mode *modes;
59 unsigned int num_modes;
60 const struct display_timing *timings;
61 unsigned int num_timings;
66 * @width: width (in millimeters) of the panel's active display area
67 * @height: height (in millimeters) of the panel's active display area
75 * @prepare: the time (in milliseconds) that it takes for the panel to
76 * become ready and start receiving video data
77 * @hpd_absent_delay: Add this to the prepare delay if we know Hot
78 * Plug Detect isn't used.
79 * @enable: the time (in milliseconds) that it takes for the panel to
80 * display the first valid frame after starting to receive
82 * @disable: the time (in milliseconds) that it takes for the panel to
83 * turn the display off (no content is visible)
84 * @unprepare: the time (in milliseconds) that it takes for the panel
85 * to power itself down completely
89 unsigned int hpd_absent_delay;
92 unsigned int unprepare;
100 struct panel_simple {
101 struct drm_panel base;
106 const struct panel_desc *desc;
108 struct regulator *supply;
109 struct i2c_adapter *ddc;
111 struct gpio_desc *enable_gpio;
112 struct gpio_desc *hpd_gpio;
114 struct drm_display_mode override_mode;
117 static inline struct panel_simple *to_panel_simple(struct drm_panel *panel)
119 return container_of(panel, struct panel_simple, base);
122 static unsigned int panel_simple_get_timings_modes(struct panel_simple *panel,
123 struct drm_connector *connector)
125 struct drm_display_mode *mode;
126 unsigned int i, num = 0;
128 for (i = 0; i < panel->desc->num_timings; i++) {
129 const struct display_timing *dt = &panel->desc->timings[i];
132 videomode_from_timing(dt, &vm);
133 mode = drm_mode_create(connector->dev);
135 dev_err(panel->base.dev, "failed to add mode %ux%u\n",
136 dt->hactive.typ, dt->vactive.typ);
140 drm_display_mode_from_videomode(&vm, mode);
142 mode->type |= DRM_MODE_TYPE_DRIVER;
144 if (panel->desc->num_timings == 1)
145 mode->type |= DRM_MODE_TYPE_PREFERRED;
147 drm_mode_probed_add(connector, mode);
154 static unsigned int panel_simple_get_display_modes(struct panel_simple *panel,
155 struct drm_connector *connector)
157 struct drm_display_mode *mode;
158 unsigned int i, num = 0;
160 for (i = 0; i < panel->desc->num_modes; i++) {
161 const struct drm_display_mode *m = &panel->desc->modes[i];
163 mode = drm_mode_duplicate(connector->dev, m);
165 dev_err(panel->base.dev, "failed to add mode %ux%u@%u\n",
166 m->hdisplay, m->vdisplay, m->vrefresh);
170 mode->type |= DRM_MODE_TYPE_DRIVER;
172 if (panel->desc->num_modes == 1)
173 mode->type |= DRM_MODE_TYPE_PREFERRED;
175 drm_mode_set_name(mode);
177 drm_mode_probed_add(connector, mode);
184 static int panel_simple_get_non_edid_modes(struct panel_simple *panel,
185 struct drm_connector *connector)
187 struct drm_display_mode *mode;
188 bool has_override = panel->override_mode.type;
189 unsigned int num = 0;
195 mode = drm_mode_duplicate(connector->dev,
196 &panel->override_mode);
198 drm_mode_probed_add(connector, mode);
201 dev_err(panel->base.dev, "failed to add override mode\n");
205 /* Only add timings if override was not there or failed to validate */
206 if (num == 0 && panel->desc->num_timings)
207 num = panel_simple_get_timings_modes(panel, connector);
210 * Only add fixed modes if timings/override added no mode.
212 * We should only ever have either the display timings specified
213 * or a fixed mode. Anything else is rather bogus.
215 WARN_ON(panel->desc->num_timings && panel->desc->num_modes);
217 num = panel_simple_get_display_modes(panel, connector);
219 connector->display_info.bpc = panel->desc->bpc;
220 connector->display_info.width_mm = panel->desc->size.width;
221 connector->display_info.height_mm = panel->desc->size.height;
222 if (panel->desc->bus_format)
223 drm_display_info_set_bus_formats(&connector->display_info,
224 &panel->desc->bus_format, 1);
225 connector->display_info.bus_flags = panel->desc->bus_flags;
230 static int panel_simple_disable(struct drm_panel *panel)
232 struct panel_simple *p = to_panel_simple(panel);
237 if (p->desc->delay.disable)
238 msleep(p->desc->delay.disable);
245 static int panel_simple_unprepare(struct drm_panel *panel)
247 struct panel_simple *p = to_panel_simple(panel);
252 gpiod_set_value_cansleep(p->enable_gpio, 0);
254 regulator_disable(p->supply);
256 if (p->desc->delay.unprepare)
257 msleep(p->desc->delay.unprepare);
264 static int panel_simple_get_hpd_gpio(struct device *dev,
265 struct panel_simple *p, bool from_probe)
269 p->hpd_gpio = devm_gpiod_get_optional(dev, "hpd", GPIOD_IN);
270 if (IS_ERR(p->hpd_gpio)) {
271 err = PTR_ERR(p->hpd_gpio);
274 * If we're called from probe we won't consider '-EPROBE_DEFER'
275 * to be an error--we'll leave the error code in "hpd_gpio".
276 * When we try to use it we'll try again. This allows for
277 * circular dependencies where the component providing the
278 * hpd gpio needs the panel to init before probing.
280 if (err != -EPROBE_DEFER || !from_probe) {
281 dev_err(dev, "failed to get 'hpd' GPIO: %d\n", err);
289 static int panel_simple_prepare(struct drm_panel *panel)
291 struct panel_simple *p = to_panel_simple(panel);
299 err = regulator_enable(p->supply);
301 dev_err(panel->dev, "failed to enable supply: %d\n", err);
305 gpiod_set_value_cansleep(p->enable_gpio, 1);
307 delay = p->desc->delay.prepare;
309 delay += p->desc->delay.hpd_absent_delay;
314 if (IS_ERR(p->hpd_gpio)) {
315 err = panel_simple_get_hpd_gpio(panel->dev, p, false);
320 err = readx_poll_timeout(gpiod_get_value_cansleep, p->hpd_gpio,
321 hpd_asserted, hpd_asserted,
323 if (hpd_asserted < 0)
328 "error waiting for hpd GPIO: %d\n", err);
338 static int panel_simple_enable(struct drm_panel *panel)
340 struct panel_simple *p = to_panel_simple(panel);
345 if (p->desc->delay.enable)
346 msleep(p->desc->delay.enable);
353 static int panel_simple_get_modes(struct drm_panel *panel,
354 struct drm_connector *connector)
356 struct panel_simple *p = to_panel_simple(panel);
359 /* probe EDID if a DDC bus is available */
361 struct edid *edid = drm_get_edid(connector, p->ddc);
363 drm_connector_update_edid_property(connector, edid);
365 num += drm_add_edid_modes(connector, edid);
370 /* add hard-coded panel modes */
371 num += panel_simple_get_non_edid_modes(p, connector);
376 static int panel_simple_get_timings(struct drm_panel *panel,
377 unsigned int num_timings,
378 struct display_timing *timings)
380 struct panel_simple *p = to_panel_simple(panel);
383 if (p->desc->num_timings < num_timings)
384 num_timings = p->desc->num_timings;
387 for (i = 0; i < num_timings; i++)
388 timings[i] = p->desc->timings[i];
390 return p->desc->num_timings;
393 static const struct drm_panel_funcs panel_simple_funcs = {
394 .disable = panel_simple_disable,
395 .unprepare = panel_simple_unprepare,
396 .prepare = panel_simple_prepare,
397 .enable = panel_simple_enable,
398 .get_modes = panel_simple_get_modes,
399 .get_timings = panel_simple_get_timings,
402 static struct panel_desc panel_dpi;
404 static int panel_dpi_probe(struct device *dev,
405 struct panel_simple *panel)
407 struct display_timing *timing;
408 const struct device_node *np;
409 struct panel_desc *desc;
410 unsigned int bus_flags;
415 desc = devm_kzalloc(dev, sizeof(*desc), GFP_KERNEL);
419 timing = devm_kzalloc(dev, sizeof(*timing), GFP_KERNEL);
423 ret = of_get_display_timing(np, "panel-timing", timing);
425 dev_err(dev, "%pOF: no panel-timing node found for \"panel-dpi\" binding\n",
430 desc->timings = timing;
431 desc->num_timings = 1;
433 of_property_read_u32(np, "width-mm", &desc->size.width);
434 of_property_read_u32(np, "height-mm", &desc->size.height);
436 /* Extract bus_flags from display_timing */
438 vm.flags = timing->flags;
439 drm_bus_flags_from_videomode(&vm, &bus_flags);
440 desc->bus_flags = bus_flags;
442 /* We do not know the connector for the DT node, so guess it */
443 desc->connector_type = DRM_MODE_CONNECTOR_DPI;
450 #define PANEL_SIMPLE_BOUNDS_CHECK(to_check, bounds, field) \
451 (to_check->field.typ >= bounds->field.min && \
452 to_check->field.typ <= bounds->field.max)
453 static void panel_simple_parse_panel_timing_node(struct device *dev,
454 struct panel_simple *panel,
455 const struct display_timing *ot)
457 const struct panel_desc *desc = panel->desc;
461 if (WARN_ON(desc->num_modes)) {
462 dev_err(dev, "Reject override mode: panel has a fixed mode\n");
465 if (WARN_ON(!desc->num_timings)) {
466 dev_err(dev, "Reject override mode: no timings specified\n");
470 for (i = 0; i < panel->desc->num_timings; i++) {
471 const struct display_timing *dt = &panel->desc->timings[i];
473 if (!PANEL_SIMPLE_BOUNDS_CHECK(ot, dt, hactive) ||
474 !PANEL_SIMPLE_BOUNDS_CHECK(ot, dt, hfront_porch) ||
475 !PANEL_SIMPLE_BOUNDS_CHECK(ot, dt, hback_porch) ||
476 !PANEL_SIMPLE_BOUNDS_CHECK(ot, dt, hsync_len) ||
477 !PANEL_SIMPLE_BOUNDS_CHECK(ot, dt, vactive) ||
478 !PANEL_SIMPLE_BOUNDS_CHECK(ot, dt, vfront_porch) ||
479 !PANEL_SIMPLE_BOUNDS_CHECK(ot, dt, vback_porch) ||
480 !PANEL_SIMPLE_BOUNDS_CHECK(ot, dt, vsync_len))
483 if (ot->flags != dt->flags)
486 videomode_from_timing(ot, &vm);
487 drm_display_mode_from_videomode(&vm, &panel->override_mode);
488 panel->override_mode.type |= DRM_MODE_TYPE_DRIVER |
489 DRM_MODE_TYPE_PREFERRED;
493 if (WARN_ON(!panel->override_mode.type))
494 dev_err(dev, "Reject override mode: No display_timing found\n");
497 static int panel_simple_probe(struct device *dev, const struct panel_desc *desc)
499 struct panel_simple *panel;
500 struct display_timing dt;
501 struct device_node *ddc;
504 panel = devm_kzalloc(dev, sizeof(*panel), GFP_KERNEL);
508 panel->enabled = false;
509 panel->prepared = false;
512 panel->no_hpd = of_property_read_bool(dev->of_node, "no-hpd");
513 if (!panel->no_hpd) {
514 err = panel_simple_get_hpd_gpio(dev, panel, true);
519 panel->supply = devm_regulator_get(dev, "power");
520 if (IS_ERR(panel->supply))
521 return PTR_ERR(panel->supply);
523 panel->enable_gpio = devm_gpiod_get_optional(dev, "enable",
525 if (IS_ERR(panel->enable_gpio)) {
526 err = PTR_ERR(panel->enable_gpio);
527 if (err != -EPROBE_DEFER)
528 dev_err(dev, "failed to request GPIO: %d\n", err);
532 ddc = of_parse_phandle(dev->of_node, "ddc-i2c-bus", 0);
534 panel->ddc = of_find_i2c_adapter_by_node(ddc);
538 return -EPROBE_DEFER;
541 if (desc == &panel_dpi) {
542 /* Handle the generic panel-dpi binding */
543 err = panel_dpi_probe(dev, panel);
547 if (!of_get_display_timing(dev->of_node, "panel-timing", &dt))
548 panel_simple_parse_panel_timing_node(dev, panel, &dt);
551 drm_panel_init(&panel->base, dev, &panel_simple_funcs,
552 desc->connector_type);
554 err = drm_panel_of_backlight(&panel->base);
558 err = drm_panel_add(&panel->base);
562 dev_set_drvdata(dev, panel);
568 put_device(&panel->ddc->dev);
573 static int panel_simple_remove(struct device *dev)
575 struct panel_simple *panel = dev_get_drvdata(dev);
577 drm_panel_remove(&panel->base);
578 drm_panel_disable(&panel->base);
579 drm_panel_unprepare(&panel->base);
582 put_device(&panel->ddc->dev);
587 static void panel_simple_shutdown(struct device *dev)
589 struct panel_simple *panel = dev_get_drvdata(dev);
591 drm_panel_disable(&panel->base);
592 drm_panel_unprepare(&panel->base);
595 static const struct drm_display_mode ampire_am_480272h3tmqw_t01h_mode = {
598 .hsync_start = 480 + 2,
599 .hsync_end = 480 + 2 + 41,
600 .htotal = 480 + 2 + 41 + 2,
602 .vsync_start = 272 + 2,
603 .vsync_end = 272 + 2 + 10,
604 .vtotal = 272 + 2 + 10 + 2,
606 .flags = DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC,
609 static const struct panel_desc ampire_am_480272h3tmqw_t01h = {
610 .modes = &ire_am_480272h3tmqw_t01h_mode,
617 .bus_format = MEDIA_BUS_FMT_RGB888_1X24,
620 static const struct drm_display_mode ampire_am800480r3tmqwa1h_mode = {
623 .hsync_start = 800 + 0,
624 .hsync_end = 800 + 0 + 255,
625 .htotal = 800 + 0 + 255 + 0,
627 .vsync_start = 480 + 2,
628 .vsync_end = 480 + 2 + 45,
629 .vtotal = 480 + 2 + 45 + 0,
631 .flags = DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC,
634 static const struct panel_desc ampire_am800480r3tmqwa1h = {
635 .modes = &ire_am800480r3tmqwa1h_mode,
642 .bus_format = MEDIA_BUS_FMT_RGB666_1X18,
645 static const struct display_timing santek_st0700i5y_rbslw_f_timing = {
646 .pixelclock = { 26400000, 33300000, 46800000 },
647 .hactive = { 800, 800, 800 },
648 .hfront_porch = { 16, 210, 354 },
649 .hback_porch = { 45, 36, 6 },
650 .hsync_len = { 1, 10, 40 },
651 .vactive = { 480, 480, 480 },
652 .vfront_porch = { 7, 22, 147 },
653 .vback_porch = { 22, 13, 3 },
654 .vsync_len = { 1, 10, 20 },
655 .flags = DISPLAY_FLAGS_HSYNC_LOW | DISPLAY_FLAGS_VSYNC_LOW |
656 DISPLAY_FLAGS_DE_HIGH | DISPLAY_FLAGS_PIXDATA_POSEDGE
659 static const struct panel_desc armadeus_st0700_adapt = {
660 .timings = &santek_st0700i5y_rbslw_f_timing,
667 .bus_format = MEDIA_BUS_FMT_RGB666_1X18,
668 .bus_flags = DRM_BUS_FLAG_DE_HIGH | DRM_BUS_FLAG_PIXDATA_POSEDGE,
671 static const struct drm_display_mode auo_b101aw03_mode = {
674 .hsync_start = 1024 + 156,
675 .hsync_end = 1024 + 156 + 8,
676 .htotal = 1024 + 156 + 8 + 156,
678 .vsync_start = 600 + 16,
679 .vsync_end = 600 + 16 + 6,
680 .vtotal = 600 + 16 + 6 + 16,
684 static const struct panel_desc auo_b101aw03 = {
685 .modes = &auo_b101aw03_mode,
694 static const struct display_timing auo_b101ean01_timing = {
695 .pixelclock = { 65300000, 72500000, 75000000 },
696 .hactive = { 1280, 1280, 1280 },
697 .hfront_porch = { 18, 119, 119 },
698 .hback_porch = { 21, 21, 21 },
699 .hsync_len = { 32, 32, 32 },
700 .vactive = { 800, 800, 800 },
701 .vfront_porch = { 4, 4, 4 },
702 .vback_porch = { 8, 8, 8 },
703 .vsync_len = { 18, 20, 20 },
706 static const struct panel_desc auo_b101ean01 = {
707 .timings = &auo_b101ean01_timing,
716 static const struct drm_display_mode auo_b101xtn01_mode = {
719 .hsync_start = 1366 + 20,
720 .hsync_end = 1366 + 20 + 70,
721 .htotal = 1366 + 20 + 70,
723 .vsync_start = 768 + 14,
724 .vsync_end = 768 + 14 + 42,
725 .vtotal = 768 + 14 + 42,
727 .flags = DRM_MODE_FLAG_NVSYNC | DRM_MODE_FLAG_NHSYNC,
730 static const struct panel_desc auo_b101xtn01 = {
731 .modes = &auo_b101xtn01_mode,
740 static const struct drm_display_mode auo_b116xak01_mode = {
743 .hsync_start = 1366 + 48,
744 .hsync_end = 1366 + 48 + 32,
745 .htotal = 1366 + 48 + 32 + 10,
747 .vsync_start = 768 + 4,
748 .vsync_end = 768 + 4 + 6,
749 .vtotal = 768 + 4 + 6 + 15,
751 .flags = DRM_MODE_FLAG_NVSYNC | DRM_MODE_FLAG_NHSYNC,
754 static const struct panel_desc auo_b116xak01 = {
755 .modes = &auo_b116xak01_mode,
763 .hpd_absent_delay = 200,
765 .bus_format = MEDIA_BUS_FMT_RGB666_1X18,
766 .connector_type = DRM_MODE_CONNECTOR_eDP,
769 static const struct drm_display_mode auo_b116xw03_mode = {
772 .hsync_start = 1366 + 40,
773 .hsync_end = 1366 + 40 + 40,
774 .htotal = 1366 + 40 + 40 + 32,
776 .vsync_start = 768 + 10,
777 .vsync_end = 768 + 10 + 12,
778 .vtotal = 768 + 10 + 12 + 6,
782 static const struct panel_desc auo_b116xw03 = {
783 .modes = &auo_b116xw03_mode,
792 static const struct drm_display_mode auo_b133xtn01_mode = {
795 .hsync_start = 1366 + 48,
796 .hsync_end = 1366 + 48 + 32,
797 .htotal = 1366 + 48 + 32 + 20,
799 .vsync_start = 768 + 3,
800 .vsync_end = 768 + 3 + 6,
801 .vtotal = 768 + 3 + 6 + 13,
805 static const struct panel_desc auo_b133xtn01 = {
806 .modes = &auo_b133xtn01_mode,
815 static const struct drm_display_mode auo_b133htn01_mode = {
818 .hsync_start = 1920 + 172,
819 .hsync_end = 1920 + 172 + 80,
820 .htotal = 1920 + 172 + 80 + 60,
822 .vsync_start = 1080 + 25,
823 .vsync_end = 1080 + 25 + 10,
824 .vtotal = 1080 + 25 + 10 + 10,
828 static const struct panel_desc auo_b133htn01 = {
829 .modes = &auo_b133htn01_mode,
843 static const struct display_timing auo_g070vvn01_timings = {
844 .pixelclock = { 33300000, 34209000, 45000000 },
845 .hactive = { 800, 800, 800 },
846 .hfront_porch = { 20, 40, 200 },
847 .hback_porch = { 87, 40, 1 },
848 .hsync_len = { 1, 48, 87 },
849 .vactive = { 480, 480, 480 },
850 .vfront_porch = { 5, 13, 200 },
851 .vback_porch = { 31, 31, 29 },
852 .vsync_len = { 1, 1, 3 },
855 static const struct panel_desc auo_g070vvn01 = {
856 .timings = &auo_g070vvn01_timings,
871 static const struct drm_display_mode auo_g101evn010_mode = {
874 .hsync_start = 1280 + 82,
875 .hsync_end = 1280 + 82 + 2,
876 .htotal = 1280 + 82 + 2 + 84,
878 .vsync_start = 800 + 8,
879 .vsync_end = 800 + 8 + 2,
880 .vtotal = 800 + 8 + 2 + 6,
884 static const struct panel_desc auo_g101evn010 = {
885 .modes = &auo_g101evn010_mode,
892 .bus_format = MEDIA_BUS_FMT_RGB666_1X7X3_SPWG,
893 .connector_type = DRM_MODE_CONNECTOR_LVDS,
896 static const struct drm_display_mode auo_g104sn02_mode = {
899 .hsync_start = 800 + 40,
900 .hsync_end = 800 + 40 + 216,
901 .htotal = 800 + 40 + 216 + 128,
903 .vsync_start = 600 + 10,
904 .vsync_end = 600 + 10 + 35,
905 .vtotal = 600 + 10 + 35 + 2,
909 static const struct panel_desc auo_g104sn02 = {
910 .modes = &auo_g104sn02_mode,
919 static const struct drm_display_mode auo_g121ean01_mode = {
922 .hsync_start = 1280 + 58,
923 .hsync_end = 1280 + 58 + 8,
924 .htotal = 1280 + 58 + 8 + 70,
926 .vsync_start = 800 + 6,
927 .vsync_end = 800 + 6 + 4,
928 .vtotal = 800 + 6 + 4 + 10,
932 static const struct panel_desc auo_g121ean01 = {
933 .modes = &auo_g121ean01_mode,
940 .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
941 .connector_type = DRM_MODE_CONNECTOR_LVDS,
944 static const struct display_timing auo_g133han01_timings = {
945 .pixelclock = { 134000000, 141200000, 149000000 },
946 .hactive = { 1920, 1920, 1920 },
947 .hfront_porch = { 39, 58, 77 },
948 .hback_porch = { 59, 88, 117 },
949 .hsync_len = { 28, 42, 56 },
950 .vactive = { 1080, 1080, 1080 },
951 .vfront_porch = { 3, 8, 11 },
952 .vback_porch = { 5, 14, 19 },
953 .vsync_len = { 4, 14, 19 },
956 static const struct panel_desc auo_g133han01 = {
957 .timings = &auo_g133han01_timings,
970 .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_JEIDA,
971 .connector_type = DRM_MODE_CONNECTOR_LVDS,
974 static const struct drm_display_mode auo_g156xtn01_mode = {
977 .hsync_start = 1366 + 33,
978 .hsync_end = 1366 + 33 + 67,
981 .vsync_start = 768 + 4,
982 .vsync_end = 768 + 4 + 4,
987 static const struct panel_desc auo_g156xtn01 = {
988 .modes = &auo_g156xtn01_mode,
995 .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
996 .connector_type = DRM_MODE_CONNECTOR_LVDS,
999 static const struct display_timing auo_g185han01_timings = {
1000 .pixelclock = { 120000000, 144000000, 175000000 },
1001 .hactive = { 1920, 1920, 1920 },
1002 .hfront_porch = { 36, 120, 148 },
1003 .hback_porch = { 24, 88, 108 },
1004 .hsync_len = { 20, 48, 64 },
1005 .vactive = { 1080, 1080, 1080 },
1006 .vfront_porch = { 6, 10, 40 },
1007 .vback_porch = { 2, 5, 20 },
1008 .vsync_len = { 2, 5, 20 },
1011 static const struct panel_desc auo_g185han01 = {
1012 .timings = &auo_g185han01_timings,
1025 .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
1026 .connector_type = DRM_MODE_CONNECTOR_LVDS,
1029 static const struct display_timing auo_g190ean01_timings = {
1030 .pixelclock = { 90000000, 108000000, 135000000 },
1031 .hactive = { 1280, 1280, 1280 },
1032 .hfront_porch = { 126, 184, 1266 },
1033 .hback_porch = { 84, 122, 844 },
1034 .hsync_len = { 70, 102, 704 },
1035 .vactive = { 1024, 1024, 1024 },
1036 .vfront_porch = { 4, 26, 76 },
1037 .vback_porch = { 2, 8, 25 },
1038 .vsync_len = { 2, 8, 25 },
1041 static const struct panel_desc auo_g190ean01 = {
1042 .timings = &auo_g190ean01_timings,
1055 .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
1056 .connector_type = DRM_MODE_CONNECTOR_LVDS,
1059 static const struct display_timing auo_p320hvn03_timings = {
1060 .pixelclock = { 106000000, 148500000, 164000000 },
1061 .hactive = { 1920, 1920, 1920 },
1062 .hfront_porch = { 25, 50, 130 },
1063 .hback_porch = { 25, 50, 130 },
1064 .hsync_len = { 20, 40, 105 },
1065 .vactive = { 1080, 1080, 1080 },
1066 .vfront_porch = { 8, 17, 150 },
1067 .vback_porch = { 8, 17, 150 },
1068 .vsync_len = { 4, 11, 100 },
1071 static const struct panel_desc auo_p320hvn03 = {
1072 .timings = &auo_p320hvn03_timings,
1084 .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
1085 .connector_type = DRM_MODE_CONNECTOR_LVDS,
1088 static const struct drm_display_mode auo_t215hvn01_mode = {
1091 .hsync_start = 1920 + 88,
1092 .hsync_end = 1920 + 88 + 44,
1093 .htotal = 1920 + 88 + 44 + 148,
1095 .vsync_start = 1080 + 4,
1096 .vsync_end = 1080 + 4 + 5,
1097 .vtotal = 1080 + 4 + 5 + 36,
1101 static const struct panel_desc auo_t215hvn01 = {
1102 .modes = &auo_t215hvn01_mode,
1115 static const struct drm_display_mode avic_tm070ddh03_mode = {
1118 .hsync_start = 1024 + 160,
1119 .hsync_end = 1024 + 160 + 4,
1120 .htotal = 1024 + 160 + 4 + 156,
1122 .vsync_start = 600 + 17,
1123 .vsync_end = 600 + 17 + 1,
1124 .vtotal = 600 + 17 + 1 + 17,
1128 static const struct panel_desc avic_tm070ddh03 = {
1129 .modes = &avic_tm070ddh03_mode,
1143 static const struct drm_display_mode bananapi_s070wv20_ct16_mode = {
1146 .hsync_start = 800 + 40,
1147 .hsync_end = 800 + 40 + 48,
1148 .htotal = 800 + 40 + 48 + 40,
1150 .vsync_start = 480 + 13,
1151 .vsync_end = 480 + 13 + 3,
1152 .vtotal = 480 + 13 + 3 + 29,
1155 static const struct panel_desc bananapi_s070wv20_ct16 = {
1156 .modes = &bananapi_s070wv20_ct16_mode,
1165 static const struct drm_display_mode boe_hv070wsa_mode = {
1168 .hsync_start = 1024 + 30,
1169 .hsync_end = 1024 + 30 + 30,
1170 .htotal = 1024 + 30 + 30 + 30,
1172 .vsync_start = 600 + 10,
1173 .vsync_end = 600 + 10 + 10,
1174 .vtotal = 600 + 10 + 10 + 10,
1178 static const struct panel_desc boe_hv070wsa = {
1179 .modes = &boe_hv070wsa_mode,
1187 static const struct drm_display_mode boe_nv101wxmn51_modes[] = {
1191 .hsync_start = 1280 + 48,
1192 .hsync_end = 1280 + 48 + 32,
1193 .htotal = 1280 + 48 + 32 + 80,
1195 .vsync_start = 800 + 3,
1196 .vsync_end = 800 + 3 + 5,
1197 .vtotal = 800 + 3 + 5 + 24,
1203 .hsync_start = 1280 + 48,
1204 .hsync_end = 1280 + 48 + 32,
1205 .htotal = 1280 + 48 + 32 + 80,
1207 .vsync_start = 800 + 3,
1208 .vsync_end = 800 + 3 + 5,
1209 .vtotal = 800 + 3 + 5 + 24,
1214 static const struct panel_desc boe_nv101wxmn51 = {
1215 .modes = boe_nv101wxmn51_modes,
1216 .num_modes = ARRAY_SIZE(boe_nv101wxmn51_modes),
1229 /* Also used for boe_nv133fhm_n62 */
1230 static const struct drm_display_mode boe_nv133fhm_n61_modes = {
1233 .hsync_start = 1920 + 48,
1234 .hsync_end = 1920 + 48 + 32,
1235 .htotal = 1920 + 48 + 32 + 200,
1237 .vsync_start = 1080 + 3,
1238 .vsync_end = 1080 + 3 + 6,
1239 .vtotal = 1080 + 3 + 6 + 31,
1243 /* Also used for boe_nv133fhm_n62 */
1244 static const struct panel_desc boe_nv133fhm_n61 = {
1245 .modes = &boe_nv133fhm_n61_modes,
1253 .hpd_absent_delay = 200,
1256 .bus_format = MEDIA_BUS_FMT_RGB888_1X24,
1257 .bus_flags = DRM_BUS_FLAG_DATA_MSB_TO_LSB,
1258 .connector_type = DRM_MODE_CONNECTOR_eDP,
1261 static const struct drm_display_mode boe_nv140fhmn49_modes[] = {
1265 .hsync_start = 1920 + 48,
1266 .hsync_end = 1920 + 48 + 32,
1269 .vsync_start = 1080 + 3,
1270 .vsync_end = 1080 + 3 + 5,
1276 static const struct panel_desc boe_nv140fhmn49 = {
1277 .modes = boe_nv140fhmn49_modes,
1278 .num_modes = ARRAY_SIZE(boe_nv140fhmn49_modes),
1289 .bus_format = MEDIA_BUS_FMT_RGB666_1X18,
1290 .connector_type = DRM_MODE_CONNECTOR_eDP,
1293 static const struct drm_display_mode cdtech_s043wq26h_ct7_mode = {
1296 .hsync_start = 480 + 5,
1297 .hsync_end = 480 + 5 + 5,
1298 .htotal = 480 + 5 + 5 + 40,
1300 .vsync_start = 272 + 8,
1301 .vsync_end = 272 + 8 + 8,
1302 .vtotal = 272 + 8 + 8 + 8,
1304 .flags = DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC,
1307 static const struct panel_desc cdtech_s043wq26h_ct7 = {
1308 .modes = &cdtech_s043wq26h_ct7_mode,
1315 .bus_flags = DRM_BUS_FLAG_PIXDATA_DRIVE_POSEDGE,
1318 static const struct drm_display_mode cdtech_s070wv95_ct16_mode = {
1321 .hsync_start = 800 + 40,
1322 .hsync_end = 800 + 40 + 40,
1323 .htotal = 800 + 40 + 40 + 48,
1325 .vsync_start = 480 + 29,
1326 .vsync_end = 480 + 29 + 13,
1327 .vtotal = 480 + 29 + 13 + 3,
1329 .flags = DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC,
1332 static const struct panel_desc cdtech_s070wv95_ct16 = {
1333 .modes = &cdtech_s070wv95_ct16_mode,
1342 static const struct drm_display_mode chunghwa_claa070wp03xg_mode = {
1345 .hsync_start = 800 + 49,
1346 .hsync_end = 800 + 49 + 33,
1347 .htotal = 800 + 49 + 33 + 17,
1349 .vsync_start = 1280 + 1,
1350 .vsync_end = 1280 + 1 + 7,
1351 .vtotal = 1280 + 1 + 7 + 15,
1353 .flags = DRM_MODE_FLAG_NVSYNC | DRM_MODE_FLAG_NHSYNC,
1356 static const struct panel_desc chunghwa_claa070wp03xg = {
1357 .modes = &chunghwa_claa070wp03xg_mode,
1366 static const struct drm_display_mode chunghwa_claa101wa01a_mode = {
1369 .hsync_start = 1366 + 58,
1370 .hsync_end = 1366 + 58 + 58,
1371 .htotal = 1366 + 58 + 58 + 58,
1373 .vsync_start = 768 + 4,
1374 .vsync_end = 768 + 4 + 4,
1375 .vtotal = 768 + 4 + 4 + 4,
1379 static const struct panel_desc chunghwa_claa101wa01a = {
1380 .modes = &chunghwa_claa101wa01a_mode,
1389 static const struct drm_display_mode chunghwa_claa101wb01_mode = {
1392 .hsync_start = 1366 + 48,
1393 .hsync_end = 1366 + 48 + 32,
1394 .htotal = 1366 + 48 + 32 + 20,
1396 .vsync_start = 768 + 16,
1397 .vsync_end = 768 + 16 + 8,
1398 .vtotal = 768 + 16 + 8 + 16,
1402 static const struct panel_desc chunghwa_claa101wb01 = {
1403 .modes = &chunghwa_claa101wb01_mode,
1412 static const struct drm_display_mode dataimage_scf0700c48ggu18_mode = {
1415 .hsync_start = 800 + 40,
1416 .hsync_end = 800 + 40 + 128,
1417 .htotal = 800 + 40 + 128 + 88,
1419 .vsync_start = 480 + 10,
1420 .vsync_end = 480 + 10 + 2,
1421 .vtotal = 480 + 10 + 2 + 33,
1423 .flags = DRM_MODE_FLAG_NVSYNC | DRM_MODE_FLAG_NHSYNC,
1426 static const struct panel_desc dataimage_scf0700c48ggu18 = {
1427 .modes = &dataimage_scf0700c48ggu18_mode,
1434 .bus_format = MEDIA_BUS_FMT_RGB888_1X24,
1435 .bus_flags = DRM_BUS_FLAG_DE_HIGH | DRM_BUS_FLAG_PIXDATA_DRIVE_POSEDGE,
1438 static const struct display_timing dlc_dlc0700yzg_1_timing = {
1439 .pixelclock = { 45000000, 51200000, 57000000 },
1440 .hactive = { 1024, 1024, 1024 },
1441 .hfront_porch = { 100, 106, 113 },
1442 .hback_porch = { 100, 106, 113 },
1443 .hsync_len = { 100, 108, 114 },
1444 .vactive = { 600, 600, 600 },
1445 .vfront_porch = { 8, 11, 15 },
1446 .vback_porch = { 8, 11, 15 },
1447 .vsync_len = { 9, 13, 15 },
1448 .flags = DISPLAY_FLAGS_DE_HIGH,
1451 static const struct panel_desc dlc_dlc0700yzg_1 = {
1452 .timings = &dlc_dlc0700yzg_1_timing,
1464 .bus_format = MEDIA_BUS_FMT_RGB666_1X7X3_SPWG,
1465 .connector_type = DRM_MODE_CONNECTOR_LVDS,
1468 static const struct display_timing dlc_dlc1010gig_timing = {
1469 .pixelclock = { 68900000, 71100000, 73400000 },
1470 .hactive = { 1280, 1280, 1280 },
1471 .hfront_porch = { 43, 53, 63 },
1472 .hback_porch = { 43, 53, 63 },
1473 .hsync_len = { 44, 54, 64 },
1474 .vactive = { 800, 800, 800 },
1475 .vfront_porch = { 5, 8, 11 },
1476 .vback_porch = { 5, 8, 11 },
1477 .vsync_len = { 5, 7, 11 },
1478 .flags = DISPLAY_FLAGS_DE_HIGH,
1481 static const struct panel_desc dlc_dlc1010gig = {
1482 .timings = &dlc_dlc1010gig_timing,
1495 .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
1496 .connector_type = DRM_MODE_CONNECTOR_LVDS,
1499 static const struct drm_display_mode edt_et035012dm6_mode = {
1502 .hsync_start = 320 + 20,
1503 .hsync_end = 320 + 20 + 30,
1504 .htotal = 320 + 20 + 68,
1506 .vsync_start = 240 + 4,
1507 .vsync_end = 240 + 4 + 4,
1508 .vtotal = 240 + 4 + 4 + 14,
1510 .flags = DRM_MODE_FLAG_NVSYNC | DRM_MODE_FLAG_NHSYNC,
1513 static const struct panel_desc edt_et035012dm6 = {
1514 .modes = &edt_et035012dm6_mode,
1521 .bus_format = MEDIA_BUS_FMT_RGB888_1X24,
1522 .bus_flags = DRM_BUS_FLAG_DE_LOW | DRM_BUS_FLAG_PIXDATA_NEGEDGE,
1525 static const struct drm_display_mode edt_etm043080dh6gp_mode = {
1528 .hsync_start = 480 + 8,
1529 .hsync_end = 480 + 8 + 4,
1530 .htotal = 480 + 8 + 4 + 41,
1533 * IWG22M: Y resolution changed for "dc_linuxfb" module crashing while
1538 .vsync_start = 288 + 2,
1539 .vsync_end = 288 + 2 + 4,
1540 .vtotal = 288 + 2 + 4 + 10,
1544 static const struct panel_desc edt_etm043080dh6gp = {
1545 .modes = &edt_etm043080dh6gp_mode,
1552 .bus_format = MEDIA_BUS_FMT_RGB666_1X18,
1553 .connector_type = DRM_MODE_CONNECTOR_DPI,
1556 static const struct drm_display_mode edt_etm0430g0dh6_mode = {
1559 .hsync_start = 480 + 2,
1560 .hsync_end = 480 + 2 + 41,
1561 .htotal = 480 + 2 + 41 + 2,
1563 .vsync_start = 272 + 2,
1564 .vsync_end = 272 + 2 + 10,
1565 .vtotal = 272 + 2 + 10 + 2,
1567 .flags = DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC,
1570 static const struct panel_desc edt_etm0430g0dh6 = {
1571 .modes = &edt_etm0430g0dh6_mode,
1580 static const struct drm_display_mode edt_et057090dhu_mode = {
1583 .hsync_start = 640 + 16,
1584 .hsync_end = 640 + 16 + 30,
1585 .htotal = 640 + 16 + 30 + 114,
1587 .vsync_start = 480 + 10,
1588 .vsync_end = 480 + 10 + 3,
1589 .vtotal = 480 + 10 + 3 + 32,
1591 .flags = DRM_MODE_FLAG_NVSYNC | DRM_MODE_FLAG_NHSYNC,
1594 static const struct panel_desc edt_et057090dhu = {
1595 .modes = &edt_et057090dhu_mode,
1602 .bus_format = MEDIA_BUS_FMT_RGB666_1X18,
1603 .bus_flags = DRM_BUS_FLAG_DE_HIGH | DRM_BUS_FLAG_PIXDATA_DRIVE_NEGEDGE,
1606 static const struct drm_display_mode edt_etm0700g0dh6_mode = {
1609 .hsync_start = 800 + 40,
1610 .hsync_end = 800 + 40 + 128,
1611 .htotal = 800 + 40 + 128 + 88,
1613 .vsync_start = 480 + 10,
1614 .vsync_end = 480 + 10 + 2,
1615 .vtotal = 480 + 10 + 2 + 33,
1617 .flags = DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC,
1620 static const struct panel_desc edt_etm0700g0dh6 = {
1621 .modes = &edt_etm0700g0dh6_mode,
1628 .bus_format = MEDIA_BUS_FMT_RGB666_1X18,
1629 .bus_flags = DRM_BUS_FLAG_DE_HIGH | DRM_BUS_FLAG_PIXDATA_DRIVE_NEGEDGE,
1632 static const struct panel_desc edt_etm0700g0bdh6 = {
1633 .modes = &edt_etm0700g0dh6_mode,
1640 .bus_format = MEDIA_BUS_FMT_RGB666_1X18,
1641 .bus_flags = DRM_BUS_FLAG_DE_HIGH | DRM_BUS_FLAG_PIXDATA_DRIVE_POSEDGE,
1644 static const struct display_timing evervision_vgg804821_timing = {
1645 .pixelclock = { 27600000, 33300000, 50000000 },
1646 .hactive = { 800, 800, 800 },
1647 .hfront_porch = { 40, 66, 70 },
1648 .hback_porch = { 40, 67, 70 },
1649 .hsync_len = { 40, 67, 70 },
1650 .vactive = { 480, 480, 480 },
1651 .vfront_porch = { 6, 10, 10 },
1652 .vback_porch = { 7, 11, 11 },
1653 .vsync_len = { 7, 11, 11 },
1654 .flags = DISPLAY_FLAGS_HSYNC_HIGH | DISPLAY_FLAGS_VSYNC_HIGH |
1655 DISPLAY_FLAGS_DE_HIGH | DISPLAY_FLAGS_PIXDATA_NEGEDGE |
1656 DISPLAY_FLAGS_SYNC_NEGEDGE,
1659 static const struct panel_desc evervision_vgg804821 = {
1660 .timings = &evervision_vgg804821_timing,
1667 .bus_format = MEDIA_BUS_FMT_RGB888_1X24,
1668 .bus_flags = DRM_BUS_FLAG_DE_HIGH | DRM_BUS_FLAG_PIXDATA_NEGEDGE,
1671 static const struct drm_display_mode foxlink_fl500wvr00_a0t_mode = {
1674 .hsync_start = 800 + 168,
1675 .hsync_end = 800 + 168 + 64,
1676 .htotal = 800 + 168 + 64 + 88,
1678 .vsync_start = 480 + 37,
1679 .vsync_end = 480 + 37 + 2,
1680 .vtotal = 480 + 37 + 2 + 8,
1684 static const struct panel_desc foxlink_fl500wvr00_a0t = {
1685 .modes = &foxlink_fl500wvr00_a0t_mode,
1692 .bus_format = MEDIA_BUS_FMT_RGB888_1X24,
1695 static const struct drm_display_mode frida_frd350h54004_mode = {
1698 .hsync_start = 320 + 44,
1699 .hsync_end = 320 + 44 + 16,
1700 .htotal = 320 + 44 + 16 + 20,
1702 .vsync_start = 240 + 2,
1703 .vsync_end = 240 + 2 + 6,
1704 .vtotal = 240 + 2 + 6 + 2,
1706 .flags = DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC,
1709 static const struct panel_desc frida_frd350h54004 = {
1710 .modes = &frida_frd350h54004_mode,
1717 .bus_format = MEDIA_BUS_FMT_RGB888_1X24,
1718 .bus_flags = DRM_BUS_FLAG_DE_HIGH | DRM_BUS_FLAG_PIXDATA_POSEDGE,
1719 .connector_type = DRM_MODE_CONNECTOR_DPI,
1722 static const struct drm_display_mode friendlyarm_hd702e_mode = {
1725 .hsync_start = 800 + 20,
1726 .hsync_end = 800 + 20 + 24,
1727 .htotal = 800 + 20 + 24 + 20,
1729 .vsync_start = 1280 + 4,
1730 .vsync_end = 1280 + 4 + 8,
1731 .vtotal = 1280 + 4 + 8 + 4,
1733 .flags = DRM_MODE_FLAG_NVSYNC | DRM_MODE_FLAG_NHSYNC,
1736 static const struct panel_desc friendlyarm_hd702e = {
1737 .modes = &friendlyarm_hd702e_mode,
1745 static const struct drm_display_mode giantplus_gpg482739qs5_mode = {
1748 .hsync_start = 480 + 5,
1749 .hsync_end = 480 + 5 + 1,
1750 .htotal = 480 + 5 + 1 + 40,
1752 .vsync_start = 272 + 8,
1753 .vsync_end = 272 + 8 + 1,
1754 .vtotal = 272 + 8 + 1 + 8,
1758 static const struct panel_desc giantplus_gpg482739qs5 = {
1759 .modes = &giantplus_gpg482739qs5_mode,
1766 .bus_format = MEDIA_BUS_FMT_RGB888_1X24,
1769 static const struct display_timing giantplus_gpm940b0_timing = {
1770 .pixelclock = { 13500000, 27000000, 27500000 },
1771 .hactive = { 320, 320, 320 },
1772 .hfront_porch = { 14, 686, 718 },
1773 .hback_porch = { 50, 70, 255 },
1774 .hsync_len = { 1, 1, 1 },
1775 .vactive = { 240, 240, 240 },
1776 .vfront_porch = { 1, 1, 179 },
1777 .vback_porch = { 1, 21, 31 },
1778 .vsync_len = { 1, 1, 6 },
1779 .flags = DISPLAY_FLAGS_HSYNC_LOW | DISPLAY_FLAGS_VSYNC_LOW,
1782 static const struct panel_desc giantplus_gpm940b0 = {
1783 .timings = &giantplus_gpm940b0_timing,
1790 .bus_format = MEDIA_BUS_FMT_RGB888_3X8,
1791 .bus_flags = DRM_BUS_FLAG_DE_HIGH | DRM_BUS_FLAG_PIXDATA_NEGEDGE,
1794 static const struct display_timing hannstar_hsd070pww1_timing = {
1795 .pixelclock = { 64300000, 71100000, 82000000 },
1796 .hactive = { 1280, 1280, 1280 },
1797 .hfront_porch = { 1, 1, 10 },
1798 .hback_porch = { 1, 1, 10 },
1800 * According to the data sheet, the minimum horizontal blanking interval
1801 * is 54 clocks (1 + 52 + 1), but tests with a Nitrogen6X have shown the
1802 * minimum working horizontal blanking interval to be 60 clocks.
1804 .hsync_len = { 58, 158, 661 },
1805 .vactive = { 800, 800, 800 },
1806 .vfront_porch = { 1, 1, 10 },
1807 .vback_porch = { 1, 1, 10 },
1808 .vsync_len = { 1, 21, 203 },
1809 .flags = DISPLAY_FLAGS_DE_HIGH,
1812 static const struct panel_desc hannstar_hsd070pww1 = {
1813 .timings = &hannstar_hsd070pww1_timing,
1820 .bus_format = MEDIA_BUS_FMT_RGB666_1X7X3_SPWG,
1821 .connector_type = DRM_MODE_CONNECTOR_LVDS,
1824 static const struct display_timing hannstar_hsd100pxn1_timing = {
1825 .pixelclock = { 55000000, 65000000, 75000000 },
1826 .hactive = { 1024, 1024, 1024 },
1827 .hfront_porch = { 40, 40, 40 },
1828 .hback_porch = { 220, 220, 220 },
1829 .hsync_len = { 20, 60, 100 },
1830 .vactive = { 768, 768, 768 },
1831 .vfront_porch = { 7, 7, 7 },
1832 .vback_porch = { 21, 21, 21 },
1833 .vsync_len = { 10, 10, 10 },
1834 .flags = DISPLAY_FLAGS_DE_HIGH,
1837 static const struct panel_desc hannstar_hsd100pxn1 = {
1838 .timings = &hannstar_hsd100pxn1_timing,
1845 .bus_format = MEDIA_BUS_FMT_RGB666_1X7X3_SPWG,
1846 .connector_type = DRM_MODE_CONNECTOR_LVDS,
1849 static const struct drm_display_mode hitachi_tx23d38vm0caa_mode = {
1852 .hsync_start = 800 + 85,
1853 .hsync_end = 800 + 85 + 86,
1854 .htotal = 800 + 85 + 86 + 85,
1856 .vsync_start = 480 + 16,
1857 .vsync_end = 480 + 16 + 13,
1858 .vtotal = 480 + 16 + 13 + 16,
1862 static const struct panel_desc hitachi_tx23d38vm0caa = {
1863 .modes = &hitachi_tx23d38vm0caa_mode,
1876 static const struct drm_display_mode innolux_at043tn24_mode = {
1879 .hsync_start = 480 + 2,
1880 .hsync_end = 480 + 2 + 41,
1881 .htotal = 480 + 2 + 41 + 2,
1883 .vsync_start = 272 + 2,
1884 .vsync_end = 272 + 2 + 10,
1885 .vtotal = 272 + 2 + 10 + 2,
1887 .flags = DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC,
1890 static const struct panel_desc innolux_at043tn24 = {
1891 .modes = &innolux_at043tn24_mode,
1898 .bus_format = MEDIA_BUS_FMT_RGB888_1X24,
1899 .bus_flags = DRM_BUS_FLAG_DE_HIGH | DRM_BUS_FLAG_PIXDATA_DRIVE_POSEDGE,
1902 static const struct drm_display_mode innolux_at070tn92_mode = {
1905 .hsync_start = 800 + 210,
1906 .hsync_end = 800 + 210 + 20,
1907 .htotal = 800 + 210 + 20 + 46,
1909 .vsync_start = 480 + 22,
1910 .vsync_end = 480 + 22 + 10,
1911 .vtotal = 480 + 22 + 23 + 10,
1915 static const struct panel_desc innolux_at070tn92 = {
1916 .modes = &innolux_at070tn92_mode,
1922 .bus_format = MEDIA_BUS_FMT_RGB888_1X24,
1925 static const struct display_timing innolux_g070y2_l01_timing = {
1926 .pixelclock = { 28000000, 29500000, 32000000 },
1927 .hactive = { 800, 800, 800 },
1928 .hfront_porch = { 61, 91, 141 },
1929 .hback_porch = { 60, 90, 140 },
1930 .hsync_len = { 12, 12, 12 },
1931 .vactive = { 480, 480, 480 },
1932 .vfront_porch = { 4, 9, 30 },
1933 .vback_porch = { 4, 8, 28 },
1934 .vsync_len = { 2, 2, 2 },
1935 .flags = DISPLAY_FLAGS_DE_HIGH,
1938 static const struct panel_desc innolux_g070y2_l01 = {
1939 .timings = &innolux_g070y2_l01_timing,
1952 .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
1953 .connector_type = DRM_MODE_CONNECTOR_LVDS,
1956 static const struct display_timing innolux_g101ice_l01_timing = {
1957 .pixelclock = { 60400000, 71100000, 74700000 },
1958 .hactive = { 1280, 1280, 1280 },
1959 .hfront_porch = { 41, 80, 100 },
1960 .hback_porch = { 40, 79, 99 },
1961 .hsync_len = { 1, 1, 1 },
1962 .vactive = { 800, 800, 800 },
1963 .vfront_porch = { 5, 11, 14 },
1964 .vback_porch = { 4, 11, 14 },
1965 .vsync_len = { 1, 1, 1 },
1966 .flags = DISPLAY_FLAGS_DE_HIGH,
1969 static const struct panel_desc innolux_g101ice_l01 = {
1970 .timings = &innolux_g101ice_l01_timing,
1981 .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
1982 .connector_type = DRM_MODE_CONNECTOR_LVDS,
1985 static const struct display_timing innolux_g121i1_l01_timing = {
1986 .pixelclock = { 67450000, 71000000, 74550000 },
1987 .hactive = { 1280, 1280, 1280 },
1988 .hfront_porch = { 40, 80, 160 },
1989 .hback_porch = { 39, 79, 159 },
1990 .hsync_len = { 1, 1, 1 },
1991 .vactive = { 800, 800, 800 },
1992 .vfront_porch = { 5, 11, 100 },
1993 .vback_porch = { 4, 11, 99 },
1994 .vsync_len = { 1, 1, 1 },
1997 static const struct panel_desc innolux_g121i1_l01 = {
1998 .timings = &innolux_g121i1_l01_timing,
2009 .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
2010 .connector_type = DRM_MODE_CONNECTOR_LVDS,
2013 static const struct drm_display_mode innolux_g121x1_l03_mode = {
2016 .hsync_start = 1024 + 0,
2017 .hsync_end = 1024 + 1,
2018 .htotal = 1024 + 0 + 1 + 320,
2020 .vsync_start = 768 + 38,
2021 .vsync_end = 768 + 38 + 1,
2022 .vtotal = 768 + 38 + 1 + 0,
2024 .flags = DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC,
2027 static const struct panel_desc innolux_g121x1_l03 = {
2028 .modes = &innolux_g121x1_l03_mode,
2043 * Datasheet specifies that at 60 Hz refresh rate:
2044 * - total horizontal time: { 1506, 1592, 1716 }
2045 * - total vertical time: { 788, 800, 868 }
2047 * ...but doesn't go into exactly how that should be split into a front
2048 * porch, back porch, or sync length. For now we'll leave a single setting
2049 * here which allows a bit of tweaking of the pixel clock at the expense of
2052 static const struct display_timing innolux_n116bge_timing = {
2053 .pixelclock = { 72600000, 76420000, 80240000 },
2054 .hactive = { 1366, 1366, 1366 },
2055 .hfront_porch = { 136, 136, 136 },
2056 .hback_porch = { 60, 60, 60 },
2057 .hsync_len = { 30, 30, 30 },
2058 .vactive = { 768, 768, 768 },
2059 .vfront_porch = { 8, 8, 8 },
2060 .vback_porch = { 12, 12, 12 },
2061 .vsync_len = { 12, 12, 12 },
2062 .flags = DISPLAY_FLAGS_VSYNC_LOW | DISPLAY_FLAGS_HSYNC_LOW,
2065 static const struct panel_desc innolux_n116bge = {
2066 .timings = &innolux_n116bge_timing,
2075 static const struct drm_display_mode innolux_n156bge_l21_mode = {
2078 .hsync_start = 1366 + 16,
2079 .hsync_end = 1366 + 16 + 34,
2080 .htotal = 1366 + 16 + 34 + 50,
2082 .vsync_start = 768 + 2,
2083 .vsync_end = 768 + 2 + 6,
2084 .vtotal = 768 + 2 + 6 + 12,
2088 static const struct panel_desc innolux_n156bge_l21 = {
2089 .modes = &innolux_n156bge_l21_mode,
2098 static const struct drm_display_mode innolux_p120zdg_bf1_mode = {
2101 .hsync_start = 2160 + 48,
2102 .hsync_end = 2160 + 48 + 32,
2103 .htotal = 2160 + 48 + 32 + 80,
2105 .vsync_start = 1440 + 3,
2106 .vsync_end = 1440 + 3 + 10,
2107 .vtotal = 1440 + 3 + 10 + 27,
2109 .flags = DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC,
2112 static const struct panel_desc innolux_p120zdg_bf1 = {
2113 .modes = &innolux_p120zdg_bf1_mode,
2121 .hpd_absent_delay = 200,
2126 static const struct drm_display_mode innolux_zj070na_01p_mode = {
2129 .hsync_start = 1024 + 128,
2130 .hsync_end = 1024 + 128 + 64,
2131 .htotal = 1024 + 128 + 64 + 128,
2133 .vsync_start = 600 + 16,
2134 .vsync_end = 600 + 16 + 4,
2135 .vtotal = 600 + 16 + 4 + 16,
2139 static const struct panel_desc innolux_zj070na_01p = {
2140 .modes = &innolux_zj070na_01p_mode,
2149 static const struct drm_display_mode ivo_m133nwf4_r0_mode = {
2152 .hsync_start = 1920 + 24,
2153 .hsync_end = 1920 + 24 + 48,
2154 .htotal = 1920 + 24 + 48 + 88,
2156 .vsync_start = 1080 + 3,
2157 .vsync_end = 1080 + 3 + 12,
2158 .vtotal = 1080 + 3 + 12 + 17,
2160 .flags = DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC,
2163 static const struct panel_desc ivo_m133nwf4_r0 = {
2164 .modes = &ivo_m133nwf4_r0_mode,
2172 .hpd_absent_delay = 200,
2175 .bus_format = MEDIA_BUS_FMT_RGB888_1X24,
2176 .bus_flags = DRM_BUS_FLAG_DATA_MSB_TO_LSB,
2177 .connector_type = DRM_MODE_CONNECTOR_eDP,
2180 static const struct display_timing koe_tx14d24vm1bpa_timing = {
2181 .pixelclock = { 5580000, 5850000, 6200000 },
2182 .hactive = { 320, 320, 320 },
2183 .hfront_porch = { 30, 30, 30 },
2184 .hback_porch = { 30, 30, 30 },
2185 .hsync_len = { 1, 5, 17 },
2186 .vactive = { 240, 240, 240 },
2187 .vfront_porch = { 6, 6, 6 },
2188 .vback_porch = { 5, 5, 5 },
2189 .vsync_len = { 1, 2, 11 },
2190 .flags = DISPLAY_FLAGS_DE_HIGH,
2193 static const struct panel_desc koe_tx14d24vm1bpa = {
2194 .timings = &koe_tx14d24vm1bpa_timing,
2203 static const struct display_timing koe_tx31d200vm0baa_timing = {
2204 .pixelclock = { 39600000, 43200000, 48000000 },
2205 .hactive = { 1280, 1280, 1280 },
2206 .hfront_porch = { 16, 36, 56 },
2207 .hback_porch = { 16, 36, 56 },
2208 .hsync_len = { 8, 8, 8 },
2209 .vactive = { 480, 480, 480 },
2210 .vfront_porch = { 6, 21, 33 },
2211 .vback_porch = { 6, 21, 33 },
2212 .vsync_len = { 8, 8, 8 },
2213 .flags = DISPLAY_FLAGS_DE_HIGH,
2216 static const struct panel_desc koe_tx31d200vm0baa = {
2217 .timings = &koe_tx31d200vm0baa_timing,
2224 .bus_format = MEDIA_BUS_FMT_RGB666_1X7X3_SPWG,
2225 .connector_type = DRM_MODE_CONNECTOR_LVDS,
2228 static const struct display_timing kyo_tcg121xglp_timing = {
2229 .pixelclock = { 52000000, 65000000, 71000000 },
2230 .hactive = { 1024, 1024, 1024 },
2231 .hfront_porch = { 2, 2, 2 },
2232 .hback_porch = { 2, 2, 2 },
2233 .hsync_len = { 86, 124, 244 },
2234 .vactive = { 768, 768, 768 },
2235 .vfront_porch = { 2, 2, 2 },
2236 .vback_porch = { 2, 2, 2 },
2237 .vsync_len = { 6, 34, 73 },
2238 .flags = DISPLAY_FLAGS_DE_HIGH,
2241 static const struct panel_desc kyo_tcg121xglp = {
2242 .timings = &kyo_tcg121xglp_timing,
2249 .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
2250 .connector_type = DRM_MODE_CONNECTOR_LVDS,
2253 static const struct drm_display_mode lemaker_bl035_rgb_002_mode = {
2256 .hsync_start = 320 + 20,
2257 .hsync_end = 320 + 20 + 30,
2258 .htotal = 320 + 20 + 30 + 38,
2260 .vsync_start = 240 + 4,
2261 .vsync_end = 240 + 4 + 3,
2262 .vtotal = 240 + 4 + 3 + 15,
2266 static const struct panel_desc lemaker_bl035_rgb_002 = {
2267 .modes = &lemaker_bl035_rgb_002_mode,
2273 .bus_format = MEDIA_BUS_FMT_RGB888_1X24,
2274 .bus_flags = DRM_BUS_FLAG_DE_LOW,
2277 static const struct drm_display_mode lg_lb070wv8_mode = {
2280 .hsync_start = 800 + 88,
2281 .hsync_end = 800 + 88 + 80,
2282 .htotal = 800 + 88 + 80 + 88,
2284 .vsync_start = 480 + 10,
2285 .vsync_end = 480 + 10 + 25,
2286 .vtotal = 480 + 10 + 25 + 10,
2290 static const struct panel_desc lg_lb070wv8 = {
2291 .modes = &lg_lb070wv8_mode,
2298 .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
2299 .connector_type = DRM_MODE_CONNECTOR_LVDS,
2302 static const struct drm_display_mode lg_lp079qx1_sp0v_mode = {
2305 .hsync_start = 1536 + 12,
2306 .hsync_end = 1536 + 12 + 16,
2307 .htotal = 1536 + 12 + 16 + 48,
2309 .vsync_start = 2048 + 8,
2310 .vsync_end = 2048 + 8 + 4,
2311 .vtotal = 2048 + 8 + 4 + 8,
2313 .flags = DRM_MODE_FLAG_NVSYNC | DRM_MODE_FLAG_NHSYNC,
2316 static const struct panel_desc lg_lp079qx1_sp0v = {
2317 .modes = &lg_lp079qx1_sp0v_mode,
2325 static const struct drm_display_mode lg_lp097qx1_spa1_mode = {
2328 .hsync_start = 2048 + 150,
2329 .hsync_end = 2048 + 150 + 5,
2330 .htotal = 2048 + 150 + 5 + 5,
2332 .vsync_start = 1536 + 3,
2333 .vsync_end = 1536 + 3 + 1,
2334 .vtotal = 1536 + 3 + 1 + 9,
2338 static const struct panel_desc lg_lp097qx1_spa1 = {
2339 .modes = &lg_lp097qx1_spa1_mode,
2347 static const struct drm_display_mode lg_lp120up1_mode = {
2350 .hsync_start = 1920 + 40,
2351 .hsync_end = 1920 + 40 + 40,
2352 .htotal = 1920 + 40 + 40+ 80,
2354 .vsync_start = 1280 + 4,
2355 .vsync_end = 1280 + 4 + 4,
2356 .vtotal = 1280 + 4 + 4 + 12,
2360 static const struct panel_desc lg_lp120up1 = {
2361 .modes = &lg_lp120up1_mode,
2368 .connector_type = DRM_MODE_CONNECTOR_eDP,
2371 static const struct drm_display_mode lg_lp129qe_mode = {
2374 .hsync_start = 2560 + 48,
2375 .hsync_end = 2560 + 48 + 32,
2376 .htotal = 2560 + 48 + 32 + 80,
2378 .vsync_start = 1700 + 3,
2379 .vsync_end = 1700 + 3 + 10,
2380 .vtotal = 1700 + 3 + 10 + 36,
2384 static const struct panel_desc lg_lp129qe = {
2385 .modes = &lg_lp129qe_mode,
2394 static const struct display_timing logictechno_lt161010_2nh_timing = {
2395 .pixelclock = { 26400000, 33300000, 46800000 },
2396 .hactive = { 800, 800, 800 },
2397 .hfront_porch = { 16, 210, 354 },
2398 .hback_porch = { 46, 46, 46 },
2399 .hsync_len = { 1, 20, 40 },
2400 .vactive = { 480, 480, 480 },
2401 .vfront_porch = { 7, 22, 147 },
2402 .vback_porch = { 23, 23, 23 },
2403 .vsync_len = { 1, 10, 20 },
2404 .flags = DISPLAY_FLAGS_HSYNC_LOW | DISPLAY_FLAGS_VSYNC_LOW |
2405 DISPLAY_FLAGS_DE_HIGH | DISPLAY_FLAGS_PIXDATA_POSEDGE |
2406 DISPLAY_FLAGS_SYNC_POSEDGE,
2409 static const struct panel_desc logictechno_lt161010_2nh = {
2410 .timings = &logictechno_lt161010_2nh_timing,
2416 .bus_format = MEDIA_BUS_FMT_RGB666_1X18,
2417 .bus_flags = DRM_BUS_FLAG_DE_HIGH |
2418 DRM_BUS_FLAG_PIXDATA_SAMPLE_NEGEDGE |
2419 DRM_BUS_FLAG_SYNC_SAMPLE_NEGEDGE,
2420 .connector_type = DRM_MODE_CONNECTOR_DPI,
2423 static const struct display_timing logictechno_lt170410_2whc_timing = {
2424 .pixelclock = { 68900000, 71100000, 73400000 },
2425 .hactive = { 1280, 1280, 1280 },
2426 .hfront_porch = { 23, 60, 71 },
2427 .hback_porch = { 23, 60, 71 },
2428 .hsync_len = { 15, 40, 47 },
2429 .vactive = { 800, 800, 800 },
2430 .vfront_porch = { 5, 7, 10 },
2431 .vback_porch = { 5, 7, 10 },
2432 .vsync_len = { 6, 9, 12 },
2433 .flags = DISPLAY_FLAGS_HSYNC_LOW | DISPLAY_FLAGS_VSYNC_LOW |
2434 DISPLAY_FLAGS_DE_HIGH | DISPLAY_FLAGS_PIXDATA_POSEDGE |
2435 DISPLAY_FLAGS_SYNC_POSEDGE,
2438 static const struct panel_desc logictechno_lt170410_2whc = {
2439 .timings = &logictechno_lt170410_2whc_timing,
2445 .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
2446 .bus_flags = DRM_BUS_FLAG_DE_HIGH |
2447 DRM_BUS_FLAG_PIXDATA_SAMPLE_NEGEDGE |
2448 DRM_BUS_FLAG_SYNC_SAMPLE_NEGEDGE,
2449 .connector_type = DRM_MODE_CONNECTOR_LVDS,
2452 static const struct drm_display_mode mitsubishi_aa070mc01_mode = {
2455 .hsync_start = 800 + 0,
2456 .hsync_end = 800 + 1,
2457 .htotal = 800 + 0 + 1 + 160,
2459 .vsync_start = 480 + 0,
2460 .vsync_end = 480 + 48 + 1,
2461 .vtotal = 480 + 48 + 1 + 0,
2463 .flags = DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC,
2466 static const struct drm_display_mode logicpd_type_28_mode = {
2469 .hsync_start = 480 + 3,
2470 .hsync_end = 480 + 3 + 42,
2471 .htotal = 480 + 3 + 42 + 2,
2474 .vsync_start = 272 + 2,
2475 .vsync_end = 272 + 2 + 11,
2476 .vtotal = 272 + 2 + 11 + 3,
2478 .flags = DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC,
2481 static const struct panel_desc logicpd_type_28 = {
2482 .modes = &logicpd_type_28_mode,
2495 .bus_format = MEDIA_BUS_FMT_RGB888_1X24,
2496 .bus_flags = DRM_BUS_FLAG_DE_HIGH | DRM_BUS_FLAG_PIXDATA_DRIVE_POSEDGE |
2497 DRM_BUS_FLAG_SYNC_DRIVE_NEGEDGE,
2500 static const struct panel_desc mitsubishi_aa070mc01 = {
2501 .modes = &mitsubishi_aa070mc01_mode,
2514 .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
2515 .connector_type = DRM_MODE_CONNECTOR_LVDS,
2516 .bus_flags = DRM_BUS_FLAG_DE_HIGH,
2519 static const struct display_timing nec_nl12880bc20_05_timing = {
2520 .pixelclock = { 67000000, 71000000, 75000000 },
2521 .hactive = { 1280, 1280, 1280 },
2522 .hfront_porch = { 2, 30, 30 },
2523 .hback_porch = { 6, 100, 100 },
2524 .hsync_len = { 2, 30, 30 },
2525 .vactive = { 800, 800, 800 },
2526 .vfront_porch = { 5, 5, 5 },
2527 .vback_porch = { 11, 11, 11 },
2528 .vsync_len = { 7, 7, 7 },
2531 static const struct panel_desc nec_nl12880bc20_05 = {
2532 .timings = &nec_nl12880bc20_05_timing,
2543 .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
2544 .connector_type = DRM_MODE_CONNECTOR_LVDS,
2547 static const struct drm_display_mode nec_nl4827hc19_05b_mode = {
2550 .hsync_start = 480 + 2,
2551 .hsync_end = 480 + 2 + 41,
2552 .htotal = 480 + 2 + 41 + 2,
2554 .vsync_start = 272 + 2,
2555 .vsync_end = 272 + 2 + 4,
2556 .vtotal = 272 + 2 + 4 + 2,
2558 .flags = DRM_MODE_FLAG_NVSYNC | DRM_MODE_FLAG_NHSYNC,
2561 static const struct panel_desc nec_nl4827hc19_05b = {
2562 .modes = &nec_nl4827hc19_05b_mode,
2569 .bus_format = MEDIA_BUS_FMT_RGB888_1X24,
2570 .bus_flags = DRM_BUS_FLAG_PIXDATA_DRIVE_POSEDGE,
2573 static const struct drm_display_mode netron_dy_e231732_mode = {
2576 .hsync_start = 1024 + 160,
2577 .hsync_end = 1024 + 160 + 70,
2578 .htotal = 1024 + 160 + 70 + 90,
2580 .vsync_start = 600 + 127,
2581 .vsync_end = 600 + 127 + 20,
2582 .vtotal = 600 + 127 + 20 + 3,
2586 static const struct panel_desc netron_dy_e231732 = {
2587 .modes = &netron_dy_e231732_mode,
2593 .bus_format = MEDIA_BUS_FMT_RGB666_1X18,
2596 static const struct drm_display_mode neweast_wjfh116008a_modes[] = {
2600 .hsync_start = 1920 + 48,
2601 .hsync_end = 1920 + 48 + 32,
2602 .htotal = 1920 + 48 + 32 + 80,
2604 .vsync_start = 1080 + 3,
2605 .vsync_end = 1080 + 3 + 5,
2606 .vtotal = 1080 + 3 + 5 + 23,
2608 .flags = DRM_MODE_FLAG_NVSYNC | DRM_MODE_FLAG_NHSYNC,
2612 .hsync_start = 1920 + 48,
2613 .hsync_end = 1920 + 48 + 32,
2614 .htotal = 1920 + 48 + 32 + 80,
2616 .vsync_start = 1080 + 3,
2617 .vsync_end = 1080 + 3 + 5,
2618 .vtotal = 1080 + 3 + 5 + 23,
2620 .flags = DRM_MODE_FLAG_NVSYNC | DRM_MODE_FLAG_NHSYNC,
2624 static const struct panel_desc neweast_wjfh116008a = {
2625 .modes = neweast_wjfh116008a_modes,
2637 .bus_format = MEDIA_BUS_FMT_RGB666_1X18,
2638 .connector_type = DRM_MODE_CONNECTOR_eDP,
2641 static const struct drm_display_mode newhaven_nhd_43_480272ef_atxl_mode = {
2644 .hsync_start = 480 + 2,
2645 .hsync_end = 480 + 2 + 41,
2646 .htotal = 480 + 2 + 41 + 2,
2648 .vsync_start = 272 + 2,
2649 .vsync_end = 272 + 2 + 10,
2650 .vtotal = 272 + 2 + 10 + 2,
2652 .flags = DRM_MODE_FLAG_NVSYNC | DRM_MODE_FLAG_NHSYNC,
2655 static const struct panel_desc newhaven_nhd_43_480272ef_atxl = {
2656 .modes = &newhaven_nhd_43_480272ef_atxl_mode,
2663 .bus_format = MEDIA_BUS_FMT_RGB888_1X24,
2664 .bus_flags = DRM_BUS_FLAG_DE_HIGH | DRM_BUS_FLAG_PIXDATA_DRIVE_POSEDGE |
2665 DRM_BUS_FLAG_SYNC_DRIVE_POSEDGE,
2668 static const struct display_timing nlt_nl192108ac18_02d_timing = {
2669 .pixelclock = { 130000000, 148350000, 163000000 },
2670 .hactive = { 1920, 1920, 1920 },
2671 .hfront_porch = { 80, 100, 100 },
2672 .hback_porch = { 100, 120, 120 },
2673 .hsync_len = { 50, 60, 60 },
2674 .vactive = { 1080, 1080, 1080 },
2675 .vfront_porch = { 12, 30, 30 },
2676 .vback_porch = { 4, 10, 10 },
2677 .vsync_len = { 4, 5, 5 },
2680 static const struct panel_desc nlt_nl192108ac18_02d = {
2681 .timings = &nlt_nl192108ac18_02d_timing,
2691 .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
2692 .connector_type = DRM_MODE_CONNECTOR_LVDS,
2695 static const struct drm_display_mode nvd_9128_mode = {
2698 .hsync_start = 800 + 130,
2699 .hsync_end = 800 + 130 + 98,
2700 .htotal = 800 + 0 + 130 + 98,
2702 .vsync_start = 480 + 10,
2703 .vsync_end = 480 + 10 + 50,
2704 .vtotal = 480 + 0 + 10 + 50,
2707 static const struct panel_desc nvd_9128 = {
2708 .modes = &nvd_9128_mode,
2715 .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
2716 .connector_type = DRM_MODE_CONNECTOR_LVDS,
2719 static const struct display_timing okaya_rs800480t_7x0gp_timing = {
2720 .pixelclock = { 30000000, 30000000, 40000000 },
2721 .hactive = { 800, 800, 800 },
2722 .hfront_porch = { 40, 40, 40 },
2723 .hback_porch = { 40, 40, 40 },
2724 .hsync_len = { 1, 48, 48 },
2725 .vactive = { 480, 480, 480 },
2726 .vfront_porch = { 13, 13, 13 },
2727 .vback_porch = { 29, 29, 29 },
2728 .vsync_len = { 3, 3, 3 },
2729 .flags = DISPLAY_FLAGS_DE_HIGH,
2732 static const struct panel_desc okaya_rs800480t_7x0gp = {
2733 .timings = &okaya_rs800480t_7x0gp_timing,
2746 .bus_format = MEDIA_BUS_FMT_RGB666_1X18,
2749 static const struct drm_display_mode olimex_lcd_olinuxino_43ts_mode = {
2752 .hsync_start = 480 + 5,
2753 .hsync_end = 480 + 5 + 30,
2754 .htotal = 480 + 5 + 30 + 10,
2756 .vsync_start = 272 + 8,
2757 .vsync_end = 272 + 8 + 5,
2758 .vtotal = 272 + 8 + 5 + 3,
2762 static const struct panel_desc olimex_lcd_olinuxino_43ts = {
2763 .modes = &olimex_lcd_olinuxino_43ts_mode,
2769 .bus_format = MEDIA_BUS_FMT_RGB888_1X24,
2773 * 800x480 CVT. The panel appears to be quite accepting, at least as far as
2774 * pixel clocks, but this is the timing that was being used in the Adafruit
2775 * installation instructions.
2777 static const struct drm_display_mode ontat_yx700wv03_mode = {
2788 .flags = DRM_MODE_FLAG_NVSYNC | DRM_MODE_FLAG_NHSYNC,
2793 * https://www.adafruit.com/images/product-files/2406/c3163.pdf
2795 static const struct panel_desc ontat_yx700wv03 = {
2796 .modes = &ontat_yx700wv03_mode,
2803 .bus_format = MEDIA_BUS_FMT_RGB666_1X18,
2806 static const struct drm_display_mode ortustech_com37h3m_mode = {
2809 .hsync_start = 480 + 40,
2810 .hsync_end = 480 + 40 + 10,
2811 .htotal = 480 + 40 + 10 + 40,
2813 .vsync_start = 640 + 4,
2814 .vsync_end = 640 + 4 + 2,
2815 .vtotal = 640 + 4 + 2 + 4,
2817 .flags = DRM_MODE_FLAG_NVSYNC | DRM_MODE_FLAG_NHSYNC,
2820 static const struct panel_desc ortustech_com37h3m = {
2821 .modes = &ortustech_com37h3m_mode,
2825 .width = 56, /* 56.16mm */
2826 .height = 75, /* 74.88mm */
2828 .bus_format = MEDIA_BUS_FMT_RGB888_1X24,
2829 .bus_flags = DRM_BUS_FLAG_DE_HIGH | DRM_BUS_FLAG_PIXDATA_POSEDGE |
2830 DRM_BUS_FLAG_SYNC_DRIVE_POSEDGE,
2833 static const struct drm_display_mode ortustech_com43h4m85ulc_mode = {
2836 .hsync_start = 480 + 10,
2837 .hsync_end = 480 + 10 + 10,
2838 .htotal = 480 + 10 + 10 + 15,
2840 .vsync_start = 800 + 3,
2841 .vsync_end = 800 + 3 + 3,
2842 .vtotal = 800 + 3 + 3 + 3,
2846 static const struct panel_desc ortustech_com43h4m85ulc = {
2847 .modes = &ortustech_com43h4m85ulc_mode,
2854 .bus_format = MEDIA_BUS_FMT_RGB888_1X24,
2855 .bus_flags = DRM_BUS_FLAG_DE_HIGH | DRM_BUS_FLAG_PIXDATA_DRIVE_POSEDGE,
2856 .connector_type = DRM_MODE_CONNECTOR_DPI,
2859 static const struct drm_display_mode osddisplays_osd070t1718_19ts_mode = {
2862 .hsync_start = 800 + 210,
2863 .hsync_end = 800 + 210 + 30,
2864 .htotal = 800 + 210 + 30 + 16,
2866 .vsync_start = 480 + 22,
2867 .vsync_end = 480 + 22 + 13,
2868 .vtotal = 480 + 22 + 13 + 10,
2870 .flags = DRM_MODE_FLAG_NVSYNC | DRM_MODE_FLAG_NHSYNC,
2873 static const struct panel_desc osddisplays_osd070t1718_19ts = {
2874 .modes = &osddisplays_osd070t1718_19ts_mode,
2881 .bus_format = MEDIA_BUS_FMT_RGB888_1X24,
2882 .bus_flags = DRM_BUS_FLAG_DE_HIGH | DRM_BUS_FLAG_PIXDATA_DRIVE_POSEDGE |
2883 DRM_BUS_FLAG_SYNC_DRIVE_POSEDGE,
2884 .connector_type = DRM_MODE_CONNECTOR_DPI,
2887 static const struct drm_display_mode pda_91_00156_a0_mode = {
2890 .hsync_start = 800 + 1,
2891 .hsync_end = 800 + 1 + 64,
2892 .htotal = 800 + 1 + 64 + 64,
2894 .vsync_start = 480 + 1,
2895 .vsync_end = 480 + 1 + 23,
2896 .vtotal = 480 + 1 + 23 + 22,
2900 static const struct panel_desc pda_91_00156_a0 = {
2901 .modes = &pda_91_00156_a0_mode,
2907 .bus_format = MEDIA_BUS_FMT_RGB888_1X24,
2911 static const struct drm_display_mode qd43003c0_40_mode = {
2914 .hsync_start = 480 + 8,
2915 .hsync_end = 480 + 8 + 4,
2916 .htotal = 480 + 8 + 4 + 39,
2918 .vsync_start = 272 + 4,
2919 .vsync_end = 272 + 4 + 10,
2920 .vtotal = 272 + 4 + 10 + 2,
2924 static const struct panel_desc qd43003c0_40 = {
2925 .modes = &qd43003c0_40_mode,
2932 .bus_format = MEDIA_BUS_FMT_RGB888_1X24,
2935 static const struct display_timing rocktech_rk070er9427_timing = {
2936 .pixelclock = { 26400000, 33300000, 46800000 },
2937 .hactive = { 800, 800, 800 },
2938 .hfront_porch = { 16, 210, 354 },
2939 .hback_porch = { 46, 46, 46 },
2940 .hsync_len = { 1, 1, 1 },
2941 .vactive = { 480, 480, 480 },
2942 .vfront_porch = { 7, 22, 147 },
2943 .vback_porch = { 23, 23, 23 },
2944 .vsync_len = { 1, 1, 1 },
2945 .flags = DISPLAY_FLAGS_DE_HIGH,
2948 static const struct panel_desc rocktech_rk070er9427 = {
2949 .timings = &rocktech_rk070er9427_timing,
2962 .bus_format = MEDIA_BUS_FMT_RGB666_1X18,
2965 static const struct drm_display_mode rocktech_rk101ii01d_ct_mode = {
2968 .hsync_start = 1280 + 48,
2969 .hsync_end = 1280 + 48 + 32,
2970 .htotal = 1280 + 48 + 32 + 80,
2972 .vsync_start = 800 + 2,
2973 .vsync_end = 800 + 2 + 5,
2974 .vtotal = 800 + 2 + 5 + 16,
2978 static const struct panel_desc rocktech_rk101ii01d_ct = {
2979 .modes = &rocktech_rk101ii01d_ct_mode,
2989 .bus_flags = DRM_BUS_FLAG_DE_HIGH,
2990 .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
2991 .connector_type = DRM_MODE_CONNECTOR_LVDS,
2994 static const struct drm_display_mode samsung_lsn122dl01_c01_mode = {
2997 .hsync_start = 2560 + 48,
2998 .hsync_end = 2560 + 48 + 32,
2999 .htotal = 2560 + 48 + 32 + 80,
3001 .vsync_start = 1600 + 2,
3002 .vsync_end = 1600 + 2 + 5,
3003 .vtotal = 1600 + 2 + 5 + 57,
3007 static const struct panel_desc samsung_lsn122dl01_c01 = {
3008 .modes = &samsung_lsn122dl01_c01_mode,
3016 static const struct drm_display_mode samsung_ltn101nt05_mode = {
3019 .hsync_start = 1024 + 24,
3020 .hsync_end = 1024 + 24 + 136,
3021 .htotal = 1024 + 24 + 136 + 160,
3023 .vsync_start = 600 + 3,
3024 .vsync_end = 600 + 3 + 6,
3025 .vtotal = 600 + 3 + 6 + 61,
3029 static const struct panel_desc samsung_ltn101nt05 = {
3030 .modes = &samsung_ltn101nt05_mode,
3039 static const struct drm_display_mode samsung_ltn140at29_301_mode = {
3042 .hsync_start = 1366 + 64,
3043 .hsync_end = 1366 + 64 + 48,
3044 .htotal = 1366 + 64 + 48 + 128,
3046 .vsync_start = 768 + 2,
3047 .vsync_end = 768 + 2 + 5,
3048 .vtotal = 768 + 2 + 5 + 17,
3052 static const struct panel_desc samsung_ltn140at29_301 = {
3053 .modes = &samsung_ltn140at29_301_mode,
3062 static const struct display_timing satoz_sat050at40h12r2_timing = {
3063 .pixelclock = {33300000, 33300000, 50000000},
3064 .hactive = {800, 800, 800},
3065 .hfront_porch = {16, 210, 354},
3066 .hback_porch = {46, 46, 46},
3067 .hsync_len = {1, 1, 40},
3068 .vactive = {480, 480, 480},
3069 .vfront_porch = {7, 22, 147},
3070 .vback_porch = {23, 23, 23},
3071 .vsync_len = {1, 1, 20},
3074 static const struct panel_desc satoz_sat050at40h12r2 = {
3075 .timings = &satoz_sat050at40h12r2_timing,
3082 .bus_format = MEDIA_BUS_FMT_RGB888_1X24,
3083 .connector_type = DRM_MODE_CONNECTOR_LVDS,
3086 static const struct drm_display_mode sharp_ld_d5116z01b_mode = {
3089 .hsync_start = 1920 + 48,
3090 .hsync_end = 1920 + 48 + 32,
3091 .htotal = 1920 + 48 + 32 + 80,
3093 .vsync_start = 1280 + 3,
3094 .vsync_end = 1280 + 3 + 10,
3095 .vtotal = 1280 + 3 + 10 + 57,
3097 .flags = DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC,
3100 static const struct panel_desc sharp_ld_d5116z01b = {
3101 .modes = &sharp_ld_d5116z01b_mode,
3108 .bus_format = MEDIA_BUS_FMT_RGB888_1X24,
3109 .bus_flags = DRM_BUS_FLAG_DATA_MSB_TO_LSB,
3112 static const struct drm_display_mode sharp_lq070y3dg3b_mode = {
3115 .hsync_start = 800 + 64,
3116 .hsync_end = 800 + 64 + 128,
3117 .htotal = 800 + 64 + 128 + 64,
3119 .vsync_start = 480 + 8,
3120 .vsync_end = 480 + 8 + 2,
3121 .vtotal = 480 + 8 + 2 + 35,
3123 .flags = DISPLAY_FLAGS_PIXDATA_POSEDGE,
3126 static const struct panel_desc sharp_lq070y3dg3b = {
3127 .modes = &sharp_lq070y3dg3b_mode,
3131 .width = 152, /* 152.4mm */
3132 .height = 91, /* 91.4mm */
3134 .bus_format = MEDIA_BUS_FMT_RGB888_1X24,
3135 .bus_flags = DRM_BUS_FLAG_DE_HIGH | DRM_BUS_FLAG_PIXDATA_POSEDGE |
3136 DRM_BUS_FLAG_SYNC_DRIVE_POSEDGE,
3139 static const struct drm_display_mode sharp_lq035q7db03_mode = {
3142 .hsync_start = 240 + 16,
3143 .hsync_end = 240 + 16 + 7,
3144 .htotal = 240 + 16 + 7 + 5,
3146 .vsync_start = 320 + 9,
3147 .vsync_end = 320 + 9 + 1,
3148 .vtotal = 320 + 9 + 1 + 7,
3152 static const struct panel_desc sharp_lq035q7db03 = {
3153 .modes = &sharp_lq035q7db03_mode,
3160 .bus_format = MEDIA_BUS_FMT_RGB666_1X18,
3163 static const struct display_timing sharp_lq101k1ly04_timing = {
3164 .pixelclock = { 60000000, 65000000, 80000000 },
3165 .hactive = { 1280, 1280, 1280 },
3166 .hfront_porch = { 20, 20, 20 },
3167 .hback_porch = { 20, 20, 20 },
3168 .hsync_len = { 10, 10, 10 },
3169 .vactive = { 800, 800, 800 },
3170 .vfront_porch = { 4, 4, 4 },
3171 .vback_porch = { 4, 4, 4 },
3172 .vsync_len = { 4, 4, 4 },
3173 .flags = DISPLAY_FLAGS_PIXDATA_POSEDGE,
3176 static const struct panel_desc sharp_lq101k1ly04 = {
3177 .timings = &sharp_lq101k1ly04_timing,
3184 .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_JEIDA,
3185 .connector_type = DRM_MODE_CONNECTOR_LVDS,
3188 static const struct display_timing sharp_lq123p1jx31_timing = {
3189 .pixelclock = { 252750000, 252750000, 266604720 },
3190 .hactive = { 2400, 2400, 2400 },
3191 .hfront_porch = { 48, 48, 48 },
3192 .hback_porch = { 80, 80, 84 },
3193 .hsync_len = { 32, 32, 32 },
3194 .vactive = { 1600, 1600, 1600 },
3195 .vfront_porch = { 3, 3, 3 },
3196 .vback_porch = { 33, 33, 120 },
3197 .vsync_len = { 10, 10, 10 },
3198 .flags = DISPLAY_FLAGS_VSYNC_LOW | DISPLAY_FLAGS_HSYNC_LOW,
3201 static const struct panel_desc sharp_lq123p1jx31 = {
3202 .timings = &sharp_lq123p1jx31_timing,
3216 static const struct display_timing sharp_ls020b1dd01d_timing = {
3217 .pixelclock = { 2000000, 4200000, 5000000 },
3218 .hactive = { 240, 240, 240 },
3219 .hfront_porch = { 66, 66, 66 },
3220 .hback_porch = { 1, 1, 1 },
3221 .hsync_len = { 1, 1, 1 },
3222 .vactive = { 160, 160, 160 },
3223 .vfront_porch = { 52, 52, 52 },
3224 .vback_porch = { 6, 6, 6 },
3225 .vsync_len = { 10, 10, 10 },
3226 .flags = DISPLAY_FLAGS_HSYNC_HIGH | DISPLAY_FLAGS_VSYNC_LOW,
3229 static const struct panel_desc sharp_ls020b1dd01d = {
3230 .timings = &sharp_ls020b1dd01d_timing,
3237 .bus_format = MEDIA_BUS_FMT_RGB565_1X16,
3238 .bus_flags = DRM_BUS_FLAG_DE_HIGH
3239 | DRM_BUS_FLAG_PIXDATA_NEGEDGE
3240 | DRM_BUS_FLAG_SHARP_SIGNALS,
3243 static const struct drm_display_mode shelly_sca07010_bfn_lnn_mode = {
3246 .hsync_start = 800 + 1,
3247 .hsync_end = 800 + 1 + 64,
3248 .htotal = 800 + 1 + 64 + 64,
3250 .vsync_start = 480 + 1,
3251 .vsync_end = 480 + 1 + 23,
3252 .vtotal = 480 + 1 + 23 + 22,
3256 static const struct panel_desc shelly_sca07010_bfn_lnn = {
3257 .modes = &shelly_sca07010_bfn_lnn_mode,
3263 .bus_format = MEDIA_BUS_FMT_RGB666_1X18,
3266 static const struct drm_display_mode starry_kr070pe2t_mode = {
3269 .hsync_start = 800 + 209,
3270 .hsync_end = 800 + 209 + 1,
3271 .htotal = 800 + 209 + 1 + 45,
3273 .vsync_start = 480 + 22,
3274 .vsync_end = 480 + 22 + 1,
3275 .vtotal = 480 + 22 + 1 + 22,
3279 static const struct panel_desc starry_kr070pe2t = {
3280 .modes = &starry_kr070pe2t_mode,
3287 .bus_format = MEDIA_BUS_FMT_RGB888_1X24,
3288 .bus_flags = DRM_BUS_FLAG_DE_HIGH | DRM_BUS_FLAG_PIXDATA_DRIVE_NEGEDGE,
3289 .connector_type = DRM_MODE_CONNECTOR_LVDS,
3292 static const struct drm_display_mode starry_kr122ea0sra_mode = {
3295 .hsync_start = 1920 + 16,
3296 .hsync_end = 1920 + 16 + 16,
3297 .htotal = 1920 + 16 + 16 + 32,
3299 .vsync_start = 1200 + 15,
3300 .vsync_end = 1200 + 15 + 2,
3301 .vtotal = 1200 + 15 + 2 + 18,
3303 .flags = DRM_MODE_FLAG_NVSYNC | DRM_MODE_FLAG_NHSYNC,
3306 static const struct panel_desc starry_kr122ea0sra = {
3307 .modes = &starry_kr122ea0sra_mode,
3314 .prepare = 10 + 200,
3316 .unprepare = 10 + 500,
3320 static const struct drm_display_mode tfc_s9700rtwv43tr_01b_mode = {
3323 .hsync_start = 800 + 39,
3324 .hsync_end = 800 + 39 + 47,
3325 .htotal = 800 + 39 + 47 + 39,
3327 .vsync_start = 480 + 13,
3328 .vsync_end = 480 + 13 + 2,
3329 .vtotal = 480 + 13 + 2 + 29,
3333 static const struct panel_desc tfc_s9700rtwv43tr_01b = {
3334 .modes = &tfc_s9700rtwv43tr_01b_mode,
3341 .bus_format = MEDIA_BUS_FMT_RGB888_1X24,
3342 .bus_flags = DRM_BUS_FLAG_DE_HIGH | DRM_BUS_FLAG_PIXDATA_POSEDGE,
3345 static const struct display_timing tianma_tm070jdhg30_timing = {
3346 .pixelclock = { 62600000, 68200000, 78100000 },
3347 .hactive = { 1280, 1280, 1280 },
3348 .hfront_porch = { 15, 64, 159 },
3349 .hback_porch = { 5, 5, 5 },
3350 .hsync_len = { 1, 1, 256 },
3351 .vactive = { 800, 800, 800 },
3352 .vfront_porch = { 3, 40, 99 },
3353 .vback_porch = { 2, 2, 2 },
3354 .vsync_len = { 1, 1, 128 },
3355 .flags = DISPLAY_FLAGS_DE_HIGH,
3358 static const struct panel_desc tianma_tm070jdhg30 = {
3359 .timings = &tianma_tm070jdhg30_timing,
3366 .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
3367 .connector_type = DRM_MODE_CONNECTOR_LVDS,
3370 static const struct display_timing tianma_tm070rvhg71_timing = {
3371 .pixelclock = { 27700000, 29200000, 39600000 },
3372 .hactive = { 800, 800, 800 },
3373 .hfront_porch = { 12, 40, 212 },
3374 .hback_porch = { 88, 88, 88 },
3375 .hsync_len = { 1, 1, 40 },
3376 .vactive = { 480, 480, 480 },
3377 .vfront_porch = { 1, 13, 88 },
3378 .vback_porch = { 32, 32, 32 },
3379 .vsync_len = { 1, 1, 3 },
3380 .flags = DISPLAY_FLAGS_DE_HIGH,
3383 static const struct panel_desc tianma_tm070rvhg71 = {
3384 .timings = &tianma_tm070rvhg71_timing,
3391 .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
3392 .connector_type = DRM_MODE_CONNECTOR_LVDS,
3395 static const struct drm_display_mode ti_nspire_cx_lcd_mode[] = {
3399 .hsync_start = 320 + 50,
3400 .hsync_end = 320 + 50 + 6,
3401 .htotal = 320 + 50 + 6 + 38,
3403 .vsync_start = 240 + 3,
3404 .vsync_end = 240 + 3 + 1,
3405 .vtotal = 240 + 3 + 1 + 17,
3407 .flags = DRM_MODE_FLAG_NVSYNC | DRM_MODE_FLAG_NHSYNC,
3411 static const struct panel_desc ti_nspire_cx_lcd_panel = {
3412 .modes = ti_nspire_cx_lcd_mode,
3419 .bus_format = MEDIA_BUS_FMT_RGB888_1X24,
3420 .bus_flags = DRM_BUS_FLAG_PIXDATA_NEGEDGE,
3423 static const struct drm_display_mode ti_nspire_classic_lcd_mode[] = {
3427 .hsync_start = 320 + 6,
3428 .hsync_end = 320 + 6 + 6,
3429 .htotal = 320 + 6 + 6 + 6,
3431 .vsync_start = 240 + 0,
3432 .vsync_end = 240 + 0 + 1,
3433 .vtotal = 240 + 0 + 1 + 0,
3435 .flags = DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC,
3439 static const struct panel_desc ti_nspire_classic_lcd_panel = {
3440 .modes = ti_nspire_classic_lcd_mode,
3442 /* The grayscale panel has 8 bit for the color .. Y (black) */
3448 /* This is the grayscale bus format */
3449 .bus_format = MEDIA_BUS_FMT_Y8_1X8,
3450 .bus_flags = DRM_BUS_FLAG_PIXDATA_POSEDGE,
3453 static const struct drm_display_mode toshiba_lt089ac29000_mode = {
3456 .hsync_start = 1280 + 192,
3457 .hsync_end = 1280 + 192 + 128,
3458 .htotal = 1280 + 192 + 128 + 64,
3460 .vsync_start = 768 + 20,
3461 .vsync_end = 768 + 20 + 7,
3462 .vtotal = 768 + 20 + 7 + 3,
3466 static const struct panel_desc toshiba_lt089ac29000 = {
3467 .modes = &toshiba_lt089ac29000_mode,
3473 .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_JEIDA,
3474 .bus_flags = DRM_BUS_FLAG_DE_HIGH | DRM_BUS_FLAG_PIXDATA_DRIVE_POSEDGE,
3475 .connector_type = DRM_MODE_CONNECTOR_LVDS,
3478 static const struct drm_display_mode tpk_f07a_0102_mode = {
3481 .hsync_start = 800 + 40,
3482 .hsync_end = 800 + 40 + 128,
3483 .htotal = 800 + 40 + 128 + 88,
3485 .vsync_start = 480 + 10,
3486 .vsync_end = 480 + 10 + 2,
3487 .vtotal = 480 + 10 + 2 + 33,
3491 static const struct panel_desc tpk_f07a_0102 = {
3492 .modes = &tpk_f07a_0102_mode,
3498 .bus_flags = DRM_BUS_FLAG_PIXDATA_DRIVE_POSEDGE,
3501 static const struct drm_display_mode tpk_f10a_0102_mode = {
3504 .hsync_start = 1024 + 176,
3505 .hsync_end = 1024 + 176 + 5,
3506 .htotal = 1024 + 176 + 5 + 88,
3508 .vsync_start = 600 + 20,
3509 .vsync_end = 600 + 20 + 5,
3510 .vtotal = 600 + 20 + 5 + 25,
3514 static const struct panel_desc tpk_f10a_0102 = {
3515 .modes = &tpk_f10a_0102_mode,
3523 static const struct display_timing urt_umsh_8596md_timing = {
3524 .pixelclock = { 33260000, 33260000, 33260000 },
3525 .hactive = { 800, 800, 800 },
3526 .hfront_porch = { 41, 41, 41 },
3527 .hback_porch = { 216 - 128, 216 - 128, 216 - 128 },
3528 .hsync_len = { 71, 128, 128 },
3529 .vactive = { 480, 480, 480 },
3530 .vfront_porch = { 10, 10, 10 },
3531 .vback_porch = { 35 - 2, 35 - 2, 35 - 2 },
3532 .vsync_len = { 2, 2, 2 },
3533 .flags = DISPLAY_FLAGS_DE_HIGH | DISPLAY_FLAGS_PIXDATA_NEGEDGE |
3534 DISPLAY_FLAGS_HSYNC_LOW | DISPLAY_FLAGS_VSYNC_LOW,
3537 static const struct panel_desc urt_umsh_8596md_lvds = {
3538 .timings = &urt_umsh_8596md_timing,
3545 .bus_format = MEDIA_BUS_FMT_RGB666_1X7X3_SPWG,
3546 .connector_type = DRM_MODE_CONNECTOR_LVDS,
3549 static const struct panel_desc urt_umsh_8596md_parallel = {
3550 .timings = &urt_umsh_8596md_timing,
3557 .bus_format = MEDIA_BUS_FMT_RGB666_1X18,
3560 static const struct drm_display_mode vl050_8048nt_c01_mode = {
3563 .hsync_start = 800 + 210,
3564 .hsync_end = 800 + 210 + 20,
3565 .htotal = 800 + 210 + 20 + 46,
3567 .vsync_start = 480 + 22,
3568 .vsync_end = 480 + 22 + 10,
3569 .vtotal = 480 + 22 + 10 + 23,
3571 .flags = DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC,
3574 static const struct panel_desc vl050_8048nt_c01 = {
3575 .modes = &vl050_8048nt_c01_mode,
3582 .bus_format = MEDIA_BUS_FMT_RGB888_1X24,
3583 .bus_flags = DRM_BUS_FLAG_DE_HIGH | DRM_BUS_FLAG_PIXDATA_POSEDGE,
3586 static const struct drm_display_mode winstar_wf35ltiacd_mode = {
3589 .hsync_start = 320 + 20,
3590 .hsync_end = 320 + 20 + 30,
3591 .htotal = 320 + 20 + 30 + 38,
3593 .vsync_start = 240 + 4,
3594 .vsync_end = 240 + 4 + 3,
3595 .vtotal = 240 + 4 + 3 + 15,
3597 .flags = DRM_MODE_FLAG_NVSYNC | DRM_MODE_FLAG_NHSYNC,
3600 static const struct panel_desc winstar_wf35ltiacd = {
3601 .modes = &winstar_wf35ltiacd_mode,
3608 .bus_format = MEDIA_BUS_FMT_RGB888_1X24,
3611 static const struct drm_display_mode arm_rtsm_mode[] = {
3615 .hsync_start = 1024 + 24,
3616 .hsync_end = 1024 + 24 + 136,
3617 .htotal = 1024 + 24 + 136 + 160,
3619 .vsync_start = 768 + 3,
3620 .vsync_end = 768 + 3 + 6,
3621 .vtotal = 768 + 3 + 6 + 29,
3623 .flags = DRM_MODE_FLAG_NVSYNC | DRM_MODE_FLAG_NHSYNC,
3627 static const struct panel_desc arm_rtsm = {
3628 .modes = arm_rtsm_mode,
3635 .bus_format = MEDIA_BUS_FMT_RGB888_1X24,
3638 static const struct of_device_id platform_of_match[] = {
3640 .compatible = "ampire,am-480272h3tmqw-t01h",
3641 .data = &ire_am_480272h3tmqw_t01h,
3643 .compatible = "ampire,am800480r3tmqwa1h",
3644 .data = &ire_am800480r3tmqwa1h,
3646 .compatible = "arm,rtsm-display",
3649 .compatible = "armadeus,st0700-adapt",
3650 .data = &armadeus_st0700_adapt,
3652 .compatible = "auo,b101aw03",
3653 .data = &auo_b101aw03,
3655 .compatible = "auo,b101ean01",
3656 .data = &auo_b101ean01,
3658 .compatible = "auo,b101xtn01",
3659 .data = &auo_b101xtn01,
3661 .compatible = "auo,b116xa01",
3662 .data = &auo_b116xak01,
3664 .compatible = "auo,b116xw03",
3665 .data = &auo_b116xw03,
3667 .compatible = "auo,b133htn01",
3668 .data = &auo_b133htn01,
3670 .compatible = "auo,b133xtn01",
3671 .data = &auo_b133xtn01,
3673 .compatible = "auo,g070vvn01",
3674 .data = &auo_g070vvn01,
3676 .compatible = "auo,g101evn010",
3677 .data = &auo_g101evn010,
3679 .compatible = "auo,g104sn02",
3680 .data = &auo_g104sn02,
3682 .compatible = "auo,g121ean01",
3683 .data = &auo_g121ean01,
3685 .compatible = "auo,g133han01",
3686 .data = &auo_g133han01,
3688 .compatible = "auo,g156xtn01",
3689 .data = &auo_g156xtn01,
3691 .compatible = "auo,g185han01",
3692 .data = &auo_g185han01,
3694 .compatible = "auo,g190ean01",
3695 .data = &auo_g190ean01,
3697 .compatible = "auo,p320hvn03",
3698 .data = &auo_p320hvn03,
3700 .compatible = "auo,t215hvn01",
3701 .data = &auo_t215hvn01,
3703 .compatible = "avic,tm070ddh03",
3704 .data = &avic_tm070ddh03,
3706 .compatible = "bananapi,s070wv20-ct16",
3707 .data = &bananapi_s070wv20_ct16,
3709 .compatible = "boe,hv070wsa-100",
3710 .data = &boe_hv070wsa
3712 .compatible = "boe,nv101wxmn51",
3713 .data = &boe_nv101wxmn51,
3715 .compatible = "boe,nv133fhm-n61",
3716 .data = &boe_nv133fhm_n61,
3718 .compatible = "boe,nv133fhm-n62",
3719 .data = &boe_nv133fhm_n61,
3721 .compatible = "boe,nv140fhmn49",
3722 .data = &boe_nv140fhmn49,
3724 .compatible = "cdtech,s043wq26h-ct7",
3725 .data = &cdtech_s043wq26h_ct7,
3727 .compatible = "cdtech,s070wv95-ct16",
3728 .data = &cdtech_s070wv95_ct16,
3730 .compatible = "chunghwa,claa070wp03xg",
3731 .data = &chunghwa_claa070wp03xg,
3733 .compatible = "chunghwa,claa101wa01a",
3734 .data = &chunghwa_claa101wa01a
3736 .compatible = "chunghwa,claa101wb01",
3737 .data = &chunghwa_claa101wb01
3739 .compatible = "dataimage,scf0700c48ggu18",
3740 .data = &dataimage_scf0700c48ggu18,
3742 .compatible = "dlc,dlc0700yzg-1",
3743 .data = &dlc_dlc0700yzg_1,
3745 .compatible = "dlc,dlc1010gig",
3746 .data = &dlc_dlc1010gig,
3748 .compatible = "edt,et035012dm6",
3749 .data = &edt_et035012dm6,
3751 .compatible = "edt,etm043080dh6gp",
3752 .data = &edt_etm043080dh6gp,
3754 .compatible = "edt,etm0430g0dh6",
3755 .data = &edt_etm0430g0dh6,
3757 .compatible = "edt,et057090dhu",
3758 .data = &edt_et057090dhu,
3760 .compatible = "edt,et070080dh6",
3761 .data = &edt_etm0700g0dh6,
3763 .compatible = "edt,etm0700g0dh6",
3764 .data = &edt_etm0700g0dh6,
3766 .compatible = "edt,etm0700g0bdh6",
3767 .data = &edt_etm0700g0bdh6,
3769 .compatible = "edt,etm0700g0edh6",
3770 .data = &edt_etm0700g0bdh6,
3772 .compatible = "evervision,vgg804821",
3773 .data = &evervision_vgg804821,
3775 .compatible = "foxlink,fl500wvr00-a0t",
3776 .data = &foxlink_fl500wvr00_a0t,
3778 .compatible = "frida,frd350h54004",
3779 .data = &frida_frd350h54004,
3781 .compatible = "friendlyarm,hd702e",
3782 .data = &friendlyarm_hd702e,
3784 .compatible = "giantplus,gpg482739qs5",
3785 .data = &giantplus_gpg482739qs5
3787 .compatible = "giantplus,gpm940b0",
3788 .data = &giantplus_gpm940b0,
3790 .compatible = "hannstar,hsd070pww1",
3791 .data = &hannstar_hsd070pww1,
3793 .compatible = "hannstar,hsd100pxn1",
3794 .data = &hannstar_hsd100pxn1,
3796 .compatible = "hit,tx23d38vm0caa",
3797 .data = &hitachi_tx23d38vm0caa
3799 .compatible = "innolux,at043tn24",
3800 .data = &innolux_at043tn24,
3802 .compatible = "innolux,at070tn92",
3803 .data = &innolux_at070tn92,
3805 .compatible = "innolux,g070y2-l01",
3806 .data = &innolux_g070y2_l01,
3808 .compatible = "innolux,g101ice-l01",
3809 .data = &innolux_g101ice_l01
3811 .compatible = "innolux,g121i1-l01",
3812 .data = &innolux_g121i1_l01
3814 .compatible = "innolux,g121x1-l03",
3815 .data = &innolux_g121x1_l03,
3817 .compatible = "innolux,n116bge",
3818 .data = &innolux_n116bge,
3820 .compatible = "innolux,n156bge-l21",
3821 .data = &innolux_n156bge_l21,
3823 .compatible = "innolux,p120zdg-bf1",
3824 .data = &innolux_p120zdg_bf1,
3826 .compatible = "innolux,zj070na-01p",
3827 .data = &innolux_zj070na_01p,
3829 .compatible = "ivo,m133nwf4-r0",
3830 .data = &ivo_m133nwf4_r0,
3832 .compatible = "koe,tx14d24vm1bpa",
3833 .data = &koe_tx14d24vm1bpa,
3835 .compatible = "koe,tx31d200vm0baa",
3836 .data = &koe_tx31d200vm0baa,
3838 .compatible = "kyo,tcg121xglp",
3839 .data = &kyo_tcg121xglp,
3841 .compatible = "lemaker,bl035-rgb-002",
3842 .data = &lemaker_bl035_rgb_002,
3844 .compatible = "lg,lb070wv8",
3845 .data = &lg_lb070wv8,
3847 .compatible = "lg,lp079qx1-sp0v",
3848 .data = &lg_lp079qx1_sp0v,
3850 .compatible = "lg,lp097qx1-spa1",
3851 .data = &lg_lp097qx1_spa1,
3853 .compatible = "lg,lp120up1",
3854 .data = &lg_lp120up1,
3856 .compatible = "lg,lp129qe",
3857 .data = &lg_lp129qe,
3859 .compatible = "logicpd,type28",
3860 .data = &logicpd_type_28,
3862 .compatible = "logictechno,lt161010-2nhc",
3863 .data = &logictechno_lt161010_2nh,
3865 .compatible = "logictechno,lt161010-2nhr",
3866 .data = &logictechno_lt161010_2nh,
3868 .compatible = "logictechno,lt170410-2whc",
3869 .data = &logictechno_lt170410_2whc,
3871 .compatible = "mitsubishi,aa070mc01-ca1",
3872 .data = &mitsubishi_aa070mc01,
3874 .compatible = "nec,nl12880bc20-05",
3875 .data = &nec_nl12880bc20_05,
3877 .compatible = "nec,nl4827hc19-05b",
3878 .data = &nec_nl4827hc19_05b,
3880 .compatible = "netron-dy,e231732",
3881 .data = &netron_dy_e231732,
3883 .compatible = "neweast,wjfh116008a",
3884 .data = &neweast_wjfh116008a,
3886 .compatible = "newhaven,nhd-4.3-480272ef-atxl",
3887 .data = &newhaven_nhd_43_480272ef_atxl,
3889 .compatible = "nlt,nl192108ac18-02d",
3890 .data = &nlt_nl192108ac18_02d,
3892 .compatible = "nvd,9128",
3895 .compatible = "okaya,rs800480t-7x0gp",
3896 .data = &okaya_rs800480t_7x0gp,
3898 .compatible = "olimex,lcd-olinuxino-43-ts",
3899 .data = &olimex_lcd_olinuxino_43ts,
3901 .compatible = "ontat,yx700wv03",
3902 .data = &ontat_yx700wv03,
3904 .compatible = "ortustech,com37h3m05dtc",
3905 .data = &ortustech_com37h3m,
3907 .compatible = "ortustech,com37h3m99dtc",
3908 .data = &ortustech_com37h3m,
3910 .compatible = "ortustech,com43h4m85ulc",
3911 .data = &ortustech_com43h4m85ulc,
3913 .compatible = "osddisplays,osd070t1718-19ts",
3914 .data = &osddisplays_osd070t1718_19ts,
3916 .compatible = "pda,91-00156-a0",
3917 .data = &pda_91_00156_a0,
3919 .compatible = "qiaodian,qd43003c0-40",
3920 .data = &qd43003c0_40,
3922 .compatible = "rocktech,rk070er9427",
3923 .data = &rocktech_rk070er9427,
3925 .compatible = "rocktech,rk101ii01d-ct",
3926 .data = &rocktech_rk101ii01d_ct,
3928 .compatible = "samsung,lsn122dl01-c01",
3929 .data = &samsung_lsn122dl01_c01,
3931 .compatible = "samsung,ltn101nt05",
3932 .data = &samsung_ltn101nt05,
3934 .compatible = "samsung,ltn140at29-301",
3935 .data = &samsung_ltn140at29_301,
3937 .compatible = "satoz,sat050at40h12r2",
3938 .data = &satoz_sat050at40h12r2,
3940 .compatible = "sharp,ld-d5116z01b",
3941 .data = &sharp_ld_d5116z01b,
3943 .compatible = "sharp,lq035q7db03",
3944 .data = &sharp_lq035q7db03,
3946 .compatible = "sharp,lq070y3dg3b",
3947 .data = &sharp_lq070y3dg3b,
3949 .compatible = "sharp,lq101k1ly04",
3950 .data = &sharp_lq101k1ly04,
3952 .compatible = "sharp,lq123p1jx31",
3953 .data = &sharp_lq123p1jx31,
3955 .compatible = "sharp,ls020b1dd01d",
3956 .data = &sharp_ls020b1dd01d,
3958 .compatible = "shelly,sca07010-bfn-lnn",
3959 .data = &shelly_sca07010_bfn_lnn,
3961 .compatible = "starry,kr070pe2t",
3962 .data = &starry_kr070pe2t,
3964 .compatible = "starry,kr122ea0sra",
3965 .data = &starry_kr122ea0sra,
3967 .compatible = "tfc,s9700rtwv43tr-01b",
3968 .data = &tfc_s9700rtwv43tr_01b,
3970 .compatible = "tianma,tm070jdhg30",
3971 .data = &tianma_tm070jdhg30,
3973 .compatible = "tianma,tm070rvhg71",
3974 .data = &tianma_tm070rvhg71,
3976 .compatible = "ti,nspire-cx-lcd-panel",
3977 .data = &ti_nspire_cx_lcd_panel,
3979 .compatible = "ti,nspire-classic-lcd-panel",
3980 .data = &ti_nspire_classic_lcd_panel,
3982 .compatible = "toshiba,lt089ac29000",
3983 .data = &toshiba_lt089ac29000,
3985 .compatible = "tpk,f07a-0102",
3986 .data = &tpk_f07a_0102,
3988 .compatible = "tpk,f10a-0102",
3989 .data = &tpk_f10a_0102,
3991 .compatible = "urt,umsh-8596md-t",
3992 .data = &urt_umsh_8596md_parallel,
3994 .compatible = "urt,umsh-8596md-1t",
3995 .data = &urt_umsh_8596md_parallel,
3997 .compatible = "urt,umsh-8596md-7t",
3998 .data = &urt_umsh_8596md_parallel,
4000 .compatible = "urt,umsh-8596md-11t",
4001 .data = &urt_umsh_8596md_lvds,
4003 .compatible = "urt,umsh-8596md-19t",
4004 .data = &urt_umsh_8596md_lvds,
4006 .compatible = "urt,umsh-8596md-20t",
4007 .data = &urt_umsh_8596md_parallel,
4009 .compatible = "vxt,vl050-8048nt-c01",
4010 .data = &vl050_8048nt_c01,
4012 .compatible = "winstar,wf35ltiacd",
4013 .data = &winstar_wf35ltiacd,
4015 /* Must be the last entry */
4016 .compatible = "panel-dpi",
4022 MODULE_DEVICE_TABLE(of, platform_of_match);
4024 static int panel_simple_platform_probe(struct platform_device *pdev)
4026 const struct of_device_id *id;
4028 id = of_match_node(platform_of_match, pdev->dev.of_node);
4032 return panel_simple_probe(&pdev->dev, id->data);
4035 static int panel_simple_platform_remove(struct platform_device *pdev)
4037 return panel_simple_remove(&pdev->dev);
4040 static void panel_simple_platform_shutdown(struct platform_device *pdev)
4042 panel_simple_shutdown(&pdev->dev);
4045 static struct platform_driver panel_simple_platform_driver = {
4047 .name = "panel-simple",
4048 .of_match_table = platform_of_match,
4050 .probe = panel_simple_platform_probe,
4051 .remove = panel_simple_platform_remove,
4052 .shutdown = panel_simple_platform_shutdown,
4055 struct panel_desc_dsi {
4056 struct panel_desc desc;
4058 unsigned long flags;
4059 enum mipi_dsi_pixel_format format;
4063 static const struct drm_display_mode auo_b080uan01_mode = {
4066 .hsync_start = 1200 + 62,
4067 .hsync_end = 1200 + 62 + 4,
4068 .htotal = 1200 + 62 + 4 + 62,
4070 .vsync_start = 1920 + 9,
4071 .vsync_end = 1920 + 9 + 2,
4072 .vtotal = 1920 + 9 + 2 + 8,
4076 static const struct panel_desc_dsi auo_b080uan01 = {
4078 .modes = &auo_b080uan01_mode,
4086 .flags = MIPI_DSI_MODE_VIDEO | MIPI_DSI_CLOCK_NON_CONTINUOUS,
4087 .format = MIPI_DSI_FMT_RGB888,
4091 static const struct drm_display_mode boe_tv080wum_nl0_mode = {
4094 .hsync_start = 1200 + 120,
4095 .hsync_end = 1200 + 120 + 20,
4096 .htotal = 1200 + 120 + 20 + 21,
4098 .vsync_start = 1920 + 21,
4099 .vsync_end = 1920 + 21 + 3,
4100 .vtotal = 1920 + 21 + 3 + 18,
4102 .flags = DRM_MODE_FLAG_NVSYNC | DRM_MODE_FLAG_NHSYNC,
4105 static const struct panel_desc_dsi boe_tv080wum_nl0 = {
4107 .modes = &boe_tv080wum_nl0_mode,
4114 .flags = MIPI_DSI_MODE_VIDEO |
4115 MIPI_DSI_MODE_VIDEO_BURST |
4116 MIPI_DSI_MODE_VIDEO_SYNC_PULSE,
4117 .format = MIPI_DSI_FMT_RGB888,
4121 static const struct drm_display_mode lg_ld070wx3_sl01_mode = {
4124 .hsync_start = 800 + 32,
4125 .hsync_end = 800 + 32 + 1,
4126 .htotal = 800 + 32 + 1 + 57,
4128 .vsync_start = 1280 + 28,
4129 .vsync_end = 1280 + 28 + 1,
4130 .vtotal = 1280 + 28 + 1 + 14,
4134 static const struct panel_desc_dsi lg_ld070wx3_sl01 = {
4136 .modes = &lg_ld070wx3_sl01_mode,
4144 .flags = MIPI_DSI_MODE_VIDEO | MIPI_DSI_CLOCK_NON_CONTINUOUS,
4145 .format = MIPI_DSI_FMT_RGB888,
4149 static const struct drm_display_mode lg_lh500wx1_sd03_mode = {
4152 .hsync_start = 720 + 12,
4153 .hsync_end = 720 + 12 + 4,
4154 .htotal = 720 + 12 + 4 + 112,
4156 .vsync_start = 1280 + 8,
4157 .vsync_end = 1280 + 8 + 4,
4158 .vtotal = 1280 + 8 + 4 + 12,
4162 static const struct panel_desc_dsi lg_lh500wx1_sd03 = {
4164 .modes = &lg_lh500wx1_sd03_mode,
4172 .flags = MIPI_DSI_MODE_VIDEO,
4173 .format = MIPI_DSI_FMT_RGB888,
4177 static const struct drm_display_mode panasonic_vvx10f004b00_mode = {
4180 .hsync_start = 1920 + 154,
4181 .hsync_end = 1920 + 154 + 16,
4182 .htotal = 1920 + 154 + 16 + 32,
4184 .vsync_start = 1200 + 17,
4185 .vsync_end = 1200 + 17 + 2,
4186 .vtotal = 1200 + 17 + 2 + 16,
4190 static const struct panel_desc_dsi panasonic_vvx10f004b00 = {
4192 .modes = &panasonic_vvx10f004b00_mode,
4200 .flags = MIPI_DSI_MODE_VIDEO | MIPI_DSI_MODE_VIDEO_SYNC_PULSE |
4201 MIPI_DSI_CLOCK_NON_CONTINUOUS,
4202 .format = MIPI_DSI_FMT_RGB888,
4206 static const struct drm_display_mode lg_acx467akm_7_mode = {
4209 .hsync_start = 1080 + 2,
4210 .hsync_end = 1080 + 2 + 2,
4211 .htotal = 1080 + 2 + 2 + 2,
4213 .vsync_start = 1920 + 2,
4214 .vsync_end = 1920 + 2 + 2,
4215 .vtotal = 1920 + 2 + 2 + 2,
4219 static const struct panel_desc_dsi lg_acx467akm_7 = {
4221 .modes = &lg_acx467akm_7_mode,
4230 .format = MIPI_DSI_FMT_RGB888,
4234 static const struct drm_display_mode osd101t2045_53ts_mode = {
4237 .hsync_start = 1920 + 112,
4238 .hsync_end = 1920 + 112 + 16,
4239 .htotal = 1920 + 112 + 16 + 32,
4241 .vsync_start = 1200 + 16,
4242 .vsync_end = 1200 + 16 + 2,
4243 .vtotal = 1200 + 16 + 2 + 16,
4245 .flags = DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC,
4248 static const struct panel_desc_dsi osd101t2045_53ts = {
4250 .modes = &osd101t2045_53ts_mode,
4258 .flags = MIPI_DSI_MODE_VIDEO | MIPI_DSI_MODE_VIDEO_BURST |
4259 MIPI_DSI_MODE_VIDEO_SYNC_PULSE |
4260 MIPI_DSI_MODE_EOT_PACKET,
4261 .format = MIPI_DSI_FMT_RGB888,
4265 static const struct of_device_id dsi_of_match[] = {
4267 .compatible = "auo,b080uan01",
4268 .data = &auo_b080uan01
4270 .compatible = "boe,tv080wum-nl0",
4271 .data = &boe_tv080wum_nl0
4273 .compatible = "lg,ld070wx3-sl01",
4274 .data = &lg_ld070wx3_sl01
4276 .compatible = "lg,lh500wx1-sd03",
4277 .data = &lg_lh500wx1_sd03
4279 .compatible = "panasonic,vvx10f004b00",
4280 .data = &panasonic_vvx10f004b00
4282 .compatible = "lg,acx467akm-7",
4283 .data = &lg_acx467akm_7
4285 .compatible = "osddisplays,osd101t2045-53ts",
4286 .data = &osd101t2045_53ts
4291 MODULE_DEVICE_TABLE(of, dsi_of_match);
4293 static int panel_simple_dsi_probe(struct mipi_dsi_device *dsi)
4295 const struct panel_desc_dsi *desc;
4296 const struct of_device_id *id;
4299 id = of_match_node(dsi_of_match, dsi->dev.of_node);
4305 err = panel_simple_probe(&dsi->dev, &desc->desc);
4309 dsi->mode_flags = desc->flags;
4310 dsi->format = desc->format;
4311 dsi->lanes = desc->lanes;
4313 err = mipi_dsi_attach(dsi);
4315 struct panel_simple *panel = dev_get_drvdata(&dsi->dev);
4317 drm_panel_remove(&panel->base);
4323 static int panel_simple_dsi_remove(struct mipi_dsi_device *dsi)
4327 err = mipi_dsi_detach(dsi);
4329 dev_err(&dsi->dev, "failed to detach from DSI host: %d\n", err);
4331 return panel_simple_remove(&dsi->dev);
4334 static void panel_simple_dsi_shutdown(struct mipi_dsi_device *dsi)
4336 panel_simple_shutdown(&dsi->dev);
4339 static struct mipi_dsi_driver panel_simple_dsi_driver = {
4341 .name = "panel-simple-dsi",
4342 .of_match_table = dsi_of_match,
4344 .probe = panel_simple_dsi_probe,
4345 .remove = panel_simple_dsi_remove,
4346 .shutdown = panel_simple_dsi_shutdown,
4349 static int __init panel_simple_init(void)
4353 err = platform_driver_register(&panel_simple_platform_driver);
4357 if (IS_ENABLED(CONFIG_DRM_MIPI_DSI)) {
4358 err = mipi_dsi_driver_register(&panel_simple_dsi_driver);
4365 module_init(panel_simple_init);
4367 static void __exit panel_simple_exit(void)
4369 if (IS_ENABLED(CONFIG_DRM_MIPI_DSI))
4370 mipi_dsi_driver_unregister(&panel_simple_dsi_driver);
4372 platform_driver_unregister(&panel_simple_platform_driver);
4374 module_exit(panel_simple_exit);
4377 MODULE_DESCRIPTION("DRM Driver for Simple Panels");
4378 MODULE_LICENSE("GPL and additional rights");