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.
27 #include "nouveau_drv.h"
28 #include "nouveau_i2c.h"
29 #include "nouveau_connector.h"
30 #include "nouveau_encoder.h"
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
;
40 auxch
= nouveau_i2c_find(dev
, nv_encoder
->dcb
->i2c_index
);
44 ret
= nouveau_dp_auxch(auxch
, 9, address
, buf
, size
);
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
;
59 auxch
= nouveau_i2c_find(dev
, nv_encoder
->dcb
->i2c_index
);
63 ret
= nouveau_dp_auxch(auxch
, 8, address
, buf
, size
);
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
);
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);
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
);
92 int reg
= 0x614300 + (nv_encoder
->or * 0x800);
94 tmp
= nv_rd32(dev
, reg
);
96 if (cmd
== DP_LINK_BW_2_7
)
98 nv_wr32(dev
, reg
, tmp
);
100 return auxch_wr(encoder
, DP_LINK_BW_SET
, &cmd
, 1);
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
);
110 int or = nv_encoder
->or, link
= !(nv_encoder
->dcb
->sorconf
.link
& 1);
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);
121 cmd
&= ~DP_TRAINING_PATTERN_MASK
;
122 cmd
|= (pattern
& DP_TRAINING_PATTERN_MASK
);
123 return auxch_wr(encoder
, DP_TRAINING_PATTERN_SET
, &cmd
, 1);
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
);
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
;
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
);
160 dpse
= (void *)((char *)dpe
+ dpe_headerlen
);
162 for (i
= 0; i
< dpe_headerlen
; i
++, dpse
++) {
163 if (dpse
->vs_level
!= vs
)
166 if (dpse
->pre_level
> max_pre
)
167 max_pre
= dpse
->pre_level
;
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;
182 dpe
= nouveau_bios_dp_table(dev
, nv_encoder
->dcb
, &dpe_headerlen
);
186 ret
= auxch_rd(encoder
, DP_ADJUST_REQUEST_LANE0_1
, request
, 2);
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;
204 if (vs
>= nouveau_dp_max_voltage_swing(encoder
)) {
205 vs
= nouveau_dp_max_voltage_swing(encoder
);
209 if (pre
>= nouveau_dp_max_pre_emphasis(encoder
, vs
& 3)) {
210 pre
= nouveau_dp_max_pre_emphasis(encoder
, vs
& 3);
214 /* Update the configuration for all lanes.. */
215 for (i
= 0; i
< nv_encoder
->dp
.link_nr
; i
++)
216 config
[i
] = (pre
<< 3) | vs
;
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
);
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))
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);
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
;
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
);
289 dpe
= nouveau_bios_dp_table(dev
, nv_encoder
->dcb
, &dpe_headerlen
);
291 NV_ERROR(dev
, "SOR-%d: no DP encoder table!\n", nv_encoder
->or);
295 /* disable hotplug detect, this flips around on some panels during
298 hpd_state
= pgpio
->irq_enable(dev
, nv_connector
->dcb
->gpio_tag
, false);
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
),
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
);
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]);
327 NV_DEBUG_KMS(dev
, "\tbegin cr\n");
328 ret
= nouveau_dp_link_train_set(encoder
, DP_TRAINING_PATTERN_1
);
334 memset(config
, 0x00, sizeof(config
));
336 if (!nouveau_dp_link_train_commit(encoder
, config
))
341 ret
= auxch_rd(encoder
, DP_LANE0_1_STATUS
, status
, 2);
344 NV_DEBUG_KMS(dev
, "\t\tstatus: 0x%02x 0x%02x\n",
345 status
[0], status
[1]);
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
)) {
354 if (config
[i
] & DP_TRAIN_MAX_PRE_EMPHASIS_REACHED
)
360 if ((config
[0] & DP_TRAIN_VOLTAGE_SWING_MASK
) != voltage
) {
361 voltage
= config
[0] & DP_TRAIN_VOLTAGE_SWING_MASK
;
365 if (cr_done
|| cr_max_vs
|| (++tries
== 5))
368 if (!nouveau_dp_link_train_adjust(encoder
, config
))
375 /* channel equalisation */
376 NV_DEBUG_KMS(dev
, "\tbegin eq\n");
377 ret
= nouveau_dp_link_train_set(encoder
, DP_TRAINING_PATTERN_2
);
381 for (tries
= 0; tries
<= 5; tries
++) {
384 ret
= auxch_rd(encoder
, DP_LANE0_1_STATUS
, status
, 3);
387 NV_DEBUG_KMS(dev
, "\t\tstatus: 0x%02x 0x%02x\n",
388 status
[0], status
[1]);
391 if (!(status
[2] & DP_INTERLANE_ALIGN_DONE
))
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
)) {
402 if (!(lane
& DP_LANE_CHANNEL_EQ_DONE
) ||
403 !(lane
& DP_LANE_SYMBOL_LOCKED
)) {
409 if (eq_done
|| !cr_done
)
412 if (!nouveau_dp_link_train_adjust(encoder
, config
) ||
413 !nouveau_dp_link_train_commit(encoder
, config
))
418 /* end link training */
419 ret
= nouveau_dp_link_train_set(encoder
, DP_TRAINING_PATTERN_DISABLE
);
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
;
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
),
439 /* re-enable hotplug detect */
440 pgpio
->irq_enable(dev
, nv_connector
->dcb
->gpio_tag
, hpd_state
);
446 nouveau_dp_detect(struct drm_encoder
*encoder
)
448 struct nouveau_encoder
*nv_encoder
= nouveau_encoder(encoder
);
449 struct drm_device
*dev
= encoder
->dev
;
453 ret
= auxch_rd(encoder
, 0x0000, dpcd
, 4);
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
);
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
);
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
)
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
)));
538 stat
= nv_rd32(dev
, NV50_AUXCH_STAT(index
));
539 if ((stat
& NV50_AUXCH_STAT_REPLY_AUX
) !=
540 NV50_AUXCH_STAT_REPLY_AUX_DEFER
)
545 NV_ERROR(dev
, "auxch DEFER too many times, bailing\n");
551 if ((stat
& NV50_AUXCH_STAT_COUNT
) != data_nr
) {
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
);
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
);
574 return ret
? ret
: (stat
& NV50_AUXCH_STAT_REPLY
);
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
;
586 u8 remaining
= msg
->len
;
590 u8 cnt
= (remaining
> 16) ? 16 : remaining
;
593 if (msg
->flags
& I2C_M_RD
)
598 if (mcnt
|| remaining
> 16)
601 ret
= nouveau_dp_auxch(auxch
, cmd
, msg
->addr
, ptr
, cnt
);
605 switch (ret
& NV50_AUXCH_STAT_REPLY_I2C
) {
606 case NV50_AUXCH_STAT_REPLY_I2C_ACK
:
608 case NV50_AUXCH_STAT_REPLY_I2C_NACK
:
610 case NV50_AUXCH_STAT_REPLY_I2C_DEFER
:
614 NV_ERROR(dev
, "bad auxch reply: 0x%08x\n", ret
);
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