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.
26 #include "nouveau_drv.h"
27 #include "nouveau_i2c.h"
28 #include "nouveau_encoder.h"
31 auxch_rd(struct drm_encoder
*encoder
, int address
, uint8_t *buf
, int size
)
33 struct drm_device
*dev
= encoder
->dev
;
34 struct nouveau_encoder
*nv_encoder
= nouveau_encoder(encoder
);
35 struct nouveau_i2c_chan
*auxch
;
38 auxch
= nouveau_i2c_find(dev
, nv_encoder
->dcb
->i2c_index
);
42 ret
= nouveau_dp_auxch(auxch
, 9, address
, buf
, size
);
50 auxch_wr(struct drm_encoder
*encoder
, int address
, uint8_t *buf
, int size
)
52 struct drm_device
*dev
= encoder
->dev
;
53 struct nouveau_encoder
*nv_encoder
= nouveau_encoder(encoder
);
54 struct nouveau_i2c_chan
*auxch
;
57 auxch
= nouveau_i2c_find(dev
, nv_encoder
->dcb
->i2c_index
);
61 ret
= nouveau_dp_auxch(auxch
, 8, address
, buf
, size
);
66 nouveau_dp_lane_count_set(struct drm_encoder
*encoder
, uint8_t cmd
)
68 struct drm_device
*dev
= encoder
->dev
;
69 struct nouveau_encoder
*nv_encoder
= nouveau_encoder(encoder
);
71 int or = nv_encoder
->or, link
= !(nv_encoder
->dcb
->sorconf
.link
& 1);
73 tmp
= nv_rd32(dev
, NV50_SOR_DP_CTRL(or, link
));
74 tmp
&= ~(NV50_SOR_DP_CTRL_ENHANCED_FRAME_ENABLED
|
75 NV50_SOR_DP_CTRL_LANE_MASK
);
76 tmp
|= ((1 << (cmd
& DP_LANE_COUNT_MASK
)) - 1) << 16;
77 if (cmd
& DP_LANE_COUNT_ENHANCED_FRAME_EN
)
78 tmp
|= NV50_SOR_DP_CTRL_ENHANCED_FRAME_ENABLED
;
79 nv_wr32(dev
, NV50_SOR_DP_CTRL(or, link
), tmp
);
81 return auxch_wr(encoder
, DP_LANE_COUNT_SET
, &cmd
, 1);
85 nouveau_dp_link_bw_set(struct drm_encoder
*encoder
, uint8_t cmd
)
87 struct drm_device
*dev
= encoder
->dev
;
88 struct nouveau_encoder
*nv_encoder
= nouveau_encoder(encoder
);
90 int reg
= 0x614300 + (nv_encoder
->or * 0x800);
92 tmp
= nv_rd32(dev
, reg
);
94 if (cmd
== DP_LINK_BW_2_7
)
96 nv_wr32(dev
, reg
, tmp
);
98 return auxch_wr(encoder
, DP_LINK_BW_SET
, &cmd
, 1);
102 nouveau_dp_link_train_set(struct drm_encoder
*encoder
, int pattern
)
104 struct drm_device
*dev
= encoder
->dev
;
105 struct nouveau_encoder
*nv_encoder
= nouveau_encoder(encoder
);
108 int or = nv_encoder
->or, link
= !(nv_encoder
->dcb
->sorconf
.link
& 1);
111 tmp
= nv_rd32(dev
, NV50_SOR_DP_CTRL(or, link
));
112 tmp
&= ~NV50_SOR_DP_CTRL_TRAINING_PATTERN
;
113 tmp
|= (pattern
<< 24);
114 nv_wr32(dev
, NV50_SOR_DP_CTRL(or, link
), tmp
);
116 ret
= auxch_rd(encoder
, DP_TRAINING_PATTERN_SET
, &cmd
, 1);
119 cmd
&= ~DP_TRAINING_PATTERN_MASK
;
120 cmd
|= (pattern
& DP_TRAINING_PATTERN_MASK
);
121 return auxch_wr(encoder
, DP_TRAINING_PATTERN_SET
, &cmd
, 1);
125 nouveau_dp_max_voltage_swing(struct drm_encoder
*encoder
)
127 struct nouveau_encoder
*nv_encoder
= nouveau_encoder(encoder
);
128 struct drm_device
*dev
= encoder
->dev
;
129 struct bit_displayport_encoder_table_entry
*dpse
;
130 struct bit_displayport_encoder_table
*dpe
;
131 int i
, dpe_headerlen
, max_vs
= 0;
133 dpe
= nouveau_bios_dp_table(dev
, nv_encoder
->dcb
, &dpe_headerlen
);
136 dpse
= (void *)((char *)dpe
+ dpe_headerlen
);
138 for (i
= 0; i
< dpe_headerlen
; i
++, dpse
++) {
139 if (dpse
->vs_level
> max_vs
)
140 max_vs
= dpse
->vs_level
;
147 nouveau_dp_max_pre_emphasis(struct drm_encoder
*encoder
, int vs
)
149 struct nouveau_encoder
*nv_encoder
= nouveau_encoder(encoder
);
150 struct drm_device
*dev
= encoder
->dev
;
151 struct bit_displayport_encoder_table_entry
*dpse
;
152 struct bit_displayport_encoder_table
*dpe
;
153 int i
, dpe_headerlen
, max_pre
= 0;
155 dpe
= nouveau_bios_dp_table(dev
, nv_encoder
->dcb
, &dpe_headerlen
);
158 dpse
= (void *)((char *)dpe
+ dpe_headerlen
);
160 for (i
= 0; i
< dpe_headerlen
; i
++, dpse
++) {
161 if (dpse
->vs_level
!= vs
)
164 if (dpse
->pre_level
> max_pre
)
165 max_pre
= dpse
->pre_level
;
172 nouveau_dp_link_train_adjust(struct drm_encoder
*encoder
, uint8_t *config
)
174 struct nouveau_encoder
*nv_encoder
= nouveau_encoder(encoder
);
175 struct drm_device
*dev
= encoder
->dev
;
176 struct bit_displayport_encoder_table_entry
*dpse
;
177 struct bit_displayport_encoder_table
*dpe
;
178 int ret
, i
, dpe_headerlen
, vs
= 0, pre
= 0;
181 dpe
= nouveau_bios_dp_table(dev
, nv_encoder
->dcb
, &dpe_headerlen
);
184 dpse
= (void *)((char *)dpe
+ 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 nouveau_encoder
*nv_encoder
= nouveau_encoder(encoder
);
276 bool cr_done
, cr_max_vs
, eq_done
;
277 int ret
= 0, i
, tries
, voltage
;
279 NV_DEBUG_KMS(dev
, "link training!!\n");
281 cr_done
= eq_done
= false;
283 /* set link configuration */
284 NV_DEBUG_KMS(dev
, "\tbegin train: bw %d, lanes %d\n",
285 nv_encoder
->dp
.link_bw
, nv_encoder
->dp
.link_nr
);
287 ret
= nouveau_dp_link_bw_set(encoder
, nv_encoder
->dp
.link_bw
);
291 config
[0] = nv_encoder
->dp
.link_nr
;
292 if (nv_encoder
->dp
.dpcd_version
>= 0x11)
293 config
[0] |= DP_LANE_COUNT_ENHANCED_FRAME_EN
;
295 ret
= nouveau_dp_lane_count_set(encoder
, config
[0]);
300 NV_DEBUG_KMS(dev
, "\tbegin cr\n");
301 ret
= nouveau_dp_link_train_set(encoder
, DP_TRAINING_PATTERN_1
);
307 memset(config
, 0x00, sizeof(config
));
309 if (!nouveau_dp_link_train_commit(encoder
, config
))
314 ret
= auxch_rd(encoder
, DP_LANE0_1_STATUS
, status
, 2);
317 NV_DEBUG_KMS(dev
, "\t\tstatus: 0x%02x 0x%02x\n",
318 status
[0], status
[1]);
322 for (i
= 0; i
< nv_encoder
->dp
.link_nr
; i
++) {
323 int lane
= (status
[i
>> 1] >> ((i
& 1) * 4)) & 0xf;
325 if (!(lane
& DP_LANE_CR_DONE
)) {
327 if (config
[i
] & DP_TRAIN_MAX_PRE_EMPHASIS_REACHED
)
333 if ((config
[0] & DP_TRAIN_VOLTAGE_SWING_MASK
) != voltage
) {
334 voltage
= config
[0] & DP_TRAIN_VOLTAGE_SWING_MASK
;
338 if (cr_done
|| cr_max_vs
|| (++tries
== 5))
341 if (!nouveau_dp_link_train_adjust(encoder
, config
))
348 /* channel equalisation */
349 NV_DEBUG_KMS(dev
, "\tbegin eq\n");
350 ret
= nouveau_dp_link_train_set(encoder
, DP_TRAINING_PATTERN_2
);
354 for (tries
= 0; tries
<= 5; tries
++) {
357 ret
= auxch_rd(encoder
, DP_LANE0_1_STATUS
, status
, 3);
360 NV_DEBUG_KMS(dev
, "\t\tstatus: 0x%02x 0x%02x\n",
361 status
[0], status
[1]);
364 if (!(status
[2] & DP_INTERLANE_ALIGN_DONE
))
367 for (i
= 0; eq_done
&& i
< nv_encoder
->dp
.link_nr
; i
++) {
368 int lane
= (status
[i
>> 1] >> ((i
& 1) * 4)) & 0xf;
370 if (!(lane
& DP_LANE_CR_DONE
)) {
375 if (!(lane
& DP_LANE_CHANNEL_EQ_DONE
) ||
376 !(lane
& DP_LANE_SYMBOL_LOCKED
)) {
382 if (eq_done
|| !cr_done
)
385 if (!nouveau_dp_link_train_adjust(encoder
, config
) ||
386 !nouveau_dp_link_train_commit(encoder
, config
))
391 /* end link training */
392 ret
= nouveau_dp_link_train_set(encoder
, DP_TRAINING_PATTERN_DISABLE
);
396 /* retry at a lower setting, if possible */
397 if (!ret
&& !(eq_done
&& cr_done
)) {
398 NV_DEBUG_KMS(dev
, "\twe failed\n");
399 if (nv_encoder
->dp
.link_bw
!= DP_LINK_BW_1_62
) {
400 NV_DEBUG_KMS(dev
, "retry link training at low rate\n");
401 nv_encoder
->dp
.link_bw
= DP_LINK_BW_1_62
;
410 nouveau_dp_detect(struct drm_encoder
*encoder
)
412 struct nouveau_encoder
*nv_encoder
= nouveau_encoder(encoder
);
413 struct drm_device
*dev
= encoder
->dev
;
417 ret
= auxch_rd(encoder
, 0x0000, dpcd
, 4);
421 NV_DEBUG_KMS(dev
, "encoder: link_bw %d, link_nr %d\n"
422 "display: link_bw %d, link_nr %d version 0x%02x\n",
423 nv_encoder
->dcb
->dpconf
.link_bw
,
424 nv_encoder
->dcb
->dpconf
.link_nr
,
425 dpcd
[1], dpcd
[2] & 0x0f, dpcd
[0]);
427 nv_encoder
->dp
.dpcd_version
= dpcd
[0];
429 nv_encoder
->dp
.link_bw
= dpcd
[1];
430 if (nv_encoder
->dp
.link_bw
!= DP_LINK_BW_1_62
&&
431 !nv_encoder
->dcb
->dpconf
.link_bw
)
432 nv_encoder
->dp
.link_bw
= DP_LINK_BW_1_62
;
434 nv_encoder
->dp
.link_nr
= dpcd
[2] & 0xf;
435 if (nv_encoder
->dp
.link_nr
> nv_encoder
->dcb
->dpconf
.link_nr
)
436 nv_encoder
->dp
.link_nr
= nv_encoder
->dcb
->dpconf
.link_nr
;
442 nouveau_dp_auxch(struct nouveau_i2c_chan
*auxch
, int cmd
, int addr
,
443 uint8_t *data
, int data_nr
)
445 struct drm_device
*dev
= auxch
->dev
;
446 uint32_t tmp
, ctrl
, stat
= 0, data32
[4] = {};
447 int ret
= 0, i
, index
= auxch
->rd
;
449 NV_DEBUG_KMS(dev
, "ch %d cmd %d addr 0x%x len %d\n", index
, cmd
, addr
, data_nr
);
451 tmp
= nv_rd32(dev
, NV50_AUXCH_CTRL(auxch
->rd
));
452 nv_wr32(dev
, NV50_AUXCH_CTRL(auxch
->rd
), tmp
| 0x00100000);
453 tmp
= nv_rd32(dev
, NV50_AUXCH_CTRL(auxch
->rd
));
454 if (!(tmp
& 0x01000000)) {
455 NV_ERROR(dev
, "expected bit 24 == 1, got 0x%08x\n", tmp
);
460 for (i
= 0; i
< 3; i
++) {
461 tmp
= nv_rd32(dev
, NV50_AUXCH_STAT(auxch
->rd
));
462 if (tmp
& NV50_AUXCH_STAT_STATE_READY
)
473 memcpy(data32
, data
, data_nr
);
474 for (i
= 0; i
< 4; i
++) {
475 NV_DEBUG_KMS(dev
, "wr %d: 0x%08x\n", i
, data32
[i
]);
476 nv_wr32(dev
, NV50_AUXCH_DATA_OUT(index
, i
), data32
[i
]);
480 nv_wr32(dev
, NV50_AUXCH_ADDR(index
), addr
);
481 ctrl
= nv_rd32(dev
, NV50_AUXCH_CTRL(index
));
482 ctrl
&= ~(NV50_AUXCH_CTRL_CMD
| NV50_AUXCH_CTRL_LEN
);
483 ctrl
|= (cmd
<< NV50_AUXCH_CTRL_CMD_SHIFT
);
484 ctrl
|= ((data_nr
- 1) << NV50_AUXCH_CTRL_LEN_SHIFT
);
487 nv_wr32(dev
, NV50_AUXCH_CTRL(index
), ctrl
| 0x80000000);
488 nv_wr32(dev
, NV50_AUXCH_CTRL(index
), ctrl
);
489 nv_wr32(dev
, NV50_AUXCH_CTRL(index
), ctrl
| 0x00010000);
490 if (!nv_wait(NV50_AUXCH_CTRL(index
), 0x00010000, 0x00000000)) {
491 NV_ERROR(dev
, "expected bit 16 == 0, got 0x%08x\n",
492 nv_rd32(dev
, NV50_AUXCH_CTRL(index
)));
499 stat
= nv_rd32(dev
, NV50_AUXCH_STAT(index
));
500 if ((stat
& NV50_AUXCH_STAT_REPLY_AUX
) !=
501 NV50_AUXCH_STAT_REPLY_AUX_DEFER
)
505 if ((stat
& NV50_AUXCH_STAT_COUNT
) != data_nr
) {
511 for (i
= 0; i
< 4; i
++) {
512 data32
[i
] = nv_rd32(dev
, NV50_AUXCH_DATA_IN(index
, i
));
513 NV_DEBUG_KMS(dev
, "rd %d: 0x%08x\n", i
, data32
[i
]);
515 memcpy(data
, data32
, data_nr
);
519 tmp
= nv_rd32(dev
, NV50_AUXCH_CTRL(auxch
->rd
));
520 nv_wr32(dev
, NV50_AUXCH_CTRL(auxch
->rd
), tmp
& ~0x00100000);
521 tmp
= nv_rd32(dev
, NV50_AUXCH_CTRL(auxch
->rd
));
522 if (tmp
& 0x01000000) {
523 NV_ERROR(dev
, "expected bit 24 == 0, got 0x%08x\n", tmp
);
529 return ret
? ret
: (stat
& NV50_AUXCH_STAT_REPLY
);
533 nouveau_dp_i2c_aux_ch(struct i2c_adapter
*adapter
, int mode
,
534 uint8_t write_byte
, uint8_t *read_byte
)
536 struct i2c_algo_dp_aux_data
*algo_data
= adapter
->algo_data
;
537 struct nouveau_i2c_chan
*auxch
= (struct nouveau_i2c_chan
*)adapter
;
538 struct drm_device
*dev
= auxch
->dev
;
539 int ret
= 0, cmd
, addr
= algo_data
->address
;
542 if (mode
== MODE_I2C_READ
) {
546 cmd
= (mode
& MODE_I2C_READ
) ? AUX_I2C_READ
: AUX_I2C_WRITE
;
550 if (!(mode
& MODE_I2C_STOP
))
553 if (mode
& MODE_I2C_START
)
557 ret
= nouveau_dp_auxch(auxch
, cmd
, addr
, buf
, 1);
561 switch (ret
& NV50_AUXCH_STAT_REPLY_I2C
) {
562 case NV50_AUXCH_STAT_REPLY_I2C_ACK
:
564 case NV50_AUXCH_STAT_REPLY_I2C_NACK
:
566 case NV50_AUXCH_STAT_REPLY_I2C_DEFER
:
570 NV_ERROR(dev
, "invalid auxch status: 0x%08x\n", ret
);