drm/uapi_drm: Update to Linux 4.6
[dragonfly.git] / sys / dev / drm / drm_dp_helper.c
blob5c301dcada0a03af5bb35ebb84223dcd32903304
1 /*
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
20 * OF THIS SOFTWARE.
23 #include <linux/kernel.h>
24 #include <linux/module.h>
25 #include <linux/delay.h>
26 #include <linux/errno.h>
27 #include <linux/sched.h>
28 #include <linux/i2c.h>
29 #include <drm/drm_dp_helper.h>
30 #include <drm/drmP.h>
32 /**
33 * DOC: dp helpers
35 * These functions contain some common logic and helpers at various abstraction
36 * levels to deal with Display Port sink devices and related things like DP aux
37 * channel transfers, EDID reading over DP aux channels, decoding certain DPCD
38 * blocks, ...
41 /* Helpers for DP link training */
42 static u8 dp_link_status(const u8 link_status[DP_LINK_STATUS_SIZE], int r)
44 return link_status[r - DP_LANE0_1_STATUS];
47 static u8 dp_get_lane_status(const u8 link_status[DP_LINK_STATUS_SIZE],
48 int lane)
50 int i = DP_LANE0_1_STATUS + (lane >> 1);
51 int s = (lane & 1) * 4;
52 u8 l = dp_link_status(link_status, i);
53 return (l >> s) & 0xf;
56 bool drm_dp_channel_eq_ok(const u8 link_status[DP_LINK_STATUS_SIZE],
57 int lane_count)
59 u8 lane_align;
60 u8 lane_status;
61 int lane;
63 lane_align = dp_link_status(link_status,
64 DP_LANE_ALIGN_STATUS_UPDATED);
65 if ((lane_align & DP_INTERLANE_ALIGN_DONE) == 0)
66 return false;
67 for (lane = 0; lane < lane_count; lane++) {
68 lane_status = dp_get_lane_status(link_status, lane);
69 if ((lane_status & DP_CHANNEL_EQ_BITS) != DP_CHANNEL_EQ_BITS)
70 return false;
72 return true;
74 EXPORT_SYMBOL(drm_dp_channel_eq_ok);
76 bool drm_dp_clock_recovery_ok(const u8 link_status[DP_LINK_STATUS_SIZE],
77 int lane_count)
79 int lane;
80 u8 lane_status;
82 for (lane = 0; lane < lane_count; lane++) {
83 lane_status = dp_get_lane_status(link_status, lane);
84 if ((lane_status & DP_LANE_CR_DONE) == 0)
85 return false;
87 return true;
89 EXPORT_SYMBOL(drm_dp_clock_recovery_ok);
91 u8 drm_dp_get_adjust_request_voltage(const u8 link_status[DP_LINK_STATUS_SIZE],
92 int lane)
94 int i = DP_ADJUST_REQUEST_LANE0_1 + (lane >> 1);
95 int s = ((lane & 1) ?
96 DP_ADJUST_VOLTAGE_SWING_LANE1_SHIFT :
97 DP_ADJUST_VOLTAGE_SWING_LANE0_SHIFT);
98 u8 l = dp_link_status(link_status, i);
100 return ((l >> s) & 0x3) << DP_TRAIN_VOLTAGE_SWING_SHIFT;
102 EXPORT_SYMBOL(drm_dp_get_adjust_request_voltage);
104 u8 drm_dp_get_adjust_request_pre_emphasis(const u8 link_status[DP_LINK_STATUS_SIZE],
105 int lane)
107 int i = DP_ADJUST_REQUEST_LANE0_1 + (lane >> 1);
108 int s = ((lane & 1) ?
109 DP_ADJUST_PRE_EMPHASIS_LANE1_SHIFT :
110 DP_ADJUST_PRE_EMPHASIS_LANE0_SHIFT);
111 u8 l = dp_link_status(link_status, i);
113 return ((l >> s) & 0x3) << DP_TRAIN_PRE_EMPHASIS_SHIFT;
115 EXPORT_SYMBOL(drm_dp_get_adjust_request_pre_emphasis);
117 void drm_dp_link_train_clock_recovery_delay(const u8 dpcd[DP_RECEIVER_CAP_SIZE]) {
118 if (dpcd[DP_TRAINING_AUX_RD_INTERVAL] == 0)
119 udelay(100);
120 else
121 mdelay(dpcd[DP_TRAINING_AUX_RD_INTERVAL] * 4);
123 EXPORT_SYMBOL(drm_dp_link_train_clock_recovery_delay);
125 void drm_dp_link_train_channel_eq_delay(const u8 dpcd[DP_RECEIVER_CAP_SIZE]) {
126 if (dpcd[DP_TRAINING_AUX_RD_INTERVAL] == 0)
127 udelay(400);
128 else
129 mdelay(dpcd[DP_TRAINING_AUX_RD_INTERVAL] * 4);
131 EXPORT_SYMBOL(drm_dp_link_train_channel_eq_delay);
133 u8 drm_dp_link_rate_to_bw_code(int link_rate)
135 switch (link_rate) {
136 case 162000:
137 default:
138 return DP_LINK_BW_1_62;
139 case 270000:
140 return DP_LINK_BW_2_7;
141 case 540000:
142 return DP_LINK_BW_5_4;
145 EXPORT_SYMBOL(drm_dp_link_rate_to_bw_code);
147 int drm_dp_bw_code_to_link_rate(u8 link_bw)
149 switch (link_bw) {
150 case DP_LINK_BW_1_62:
151 default:
152 return 162000;
153 case DP_LINK_BW_2_7:
154 return 270000;
155 case DP_LINK_BW_5_4:
156 return 540000;
159 EXPORT_SYMBOL(drm_dp_bw_code_to_link_rate);
161 #define AUX_RETRY_INTERVAL 500 /* us */
164 * DOC: dp helpers
166 * The DisplayPort AUX channel is an abstraction to allow generic, driver-
167 * independent access to AUX functionality. Drivers can take advantage of
168 * this by filling in the fields of the drm_dp_aux structure.
170 * Transactions are described using a hardware-independent drm_dp_aux_msg
171 * structure, which is passed into a driver's .transfer() implementation.
172 * Both native and I2C-over-AUX transactions are supported.
175 static int drm_dp_dpcd_access(struct drm_dp_aux *aux, u8 request,
176 unsigned int offset, void *buffer, size_t size)
178 struct drm_dp_aux_msg msg;
179 unsigned int retry;
180 int err;
182 memset(&msg, 0, sizeof(msg));
183 msg.address = offset;
184 msg.request = request;
185 msg.buffer = buffer;
186 msg.size = size;
189 * The specification doesn't give any recommendation on how often to
190 * retry native transactions. We used to retry 7 times like for
191 * aux i2c transactions but real world devices this wasn't
192 * sufficient, bump to 32 which makes Dell 4k monitors happier.
194 for (retry = 0; retry < 32; retry++) {
196 mutex_lock(&aux->hw_mutex);
197 err = aux->transfer(aux, &msg);
198 mutex_unlock(&aux->hw_mutex);
199 if (err < 0) {
200 if (err == -EBUSY)
201 continue;
203 return err;
207 switch (msg.reply & DP_AUX_NATIVE_REPLY_MASK) {
208 case DP_AUX_NATIVE_REPLY_ACK:
209 if (err < size)
210 return -EPROTO;
211 return err;
213 case DP_AUX_NATIVE_REPLY_NACK:
214 return -EIO;
216 case DP_AUX_NATIVE_REPLY_DEFER:
217 usleep_range(AUX_RETRY_INTERVAL, AUX_RETRY_INTERVAL + 100);
218 break;
222 DRM_DEBUG_KMS("too many retries, giving up\n");
223 return -EIO;
227 * drm_dp_dpcd_read() - read a series of bytes from the DPCD
228 * @aux: DisplayPort AUX channel
229 * @offset: address of the (first) register to read
230 * @buffer: buffer to store the register values
231 * @size: number of bytes in @buffer
233 * Returns the number of bytes transferred on success, or a negative error
234 * code on failure. -EIO is returned if the request was NAKed by the sink or
235 * if the retry count was exceeded. If not all bytes were transferred, this
236 * function returns -EPROTO. Errors from the underlying AUX channel transfer
237 * function, with the exception of -EBUSY (which causes the transaction to
238 * be retried), are propagated to the caller.
240 ssize_t drm_dp_dpcd_read(struct drm_dp_aux *aux, unsigned int offset,
241 void *buffer, size_t size)
243 return drm_dp_dpcd_access(aux, DP_AUX_NATIVE_READ, offset, buffer,
244 size);
246 EXPORT_SYMBOL(drm_dp_dpcd_read);
249 * drm_dp_dpcd_write() - write a series of bytes to the DPCD
250 * @aux: DisplayPort AUX channel
251 * @offset: address of the (first) register to write
252 * @buffer: buffer containing the values to write
253 * @size: number of bytes in @buffer
255 * Returns the number of bytes transferred on success, or a negative error
256 * code on failure. -EIO is returned if the request was NAKed by the sink or
257 * if the retry count was exceeded. If not all bytes were transferred, this
258 * function returns -EPROTO. Errors from the underlying AUX channel transfer
259 * function, with the exception of -EBUSY (which causes the transaction to
260 * be retried), are propagated to the caller.
262 ssize_t drm_dp_dpcd_write(struct drm_dp_aux *aux, unsigned int offset,
263 void *buffer, size_t size)
265 return drm_dp_dpcd_access(aux, DP_AUX_NATIVE_WRITE, offset, buffer,
266 size);
268 EXPORT_SYMBOL(drm_dp_dpcd_write);
271 * drm_dp_dpcd_read_link_status() - read DPCD link status (bytes 0x202-0x207)
272 * @aux: DisplayPort AUX channel
273 * @status: buffer to store the link status in (must be at least 6 bytes)
275 * Returns the number of bytes transferred on success or a negative error
276 * code on failure.
278 int drm_dp_dpcd_read_link_status(struct drm_dp_aux *aux,
279 u8 status[DP_LINK_STATUS_SIZE])
281 return drm_dp_dpcd_read(aux, DP_LANE0_1_STATUS, status,
282 DP_LINK_STATUS_SIZE);
284 EXPORT_SYMBOL(drm_dp_dpcd_read_link_status);
287 * drm_dp_link_probe() - probe a DisplayPort link for capabilities
288 * @aux: DisplayPort AUX channel
289 * @link: pointer to structure in which to return link capabilities
291 * The structure filled in by this function can usually be passed directly
292 * into drm_dp_link_power_up() and drm_dp_link_configure() to power up and
293 * configure the link based on the link's capabilities.
295 * Returns 0 on success or a negative error code on failure.
297 int drm_dp_link_probe(struct drm_dp_aux *aux, struct drm_dp_link *link)
299 u8 values[3];
300 int err;
302 memset(link, 0, sizeof(*link));
304 err = drm_dp_dpcd_read(aux, DP_DPCD_REV, values, sizeof(values));
305 if (err < 0)
306 return err;
308 link->revision = values[0];
309 link->rate = drm_dp_bw_code_to_link_rate(values[1]);
310 link->num_lanes = values[2] & DP_MAX_LANE_COUNT_MASK;
312 if (values[2] & DP_ENHANCED_FRAME_CAP)
313 link->capabilities |= DP_LINK_CAP_ENHANCED_FRAMING;
315 return 0;
317 EXPORT_SYMBOL(drm_dp_link_probe);
320 * drm_dp_link_power_up() - power up a DisplayPort link
321 * @aux: DisplayPort AUX channel
322 * @link: pointer to a structure containing the link configuration
324 * Returns 0 on success or a negative error code on failure.
326 int drm_dp_link_power_up(struct drm_dp_aux *aux, struct drm_dp_link *link)
328 u8 value;
329 int err;
331 /* DP_SET_POWER register is only available on DPCD v1.1 and later */
332 if (link->revision < 0x11)
333 return 0;
335 err = drm_dp_dpcd_readb(aux, DP_SET_POWER, &value);
336 if (err < 0)
337 return err;
339 value &= ~DP_SET_POWER_MASK;
340 value |= DP_SET_POWER_D0;
342 err = drm_dp_dpcd_writeb(aux, DP_SET_POWER, value);
343 if (err < 0)
344 return err;
347 * According to the DP 1.1 specification, a "Sink Device must exit the
348 * power saving state within 1 ms" (Section 2.5.3.1, Table 5-52, "Sink
349 * Control Field" (register 0x600).
351 usleep_range(1000, 2000);
353 return 0;
355 EXPORT_SYMBOL(drm_dp_link_power_up);
358 * drm_dp_link_power_down() - power down a DisplayPort link
359 * @aux: DisplayPort AUX channel
360 * @link: pointer to a structure containing the link configuration
362 * Returns 0 on success or a negative error code on failure.
364 int drm_dp_link_power_down(struct drm_dp_aux *aux, struct drm_dp_link *link)
366 u8 value;
367 int err;
369 /* DP_SET_POWER register is only available on DPCD v1.1 and later */
370 if (link->revision < 0x11)
371 return 0;
373 err = drm_dp_dpcd_readb(aux, DP_SET_POWER, &value);
374 if (err < 0)
375 return err;
377 value &= ~DP_SET_POWER_MASK;
378 value |= DP_SET_POWER_D3;
380 err = drm_dp_dpcd_writeb(aux, DP_SET_POWER, value);
381 if (err < 0)
382 return err;
384 return 0;
386 EXPORT_SYMBOL(drm_dp_link_power_down);
389 * drm_dp_link_configure() - configure a DisplayPort link
390 * @aux: DisplayPort AUX channel
391 * @link: pointer to a structure containing the link configuration
393 * Returns 0 on success or a negative error code on failure.
395 int drm_dp_link_configure(struct drm_dp_aux *aux, struct drm_dp_link *link)
397 u8 values[2];
398 int err;
400 values[0] = drm_dp_link_rate_to_bw_code(link->rate);
401 values[1] = link->num_lanes;
403 if (link->capabilities & DP_LINK_CAP_ENHANCED_FRAMING)
404 values[1] |= DP_LANE_COUNT_ENHANCED_FRAME_EN;
406 err = drm_dp_dpcd_write(aux, DP_LINK_BW_SET, values, sizeof(values));
407 if (err < 0)
408 return err;
410 return 0;
412 EXPORT_SYMBOL(drm_dp_link_configure);
415 * I2C-over-AUX implementation
418 #if 0
419 static u32 drm_dp_i2c_functionality(struct i2c_adapter *adapter)
421 return I2C_FUNC_I2C | I2C_FUNC_SMBUS_EMUL |
422 I2C_FUNC_SMBUS_READ_BLOCK_DATA |
423 I2C_FUNC_SMBUS_BLOCK_PROC_CALL |
424 I2C_FUNC_10BIT_ADDR;
427 #define AUX_PRECHARGE_LEN 10 /* 10 to 16 */
428 #define AUX_SYNC_LEN (16 + 4) /* preamble + AUX_SYNC_END */
429 #define AUX_STOP_LEN 4
430 #define AUX_CMD_LEN 4
431 #define AUX_ADDRESS_LEN 20
432 #define AUX_REPLY_PAD_LEN 4
433 #define AUX_LENGTH_LEN 8
436 * Calculate the duration of the AUX request/reply in usec. Gives the
437 * "best" case estimate, ie. successful while as short as possible.
439 static int drm_dp_aux_req_duration(const struct drm_dp_aux_msg *msg)
441 int len = AUX_PRECHARGE_LEN + AUX_SYNC_LEN + AUX_STOP_LEN +
442 AUX_CMD_LEN + AUX_ADDRESS_LEN + AUX_LENGTH_LEN;
444 if ((msg->request & DP_AUX_I2C_READ) == 0)
445 len += msg->size * 8;
447 return len;
450 static int drm_dp_aux_reply_duration(const struct drm_dp_aux_msg *msg)
452 int len = AUX_PRECHARGE_LEN + AUX_SYNC_LEN + AUX_STOP_LEN +
453 AUX_CMD_LEN + AUX_REPLY_PAD_LEN;
456 * For read we expect what was asked. For writes there will
457 * be 0 or 1 data bytes. Assume 0 for the "best" case.
459 if (msg->request & DP_AUX_I2C_READ)
460 len += msg->size * 8;
462 return len;
465 #define I2C_START_LEN 1
466 #define I2C_STOP_LEN 1
467 #define I2C_ADDR_LEN 9 /* ADDRESS + R/W + ACK/NACK */
468 #define I2C_DATA_LEN 9 /* DATA + ACK/NACK */
471 * Calculate the length of the i2c transfer in usec, assuming
472 * the i2c bus speed is as specified. Gives the the "worst"
473 * case estimate, ie. successful while as long as possible.
474 * Doesn't account the the "MOT" bit, and instead assumes each
475 * message includes a START, ADDRESS and STOP. Neither does it
476 * account for additional random variables such as clock stretching.
478 static int drm_dp_i2c_msg_duration(const struct drm_dp_aux_msg *msg,
479 int i2c_speed_khz)
481 /* AUX bitrate is 1MHz, i2c bitrate as specified */
482 return DIV_ROUND_UP((I2C_START_LEN + I2C_ADDR_LEN +
483 msg->size * I2C_DATA_LEN +
484 I2C_STOP_LEN) * 1000, i2c_speed_khz);
488 * Deterine how many retries should be attempted to successfully transfer
489 * the specified message, based on the estimated durations of the
490 * i2c and AUX transfers.
492 static int drm_dp_i2c_retry_count(const struct drm_dp_aux_msg *msg,
493 int i2c_speed_khz)
495 int aux_time_us = drm_dp_aux_req_duration(msg) +
496 drm_dp_aux_reply_duration(msg);
497 int i2c_time_us = drm_dp_i2c_msg_duration(msg, i2c_speed_khz);
499 return DIV_ROUND_UP(i2c_time_us, aux_time_us + AUX_RETRY_INTERVAL);
503 * FIXME currently assumes 10 kHz as some real world devices seem
504 * to require it. We should query/set the speed via DPCD if supported.
506 static int dp_aux_i2c_speed_khz __read_mostly = 10;
507 module_param_unsafe(dp_aux_i2c_speed_khz, int, 0644);
508 MODULE_PARM_DESC(dp_aux_i2c_speed_khz,
509 "Assumed speed of the i2c bus in kHz, (1-400, default 10)");
512 * Transfer a single I2C-over-AUX message and handle various error conditions,
513 * retrying the transaction as appropriate. It is assumed that the
514 * aux->transfer function does not modify anything in the msg other than the
515 * reply field.
517 * Returns bytes transferred on success, or a negative error code on failure.
519 static int drm_dp_i2c_do_msg(struct drm_dp_aux *aux, struct drm_dp_aux_msg *msg)
521 unsigned int retry, defer_i2c;
522 int ret;
524 * DP1.2 sections 2.7.7.1.5.6.1 and 2.7.7.1.6.6.1: A DP Source device
525 * is required to retry at least seven times upon receiving AUX_DEFER
526 * before giving up the AUX transaction.
528 * We also try to account for the i2c bus speed.
530 int max_retries = max(7, drm_dp_i2c_retry_count(msg, dp_aux_i2c_speed_khz));
532 for (retry = 0, defer_i2c = 0; retry < (max_retries + defer_i2c); retry++) {
533 mutex_lock(&aux->hw_mutex);
534 ret = aux->transfer(aux, msg);
535 mutex_unlock(&aux->hw_mutex);
536 if (ret < 0) {
537 if (ret == -EBUSY)
538 continue;
540 DRM_DEBUG_KMS("transaction failed: %d\n", ret);
541 return ret;
545 switch (msg->reply & DP_AUX_NATIVE_REPLY_MASK) {
546 case DP_AUX_NATIVE_REPLY_ACK:
548 * For I2C-over-AUX transactions this isn't enough, we
549 * need to check for the I2C ACK reply.
551 break;
553 case DP_AUX_NATIVE_REPLY_NACK:
554 DRM_DEBUG_KMS("native nack (result=%d, size=%zu)\n", ret, msg->size);
555 return -EREMOTEIO;
557 case DP_AUX_NATIVE_REPLY_DEFER:
558 DRM_DEBUG_KMS("native defer\n");
560 * We could check for I2C bit rate capabilities and if
561 * available adjust this interval. We could also be
562 * more careful with DP-to-legacy adapters where a
563 * long legacy cable may force very low I2C bit rates.
565 * For now just defer for long enough to hopefully be
566 * safe for all use-cases.
568 usleep_range(AUX_RETRY_INTERVAL, AUX_RETRY_INTERVAL + 100);
569 continue;
571 default:
572 DRM_ERROR("invalid native reply %#04x\n", msg->reply);
573 return -EREMOTEIO;
576 switch (msg->reply & DP_AUX_I2C_REPLY_MASK) {
577 case DP_AUX_I2C_REPLY_ACK:
579 * Both native ACK and I2C ACK replies received. We
580 * can assume the transfer was successful.
582 return ret;
584 case DP_AUX_I2C_REPLY_NACK:
585 DRM_DEBUG_KMS("I2C nack (result=%d, size=%zu\n", ret, msg->size);
586 aux->i2c_nack_count++;
587 return -EREMOTEIO;
589 case DP_AUX_I2C_REPLY_DEFER:
590 DRM_DEBUG_KMS("I2C defer\n");
591 /* DP Compliance Test 4.2.2.5 Requirement:
592 * Must have at least 7 retries for I2C defers on the
593 * transaction to pass this test
595 aux->i2c_defer_count++;
596 if (defer_i2c < 7)
597 defer_i2c++;
598 usleep_range(AUX_RETRY_INTERVAL, AUX_RETRY_INTERVAL + 100);
599 continue;
601 default:
602 DRM_ERROR("invalid I2C reply %#04x\n", msg->reply);
603 return -EREMOTEIO;
607 DRM_DEBUG_KMS("too many retries, giving up\n");
608 return -EREMOTEIO;
612 * Keep retrying drm_dp_i2c_do_msg until all data has been transferred.
614 * Returns an error code on failure, or a recommended transfer size on success.
616 static int drm_dp_i2c_drain_msg(struct drm_dp_aux *aux, struct drm_dp_aux_msg *orig_msg)
618 int err, ret = orig_msg->size;
619 struct drm_dp_aux_msg msg = *orig_msg;
621 while (msg.size > 0) {
622 err = drm_dp_i2c_do_msg(aux, &msg);
623 if (err <= 0)
624 return err == 0 ? -EPROTO : err;
626 if (err < msg.size && err < ret) {
627 DRM_DEBUG_KMS("Partial I2C reply: requested %zu bytes got %d bytes\n",
628 msg.size, err);
629 ret = err;
632 msg.size -= err;
633 msg.buffer += err;
636 return ret;
640 * Bizlink designed DP->DVI-D Dual Link adapters require the I2C over AUX
641 * packets to be as large as possible. If not, the I2C transactions never
642 * succeed. Hence the default is maximum.
644 static int dp_aux_i2c_transfer_size __read_mostly = DP_AUX_MAX_PAYLOAD_BYTES;
645 module_param_unsafe(dp_aux_i2c_transfer_size, int, 0644);
646 MODULE_PARM_DESC(dp_aux_i2c_transfer_size,
647 "Number of bytes to transfer in a single I2C over DP AUX CH message, (1-16, default 16)");
649 static int drm_dp_i2c_xfer(struct i2c_adapter *adapter, struct i2c_msg *msgs,
650 int num)
652 struct drm_dp_aux *aux = adapter->algo_data;
653 unsigned int i, j;
654 unsigned transfer_size;
655 struct drm_dp_aux_msg msg;
656 int err = 0;
658 dp_aux_i2c_transfer_size = clamp(dp_aux_i2c_transfer_size, 1, DP_AUX_MAX_PAYLOAD_BYTES);
660 memset(&msg, 0, sizeof(msg));
662 for (i = 0; i < num; i++) {
663 msg.address = msgs[i].addr;
664 msg.request = (msgs[i].flags & I2C_M_RD) ?
665 DP_AUX_I2C_READ :
666 DP_AUX_I2C_WRITE;
667 msg.request |= DP_AUX_I2C_MOT;
668 /* Send a bare address packet to start the transaction.
669 * Zero sized messages specify an address only (bare
670 * address) transaction.
672 msg.buffer = NULL;
673 msg.size = 0;
674 err = drm_dp_i2c_do_msg(aux, &msg);
675 if (err < 0)
676 break;
677 /* We want each transaction to be as large as possible, but
678 * we'll go to smaller sizes if the hardware gives us a
679 * short reply.
681 transfer_size = dp_aux_i2c_transfer_size;
682 for (j = 0; j < msgs[i].len; j += msg.size) {
683 msg.buffer = msgs[i].buf + j;
684 msg.size = min(transfer_size, msgs[i].len - j);
686 err = drm_dp_i2c_drain_msg(aux, &msg);
687 if (err < 0)
688 break;
689 transfer_size = err;
691 if (err < 0)
692 break;
694 if (err >= 0)
695 err = num;
696 /* Send a bare address packet to close out the transaction.
697 * Zero sized messages specify an address only (bare
698 * address) transaction.
700 msg.request &= ~DP_AUX_I2C_MOT;
701 msg.buffer = NULL;
702 msg.size = 0;
703 (void)drm_dp_i2c_do_msg(aux, &msg);
705 return err;
708 static const struct i2c_algorithm drm_dp_i2c_algo = {
709 .functionality = drm_dp_i2c_functionality,
710 .master_xfer = drm_dp_i2c_xfer,
714 * drm_dp_aux_register() - initialise and register aux channel
715 * @aux: DisplayPort AUX channel
717 * Returns 0 on success or a negative error code on failure.
719 int drm_dp_aux_register(struct drm_dp_aux *aux)
721 lockinit(&aux->hw_mutex, "ahm", 0, LK_CANRECURSE);
723 aux->ddc.algo = &drm_dp_i2c_algo;
724 aux->ddc.algo_data = aux;
725 aux->ddc.retries = 3;
727 aux->ddc.class = I2C_CLASS_DDC;
728 aux->ddc.owner = THIS_MODULE;
729 aux->ddc.dev.parent = aux->dev;
730 aux->ddc.dev.of_node = aux->dev->of_node;
732 strlcpy(aux->ddc.name, aux->name ? aux->name : dev_name(aux->dev),
733 sizeof(aux->ddc.name));
735 return i2c_add_adapter(&aux->ddc);
737 EXPORT_SYMBOL(drm_dp_aux_register);
738 #endif
741 * drm_dp_aux_unregister() - unregister an AUX adapter
742 * @aux: DisplayPort AUX channel
744 void drm_dp_aux_unregister(struct drm_dp_aux *aux)
746 #if 0
747 i2c_del_adapter(&aux->ddc);
748 #endif
750 EXPORT_SYMBOL(drm_dp_aux_unregister);