2 * Copyright © 2009 Keith Packard
4 * Permission to use, copy, modify, distribute, and sell this software and its
5 * documentation for any purpose is hereby granted without fee, provided that
6 * the above copyright notice appear in all copies and that both that copyright
7 * notice and this permission notice appear in supporting documentation, and
8 * that the name of the copyright holders not be used in advertising or
9 * publicity pertaining to distribution of the software without specific,
10 * written prior permission. The copyright holders make no representations
11 * about the suitability of this software for any purpose. It is provided "as
12 * is" without express or implied warranty.
14 * THE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
15 * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
16 * EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY SPECIAL, INDIRECT OR
17 * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
18 * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
19 * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
23 #include <linux/backlight.h>
24 #include <linux/delay.h>
25 #include <linux/errno.h>
26 #include <linux/i2c.h>
27 #include <linux/init.h>
28 #include <linux/kernel.h>
29 #include <linux/module.h>
30 #include <linux/sched.h>
31 #include <linux/seq_file.h>
32 #include <linux/string_helpers.h>
33 #include <linux/dynamic_debug.h>
35 #include <drm/display/drm_dp_helper.h>
36 #include <drm/display/drm_dp_mst_helper.h>
37 #include <drm/drm_edid.h>
38 #include <drm/drm_print.h>
39 #include <drm/drm_vblank.h>
40 #include <drm/drm_panel.h>
42 #include "drm_dp_helper_internal.h"
44 DECLARE_DYNDBG_CLASSMAP(drm_debug_classes, DD_CLASS_TYPE_DISJOINT_BITS, 0,
56 struct dp_aux_backlight {
57 struct backlight_device *base;
58 struct drm_dp_aux *aux;
59 struct drm_edp_backlight_info info;
66 * These functions contain some common logic and helpers at various abstraction
67 * levels to deal with Display Port sink devices and related things like DP aux
68 * channel transfers, EDID reading over DP aux channels, decoding certain DPCD
72 /* Helpers for DP link training */
73 static u8 dp_link_status(const u8 link_status[DP_LINK_STATUS_SIZE], int r)
75 return link_status[r - DP_LANE0_1_STATUS];
78 static u8 dp_get_lane_status(const u8 link_status[DP_LINK_STATUS_SIZE],
81 int i = DP_LANE0_1_STATUS + (lane >> 1);
82 int s = (lane & 1) * 4;
83 u8 l = dp_link_status(link_status, i);
85 return (l >> s) & 0xf;
88 bool drm_dp_channel_eq_ok(const u8 link_status[DP_LINK_STATUS_SIZE],
95 lane_align = dp_link_status(link_status,
96 DP_LANE_ALIGN_STATUS_UPDATED);
97 if ((lane_align & DP_INTERLANE_ALIGN_DONE) == 0)
99 for (lane = 0; lane < lane_count; lane++) {
100 lane_status = dp_get_lane_status(link_status, lane);
101 if ((lane_status & DP_CHANNEL_EQ_BITS) != DP_CHANNEL_EQ_BITS)
106 EXPORT_SYMBOL(drm_dp_channel_eq_ok);
108 bool drm_dp_clock_recovery_ok(const u8 link_status[DP_LINK_STATUS_SIZE],
114 for (lane = 0; lane < lane_count; lane++) {
115 lane_status = dp_get_lane_status(link_status, lane);
116 if ((lane_status & DP_LANE_CR_DONE) == 0)
121 EXPORT_SYMBOL(drm_dp_clock_recovery_ok);
123 u8 drm_dp_get_adjust_request_voltage(const u8 link_status[DP_LINK_STATUS_SIZE],
126 int i = DP_ADJUST_REQUEST_LANE0_1 + (lane >> 1);
127 int s = ((lane & 1) ?
128 DP_ADJUST_VOLTAGE_SWING_LANE1_SHIFT :
129 DP_ADJUST_VOLTAGE_SWING_LANE0_SHIFT);
130 u8 l = dp_link_status(link_status, i);
132 return ((l >> s) & 0x3) << DP_TRAIN_VOLTAGE_SWING_SHIFT;
134 EXPORT_SYMBOL(drm_dp_get_adjust_request_voltage);
136 u8 drm_dp_get_adjust_request_pre_emphasis(const u8 link_status[DP_LINK_STATUS_SIZE],
139 int i = DP_ADJUST_REQUEST_LANE0_1 + (lane >> 1);
140 int s = ((lane & 1) ?
141 DP_ADJUST_PRE_EMPHASIS_LANE1_SHIFT :
142 DP_ADJUST_PRE_EMPHASIS_LANE0_SHIFT);
143 u8 l = dp_link_status(link_status, i);
145 return ((l >> s) & 0x3) << DP_TRAIN_PRE_EMPHASIS_SHIFT;
147 EXPORT_SYMBOL(drm_dp_get_adjust_request_pre_emphasis);
149 /* DP 2.0 128b/132b */
150 u8 drm_dp_get_adjust_tx_ffe_preset(const u8 link_status[DP_LINK_STATUS_SIZE],
153 int i = DP_ADJUST_REQUEST_LANE0_1 + (lane >> 1);
154 int s = ((lane & 1) ?
155 DP_ADJUST_TX_FFE_PRESET_LANE1_SHIFT :
156 DP_ADJUST_TX_FFE_PRESET_LANE0_SHIFT);
157 u8 l = dp_link_status(link_status, i);
159 return (l >> s) & 0xf;
161 EXPORT_SYMBOL(drm_dp_get_adjust_tx_ffe_preset);
163 /* DP 2.0 errata for 128b/132b */
164 bool drm_dp_128b132b_lane_channel_eq_done(const u8 link_status[DP_LINK_STATUS_SIZE],
167 u8 lane_align, lane_status;
170 lane_align = dp_link_status(link_status, DP_LANE_ALIGN_STATUS_UPDATED);
171 if (!(lane_align & DP_INTERLANE_ALIGN_DONE))
174 for (lane = 0; lane < lane_count; lane++) {
175 lane_status = dp_get_lane_status(link_status, lane);
176 if (!(lane_status & DP_LANE_CHANNEL_EQ_DONE))
181 EXPORT_SYMBOL(drm_dp_128b132b_lane_channel_eq_done);
183 /* DP 2.0 errata for 128b/132b */
184 bool drm_dp_128b132b_lane_symbol_locked(const u8 link_status[DP_LINK_STATUS_SIZE],
190 for (lane = 0; lane < lane_count; lane++) {
191 lane_status = dp_get_lane_status(link_status, lane);
192 if (!(lane_status & DP_LANE_SYMBOL_LOCKED))
197 EXPORT_SYMBOL(drm_dp_128b132b_lane_symbol_locked);
199 /* DP 2.0 errata for 128b/132b */
200 bool drm_dp_128b132b_eq_interlane_align_done(const u8 link_status[DP_LINK_STATUS_SIZE])
202 u8 status = dp_link_status(link_status, DP_LANE_ALIGN_STATUS_UPDATED);
204 return status & DP_128B132B_DPRX_EQ_INTERLANE_ALIGN_DONE;
206 EXPORT_SYMBOL(drm_dp_128b132b_eq_interlane_align_done);
208 /* DP 2.0 errata for 128b/132b */
209 bool drm_dp_128b132b_cds_interlane_align_done(const u8 link_status[DP_LINK_STATUS_SIZE])
211 u8 status = dp_link_status(link_status, DP_LANE_ALIGN_STATUS_UPDATED);
213 return status & DP_128B132B_DPRX_CDS_INTERLANE_ALIGN_DONE;
215 EXPORT_SYMBOL(drm_dp_128b132b_cds_interlane_align_done);
217 /* DP 2.0 errata for 128b/132b */
218 bool drm_dp_128b132b_link_training_failed(const u8 link_status[DP_LINK_STATUS_SIZE])
220 u8 status = dp_link_status(link_status, DP_LANE_ALIGN_STATUS_UPDATED);
222 return status & DP_128B132B_LT_FAILED;
224 EXPORT_SYMBOL(drm_dp_128b132b_link_training_failed);
226 static int __8b10b_clock_recovery_delay_us(const struct drm_dp_aux *aux, u8 rd_interval)
229 drm_dbg_kms(aux->drm_dev, "%s: invalid AUX interval 0x%02x (max 4)\n",
230 aux->name, rd_interval);
232 if (rd_interval == 0)
235 return rd_interval * 4 * USEC_PER_MSEC;
238 static int __8b10b_channel_eq_delay_us(const struct drm_dp_aux *aux, u8 rd_interval)
241 drm_dbg_kms(aux->drm_dev, "%s: invalid AUX interval 0x%02x (max 4)\n",
242 aux->name, rd_interval);
244 if (rd_interval == 0)
247 return rd_interval * 4 * USEC_PER_MSEC;
250 static int __128b132b_channel_eq_delay_us(const struct drm_dp_aux *aux, u8 rd_interval)
252 switch (rd_interval) {
254 drm_dbg_kms(aux->drm_dev, "%s: invalid AUX interval 0x%02x\n",
255 aux->name, rd_interval);
257 case DP_128B132B_TRAINING_AUX_RD_INTERVAL_400_US:
259 case DP_128B132B_TRAINING_AUX_RD_INTERVAL_4_MS:
261 case DP_128B132B_TRAINING_AUX_RD_INTERVAL_8_MS:
263 case DP_128B132B_TRAINING_AUX_RD_INTERVAL_12_MS:
265 case DP_128B132B_TRAINING_AUX_RD_INTERVAL_16_MS:
267 case DP_128B132B_TRAINING_AUX_RD_INTERVAL_32_MS:
269 case DP_128B132B_TRAINING_AUX_RD_INTERVAL_64_MS:
275 * The link training delays are different for:
277 * - Clock recovery vs. channel equalization
279 * - 128b/132b vs. 8b/10b
280 * - DPCD rev 1.3 vs. later
282 * Get the correct delay in us, reading DPCD if necessary.
284 static int __read_delay(struct drm_dp_aux *aux, const u8 dpcd[DP_RECEIVER_CAP_SIZE],
285 enum drm_dp_phy dp_phy, bool uhbr, bool cr)
287 int (*parse)(const struct drm_dp_aux *aux, u8 rd_interval);
289 u8 rd_interval, mask;
291 if (dp_phy == DP_PHY_DPRX) {
296 offset = DP_128B132B_TRAINING_AUX_RD_INTERVAL;
297 mask = DP_128B132B_TRAINING_AUX_RD_INTERVAL_MASK;
298 parse = __128b132b_channel_eq_delay_us;
300 if (cr && dpcd[DP_DPCD_REV] >= DP_DPCD_REV_14)
303 offset = DP_TRAINING_AUX_RD_INTERVAL;
304 mask = DP_TRAINING_AUX_RD_MASK;
306 parse = __8b10b_clock_recovery_delay_us;
308 parse = __8b10b_channel_eq_delay_us;
312 offset = DP_128B132B_TRAINING_AUX_RD_INTERVAL_PHY_REPEATER(dp_phy);
313 mask = DP_128B132B_TRAINING_AUX_RD_INTERVAL_MASK;
314 parse = __128b132b_channel_eq_delay_us;
319 offset = DP_TRAINING_AUX_RD_INTERVAL_PHY_REPEATER(dp_phy);
320 mask = DP_TRAINING_AUX_RD_MASK;
321 parse = __8b10b_channel_eq_delay_us;
325 if (offset < DP_RECEIVER_CAP_SIZE) {
326 rd_interval = dpcd[offset];
328 if (drm_dp_dpcd_readb(aux, offset, &rd_interval) != 1) {
329 drm_dbg_kms(aux->drm_dev, "%s: failed rd interval read\n",
331 /* arbitrary default delay */
336 return parse(aux, rd_interval & mask);
339 int drm_dp_read_clock_recovery_delay(struct drm_dp_aux *aux, const u8 dpcd[DP_RECEIVER_CAP_SIZE],
340 enum drm_dp_phy dp_phy, bool uhbr)
342 return __read_delay(aux, dpcd, dp_phy, uhbr, true);
344 EXPORT_SYMBOL(drm_dp_read_clock_recovery_delay);
346 int drm_dp_read_channel_eq_delay(struct drm_dp_aux *aux, const u8 dpcd[DP_RECEIVER_CAP_SIZE],
347 enum drm_dp_phy dp_phy, bool uhbr)
349 return __read_delay(aux, dpcd, dp_phy, uhbr, false);
351 EXPORT_SYMBOL(drm_dp_read_channel_eq_delay);
353 /* Per DP 2.0 Errata */
354 int drm_dp_128b132b_read_aux_rd_interval(struct drm_dp_aux *aux)
359 if (drm_dp_dpcd_readb(aux, DP_128B132B_TRAINING_AUX_RD_INTERVAL, &val) != 1) {
360 drm_err(aux->drm_dev, "%s: failed rd interval read\n",
363 val = DP_128B132B_TRAINING_AUX_RD_INTERVAL_MASK;
366 unit = (val & DP_128B132B_TRAINING_AUX_RD_INTERVAL_1MS_UNIT) ? 1 : 2;
367 val &= DP_128B132B_TRAINING_AUX_RD_INTERVAL_MASK;
369 return (val + 1) * unit * 1000;
371 EXPORT_SYMBOL(drm_dp_128b132b_read_aux_rd_interval);
373 void drm_dp_link_train_clock_recovery_delay(const struct drm_dp_aux *aux,
374 const u8 dpcd[DP_RECEIVER_CAP_SIZE])
376 u8 rd_interval = dpcd[DP_TRAINING_AUX_RD_INTERVAL] &
377 DP_TRAINING_AUX_RD_MASK;
380 if (dpcd[DP_DPCD_REV] >= DP_DPCD_REV_14)
383 delay_us = __8b10b_clock_recovery_delay_us(aux, rd_interval);
385 usleep_range(delay_us, delay_us * 2);
387 EXPORT_SYMBOL(drm_dp_link_train_clock_recovery_delay);
389 static void __drm_dp_link_train_channel_eq_delay(const struct drm_dp_aux *aux,
392 int delay_us = __8b10b_channel_eq_delay_us(aux, rd_interval);
394 usleep_range(delay_us, delay_us * 2);
397 void drm_dp_link_train_channel_eq_delay(const struct drm_dp_aux *aux,
398 const u8 dpcd[DP_RECEIVER_CAP_SIZE])
400 __drm_dp_link_train_channel_eq_delay(aux,
401 dpcd[DP_TRAINING_AUX_RD_INTERVAL] &
402 DP_TRAINING_AUX_RD_MASK);
404 EXPORT_SYMBOL(drm_dp_link_train_channel_eq_delay);
407 * drm_dp_phy_name() - Get the name of the given DP PHY
408 * @dp_phy: The DP PHY identifier
410 * Given the @dp_phy, get a user friendly name of the DP PHY, either "DPRX" or
411 * "LTTPR <N>", or "<INVALID DP PHY>" on errors. The returned string is always
412 * non-NULL and valid.
414 * Returns: Name of the DP PHY.
416 const char *drm_dp_phy_name(enum drm_dp_phy dp_phy)
418 static const char * const phy_names[] = {
419 [DP_PHY_DPRX] = "DPRX",
420 [DP_PHY_LTTPR1] = "LTTPR 1",
421 [DP_PHY_LTTPR2] = "LTTPR 2",
422 [DP_PHY_LTTPR3] = "LTTPR 3",
423 [DP_PHY_LTTPR4] = "LTTPR 4",
424 [DP_PHY_LTTPR5] = "LTTPR 5",
425 [DP_PHY_LTTPR6] = "LTTPR 6",
426 [DP_PHY_LTTPR7] = "LTTPR 7",
427 [DP_PHY_LTTPR8] = "LTTPR 8",
430 if (dp_phy < 0 || dp_phy >= ARRAY_SIZE(phy_names) ||
431 WARN_ON(!phy_names[dp_phy]))
432 return "<INVALID DP PHY>";
434 return phy_names[dp_phy];
436 EXPORT_SYMBOL(drm_dp_phy_name);
438 void drm_dp_lttpr_link_train_clock_recovery_delay(void)
440 usleep_range(100, 200);
442 EXPORT_SYMBOL(drm_dp_lttpr_link_train_clock_recovery_delay);
444 static u8 dp_lttpr_phy_cap(const u8 phy_cap[DP_LTTPR_PHY_CAP_SIZE], int r)
446 return phy_cap[r - DP_TRAINING_AUX_RD_INTERVAL_PHY_REPEATER1];
449 void drm_dp_lttpr_link_train_channel_eq_delay(const struct drm_dp_aux *aux,
450 const u8 phy_cap[DP_LTTPR_PHY_CAP_SIZE])
452 u8 interval = dp_lttpr_phy_cap(phy_cap,
453 DP_TRAINING_AUX_RD_INTERVAL_PHY_REPEATER1) &
454 DP_TRAINING_AUX_RD_MASK;
456 __drm_dp_link_train_channel_eq_delay(aux, interval);
458 EXPORT_SYMBOL(drm_dp_lttpr_link_train_channel_eq_delay);
460 u8 drm_dp_link_rate_to_bw_code(int link_rate)
464 return DP_LINK_BW_10;
466 return DP_LINK_BW_13_5;
468 return DP_LINK_BW_20;
470 /* Spec says link_bw = link_rate / 0.27Gbps */
471 return link_rate / 27000;
474 EXPORT_SYMBOL(drm_dp_link_rate_to_bw_code);
476 int drm_dp_bw_code_to_link_rate(u8 link_bw)
481 case DP_LINK_BW_13_5:
486 /* Spec says link_rate = link_bw * 0.27Gbps */
487 return link_bw * 27000;
490 EXPORT_SYMBOL(drm_dp_bw_code_to_link_rate);
492 #define AUX_RETRY_INTERVAL 500 /* us */
495 drm_dp_dump_access(const struct drm_dp_aux *aux,
496 u8 request, uint offset, void *buffer, int ret)
498 const char *arrow = request == DP_AUX_NATIVE_READ ? "->" : "<-";
501 drm_dbg_dp(aux->drm_dev, "%s: 0x%05x AUX %s (ret=%3d) %*ph\n",
502 aux->name, offset, arrow, ret, min(ret, 20), buffer);
504 drm_dbg_dp(aux->drm_dev, "%s: 0x%05x AUX %s (ret=%3d)\n",
505 aux->name, offset, arrow, ret);
511 * The DisplayPort AUX channel is an abstraction to allow generic, driver-
512 * independent access to AUX functionality. Drivers can take advantage of
513 * this by filling in the fields of the drm_dp_aux structure.
515 * Transactions are described using a hardware-independent drm_dp_aux_msg
516 * structure, which is passed into a driver's .transfer() implementation.
517 * Both native and I2C-over-AUX transactions are supported.
520 static int drm_dp_dpcd_access(struct drm_dp_aux *aux, u8 request,
521 unsigned int offset, void *buffer, size_t size)
523 struct drm_dp_aux_msg msg;
524 unsigned int retry, native_reply;
525 int err = 0, ret = 0;
527 memset(&msg, 0, sizeof(msg));
528 msg.address = offset;
529 msg.request = request;
533 mutex_lock(&aux->hw_mutex);
536 * If the device attached to the aux bus is powered down then there's
537 * no reason to attempt a transfer. Error out immediately.
539 if (aux->powered_down) {
545 * The specification doesn't give any recommendation on how often to
546 * retry native transactions. We used to retry 7 times like for
547 * aux i2c transactions but real world devices this wasn't
548 * sufficient, bump to 32 which makes Dell 4k monitors happier.
550 for (retry = 0; retry < 32; retry++) {
551 if (ret != 0 && ret != -ETIMEDOUT) {
552 usleep_range(AUX_RETRY_INTERVAL,
553 AUX_RETRY_INTERVAL + 100);
556 ret = aux->transfer(aux, &msg);
558 native_reply = msg.reply & DP_AUX_NATIVE_REPLY_MASK;
559 if (native_reply == DP_AUX_NATIVE_REPLY_ACK) {
569 * We want the error we return to be the error we received on
570 * the first transaction, since we may get a different error the
577 drm_dbg_kms(aux->drm_dev, "%s: Too many retries, giving up. First error: %d\n",
582 mutex_unlock(&aux->hw_mutex);
587 * drm_dp_dpcd_probe() - probe a given DPCD address with a 1-byte read access
588 * @aux: DisplayPort AUX channel (SST)
589 * @offset: address of the register to probe
591 * Probe the provided DPCD address by reading 1 byte from it. The function can
592 * be used to trigger some side-effect the read access has, like waking up the
593 * sink, without the need for the read-out value.
595 * Returns 0 if the read access suceeded, or a negative error code on failure.
597 int drm_dp_dpcd_probe(struct drm_dp_aux *aux, unsigned int offset)
602 ret = drm_dp_dpcd_access(aux, DP_AUX_NATIVE_READ, offset, &buffer, 1);
605 drm_dp_dump_access(aux, DP_AUX_NATIVE_READ, offset, &buffer, ret);
607 return ret < 0 ? ret : 0;
609 EXPORT_SYMBOL(drm_dp_dpcd_probe);
612 * drm_dp_dpcd_set_powered() - Set whether the DP device is powered
613 * @aux: DisplayPort AUX channel; for convenience it's OK to pass NULL here
614 * and the function will be a no-op.
615 * @powered: true if powered; false if not
617 * If the endpoint device on the DP AUX bus is known to be powered down
618 * then this function can be called to make future transfers fail immediately
619 * instead of needing to time out.
621 * If this function is never called then a device defaults to being powered.
623 void drm_dp_dpcd_set_powered(struct drm_dp_aux *aux, bool powered)
628 mutex_lock(&aux->hw_mutex);
629 aux->powered_down = !powered;
630 mutex_unlock(&aux->hw_mutex);
632 EXPORT_SYMBOL(drm_dp_dpcd_set_powered);
635 * drm_dp_dpcd_read() - read a series of bytes from the DPCD
636 * @aux: DisplayPort AUX channel (SST or MST)
637 * @offset: address of the (first) register to read
638 * @buffer: buffer to store the register values
639 * @size: number of bytes in @buffer
641 * Returns the number of bytes transferred on success, or a negative error
642 * code on failure. -EIO is returned if the request was NAKed by the sink or
643 * if the retry count was exceeded. If not all bytes were transferred, this
644 * function returns -EPROTO. Errors from the underlying AUX channel transfer
645 * function, with the exception of -EBUSY (which causes the transaction to
646 * be retried), are propagated to the caller.
648 ssize_t drm_dp_dpcd_read(struct drm_dp_aux *aux, unsigned int offset,
649 void *buffer, size_t size)
654 * HP ZR24w corrupts the first DPCD access after entering power save
655 * mode. Eg. on a read, the entire buffer will be filled with the same
656 * byte. Do a throw away read to avoid corrupting anything we care
657 * about. Afterwards things will work correctly until the monitor
658 * gets woken up and subsequently re-enters power save mode.
660 * The user pressing any button on the monitor is enough to wake it
661 * up, so there is no particularly good place to do the workaround.
662 * We just have to do it before any DPCD access and hope that the
663 * monitor doesn't power down exactly after the throw away read.
665 if (!aux->is_remote) {
666 ret = drm_dp_dpcd_probe(aux, DP_DPCD_REV);
672 ret = drm_dp_mst_dpcd_read(aux, offset, buffer, size);
674 ret = drm_dp_dpcd_access(aux, DP_AUX_NATIVE_READ, offset,
677 drm_dp_dump_access(aux, DP_AUX_NATIVE_READ, offset, buffer, ret);
680 EXPORT_SYMBOL(drm_dp_dpcd_read);
683 * drm_dp_dpcd_write() - write a series of bytes to the DPCD
684 * @aux: DisplayPort AUX channel (SST or MST)
685 * @offset: address of the (first) register to write
686 * @buffer: buffer containing the values to write
687 * @size: number of bytes in @buffer
689 * Returns the number of bytes transferred on success, or a negative error
690 * code on failure. -EIO is returned if the request was NAKed by the sink or
691 * if the retry count was exceeded. If not all bytes were transferred, this
692 * function returns -EPROTO. Errors from the underlying AUX channel transfer
693 * function, with the exception of -EBUSY (which causes the transaction to
694 * be retried), are propagated to the caller.
696 ssize_t drm_dp_dpcd_write(struct drm_dp_aux *aux, unsigned int offset,
697 void *buffer, size_t size)
702 ret = drm_dp_mst_dpcd_write(aux, offset, buffer, size);
704 ret = drm_dp_dpcd_access(aux, DP_AUX_NATIVE_WRITE, offset,
707 drm_dp_dump_access(aux, DP_AUX_NATIVE_WRITE, offset, buffer, ret);
710 EXPORT_SYMBOL(drm_dp_dpcd_write);
713 * drm_dp_dpcd_read_link_status() - read DPCD link status (bytes 0x202-0x207)
714 * @aux: DisplayPort AUX channel
715 * @status: buffer to store the link status in (must be at least 6 bytes)
717 * Returns the number of bytes transferred on success or a negative error
720 int drm_dp_dpcd_read_link_status(struct drm_dp_aux *aux,
721 u8 status[DP_LINK_STATUS_SIZE])
723 return drm_dp_dpcd_read(aux, DP_LANE0_1_STATUS, status,
724 DP_LINK_STATUS_SIZE);
726 EXPORT_SYMBOL(drm_dp_dpcd_read_link_status);
729 * drm_dp_dpcd_read_phy_link_status - get the link status information for a DP PHY
730 * @aux: DisplayPort AUX channel
731 * @dp_phy: the DP PHY to get the link status for
732 * @link_status: buffer to return the status in
734 * Fetch the AUX DPCD registers for the DPRX or an LTTPR PHY link status. The
735 * layout of the returned @link_status matches the DPCD register layout of the
736 * DPRX PHY link status.
738 * Returns 0 if the information was read successfully or a negative error code
741 int drm_dp_dpcd_read_phy_link_status(struct drm_dp_aux *aux,
742 enum drm_dp_phy dp_phy,
743 u8 link_status[DP_LINK_STATUS_SIZE])
747 if (dp_phy == DP_PHY_DPRX) {
748 ret = drm_dp_dpcd_read(aux,
751 DP_LINK_STATUS_SIZE);
756 WARN_ON(ret != DP_LINK_STATUS_SIZE);
761 ret = drm_dp_dpcd_read(aux,
762 DP_LANE0_1_STATUS_PHY_REPEATER(dp_phy),
764 DP_LINK_STATUS_SIZE - 1);
769 WARN_ON(ret != DP_LINK_STATUS_SIZE - 1);
771 /* Convert the LTTPR to the sink PHY link status layout */
772 memmove(&link_status[DP_SINK_STATUS - DP_LANE0_1_STATUS + 1],
773 &link_status[DP_SINK_STATUS - DP_LANE0_1_STATUS],
774 DP_LINK_STATUS_SIZE - (DP_SINK_STATUS - DP_LANE0_1_STATUS) - 1);
775 link_status[DP_SINK_STATUS - DP_LANE0_1_STATUS] = 0;
779 EXPORT_SYMBOL(drm_dp_dpcd_read_phy_link_status);
781 static bool is_edid_digital_input_dp(const struct drm_edid *drm_edid)
783 /* FIXME: get rid of drm_edid_raw() */
784 const struct edid *edid = drm_edid_raw(drm_edid);
786 return edid && edid->revision >= 4 &&
787 edid->input & DRM_EDID_INPUT_DIGITAL &&
788 (edid->input & DRM_EDID_DIGITAL_TYPE_MASK) == DRM_EDID_DIGITAL_TYPE_DP;
792 * drm_dp_downstream_is_type() - is the downstream facing port of certain type?
793 * @dpcd: DisplayPort configuration data
794 * @port_cap: port capabilities
795 * @type: port type to be checked. Can be:
796 * %DP_DS_PORT_TYPE_DP, %DP_DS_PORT_TYPE_VGA, %DP_DS_PORT_TYPE_DVI,
797 * %DP_DS_PORT_TYPE_HDMI, %DP_DS_PORT_TYPE_NON_EDID,
798 * %DP_DS_PORT_TYPE_DP_DUALMODE or %DP_DS_PORT_TYPE_WIRELESS.
800 * Caveat: Only works with DPCD 1.1+ port caps.
802 * Returns: whether the downstream facing port matches the type.
804 bool drm_dp_downstream_is_type(const u8 dpcd[DP_RECEIVER_CAP_SIZE],
805 const u8 port_cap[4], u8 type)
807 return drm_dp_is_branch(dpcd) &&
808 dpcd[DP_DPCD_REV] >= 0x11 &&
809 (port_cap[0] & DP_DS_PORT_TYPE_MASK) == type;
811 EXPORT_SYMBOL(drm_dp_downstream_is_type);
814 * drm_dp_downstream_is_tmds() - is the downstream facing port TMDS?
815 * @dpcd: DisplayPort configuration data
816 * @port_cap: port capabilities
819 * Returns: whether the downstream facing port is TMDS (HDMI/DVI).
821 bool drm_dp_downstream_is_tmds(const u8 dpcd[DP_RECEIVER_CAP_SIZE],
822 const u8 port_cap[4],
823 const struct drm_edid *drm_edid)
825 if (dpcd[DP_DPCD_REV] < 0x11) {
826 switch (dpcd[DP_DOWNSTREAMPORT_PRESENT] & DP_DWN_STRM_PORT_TYPE_MASK) {
827 case DP_DWN_STRM_PORT_TYPE_TMDS:
834 switch (port_cap[0] & DP_DS_PORT_TYPE_MASK) {
835 case DP_DS_PORT_TYPE_DP_DUALMODE:
836 if (is_edid_digital_input_dp(drm_edid))
839 case DP_DS_PORT_TYPE_DVI:
840 case DP_DS_PORT_TYPE_HDMI:
846 EXPORT_SYMBOL(drm_dp_downstream_is_tmds);
849 * drm_dp_send_real_edid_checksum() - send back real edid checksum value
850 * @aux: DisplayPort AUX channel
851 * @real_edid_checksum: real edid checksum for the last block
856 bool drm_dp_send_real_edid_checksum(struct drm_dp_aux *aux,
857 u8 real_edid_checksum)
859 u8 link_edid_read = 0, auto_test_req = 0, test_resp = 0;
861 if (drm_dp_dpcd_read(aux, DP_DEVICE_SERVICE_IRQ_VECTOR,
862 &auto_test_req, 1) < 1) {
863 drm_err(aux->drm_dev, "%s: DPCD failed read at register 0x%x\n",
864 aux->name, DP_DEVICE_SERVICE_IRQ_VECTOR);
867 auto_test_req &= DP_AUTOMATED_TEST_REQUEST;
869 if (drm_dp_dpcd_read(aux, DP_TEST_REQUEST, &link_edid_read, 1) < 1) {
870 drm_err(aux->drm_dev, "%s: DPCD failed read at register 0x%x\n",
871 aux->name, DP_TEST_REQUEST);
874 link_edid_read &= DP_TEST_LINK_EDID_READ;
876 if (!auto_test_req || !link_edid_read) {
877 drm_dbg_kms(aux->drm_dev, "%s: Source DUT does not support TEST_EDID_READ\n",
882 if (drm_dp_dpcd_write(aux, DP_DEVICE_SERVICE_IRQ_VECTOR,
883 &auto_test_req, 1) < 1) {
884 drm_err(aux->drm_dev, "%s: DPCD failed write at register 0x%x\n",
885 aux->name, DP_DEVICE_SERVICE_IRQ_VECTOR);
889 /* send back checksum for the last edid extension block data */
890 if (drm_dp_dpcd_write(aux, DP_TEST_EDID_CHECKSUM,
891 &real_edid_checksum, 1) < 1) {
892 drm_err(aux->drm_dev, "%s: DPCD failed write at register 0x%x\n",
893 aux->name, DP_TEST_EDID_CHECKSUM);
897 test_resp |= DP_TEST_EDID_CHECKSUM_WRITE;
898 if (drm_dp_dpcd_write(aux, DP_TEST_RESPONSE, &test_resp, 1) < 1) {
899 drm_err(aux->drm_dev, "%s: DPCD failed write at register 0x%x\n",
900 aux->name, DP_TEST_RESPONSE);
906 EXPORT_SYMBOL(drm_dp_send_real_edid_checksum);
908 static u8 drm_dp_downstream_port_count(const u8 dpcd[DP_RECEIVER_CAP_SIZE])
910 u8 port_count = dpcd[DP_DOWN_STREAM_PORT_COUNT] & DP_PORT_COUNT_MASK;
912 if (dpcd[DP_DOWNSTREAMPORT_PRESENT] & DP_DETAILED_CAP_INFO_AVAILABLE && port_count > 4)
918 static int drm_dp_read_extended_dpcd_caps(struct drm_dp_aux *aux,
919 u8 dpcd[DP_RECEIVER_CAP_SIZE])
921 u8 dpcd_ext[DP_RECEIVER_CAP_SIZE];
925 * Prior to DP1.3 the bit represented by
926 * DP_EXTENDED_RECEIVER_CAP_FIELD_PRESENT was reserved.
927 * If it is set DP_DPCD_REV at 0000h could be at a value less than
928 * the true capability of the panel. The only way to check is to
929 * then compare 0000h and 2200h.
931 if (!(dpcd[DP_TRAINING_AUX_RD_INTERVAL] &
932 DP_EXTENDED_RECEIVER_CAP_FIELD_PRESENT))
935 ret = drm_dp_dpcd_read(aux, DP_DP13_DPCD_REV, &dpcd_ext,
939 if (ret != sizeof(dpcd_ext))
942 if (dpcd[DP_DPCD_REV] > dpcd_ext[DP_DPCD_REV]) {
943 drm_dbg_kms(aux->drm_dev,
944 "%s: Extended DPCD rev less than base DPCD rev (%d > %d)\n",
945 aux->name, dpcd[DP_DPCD_REV], dpcd_ext[DP_DPCD_REV]);
949 if (!memcmp(dpcd, dpcd_ext, sizeof(dpcd_ext)))
952 drm_dbg_kms(aux->drm_dev, "%s: Base DPCD: %*ph\n", aux->name, DP_RECEIVER_CAP_SIZE, dpcd);
954 memcpy(dpcd, dpcd_ext, sizeof(dpcd_ext));
960 * drm_dp_read_dpcd_caps() - read DPCD caps and extended DPCD caps if
962 * @aux: DisplayPort AUX channel
963 * @dpcd: Buffer to store the resulting DPCD in
965 * Attempts to read the base DPCD caps for @aux. Additionally, this function
966 * checks for and reads the extended DPRX caps (%DP_DP13_DPCD_REV) if
969 * Returns: %0 if the DPCD was read successfully, negative error code
972 int drm_dp_read_dpcd_caps(struct drm_dp_aux *aux,
973 u8 dpcd[DP_RECEIVER_CAP_SIZE])
977 ret = drm_dp_dpcd_read(aux, DP_DPCD_REV, dpcd, DP_RECEIVER_CAP_SIZE);
980 if (ret != DP_RECEIVER_CAP_SIZE || dpcd[DP_DPCD_REV] == 0)
983 ret = drm_dp_read_extended_dpcd_caps(aux, dpcd);
987 drm_dbg_kms(aux->drm_dev, "%s: DPCD: %*ph\n", aux->name, DP_RECEIVER_CAP_SIZE, dpcd);
991 EXPORT_SYMBOL(drm_dp_read_dpcd_caps);
994 * drm_dp_read_downstream_info() - read DPCD downstream port info if available
995 * @aux: DisplayPort AUX channel
996 * @dpcd: A cached copy of the port's DPCD
997 * @downstream_ports: buffer to store the downstream port info in
1000 * drm_dp_downstream_max_clock()
1001 * drm_dp_downstream_max_bpc()
1003 * Returns: 0 if either the downstream port info was read successfully or
1004 * there was no downstream info to read, or a negative error code otherwise.
1006 int drm_dp_read_downstream_info(struct drm_dp_aux *aux,
1007 const u8 dpcd[DP_RECEIVER_CAP_SIZE],
1008 u8 downstream_ports[DP_MAX_DOWNSTREAM_PORTS])
1013 memset(downstream_ports, 0, DP_MAX_DOWNSTREAM_PORTS);
1015 /* No downstream info to read */
1016 if (!drm_dp_is_branch(dpcd) || dpcd[DP_DPCD_REV] == DP_DPCD_REV_10)
1019 /* Some branches advertise having 0 downstream ports, despite also advertising they have a
1020 * downstream port present. The DP spec isn't clear on if this is allowed or not, but since
1021 * some branches do it we need to handle it regardless.
1023 len = drm_dp_downstream_port_count(dpcd);
1027 if (dpcd[DP_DOWNSTREAMPORT_PRESENT] & DP_DETAILED_CAP_INFO_AVAILABLE)
1030 ret = drm_dp_dpcd_read(aux, DP_DOWNSTREAM_PORT_0, downstream_ports, len);
1036 drm_dbg_kms(aux->drm_dev, "%s: DPCD DFP: %*ph\n", aux->name, len, downstream_ports);
1040 EXPORT_SYMBOL(drm_dp_read_downstream_info);
1043 * drm_dp_downstream_max_dotclock() - extract downstream facing port max dot clock
1044 * @dpcd: DisplayPort configuration data
1045 * @port_cap: port capabilities
1047 * Returns: Downstream facing port max dot clock in kHz on success,
1048 * or 0 if max clock not defined
1050 int drm_dp_downstream_max_dotclock(const u8 dpcd[DP_RECEIVER_CAP_SIZE],
1051 const u8 port_cap[4])
1053 if (!drm_dp_is_branch(dpcd))
1056 if (dpcd[DP_DPCD_REV] < 0x11)
1059 switch (port_cap[0] & DP_DS_PORT_TYPE_MASK) {
1060 case DP_DS_PORT_TYPE_VGA:
1061 if ((dpcd[DP_DOWNSTREAMPORT_PRESENT] & DP_DETAILED_CAP_INFO_AVAILABLE) == 0)
1063 return port_cap[1] * 8000;
1068 EXPORT_SYMBOL(drm_dp_downstream_max_dotclock);
1071 * drm_dp_downstream_max_tmds_clock() - extract downstream facing port max TMDS clock
1072 * @dpcd: DisplayPort configuration data
1073 * @port_cap: port capabilities
1076 * Returns: HDMI/DVI downstream facing port max TMDS clock in kHz on success,
1077 * or 0 if max TMDS clock not defined
1079 int drm_dp_downstream_max_tmds_clock(const u8 dpcd[DP_RECEIVER_CAP_SIZE],
1080 const u8 port_cap[4],
1081 const struct drm_edid *drm_edid)
1083 if (!drm_dp_is_branch(dpcd))
1086 if (dpcd[DP_DPCD_REV] < 0x11) {
1087 switch (dpcd[DP_DOWNSTREAMPORT_PRESENT] & DP_DWN_STRM_PORT_TYPE_MASK) {
1088 case DP_DWN_STRM_PORT_TYPE_TMDS:
1095 switch (port_cap[0] & DP_DS_PORT_TYPE_MASK) {
1096 case DP_DS_PORT_TYPE_DP_DUALMODE:
1097 if (is_edid_digital_input_dp(drm_edid))
1100 * It's left up to the driver to check the
1101 * DP dual mode adapter's max TMDS clock.
1103 * Unfortunately it looks like branch devices
1104 * may not fordward that the DP dual mode i2c
1105 * access so we just usually get i2c nak :(
1108 case DP_DS_PORT_TYPE_HDMI:
1110 * We should perhaps assume 165 MHz when detailed cap
1111 * info is not available. But looks like many typical
1112 * branch devices fall into that category and so we'd
1113 * probably end up with users complaining that they can't
1114 * get high resolution modes with their favorite dongle.
1116 * So let's limit to 300 MHz instead since DPCD 1.4
1117 * HDMI 2.0 DFPs are required to have the detailed cap
1118 * info. So it's more likely we're dealing with a HDMI 1.4
1119 * compatible* device here.
1121 if ((dpcd[DP_DOWNSTREAMPORT_PRESENT] & DP_DETAILED_CAP_INFO_AVAILABLE) == 0)
1123 return port_cap[1] * 2500;
1124 case DP_DS_PORT_TYPE_DVI:
1125 if ((dpcd[DP_DOWNSTREAMPORT_PRESENT] & DP_DETAILED_CAP_INFO_AVAILABLE) == 0)
1127 /* FIXME what to do about DVI dual link? */
1128 return port_cap[1] * 2500;
1133 EXPORT_SYMBOL(drm_dp_downstream_max_tmds_clock);
1136 * drm_dp_downstream_min_tmds_clock() - extract downstream facing port min TMDS clock
1137 * @dpcd: DisplayPort configuration data
1138 * @port_cap: port capabilities
1141 * Returns: HDMI/DVI downstream facing port min TMDS clock in kHz on success,
1142 * or 0 if max TMDS clock not defined
1144 int drm_dp_downstream_min_tmds_clock(const u8 dpcd[DP_RECEIVER_CAP_SIZE],
1145 const u8 port_cap[4],
1146 const struct drm_edid *drm_edid)
1148 if (!drm_dp_is_branch(dpcd))
1151 if (dpcd[DP_DPCD_REV] < 0x11) {
1152 switch (dpcd[DP_DOWNSTREAMPORT_PRESENT] & DP_DWN_STRM_PORT_TYPE_MASK) {
1153 case DP_DWN_STRM_PORT_TYPE_TMDS:
1160 switch (port_cap[0] & DP_DS_PORT_TYPE_MASK) {
1161 case DP_DS_PORT_TYPE_DP_DUALMODE:
1162 if (is_edid_digital_input_dp(drm_edid))
1165 case DP_DS_PORT_TYPE_DVI:
1166 case DP_DS_PORT_TYPE_HDMI:
1168 * Unclear whether the protocol converter could
1169 * utilize pixel replication. Assume it won't.
1176 EXPORT_SYMBOL(drm_dp_downstream_min_tmds_clock);
1179 * drm_dp_downstream_max_bpc() - extract downstream facing port max
1180 * bits per component
1181 * @dpcd: DisplayPort configuration data
1182 * @port_cap: downstream facing port capabilities
1185 * Returns: Max bpc on success or 0 if max bpc not defined
1187 int drm_dp_downstream_max_bpc(const u8 dpcd[DP_RECEIVER_CAP_SIZE],
1188 const u8 port_cap[4],
1189 const struct drm_edid *drm_edid)
1191 if (!drm_dp_is_branch(dpcd))
1194 if (dpcd[DP_DPCD_REV] < 0x11) {
1195 switch (dpcd[DP_DOWNSTREAMPORT_PRESENT] & DP_DWN_STRM_PORT_TYPE_MASK) {
1196 case DP_DWN_STRM_PORT_TYPE_DP:
1203 switch (port_cap[0] & DP_DS_PORT_TYPE_MASK) {
1204 case DP_DS_PORT_TYPE_DP:
1206 case DP_DS_PORT_TYPE_DP_DUALMODE:
1207 if (is_edid_digital_input_dp(drm_edid))
1210 case DP_DS_PORT_TYPE_HDMI:
1211 case DP_DS_PORT_TYPE_DVI:
1212 case DP_DS_PORT_TYPE_VGA:
1213 if ((dpcd[DP_DOWNSTREAMPORT_PRESENT] & DP_DETAILED_CAP_INFO_AVAILABLE) == 0)
1216 switch (port_cap[2] & DP_DS_MAX_BPC_MASK) {
1233 EXPORT_SYMBOL(drm_dp_downstream_max_bpc);
1236 * drm_dp_downstream_420_passthrough() - determine downstream facing port
1237 * YCbCr 4:2:0 pass-through capability
1238 * @dpcd: DisplayPort configuration data
1239 * @port_cap: downstream facing port capabilities
1241 * Returns: whether the downstream facing port can pass through YCbCr 4:2:0
1243 bool drm_dp_downstream_420_passthrough(const u8 dpcd[DP_RECEIVER_CAP_SIZE],
1244 const u8 port_cap[4])
1246 if (!drm_dp_is_branch(dpcd))
1249 if (dpcd[DP_DPCD_REV] < 0x13)
1252 switch (port_cap[0] & DP_DS_PORT_TYPE_MASK) {
1253 case DP_DS_PORT_TYPE_DP:
1255 case DP_DS_PORT_TYPE_HDMI:
1256 if ((dpcd[DP_DOWNSTREAMPORT_PRESENT] & DP_DETAILED_CAP_INFO_AVAILABLE) == 0)
1259 return port_cap[3] & DP_DS_HDMI_YCBCR420_PASS_THROUGH;
1264 EXPORT_SYMBOL(drm_dp_downstream_420_passthrough);
1267 * drm_dp_downstream_444_to_420_conversion() - determine downstream facing port
1268 * YCbCr 4:4:4->4:2:0 conversion capability
1269 * @dpcd: DisplayPort configuration data
1270 * @port_cap: downstream facing port capabilities
1272 * Returns: whether the downstream facing port can convert YCbCr 4:4:4 to 4:2:0
1274 bool drm_dp_downstream_444_to_420_conversion(const u8 dpcd[DP_RECEIVER_CAP_SIZE],
1275 const u8 port_cap[4])
1277 if (!drm_dp_is_branch(dpcd))
1280 if (dpcd[DP_DPCD_REV] < 0x13)
1283 switch (port_cap[0] & DP_DS_PORT_TYPE_MASK) {
1284 case DP_DS_PORT_TYPE_HDMI:
1285 if ((dpcd[DP_DOWNSTREAMPORT_PRESENT] & DP_DETAILED_CAP_INFO_AVAILABLE) == 0)
1288 return port_cap[3] & DP_DS_HDMI_YCBCR444_TO_420_CONV;
1293 EXPORT_SYMBOL(drm_dp_downstream_444_to_420_conversion);
1296 * drm_dp_downstream_rgb_to_ycbcr_conversion() - determine downstream facing port
1297 * RGB->YCbCr conversion capability
1298 * @dpcd: DisplayPort configuration data
1299 * @port_cap: downstream facing port capabilities
1300 * @color_spc: Colorspace for which conversion cap is sought
1302 * Returns: whether the downstream facing port can convert RGB->YCbCr for a given
1305 bool drm_dp_downstream_rgb_to_ycbcr_conversion(const u8 dpcd[DP_RECEIVER_CAP_SIZE],
1306 const u8 port_cap[4],
1309 if (!drm_dp_is_branch(dpcd))
1312 if (dpcd[DP_DPCD_REV] < 0x13)
1315 switch (port_cap[0] & DP_DS_PORT_TYPE_MASK) {
1316 case DP_DS_PORT_TYPE_HDMI:
1317 if ((dpcd[DP_DOWNSTREAMPORT_PRESENT] & DP_DETAILED_CAP_INFO_AVAILABLE) == 0)
1320 return port_cap[3] & color_spc;
1325 EXPORT_SYMBOL(drm_dp_downstream_rgb_to_ycbcr_conversion);
1328 * drm_dp_downstream_mode() - return a mode for downstream facing port
1330 * @dpcd: DisplayPort configuration data
1331 * @port_cap: port capabilities
1333 * Provides a suitable mode for downstream facing ports without EDID.
1335 * Returns: A new drm_display_mode on success or NULL on failure
1337 struct drm_display_mode *
1338 drm_dp_downstream_mode(struct drm_device *dev,
1339 const u8 dpcd[DP_RECEIVER_CAP_SIZE],
1340 const u8 port_cap[4])
1345 if (!drm_dp_is_branch(dpcd))
1348 if (dpcd[DP_DPCD_REV] < 0x11)
1351 switch (port_cap[0] & DP_DS_PORT_TYPE_MASK) {
1352 case DP_DS_PORT_TYPE_NON_EDID:
1353 switch (port_cap[0] & DP_DS_NON_EDID_MASK) {
1354 case DP_DS_NON_EDID_720x480i_60:
1357 case DP_DS_NON_EDID_720x480i_50:
1360 case DP_DS_NON_EDID_1920x1080i_60:
1363 case DP_DS_NON_EDID_1920x1080i_50:
1366 case DP_DS_NON_EDID_1280x720_60:
1369 case DP_DS_NON_EDID_1280x720_50:
1375 return drm_display_mode_from_cea_vic(dev, vic);
1380 EXPORT_SYMBOL(drm_dp_downstream_mode);
1383 * drm_dp_downstream_id() - identify branch device
1384 * @aux: DisplayPort AUX channel
1385 * @id: DisplayPort branch device id
1387 * Returns branch device id on success or NULL on failure
1389 int drm_dp_downstream_id(struct drm_dp_aux *aux, char id[6])
1391 return drm_dp_dpcd_read(aux, DP_BRANCH_ID, id, 6);
1393 EXPORT_SYMBOL(drm_dp_downstream_id);
1396 * drm_dp_downstream_debug() - debug DP branch devices
1397 * @m: pointer for debugfs file
1398 * @dpcd: DisplayPort configuration data
1399 * @port_cap: port capabilities
1401 * @aux: DisplayPort AUX channel
1404 void drm_dp_downstream_debug(struct seq_file *m,
1405 const u8 dpcd[DP_RECEIVER_CAP_SIZE],
1406 const u8 port_cap[4],
1407 const struct drm_edid *drm_edid,
1408 struct drm_dp_aux *aux)
1410 bool detailed_cap_info = dpcd[DP_DOWNSTREAMPORT_PRESENT] &
1411 DP_DETAILED_CAP_INFO_AVAILABLE;
1417 int type = port_cap[0] & DP_DS_PORT_TYPE_MASK;
1418 bool branch_device = drm_dp_is_branch(dpcd);
1420 seq_printf(m, "\tDP branch device present: %s\n",
1421 str_yes_no(branch_device));
1427 case DP_DS_PORT_TYPE_DP:
1428 seq_puts(m, "\t\tType: DisplayPort\n");
1430 case DP_DS_PORT_TYPE_VGA:
1431 seq_puts(m, "\t\tType: VGA\n");
1433 case DP_DS_PORT_TYPE_DVI:
1434 seq_puts(m, "\t\tType: DVI\n");
1436 case DP_DS_PORT_TYPE_HDMI:
1437 seq_puts(m, "\t\tType: HDMI\n");
1439 case DP_DS_PORT_TYPE_NON_EDID:
1440 seq_puts(m, "\t\tType: others without EDID support\n");
1442 case DP_DS_PORT_TYPE_DP_DUALMODE:
1443 seq_puts(m, "\t\tType: DP++\n");
1445 case DP_DS_PORT_TYPE_WIRELESS:
1446 seq_puts(m, "\t\tType: Wireless\n");
1449 seq_puts(m, "\t\tType: N/A\n");
1452 memset(id, 0, sizeof(id));
1453 drm_dp_downstream_id(aux, id);
1454 seq_printf(m, "\t\tID: %s\n", id);
1456 len = drm_dp_dpcd_read(aux, DP_BRANCH_HW_REV, &rev[0], 1);
1458 seq_printf(m, "\t\tHW: %d.%d\n",
1459 (rev[0] & 0xf0) >> 4, rev[0] & 0xf);
1461 len = drm_dp_dpcd_read(aux, DP_BRANCH_SW_REV, rev, 2);
1463 seq_printf(m, "\t\tSW: %d.%d\n", rev[0], rev[1]);
1465 if (detailed_cap_info) {
1466 clk = drm_dp_downstream_max_dotclock(dpcd, port_cap);
1468 seq_printf(m, "\t\tMax dot clock: %d kHz\n", clk);
1470 clk = drm_dp_downstream_max_tmds_clock(dpcd, port_cap, drm_edid);
1472 seq_printf(m, "\t\tMax TMDS clock: %d kHz\n", clk);
1474 clk = drm_dp_downstream_min_tmds_clock(dpcd, port_cap, drm_edid);
1476 seq_printf(m, "\t\tMin TMDS clock: %d kHz\n", clk);
1478 bpc = drm_dp_downstream_max_bpc(dpcd, port_cap, drm_edid);
1481 seq_printf(m, "\t\tMax bpc: %d\n", bpc);
1484 EXPORT_SYMBOL(drm_dp_downstream_debug);
1487 * drm_dp_subconnector_type() - get DP branch device type
1488 * @dpcd: DisplayPort configuration data
1489 * @port_cap: port capabilities
1491 enum drm_mode_subconnector
1492 drm_dp_subconnector_type(const u8 dpcd[DP_RECEIVER_CAP_SIZE],
1493 const u8 port_cap[4])
1496 if (!drm_dp_is_branch(dpcd))
1497 return DRM_MODE_SUBCONNECTOR_Native;
1498 /* DP 1.0 approach */
1499 if (dpcd[DP_DPCD_REV] == DP_DPCD_REV_10) {
1500 type = dpcd[DP_DOWNSTREAMPORT_PRESENT] &
1501 DP_DWN_STRM_PORT_TYPE_MASK;
1504 case DP_DWN_STRM_PORT_TYPE_TMDS:
1505 /* Can be HDMI or DVI-D, DVI-D is a safer option */
1506 return DRM_MODE_SUBCONNECTOR_DVID;
1507 case DP_DWN_STRM_PORT_TYPE_ANALOG:
1508 /* Can be VGA or DVI-A, VGA is more popular */
1509 return DRM_MODE_SUBCONNECTOR_VGA;
1510 case DP_DWN_STRM_PORT_TYPE_DP:
1511 return DRM_MODE_SUBCONNECTOR_DisplayPort;
1512 case DP_DWN_STRM_PORT_TYPE_OTHER:
1514 return DRM_MODE_SUBCONNECTOR_Unknown;
1517 type = port_cap[0] & DP_DS_PORT_TYPE_MASK;
1520 case DP_DS_PORT_TYPE_DP:
1521 case DP_DS_PORT_TYPE_DP_DUALMODE:
1522 return DRM_MODE_SUBCONNECTOR_DisplayPort;
1523 case DP_DS_PORT_TYPE_VGA:
1524 return DRM_MODE_SUBCONNECTOR_VGA;
1525 case DP_DS_PORT_TYPE_DVI:
1526 return DRM_MODE_SUBCONNECTOR_DVID;
1527 case DP_DS_PORT_TYPE_HDMI:
1528 return DRM_MODE_SUBCONNECTOR_HDMIA;
1529 case DP_DS_PORT_TYPE_WIRELESS:
1530 return DRM_MODE_SUBCONNECTOR_Wireless;
1531 case DP_DS_PORT_TYPE_NON_EDID:
1533 return DRM_MODE_SUBCONNECTOR_Unknown;
1536 EXPORT_SYMBOL(drm_dp_subconnector_type);
1539 * drm_dp_set_subconnector_property - set subconnector for DP connector
1540 * @connector: connector to set property on
1541 * @status: connector status
1542 * @dpcd: DisplayPort configuration data
1543 * @port_cap: port capabilities
1545 * Called by a driver on every detect event.
1547 void drm_dp_set_subconnector_property(struct drm_connector *connector,
1548 enum drm_connector_status status,
1550 const u8 port_cap[4])
1552 enum drm_mode_subconnector subconnector = DRM_MODE_SUBCONNECTOR_Unknown;
1554 if (status == connector_status_connected)
1555 subconnector = drm_dp_subconnector_type(dpcd, port_cap);
1556 drm_object_property_set_value(&connector->base,
1557 connector->dev->mode_config.dp_subconnector_property,
1560 EXPORT_SYMBOL(drm_dp_set_subconnector_property);
1563 * drm_dp_read_sink_count_cap() - Check whether a given connector has a valid sink
1565 * @connector: The DRM connector to check
1566 * @dpcd: A cached copy of the connector's DPCD RX capabilities
1567 * @desc: A cached copy of the connector's DP descriptor
1569 * See also: drm_dp_read_sink_count()
1571 * Returns: %True if the (e)DP connector has a valid sink count that should
1572 * be probed, %false otherwise.
1574 bool drm_dp_read_sink_count_cap(struct drm_connector *connector,
1575 const u8 dpcd[DP_RECEIVER_CAP_SIZE],
1576 const struct drm_dp_desc *desc)
1578 /* Some eDP panels don't set a valid value for the sink count */
1579 return connector->connector_type != DRM_MODE_CONNECTOR_eDP &&
1580 dpcd[DP_DPCD_REV] >= DP_DPCD_REV_11 &&
1581 dpcd[DP_DOWNSTREAMPORT_PRESENT] & DP_DWN_STRM_PORT_PRESENT &&
1582 !drm_dp_has_quirk(desc, DP_DPCD_QUIRK_NO_SINK_COUNT);
1584 EXPORT_SYMBOL(drm_dp_read_sink_count_cap);
1587 * drm_dp_read_sink_count() - Retrieve the sink count for a given sink
1588 * @aux: The DP AUX channel to use
1590 * See also: drm_dp_read_sink_count_cap()
1592 * Returns: The current sink count reported by @aux, or a negative error code
1595 int drm_dp_read_sink_count(struct drm_dp_aux *aux)
1600 ret = drm_dp_dpcd_readb(aux, DP_SINK_COUNT, &count);
1606 return DP_GET_SINK_COUNT(count);
1608 EXPORT_SYMBOL(drm_dp_read_sink_count);
1611 * I2C-over-AUX implementation
1614 static u32 drm_dp_i2c_functionality(struct i2c_adapter *adapter)
1616 return I2C_FUNC_I2C | I2C_FUNC_SMBUS_EMUL |
1617 I2C_FUNC_SMBUS_READ_BLOCK_DATA |
1618 I2C_FUNC_SMBUS_BLOCK_PROC_CALL |
1619 I2C_FUNC_10BIT_ADDR;
1622 static void drm_dp_i2c_msg_write_status_update(struct drm_dp_aux_msg *msg)
1625 * In case of i2c defer or short i2c ack reply to a write,
1626 * we need to switch to WRITE_STATUS_UPDATE to drain the
1627 * rest of the message
1629 if ((msg->request & ~DP_AUX_I2C_MOT) == DP_AUX_I2C_WRITE) {
1630 msg->request &= DP_AUX_I2C_MOT;
1631 msg->request |= DP_AUX_I2C_WRITE_STATUS_UPDATE;
1635 #define AUX_PRECHARGE_LEN 10 /* 10 to 16 */
1636 #define AUX_SYNC_LEN (16 + 4) /* preamble + AUX_SYNC_END */
1637 #define AUX_STOP_LEN 4
1638 #define AUX_CMD_LEN 4
1639 #define AUX_ADDRESS_LEN 20
1640 #define AUX_REPLY_PAD_LEN 4
1641 #define AUX_LENGTH_LEN 8
1644 * Calculate the duration of the AUX request/reply in usec. Gives the
1645 * "best" case estimate, ie. successful while as short as possible.
1647 static int drm_dp_aux_req_duration(const struct drm_dp_aux_msg *msg)
1649 int len = AUX_PRECHARGE_LEN + AUX_SYNC_LEN + AUX_STOP_LEN +
1650 AUX_CMD_LEN + AUX_ADDRESS_LEN + AUX_LENGTH_LEN;
1652 if ((msg->request & DP_AUX_I2C_READ) == 0)
1653 len += msg->size * 8;
1658 static int drm_dp_aux_reply_duration(const struct drm_dp_aux_msg *msg)
1660 int len = AUX_PRECHARGE_LEN + AUX_SYNC_LEN + AUX_STOP_LEN +
1661 AUX_CMD_LEN + AUX_REPLY_PAD_LEN;
1664 * For read we expect what was asked. For writes there will
1665 * be 0 or 1 data bytes. Assume 0 for the "best" case.
1667 if (msg->request & DP_AUX_I2C_READ)
1668 len += msg->size * 8;
1673 #define I2C_START_LEN 1
1674 #define I2C_STOP_LEN 1
1675 #define I2C_ADDR_LEN 9 /* ADDRESS + R/W + ACK/NACK */
1676 #define I2C_DATA_LEN 9 /* DATA + ACK/NACK */
1679 * Calculate the length of the i2c transfer in usec, assuming
1680 * the i2c bus speed is as specified. Gives the "worst"
1681 * case estimate, ie. successful while as long as possible.
1682 * Doesn't account the "MOT" bit, and instead assumes each
1683 * message includes a START, ADDRESS and STOP. Neither does it
1684 * account for additional random variables such as clock stretching.
1686 static int drm_dp_i2c_msg_duration(const struct drm_dp_aux_msg *msg,
1689 /* AUX bitrate is 1MHz, i2c bitrate as specified */
1690 return DIV_ROUND_UP((I2C_START_LEN + I2C_ADDR_LEN +
1691 msg->size * I2C_DATA_LEN +
1692 I2C_STOP_LEN) * 1000, i2c_speed_khz);
1696 * Determine how many retries should be attempted to successfully transfer
1697 * the specified message, based on the estimated durations of the
1698 * i2c and AUX transfers.
1700 static int drm_dp_i2c_retry_count(const struct drm_dp_aux_msg *msg,
1703 int aux_time_us = drm_dp_aux_req_duration(msg) +
1704 drm_dp_aux_reply_duration(msg);
1705 int i2c_time_us = drm_dp_i2c_msg_duration(msg, i2c_speed_khz);
1707 return DIV_ROUND_UP(i2c_time_us, aux_time_us + AUX_RETRY_INTERVAL);
1711 * FIXME currently assumes 10 kHz as some real world devices seem
1712 * to require it. We should query/set the speed via DPCD if supported.
1714 static int dp_aux_i2c_speed_khz __read_mostly = 10;
1715 module_param_unsafe(dp_aux_i2c_speed_khz, int, 0644);
1716 MODULE_PARM_DESC(dp_aux_i2c_speed_khz,
1717 "Assumed speed of the i2c bus in kHz, (1-400, default 10)");
1720 * Transfer a single I2C-over-AUX message and handle various error conditions,
1721 * retrying the transaction as appropriate. It is assumed that the
1722 * &drm_dp_aux.transfer function does not modify anything in the msg other than the
1725 * Returns bytes transferred on success, or a negative error code on failure.
1727 static int drm_dp_i2c_do_msg(struct drm_dp_aux *aux, struct drm_dp_aux_msg *msg)
1729 unsigned int retry, defer_i2c;
1732 * DP1.2 sections 2.7.7.1.5.6.1 and 2.7.7.1.6.6.1: A DP Source device
1733 * is required to retry at least seven times upon receiving AUX_DEFER
1734 * before giving up the AUX transaction.
1736 * We also try to account for the i2c bus speed.
1738 int max_retries = max(7, drm_dp_i2c_retry_count(msg, dp_aux_i2c_speed_khz));
1740 for (retry = 0, defer_i2c = 0; retry < (max_retries + defer_i2c); retry++) {
1741 ret = aux->transfer(aux, msg);
1747 * While timeouts can be errors, they're usually normal
1748 * behavior (for instance, when a driver tries to
1749 * communicate with a non-existent DisplayPort device).
1750 * Avoid spamming the kernel log with timeout errors.
1752 if (ret == -ETIMEDOUT)
1753 drm_dbg_kms_ratelimited(aux->drm_dev, "%s: transaction timed out\n",
1756 drm_dbg_kms(aux->drm_dev, "%s: transaction failed: %d\n",
1762 switch (msg->reply & DP_AUX_NATIVE_REPLY_MASK) {
1763 case DP_AUX_NATIVE_REPLY_ACK:
1765 * For I2C-over-AUX transactions this isn't enough, we
1766 * need to check for the I2C ACK reply.
1770 case DP_AUX_NATIVE_REPLY_NACK:
1771 drm_dbg_kms(aux->drm_dev, "%s: native nack (result=%d, size=%zu)\n",
1772 aux->name, ret, msg->size);
1775 case DP_AUX_NATIVE_REPLY_DEFER:
1776 drm_dbg_kms(aux->drm_dev, "%s: native defer\n", aux->name);
1778 * We could check for I2C bit rate capabilities and if
1779 * available adjust this interval. We could also be
1780 * more careful with DP-to-legacy adapters where a
1781 * long legacy cable may force very low I2C bit rates.
1783 * For now just defer for long enough to hopefully be
1784 * safe for all use-cases.
1786 usleep_range(AUX_RETRY_INTERVAL, AUX_RETRY_INTERVAL + 100);
1790 drm_err(aux->drm_dev, "%s: invalid native reply %#04x\n",
1791 aux->name, msg->reply);
1795 switch (msg->reply & DP_AUX_I2C_REPLY_MASK) {
1796 case DP_AUX_I2C_REPLY_ACK:
1798 * Both native ACK and I2C ACK replies received. We
1799 * can assume the transfer was successful.
1801 if (ret != msg->size)
1802 drm_dp_i2c_msg_write_status_update(msg);
1805 case DP_AUX_I2C_REPLY_NACK:
1806 drm_dbg_kms(aux->drm_dev, "%s: I2C nack (result=%d, size=%zu)\n",
1807 aux->name, ret, msg->size);
1808 aux->i2c_nack_count++;
1811 case DP_AUX_I2C_REPLY_DEFER:
1812 drm_dbg_kms(aux->drm_dev, "%s: I2C defer\n", aux->name);
1813 /* DP Compliance Test 4.2.2.5 Requirement:
1814 * Must have at least 7 retries for I2C defers on the
1815 * transaction to pass this test
1817 aux->i2c_defer_count++;
1820 usleep_range(AUX_RETRY_INTERVAL, AUX_RETRY_INTERVAL + 100);
1821 drm_dp_i2c_msg_write_status_update(msg);
1826 drm_err(aux->drm_dev, "%s: invalid I2C reply %#04x\n",
1827 aux->name, msg->reply);
1832 drm_dbg_kms(aux->drm_dev, "%s: Too many retries, giving up\n", aux->name);
1836 static void drm_dp_i2c_msg_set_request(struct drm_dp_aux_msg *msg,
1837 const struct i2c_msg *i2c_msg)
1839 msg->request = (i2c_msg->flags & I2C_M_RD) ?
1840 DP_AUX_I2C_READ : DP_AUX_I2C_WRITE;
1841 if (!(i2c_msg->flags & I2C_M_STOP))
1842 msg->request |= DP_AUX_I2C_MOT;
1846 * Keep retrying drm_dp_i2c_do_msg until all data has been transferred.
1848 * Returns an error code on failure, or a recommended transfer size on success.
1850 static int drm_dp_i2c_drain_msg(struct drm_dp_aux *aux, struct drm_dp_aux_msg *orig_msg)
1852 int err, ret = orig_msg->size;
1853 struct drm_dp_aux_msg msg = *orig_msg;
1855 while (msg.size > 0) {
1856 err = drm_dp_i2c_do_msg(aux, &msg);
1858 return err == 0 ? -EPROTO : err;
1860 if (err < msg.size && err < ret) {
1861 drm_dbg_kms(aux->drm_dev,
1862 "%s: Partial I2C reply: requested %zu bytes got %d bytes\n",
1863 aux->name, msg.size, err);
1875 * Bizlink designed DP->DVI-D Dual Link adapters require the I2C over AUX
1876 * packets to be as large as possible. If not, the I2C transactions never
1877 * succeed. Hence the default is maximum.
1879 static int dp_aux_i2c_transfer_size __read_mostly = DP_AUX_MAX_PAYLOAD_BYTES;
1880 module_param_unsafe(dp_aux_i2c_transfer_size, int, 0644);
1881 MODULE_PARM_DESC(dp_aux_i2c_transfer_size,
1882 "Number of bytes to transfer in a single I2C over DP AUX CH message, (1-16, default 16)");
1884 static int drm_dp_i2c_xfer(struct i2c_adapter *adapter, struct i2c_msg *msgs,
1887 struct drm_dp_aux *aux = adapter->algo_data;
1889 unsigned transfer_size;
1890 struct drm_dp_aux_msg msg;
1893 if (aux->powered_down)
1896 dp_aux_i2c_transfer_size = clamp(dp_aux_i2c_transfer_size, 1, DP_AUX_MAX_PAYLOAD_BYTES);
1898 memset(&msg, 0, sizeof(msg));
1900 for (i = 0; i < num; i++) {
1901 msg.address = msgs[i].addr;
1902 drm_dp_i2c_msg_set_request(&msg, &msgs[i]);
1903 /* Send a bare address packet to start the transaction.
1904 * Zero sized messages specify an address only (bare
1905 * address) transaction.
1909 err = drm_dp_i2c_do_msg(aux, &msg);
1912 * Reset msg.request in case in case it got
1913 * changed into a WRITE_STATUS_UPDATE.
1915 drm_dp_i2c_msg_set_request(&msg, &msgs[i]);
1919 /* We want each transaction to be as large as possible, but
1920 * we'll go to smaller sizes if the hardware gives us a
1923 transfer_size = dp_aux_i2c_transfer_size;
1924 for (j = 0; j < msgs[i].len; j += msg.size) {
1925 msg.buffer = msgs[i].buf + j;
1926 msg.size = min(transfer_size, msgs[i].len - j);
1928 err = drm_dp_i2c_drain_msg(aux, &msg);
1931 * Reset msg.request in case in case it got
1932 * changed into a WRITE_STATUS_UPDATE.
1934 drm_dp_i2c_msg_set_request(&msg, &msgs[i]);
1938 transfer_size = err;
1945 /* Send a bare address packet to close out the transaction.
1946 * Zero sized messages specify an address only (bare
1947 * address) transaction.
1949 msg.request &= ~DP_AUX_I2C_MOT;
1952 (void)drm_dp_i2c_do_msg(aux, &msg);
1957 static const struct i2c_algorithm drm_dp_i2c_algo = {
1958 .functionality = drm_dp_i2c_functionality,
1959 .master_xfer = drm_dp_i2c_xfer,
1962 static struct drm_dp_aux *i2c_to_aux(struct i2c_adapter *i2c)
1964 return container_of(i2c, struct drm_dp_aux, ddc);
1967 static void lock_bus(struct i2c_adapter *i2c, unsigned int flags)
1969 mutex_lock(&i2c_to_aux(i2c)->hw_mutex);
1972 static int trylock_bus(struct i2c_adapter *i2c, unsigned int flags)
1974 return mutex_trylock(&i2c_to_aux(i2c)->hw_mutex);
1977 static void unlock_bus(struct i2c_adapter *i2c, unsigned int flags)
1979 mutex_unlock(&i2c_to_aux(i2c)->hw_mutex);
1982 static const struct i2c_lock_operations drm_dp_i2c_lock_ops = {
1983 .lock_bus = lock_bus,
1984 .trylock_bus = trylock_bus,
1985 .unlock_bus = unlock_bus,
1988 static int drm_dp_aux_get_crc(struct drm_dp_aux *aux, u8 *crc)
1993 ret = drm_dp_dpcd_readb(aux, DP_TEST_SINK, &buf);
1997 WARN_ON(!(buf & DP_TEST_SINK_START));
1999 ret = drm_dp_dpcd_readb(aux, DP_TEST_SINK_MISC, &buf);
2003 count = buf & DP_TEST_COUNT_MASK;
2004 if (count == aux->crc_count)
2005 return -EAGAIN; /* No CRC yet */
2007 aux->crc_count = count;
2010 * At DP_TEST_CRC_R_CR, there's 6 bytes containing CRC data, 2 bytes
2011 * per component (RGB or CrYCb).
2013 ret = drm_dp_dpcd_read(aux, DP_TEST_CRC_R_CR, crc, 6);
2020 static void drm_dp_aux_crc_work(struct work_struct *work)
2022 struct drm_dp_aux *aux = container_of(work, struct drm_dp_aux,
2024 struct drm_crtc *crtc;
2029 if (WARN_ON(!aux->crtc))
2033 while (crtc->crc.opened) {
2034 drm_crtc_wait_one_vblank(crtc);
2035 if (!crtc->crc.opened)
2038 ret = drm_dp_aux_get_crc(aux, crc_bytes);
2039 if (ret == -EAGAIN) {
2040 usleep_range(1000, 2000);
2041 ret = drm_dp_aux_get_crc(aux, crc_bytes);
2044 if (ret == -EAGAIN) {
2045 drm_dbg_kms(aux->drm_dev, "%s: Get CRC failed after retrying: %d\n",
2049 drm_dbg_kms(aux->drm_dev, "%s: Failed to get a CRC: %d\n", aux->name, ret);
2053 crcs[0] = crc_bytes[0] | crc_bytes[1] << 8;
2054 crcs[1] = crc_bytes[2] | crc_bytes[3] << 8;
2055 crcs[2] = crc_bytes[4] | crc_bytes[5] << 8;
2056 drm_crtc_add_crc_entry(crtc, false, 0, crcs);
2061 * drm_dp_remote_aux_init() - minimally initialise a remote aux channel
2062 * @aux: DisplayPort AUX channel
2064 * Used for remote aux channel in general. Merely initialize the crc work
2067 void drm_dp_remote_aux_init(struct drm_dp_aux *aux)
2069 INIT_WORK(&aux->crc_work, drm_dp_aux_crc_work);
2071 EXPORT_SYMBOL(drm_dp_remote_aux_init);
2074 * drm_dp_aux_init() - minimally initialise an aux channel
2075 * @aux: DisplayPort AUX channel
2077 * If you need to use the drm_dp_aux's i2c adapter prior to registering it with
2078 * the outside world, call drm_dp_aux_init() first. For drivers which are
2079 * grandparents to their AUX adapters (e.g. the AUX adapter is parented by a
2080 * &drm_connector), you must still call drm_dp_aux_register() once the connector
2081 * has been registered to allow userspace access to the auxiliary DP channel.
2082 * Likewise, for such drivers you should also assign &drm_dp_aux.drm_dev as
2083 * early as possible so that the &drm_device that corresponds to the AUX adapter
2084 * may be mentioned in debugging output from the DRM DP helpers.
2086 * For devices which use a separate platform device for their AUX adapters, this
2087 * may be called as early as required by the driver.
2090 void drm_dp_aux_init(struct drm_dp_aux *aux)
2092 mutex_init(&aux->hw_mutex);
2093 mutex_init(&aux->cec.lock);
2094 INIT_WORK(&aux->crc_work, drm_dp_aux_crc_work);
2096 aux->ddc.algo = &drm_dp_i2c_algo;
2097 aux->ddc.algo_data = aux;
2098 aux->ddc.retries = 3;
2100 aux->ddc.lock_ops = &drm_dp_i2c_lock_ops;
2102 EXPORT_SYMBOL(drm_dp_aux_init);
2105 * drm_dp_aux_register() - initialise and register aux channel
2106 * @aux: DisplayPort AUX channel
2108 * Automatically calls drm_dp_aux_init() if this hasn't been done yet. This
2109 * should only be called once the parent of @aux, &drm_dp_aux.dev, is
2110 * initialized. For devices which are grandparents of their AUX channels,
2111 * &drm_dp_aux.dev will typically be the &drm_connector &device which
2112 * corresponds to @aux. For these devices, it's advised to call
2113 * drm_dp_aux_register() in &drm_connector_funcs.late_register, and likewise to
2114 * call drm_dp_aux_unregister() in &drm_connector_funcs.early_unregister.
2115 * Functions which don't follow this will likely Oops when
2116 * %CONFIG_DRM_DISPLAY_DP_AUX_CHARDEV is enabled.
2118 * For devices where the AUX channel is a device that exists independently of
2119 * the &drm_device that uses it, such as SoCs and bridge devices, it is
2120 * recommended to call drm_dp_aux_register() after a &drm_device has been
2121 * assigned to &drm_dp_aux.drm_dev, and likewise to call
2122 * drm_dp_aux_unregister() once the &drm_device should no longer be associated
2123 * with the AUX channel (e.g. on bridge detach).
2125 * Drivers which need to use the aux channel before either of the two points
2126 * mentioned above need to call drm_dp_aux_init() in order to use the AUX
2127 * channel before registration.
2129 * Returns 0 on success or a negative error code on failure.
2131 int drm_dp_aux_register(struct drm_dp_aux *aux)
2135 WARN_ON_ONCE(!aux->drm_dev);
2138 drm_dp_aux_init(aux);
2140 aux->ddc.owner = THIS_MODULE;
2141 aux->ddc.dev.parent = aux->dev;
2143 strscpy(aux->ddc.name, aux->name ? aux->name : dev_name(aux->dev),
2144 sizeof(aux->ddc.name));
2146 ret = drm_dp_aux_register_devnode(aux);
2150 ret = i2c_add_adapter(&aux->ddc);
2152 drm_dp_aux_unregister_devnode(aux);
2158 EXPORT_SYMBOL(drm_dp_aux_register);
2161 * drm_dp_aux_unregister() - unregister an AUX adapter
2162 * @aux: DisplayPort AUX channel
2164 void drm_dp_aux_unregister(struct drm_dp_aux *aux)
2166 drm_dp_aux_unregister_devnode(aux);
2167 i2c_del_adapter(&aux->ddc);
2169 EXPORT_SYMBOL(drm_dp_aux_unregister);
2171 #define PSR_SETUP_TIME(x) [DP_PSR_SETUP_TIME_ ## x >> DP_PSR_SETUP_TIME_SHIFT] = (x)
2174 * drm_dp_psr_setup_time() - PSR setup in time usec
2175 * @psr_cap: PSR capabilities from DPCD
2178 * PSR setup time for the panel in microseconds, negative
2179 * error code on failure.
2181 int drm_dp_psr_setup_time(const u8 psr_cap[EDP_PSR_RECEIVER_CAP_SIZE])
2183 static const u16 psr_setup_time_us[] = {
2184 PSR_SETUP_TIME(330),
2185 PSR_SETUP_TIME(275),
2186 PSR_SETUP_TIME(220),
2187 PSR_SETUP_TIME(165),
2188 PSR_SETUP_TIME(110),
2194 i = (psr_cap[1] & DP_PSR_SETUP_TIME_MASK) >> DP_PSR_SETUP_TIME_SHIFT;
2195 if (i >= ARRAY_SIZE(psr_setup_time_us))
2198 return psr_setup_time_us[i];
2200 EXPORT_SYMBOL(drm_dp_psr_setup_time);
2202 #undef PSR_SETUP_TIME
2205 * drm_dp_start_crc() - start capture of frame CRCs
2206 * @aux: DisplayPort AUX channel
2207 * @crtc: CRTC displaying the frames whose CRCs are to be captured
2209 * Returns 0 on success or a negative error code on failure.
2211 int drm_dp_start_crc(struct drm_dp_aux *aux, struct drm_crtc *crtc)
2216 ret = drm_dp_dpcd_readb(aux, DP_TEST_SINK, &buf);
2220 ret = drm_dp_dpcd_writeb(aux, DP_TEST_SINK, buf | DP_TEST_SINK_START);
2226 schedule_work(&aux->crc_work);
2230 EXPORT_SYMBOL(drm_dp_start_crc);
2233 * drm_dp_stop_crc() - stop capture of frame CRCs
2234 * @aux: DisplayPort AUX channel
2236 * Returns 0 on success or a negative error code on failure.
2238 int drm_dp_stop_crc(struct drm_dp_aux *aux)
2243 ret = drm_dp_dpcd_readb(aux, DP_TEST_SINK, &buf);
2247 ret = drm_dp_dpcd_writeb(aux, DP_TEST_SINK, buf & ~DP_TEST_SINK_START);
2251 flush_work(&aux->crc_work);
2256 EXPORT_SYMBOL(drm_dp_stop_crc);
2265 #define OUI(first, second, third) { (first), (second), (third) }
2266 #define DEVICE_ID(first, second, third, fourth, fifth, sixth) \
2267 { (first), (second), (third), (fourth), (fifth), (sixth) }
2269 #define DEVICE_ID_ANY DEVICE_ID(0, 0, 0, 0, 0, 0)
2271 static const struct dpcd_quirk dpcd_quirk_list[] = {
2272 /* Analogix 7737 needs reduced M and N at HBR2 link rates */
2273 { OUI(0x00, 0x22, 0xb9), DEVICE_ID_ANY, true, BIT(DP_DPCD_QUIRK_CONSTANT_N) },
2274 /* LG LP140WF6-SPM1 eDP panel */
2275 { OUI(0x00, 0x22, 0xb9), DEVICE_ID('s', 'i', 'v', 'a', 'r', 'T'), false, BIT(DP_DPCD_QUIRK_CONSTANT_N) },
2276 /* Apple panels need some additional handling to support PSR */
2277 { OUI(0x00, 0x10, 0xfa), DEVICE_ID_ANY, false, BIT(DP_DPCD_QUIRK_NO_PSR) },
2278 /* CH7511 seems to leave SINK_COUNT zeroed */
2279 { OUI(0x00, 0x00, 0x00), DEVICE_ID('C', 'H', '7', '5', '1', '1'), false, BIT(DP_DPCD_QUIRK_NO_SINK_COUNT) },
2280 /* Synaptics DP1.4 MST hubs can support DSC without virtual DPCD */
2281 { OUI(0x90, 0xCC, 0x24), DEVICE_ID_ANY, true, BIT(DP_DPCD_QUIRK_DSC_WITHOUT_VIRTUAL_DPCD) },
2282 /* Synaptics DP1.4 MST hubs require DSC for some modes on which it applies HBLANK expansion. */
2283 { OUI(0x90, 0xCC, 0x24), DEVICE_ID_ANY, true, BIT(DP_DPCD_QUIRK_HBLANK_EXPANSION_REQUIRES_DSC) },
2284 /* MediaTek panels (at least in U3224KBA) require DSC for modes with a short HBLANK on UHBR links. */
2285 { OUI(0x00, 0x0C, 0xE7), DEVICE_ID_ANY, false, BIT(DP_DPCD_QUIRK_HBLANK_EXPANSION_REQUIRES_DSC) },
2286 /* Apple MacBookPro 2017 15 inch eDP Retina panel reports too low DP_MAX_LINK_RATE */
2287 { OUI(0x00, 0x10, 0xfa), DEVICE_ID(101, 68, 21, 101, 98, 97), false, BIT(DP_DPCD_QUIRK_CAN_DO_MAX_LINK_RATE_3_24_GBPS) },
2293 * Get a bit mask of DPCD quirks for the sink/branch device identified by
2294 * ident. The quirk data is shared but it's up to the drivers to act on the
2297 * For now, only the OUI (first three bytes) is used, but this may be extended
2298 * to device identification string and hardware/firmware revisions later.
2301 drm_dp_get_quirks(const struct drm_dp_dpcd_ident *ident, bool is_branch)
2303 const struct dpcd_quirk *quirk;
2306 u8 any_device[] = DEVICE_ID_ANY;
2308 for (i = 0; i < ARRAY_SIZE(dpcd_quirk_list); i++) {
2309 quirk = &dpcd_quirk_list[i];
2311 if (quirk->is_branch != is_branch)
2314 if (memcmp(quirk->oui, ident->oui, sizeof(ident->oui)) != 0)
2317 if (memcmp(quirk->device_id, any_device, sizeof(any_device)) != 0 &&
2318 memcmp(quirk->device_id, ident->device_id, sizeof(ident->device_id)) != 0)
2321 quirks |= quirk->quirks;
2327 #undef DEVICE_ID_ANY
2331 * drm_dp_read_desc - read sink/branch descriptor from DPCD
2332 * @aux: DisplayPort AUX channel
2333 * @desc: Device descriptor to fill from DPCD
2334 * @is_branch: true for branch devices, false for sink devices
2336 * Read DPCD 0x400 (sink) or 0x500 (branch) into @desc. Also debug log the
2339 * Returns 0 on success or a negative error code on failure.
2341 int drm_dp_read_desc(struct drm_dp_aux *aux, struct drm_dp_desc *desc,
2344 struct drm_dp_dpcd_ident *ident = &desc->ident;
2345 unsigned int offset = is_branch ? DP_BRANCH_OUI : DP_SINK_OUI;
2346 int ret, dev_id_len;
2348 ret = drm_dp_dpcd_read(aux, offset, ident, sizeof(*ident));
2352 desc->quirks = drm_dp_get_quirks(ident, is_branch);
2354 dev_id_len = strnlen(ident->device_id, sizeof(ident->device_id));
2356 drm_dbg_kms(aux->drm_dev,
2357 "%s: DP %s: OUI %*phD dev-ID %*pE HW-rev %d.%d SW-rev %d.%d quirks 0x%04x\n",
2358 aux->name, is_branch ? "branch" : "sink",
2359 (int)sizeof(ident->oui), ident->oui, dev_id_len,
2360 ident->device_id, ident->hw_rev >> 4, ident->hw_rev & 0xf,
2361 ident->sw_major_rev, ident->sw_minor_rev, desc->quirks);
2365 EXPORT_SYMBOL(drm_dp_read_desc);
2368 * drm_dp_dsc_sink_bpp_incr() - Get bits per pixel increment
2369 * @dsc_dpcd: DSC capabilities from DPCD
2371 * Returns the bpp precision supported by the DP sink.
2373 u8 drm_dp_dsc_sink_bpp_incr(const u8 dsc_dpcd[DP_DSC_RECEIVER_CAP_SIZE])
2375 u8 bpp_increment_dpcd = dsc_dpcd[DP_DSC_BITS_PER_PIXEL_INC - DP_DSC_SUPPORT];
2377 switch (bpp_increment_dpcd) {
2378 case DP_DSC_BITS_PER_PIXEL_1_16:
2380 case DP_DSC_BITS_PER_PIXEL_1_8:
2382 case DP_DSC_BITS_PER_PIXEL_1_4:
2384 case DP_DSC_BITS_PER_PIXEL_1_2:
2386 case DP_DSC_BITS_PER_PIXEL_1_1:
2392 EXPORT_SYMBOL(drm_dp_dsc_sink_bpp_incr);
2395 * drm_dp_dsc_sink_max_slice_count() - Get the max slice count
2396 * supported by the DSC sink.
2397 * @dsc_dpcd: DSC capabilities from DPCD
2398 * @is_edp: true if its eDP, false for DP
2400 * Read the slice capabilities DPCD register from DSC sink to get
2401 * the maximum slice count supported. This is used to populate
2402 * the DSC parameters in the &struct drm_dsc_config by the driver.
2403 * Driver creates an infoframe using these parameters to populate
2404 * &struct drm_dsc_pps_infoframe. These are sent to the sink using DSC
2405 * infoframe using the helper function drm_dsc_pps_infoframe_pack()
2408 * Maximum slice count supported by DSC sink or 0 its invalid
2410 u8 drm_dp_dsc_sink_max_slice_count(const u8 dsc_dpcd[DP_DSC_RECEIVER_CAP_SIZE],
2413 u8 slice_cap1 = dsc_dpcd[DP_DSC_SLICE_CAP_1 - DP_DSC_SUPPORT];
2416 /* For eDP, register DSC_SLICE_CAPABILITIES_1 gives slice count */
2417 if (slice_cap1 & DP_DSC_4_PER_DP_DSC_SINK)
2419 if (slice_cap1 & DP_DSC_2_PER_DP_DSC_SINK)
2421 if (slice_cap1 & DP_DSC_1_PER_DP_DSC_SINK)
2424 /* For DP, use values from DSC_SLICE_CAP_1 and DSC_SLICE_CAP2 */
2425 u8 slice_cap2 = dsc_dpcd[DP_DSC_SLICE_CAP_2 - DP_DSC_SUPPORT];
2427 if (slice_cap2 & DP_DSC_24_PER_DP_DSC_SINK)
2429 if (slice_cap2 & DP_DSC_20_PER_DP_DSC_SINK)
2431 if (slice_cap2 & DP_DSC_16_PER_DP_DSC_SINK)
2433 if (slice_cap1 & DP_DSC_12_PER_DP_DSC_SINK)
2435 if (slice_cap1 & DP_DSC_10_PER_DP_DSC_SINK)
2437 if (slice_cap1 & DP_DSC_8_PER_DP_DSC_SINK)
2439 if (slice_cap1 & DP_DSC_6_PER_DP_DSC_SINK)
2441 if (slice_cap1 & DP_DSC_4_PER_DP_DSC_SINK)
2443 if (slice_cap1 & DP_DSC_2_PER_DP_DSC_SINK)
2445 if (slice_cap1 & DP_DSC_1_PER_DP_DSC_SINK)
2451 EXPORT_SYMBOL(drm_dp_dsc_sink_max_slice_count);
2454 * drm_dp_dsc_sink_line_buf_depth() - Get the line buffer depth in bits
2455 * @dsc_dpcd: DSC capabilities from DPCD
2457 * Read the DSC DPCD register to parse the line buffer depth in bits which is
2458 * number of bits of precision within the decoder line buffer supported by
2459 * the DSC sink. This is used to populate the DSC parameters in the
2460 * &struct drm_dsc_config by the driver.
2461 * Driver creates an infoframe using these parameters to populate
2462 * &struct drm_dsc_pps_infoframe. These are sent to the sink using DSC
2463 * infoframe using the helper function drm_dsc_pps_infoframe_pack()
2466 * Line buffer depth supported by DSC panel or 0 its invalid
2468 u8 drm_dp_dsc_sink_line_buf_depth(const u8 dsc_dpcd[DP_DSC_RECEIVER_CAP_SIZE])
2470 u8 line_buf_depth = dsc_dpcd[DP_DSC_LINE_BUF_BIT_DEPTH - DP_DSC_SUPPORT];
2472 switch (line_buf_depth & DP_DSC_LINE_BUF_BIT_DEPTH_MASK) {
2473 case DP_DSC_LINE_BUF_BIT_DEPTH_9:
2475 case DP_DSC_LINE_BUF_BIT_DEPTH_10:
2477 case DP_DSC_LINE_BUF_BIT_DEPTH_11:
2479 case DP_DSC_LINE_BUF_BIT_DEPTH_12:
2481 case DP_DSC_LINE_BUF_BIT_DEPTH_13:
2483 case DP_DSC_LINE_BUF_BIT_DEPTH_14:
2485 case DP_DSC_LINE_BUF_BIT_DEPTH_15:
2487 case DP_DSC_LINE_BUF_BIT_DEPTH_16:
2489 case DP_DSC_LINE_BUF_BIT_DEPTH_8:
2495 EXPORT_SYMBOL(drm_dp_dsc_sink_line_buf_depth);
2498 * drm_dp_dsc_sink_supported_input_bpcs() - Get all the input bits per component
2499 * values supported by the DSC sink.
2500 * @dsc_dpcd: DSC capabilities from DPCD
2501 * @dsc_bpc: An array to be filled by this helper with supported
2504 * Read the DSC DPCD from the sink device to parse the supported bits per
2505 * component values. This is used to populate the DSC parameters
2506 * in the &struct drm_dsc_config by the driver.
2507 * Driver creates an infoframe using these parameters to populate
2508 * &struct drm_dsc_pps_infoframe. These are sent to the sink using DSC
2509 * infoframe using the helper function drm_dsc_pps_infoframe_pack()
2512 * Number of input BPC values parsed from the DPCD
2514 int drm_dp_dsc_sink_supported_input_bpcs(const u8 dsc_dpcd[DP_DSC_RECEIVER_CAP_SIZE],
2518 u8 color_depth = dsc_dpcd[DP_DSC_DEC_COLOR_DEPTH_CAP - DP_DSC_SUPPORT];
2520 if (!drm_dp_sink_supports_dsc(dsc_dpcd))
2523 if (color_depth & DP_DSC_12_BPC)
2524 dsc_bpc[num_bpc++] = 12;
2525 if (color_depth & DP_DSC_10_BPC)
2526 dsc_bpc[num_bpc++] = 10;
2528 /* A DP DSC Sink device shall support 8 bpc. */
2529 dsc_bpc[num_bpc++] = 8;
2533 EXPORT_SYMBOL(drm_dp_dsc_sink_supported_input_bpcs);
2535 static int drm_dp_read_lttpr_regs(struct drm_dp_aux *aux,
2536 const u8 dpcd[DP_RECEIVER_CAP_SIZE], int address,
2537 u8 *buf, int buf_size)
2540 * At least the DELL P2715Q monitor with a DPCD_REV < 0x14 returns
2541 * corrupted values when reading from the 0xF0000- range with a block
2542 * size bigger than 1.
2544 int block_size = dpcd[DP_DPCD_REV] < 0x14 ? 1 : buf_size;
2548 for (offset = 0; offset < buf_size; offset += block_size) {
2549 ret = drm_dp_dpcd_read(aux,
2551 &buf[offset], block_size);
2555 WARN_ON(ret != block_size);
2562 * drm_dp_read_lttpr_common_caps - read the LTTPR common capabilities
2563 * @aux: DisplayPort AUX channel
2564 * @dpcd: DisplayPort configuration data
2565 * @caps: buffer to return the capability info in
2567 * Read capabilities common to all LTTPRs.
2569 * Returns 0 on success or a negative error code on failure.
2571 int drm_dp_read_lttpr_common_caps(struct drm_dp_aux *aux,
2572 const u8 dpcd[DP_RECEIVER_CAP_SIZE],
2573 u8 caps[DP_LTTPR_COMMON_CAP_SIZE])
2575 return drm_dp_read_lttpr_regs(aux, dpcd,
2576 DP_LT_TUNABLE_PHY_REPEATER_FIELD_DATA_STRUCTURE_REV,
2577 caps, DP_LTTPR_COMMON_CAP_SIZE);
2579 EXPORT_SYMBOL(drm_dp_read_lttpr_common_caps);
2582 * drm_dp_read_lttpr_phy_caps - read the capabilities for a given LTTPR PHY
2583 * @aux: DisplayPort AUX channel
2584 * @dpcd: DisplayPort configuration data
2585 * @dp_phy: LTTPR PHY to read the capabilities for
2586 * @caps: buffer to return the capability info in
2588 * Read the capabilities for the given LTTPR PHY.
2590 * Returns 0 on success or a negative error code on failure.
2592 int drm_dp_read_lttpr_phy_caps(struct drm_dp_aux *aux,
2593 const u8 dpcd[DP_RECEIVER_CAP_SIZE],
2594 enum drm_dp_phy dp_phy,
2595 u8 caps[DP_LTTPR_PHY_CAP_SIZE])
2597 return drm_dp_read_lttpr_regs(aux, dpcd,
2598 DP_TRAINING_AUX_RD_INTERVAL_PHY_REPEATER(dp_phy),
2599 caps, DP_LTTPR_PHY_CAP_SIZE);
2601 EXPORT_SYMBOL(drm_dp_read_lttpr_phy_caps);
2603 static u8 dp_lttpr_common_cap(const u8 caps[DP_LTTPR_COMMON_CAP_SIZE], int r)
2605 return caps[r - DP_LT_TUNABLE_PHY_REPEATER_FIELD_DATA_STRUCTURE_REV];
2609 * drm_dp_lttpr_count - get the number of detected LTTPRs
2610 * @caps: LTTPR common capabilities
2612 * Get the number of detected LTTPRs from the LTTPR common capabilities info.
2615 * -ERANGE if more than supported number (8) of LTTPRs are detected
2616 * -EINVAL if the DP_PHY_REPEATER_CNT register contains an invalid value
2617 * otherwise the number of detected LTTPRs
2619 int drm_dp_lttpr_count(const u8 caps[DP_LTTPR_COMMON_CAP_SIZE])
2621 u8 count = dp_lttpr_common_cap(caps, DP_PHY_REPEATER_CNT);
2623 switch (hweight8(count)) {
2627 return 8 - ilog2(count);
2634 EXPORT_SYMBOL(drm_dp_lttpr_count);
2637 * drm_dp_lttpr_max_link_rate - get the maximum link rate supported by all LTTPRs
2638 * @caps: LTTPR common capabilities
2640 * Returns the maximum link rate supported by all detected LTTPRs.
2642 int drm_dp_lttpr_max_link_rate(const u8 caps[DP_LTTPR_COMMON_CAP_SIZE])
2644 u8 rate = dp_lttpr_common_cap(caps, DP_MAX_LINK_RATE_PHY_REPEATER);
2646 return drm_dp_bw_code_to_link_rate(rate);
2648 EXPORT_SYMBOL(drm_dp_lttpr_max_link_rate);
2651 * drm_dp_lttpr_max_lane_count - get the maximum lane count supported by all LTTPRs
2652 * @caps: LTTPR common capabilities
2654 * Returns the maximum lane count supported by all detected LTTPRs.
2656 int drm_dp_lttpr_max_lane_count(const u8 caps[DP_LTTPR_COMMON_CAP_SIZE])
2658 u8 max_lanes = dp_lttpr_common_cap(caps, DP_MAX_LANE_COUNT_PHY_REPEATER);
2660 return max_lanes & DP_MAX_LANE_COUNT_MASK;
2662 EXPORT_SYMBOL(drm_dp_lttpr_max_lane_count);
2665 * drm_dp_lttpr_voltage_swing_level_3_supported - check for LTTPR vswing3 support
2666 * @caps: LTTPR PHY capabilities
2668 * Returns true if the @caps for an LTTPR TX PHY indicate support for
2669 * voltage swing level 3.
2672 drm_dp_lttpr_voltage_swing_level_3_supported(const u8 caps[DP_LTTPR_PHY_CAP_SIZE])
2674 u8 txcap = dp_lttpr_phy_cap(caps, DP_TRANSMITTER_CAPABILITY_PHY_REPEATER1);
2676 return txcap & DP_VOLTAGE_SWING_LEVEL_3_SUPPORTED;
2678 EXPORT_SYMBOL(drm_dp_lttpr_voltage_swing_level_3_supported);
2681 * drm_dp_lttpr_pre_emphasis_level_3_supported - check for LTTPR preemph3 support
2682 * @caps: LTTPR PHY capabilities
2684 * Returns true if the @caps for an LTTPR TX PHY indicate support for
2685 * pre-emphasis level 3.
2688 drm_dp_lttpr_pre_emphasis_level_3_supported(const u8 caps[DP_LTTPR_PHY_CAP_SIZE])
2690 u8 txcap = dp_lttpr_phy_cap(caps, DP_TRANSMITTER_CAPABILITY_PHY_REPEATER1);
2692 return txcap & DP_PRE_EMPHASIS_LEVEL_3_SUPPORTED;
2694 EXPORT_SYMBOL(drm_dp_lttpr_pre_emphasis_level_3_supported);
2697 * drm_dp_get_phy_test_pattern() - get the requested pattern from the sink.
2698 * @aux: DisplayPort AUX channel
2699 * @data: DP phy compliance test parameters.
2701 * Returns 0 on success or a negative error code on failure.
2703 int drm_dp_get_phy_test_pattern(struct drm_dp_aux *aux,
2704 struct drm_dp_phy_test_params *data)
2709 err = drm_dp_dpcd_readb(aux, DP_TEST_LINK_RATE, &rate);
2712 data->link_rate = drm_dp_bw_code_to_link_rate(rate);
2714 err = drm_dp_dpcd_readb(aux, DP_TEST_LANE_COUNT, &lanes);
2717 data->num_lanes = lanes & DP_MAX_LANE_COUNT_MASK;
2719 if (lanes & DP_ENHANCED_FRAME_CAP)
2720 data->enhanced_frame_cap = true;
2722 err = drm_dp_dpcd_readb(aux, DP_PHY_TEST_PATTERN, &data->phy_pattern);
2726 switch (data->phy_pattern) {
2727 case DP_PHY_TEST_PATTERN_80BIT_CUSTOM:
2728 err = drm_dp_dpcd_read(aux, DP_TEST_80BIT_CUSTOM_PATTERN_7_0,
2729 &data->custom80, sizeof(data->custom80));
2734 case DP_PHY_TEST_PATTERN_CP2520:
2735 err = drm_dp_dpcd_read(aux, DP_TEST_HBR2_SCRAMBLER_RESET,
2737 sizeof(data->hbr2_reset));
2744 EXPORT_SYMBOL(drm_dp_get_phy_test_pattern);
2747 * drm_dp_set_phy_test_pattern() - set the pattern to the sink.
2748 * @aux: DisplayPort AUX channel
2749 * @data: DP phy compliance test parameters.
2750 * @dp_rev: DP revision to use for compliance testing
2752 * Returns 0 on success or a negative error code on failure.
2754 int drm_dp_set_phy_test_pattern(struct drm_dp_aux *aux,
2755 struct drm_dp_phy_test_params *data, u8 dp_rev)
2760 test_pattern = data->phy_pattern;
2761 if (dp_rev < 0x12) {
2762 test_pattern = (test_pattern << 2) &
2763 DP_LINK_QUAL_PATTERN_11_MASK;
2764 err = drm_dp_dpcd_writeb(aux, DP_TRAINING_PATTERN_SET,
2769 for (i = 0; i < data->num_lanes; i++) {
2770 err = drm_dp_dpcd_writeb(aux,
2771 DP_LINK_QUAL_LANE0_SET + i,
2780 EXPORT_SYMBOL(drm_dp_set_phy_test_pattern);
2782 static const char *dp_pixelformat_get_name(enum dp_pixelformat pixelformat)
2784 if (pixelformat < 0 || pixelformat > DP_PIXELFORMAT_RESERVED)
2787 switch (pixelformat) {
2788 case DP_PIXELFORMAT_RGB:
2790 case DP_PIXELFORMAT_YUV444:
2792 case DP_PIXELFORMAT_YUV422:
2794 case DP_PIXELFORMAT_YUV420:
2796 case DP_PIXELFORMAT_Y_ONLY:
2798 case DP_PIXELFORMAT_RAW:
2805 static const char *dp_colorimetry_get_name(enum dp_pixelformat pixelformat,
2806 enum dp_colorimetry colorimetry)
2808 if (pixelformat < 0 || pixelformat > DP_PIXELFORMAT_RESERVED)
2811 switch (colorimetry) {
2812 case DP_COLORIMETRY_DEFAULT:
2813 switch (pixelformat) {
2814 case DP_PIXELFORMAT_RGB:
2816 case DP_PIXELFORMAT_YUV444:
2817 case DP_PIXELFORMAT_YUV422:
2818 case DP_PIXELFORMAT_YUV420:
2820 case DP_PIXELFORMAT_Y_ONLY:
2821 return "DICOM PS3.14";
2822 case DP_PIXELFORMAT_RAW:
2823 return "Custom Color Profile";
2827 case DP_COLORIMETRY_RGB_WIDE_FIXED: /* and DP_COLORIMETRY_BT709_YCC */
2828 switch (pixelformat) {
2829 case DP_PIXELFORMAT_RGB:
2830 return "Wide Fixed";
2831 case DP_PIXELFORMAT_YUV444:
2832 case DP_PIXELFORMAT_YUV422:
2833 case DP_PIXELFORMAT_YUV420:
2838 case DP_COLORIMETRY_RGB_WIDE_FLOAT: /* and DP_COLORIMETRY_XVYCC_601 */
2839 switch (pixelformat) {
2840 case DP_PIXELFORMAT_RGB:
2841 return "Wide Float";
2842 case DP_PIXELFORMAT_YUV444:
2843 case DP_PIXELFORMAT_YUV422:
2844 case DP_PIXELFORMAT_YUV420:
2849 case DP_COLORIMETRY_OPRGB: /* and DP_COLORIMETRY_XVYCC_709 */
2850 switch (pixelformat) {
2851 case DP_PIXELFORMAT_RGB:
2853 case DP_PIXELFORMAT_YUV444:
2854 case DP_PIXELFORMAT_YUV422:
2855 case DP_PIXELFORMAT_YUV420:
2860 case DP_COLORIMETRY_DCI_P3_RGB: /* and DP_COLORIMETRY_SYCC_601 */
2861 switch (pixelformat) {
2862 case DP_PIXELFORMAT_RGB:
2864 case DP_PIXELFORMAT_YUV444:
2865 case DP_PIXELFORMAT_YUV422:
2866 case DP_PIXELFORMAT_YUV420:
2871 case DP_COLORIMETRY_RGB_CUSTOM: /* and DP_COLORIMETRY_OPYCC_601 */
2872 switch (pixelformat) {
2873 case DP_PIXELFORMAT_RGB:
2874 return "Custom Profile";
2875 case DP_PIXELFORMAT_YUV444:
2876 case DP_PIXELFORMAT_YUV422:
2877 case DP_PIXELFORMAT_YUV420:
2882 case DP_COLORIMETRY_BT2020_RGB: /* and DP_COLORIMETRY_BT2020_CYCC */
2883 switch (pixelformat) {
2884 case DP_PIXELFORMAT_RGB:
2885 return "BT.2020 RGB";
2886 case DP_PIXELFORMAT_YUV444:
2887 case DP_PIXELFORMAT_YUV422:
2888 case DP_PIXELFORMAT_YUV420:
2889 return "BT.2020 CYCC";
2893 case DP_COLORIMETRY_BT2020_YCC:
2894 switch (pixelformat) {
2895 case DP_PIXELFORMAT_YUV444:
2896 case DP_PIXELFORMAT_YUV422:
2897 case DP_PIXELFORMAT_YUV420:
2898 return "BT.2020 YCC";
2907 static const char *dp_dynamic_range_get_name(enum dp_dynamic_range dynamic_range)
2909 switch (dynamic_range) {
2910 case DP_DYNAMIC_RANGE_VESA:
2911 return "VESA range";
2912 case DP_DYNAMIC_RANGE_CTA:
2919 static const char *dp_content_type_get_name(enum dp_content_type content_type)
2921 switch (content_type) {
2922 case DP_CONTENT_TYPE_NOT_DEFINED:
2923 return "Not defined";
2924 case DP_CONTENT_TYPE_GRAPHICS:
2926 case DP_CONTENT_TYPE_PHOTO:
2928 case DP_CONTENT_TYPE_VIDEO:
2930 case DP_CONTENT_TYPE_GAME:
2937 void drm_dp_vsc_sdp_log(struct drm_printer *p, const struct drm_dp_vsc_sdp *vsc)
2939 drm_printf(p, "DP SDP: VSC, revision %u, length %u\n",
2940 vsc->revision, vsc->length);
2941 drm_printf(p, " pixelformat: %s\n",
2942 dp_pixelformat_get_name(vsc->pixelformat));
2943 drm_printf(p, " colorimetry: %s\n",
2944 dp_colorimetry_get_name(vsc->pixelformat, vsc->colorimetry));
2945 drm_printf(p, " bpc: %u\n", vsc->bpc);
2946 drm_printf(p, " dynamic range: %s\n",
2947 dp_dynamic_range_get_name(vsc->dynamic_range));
2948 drm_printf(p, " content type: %s\n",
2949 dp_content_type_get_name(vsc->content_type));
2951 EXPORT_SYMBOL(drm_dp_vsc_sdp_log);
2953 void drm_dp_as_sdp_log(struct drm_printer *p, const struct drm_dp_as_sdp *as_sdp)
2955 drm_printf(p, "DP SDP: AS_SDP, revision %u, length %u\n",
2956 as_sdp->revision, as_sdp->length);
2957 drm_printf(p, " vtotal: %d\n", as_sdp->vtotal);
2958 drm_printf(p, " target_rr: %d\n", as_sdp->target_rr);
2959 drm_printf(p, " duration_incr_ms: %d\n", as_sdp->duration_incr_ms);
2960 drm_printf(p, " duration_decr_ms: %d\n", as_sdp->duration_decr_ms);
2961 drm_printf(p, " operation_mode: %d\n", as_sdp->mode);
2963 EXPORT_SYMBOL(drm_dp_as_sdp_log);
2966 * drm_dp_as_sdp_supported() - check if adaptive sync sdp is supported
2967 * @aux: DisplayPort AUX channel
2968 * @dpcd: DisplayPort configuration data
2970 * Returns true if adaptive sync sdp is supported, else returns false
2972 bool drm_dp_as_sdp_supported(struct drm_dp_aux *aux, const u8 dpcd[DP_RECEIVER_CAP_SIZE])
2976 if (dpcd[DP_DPCD_REV] < DP_DPCD_REV_13)
2979 if (drm_dp_dpcd_readb(aux, DP_DPRX_FEATURE_ENUMERATION_LIST_CONT_1,
2980 &rx_feature) != 1) {
2981 drm_dbg_dp(aux->drm_dev,
2982 "Failed to read DP_DPRX_FEATURE_ENUMERATION_LIST_CONT_1\n");
2986 return (rx_feature & DP_ADAPTIVE_SYNC_SDP_SUPPORTED);
2988 EXPORT_SYMBOL(drm_dp_as_sdp_supported);
2991 * drm_dp_vsc_sdp_supported() - check if vsc sdp is supported
2992 * @aux: DisplayPort AUX channel
2993 * @dpcd: DisplayPort configuration data
2995 * Returns true if vsc sdp is supported, else returns false
2997 bool drm_dp_vsc_sdp_supported(struct drm_dp_aux *aux, const u8 dpcd[DP_RECEIVER_CAP_SIZE])
3001 if (dpcd[DP_DPCD_REV] < DP_DPCD_REV_13)
3004 if (drm_dp_dpcd_readb(aux, DP_DPRX_FEATURE_ENUMERATION_LIST, &rx_feature) != 1) {
3005 drm_dbg_dp(aux->drm_dev, "failed to read DP_DPRX_FEATURE_ENUMERATION_LIST\n");
3009 return (rx_feature & DP_VSC_SDP_EXT_FOR_COLORIMETRY_SUPPORTED);
3011 EXPORT_SYMBOL(drm_dp_vsc_sdp_supported);
3014 * drm_dp_vsc_sdp_pack() - pack a given vsc sdp into generic dp_sdp
3015 * @vsc: vsc sdp initialized according to its purpose as defined in
3016 * table 2-118 - table 2-120 in DP 1.4a specification
3017 * @sdp: valid handle to the generic dp_sdp which will be packed
3019 * Returns length of sdp on success and error code on failure
3021 ssize_t drm_dp_vsc_sdp_pack(const struct drm_dp_vsc_sdp *vsc,
3024 size_t length = sizeof(struct dp_sdp);
3026 memset(sdp, 0, sizeof(struct dp_sdp));
3029 * Prepare VSC Header for SU as per DP 1.4a spec, Table 2-119
3030 * VSC SDP Header Bytes
3032 sdp->sdp_header.HB0 = 0; /* Secondary-Data Packet ID = 0 */
3033 sdp->sdp_header.HB1 = vsc->sdp_type; /* Secondary-data Packet Type */
3034 sdp->sdp_header.HB2 = vsc->revision; /* Revision Number */
3035 sdp->sdp_header.HB3 = vsc->length; /* Number of Valid Data Bytes */
3037 if (vsc->revision == 0x6) {
3043 * Revision 0x5 and revision 0x7 supports Pixel Encoding/Colorimetry
3044 * Format as per DP 1.4a spec and DP 2.0 respectively.
3046 if (!(vsc->revision == 0x5 || vsc->revision == 0x7))
3049 /* VSC SDP Payload for DB16 through DB18 */
3050 /* Pixel Encoding and Colorimetry Formats */
3051 sdp->db[16] = (vsc->pixelformat & 0xf) << 4; /* DB16[7:4] */
3052 sdp->db[16] |= vsc->colorimetry & 0xf; /* DB16[3:0] */
3059 sdp->db[17] = 0x1; /* DB17[3:0] */
3071 WARN(1, "Missing case %d\n", vsc->bpc);
3075 /* Dynamic Range and Component Bit Depth */
3076 if (vsc->dynamic_range == DP_DYNAMIC_RANGE_CTA)
3077 sdp->db[17] |= 0x80; /* DB17[7] */
3080 sdp->db[18] = vsc->content_type & 0x7;
3085 EXPORT_SYMBOL(drm_dp_vsc_sdp_pack);
3088 * drm_dp_get_pcon_max_frl_bw() - maximum frl supported by PCON
3089 * @dpcd: DisplayPort configuration data
3090 * @port_cap: port capabilities
3092 * Returns maximum frl bandwidth supported by PCON in GBPS,
3093 * returns 0 if not supported.
3095 int drm_dp_get_pcon_max_frl_bw(const u8 dpcd[DP_RECEIVER_CAP_SIZE],
3096 const u8 port_cap[4])
3102 bw = buf & DP_PCON_MAX_FRL_BW;
3105 case DP_PCON_MAX_9GBPS:
3107 case DP_PCON_MAX_18GBPS:
3109 case DP_PCON_MAX_24GBPS:
3111 case DP_PCON_MAX_32GBPS:
3113 case DP_PCON_MAX_40GBPS:
3115 case DP_PCON_MAX_48GBPS:
3117 case DP_PCON_MAX_0GBPS:
3124 EXPORT_SYMBOL(drm_dp_get_pcon_max_frl_bw);
3127 * drm_dp_pcon_frl_prepare() - Prepare PCON for FRL.
3128 * @aux: DisplayPort AUX channel
3129 * @enable_frl_ready_hpd: Configure DP_PCON_ENABLE_HPD_READY.
3131 * Returns 0 if success, else returns negative error code.
3133 int drm_dp_pcon_frl_prepare(struct drm_dp_aux *aux, bool enable_frl_ready_hpd)
3136 u8 buf = DP_PCON_ENABLE_SOURCE_CTL_MODE |
3137 DP_PCON_ENABLE_LINK_FRL_MODE;
3139 if (enable_frl_ready_hpd)
3140 buf |= DP_PCON_ENABLE_HPD_READY;
3142 ret = drm_dp_dpcd_writeb(aux, DP_PCON_HDMI_LINK_CONFIG_1, buf);
3146 EXPORT_SYMBOL(drm_dp_pcon_frl_prepare);
3149 * drm_dp_pcon_is_frl_ready() - Is PCON ready for FRL
3150 * @aux: DisplayPort AUX channel
3152 * Returns true if success, else returns false.
3154 bool drm_dp_pcon_is_frl_ready(struct drm_dp_aux *aux)
3159 ret = drm_dp_dpcd_readb(aux, DP_PCON_HDMI_TX_LINK_STATUS, &buf);
3163 if (buf & DP_PCON_FRL_READY)
3168 EXPORT_SYMBOL(drm_dp_pcon_is_frl_ready);
3171 * drm_dp_pcon_frl_configure_1() - Set HDMI LINK Configuration-Step1
3172 * @aux: DisplayPort AUX channel
3173 * @max_frl_gbps: maximum frl bw to be configured between PCON and HDMI sink
3174 * @frl_mode: FRL Training mode, it can be either Concurrent or Sequential.
3175 * In Concurrent Mode, the FRL link bring up can be done along with
3176 * DP Link training. In Sequential mode, the FRL link bring up is done prior to
3177 * the DP Link training.
3179 * Returns 0 if success, else returns negative error code.
3182 int drm_dp_pcon_frl_configure_1(struct drm_dp_aux *aux, int max_frl_gbps,
3188 ret = drm_dp_dpcd_readb(aux, DP_PCON_HDMI_LINK_CONFIG_1, &buf);
3192 if (frl_mode == DP_PCON_ENABLE_CONCURRENT_LINK)
3193 buf |= DP_PCON_ENABLE_CONCURRENT_LINK;
3195 buf &= ~DP_PCON_ENABLE_CONCURRENT_LINK;
3197 switch (max_frl_gbps) {
3199 buf |= DP_PCON_ENABLE_MAX_BW_9GBPS;
3202 buf |= DP_PCON_ENABLE_MAX_BW_18GBPS;
3205 buf |= DP_PCON_ENABLE_MAX_BW_24GBPS;
3208 buf |= DP_PCON_ENABLE_MAX_BW_32GBPS;
3211 buf |= DP_PCON_ENABLE_MAX_BW_40GBPS;
3214 buf |= DP_PCON_ENABLE_MAX_BW_48GBPS;
3217 buf |= DP_PCON_ENABLE_MAX_BW_0GBPS;
3223 ret = drm_dp_dpcd_writeb(aux, DP_PCON_HDMI_LINK_CONFIG_1, buf);
3229 EXPORT_SYMBOL(drm_dp_pcon_frl_configure_1);
3232 * drm_dp_pcon_frl_configure_2() - Set HDMI Link configuration Step-2
3233 * @aux: DisplayPort AUX channel
3234 * @max_frl_mask : Max FRL BW to be tried by the PCON with HDMI Sink
3235 * @frl_type : FRL training type, can be Extended, or Normal.
3236 * In Normal FRL training, the PCON tries each frl bw from the max_frl_mask
3237 * starting from min, and stops when link training is successful. In Extended
3238 * FRL training, all frl bw selected in the mask are trained by the PCON.
3240 * Returns 0 if success, else returns negative error code.
3242 int drm_dp_pcon_frl_configure_2(struct drm_dp_aux *aux, int max_frl_mask,
3246 u8 buf = max_frl_mask;
3248 if (frl_type == DP_PCON_FRL_LINK_TRAIN_EXTENDED)
3249 buf |= DP_PCON_FRL_LINK_TRAIN_EXTENDED;
3251 buf &= ~DP_PCON_FRL_LINK_TRAIN_EXTENDED;
3253 ret = drm_dp_dpcd_writeb(aux, DP_PCON_HDMI_LINK_CONFIG_2, buf);
3259 EXPORT_SYMBOL(drm_dp_pcon_frl_configure_2);
3262 * drm_dp_pcon_reset_frl_config() - Re-Set HDMI Link configuration.
3263 * @aux: DisplayPort AUX channel
3265 * Returns 0 if success, else returns negative error code.
3267 int drm_dp_pcon_reset_frl_config(struct drm_dp_aux *aux)
3271 ret = drm_dp_dpcd_writeb(aux, DP_PCON_HDMI_LINK_CONFIG_1, 0x0);
3277 EXPORT_SYMBOL(drm_dp_pcon_reset_frl_config);
3280 * drm_dp_pcon_frl_enable() - Enable HDMI link through FRL
3281 * @aux: DisplayPort AUX channel
3283 * Returns 0 if success, else returns negative error code.
3285 int drm_dp_pcon_frl_enable(struct drm_dp_aux *aux)
3290 ret = drm_dp_dpcd_readb(aux, DP_PCON_HDMI_LINK_CONFIG_1, &buf);
3293 if (!(buf & DP_PCON_ENABLE_SOURCE_CTL_MODE)) {
3294 drm_dbg_kms(aux->drm_dev, "%s: PCON in Autonomous mode, can't enable FRL\n",
3298 buf |= DP_PCON_ENABLE_HDMI_LINK;
3299 ret = drm_dp_dpcd_writeb(aux, DP_PCON_HDMI_LINK_CONFIG_1, buf);
3305 EXPORT_SYMBOL(drm_dp_pcon_frl_enable);
3308 * drm_dp_pcon_hdmi_link_active() - check if the PCON HDMI LINK status is active.
3309 * @aux: DisplayPort AUX channel
3311 * Returns true if link is active else returns false.
3313 bool drm_dp_pcon_hdmi_link_active(struct drm_dp_aux *aux)
3318 ret = drm_dp_dpcd_readb(aux, DP_PCON_HDMI_TX_LINK_STATUS, &buf);
3322 return buf & DP_PCON_HDMI_TX_LINK_ACTIVE;
3324 EXPORT_SYMBOL(drm_dp_pcon_hdmi_link_active);
3327 * drm_dp_pcon_hdmi_link_mode() - get the PCON HDMI LINK MODE
3328 * @aux: DisplayPort AUX channel
3329 * @frl_trained_mask: pointer to store bitmask of the trained bw configuration.
3330 * Valid only if the MODE returned is FRL. For Normal Link training mode
3331 * only 1 of the bits will be set, but in case of Extended mode, more than
3332 * one bits can be set.
3334 * Returns the link mode : TMDS or FRL on success, else returns negative error
3337 int drm_dp_pcon_hdmi_link_mode(struct drm_dp_aux *aux, u8 *frl_trained_mask)
3343 ret = drm_dp_dpcd_readb(aux, DP_PCON_HDMI_POST_FRL_STATUS, &buf);
3347 mode = buf & DP_PCON_HDMI_LINK_MODE;
3349 if (frl_trained_mask && DP_PCON_HDMI_MODE_FRL == mode)
3350 *frl_trained_mask = (buf & DP_PCON_HDMI_FRL_TRAINED_BW) >> 1;
3354 EXPORT_SYMBOL(drm_dp_pcon_hdmi_link_mode);
3357 * drm_dp_pcon_hdmi_frl_link_error_count() - print the error count per lane
3358 * during link failure between PCON and HDMI sink
3359 * @aux: DisplayPort AUX channel
3360 * @connector: DRM connector
3364 void drm_dp_pcon_hdmi_frl_link_error_count(struct drm_dp_aux *aux,
3365 struct drm_connector *connector)
3367 u8 buf, error_count;
3369 struct drm_hdmi_info *hdmi = &connector->display_info.hdmi;
3371 for (i = 0; i < hdmi->max_lanes; i++) {
3372 if (drm_dp_dpcd_readb(aux, DP_PCON_HDMI_ERROR_STATUS_LN0 + i, &buf) < 0)
3375 error_count = buf & DP_PCON_HDMI_ERROR_COUNT_MASK;
3376 switch (error_count) {
3377 case DP_PCON_HDMI_ERROR_COUNT_HUNDRED_PLUS:
3380 case DP_PCON_HDMI_ERROR_COUNT_TEN_PLUS:
3383 case DP_PCON_HDMI_ERROR_COUNT_THREE_PLUS:
3390 drm_err(aux->drm_dev, "%s: More than %d errors since the last read for lane %d",
3391 aux->name, num_error, i);
3394 EXPORT_SYMBOL(drm_dp_pcon_hdmi_frl_link_error_count);
3397 * drm_dp_pcon_enc_is_dsc_1_2 - Does PCON Encoder supports DSC 1.2
3398 * @pcon_dsc_dpcd: DSC capabilities of the PCON DSC Encoder
3400 * Returns true is PCON encoder is DSC 1.2 else returns false.
3402 bool drm_dp_pcon_enc_is_dsc_1_2(const u8 pcon_dsc_dpcd[DP_PCON_DSC_ENCODER_CAP_SIZE])
3405 u8 major_v, minor_v;
3407 buf = pcon_dsc_dpcd[DP_PCON_DSC_VERSION - DP_PCON_DSC_ENCODER];
3408 major_v = (buf & DP_PCON_DSC_MAJOR_MASK) >> DP_PCON_DSC_MAJOR_SHIFT;
3409 minor_v = (buf & DP_PCON_DSC_MINOR_MASK) >> DP_PCON_DSC_MINOR_SHIFT;
3411 if (major_v == 1 && minor_v == 2)
3416 EXPORT_SYMBOL(drm_dp_pcon_enc_is_dsc_1_2);
3419 * drm_dp_pcon_dsc_max_slices - Get max slices supported by PCON DSC Encoder
3420 * @pcon_dsc_dpcd: DSC capabilities of the PCON DSC Encoder
3422 * Returns maximum no. of slices supported by the PCON DSC Encoder.
3424 int drm_dp_pcon_dsc_max_slices(const u8 pcon_dsc_dpcd[DP_PCON_DSC_ENCODER_CAP_SIZE])
3426 u8 slice_cap1, slice_cap2;
3428 slice_cap1 = pcon_dsc_dpcd[DP_PCON_DSC_SLICE_CAP_1 - DP_PCON_DSC_ENCODER];
3429 slice_cap2 = pcon_dsc_dpcd[DP_PCON_DSC_SLICE_CAP_2 - DP_PCON_DSC_ENCODER];
3431 if (slice_cap2 & DP_PCON_DSC_24_PER_DSC_ENC)
3433 if (slice_cap2 & DP_PCON_DSC_20_PER_DSC_ENC)
3435 if (slice_cap2 & DP_PCON_DSC_16_PER_DSC_ENC)
3437 if (slice_cap1 & DP_PCON_DSC_12_PER_DSC_ENC)
3439 if (slice_cap1 & DP_PCON_DSC_10_PER_DSC_ENC)
3441 if (slice_cap1 & DP_PCON_DSC_8_PER_DSC_ENC)
3443 if (slice_cap1 & DP_PCON_DSC_6_PER_DSC_ENC)
3445 if (slice_cap1 & DP_PCON_DSC_4_PER_DSC_ENC)
3447 if (slice_cap1 & DP_PCON_DSC_2_PER_DSC_ENC)
3449 if (slice_cap1 & DP_PCON_DSC_1_PER_DSC_ENC)
3454 EXPORT_SYMBOL(drm_dp_pcon_dsc_max_slices);
3457 * drm_dp_pcon_dsc_max_slice_width() - Get max slice width for Pcon DSC encoder
3458 * @pcon_dsc_dpcd: DSC capabilities of the PCON DSC Encoder
3460 * Returns maximum width of the slices in pixel width i.e. no. of pixels x 320.
3462 int drm_dp_pcon_dsc_max_slice_width(const u8 pcon_dsc_dpcd[DP_PCON_DSC_ENCODER_CAP_SIZE])
3466 buf = pcon_dsc_dpcd[DP_PCON_DSC_MAX_SLICE_WIDTH - DP_PCON_DSC_ENCODER];
3468 return buf * DP_DSC_SLICE_WIDTH_MULTIPLIER;
3470 EXPORT_SYMBOL(drm_dp_pcon_dsc_max_slice_width);
3473 * drm_dp_pcon_dsc_bpp_incr() - Get bits per pixel increment for PCON DSC encoder
3474 * @pcon_dsc_dpcd: DSC capabilities of the PCON DSC Encoder
3476 * Returns the bpp precision supported by the PCON encoder.
3478 int drm_dp_pcon_dsc_bpp_incr(const u8 pcon_dsc_dpcd[DP_PCON_DSC_ENCODER_CAP_SIZE])
3482 buf = pcon_dsc_dpcd[DP_PCON_DSC_BPP_INCR - DP_PCON_DSC_ENCODER];
3484 switch (buf & DP_PCON_DSC_BPP_INCR_MASK) {
3485 case DP_PCON_DSC_ONE_16TH_BPP:
3487 case DP_PCON_DSC_ONE_8TH_BPP:
3489 case DP_PCON_DSC_ONE_4TH_BPP:
3491 case DP_PCON_DSC_ONE_HALF_BPP:
3493 case DP_PCON_DSC_ONE_BPP:
3499 EXPORT_SYMBOL(drm_dp_pcon_dsc_bpp_incr);
3502 int drm_dp_pcon_configure_dsc_enc(struct drm_dp_aux *aux, u8 pps_buf_config)
3507 ret = drm_dp_dpcd_readb(aux, DP_PROTOCOL_CONVERTER_CONTROL_2, &buf);
3511 buf |= DP_PCON_ENABLE_DSC_ENCODER;
3513 if (pps_buf_config <= DP_PCON_ENC_PPS_OVERRIDE_EN_BUFFER) {
3514 buf &= ~DP_PCON_ENCODER_PPS_OVERRIDE_MASK;
3515 buf |= pps_buf_config << 2;
3518 ret = drm_dp_dpcd_writeb(aux, DP_PROTOCOL_CONVERTER_CONTROL_2, buf);
3526 * drm_dp_pcon_pps_default() - Let PCON fill the default pps parameters
3527 * for DSC1.2 between PCON & HDMI2.1 sink
3528 * @aux: DisplayPort AUX channel
3530 * Returns 0 on success, else returns negative error code.
3532 int drm_dp_pcon_pps_default(struct drm_dp_aux *aux)
3536 ret = drm_dp_pcon_configure_dsc_enc(aux, DP_PCON_ENC_PPS_OVERRIDE_DISABLED);
3542 EXPORT_SYMBOL(drm_dp_pcon_pps_default);
3545 * drm_dp_pcon_pps_override_buf() - Configure PPS encoder override buffer for
3547 * @aux: DisplayPort AUX channel
3548 * @pps_buf: 128 bytes to be written into PPS buffer for HDMI sink by PCON.
3550 * Returns 0 on success, else returns negative error code.
3552 int drm_dp_pcon_pps_override_buf(struct drm_dp_aux *aux, u8 pps_buf[128])
3556 ret = drm_dp_dpcd_write(aux, DP_PCON_HDMI_PPS_OVERRIDE_BASE, &pps_buf, 128);
3560 ret = drm_dp_pcon_configure_dsc_enc(aux, DP_PCON_ENC_PPS_OVERRIDE_EN_BUFFER);
3566 EXPORT_SYMBOL(drm_dp_pcon_pps_override_buf);
3569 * drm_dp_pcon_pps_override_param() - Write PPS parameters to DSC encoder
3570 * override registers
3571 * @aux: DisplayPort AUX channel
3572 * @pps_param: 3 Parameters (2 Bytes each) : Slice Width, Slice Height,
3575 * Returns 0 on success, else returns negative error code.
3577 int drm_dp_pcon_pps_override_param(struct drm_dp_aux *aux, u8 pps_param[6])
3581 ret = drm_dp_dpcd_write(aux, DP_PCON_HDMI_PPS_OVRD_SLICE_HEIGHT, &pps_param[0], 2);
3584 ret = drm_dp_dpcd_write(aux, DP_PCON_HDMI_PPS_OVRD_SLICE_WIDTH, &pps_param[2], 2);
3587 ret = drm_dp_dpcd_write(aux, DP_PCON_HDMI_PPS_OVRD_BPP, &pps_param[4], 2);
3591 ret = drm_dp_pcon_configure_dsc_enc(aux, DP_PCON_ENC_PPS_OVERRIDE_EN_BUFFER);
3597 EXPORT_SYMBOL(drm_dp_pcon_pps_override_param);
3600 * drm_dp_pcon_convert_rgb_to_ycbcr() - Configure the PCon to convert RGB to Ycbcr
3601 * @aux: displayPort AUX channel
3602 * @color_spc: Color-space/s for which conversion is to be enabled, 0 for disable.
3604 * Returns 0 on success, else returns negative error code.
3606 int drm_dp_pcon_convert_rgb_to_ycbcr(struct drm_dp_aux *aux, u8 color_spc)
3611 ret = drm_dp_dpcd_readb(aux, DP_PROTOCOL_CONVERTER_CONTROL_2, &buf);
3615 if (color_spc & DP_CONVERSION_RGB_YCBCR_MASK)
3616 buf |= (color_spc & DP_CONVERSION_RGB_YCBCR_MASK);
3618 buf &= ~DP_CONVERSION_RGB_YCBCR_MASK;
3620 ret = drm_dp_dpcd_writeb(aux, DP_PROTOCOL_CONVERTER_CONTROL_2, buf);
3626 EXPORT_SYMBOL(drm_dp_pcon_convert_rgb_to_ycbcr);
3629 * drm_edp_backlight_set_level() - Set the backlight level of an eDP panel via AUX
3630 * @aux: The DP AUX channel to use
3631 * @bl: Backlight capability info from drm_edp_backlight_init()
3632 * @level: The brightness level to set
3634 * Sets the brightness level of an eDP panel's backlight. Note that the panel's backlight must
3635 * already have been enabled by the driver by calling drm_edp_backlight_enable().
3637 * Returns: %0 on success, negative error code on failure
3639 int drm_edp_backlight_set_level(struct drm_dp_aux *aux, const struct drm_edp_backlight_info *bl,
3645 /* The panel uses the PWM for controlling brightness levels */
3649 if (bl->lsb_reg_used) {
3650 buf[0] = (level & 0xff00) >> 8;
3651 buf[1] = (level & 0x00ff);
3656 ret = drm_dp_dpcd_write(aux, DP_EDP_BACKLIGHT_BRIGHTNESS_MSB, buf, sizeof(buf));
3657 if (ret != sizeof(buf)) {
3658 drm_err(aux->drm_dev,
3659 "%s: Failed to write aux backlight level: %d\n",
3661 return ret < 0 ? ret : -EIO;
3666 EXPORT_SYMBOL(drm_edp_backlight_set_level);
3669 drm_edp_backlight_set_enable(struct drm_dp_aux *aux, const struct drm_edp_backlight_info *bl,
3675 /* This panel uses the EDP_BL_PWR GPIO for enablement */
3676 if (!bl->aux_enable)
3679 ret = drm_dp_dpcd_readb(aux, DP_EDP_DISPLAY_CONTROL_REGISTER, &buf);
3681 drm_err(aux->drm_dev, "%s: Failed to read eDP display control register: %d\n",
3683 return ret < 0 ? ret : -EIO;
3686 buf |= DP_EDP_BACKLIGHT_ENABLE;
3688 buf &= ~DP_EDP_BACKLIGHT_ENABLE;
3690 ret = drm_dp_dpcd_writeb(aux, DP_EDP_DISPLAY_CONTROL_REGISTER, buf);
3692 drm_err(aux->drm_dev, "%s: Failed to write eDP display control register: %d\n",
3694 return ret < 0 ? ret : -EIO;
3701 * drm_edp_backlight_enable() - Enable an eDP panel's backlight using DPCD
3702 * @aux: The DP AUX channel to use
3703 * @bl: Backlight capability info from drm_edp_backlight_init()
3704 * @level: The initial backlight level to set via AUX, if there is one
3706 * This function handles enabling DPCD backlight controls on a panel over DPCD, while additionally
3707 * restoring any important backlight state such as the given backlight level, the brightness byte
3708 * count, backlight frequency, etc.
3710 * Note that certain panels do not support being enabled or disabled via DPCD, but instead require
3711 * that the driver handle enabling/disabling the panel through implementation-specific means using
3712 * the EDP_BL_PWR GPIO. For such panels, &drm_edp_backlight_info.aux_enable will be set to %false,
3713 * this function becomes a no-op, and the driver is expected to handle powering the panel on using
3714 * the EDP_BL_PWR GPIO.
3716 * Returns: %0 on success, negative error code on failure.
3718 int drm_edp_backlight_enable(struct drm_dp_aux *aux, const struct drm_edp_backlight_info *bl,
3725 dpcd_buf = DP_EDP_BACKLIGHT_CONTROL_MODE_DPCD;
3727 dpcd_buf = DP_EDP_BACKLIGHT_CONTROL_MODE_PWM;
3729 if (bl->pwmgen_bit_count) {
3730 ret = drm_dp_dpcd_writeb(aux, DP_EDP_PWMGEN_BIT_COUNT, bl->pwmgen_bit_count);
3732 drm_dbg_kms(aux->drm_dev, "%s: Failed to write aux pwmgen bit count: %d\n",
3736 if (bl->pwm_freq_pre_divider) {
3737 ret = drm_dp_dpcd_writeb(aux, DP_EDP_BACKLIGHT_FREQ_SET, bl->pwm_freq_pre_divider);
3739 drm_dbg_kms(aux->drm_dev,
3740 "%s: Failed to write aux backlight frequency: %d\n",
3743 dpcd_buf |= DP_EDP_BACKLIGHT_FREQ_AUX_SET_ENABLE;
3746 ret = drm_dp_dpcd_writeb(aux, DP_EDP_BACKLIGHT_MODE_SET_REGISTER, dpcd_buf);
3748 drm_dbg_kms(aux->drm_dev, "%s: Failed to write aux backlight mode: %d\n",
3750 return ret < 0 ? ret : -EIO;
3753 ret = drm_edp_backlight_set_level(aux, bl, level);
3756 ret = drm_edp_backlight_set_enable(aux, bl, true);
3762 EXPORT_SYMBOL(drm_edp_backlight_enable);
3765 * drm_edp_backlight_disable() - Disable an eDP backlight using DPCD, if supported
3766 * @aux: The DP AUX channel to use
3767 * @bl: Backlight capability info from drm_edp_backlight_init()
3769 * This function handles disabling DPCD backlight controls on a panel over AUX.
3771 * Note that certain panels do not support being enabled or disabled via DPCD, but instead require
3772 * that the driver handle enabling/disabling the panel through implementation-specific means using
3773 * the EDP_BL_PWR GPIO. For such panels, &drm_edp_backlight_info.aux_enable will be set to %false,
3774 * this function becomes a no-op, and the driver is expected to handle powering the panel off using
3775 * the EDP_BL_PWR GPIO.
3777 * Returns: %0 on success or no-op, negative error code on failure.
3779 int drm_edp_backlight_disable(struct drm_dp_aux *aux, const struct drm_edp_backlight_info *bl)
3783 ret = drm_edp_backlight_set_enable(aux, bl, false);
3789 EXPORT_SYMBOL(drm_edp_backlight_disable);
3792 drm_edp_backlight_probe_max(struct drm_dp_aux *aux, struct drm_edp_backlight_info *bl,
3793 u16 driver_pwm_freq_hz, const u8 edp_dpcd[EDP_DISPLAY_CTL_CAP_SIZE])
3795 int fxp, fxp_min, fxp_max, fxp_actual, f = 1;
3797 u8 pn, pn_min, pn_max;
3802 ret = drm_dp_dpcd_readb(aux, DP_EDP_PWMGEN_BIT_COUNT, &pn);
3804 drm_dbg_kms(aux->drm_dev, "%s: Failed to read pwmgen bit count cap: %d\n",
3809 pn &= DP_EDP_PWMGEN_BIT_COUNT_MASK;
3810 bl->max = (1 << pn) - 1;
3811 if (!driver_pwm_freq_hz)
3815 * Set PWM Frequency divider to match desired frequency provided by the driver.
3816 * The PWM Frequency is calculated as 27Mhz / (F x P).
3817 * - Where F = PWM Frequency Pre-Divider value programmed by field 7:0 of the
3818 * EDP_BACKLIGHT_FREQ_SET register (DPCD Address 00728h)
3819 * - Where P = 2^Pn, where Pn is the value programmed by field 4:0 of the
3820 * EDP_PWMGEN_BIT_COUNT register (DPCD Address 00724h)
3823 /* Find desired value of (F x P)
3824 * Note that, if F x P is out of supported range, the maximum value or minimum value will
3825 * applied automatically. So no need to check that.
3827 fxp = DIV_ROUND_CLOSEST(1000 * DP_EDP_BACKLIGHT_FREQ_BASE_KHZ, driver_pwm_freq_hz);
3829 /* Use highest possible value of Pn for more granularity of brightness adjustment while
3830 * satisfying the conditions below.
3831 * - Pn is in the range of Pn_min and Pn_max
3832 * - F is in the range of 1 and 255
3833 * - FxP is within 25% of desired value.
3834 * Note: 25% is arbitrary value and may need some tweak.
3836 ret = drm_dp_dpcd_readb(aux, DP_EDP_PWMGEN_BIT_COUNT_CAP_MIN, &pn_min);
3838 drm_dbg_kms(aux->drm_dev, "%s: Failed to read pwmgen bit count cap min: %d\n",
3842 ret = drm_dp_dpcd_readb(aux, DP_EDP_PWMGEN_BIT_COUNT_CAP_MAX, &pn_max);
3844 drm_dbg_kms(aux->drm_dev, "%s: Failed to read pwmgen bit count cap max: %d\n",
3848 pn_min &= DP_EDP_PWMGEN_BIT_COUNT_MASK;
3849 pn_max &= DP_EDP_PWMGEN_BIT_COUNT_MASK;
3851 /* Ensure frequency is within 25% of desired value */
3852 fxp_min = DIV_ROUND_CLOSEST(fxp * 3, 4);
3853 fxp_max = DIV_ROUND_CLOSEST(fxp * 5, 4);
3854 if (fxp_min < (1 << pn_min) || (255 << pn_max) < fxp_max) {
3855 drm_dbg_kms(aux->drm_dev,
3856 "%s: Driver defined backlight frequency (%d) out of range\n",
3857 aux->name, driver_pwm_freq_hz);
3861 for (pn = pn_max; pn >= pn_min; pn--) {
3862 f = clamp(DIV_ROUND_CLOSEST(fxp, 1 << pn), 1, 255);
3863 fxp_actual = f << pn;
3864 if (fxp_min <= fxp_actual && fxp_actual <= fxp_max)
3868 ret = drm_dp_dpcd_writeb(aux, DP_EDP_PWMGEN_BIT_COUNT, pn);
3870 drm_dbg_kms(aux->drm_dev, "%s: Failed to write aux pwmgen bit count: %d\n",
3874 bl->pwmgen_bit_count = pn;
3875 bl->max = (1 << pn) - 1;
3877 if (edp_dpcd[2] & DP_EDP_BACKLIGHT_FREQ_AUX_SET_CAP) {
3878 bl->pwm_freq_pre_divider = f;
3879 drm_dbg_kms(aux->drm_dev, "%s: Using backlight frequency from driver (%dHz)\n",
3880 aux->name, driver_pwm_freq_hz);
3887 drm_edp_backlight_probe_state(struct drm_dp_aux *aux, struct drm_edp_backlight_info *bl,
3894 ret = drm_dp_dpcd_readb(aux, DP_EDP_BACKLIGHT_MODE_SET_REGISTER, &mode_reg);
3896 drm_dbg_kms(aux->drm_dev, "%s: Failed to read backlight mode: %d\n",
3898 return ret < 0 ? ret : -EIO;
3901 *current_mode = (mode_reg & DP_EDP_BACKLIGHT_CONTROL_MODE_MASK);
3905 if (*current_mode == DP_EDP_BACKLIGHT_CONTROL_MODE_DPCD) {
3906 int size = 1 + bl->lsb_reg_used;
3908 ret = drm_dp_dpcd_read(aux, DP_EDP_BACKLIGHT_BRIGHTNESS_MSB, buf, size);
3910 drm_dbg_kms(aux->drm_dev, "%s: Failed to read backlight level: %d\n",
3912 return ret < 0 ? ret : -EIO;
3915 if (bl->lsb_reg_used)
3916 return (buf[0] << 8) | buf[1];
3922 * If we're not in DPCD control mode yet, the programmed brightness value is meaningless and
3923 * the driver should assume max brightness
3929 * drm_edp_backlight_init() - Probe a display panel's TCON using the standard VESA eDP backlight
3931 * @aux: The DP aux device to use for probing
3932 * @bl: The &drm_edp_backlight_info struct to fill out with information on the backlight
3933 * @driver_pwm_freq_hz: Optional PWM frequency from the driver in hz
3934 * @edp_dpcd: A cached copy of the eDP DPCD
3935 * @current_level: Where to store the probed brightness level, if any
3936 * @current_mode: Where to store the currently set backlight control mode
3938 * Initializes a &drm_edp_backlight_info struct by probing @aux for it's backlight capabilities,
3939 * along with also probing the current and maximum supported brightness levels.
3941 * If @driver_pwm_freq_hz is non-zero, this will be used as the backlight frequency. Otherwise, the
3942 * default frequency from the panel is used.
3944 * Returns: %0 on success, negative error code on failure.
3947 drm_edp_backlight_init(struct drm_dp_aux *aux, struct drm_edp_backlight_info *bl,
3948 u16 driver_pwm_freq_hz, const u8 edp_dpcd[EDP_DISPLAY_CTL_CAP_SIZE],
3949 u16 *current_level, u8 *current_mode)
3953 if (edp_dpcd[1] & DP_EDP_BACKLIGHT_AUX_ENABLE_CAP)
3954 bl->aux_enable = true;
3955 if (edp_dpcd[2] & DP_EDP_BACKLIGHT_BRIGHTNESS_AUX_SET_CAP)
3957 if (edp_dpcd[2] & DP_EDP_BACKLIGHT_BRIGHTNESS_BYTE_COUNT)
3958 bl->lsb_reg_used = true;
3960 /* Sanity check caps */
3961 if (!bl->aux_set && !(edp_dpcd[2] & DP_EDP_BACKLIGHT_BRIGHTNESS_PWM_PIN_CAP)) {
3962 drm_dbg_kms(aux->drm_dev,
3963 "%s: Panel supports neither AUX or PWM brightness control? Aborting\n",
3968 ret = drm_edp_backlight_probe_max(aux, bl, driver_pwm_freq_hz, edp_dpcd);
3972 ret = drm_edp_backlight_probe_state(aux, bl, current_mode);
3975 *current_level = ret;
3977 drm_dbg_kms(aux->drm_dev,
3978 "%s: Found backlight: aux_set=%d aux_enable=%d mode=%d\n",
3979 aux->name, bl->aux_set, bl->aux_enable, *current_mode);
3981 drm_dbg_kms(aux->drm_dev,
3982 "%s: Backlight caps: level=%d/%d pwm_freq_pre_divider=%d lsb_reg_used=%d\n",
3983 aux->name, *current_level, bl->max, bl->pwm_freq_pre_divider,
3989 EXPORT_SYMBOL(drm_edp_backlight_init);
3991 #if IS_BUILTIN(CONFIG_BACKLIGHT_CLASS_DEVICE) || \
3992 (IS_MODULE(CONFIG_DRM_KMS_HELPER) && IS_MODULE(CONFIG_BACKLIGHT_CLASS_DEVICE))
3994 static int dp_aux_backlight_update_status(struct backlight_device *bd)
3996 struct dp_aux_backlight *bl = bl_get_data(bd);
3997 u16 brightness = backlight_get_brightness(bd);
4000 if (!backlight_is_blank(bd)) {
4002 drm_edp_backlight_enable(bl->aux, &bl->info, brightness);
4006 ret = drm_edp_backlight_set_level(bl->aux, &bl->info, brightness);
4009 drm_edp_backlight_disable(bl->aux, &bl->info);
4010 bl->enabled = false;
4017 static const struct backlight_ops dp_aux_bl_ops = {
4018 .update_status = dp_aux_backlight_update_status,
4022 * drm_panel_dp_aux_backlight - create and use DP AUX backlight
4024 * @aux: The DP AUX channel to use
4026 * Use this function to create and handle backlight if your panel
4027 * supports backlight control over DP AUX channel using DPCD
4028 * registers as per VESA's standard backlight control interface.
4030 * When the panel is enabled backlight will be enabled after a
4031 * successful call to &drm_panel_funcs.enable()
4033 * When the panel is disabled backlight will be disabled before the
4034 * call to &drm_panel_funcs.disable().
4036 * A typical implementation for a panel driver supporting backlight
4037 * control over DP AUX will call this function at probe time.
4038 * Backlight will then be handled transparently without requiring
4039 * any intervention from the driver.
4041 * drm_panel_dp_aux_backlight() must be called after the call to drm_panel_init().
4043 * Return: 0 on success or a negative error code on failure.
4045 int drm_panel_dp_aux_backlight(struct drm_panel *panel, struct drm_dp_aux *aux)
4047 struct dp_aux_backlight *bl;
4048 struct backlight_properties props = { 0 };
4051 u8 edp_dpcd[EDP_DISPLAY_CTL_CAP_SIZE];
4054 if (!panel || !panel->dev || !aux)
4057 ret = drm_dp_dpcd_read(aux, DP_EDP_DPCD_REV, edp_dpcd,
4058 EDP_DISPLAY_CTL_CAP_SIZE);
4062 if (!drm_edp_backlight_supported(edp_dpcd)) {
4063 DRM_DEV_INFO(panel->dev, "DP AUX backlight is not supported\n");
4067 bl = devm_kzalloc(panel->dev, sizeof(*bl), GFP_KERNEL);
4073 ret = drm_edp_backlight_init(aux, &bl->info, 0, edp_dpcd,
4074 ¤t_level, ¤t_mode);
4078 props.type = BACKLIGHT_RAW;
4079 props.brightness = current_level;
4080 props.max_brightness = bl->info.max;
4082 bl->base = devm_backlight_device_register(panel->dev, "dp_aux_backlight",
4084 &dp_aux_bl_ops, &props);
4085 if (IS_ERR(bl->base))
4086 return PTR_ERR(bl->base);
4088 backlight_disable(bl->base);
4090 panel->backlight = bl->base;
4094 EXPORT_SYMBOL(drm_panel_dp_aux_backlight);
4098 /* See DP Standard v2.1 2.6.4.4.1.1, 2.8.4.4, 2.8.7 */
4099 static int drm_dp_link_symbol_cycles(int lane_count, int pixels, int bpp_x16,
4100 int symbol_size, bool is_mst)
4102 int cycles = DIV_ROUND_UP(pixels * bpp_x16, 16 * symbol_size * lane_count);
4103 int align = is_mst ? 4 / lane_count : 1;
4105 return ALIGN(cycles, align);
4108 static int drm_dp_link_dsc_symbol_cycles(int lane_count, int pixels, int slice_count,
4109 int bpp_x16, int symbol_size, bool is_mst)
4111 int slice_pixels = DIV_ROUND_UP(pixels, slice_count);
4112 int slice_data_cycles = drm_dp_link_symbol_cycles(lane_count, slice_pixels,
4113 bpp_x16, symbol_size, is_mst);
4114 int slice_eoc_cycles = is_mst ? 4 / lane_count : 1;
4116 return slice_count * (slice_data_cycles + slice_eoc_cycles);
4120 * drm_dp_bw_overhead - Calculate the BW overhead of a DP link stream
4121 * @lane_count: DP link lane count
4122 * @hactive: pixel count of the active period in one scanline of the stream
4123 * @dsc_slice_count: DSC slice count if @flags/DRM_DP_LINK_BW_OVERHEAD_DSC is set
4124 * @bpp_x16: bits per pixel in .4 binary fixed point
4125 * @flags: DRM_DP_OVERHEAD_x flags
4127 * Calculate the BW allocation overhead of a DP link stream, depending
4130 * - SST/MST mode (@flags / %DRM_DP_OVERHEAD_MST)
4131 * - symbol size (@flags / %DRM_DP_OVERHEAD_UHBR)
4132 * - FEC mode (@flags / %DRM_DP_OVERHEAD_FEC)
4133 * - SSC/REF_CLK mode (@flags / %DRM_DP_OVERHEAD_SSC_REF_CLK)
4134 * as well as the stream's
4136 * - @bpp_x16 color depth
4137 * - compression mode (@flags / %DRM_DP_OVERHEAD_DSC).
4138 * Note that this overhead doesn't account for the 8b/10b, 128b/132b
4139 * channel coding efficiency, for that see
4140 * @drm_dp_link_bw_channel_coding_efficiency().
4142 * Returns the overhead as 100% + overhead% in 1ppm units.
4144 int drm_dp_bw_overhead(int lane_count, int hactive,
4145 int dsc_slice_count,
4146 int bpp_x16, unsigned long flags)
4148 int symbol_size = flags & DRM_DP_BW_OVERHEAD_UHBR ? 32 : 8;
4149 bool is_mst = flags & DRM_DP_BW_OVERHEAD_MST;
4150 u32 overhead = 1000000;
4153 if (lane_count == 0 || hactive == 0 || bpp_x16 == 0) {
4154 DRM_DEBUG_KMS("Invalid BW overhead params: lane_count %d, hactive %d, bpp_x16 %d.%04d\n",
4155 lane_count, hactive,
4156 bpp_x16 >> 4, (bpp_x16 & 0xf) * 625);
4161 * DP Standard v2.1 2.6.4.1
4162 * SSC downspread and ref clock variation margin:
4163 * 5300ppm + 300ppm ~ 0.6%
4165 if (flags & DRM_DP_BW_OVERHEAD_SSC_REF_CLK)
4169 * DP Standard v2.1 2.6.4.1.1, 3.5.1.5.4:
4170 * FEC symbol insertions for 8b/10b channel coding:
4171 * After each 250 data symbols on 2-4 lanes:
4172 * 250 LL + 5 FEC_PARITY_PH + 1 CD_ADJ (256 byte FEC block)
4173 * After each 2 x 250 data symbols on 1 lane:
4174 * 2 * 250 LL + 11 FEC_PARITY_PH + 1 CD_ADJ (512 byte FEC block)
4175 * After 256 (2-4 lanes) or 128 (1 lane) FEC blocks:
4176 * 256 * 256 bytes + 1 FEC_PM
4178 * 128 * 512 bytes + 1 FEC_PM
4179 * (256 * 6 + 1) / (256 * 250) = 2.4015625 %
4181 if (flags & DRM_DP_BW_OVERHEAD_FEC)
4185 * DP Standard v2.1 2.7.9, 5.9.7
4186 * The FEC overhead for UHBR is accounted for in its 96.71% channel
4187 * coding efficiency.
4189 WARN_ON((flags & DRM_DP_BW_OVERHEAD_UHBR) &&
4190 (flags & DRM_DP_BW_OVERHEAD_FEC));
4192 if (flags & DRM_DP_BW_OVERHEAD_DSC)
4193 symbol_cycles = drm_dp_link_dsc_symbol_cycles(lane_count, hactive,
4195 bpp_x16, symbol_size,
4198 symbol_cycles = drm_dp_link_symbol_cycles(lane_count, hactive,
4199 bpp_x16, symbol_size,
4202 return DIV_ROUND_UP_ULL(mul_u32_u32(symbol_cycles * symbol_size * lane_count,
4206 EXPORT_SYMBOL(drm_dp_bw_overhead);
4209 * drm_dp_bw_channel_coding_efficiency - Get a DP link's channel coding efficiency
4210 * @is_uhbr: Whether the link has a 128b/132b channel coding
4212 * Return the channel coding efficiency of the given DP link type, which is
4213 * either 8b/10b or 128b/132b (aka UHBR). The corresponding overhead includes
4214 * the 8b -> 10b, 128b -> 132b pixel data to link symbol conversion overhead
4215 * and for 128b/132b any link or PHY level control symbol insertion overhead
4216 * (LLCP, FEC, PHY sync, see DP Standard v2.1 3.5.2.18). For 8b/10b the
4217 * corresponding FEC overhead is BW allocation specific, included in the value
4218 * returned by drm_dp_bw_overhead().
4220 * Returns the efficiency in the 100%/coding-overhead% ratio in
4223 int drm_dp_bw_channel_coding_efficiency(bool is_uhbr)
4229 * Note that on 8b/10b MST the efficiency is only
4230 * 78.75% due to the 1 out of 64 MTPH packet overhead,
4231 * not accounted for here.
4235 EXPORT_SYMBOL(drm_dp_bw_channel_coding_efficiency);
4238 * drm_dp_max_dprx_data_rate - Get the max data bandwidth of a DPRX sink
4239 * @max_link_rate: max DPRX link rate in 10kbps units
4240 * @max_lanes: max DPRX lane count
4242 * Given a link rate and lanes, get the data bandwidth.
4244 * Data bandwidth is the actual payload rate, which depends on the data
4245 * bandwidth efficiency and the link rate.
4247 * Note that protocol layers above the DPRX link level considered here can
4248 * further limit the maximum data rate. Such layers are the MST topology (with
4249 * limits on the link between the source and first branch device as well as on
4250 * the whole MST path until the DPRX link) and (Thunderbolt) DP tunnels -
4251 * which in turn can encapsulate an MST link with its own limit - with each
4252 * SST or MST encapsulated tunnel sharing the BW of a tunnel group.
4254 * Returns the maximum data rate in kBps units.
4256 int drm_dp_max_dprx_data_rate(int max_link_rate, int max_lanes)
4258 int ch_coding_efficiency =
4259 drm_dp_bw_channel_coding_efficiency(drm_dp_is_uhbr_rate(max_link_rate));
4261 return DIV_ROUND_DOWN_ULL(mul_u32_u32(max_link_rate * 10 * max_lanes,
4262 ch_coding_efficiency),
4265 EXPORT_SYMBOL(drm_dp_max_dprx_data_rate);