usb-storage: redo incorrect reads
[zen-stable.git] / drivers / gpu / drm / nouveau / nouveau_dp.c
blob7beb82a0315d73ec5aae3a4848e0d92e4d4d36e6
1 /*
2 * Copyright 2009 Red Hat Inc.
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
11 * The above copyright notice and this permission notice shall be included in
12 * all copies or substantial portions of the Software.
14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
17 * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
18 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
19 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
20 * OTHER DEALINGS IN THE SOFTWARE.
22 * Authors: Ben Skeggs
25 #include "drmP.h"
27 #include "nouveau_drv.h"
28 #include "nouveau_i2c.h"
29 #include "nouveau_connector.h"
30 #include "nouveau_encoder.h"
32 static int
33 auxch_rd(struct drm_encoder *encoder, int address, uint8_t *buf, int size)
35 struct drm_device *dev = encoder->dev;
36 struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder);
37 struct nouveau_i2c_chan *auxch;
38 int ret;
40 auxch = nouveau_i2c_find(dev, nv_encoder->dcb->i2c_index);
41 if (!auxch)
42 return -ENODEV;
44 ret = nouveau_dp_auxch(auxch, 9, address, buf, size);
45 if (ret)
46 return ret;
48 return 0;
51 static int
52 auxch_wr(struct drm_encoder *encoder, int address, uint8_t *buf, int size)
54 struct drm_device *dev = encoder->dev;
55 struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder);
56 struct nouveau_i2c_chan *auxch;
57 int ret;
59 auxch = nouveau_i2c_find(dev, nv_encoder->dcb->i2c_index);
60 if (!auxch)
61 return -ENODEV;
63 ret = nouveau_dp_auxch(auxch, 8, address, buf, size);
64 return ret;
67 static int
68 nouveau_dp_lane_count_set(struct drm_encoder *encoder, uint8_t cmd)
70 struct drm_device *dev = encoder->dev;
71 struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder);
72 uint32_t tmp;
73 int or = nv_encoder->or, link = !(nv_encoder->dcb->sorconf.link & 1);
75 tmp = nv_rd32(dev, NV50_SOR_DP_CTRL(or, link));
76 tmp &= ~(NV50_SOR_DP_CTRL_ENHANCED_FRAME_ENABLED |
77 NV50_SOR_DP_CTRL_LANE_MASK);
78 tmp |= ((1 << (cmd & DP_LANE_COUNT_MASK)) - 1) << 16;
79 if (cmd & DP_LANE_COUNT_ENHANCED_FRAME_EN)
80 tmp |= NV50_SOR_DP_CTRL_ENHANCED_FRAME_ENABLED;
81 nv_wr32(dev, NV50_SOR_DP_CTRL(or, link), tmp);
83 return auxch_wr(encoder, DP_LANE_COUNT_SET, &cmd, 1);
86 static int
87 nouveau_dp_link_bw_set(struct drm_encoder *encoder, uint8_t cmd)
89 struct drm_device *dev = encoder->dev;
90 struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder);
91 uint32_t tmp;
92 int reg = 0x614300 + (nv_encoder->or * 0x800);
94 tmp = nv_rd32(dev, reg);
95 tmp &= 0xfff3ffff;
96 if (cmd == DP_LINK_BW_2_7)
97 tmp |= 0x00040000;
98 nv_wr32(dev, reg, tmp);
100 return auxch_wr(encoder, DP_LINK_BW_SET, &cmd, 1);
103 static int
104 nouveau_dp_link_train_set(struct drm_encoder *encoder, int pattern)
106 struct drm_device *dev = encoder->dev;
107 struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder);
108 uint32_t tmp;
109 uint8_t cmd;
110 int or = nv_encoder->or, link = !(nv_encoder->dcb->sorconf.link & 1);
111 int ret;
113 tmp = nv_rd32(dev, NV50_SOR_DP_CTRL(or, link));
114 tmp &= ~NV50_SOR_DP_CTRL_TRAINING_PATTERN;
115 tmp |= (pattern << 24);
116 nv_wr32(dev, NV50_SOR_DP_CTRL(or, link), tmp);
118 ret = auxch_rd(encoder, DP_TRAINING_PATTERN_SET, &cmd, 1);
119 if (ret)
120 return ret;
121 cmd &= ~DP_TRAINING_PATTERN_MASK;
122 cmd |= (pattern & DP_TRAINING_PATTERN_MASK);
123 return auxch_wr(encoder, DP_TRAINING_PATTERN_SET, &cmd, 1);
126 static int
127 nouveau_dp_max_voltage_swing(struct drm_encoder *encoder)
129 struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder);
130 struct drm_device *dev = encoder->dev;
131 struct bit_displayport_encoder_table_entry *dpse;
132 struct bit_displayport_encoder_table *dpe;
133 int i, dpe_headerlen, max_vs = 0;
135 dpe = nouveau_bios_dp_table(dev, nv_encoder->dcb, &dpe_headerlen);
136 if (!dpe)
137 return false;
138 dpse = (void *)((char *)dpe + dpe_headerlen);
140 for (i = 0; i < dpe_headerlen; i++, dpse++) {
141 if (dpse->vs_level > max_vs)
142 max_vs = dpse->vs_level;
145 return max_vs;
148 static int
149 nouveau_dp_max_pre_emphasis(struct drm_encoder *encoder, int vs)
151 struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder);
152 struct drm_device *dev = encoder->dev;
153 struct bit_displayport_encoder_table_entry *dpse;
154 struct bit_displayport_encoder_table *dpe;
155 int i, dpe_headerlen, max_pre = 0;
157 dpe = nouveau_bios_dp_table(dev, nv_encoder->dcb, &dpe_headerlen);
158 if (!dpe)
159 return false;
160 dpse = (void *)((char *)dpe + dpe_headerlen);
162 for (i = 0; i < dpe_headerlen; i++, dpse++) {
163 if (dpse->vs_level != vs)
164 continue;
166 if (dpse->pre_level > max_pre)
167 max_pre = dpse->pre_level;
170 return max_pre;
173 static bool
174 nouveau_dp_link_train_adjust(struct drm_encoder *encoder, uint8_t *config)
176 struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder);
177 struct drm_device *dev = encoder->dev;
178 struct bit_displayport_encoder_table *dpe;
179 int ret, i, dpe_headerlen, vs = 0, pre = 0;
180 uint8_t request[2];
182 dpe = nouveau_bios_dp_table(dev, nv_encoder->dcb, &dpe_headerlen);
183 if (!dpe)
184 return false;
186 ret = auxch_rd(encoder, DP_ADJUST_REQUEST_LANE0_1, request, 2);
187 if (ret)
188 return false;
190 NV_DEBUG_KMS(dev, "\t\tadjust 0x%02x 0x%02x\n", request[0], request[1]);
192 /* Keep all lanes at the same level.. */
193 for (i = 0; i < nv_encoder->dp.link_nr; i++) {
194 int lane_req = (request[i >> 1] >> ((i & 1) << 2)) & 0xf;
195 int lane_vs = lane_req & 3;
196 int lane_pre = (lane_req >> 2) & 3;
198 if (lane_vs > vs)
199 vs = lane_vs;
200 if (lane_pre > pre)
201 pre = lane_pre;
204 if (vs >= nouveau_dp_max_voltage_swing(encoder)) {
205 vs = nouveau_dp_max_voltage_swing(encoder);
206 vs |= 4;
209 if (pre >= nouveau_dp_max_pre_emphasis(encoder, vs & 3)) {
210 pre = nouveau_dp_max_pre_emphasis(encoder, vs & 3);
211 pre |= 4;
214 /* Update the configuration for all lanes.. */
215 for (i = 0; i < nv_encoder->dp.link_nr; i++)
216 config[i] = (pre << 3) | vs;
218 return true;
221 static bool
222 nouveau_dp_link_train_commit(struct drm_encoder *encoder, uint8_t *config)
224 struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder);
225 struct drm_device *dev = encoder->dev;
226 struct bit_displayport_encoder_table_entry *dpse;
227 struct bit_displayport_encoder_table *dpe;
228 int or = nv_encoder->or, link = !(nv_encoder->dcb->sorconf.link & 1);
229 int dpe_headerlen, ret, i;
231 NV_DEBUG_KMS(dev, "\t\tconfig 0x%02x 0x%02x 0x%02x 0x%02x\n",
232 config[0], config[1], config[2], config[3]);
234 dpe = nouveau_bios_dp_table(dev, nv_encoder->dcb, &dpe_headerlen);
235 if (!dpe)
236 return false;
237 dpse = (void *)((char *)dpe + dpe_headerlen);
239 for (i = 0; i < dpe->record_nr; i++, dpse++) {
240 if (dpse->vs_level == (config[0] & 3) &&
241 dpse->pre_level == ((config[0] >> 3) & 3))
242 break;
244 BUG_ON(i == dpe->record_nr);
246 for (i = 0; i < nv_encoder->dp.link_nr; i++) {
247 const int shift[4] = { 16, 8, 0, 24 };
248 uint32_t mask = 0xff << shift[i];
249 uint32_t reg0, reg1, reg2;
251 reg0 = nv_rd32(dev, NV50_SOR_DP_UNK118(or, link)) & ~mask;
252 reg0 |= (dpse->reg0 << shift[i]);
253 reg1 = nv_rd32(dev, NV50_SOR_DP_UNK120(or, link)) & ~mask;
254 reg1 |= (dpse->reg1 << shift[i]);
255 reg2 = nv_rd32(dev, NV50_SOR_DP_UNK130(or, link)) & 0xffff00ff;
256 reg2 |= (dpse->reg2 << 8);
257 nv_wr32(dev, NV50_SOR_DP_UNK118(or, link), reg0);
258 nv_wr32(dev, NV50_SOR_DP_UNK120(or, link), reg1);
259 nv_wr32(dev, NV50_SOR_DP_UNK130(or, link), reg2);
262 ret = auxch_wr(encoder, DP_TRAINING_LANE0_SET, config, 4);
263 if (ret)
264 return false;
266 return true;
269 bool
270 nouveau_dp_link_train(struct drm_encoder *encoder)
272 struct drm_device *dev = encoder->dev;
273 struct drm_nouveau_private *dev_priv = dev->dev_private;
274 struct nouveau_gpio_engine *pgpio = &dev_priv->engine.gpio;
275 struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder);
276 struct nouveau_connector *nv_connector;
277 struct bit_displayport_encoder_table *dpe;
278 int dpe_headerlen;
279 uint8_t config[4], status[3];
280 bool cr_done, cr_max_vs, eq_done, hpd_state;
281 int ret = 0, i, tries, voltage;
283 NV_DEBUG_KMS(dev, "link training!!\n");
285 nv_connector = nouveau_encoder_connector_get(nv_encoder);
286 if (!nv_connector)
287 return false;
289 dpe = nouveau_bios_dp_table(dev, nv_encoder->dcb, &dpe_headerlen);
290 if (!dpe) {
291 NV_ERROR(dev, "SOR-%d: no DP encoder table!\n", nv_encoder->or);
292 return false;
295 /* disable hotplug detect, this flips around on some panels during
296 * link training.
298 hpd_state = pgpio->irq_enable(dev, nv_connector->dcb->gpio_tag, false);
300 if (dpe->script0) {
301 NV_DEBUG_KMS(dev, "SOR-%d: running DP script 0\n", nv_encoder->or);
302 nouveau_bios_run_init_table(dev, le16_to_cpu(dpe->script0),
303 nv_encoder->dcb);
306 train:
307 cr_done = eq_done = false;
309 /* set link configuration */
310 NV_DEBUG_KMS(dev, "\tbegin train: bw %d, lanes %d\n",
311 nv_encoder->dp.link_bw, nv_encoder->dp.link_nr);
313 ret = nouveau_dp_link_bw_set(encoder, nv_encoder->dp.link_bw);
314 if (ret)
315 return false;
317 config[0] = nv_encoder->dp.link_nr;
318 if (nv_encoder->dp.dpcd_version >= 0x11 &&
319 nv_encoder->dp.enhanced_frame)
320 config[0] |= DP_LANE_COUNT_ENHANCED_FRAME_EN;
322 ret = nouveau_dp_lane_count_set(encoder, config[0]);
323 if (ret)
324 return false;
326 /* clock recovery */
327 NV_DEBUG_KMS(dev, "\tbegin cr\n");
328 ret = nouveau_dp_link_train_set(encoder, DP_TRAINING_PATTERN_1);
329 if (ret)
330 goto stop;
332 tries = 0;
333 voltage = -1;
334 memset(config, 0x00, sizeof(config));
335 for (;;) {
336 if (!nouveau_dp_link_train_commit(encoder, config))
337 break;
339 udelay(100);
341 ret = auxch_rd(encoder, DP_LANE0_1_STATUS, status, 2);
342 if (ret)
343 break;
344 NV_DEBUG_KMS(dev, "\t\tstatus: 0x%02x 0x%02x\n",
345 status[0], status[1]);
347 cr_done = true;
348 cr_max_vs = false;
349 for (i = 0; i < nv_encoder->dp.link_nr; i++) {
350 int lane = (status[i >> 1] >> ((i & 1) * 4)) & 0xf;
352 if (!(lane & DP_LANE_CR_DONE)) {
353 cr_done = false;
354 if (config[i] & DP_TRAIN_MAX_PRE_EMPHASIS_REACHED)
355 cr_max_vs = true;
356 break;
360 if ((config[0] & DP_TRAIN_VOLTAGE_SWING_MASK) != voltage) {
361 voltage = config[0] & DP_TRAIN_VOLTAGE_SWING_MASK;
362 tries = 0;
365 if (cr_done || cr_max_vs || (++tries == 5))
366 break;
368 if (!nouveau_dp_link_train_adjust(encoder, config))
369 break;
372 if (!cr_done)
373 goto stop;
375 /* channel equalisation */
376 NV_DEBUG_KMS(dev, "\tbegin eq\n");
377 ret = nouveau_dp_link_train_set(encoder, DP_TRAINING_PATTERN_2);
378 if (ret)
379 goto stop;
381 for (tries = 0; tries <= 5; tries++) {
382 udelay(400);
384 ret = auxch_rd(encoder, DP_LANE0_1_STATUS, status, 3);
385 if (ret)
386 break;
387 NV_DEBUG_KMS(dev, "\t\tstatus: 0x%02x 0x%02x\n",
388 status[0], status[1]);
390 eq_done = true;
391 if (!(status[2] & DP_INTERLANE_ALIGN_DONE))
392 eq_done = false;
394 for (i = 0; eq_done && i < nv_encoder->dp.link_nr; i++) {
395 int lane = (status[i >> 1] >> ((i & 1) * 4)) & 0xf;
397 if (!(lane & DP_LANE_CR_DONE)) {
398 cr_done = false;
399 break;
402 if (!(lane & DP_LANE_CHANNEL_EQ_DONE) ||
403 !(lane & DP_LANE_SYMBOL_LOCKED)) {
404 eq_done = false;
405 break;
409 if (eq_done || !cr_done)
410 break;
412 if (!nouveau_dp_link_train_adjust(encoder, config) ||
413 !nouveau_dp_link_train_commit(encoder, config))
414 break;
417 stop:
418 /* end link training */
419 ret = nouveau_dp_link_train_set(encoder, DP_TRAINING_PATTERN_DISABLE);
420 if (ret)
421 return false;
423 /* retry at a lower setting, if possible */
424 if (!ret && !(eq_done && cr_done)) {
425 NV_DEBUG_KMS(dev, "\twe failed\n");
426 if (nv_encoder->dp.link_bw != DP_LINK_BW_1_62) {
427 NV_DEBUG_KMS(dev, "retry link training at low rate\n");
428 nv_encoder->dp.link_bw = DP_LINK_BW_1_62;
429 goto train;
433 if (dpe->script1) {
434 NV_DEBUG_KMS(dev, "SOR-%d: running DP script 1\n", nv_encoder->or);
435 nouveau_bios_run_init_table(dev, le16_to_cpu(dpe->script1),
436 nv_encoder->dcb);
439 /* re-enable hotplug detect */
440 pgpio->irq_enable(dev, nv_connector->dcb->gpio_tag, hpd_state);
442 return eq_done;
445 bool
446 nouveau_dp_detect(struct drm_encoder *encoder)
448 struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder);
449 struct drm_device *dev = encoder->dev;
450 uint8_t dpcd[4];
451 int ret;
453 ret = auxch_rd(encoder, 0x0000, dpcd, 4);
454 if (ret)
455 return false;
457 NV_DEBUG_KMS(dev, "encoder: link_bw %d, link_nr %d\n"
458 "display: link_bw %d, link_nr %d version 0x%02x\n",
459 nv_encoder->dcb->dpconf.link_bw,
460 nv_encoder->dcb->dpconf.link_nr,
461 dpcd[1], dpcd[2] & 0x0f, dpcd[0]);
463 nv_encoder->dp.dpcd_version = dpcd[0];
465 nv_encoder->dp.link_bw = dpcd[1];
466 if (nv_encoder->dp.link_bw != DP_LINK_BW_1_62 &&
467 !nv_encoder->dcb->dpconf.link_bw)
468 nv_encoder->dp.link_bw = DP_LINK_BW_1_62;
470 nv_encoder->dp.link_nr = dpcd[2] & DP_MAX_LANE_COUNT_MASK;
471 if (nv_encoder->dp.link_nr > nv_encoder->dcb->dpconf.link_nr)
472 nv_encoder->dp.link_nr = nv_encoder->dcb->dpconf.link_nr;
474 nv_encoder->dp.enhanced_frame = (dpcd[2] & DP_ENHANCED_FRAME_CAP);
476 return true;
480 nouveau_dp_auxch(struct nouveau_i2c_chan *auxch, int cmd, int addr,
481 uint8_t *data, int data_nr)
483 struct drm_device *dev = auxch->dev;
484 uint32_t tmp, ctrl, stat = 0, data32[4] = {};
485 int ret = 0, i, index = auxch->rd;
487 NV_DEBUG_KMS(dev, "ch %d cmd %d addr 0x%x len %d\n", index, cmd, addr, data_nr);
489 tmp = nv_rd32(dev, NV50_AUXCH_CTRL(auxch->rd));
490 nv_wr32(dev, NV50_AUXCH_CTRL(auxch->rd), tmp | 0x00100000);
491 tmp = nv_rd32(dev, NV50_AUXCH_CTRL(auxch->rd));
492 if (!(tmp & 0x01000000)) {
493 NV_ERROR(dev, "expected bit 24 == 1, got 0x%08x\n", tmp);
494 ret = -EIO;
495 goto out;
498 for (i = 0; i < 3; i++) {
499 tmp = nv_rd32(dev, NV50_AUXCH_STAT(auxch->rd));
500 if (tmp & NV50_AUXCH_STAT_STATE_READY)
501 break;
502 udelay(100);
505 if (i == 3) {
506 ret = -EBUSY;
507 goto out;
510 if (!(cmd & 1)) {
511 memcpy(data32, data, data_nr);
512 for (i = 0; i < 4; i++) {
513 NV_DEBUG_KMS(dev, "wr %d: 0x%08x\n", i, data32[i]);
514 nv_wr32(dev, NV50_AUXCH_DATA_OUT(index, i), data32[i]);
518 nv_wr32(dev, NV50_AUXCH_ADDR(index), addr);
519 ctrl = nv_rd32(dev, NV50_AUXCH_CTRL(index));
520 ctrl &= ~(NV50_AUXCH_CTRL_CMD | NV50_AUXCH_CTRL_LEN);
521 ctrl |= (cmd << NV50_AUXCH_CTRL_CMD_SHIFT);
522 ctrl |= ((data_nr - 1) << NV50_AUXCH_CTRL_LEN_SHIFT);
524 for (i = 0; i < 16; i++) {
525 nv_wr32(dev, NV50_AUXCH_CTRL(index), ctrl | 0x80000000);
526 nv_wr32(dev, NV50_AUXCH_CTRL(index), ctrl);
527 nv_wr32(dev, NV50_AUXCH_CTRL(index), ctrl | 0x00010000);
528 if (!nv_wait(dev, NV50_AUXCH_CTRL(index),
529 0x00010000, 0x00000000)) {
530 NV_ERROR(dev, "expected bit 16 == 0, got 0x%08x\n",
531 nv_rd32(dev, NV50_AUXCH_CTRL(index)));
532 ret = -EBUSY;
533 goto out;
536 udelay(400);
538 stat = nv_rd32(dev, NV50_AUXCH_STAT(index));
539 if ((stat & NV50_AUXCH_STAT_REPLY_AUX) !=
540 NV50_AUXCH_STAT_REPLY_AUX_DEFER)
541 break;
544 if (i == 16) {
545 NV_ERROR(dev, "auxch DEFER too many times, bailing\n");
546 ret = -EREMOTEIO;
547 goto out;
550 if (cmd & 1) {
551 if ((stat & NV50_AUXCH_STAT_COUNT) != data_nr) {
552 ret = -EREMOTEIO;
553 goto out;
556 for (i = 0; i < 4; i++) {
557 data32[i] = nv_rd32(dev, NV50_AUXCH_DATA_IN(index, i));
558 NV_DEBUG_KMS(dev, "rd %d: 0x%08x\n", i, data32[i]);
560 memcpy(data, data32, data_nr);
563 out:
564 tmp = nv_rd32(dev, NV50_AUXCH_CTRL(auxch->rd));
565 nv_wr32(dev, NV50_AUXCH_CTRL(auxch->rd), tmp & ~0x00100000);
566 tmp = nv_rd32(dev, NV50_AUXCH_CTRL(auxch->rd));
567 if (tmp & 0x01000000) {
568 NV_ERROR(dev, "expected bit 24 == 0, got 0x%08x\n", tmp);
569 ret = -EIO;
572 udelay(400);
574 return ret ? ret : (stat & NV50_AUXCH_STAT_REPLY);
577 static int
578 nouveau_dp_i2c_xfer(struct i2c_adapter *adap, struct i2c_msg *msgs, int num)
580 struct nouveau_i2c_chan *auxch = (struct nouveau_i2c_chan *)adap;
581 struct drm_device *dev = auxch->dev;
582 struct i2c_msg *msg = msgs;
583 int ret, mcnt = num;
585 while (mcnt--) {
586 u8 remaining = msg->len;
587 u8 *ptr = msg->buf;
589 while (remaining) {
590 u8 cnt = (remaining > 16) ? 16 : remaining;
591 u8 cmd;
593 if (msg->flags & I2C_M_RD)
594 cmd = AUX_I2C_READ;
595 else
596 cmd = AUX_I2C_WRITE;
598 if (mcnt || remaining > 16)
599 cmd |= AUX_I2C_MOT;
601 ret = nouveau_dp_auxch(auxch, cmd, msg->addr, ptr, cnt);
602 if (ret < 0)
603 return ret;
605 switch (ret & NV50_AUXCH_STAT_REPLY_I2C) {
606 case NV50_AUXCH_STAT_REPLY_I2C_ACK:
607 break;
608 case NV50_AUXCH_STAT_REPLY_I2C_NACK:
609 return -EREMOTEIO;
610 case NV50_AUXCH_STAT_REPLY_I2C_DEFER:
611 udelay(100);
612 continue;
613 default:
614 NV_ERROR(dev, "bad auxch reply: 0x%08x\n", ret);
615 return -EREMOTEIO;
618 ptr += cnt;
619 remaining -= cnt;
622 msg++;
625 return num;
628 static u32
629 nouveau_dp_i2c_func(struct i2c_adapter *adap)
631 return I2C_FUNC_I2C | I2C_FUNC_SMBUS_EMUL;
634 const struct i2c_algorithm nouveau_dp_i2c_algo = {
635 .master_xfer = nouveau_dp_i2c_xfer,
636 .functionality = nouveau_dp_i2c_func