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/debugfs.h>
25 #include <linux/delay.h>
26 #include <linux/gpio/consumer.h>
27 #include <linux/iopoll.h>
28 #include <linux/module.h>
29 #include <linux/of_platform.h>
30 #include <linux/platform_device.h>
31 #include <linux/pm_runtime.h>
32 #include <linux/regulator/consumer.h>
34 #include <video/display_timing.h>
35 #include <video/of_display_timing.h>
36 #include <video/videomode.h>
38 #include <drm/display/drm_dp_aux_bus.h>
39 #include <drm/display/drm_dp_helper.h>
40 #include <drm/drm_crtc.h>
41 #include <drm/drm_device.h>
42 #include <drm/drm_edid.h>
43 #include <drm/drm_panel.h>
46 * struct panel_delay - Describes delays for a simple panel.
50 * @hpd_reliable: Time for HPD to be reliable
52 * The time (in milliseconds) that it takes after powering the panel
53 * before the HPD signal is reliable. Ideally this is 0 but some panels,
54 * board designs, or bad pulldown configs can cause a glitch here.
56 * NOTE: on some old panel data this number appears to be much too big.
57 * Presumably some old panels simply didn't have HPD hooked up and put
58 * the hpd_absent here because this field predates the
59 * hpd_absent. While that works, it's non-ideal.
61 unsigned int hpd_reliable
;
64 * @hpd_absent: Time to wait if HPD isn't hooked up.
66 * Add this to the prepare delay if we know Hot Plug Detect isn't used.
68 * This is T3-max on eDP timing diagrams or the delay from power on
69 * until HPD is guaranteed to be asserted.
71 unsigned int hpd_absent
;
74 * @powered_on_to_enable: Time between panel powered on and enable.
76 * The minimum time, in milliseconds, that needs to have passed
77 * between when panel powered on and enable may begin.
79 * This is (T3+T4+T5+T6+T8)-min on eDP timing diagrams or after the
80 * power supply enabled until we can turn the backlight on and see
83 * This doesn't normally need to be set if timings are already met by
84 * prepare_to_enable or enable.
86 unsigned int powered_on_to_enable
;
89 * @prepare_to_enable: Time between prepare and enable.
91 * The minimum time, in milliseconds, that needs to have passed
92 * between when prepare finished and enable may begin. If at
93 * enable time less time has passed since prepare finished,
94 * the driver waits for the remaining time.
96 * If a fixed enable delay is also specified, we'll start
97 * counting before delaying for the fixed delay.
99 * If a fixed prepare delay is also specified, we won't start
100 * counting until after the fixed delay. We can't overlap this
101 * fixed delay with the min time because the fixed delay
102 * doesn't happen at the end of the function if a HPD GPIO was
108 * // do fixed prepare delay
109 * // wait for HPD GPIO if applicable
110 * // start counting for prepare_to_enable
113 * // do fixed enable delay
114 * // enforce prepare_to_enable min time
116 * This is not specified in a standard way on eDP timing diagrams.
117 * It is effectively the time from HPD going high till you can
118 * turn on the backlight.
120 unsigned int prepare_to_enable
;
123 * @enable: Time for the panel to display a valid frame.
125 * The time (in milliseconds) that it takes for the panel to
126 * display the first valid frame after starting to receive
129 * This is (T6-min + max(T7-max, T8-min)) on eDP timing diagrams or
130 * the delay after link training finishes until we can turn the
131 * backlight on and see valid data.
136 * @disable: Time for the panel to turn the display off.
138 * The time (in milliseconds) that it takes for the panel to
139 * turn the display off (no content is visible).
141 * This is T9-min (delay from backlight off to end of valid video
142 * data) on eDP timing diagrams. It is not common to set.
144 unsigned int disable
;
147 * @unprepare: Time to power down completely.
149 * The time (in milliseconds) that it takes for the panel
150 * to power itself down completely.
152 * This time is used to prevent a future "prepare" from
153 * starting until at least this many milliseconds has passed.
154 * If at prepare time less time has passed since unprepare
155 * finished, the driver waits for the remaining time.
157 * This is T12-min on eDP timing diagrams.
159 unsigned int unprepare
;
163 * struct panel_desc - Describes a simple panel.
167 * @modes: Pointer to array of fixed modes appropriate for this panel.
169 * If only one mode then this can just be the address of the mode.
170 * NOTE: cannot be used with "timings" and also if this is specified
171 * then you cannot override the mode in the device tree.
173 const struct drm_display_mode
*modes
;
175 /** @num_modes: Number of elements in modes array. */
176 unsigned int num_modes
;
179 * @timings: Pointer to array of display timings
181 * NOTE: cannot be used with "modes" and also these will be used to
182 * validate a device tree override if one is present.
184 const struct display_timing
*timings
;
186 /** @num_timings: Number of elements in timings array. */
187 unsigned int num_timings
;
189 /** @bpc: Bits per color. */
192 /** @size: Structure containing the physical size of this panel. */
195 * @size.width: Width (in mm) of the active display area.
200 * @size.height: Height (in mm) of the active display area.
205 /** @delay: Structure containing various delay values for this panel. */
206 struct panel_delay delay
;
210 * struct edp_panel_entry - Maps panel ID to delay / panel name.
212 struct edp_panel_entry
{
213 /** @ident: edid identity used for panel matching. */
214 const struct drm_edid_ident ident
;
216 /** @delay: The power sequencing delays needed for this panel. */
217 const struct panel_delay
*delay
;
219 /** @override_edid_mode: Override the mode obtained by edid. */
220 const struct drm_display_mode
*override_edid_mode
;
224 struct drm_panel base
;
227 ktime_t prepared_time
;
228 ktime_t powered_on_time
;
229 ktime_t unprepared_time
;
231 const struct panel_desc
*desc
;
233 struct regulator
*supply
;
234 struct i2c_adapter
*ddc
;
235 struct drm_dp_aux
*aux
;
237 struct gpio_desc
*enable_gpio
;
238 struct gpio_desc
*hpd_gpio
;
240 const struct edp_panel_entry
*detected_panel
;
242 const struct drm_edid
*drm_edid
;
244 struct drm_display_mode override_mode
;
246 enum drm_panel_orientation orientation
;
249 static inline struct panel_edp
*to_panel_edp(struct drm_panel
*panel
)
251 return container_of(panel
, struct panel_edp
, base
);
254 static unsigned int panel_edp_get_timings_modes(struct panel_edp
*panel
,
255 struct drm_connector
*connector
)
257 struct drm_display_mode
*mode
;
258 unsigned int i
, num
= 0;
260 for (i
= 0; i
< panel
->desc
->num_timings
; i
++) {
261 const struct display_timing
*dt
= &panel
->desc
->timings
[i
];
264 videomode_from_timing(dt
, &vm
);
265 mode
= drm_mode_create(connector
->dev
);
267 dev_err(panel
->base
.dev
, "failed to add mode %ux%u\n",
268 dt
->hactive
.typ
, dt
->vactive
.typ
);
272 drm_display_mode_from_videomode(&vm
, mode
);
274 mode
->type
|= DRM_MODE_TYPE_DRIVER
;
276 if (panel
->desc
->num_timings
== 1)
277 mode
->type
|= DRM_MODE_TYPE_PREFERRED
;
279 drm_mode_probed_add(connector
, mode
);
286 static unsigned int panel_edp_get_display_modes(struct panel_edp
*panel
,
287 struct drm_connector
*connector
)
289 struct drm_display_mode
*mode
;
290 unsigned int i
, num
= 0;
292 for (i
= 0; i
< panel
->desc
->num_modes
; i
++) {
293 const struct drm_display_mode
*m
= &panel
->desc
->modes
[i
];
295 mode
= drm_mode_duplicate(connector
->dev
, m
);
297 dev_err(panel
->base
.dev
, "failed to add mode %ux%u@%u\n",
298 m
->hdisplay
, m
->vdisplay
,
299 drm_mode_vrefresh(m
));
303 mode
->type
|= DRM_MODE_TYPE_DRIVER
;
305 if (panel
->desc
->num_modes
== 1)
306 mode
->type
|= DRM_MODE_TYPE_PREFERRED
;
308 drm_mode_set_name(mode
);
310 drm_mode_probed_add(connector
, mode
);
317 static int panel_edp_override_edid_mode(struct panel_edp
*panel
,
318 struct drm_connector
*connector
,
319 const struct drm_display_mode
*override_mode
)
321 struct drm_display_mode
*mode
;
323 mode
= drm_mode_duplicate(connector
->dev
, override_mode
);
325 dev_err(panel
->base
.dev
, "failed to add additional mode\n");
329 mode
->type
|= DRM_MODE_TYPE_DRIVER
| DRM_MODE_TYPE_PREFERRED
;
330 drm_mode_set_name(mode
);
331 drm_mode_probed_add(connector
, mode
);
335 static int panel_edp_get_non_edid_modes(struct panel_edp
*panel
,
336 struct drm_connector
*connector
)
338 struct drm_display_mode
*mode
;
339 bool has_override
= panel
->override_mode
.type
;
340 unsigned int num
= 0;
346 mode
= drm_mode_duplicate(connector
->dev
,
347 &panel
->override_mode
);
349 drm_mode_probed_add(connector
, mode
);
352 dev_err(panel
->base
.dev
, "failed to add override mode\n");
356 /* Only add timings if override was not there or failed to validate */
357 if (num
== 0 && panel
->desc
->num_timings
)
358 num
= panel_edp_get_timings_modes(panel
, connector
);
361 * Only add fixed modes if timings/override added no mode.
363 * We should only ever have either the display timings specified
364 * or a fixed mode. Anything else is rather bogus.
366 WARN_ON(panel
->desc
->num_timings
&& panel
->desc
->num_modes
);
368 num
= panel_edp_get_display_modes(panel
, connector
);
370 connector
->display_info
.bpc
= panel
->desc
->bpc
;
371 connector
->display_info
.width_mm
= panel
->desc
->size
.width
;
372 connector
->display_info
.height_mm
= panel
->desc
->size
.height
;
377 static void panel_edp_wait(ktime_t start_ktime
, unsigned int min_ms
)
379 ktime_t now_ktime
, min_ktime
;
384 min_ktime
= ktime_add(start_ktime
, ms_to_ktime(min_ms
));
385 now_ktime
= ktime_get_boottime();
387 if (ktime_before(now_ktime
, min_ktime
))
388 msleep(ktime_to_ms(ktime_sub(min_ktime
, now_ktime
)) + 1);
391 static int panel_edp_disable(struct drm_panel
*panel
)
393 struct panel_edp
*p
= to_panel_edp(panel
);
395 if (p
->desc
->delay
.disable
)
396 msleep(p
->desc
->delay
.disable
);
401 static int panel_edp_suspend(struct device
*dev
)
403 struct panel_edp
*p
= dev_get_drvdata(dev
);
405 drm_dp_dpcd_set_powered(p
->aux
, false);
406 gpiod_set_value_cansleep(p
->enable_gpio
, 0);
407 regulator_disable(p
->supply
);
408 p
->unprepared_time
= ktime_get_boottime();
413 static int panel_edp_unprepare(struct drm_panel
*panel
)
417 ret
= pm_runtime_put_sync_suspend(panel
->dev
);
424 static int panel_edp_get_hpd_gpio(struct device
*dev
, struct panel_edp
*p
)
426 p
->hpd_gpio
= devm_gpiod_get_optional(dev
, "hpd", GPIOD_IN
);
427 if (IS_ERR(p
->hpd_gpio
))
428 return dev_err_probe(dev
, PTR_ERR(p
->hpd_gpio
),
429 "failed to get 'hpd' GPIO\n");
434 static bool panel_edp_can_read_hpd(struct panel_edp
*p
)
436 return !p
->no_hpd
&& (p
->hpd_gpio
|| (p
->aux
&& p
->aux
->wait_hpd_asserted
));
439 static int panel_edp_prepare_once(struct panel_edp
*p
)
441 struct device
*dev
= p
->base
.dev
;
445 unsigned long hpd_wait_us
;
447 panel_edp_wait(p
->unprepared_time
, p
->desc
->delay
.unprepare
);
449 err
= regulator_enable(p
->supply
);
451 dev_err(dev
, "failed to enable supply: %d\n", err
);
455 gpiod_set_value_cansleep(p
->enable_gpio
, 1);
456 drm_dp_dpcd_set_powered(p
->aux
, true);
458 p
->powered_on_time
= ktime_get_boottime();
460 delay
= p
->desc
->delay
.hpd_reliable
;
462 delay
= max(delay
, p
->desc
->delay
.hpd_absent
);
466 if (panel_edp_can_read_hpd(p
)) {
467 if (p
->desc
->delay
.hpd_absent
)
468 hpd_wait_us
= p
->desc
->delay
.hpd_absent
* 1000UL;
470 hpd_wait_us
= 2000000;
473 err
= readx_poll_timeout(gpiod_get_value_cansleep
,
474 p
->hpd_gpio
, hpd_asserted
,
475 hpd_asserted
, 1000, hpd_wait_us
);
476 if (hpd_asserted
< 0)
479 err
= p
->aux
->wait_hpd_asserted(p
->aux
, hpd_wait_us
);
483 if (err
!= -ETIMEDOUT
)
485 "error waiting for hpd GPIO: %d\n", err
);
490 p
->prepared_time
= ktime_get_boottime();
495 drm_dp_dpcd_set_powered(p
->aux
, false);
496 gpiod_set_value_cansleep(p
->enable_gpio
, 0);
497 regulator_disable(p
->supply
);
498 p
->unprepared_time
= ktime_get_boottime();
504 * Some panels simply don't always come up and need to be power cycled to
505 * work properly. We'll allow for a handful of retries.
507 #define MAX_PANEL_PREPARE_TRIES 5
509 static int panel_edp_resume(struct device
*dev
)
511 struct panel_edp
*p
= dev_get_drvdata(dev
);
515 for (try = 0; try < MAX_PANEL_PREPARE_TRIES
; try++) {
516 ret
= panel_edp_prepare_once(p
);
517 if (ret
!= -ETIMEDOUT
)
521 if (ret
== -ETIMEDOUT
)
522 dev_err(dev
, "Prepare timeout after %d tries\n", try);
524 dev_warn(dev
, "Prepare needed %d retries\n", try);
529 static int panel_edp_prepare(struct drm_panel
*panel
)
533 ret
= pm_runtime_get_sync(panel
->dev
);
535 pm_runtime_put_autosuspend(panel
->dev
);
542 static int panel_edp_enable(struct drm_panel
*panel
)
544 struct panel_edp
*p
= to_panel_edp(panel
);
547 delay
= p
->desc
->delay
.enable
;
550 * If there is a "prepare_to_enable" delay then that's supposed to be
551 * the delay from HPD going high until we can turn the backlight on.
552 * However, we can only count this if HPD is readable by the panel
555 * If we aren't handling the HPD pin ourselves then the best we
556 * can do is assume that HPD went high immediately before we were
557 * called (and link training took zero time). Note that "no-hpd"
558 * actually counts as handling HPD ourselves since we're doing the
559 * worst case delay (in prepare) ourselves.
561 * NOTE: if we ever end up in this "if" statement then we're
562 * guaranteed that the panel_edp_wait() call below will do no delay.
563 * It already handles that case, though, so we don't need any special
566 if (p
->desc
->delay
.prepare_to_enable
&&
567 !panel_edp_can_read_hpd(p
) && !p
->no_hpd
)
568 delay
= max(delay
, p
->desc
->delay
.prepare_to_enable
);
573 panel_edp_wait(p
->prepared_time
, p
->desc
->delay
.prepare_to_enable
);
575 panel_edp_wait(p
->powered_on_time
, p
->desc
->delay
.powered_on_to_enable
);
580 static int panel_edp_get_modes(struct drm_panel
*panel
,
581 struct drm_connector
*connector
)
583 struct panel_edp
*p
= to_panel_edp(panel
);
585 bool has_hard_coded_modes
= p
->desc
->num_timings
|| p
->desc
->num_modes
;
586 bool has_override_edid_mode
= p
->detected_panel
&&
587 p
->detected_panel
!= ERR_PTR(-EINVAL
) &&
588 p
->detected_panel
->override_edid_mode
;
590 /* probe EDID if a DDC bus is available */
592 pm_runtime_get_sync(panel
->dev
);
595 p
->drm_edid
= drm_edid_read_ddc(connector
, p
->ddc
);
597 drm_edid_connector_update(connector
, p
->drm_edid
);
600 * If both edid and hard-coded modes exists, skip edid modes to
601 * avoid multiple preferred modes.
603 if (p
->drm_edid
&& !has_hard_coded_modes
) {
604 if (has_override_edid_mode
) {
606 * override_edid_mode is specified. Use
607 * override_edid_mode instead of from edid.
609 num
+= panel_edp_override_edid_mode(p
, connector
,
610 p
->detected_panel
->override_edid_mode
);
612 num
+= drm_edid_connector_add_modes(connector
);
616 pm_runtime_mark_last_busy(panel
->dev
);
617 pm_runtime_put_autosuspend(panel
->dev
);
620 if (has_hard_coded_modes
)
621 num
+= panel_edp_get_non_edid_modes(p
, connector
);
623 dev_warn(p
->base
.dev
, "No display modes\n");
626 * TODO: Remove once all drm drivers call
627 * drm_connector_set_orientation_from_panel()
629 drm_connector_set_panel_orientation(connector
, p
->orientation
);
634 static int panel_edp_get_timings(struct drm_panel
*panel
,
635 unsigned int num_timings
,
636 struct display_timing
*timings
)
638 struct panel_edp
*p
= to_panel_edp(panel
);
641 if (p
->desc
->num_timings
< num_timings
)
642 num_timings
= p
->desc
->num_timings
;
645 for (i
= 0; i
< num_timings
; i
++)
646 timings
[i
] = p
->desc
->timings
[i
];
648 return p
->desc
->num_timings
;
651 static enum drm_panel_orientation
panel_edp_get_orientation(struct drm_panel
*panel
)
653 struct panel_edp
*p
= to_panel_edp(panel
);
655 return p
->orientation
;
658 static int detected_panel_show(struct seq_file
*s
, void *data
)
660 struct drm_panel
*panel
= s
->private;
661 struct panel_edp
*p
= to_panel_edp(panel
);
663 if (IS_ERR(p
->detected_panel
))
664 seq_puts(s
, "UNKNOWN\n");
665 else if (!p
->detected_panel
)
666 seq_puts(s
, "HARDCODED\n");
668 seq_printf(s
, "%s\n", p
->detected_panel
->ident
.name
);
673 DEFINE_SHOW_ATTRIBUTE(detected_panel
);
675 static void panel_edp_debugfs_init(struct drm_panel
*panel
, struct dentry
*root
)
677 debugfs_create_file("detected_panel", 0600, root
, panel
, &detected_panel_fops
);
680 static const struct drm_panel_funcs panel_edp_funcs
= {
681 .disable
= panel_edp_disable
,
682 .unprepare
= panel_edp_unprepare
,
683 .prepare
= panel_edp_prepare
,
684 .enable
= panel_edp_enable
,
685 .get_modes
= panel_edp_get_modes
,
686 .get_orientation
= panel_edp_get_orientation
,
687 .get_timings
= panel_edp_get_timings
,
688 .debugfs_init
= panel_edp_debugfs_init
,
691 #define PANEL_EDP_BOUNDS_CHECK(to_check, bounds, field) \
692 (to_check->field.typ >= bounds->field.min && \
693 to_check->field.typ <= bounds->field.max)
694 static void panel_edp_parse_panel_timing_node(struct device
*dev
,
695 struct panel_edp
*panel
,
696 const struct display_timing
*ot
)
698 const struct panel_desc
*desc
= panel
->desc
;
702 if (WARN_ON(desc
->num_modes
)) {
703 dev_err(dev
, "Reject override mode: panel has a fixed mode\n");
706 if (WARN_ON(!desc
->num_timings
)) {
707 dev_err(dev
, "Reject override mode: no timings specified\n");
711 for (i
= 0; i
< panel
->desc
->num_timings
; i
++) {
712 const struct display_timing
*dt
= &panel
->desc
->timings
[i
];
714 if (!PANEL_EDP_BOUNDS_CHECK(ot
, dt
, hactive
) ||
715 !PANEL_EDP_BOUNDS_CHECK(ot
, dt
, hfront_porch
) ||
716 !PANEL_EDP_BOUNDS_CHECK(ot
, dt
, hback_porch
) ||
717 !PANEL_EDP_BOUNDS_CHECK(ot
, dt
, hsync_len
) ||
718 !PANEL_EDP_BOUNDS_CHECK(ot
, dt
, vactive
) ||
719 !PANEL_EDP_BOUNDS_CHECK(ot
, dt
, vfront_porch
) ||
720 !PANEL_EDP_BOUNDS_CHECK(ot
, dt
, vback_porch
) ||
721 !PANEL_EDP_BOUNDS_CHECK(ot
, dt
, vsync_len
))
724 if (ot
->flags
!= dt
->flags
)
727 videomode_from_timing(ot
, &vm
);
728 drm_display_mode_from_videomode(&vm
, &panel
->override_mode
);
729 panel
->override_mode
.type
|= DRM_MODE_TYPE_DRIVER
|
730 DRM_MODE_TYPE_PREFERRED
;
734 if (WARN_ON(!panel
->override_mode
.type
))
735 dev_err(dev
, "Reject override mode: No display_timing found\n");
738 static const struct edp_panel_entry
*find_edp_panel(u32 panel_id
, const struct drm_edid
*edid
);
740 static void panel_edp_set_conservative_timings(struct panel_edp
*panel
, struct panel_desc
*desc
)
743 * It's highly likely that the panel will work if we use very
744 * conservative timings, so let's do that.
746 * Nearly all panels have a "unprepare" delay of 500 ms though
747 * there are a few with 1000. Let's stick 2000 in just to be
748 * super conservative.
750 * An "enable" delay of 80 ms seems the most common, but we'll
751 * throw in 200 ms to be safe.
753 desc
->delay
.unprepare
= 2000;
754 desc
->delay
.enable
= 200;
756 panel
->detected_panel
= ERR_PTR(-EINVAL
);
759 static int generic_edp_panel_probe(struct device
*dev
, struct panel_edp
*panel
)
761 struct panel_desc
*desc
;
762 const struct drm_edid
*base_block
;
770 desc
= devm_kzalloc(dev
, sizeof(*desc
), GFP_KERNEL
);
776 * Read the dts properties for the initial probe. These are used by
777 * the runtime resume code which will get called by the
778 * pm_runtime_get_sync() call below.
780 of_property_read_u32(dev
->of_node
, "hpd-reliable-delay-ms", &reliable_ms
);
781 desc
->delay
.hpd_reliable
= reliable_ms
;
782 of_property_read_u32(dev
->of_node
, "hpd-absent-delay-ms", &absent_ms
);
783 desc
->delay
.hpd_absent
= absent_ms
;
785 /* Power the panel on so we can read the EDID */
786 ret
= pm_runtime_get_sync(dev
);
789 "Couldn't power on panel to ID it; using conservative timings: %d\n",
791 panel_edp_set_conservative_timings(panel
, desc
);
795 base_block
= drm_edid_read_base_block(panel
->ddc
);
797 panel_id
= drm_edid_get_panel_id(base_block
);
799 dev_err(dev
, "Couldn't read EDID for ID; using conservative timings\n");
800 panel_edp_set_conservative_timings(panel
, desc
);
803 drm_edid_decode_panel_id(panel_id
, vend
, &product_id
);
805 panel
->detected_panel
= find_edp_panel(panel_id
, base_block
);
807 drm_edid_free(base_block
);
810 * We're using non-optimized timings and want it really obvious that
811 * someone needs to add an entry to the table, so we'll do a WARN_ON
814 if (WARN_ON(!panel
->detected_panel
)) {
816 "Unknown panel %s %#06x, using conservative timings\n",
818 panel_edp_set_conservative_timings(panel
, desc
);
820 dev_info(dev
, "Detected %s %s (%#06x)\n",
821 vend
, panel
->detected_panel
->ident
.name
, product_id
);
823 /* Update the delay; everything else comes from EDID */
824 desc
->delay
= *panel
->detected_panel
->delay
;
828 pm_runtime_mark_last_busy(dev
);
829 pm_runtime_put_autosuspend(dev
);
834 static int panel_edp_probe(struct device
*dev
, const struct panel_desc
*desc
,
835 struct drm_dp_aux
*aux
)
837 struct panel_edp
*panel
;
838 struct display_timing dt
;
839 struct device_node
*ddc
;
842 panel
= devm_kzalloc(dev
, sizeof(*panel
), GFP_KERNEL
);
846 panel
->prepared_time
= 0;
850 panel
->no_hpd
= of_property_read_bool(dev
->of_node
, "no-hpd");
851 if (!panel
->no_hpd
) {
852 err
= panel_edp_get_hpd_gpio(dev
, panel
);
857 panel
->supply
= devm_regulator_get(dev
, "power");
858 if (IS_ERR(panel
->supply
))
859 return PTR_ERR(panel
->supply
);
861 panel
->enable_gpio
= devm_gpiod_get_optional(dev
, "enable",
863 if (IS_ERR(panel
->enable_gpio
))
864 return dev_err_probe(dev
, PTR_ERR(panel
->enable_gpio
),
865 "failed to request GPIO\n");
867 err
= of_drm_get_panel_orientation(dev
->of_node
, &panel
->orientation
);
869 dev_err(dev
, "%pOF: failed to get orientation %d\n", dev
->of_node
, err
);
873 ddc
= of_parse_phandle(dev
->of_node
, "ddc-i2c-bus", 0);
875 panel
->ddc
= of_find_i2c_adapter_by_node(ddc
);
879 return -EPROBE_DEFER
;
881 panel
->ddc
= &aux
->ddc
;
884 if (!of_get_display_timing(dev
->of_node
, "panel-timing", &dt
))
885 panel_edp_parse_panel_timing_node(dev
, panel
, &dt
);
887 dev_set_drvdata(dev
, panel
);
889 drm_panel_init(&panel
->base
, dev
, &panel_edp_funcs
, DRM_MODE_CONNECTOR_eDP
);
891 err
= drm_panel_of_backlight(&panel
->base
);
893 goto err_finished_ddc_init
;
896 * We use runtime PM for prepare / unprepare since those power the panel
897 * on and off and those can be very slow operations. This is important
898 * to optimize powering the panel on briefly to read the EDID before
899 * fully enabling the panel.
901 pm_runtime_enable(dev
);
902 pm_runtime_set_autosuspend_delay(dev
, 1000);
903 pm_runtime_use_autosuspend(dev
);
905 if (of_device_is_compatible(dev
->of_node
, "edp-panel")) {
906 err
= generic_edp_panel_probe(dev
, panel
);
908 dev_err_probe(dev
, err
,
909 "Couldn't detect panel nor find a fallback\n");
910 goto err_finished_pm_runtime
;
912 /* generic_edp_panel_probe() replaces desc in the panel */
914 } else if (desc
->bpc
!= 6 && desc
->bpc
!= 8 && desc
->bpc
!= 10) {
915 dev_warn(dev
, "Expected bpc in {6,8,10} but got: %u\n", desc
->bpc
);
918 if (!panel
->base
.backlight
&& panel
->aux
) {
919 pm_runtime_get_sync(dev
);
920 err
= drm_panel_dp_aux_backlight(&panel
->base
, panel
->aux
);
921 pm_runtime_mark_last_busy(dev
);
922 pm_runtime_put_autosuspend(dev
);
925 * Warn if we get an error, but don't consider it fatal. Having
926 * a panel where we can't control the backlight is better than
930 dev_warn(dev
, "failed to register dp aux backlight: %d\n", err
);
933 drm_panel_add(&panel
->base
);
937 err_finished_pm_runtime
:
938 pm_runtime_dont_use_autosuspend(dev
);
939 pm_runtime_disable(dev
);
940 err_finished_ddc_init
:
941 if (panel
->ddc
&& (!panel
->aux
|| panel
->ddc
!= &panel
->aux
->ddc
))
942 put_device(&panel
->ddc
->dev
);
947 static void panel_edp_shutdown(struct device
*dev
)
949 struct panel_edp
*panel
= dev_get_drvdata(dev
);
952 * NOTE: the following two calls don't really belong here. It is the
953 * responsibility of a correctly written DRM modeset driver to call
954 * drm_atomic_helper_shutdown() at shutdown time and that should
955 * cause the panel to be disabled / unprepared if needed. For now,
956 * however, we'll keep these calls due to the sheer number of
957 * different DRM modeset drivers used with panel-edp. Once we've
958 * confirmed that all DRM modeset drivers using this panel properly
959 * call drm_atomic_helper_shutdown() we can simply delete the two
962 * TO BE EXPLICIT: THE CALLS BELOW SHOULDN'T BE COPIED TO ANY NEW
965 * FIXME: If we're still haven't figured out if all DRM modeset
966 * drivers properly call drm_atomic_helper_shutdown() but we _have_
967 * managed to make sure that DRM modeset drivers get their shutdown()
968 * callback before the panel's shutdown() callback (perhaps using
969 * device link), we could add a WARN_ON here to help move forward.
971 if (panel
->base
.enabled
)
972 drm_panel_disable(&panel
->base
);
973 if (panel
->base
.prepared
)
974 drm_panel_unprepare(&panel
->base
);
977 static void panel_edp_remove(struct device
*dev
)
979 struct panel_edp
*panel
= dev_get_drvdata(dev
);
981 drm_panel_remove(&panel
->base
);
982 panel_edp_shutdown(dev
);
984 pm_runtime_dont_use_autosuspend(dev
);
985 pm_runtime_disable(dev
);
986 if (panel
->ddc
&& (!panel
->aux
|| panel
->ddc
!= &panel
->aux
->ddc
))
987 put_device(&panel
->ddc
->dev
);
989 drm_edid_free(panel
->drm_edid
);
990 panel
->drm_edid
= NULL
;
993 static const struct display_timing auo_b101ean01_timing
= {
994 .pixelclock
= { 65300000, 72500000, 75000000 },
995 .hactive
= { 1280, 1280, 1280 },
996 .hfront_porch
= { 18, 119, 119 },
997 .hback_porch
= { 21, 21, 21 },
998 .hsync_len
= { 32, 32, 32 },
999 .vactive
= { 800, 800, 800 },
1000 .vfront_porch
= { 4, 4, 4 },
1001 .vback_porch
= { 8, 8, 8 },
1002 .vsync_len
= { 18, 20, 20 },
1005 static const struct panel_desc auo_b101ean01
= {
1006 .timings
= &auo_b101ean01_timing
,
1015 static const struct drm_display_mode auo_b116xa3_mode
= {
1018 .hsync_start
= 1366 + 40,
1019 .hsync_end
= 1366 + 40 + 40,
1020 .htotal
= 1366 + 40 + 40 + 32,
1022 .vsync_start
= 768 + 10,
1023 .vsync_end
= 768 + 10 + 12,
1024 .vtotal
= 768 + 10 + 12 + 6,
1025 .flags
= DRM_MODE_FLAG_NVSYNC
| DRM_MODE_FLAG_NHSYNC
,
1028 static const struct drm_display_mode auo_b116xak01_mode
= {
1031 .hsync_start
= 1366 + 48,
1032 .hsync_end
= 1366 + 48 + 32,
1033 .htotal
= 1366 + 48 + 32 + 10,
1035 .vsync_start
= 768 + 4,
1036 .vsync_end
= 768 + 4 + 6,
1037 .vtotal
= 768 + 4 + 6 + 15,
1038 .flags
= DRM_MODE_FLAG_NVSYNC
| DRM_MODE_FLAG_NHSYNC
,
1041 static const struct panel_desc auo_b116xak01
= {
1042 .modes
= &auo_b116xak01_mode
,
1056 static const struct drm_display_mode auo_b133htn01_mode
= {
1059 .hsync_start
= 1920 + 172,
1060 .hsync_end
= 1920 + 172 + 80,
1061 .htotal
= 1920 + 172 + 80 + 60,
1063 .vsync_start
= 1080 + 25,
1064 .vsync_end
= 1080 + 25 + 10,
1065 .vtotal
= 1080 + 25 + 10 + 10,
1068 static const struct panel_desc auo_b133htn01
= {
1069 .modes
= &auo_b133htn01_mode
,
1077 .hpd_reliable
= 105,
1083 static const struct drm_display_mode auo_b133xtn01_mode
= {
1086 .hsync_start
= 1366 + 48,
1087 .hsync_end
= 1366 + 48 + 32,
1088 .htotal
= 1366 + 48 + 32 + 20,
1090 .vsync_start
= 768 + 3,
1091 .vsync_end
= 768 + 3 + 6,
1092 .vtotal
= 768 + 3 + 6 + 13,
1095 static const struct panel_desc auo_b133xtn01
= {
1096 .modes
= &auo_b133xtn01_mode
,
1105 static const struct drm_display_mode boe_nv101wxmn51_modes
[] = {
1109 .hsync_start
= 1280 + 48,
1110 .hsync_end
= 1280 + 48 + 32,
1111 .htotal
= 1280 + 48 + 32 + 80,
1113 .vsync_start
= 800 + 3,
1114 .vsync_end
= 800 + 3 + 5,
1115 .vtotal
= 800 + 3 + 5 + 24,
1120 .hsync_start
= 1280 + 48,
1121 .hsync_end
= 1280 + 48 + 32,
1122 .htotal
= 1280 + 48 + 32 + 80,
1124 .vsync_start
= 800 + 3,
1125 .vsync_end
= 800 + 3 + 5,
1126 .vtotal
= 800 + 3 + 5 + 24,
1130 static const struct panel_desc boe_nv101wxmn51
= {
1131 .modes
= boe_nv101wxmn51_modes
,
1132 .num_modes
= ARRAY_SIZE(boe_nv101wxmn51_modes
),
1139 /* TODO: should be hpd-absent and no-hpd should be set? */
1140 .hpd_reliable
= 210,
1146 static const struct drm_display_mode boe_nv110wtm_n61_modes
[] = {
1150 .hsync_start
= 2160 + 48,
1151 .hsync_end
= 2160 + 48 + 32,
1152 .htotal
= 2160 + 48 + 32 + 100,
1154 .vsync_start
= 1440 + 3,
1155 .vsync_end
= 1440 + 3 + 6,
1156 .vtotal
= 1440 + 3 + 6 + 31,
1157 .flags
= DRM_MODE_FLAG_PHSYNC
| DRM_MODE_FLAG_NVSYNC
,
1162 .hsync_start
= 2160 + 48,
1163 .hsync_end
= 2160 + 48 + 32,
1164 .htotal
= 2160 + 48 + 32 + 100,
1166 .vsync_start
= 1440 + 3,
1167 .vsync_end
= 1440 + 3 + 6,
1168 .vtotal
= 1440 + 3 + 6 + 31,
1169 .flags
= DRM_MODE_FLAG_PHSYNC
| DRM_MODE_FLAG_NVSYNC
,
1173 static const struct panel_desc boe_nv110wtm_n61
= {
1174 .modes
= boe_nv110wtm_n61_modes
,
1175 .num_modes
= ARRAY_SIZE(boe_nv110wtm_n61_modes
),
1183 .prepare_to_enable
= 80,
1189 /* Also used for boe_nv133fhm_n62 */
1190 static const struct drm_display_mode boe_nv133fhm_n61_modes
= {
1193 .hsync_start
= 1920 + 48,
1194 .hsync_end
= 1920 + 48 + 32,
1195 .htotal
= 1920 + 48 + 32 + 200,
1197 .vsync_start
= 1080 + 3,
1198 .vsync_end
= 1080 + 3 + 6,
1199 .vtotal
= 1080 + 3 + 6 + 31,
1200 .flags
= DRM_MODE_FLAG_PHSYNC
| DRM_MODE_FLAG_NVSYNC
,
1203 /* Also used for boe_nv133fhm_n62 */
1204 static const struct panel_desc boe_nv133fhm_n61
= {
1205 .modes
= &boe_nv133fhm_n61_modes
,
1214 * When power is first given to the panel there's a short
1215 * spike on the HPD line. It was explained that this spike
1216 * was until the TCON data download was complete. On
1217 * one system this was measured at 8 ms. We'll put 15 ms
1218 * in the prepare delay just to be safe. That means:
1219 * - If HPD isn't hooked up you still have 200 ms delay.
1220 * - If HPD is hooked up we won't try to look at it for the
1230 static const struct drm_display_mode boe_nv140fhmn49_modes
[] = {
1234 .hsync_start
= 1920 + 48,
1235 .hsync_end
= 1920 + 48 + 32,
1238 .vsync_start
= 1080 + 3,
1239 .vsync_end
= 1080 + 3 + 5,
1244 static const struct panel_desc boe_nv140fhmn49
= {
1245 .modes
= boe_nv140fhmn49_modes
,
1246 .num_modes
= ARRAY_SIZE(boe_nv140fhmn49_modes
),
1253 /* TODO: should be hpd-absent and no-hpd should be set? */
1254 .hpd_reliable
= 210,
1260 static const struct drm_display_mode innolux_n116bca_ea1_mode
= {
1263 .hsync_start
= 1366 + 136,
1264 .hsync_end
= 1366 + 136 + 30,
1265 .htotal
= 1366 + 136 + 30 + 60,
1267 .vsync_start
= 768 + 8,
1268 .vsync_end
= 768 + 8 + 12,
1269 .vtotal
= 768 + 8 + 12 + 12,
1270 .flags
= DRM_MODE_FLAG_NHSYNC
| DRM_MODE_FLAG_NVSYNC
,
1273 static const struct panel_desc innolux_n116bca_ea1
= {
1274 .modes
= &innolux_n116bca_ea1_mode
,
1290 * Datasheet specifies that at 60 Hz refresh rate:
1291 * - total horizontal time: { 1506, 1592, 1716 }
1292 * - total vertical time: { 788, 800, 868 }
1294 * ...but doesn't go into exactly how that should be split into a front
1295 * porch, back porch, or sync length. For now we'll leave a single setting
1296 * here which allows a bit of tweaking of the pixel clock at the expense of
1299 static const struct display_timing innolux_n116bge_timing
= {
1300 .pixelclock
= { 72600000, 76420000, 80240000 },
1301 .hactive
= { 1366, 1366, 1366 },
1302 .hfront_porch
= { 136, 136, 136 },
1303 .hback_porch
= { 60, 60, 60 },
1304 .hsync_len
= { 30, 30, 30 },
1305 .vactive
= { 768, 768, 768 },
1306 .vfront_porch
= { 8, 8, 8 },
1307 .vback_porch
= { 12, 12, 12 },
1308 .vsync_len
= { 12, 12, 12 },
1309 .flags
= DISPLAY_FLAGS_VSYNC_LOW
| DISPLAY_FLAGS_HSYNC_LOW
,
1312 static const struct panel_desc innolux_n116bge
= {
1313 .timings
= &innolux_n116bge_timing
,
1322 static const struct drm_display_mode innolux_n125hce_gn1_mode
= {
1325 .hsync_start
= 1920 + 40,
1326 .hsync_end
= 1920 + 40 + 40,
1327 .htotal
= 1920 + 40 + 40 + 80,
1329 .vsync_start
= 1080 + 4,
1330 .vsync_end
= 1080 + 4 + 4,
1331 .vtotal
= 1080 + 4 + 4 + 24,
1334 static const struct panel_desc innolux_n125hce_gn1
= {
1335 .modes
= &innolux_n125hce_gn1_mode
,
1344 static const struct drm_display_mode innolux_p120zdg_bf1_mode
= {
1347 .hsync_start
= 2160 + 48,
1348 .hsync_end
= 2160 + 48 + 32,
1349 .htotal
= 2160 + 48 + 32 + 80,
1351 .vsync_start
= 1440 + 3,
1352 .vsync_end
= 1440 + 3 + 10,
1353 .vtotal
= 1440 + 3 + 10 + 27,
1354 .flags
= DRM_MODE_FLAG_PHSYNC
| DRM_MODE_FLAG_PVSYNC
,
1357 static const struct panel_desc innolux_p120zdg_bf1
= {
1358 .modes
= &innolux_p120zdg_bf1_mode
,
1371 static const struct drm_display_mode kingdisplay_kd116n21_30nv_a010_mode
= {
1374 .hsync_start
= 1366 + 40,
1375 .hsync_end
= 1366 + 40 + 32,
1376 .htotal
= 1366 + 40 + 32 + 62,
1378 .vsync_start
= 768 + 5,
1379 .vsync_end
= 768 + 5 + 5,
1380 .vtotal
= 768 + 5 + 5 + 122,
1381 .flags
= DRM_MODE_FLAG_NVSYNC
| DRM_MODE_FLAG_NHSYNC
,
1384 static const struct panel_desc kingdisplay_kd116n21_30nv_a010
= {
1385 .modes
= &kingdisplay_kd116n21_30nv_a010_mode
,
1397 static const struct drm_display_mode lg_lp079qx1_sp0v_mode
= {
1400 .hsync_start
= 1536 + 12,
1401 .hsync_end
= 1536 + 12 + 16,
1402 .htotal
= 1536 + 12 + 16 + 48,
1404 .vsync_start
= 2048 + 8,
1405 .vsync_end
= 2048 + 8 + 4,
1406 .vtotal
= 2048 + 8 + 4 + 8,
1407 .flags
= DRM_MODE_FLAG_NVSYNC
| DRM_MODE_FLAG_NHSYNC
,
1410 static const struct panel_desc lg_lp079qx1_sp0v
= {
1411 .modes
= &lg_lp079qx1_sp0v_mode
,
1419 static const struct drm_display_mode lg_lp097qx1_spa1_mode
= {
1422 .hsync_start
= 2048 + 150,
1423 .hsync_end
= 2048 + 150 + 5,
1424 .htotal
= 2048 + 150 + 5 + 5,
1426 .vsync_start
= 1536 + 3,
1427 .vsync_end
= 1536 + 3 + 1,
1428 .vtotal
= 1536 + 3 + 1 + 9,
1431 static const struct panel_desc lg_lp097qx1_spa1
= {
1432 .modes
= &lg_lp097qx1_spa1_mode
,
1440 static const struct drm_display_mode lg_lp120up1_mode
= {
1443 .hsync_start
= 1920 + 40,
1444 .hsync_end
= 1920 + 40 + 40,
1445 .htotal
= 1920 + 40 + 40 + 80,
1447 .vsync_start
= 1280 + 4,
1448 .vsync_end
= 1280 + 4 + 4,
1449 .vtotal
= 1280 + 4 + 4 + 12,
1452 static const struct panel_desc lg_lp120up1
= {
1453 .modes
= &lg_lp120up1_mode
,
1462 static const struct drm_display_mode lg_lp129qe_mode
= {
1465 .hsync_start
= 2560 + 48,
1466 .hsync_end
= 2560 + 48 + 32,
1467 .htotal
= 2560 + 48 + 32 + 80,
1469 .vsync_start
= 1700 + 3,
1470 .vsync_end
= 1700 + 3 + 10,
1471 .vtotal
= 1700 + 3 + 10 + 36,
1474 static const struct panel_desc lg_lp129qe
= {
1475 .modes
= &lg_lp129qe_mode
,
1484 static const struct drm_display_mode neweast_wjfh116008a_modes
[] = {
1488 .hsync_start
= 1920 + 48,
1489 .hsync_end
= 1920 + 48 + 32,
1490 .htotal
= 1920 + 48 + 32 + 80,
1492 .vsync_start
= 1080 + 3,
1493 .vsync_end
= 1080 + 3 + 5,
1494 .vtotal
= 1080 + 3 + 5 + 23,
1495 .flags
= DRM_MODE_FLAG_NVSYNC
| DRM_MODE_FLAG_NHSYNC
,
1499 .hsync_start
= 1920 + 48,
1500 .hsync_end
= 1920 + 48 + 32,
1501 .htotal
= 1920 + 48 + 32 + 80,
1503 .vsync_start
= 1080 + 3,
1504 .vsync_end
= 1080 + 3 + 5,
1505 .vtotal
= 1080 + 3 + 5 + 23,
1506 .flags
= DRM_MODE_FLAG_NVSYNC
| DRM_MODE_FLAG_NHSYNC
,
1510 static const struct panel_desc neweast_wjfh116008a
= {
1511 .modes
= neweast_wjfh116008a_modes
,
1519 .hpd_reliable
= 110,
1525 static const struct drm_display_mode samsung_lsn122dl01_c01_mode
= {
1528 .hsync_start
= 2560 + 48,
1529 .hsync_end
= 2560 + 48 + 32,
1530 .htotal
= 2560 + 48 + 32 + 80,
1532 .vsync_start
= 1600 + 2,
1533 .vsync_end
= 1600 + 2 + 5,
1534 .vtotal
= 1600 + 2 + 5 + 57,
1537 static const struct panel_desc samsung_lsn122dl01_c01
= {
1538 .modes
= &samsung_lsn122dl01_c01_mode
,
1546 static const struct drm_display_mode samsung_ltn140at29_301_mode
= {
1549 .hsync_start
= 1366 + 64,
1550 .hsync_end
= 1366 + 64 + 48,
1551 .htotal
= 1366 + 64 + 48 + 128,
1553 .vsync_start
= 768 + 2,
1554 .vsync_end
= 768 + 2 + 5,
1555 .vtotal
= 768 + 2 + 5 + 17,
1558 static const struct panel_desc samsung_ltn140at29_301
= {
1559 .modes
= &samsung_ltn140at29_301_mode
,
1568 static const struct drm_display_mode sharp_ld_d5116z01b_mode
= {
1571 .hsync_start
= 1920 + 48,
1572 .hsync_end
= 1920 + 48 + 32,
1573 .htotal
= 1920 + 48 + 32 + 80,
1575 .vsync_start
= 1280 + 3,
1576 .vsync_end
= 1280 + 3 + 10,
1577 .vtotal
= 1280 + 3 + 10 + 57,
1578 .flags
= DRM_MODE_FLAG_PHSYNC
| DRM_MODE_FLAG_PVSYNC
,
1581 static const struct panel_desc sharp_ld_d5116z01b
= {
1582 .modes
= &sharp_ld_d5116z01b_mode
,
1591 static const struct display_timing sharp_lq123p1jx31_timing
= {
1592 .pixelclock
= { 252750000, 252750000, 266604720 },
1593 .hactive
= { 2400, 2400, 2400 },
1594 .hfront_porch
= { 48, 48, 48 },
1595 .hback_porch
= { 80, 80, 84 },
1596 .hsync_len
= { 32, 32, 32 },
1597 .vactive
= { 1600, 1600, 1600 },
1598 .vfront_porch
= { 3, 3, 3 },
1599 .vback_porch
= { 33, 33, 120 },
1600 .vsync_len
= { 10, 10, 10 },
1601 .flags
= DISPLAY_FLAGS_VSYNC_LOW
| DISPLAY_FLAGS_HSYNC_LOW
,
1604 static const struct panel_desc sharp_lq123p1jx31
= {
1605 .timings
= &sharp_lq123p1jx31_timing
,
1613 .hpd_reliable
= 110,
1619 static const struct of_device_id platform_of_match
[] = {
1622 .compatible
= "edp-panel",
1625 * Do not add panels to the list below unless they cannot be handled by
1626 * the generic edp-panel compatible.
1628 * The only two valid reasons are:
1629 * - Because of the panel issues (e.g. broken EDID or broken
1631 * - Because the eDP drivers didn't wire up the AUX bus properly.
1632 * NOTE that, though this is a marginally valid reason,
1633 * some justification needs to be made for why the platform can't
1634 * wire up the AUX bus properly.
1636 * In all other cases the platform should use the aux-bus and declare
1637 * the panel using the 'edp-panel' compatible as a device on the AUX
1641 .compatible
= "auo,b101ean01",
1642 .data
= &auo_b101ean01
,
1644 .compatible
= "auo,b116xa01",
1645 .data
= &auo_b116xak01
,
1647 .compatible
= "auo,b133htn01",
1648 .data
= &auo_b133htn01
,
1650 .compatible
= "auo,b133xtn01",
1651 .data
= &auo_b133xtn01
,
1653 .compatible
= "boe,nv101wxmn51",
1654 .data
= &boe_nv101wxmn51
,
1656 .compatible
= "boe,nv110wtm-n61",
1657 .data
= &boe_nv110wtm_n61
,
1659 .compatible
= "boe,nv133fhm-n61",
1660 .data
= &boe_nv133fhm_n61
,
1662 .compatible
= "boe,nv133fhm-n62",
1663 .data
= &boe_nv133fhm_n61
,
1665 .compatible
= "boe,nv140fhmn49",
1666 .data
= &boe_nv140fhmn49
,
1668 .compatible
= "innolux,n116bca-ea1",
1669 .data
= &innolux_n116bca_ea1
,
1671 .compatible
= "innolux,n116bge",
1672 .data
= &innolux_n116bge
,
1674 .compatible
= "innolux,n125hce-gn1",
1675 .data
= &innolux_n125hce_gn1
,
1677 .compatible
= "innolux,p120zdg-bf1",
1678 .data
= &innolux_p120zdg_bf1
,
1680 .compatible
= "kingdisplay,kd116n21-30nv-a010",
1681 .data
= &kingdisplay_kd116n21_30nv_a010
,
1683 .compatible
= "lg,lp079qx1-sp0v",
1684 .data
= &lg_lp079qx1_sp0v
,
1686 .compatible
= "lg,lp097qx1-spa1",
1687 .data
= &lg_lp097qx1_spa1
,
1689 .compatible
= "lg,lp120up1",
1690 .data
= &lg_lp120up1
,
1692 .compatible
= "lg,lp129qe",
1693 .data
= &lg_lp129qe
,
1695 .compatible
= "neweast,wjfh116008a",
1696 .data
= &neweast_wjfh116008a
,
1698 .compatible
= "samsung,lsn122dl01-c01",
1699 .data
= &samsung_lsn122dl01_c01
,
1701 .compatible
= "samsung,ltn140at29-301",
1702 .data
= &samsung_ltn140at29_301
,
1704 .compatible
= "sharp,ld-d5116z01b",
1705 .data
= &sharp_ld_d5116z01b
,
1707 .compatible
= "sharp,lq123p1jx31",
1708 .data
= &sharp_lq123p1jx31
,
1713 MODULE_DEVICE_TABLE(of
, platform_of_match
);
1715 static const struct panel_delay delay_200_500_p2e80
= {
1718 .prepare_to_enable
= 80,
1721 static const struct panel_delay delay_200_500_e50_p2e80
= {
1725 .prepare_to_enable
= 80,
1728 static const struct panel_delay delay_200_500_p2e100
= {
1731 .prepare_to_enable
= 100,
1734 static const struct panel_delay delay_200_500_e50
= {
1740 static const struct panel_delay delay_200_500_e50_p2e200
= {
1744 .prepare_to_enable
= 200,
1747 static const struct panel_delay delay_200_500_e80
= {
1753 static const struct panel_delay delay_200_500_e80_d50
= {
1760 static const struct panel_delay delay_80_500_e50
= {
1766 static const struct panel_delay delay_100_500_e200
= {
1772 static const struct panel_delay delay_200_500_e200
= {
1778 static const struct panel_delay delay_200_500_e200_d200
= {
1785 static const struct panel_delay delay_200_500_e200_d10
= {
1792 static const struct panel_delay delay_200_150_e200
= {
1798 static const struct panel_delay delay_200_500_e50_po2e200
= {
1802 .powered_on_to_enable
= 200,
1805 #define EDP_PANEL_ENTRY(vend_chr_0, vend_chr_1, vend_chr_2, product_id, _delay, _name) \
1809 .panel_id = drm_edid_encode_panel_id(vend_chr_0, vend_chr_1, vend_chr_2, \
1815 #define EDP_PANEL_ENTRY2(vend_chr_0, vend_chr_1, vend_chr_2, product_id, _delay, _name, _mode) \
1819 .panel_id = drm_edid_encode_panel_id(vend_chr_0, vend_chr_1, vend_chr_2, \
1823 .override_edid_mode = _mode \
1827 * This table is used to figure out power sequencing delays for panels that
1828 * are detected by EDID. Entries here may point to entries in the
1829 * platform_of_match table (if a panel is listed in both places).
1831 * Sort first by vendor, then by product ID.
1833 static const struct edp_panel_entry edp_panels
[] = {
1834 EDP_PANEL_ENTRY('A', 'U', 'O', 0x105c, &delay_200_500_e50
, "B116XTN01.0"),
1835 EDP_PANEL_ENTRY('A', 'U', 'O', 0x1062, &delay_200_500_e50
, "B120XAN01.0"),
1836 EDP_PANEL_ENTRY('A', 'U', 'O', 0x125c, &delay_200_500_e50
, "Unknown"),
1837 EDP_PANEL_ENTRY('A', 'U', 'O', 0x145c, &delay_200_500_e50
, "B116XAB01.4"),
1838 EDP_PANEL_ENTRY('A', 'U', 'O', 0x1999, &delay_200_500_e50
, "Unknown"),
1839 EDP_PANEL_ENTRY('A', 'U', 'O', 0x1e9b, &delay_200_500_e50
, "B133UAN02.1"),
1840 EDP_PANEL_ENTRY('A', 'U', 'O', 0x1ea5, &delay_200_500_e50
, "B116XAK01.6"),
1841 EDP_PANEL_ENTRY('A', 'U', 'O', 0x203d, &delay_200_500_e50
, "B140HTN02.0"),
1842 EDP_PANEL_ENTRY('A', 'U', 'O', 0x208d, &delay_200_500_e50
, "B140HTN02.1"),
1843 EDP_PANEL_ENTRY('A', 'U', 'O', 0x235c, &delay_200_500_e50
, "B116XTN02.3"),
1844 EDP_PANEL_ENTRY('A', 'U', 'O', 0x239b, &delay_200_500_e50
, "B116XAN06.1"),
1845 EDP_PANEL_ENTRY('A', 'U', 'O', 0x255c, &delay_200_500_e50
, "B116XTN02.5"),
1846 EDP_PANEL_ENTRY('A', 'U', 'O', 0x403d, &delay_200_500_e50
, "B140HAN04.0"),
1847 EDP_PANEL_ENTRY('A', 'U', 'O', 0x405c, &auo_b116xak01
.delay
, "B116XAN04.0"),
1848 EDP_PANEL_ENTRY2('A', 'U', 'O', 0x405c, &auo_b116xak01
.delay
, "B116XAK01.0",
1850 EDP_PANEL_ENTRY('A', 'U', 'O', 0x435c, &delay_200_500_e50
, "Unknown"),
1851 EDP_PANEL_ENTRY('A', 'U', 'O', 0x582d, &delay_200_500_e50
, "B133UAN01.0"),
1852 EDP_PANEL_ENTRY('A', 'U', 'O', 0x615c, &delay_200_500_e50
, "B116XAN06.1"),
1853 EDP_PANEL_ENTRY('A', 'U', 'O', 0x635c, &delay_200_500_e50
, "B116XAN06.3"),
1854 EDP_PANEL_ENTRY('A', 'U', 'O', 0x639c, &delay_200_500_e50
, "B140HAK02.7"),
1855 EDP_PANEL_ENTRY('A', 'U', 'O', 0x723c, &delay_200_500_e50
, "B140XTN07.2"),
1856 EDP_PANEL_ENTRY('A', 'U', 'O', 0x73aa, &delay_200_500_e50
, "B116XTN02.3"),
1857 EDP_PANEL_ENTRY('A', 'U', 'O', 0x8594, &delay_200_500_e50
, "B133UAN01.0"),
1858 EDP_PANEL_ENTRY('A', 'U', 'O', 0xa199, &delay_200_500_e50
, "B116XAN06.1"),
1859 EDP_PANEL_ENTRY('A', 'U', 'O', 0xc4b4, &delay_200_500_e50
, "B116XAT04.1"),
1860 EDP_PANEL_ENTRY('A', 'U', 'O', 0xd497, &delay_200_500_e50
, "B120XAN01.0"),
1861 EDP_PANEL_ENTRY('A', 'U', 'O', 0xf390, &delay_200_500_e50
, "B140XTN07.7"),
1863 EDP_PANEL_ENTRY('B', 'O', 'E', 0x0607, &delay_200_500_e200
, "Unknown"),
1864 EDP_PANEL_ENTRY('B', 'O', 'E', 0x0608, &delay_200_500_e50
, "NT116WHM-N11"),
1865 EDP_PANEL_ENTRY('B', 'O', 'E', 0x0609, &delay_200_500_e50_po2e200
, "NT116WHM-N21 V4.1"),
1866 EDP_PANEL_ENTRY('B', 'O', 'E', 0x0623, &delay_200_500_e200
, "NT116WHM-N21 V4.0"),
1867 EDP_PANEL_ENTRY('B', 'O', 'E', 0x0668, &delay_200_500_e200
, "Unknown"),
1868 EDP_PANEL_ENTRY('B', 'O', 'E', 0x068f, &delay_200_500_e200
, "Unknown"),
1869 EDP_PANEL_ENTRY('B', 'O', 'E', 0x06e5, &delay_200_500_e200
, "Unknown"),
1870 EDP_PANEL_ENTRY('B', 'O', 'E', 0x0705, &delay_200_500_e200
, "Unknown"),
1871 EDP_PANEL_ENTRY('B', 'O', 'E', 0x0715, &delay_200_150_e200
, "NT116WHM-N21"),
1872 EDP_PANEL_ENTRY('B', 'O', 'E', 0x0717, &delay_200_500_e50_po2e200
, "NV133FHM-N42"),
1873 EDP_PANEL_ENTRY('B', 'O', 'E', 0x0731, &delay_200_500_e80
, "NT116WHM-N42"),
1874 EDP_PANEL_ENTRY('B', 'O', 'E', 0x0741, &delay_200_500_e200
, "NT116WHM-N44"),
1875 EDP_PANEL_ENTRY('B', 'O', 'E', 0x0744, &delay_200_500_e200
, "Unknown"),
1876 EDP_PANEL_ENTRY('B', 'O', 'E', 0x074c, &delay_200_500_e200
, "Unknown"),
1877 EDP_PANEL_ENTRY('B', 'O', 'E', 0x0751, &delay_200_500_e200
, "Unknown"),
1878 EDP_PANEL_ENTRY('B', 'O', 'E', 0x0754, &delay_200_500_e50_po2e200
, "NV116WHM-N45"),
1879 EDP_PANEL_ENTRY('B', 'O', 'E', 0x0771, &delay_200_500_e200
, "Unknown"),
1880 EDP_PANEL_ENTRY('B', 'O', 'E', 0x0786, &delay_200_500_p2e80
, "NV116WHM-T01"),
1881 EDP_PANEL_ENTRY('B', 'O', 'E', 0x0797, &delay_200_500_e200
, "Unknown"),
1882 EDP_PANEL_ENTRY('B', 'O', 'E', 0x07a8, &delay_200_500_e50_po2e200
, "NT116WHM-N21"),
1883 EDP_PANEL_ENTRY('B', 'O', 'E', 0x07d1, &boe_nv133fhm_n61
.delay
, "NV133FHM-N61"),
1884 EDP_PANEL_ENTRY('B', 'O', 'E', 0x07d3, &delay_200_500_e200
, "Unknown"),
1885 EDP_PANEL_ENTRY('B', 'O', 'E', 0x07f6, &delay_200_500_e200
, "NT140FHM-N44"),
1886 EDP_PANEL_ENTRY('B', 'O', 'E', 0x07f8, &delay_200_500_e200
, "Unknown"),
1887 EDP_PANEL_ENTRY('B', 'O', 'E', 0x0813, &delay_200_500_e200
, "Unknown"),
1888 EDP_PANEL_ENTRY('B', 'O', 'E', 0x0827, &delay_200_500_e50_p2e80
, "NT140WHM-N44 V8.0"),
1889 EDP_PANEL_ENTRY('B', 'O', 'E', 0x082d, &boe_nv133fhm_n61
.delay
, "NV133FHM-N62"),
1890 EDP_PANEL_ENTRY('B', 'O', 'E', 0x0843, &delay_200_500_e200
, "Unknown"),
1891 EDP_PANEL_ENTRY('B', 'O', 'E', 0x08b2, &delay_200_500_e200
, "NT140WHM-N49"),
1892 EDP_PANEL_ENTRY('B', 'O', 'E', 0x0848, &delay_200_500_e200
, "Unknown"),
1893 EDP_PANEL_ENTRY('B', 'O', 'E', 0x0849, &delay_200_500_e200
, "Unknown"),
1894 EDP_PANEL_ENTRY('B', 'O', 'E', 0x09c3, &delay_200_500_e50
, "NT116WHM-N21,836X2"),
1895 EDP_PANEL_ENTRY('B', 'O', 'E', 0x094b, &delay_200_500_e50
, "NT116WHM-N21"),
1896 EDP_PANEL_ENTRY('B', 'O', 'E', 0x0951, &delay_200_500_e80
, "NV116WHM-N47"),
1897 EDP_PANEL_ENTRY('B', 'O', 'E', 0x095f, &delay_200_500_e50
, "NE135FBM-N41 v8.1"),
1898 EDP_PANEL_ENTRY('B', 'O', 'E', 0x096e, &delay_200_500_e50_po2e200
, "NV116WHM-T07 V8.0"),
1899 EDP_PANEL_ENTRY('B', 'O', 'E', 0x0979, &delay_200_500_e50
, "NV116WHM-N49 V8.0"),
1900 EDP_PANEL_ENTRY('B', 'O', 'E', 0x098d, &boe_nv110wtm_n61
.delay
, "NV110WTM-N61"),
1901 EDP_PANEL_ENTRY('B', 'O', 'E', 0x0993, &delay_200_500_e80
, "NV116WHM-T14 V8.0"),
1902 EDP_PANEL_ENTRY('B', 'O', 'E', 0x09ad, &delay_200_500_e80
, "NV116WHM-N47"),
1903 EDP_PANEL_ENTRY('B', 'O', 'E', 0x09ae, &delay_200_500_e200
, "NT140FHM-N45"),
1904 EDP_PANEL_ENTRY('B', 'O', 'E', 0x09dd, &delay_200_500_e50
, "NT116WHM-N21"),
1905 EDP_PANEL_ENTRY('B', 'O', 'E', 0x0a1b, &delay_200_500_e50
, "NV133WUM-N63"),
1906 EDP_PANEL_ENTRY('B', 'O', 'E', 0x0a36, &delay_200_500_e200
, "Unknown"),
1907 EDP_PANEL_ENTRY('B', 'O', 'E', 0x0a3e, &delay_200_500_e80
, "NV116WHM-N49"),
1908 EDP_PANEL_ENTRY('B', 'O', 'E', 0x0a5d, &delay_200_500_e50
, "NV116WHM-N45"),
1909 EDP_PANEL_ENTRY('B', 'O', 'E', 0x0ac5, &delay_200_500_e50
, "NV116WHM-N4C"),
1910 EDP_PANEL_ENTRY('B', 'O', 'E', 0x0ae8, &delay_200_500_e50_p2e80
, "NV140WUM-N41"),
1911 EDP_PANEL_ENTRY('B', 'O', 'E', 0x0b34, &delay_200_500_e80
, "NV122WUM-N41"),
1912 EDP_PANEL_ENTRY('B', 'O', 'E', 0x0b43, &delay_200_500_e200
, "NV140FHM-T09"),
1913 EDP_PANEL_ENTRY('B', 'O', 'E', 0x0b56, &delay_200_500_e80
, "NT140FHM-N47"),
1914 EDP_PANEL_ENTRY('B', 'O', 'E', 0x0b66, &delay_200_500_e80
, "NE140WUM-N6G"),
1915 EDP_PANEL_ENTRY('B', 'O', 'E', 0x0c20, &delay_200_500_e80
, "NT140FHM-N47"),
1916 EDP_PANEL_ENTRY('B', 'O', 'E', 0x0cb6, &delay_200_500_e200
, "NT116WHM-N44"),
1917 EDP_PANEL_ENTRY('B', 'O', 'E', 0x0cfa, &delay_200_500_e50
, "NV116WHM-A4D"),
1919 EDP_PANEL_ENTRY('C', 'M', 'N', 0x1130, &delay_200_500_e50
, "N116BGE-EB2"),
1920 EDP_PANEL_ENTRY('C', 'M', 'N', 0x1132, &delay_200_500_e80_d50
, "N116BGE-EA2"),
1921 EDP_PANEL_ENTRY('C', 'M', 'N', 0x1138, &innolux_n116bca_ea1
.delay
, "N116BCA-EA1-RC4"),
1922 EDP_PANEL_ENTRY('C', 'M', 'N', 0x1139, &delay_200_500_e80_d50
, "N116BGE-EA2"),
1923 EDP_PANEL_ENTRY('C', 'M', 'N', 0x1141, &delay_200_500_e80_d50
, "Unknown"),
1924 EDP_PANEL_ENTRY('C', 'M', 'N', 0x1145, &delay_200_500_e80_d50
, "N116BCN-EB1"),
1925 EDP_PANEL_ENTRY('C', 'M', 'N', 0x114a, &delay_200_500_e80_d50
, "Unknown"),
1926 EDP_PANEL_ENTRY('C', 'M', 'N', 0x114c, &innolux_n116bca_ea1
.delay
, "N116BCA-EA1"),
1927 EDP_PANEL_ENTRY('C', 'M', 'N', 0x1152, &delay_200_500_e80_d50
, "N116BCN-EA1"),
1928 EDP_PANEL_ENTRY('C', 'M', 'N', 0x1153, &delay_200_500_e80_d50
, "N116BGE-EA2"),
1929 EDP_PANEL_ENTRY('C', 'M', 'N', 0x1154, &delay_200_500_e80_d50
, "N116BCA-EA2"),
1930 EDP_PANEL_ENTRY('C', 'M', 'N', 0x1156, &delay_200_500_e80_d50
, "Unknown"),
1931 EDP_PANEL_ENTRY('C', 'M', 'N', 0x1157, &delay_200_500_e80_d50
, "N116BGE-EA2"),
1932 EDP_PANEL_ENTRY('C', 'M', 'N', 0x115b, &delay_200_500_e80_d50
, "N116BCN-EB1"),
1933 EDP_PANEL_ENTRY('C', 'M', 'N', 0x115d, &delay_200_500_e80_d50
, "N116BCA-EA2"),
1934 EDP_PANEL_ENTRY('C', 'M', 'N', 0x115e, &delay_200_500_e80_d50
, "N116BCA-EA1"),
1935 EDP_PANEL_ENTRY('C', 'M', 'N', 0x1160, &delay_200_500_e80_d50
, "N116BCJ-EAK"),
1936 EDP_PANEL_ENTRY('C', 'M', 'N', 0x1161, &delay_200_500_e80
, "N116BCP-EA2"),
1937 EDP_PANEL_ENTRY('C', 'M', 'N', 0x1247, &delay_200_500_e80_d50
, "N120ACA-EA1"),
1938 EDP_PANEL_ENTRY('C', 'M', 'N', 0x142b, &delay_200_500_e80_d50
, "N140HCA-EAC"),
1939 EDP_PANEL_ENTRY('C', 'M', 'N', 0x142e, &delay_200_500_e80_d50
, "N140BGA-EA4"),
1940 EDP_PANEL_ENTRY('C', 'M', 'N', 0x144f, &delay_200_500_e80_d50
, "N140HGA-EA1"),
1941 EDP_PANEL_ENTRY('C', 'M', 'N', 0x1468, &delay_200_500_e80
, "N140HGA-EA1"),
1942 EDP_PANEL_ENTRY('C', 'M', 'N', 0x14d4, &delay_200_500_e80_d50
, "N140HCA-EAC"),
1943 EDP_PANEL_ENTRY('C', 'M', 'N', 0x14d6, &delay_200_500_e80_d50
, "N140BGA-EA4"),
1944 EDP_PANEL_ENTRY('C', 'M', 'N', 0x14e5, &delay_200_500_e80_d50
, "N140HGA-EA1"),
1946 EDP_PANEL_ENTRY('C', 'S', 'O', 0x1200, &delay_200_500_e50_p2e200
, "MNC207QS1-1"),
1948 EDP_PANEL_ENTRY('C', 'S', 'W', 0x1100, &delay_200_500_e80_d50
, "MNB601LS1-1"),
1949 EDP_PANEL_ENTRY('C', 'S', 'W', 0x1104, &delay_200_500_e50
, "MNB601LS1-4"),
1951 EDP_PANEL_ENTRY('H', 'K', 'C', 0x2d51, &delay_200_500_e200
, "Unknown"),
1952 EDP_PANEL_ENTRY('H', 'K', 'C', 0x2d5b, &delay_200_500_e200
, "MB116AN01"),
1953 EDP_PANEL_ENTRY('H', 'K', 'C', 0x2d5c, &delay_200_500_e200
, "MB116AN01-2"),
1955 EDP_PANEL_ENTRY('I', 'V', 'O', 0x048e, &delay_200_500_e200_d10
, "M116NWR6 R5"),
1956 EDP_PANEL_ENTRY('I', 'V', 'O', 0x057d, &delay_200_500_e200
, "R140NWF5 RH"),
1957 EDP_PANEL_ENTRY('I', 'V', 'O', 0x854a, &delay_200_500_p2e100
, "M133NW4J"),
1958 EDP_PANEL_ENTRY('I', 'V', 'O', 0x854b, &delay_200_500_p2e100
, "R133NW4K-R0"),
1959 EDP_PANEL_ENTRY('I', 'V', 'O', 0x8c4d, &delay_200_150_e200
, "R140NWFM R1"),
1961 EDP_PANEL_ENTRY('K', 'D', 'B', 0x044f, &delay_200_500_e80_d50
, "Unknown"),
1962 EDP_PANEL_ENTRY('K', 'D', 'B', 0x0624, &kingdisplay_kd116n21_30nv_a010
.delay
, "116N21-30NV-A010"),
1963 EDP_PANEL_ENTRY('K', 'D', 'B', 0x1118, &delay_200_500_e50
, "KD116N29-30NK-A005"),
1964 EDP_PANEL_ENTRY('K', 'D', 'B', 0x1120, &delay_200_500_e80_d50
, "116N29-30NK-C007"),
1965 EDP_PANEL_ENTRY('K', 'D', 'B', 0x1212, &delay_200_500_e50
, "KD116N0930A16"),
1967 EDP_PANEL_ENTRY('K', 'D', 'C', 0x044f, &delay_200_500_e50
, "KD116N9-30NH-F3"),
1968 EDP_PANEL_ENTRY('K', 'D', 'C', 0x05f1, &delay_200_500_e80_d50
, "KD116N5-30NV-G7"),
1969 EDP_PANEL_ENTRY('K', 'D', 'C', 0x0809, &delay_200_500_e50
, "KD116N2930A15"),
1971 EDP_PANEL_ENTRY('L', 'G', 'D', 0x0000, &delay_200_500_e200_d200
, "Unknown"),
1972 EDP_PANEL_ENTRY('L', 'G', 'D', 0x048d, &delay_200_500_e200_d200
, "Unknown"),
1973 EDP_PANEL_ENTRY('L', 'G', 'D', 0x0497, &delay_200_500_e200_d200
, "LP116WH7-SPB1"),
1974 EDP_PANEL_ENTRY('L', 'G', 'D', 0x052c, &delay_200_500_e200_d200
, "LP133WF2-SPL7"),
1975 EDP_PANEL_ENTRY('L', 'G', 'D', 0x0537, &delay_200_500_e200_d200
, "Unknown"),
1976 EDP_PANEL_ENTRY('L', 'G', 'D', 0x054a, &delay_200_500_e200_d200
, "LP116WH8-SPC1"),
1977 EDP_PANEL_ENTRY('L', 'G', 'D', 0x0567, &delay_200_500_e200_d200
, "Unknown"),
1978 EDP_PANEL_ENTRY('L', 'G', 'D', 0x05af, &delay_200_500_e200_d200
, "Unknown"),
1979 EDP_PANEL_ENTRY('L', 'G', 'D', 0x05f1, &delay_200_500_e200_d200
, "Unknown"),
1980 EDP_PANEL_ENTRY('L', 'G', 'D', 0x0778, &delay_200_500_e200_d200
, "134WT1"),
1982 EDP_PANEL_ENTRY('S', 'H', 'P', 0x1511, &delay_200_500_e50
, "LQ140M1JW48"),
1983 EDP_PANEL_ENTRY('S', 'H', 'P', 0x1523, &delay_80_500_e50
, "LQ140M1JW46"),
1984 EDP_PANEL_ENTRY('S', 'H', 'P', 0x153a, &delay_200_500_e50
, "LQ140T1JH01"),
1985 EDP_PANEL_ENTRY('S', 'H', 'P', 0x154c, &delay_200_500_p2e100
, "LQ116M1JW10"),
1986 EDP_PANEL_ENTRY('S', 'H', 'P', 0x1593, &delay_200_500_p2e100
, "LQ134N1"),
1988 EDP_PANEL_ENTRY('S', 'T', 'A', 0x0100, &delay_100_500_e200
, "2081116HHD028001-51D"),
1993 static const struct edp_panel_entry
*find_edp_panel(u32 panel_id
, const struct drm_edid
*edid
)
1995 const struct edp_panel_entry
*panel
;
2001 * Match with identity first. This allows handling the case where
2002 * vendors incorrectly reused the same panel ID for multiple panels that
2003 * need different settings. If there's no match, try again with panel
2004 * ID, which should be unique.
2006 for (panel
= edp_panels
; panel
->ident
.panel_id
; panel
++)
2007 if (drm_edid_match(edid
, &panel
->ident
))
2010 for (panel
= edp_panels
; panel
->ident
.panel_id
; panel
++)
2011 if (panel
->ident
.panel_id
== panel_id
)
2017 static int panel_edp_platform_probe(struct platform_device
*pdev
)
2019 const struct of_device_id
*id
;
2021 /* Skip one since "edp-panel" is only supported on DP AUX bus */
2022 id
= of_match_node(platform_of_match
+ 1, pdev
->dev
.of_node
);
2026 return panel_edp_probe(&pdev
->dev
, id
->data
, NULL
);
2029 static void panel_edp_platform_remove(struct platform_device
*pdev
)
2031 panel_edp_remove(&pdev
->dev
);
2034 static void panel_edp_platform_shutdown(struct platform_device
*pdev
)
2036 panel_edp_shutdown(&pdev
->dev
);
2039 static const struct dev_pm_ops panel_edp_pm_ops
= {
2040 SET_RUNTIME_PM_OPS(panel_edp_suspend
, panel_edp_resume
, NULL
)
2041 SET_SYSTEM_SLEEP_PM_OPS(pm_runtime_force_suspend
,
2042 pm_runtime_force_resume
)
2045 static struct platform_driver panel_edp_platform_driver
= {
2047 .name
= "panel-edp",
2048 .of_match_table
= platform_of_match
,
2049 .pm
= &panel_edp_pm_ops
,
2051 .probe
= panel_edp_platform_probe
,
2052 .remove
= panel_edp_platform_remove
,
2053 .shutdown
= panel_edp_platform_shutdown
,
2056 static int panel_edp_dp_aux_ep_probe(struct dp_aux_ep_device
*aux_ep
)
2058 const struct of_device_id
*id
;
2060 id
= of_match_node(platform_of_match
, aux_ep
->dev
.of_node
);
2064 return panel_edp_probe(&aux_ep
->dev
, id
->data
, aux_ep
->aux
);
2067 static void panel_edp_dp_aux_ep_remove(struct dp_aux_ep_device
*aux_ep
)
2069 panel_edp_remove(&aux_ep
->dev
);
2072 static void panel_edp_dp_aux_ep_shutdown(struct dp_aux_ep_device
*aux_ep
)
2074 panel_edp_shutdown(&aux_ep
->dev
);
2077 static struct dp_aux_ep_driver panel_edp_dp_aux_ep_driver
= {
2079 .name
= "panel-simple-dp-aux",
2080 .of_match_table
= platform_of_match
, /* Same as platform one! */
2081 .pm
= &panel_edp_pm_ops
,
2083 .probe
= panel_edp_dp_aux_ep_probe
,
2084 .remove
= panel_edp_dp_aux_ep_remove
,
2085 .shutdown
= panel_edp_dp_aux_ep_shutdown
,
2088 static int __init
panel_edp_init(void)
2092 err
= platform_driver_register(&panel_edp_platform_driver
);
2096 err
= dp_aux_dp_driver_register(&panel_edp_dp_aux_ep_driver
);
2098 goto err_did_platform_register
;
2102 err_did_platform_register
:
2103 platform_driver_unregister(&panel_edp_platform_driver
);
2107 module_init(panel_edp_init
);
2109 static void __exit
panel_edp_exit(void)
2111 dp_aux_dp_driver_unregister(&panel_edp_dp_aux_ep_driver
);
2112 platform_driver_unregister(&panel_edp_platform_driver
);
2114 module_exit(panel_edp_exit
);
2116 MODULE_AUTHOR("Thierry Reding <treding@nvidia.com>");
2117 MODULE_DESCRIPTION("DRM Driver for Simple eDP Panels");
2118 MODULE_LICENSE("GPL and additional rights");