Dave Airlie | 746c1aa | 2009-12-08 07:07:28 +1000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2007-8 Advanced Micro Devices, Inc. |
| 3 | * Copyright 2008 Red Hat Inc. |
| 4 | * |
| 5 | * Permission is hereby granted, free of charge, to any person obtaining a |
| 6 | * copy of this software and associated documentation files (the "Software"), |
| 7 | * to deal in the Software without restriction, including without limitation |
| 8 | * the rights to use, copy, modify, merge, publish, distribute, sublicense, |
| 9 | * and/or sell copies of the Software, and to permit persons to whom the |
| 10 | * Software is furnished to do so, subject to the following conditions: |
| 11 | * |
| 12 | * The above copyright notice and this permission notice shall be included in |
| 13 | * all copies or substantial portions of the Software. |
| 14 | * |
| 15 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| 16 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 17 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL |
| 18 | * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR |
| 19 | * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, |
| 20 | * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR |
| 21 | * OTHER DEALINGS IN THE SOFTWARE. |
| 22 | * |
| 23 | * Authors: Dave Airlie |
| 24 | * Alex Deucher |
| 25 | */ |
| 26 | #include "drmP.h" |
| 27 | #include "radeon_drm.h" |
| 28 | #include "radeon.h" |
| 29 | |
| 30 | #include "atom.h" |
| 31 | #include "atom-bits.h" |
| 32 | #include "drm_dp_helper.h" |
| 33 | |
Alex Deucher | f92a8b6 | 2009-11-23 18:40:40 -0500 | [diff] [blame] | 34 | /* move these to drm_dp_helper.c/h */ |
Alex Deucher | 5801ead | 2009-11-24 13:32:59 -0500 | [diff] [blame] | 35 | #define DP_LINK_CONFIGURATION_SIZE 9 |
| 36 | #define DP_LINK_STATUS_SIZE 6 |
| 37 | #define DP_DPCD_SIZE 8 |
| 38 | |
| 39 | static char *voltage_names[] = { |
| 40 | "0.4V", "0.6V", "0.8V", "1.2V" |
| 41 | }; |
| 42 | static char *pre_emph_names[] = { |
| 43 | "0dB", "3.5dB", "6dB", "9.5dB" |
| 44 | }; |
Alex Deucher | f92a8b6 | 2009-11-23 18:40:40 -0500 | [diff] [blame] | 45 | |
| 46 | static const int dp_clocks[] = { |
Alex Deucher | 53c1e09 | 2009-11-27 13:14:37 -0500 | [diff] [blame] | 47 | 54000, /* 1 lane, 1.62 Ghz */ |
| 48 | 90000, /* 1 lane, 2.70 Ghz */ |
| 49 | 108000, /* 2 lane, 1.62 Ghz */ |
| 50 | 180000, /* 2 lane, 2.70 Ghz */ |
| 51 | 216000, /* 4 lane, 1.62 Ghz */ |
| 52 | 360000, /* 4 lane, 2.70 Ghz */ |
Alex Deucher | f92a8b6 | 2009-11-23 18:40:40 -0500 | [diff] [blame] | 53 | }; |
| 54 | |
| 55 | static const int num_dp_clocks = sizeof(dp_clocks) / sizeof(int); |
| 56 | |
Alex Deucher | 5801ead | 2009-11-24 13:32:59 -0500 | [diff] [blame] | 57 | /* common helper functions */ |
| 58 | static int dp_lanes_for_mode_clock(u8 dpcd[DP_DPCD_SIZE], int mode_clock) |
Alex Deucher | f92a8b6 | 2009-11-23 18:40:40 -0500 | [diff] [blame] | 59 | { |
| 60 | int i; |
Alex Deucher | 5801ead | 2009-11-24 13:32:59 -0500 | [diff] [blame] | 61 | u8 max_link_bw; |
| 62 | u8 max_lane_count; |
| 63 | |
| 64 | if (!dpcd) |
| 65 | return 0; |
| 66 | |
| 67 | max_link_bw = dpcd[DP_MAX_LINK_RATE]; |
| 68 | max_lane_count = dpcd[DP_MAX_LANE_COUNT] & DP_MAX_LANE_COUNT_MASK; |
Alex Deucher | f92a8b6 | 2009-11-23 18:40:40 -0500 | [diff] [blame] | 69 | |
| 70 | switch (max_link_bw) { |
| 71 | case DP_LINK_BW_1_62: |
| 72 | default: |
| 73 | for (i = 0; i < num_dp_clocks; i++) { |
| 74 | if (i % 2) |
| 75 | continue; |
Alex Deucher | 5801ead | 2009-11-24 13:32:59 -0500 | [diff] [blame] | 76 | switch (max_lane_count) { |
| 77 | case 1: |
| 78 | if (i > 1) |
| 79 | return 0; |
| 80 | break; |
| 81 | case 2: |
| 82 | if (i > 3) |
| 83 | return 0; |
| 84 | break; |
| 85 | case 4: |
| 86 | default: |
| 87 | break; |
| 88 | } |
Alex Deucher | f92a8b6 | 2009-11-23 18:40:40 -0500 | [diff] [blame] | 89 | if (dp_clocks[i] > mode_clock) { |
| 90 | if (i < 2) |
| 91 | return 1; |
| 92 | else if (i < 4) |
| 93 | return 2; |
| 94 | else |
| 95 | return 4; |
| 96 | } |
| 97 | } |
| 98 | break; |
| 99 | case DP_LINK_BW_2_7: |
| 100 | for (i = 0; i < num_dp_clocks; i++) { |
Alex Deucher | 5801ead | 2009-11-24 13:32:59 -0500 | [diff] [blame] | 101 | switch (max_lane_count) { |
| 102 | case 1: |
| 103 | if (i > 1) |
| 104 | return 0; |
| 105 | break; |
| 106 | case 2: |
| 107 | if (i > 3) |
| 108 | return 0; |
| 109 | break; |
| 110 | case 4: |
| 111 | default: |
| 112 | break; |
| 113 | } |
Alex Deucher | f92a8b6 | 2009-11-23 18:40:40 -0500 | [diff] [blame] | 114 | if (dp_clocks[i] > mode_clock) { |
| 115 | if (i < 2) |
| 116 | return 1; |
| 117 | else if (i < 4) |
| 118 | return 2; |
| 119 | else |
| 120 | return 4; |
| 121 | } |
| 122 | } |
| 123 | break; |
| 124 | } |
| 125 | |
| 126 | return 0; |
| 127 | } |
| 128 | |
Alex Deucher | 5801ead | 2009-11-24 13:32:59 -0500 | [diff] [blame] | 129 | static int dp_link_clock_for_mode_clock(u8 dpcd[DP_DPCD_SIZE], int mode_clock) |
Alex Deucher | f92a8b6 | 2009-11-23 18:40:40 -0500 | [diff] [blame] | 130 | { |
| 131 | int i; |
Alex Deucher | 5801ead | 2009-11-24 13:32:59 -0500 | [diff] [blame] | 132 | u8 max_link_bw; |
| 133 | u8 max_lane_count; |
| 134 | |
| 135 | if (!dpcd) |
| 136 | return 0; |
| 137 | |
| 138 | max_link_bw = dpcd[DP_MAX_LINK_RATE]; |
| 139 | max_lane_count = dpcd[DP_MAX_LANE_COUNT] & DP_MAX_LANE_COUNT_MASK; |
Alex Deucher | f92a8b6 | 2009-11-23 18:40:40 -0500 | [diff] [blame] | 140 | |
| 141 | switch (max_link_bw) { |
| 142 | case DP_LINK_BW_1_62: |
| 143 | default: |
Alex Deucher | 5801ead | 2009-11-24 13:32:59 -0500 | [diff] [blame] | 144 | for (i = 0; i < num_dp_clocks; i++) { |
| 145 | if (i % 2) |
| 146 | continue; |
| 147 | switch (max_lane_count) { |
| 148 | case 1: |
| 149 | if (i > 1) |
| 150 | return 0; |
| 151 | break; |
| 152 | case 2: |
| 153 | if (i > 3) |
| 154 | return 0; |
| 155 | break; |
| 156 | case 4: |
| 157 | default: |
| 158 | break; |
| 159 | } |
| 160 | if (dp_clocks[i] > mode_clock) |
| 161 | return 162000; |
| 162 | } |
Alex Deucher | f92a8b6 | 2009-11-23 18:40:40 -0500 | [diff] [blame] | 163 | break; |
| 164 | case DP_LINK_BW_2_7: |
| 165 | for (i = 0; i < num_dp_clocks; i++) { |
Alex Deucher | 5801ead | 2009-11-24 13:32:59 -0500 | [diff] [blame] | 166 | switch (max_lane_count) { |
| 167 | case 1: |
| 168 | if (i > 1) |
| 169 | return 0; |
| 170 | break; |
| 171 | case 2: |
| 172 | if (i > 3) |
| 173 | return 0; |
| 174 | break; |
| 175 | case 4: |
| 176 | default: |
| 177 | break; |
| 178 | } |
Alex Deucher | f92a8b6 | 2009-11-23 18:40:40 -0500 | [diff] [blame] | 179 | if (dp_clocks[i] > mode_clock) |
| 180 | return (i % 2) ? 270000 : 162000; |
| 181 | } |
| 182 | } |
| 183 | |
| 184 | return 0; |
| 185 | } |
| 186 | |
Alex Deucher | 5801ead | 2009-11-24 13:32:59 -0500 | [diff] [blame] | 187 | int dp_mode_valid(u8 dpcd[DP_DPCD_SIZE], int mode_clock) |
| 188 | { |
| 189 | int lanes = dp_lanes_for_mode_clock(dpcd, mode_clock); |
Jerome Glisse | 6bba2e1 | 2011-01-26 17:51:03 -0500 | [diff] [blame] | 190 | int dp_clock = dp_link_clock_for_mode_clock(dpcd, mode_clock); |
Alex Deucher | 5801ead | 2009-11-24 13:32:59 -0500 | [diff] [blame] | 191 | |
Jerome Glisse | 6bba2e1 | 2011-01-26 17:51:03 -0500 | [diff] [blame] | 192 | if ((lanes == 0) || (dp_clock == 0)) |
Alex Deucher | 5801ead | 2009-11-24 13:32:59 -0500 | [diff] [blame] | 193 | return MODE_CLOCK_HIGH; |
| 194 | |
| 195 | return MODE_OK; |
| 196 | } |
| 197 | |
| 198 | static u8 dp_link_status(u8 link_status[DP_LINK_STATUS_SIZE], int r) |
| 199 | { |
| 200 | return link_status[r - DP_LANE0_1_STATUS]; |
| 201 | } |
| 202 | |
| 203 | static u8 dp_get_lane_status(u8 link_status[DP_LINK_STATUS_SIZE], |
| 204 | int lane) |
| 205 | { |
| 206 | int i = DP_LANE0_1_STATUS + (lane >> 1); |
| 207 | int s = (lane & 1) * 4; |
| 208 | u8 l = dp_link_status(link_status, i); |
| 209 | return (l >> s) & 0xf; |
| 210 | } |
| 211 | |
| 212 | static bool dp_clock_recovery_ok(u8 link_status[DP_LINK_STATUS_SIZE], |
| 213 | int lane_count) |
| 214 | { |
| 215 | int lane; |
| 216 | u8 lane_status; |
| 217 | |
| 218 | for (lane = 0; lane < lane_count; lane++) { |
| 219 | lane_status = dp_get_lane_status(link_status, lane); |
| 220 | if ((lane_status & DP_LANE_CR_DONE) == 0) |
| 221 | return false; |
| 222 | } |
| 223 | return true; |
| 224 | } |
| 225 | |
| 226 | static bool dp_channel_eq_ok(u8 link_status[DP_LINK_STATUS_SIZE], |
| 227 | int lane_count) |
| 228 | { |
| 229 | u8 lane_align; |
| 230 | u8 lane_status; |
| 231 | int lane; |
| 232 | |
| 233 | lane_align = dp_link_status(link_status, |
| 234 | DP_LANE_ALIGN_STATUS_UPDATED); |
| 235 | if ((lane_align & DP_INTERLANE_ALIGN_DONE) == 0) |
| 236 | return false; |
| 237 | for (lane = 0; lane < lane_count; lane++) { |
| 238 | lane_status = dp_get_lane_status(link_status, lane); |
| 239 | if ((lane_status & DP_CHANNEL_EQ_BITS) != DP_CHANNEL_EQ_BITS) |
| 240 | return false; |
| 241 | } |
| 242 | return true; |
| 243 | } |
| 244 | |
| 245 | static u8 dp_get_adjust_request_voltage(uint8_t link_status[DP_LINK_STATUS_SIZE], |
| 246 | int lane) |
| 247 | |
| 248 | { |
| 249 | int i = DP_ADJUST_REQUEST_LANE0_1 + (lane >> 1); |
| 250 | int s = ((lane & 1) ? |
| 251 | DP_ADJUST_VOLTAGE_SWING_LANE1_SHIFT : |
| 252 | DP_ADJUST_VOLTAGE_SWING_LANE0_SHIFT); |
| 253 | u8 l = dp_link_status(link_status, i); |
| 254 | |
| 255 | return ((l >> s) & 0x3) << DP_TRAIN_VOLTAGE_SWING_SHIFT; |
| 256 | } |
| 257 | |
| 258 | static u8 dp_get_adjust_request_pre_emphasis(uint8_t link_status[DP_LINK_STATUS_SIZE], |
| 259 | int lane) |
| 260 | { |
| 261 | int i = DP_ADJUST_REQUEST_LANE0_1 + (lane >> 1); |
| 262 | int s = ((lane & 1) ? |
| 263 | DP_ADJUST_PRE_EMPHASIS_LANE1_SHIFT : |
| 264 | DP_ADJUST_PRE_EMPHASIS_LANE0_SHIFT); |
| 265 | u8 l = dp_link_status(link_status, i); |
| 266 | |
| 267 | return ((l >> s) & 0x3) << DP_TRAIN_PRE_EMPHASIS_SHIFT; |
| 268 | } |
| 269 | |
| 270 | /* XXX fix me -- chip specific */ |
| 271 | #define DP_VOLTAGE_MAX DP_TRAIN_VOLTAGE_SWING_1200 |
| 272 | static u8 dp_pre_emphasis_max(u8 voltage_swing) |
| 273 | { |
| 274 | switch (voltage_swing & DP_TRAIN_VOLTAGE_SWING_MASK) { |
| 275 | case DP_TRAIN_VOLTAGE_SWING_400: |
| 276 | return DP_TRAIN_PRE_EMPHASIS_6; |
| 277 | case DP_TRAIN_VOLTAGE_SWING_600: |
| 278 | return DP_TRAIN_PRE_EMPHASIS_6; |
| 279 | case DP_TRAIN_VOLTAGE_SWING_800: |
| 280 | return DP_TRAIN_PRE_EMPHASIS_3_5; |
| 281 | case DP_TRAIN_VOLTAGE_SWING_1200: |
| 282 | default: |
| 283 | return DP_TRAIN_PRE_EMPHASIS_0; |
| 284 | } |
| 285 | } |
| 286 | |
| 287 | static void dp_get_adjust_train(u8 link_status[DP_LINK_STATUS_SIZE], |
| 288 | int lane_count, |
| 289 | u8 train_set[4]) |
| 290 | { |
| 291 | u8 v = 0; |
| 292 | u8 p = 0; |
| 293 | int lane; |
| 294 | |
| 295 | for (lane = 0; lane < lane_count; lane++) { |
| 296 | u8 this_v = dp_get_adjust_request_voltage(link_status, lane); |
| 297 | u8 this_p = dp_get_adjust_request_pre_emphasis(link_status, lane); |
| 298 | |
Dave Airlie | d9fdaaf | 2010-08-02 10:42:55 +1000 | [diff] [blame] | 299 | DRM_DEBUG_KMS("requested signal parameters: lane %d voltage %s pre_emph %s\n", |
Alex Deucher | 53c1e09 | 2009-11-27 13:14:37 -0500 | [diff] [blame] | 300 | lane, |
| 301 | voltage_names[this_v >> DP_TRAIN_VOLTAGE_SWING_SHIFT], |
| 302 | pre_emph_names[this_p >> DP_TRAIN_PRE_EMPHASIS_SHIFT]); |
Alex Deucher | 5801ead | 2009-11-24 13:32:59 -0500 | [diff] [blame] | 303 | |
| 304 | if (this_v > v) |
| 305 | v = this_v; |
| 306 | if (this_p > p) |
| 307 | p = this_p; |
| 308 | } |
| 309 | |
| 310 | if (v >= DP_VOLTAGE_MAX) |
| 311 | v = DP_VOLTAGE_MAX | DP_TRAIN_MAX_SWING_REACHED; |
| 312 | |
| 313 | if (p >= dp_pre_emphasis_max(v)) |
| 314 | p = dp_pre_emphasis_max(v) | DP_TRAIN_MAX_PRE_EMPHASIS_REACHED; |
| 315 | |
Dave Airlie | d9fdaaf | 2010-08-02 10:42:55 +1000 | [diff] [blame] | 316 | DRM_DEBUG_KMS("using signal parameters: voltage %s pre_emph %s\n", |
Alex Deucher | 53c1e09 | 2009-11-27 13:14:37 -0500 | [diff] [blame] | 317 | voltage_names[(v & DP_TRAIN_VOLTAGE_SWING_MASK) >> DP_TRAIN_VOLTAGE_SWING_SHIFT], |
| 318 | pre_emph_names[(p & DP_TRAIN_PRE_EMPHASIS_MASK) >> DP_TRAIN_PRE_EMPHASIS_SHIFT]); |
Alex Deucher | 5801ead | 2009-11-24 13:32:59 -0500 | [diff] [blame] | 319 | |
| 320 | for (lane = 0; lane < 4; lane++) |
| 321 | train_set[lane] = v | p; |
| 322 | } |
| 323 | |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 324 | union aux_channel_transaction { |
| 325 | PROCESS_AUX_CHANNEL_TRANSACTION_PS_ALLOCATION v1; |
| 326 | PROCESS_AUX_CHANNEL_TRANSACTION_PARAMETERS_V2 v2; |
| 327 | }; |
Alex Deucher | 5801ead | 2009-11-24 13:32:59 -0500 | [diff] [blame] | 328 | |
| 329 | /* radeon aux chan functions */ |
Alex Deucher | 834b290 | 2011-05-20 04:34:24 -0400 | [diff] [blame] | 330 | static int radeon_process_aux_ch(struct radeon_i2c_chan *chan, |
| 331 | u8 *send, int send_bytes, |
| 332 | u8 *recv, int recv_size, |
| 333 | u8 delay, u8 *ack) |
Dave Airlie | 746c1aa | 2009-12-08 07:07:28 +1000 | [diff] [blame] | 334 | { |
| 335 | struct drm_device *dev = chan->dev; |
| 336 | struct radeon_device *rdev = dev->dev_private; |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 337 | union aux_channel_transaction args; |
Dave Airlie | 746c1aa | 2009-12-08 07:07:28 +1000 | [diff] [blame] | 338 | int index = GetIndexIntoMasterTable(COMMAND, ProcessAuxChannelTransaction); |
| 339 | unsigned char *base; |
Alex Deucher | 834b290 | 2011-05-20 04:34:24 -0400 | [diff] [blame] | 340 | int recv_bytes; |
Alex Deucher | 1a66c95 | 2009-11-20 19:40:13 -0500 | [diff] [blame] | 341 | |
Dave Airlie | 746c1aa | 2009-12-08 07:07:28 +1000 | [diff] [blame] | 342 | memset(&args, 0, sizeof(args)); |
Alex Deucher | 1a66c95 | 2009-11-20 19:40:13 -0500 | [diff] [blame] | 343 | |
Dave Airlie | 746c1aa | 2009-12-08 07:07:28 +1000 | [diff] [blame] | 344 | base = (unsigned char *)rdev->mode_info.atom_context->scratch; |
| 345 | |
Alex Deucher | 834b290 | 2011-05-20 04:34:24 -0400 | [diff] [blame] | 346 | memcpy(base, send, send_bytes); |
Dave Airlie | 746c1aa | 2009-12-08 07:07:28 +1000 | [diff] [blame] | 347 | |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 348 | args.v1.lpAuxRequest = 0; |
| 349 | args.v1.lpDataOut = 16; |
| 350 | args.v1.ucDataOutLen = 0; |
| 351 | args.v1.ucChannelID = chan->rec.i2c_id; |
| 352 | args.v1.ucDelay = delay / 10; |
| 353 | if (ASIC_IS_DCE4(rdev)) |
Alex Deucher | 8e36ed0 | 2010-05-18 19:26:47 -0400 | [diff] [blame] | 354 | args.v2.ucHPD_ID = chan->rec.hpd; |
Dave Airlie | 746c1aa | 2009-12-08 07:07:28 +1000 | [diff] [blame] | 355 | |
| 356 | atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args); |
| 357 | |
Alex Deucher | 834b290 | 2011-05-20 04:34:24 -0400 | [diff] [blame] | 358 | *ack = args.v1.ucReplyStatus; |
| 359 | |
| 360 | /* timeout */ |
| 361 | if (args.v1.ucReplyStatus == 1) { |
| 362 | DRM_DEBUG_KMS("dp_aux_ch timeout\n"); |
| 363 | return -ETIMEDOUT; |
Dave Airlie | 746c1aa | 2009-12-08 07:07:28 +1000 | [diff] [blame] | 364 | } |
| 365 | |
Alex Deucher | 834b290 | 2011-05-20 04:34:24 -0400 | [diff] [blame] | 366 | /* flags not zero */ |
| 367 | if (args.v1.ucReplyStatus == 2) { |
| 368 | DRM_DEBUG_KMS("dp_aux_ch flags not zero\n"); |
| 369 | return -EBUSY; |
Dave Airlie | 746c1aa | 2009-12-08 07:07:28 +1000 | [diff] [blame] | 370 | } |
Alex Deucher | 834b290 | 2011-05-20 04:34:24 -0400 | [diff] [blame] | 371 | |
| 372 | /* error */ |
| 373 | if (args.v1.ucReplyStatus == 3) { |
| 374 | DRM_DEBUG_KMS("dp_aux_ch error\n"); |
| 375 | return -EIO; |
| 376 | } |
| 377 | |
| 378 | recv_bytes = args.v1.ucDataOutLen; |
| 379 | if (recv_bytes > recv_size) |
| 380 | recv_bytes = recv_size; |
| 381 | |
| 382 | if (recv && recv_size) |
| 383 | memcpy(recv, base + 16, recv_bytes); |
| 384 | |
| 385 | return recv_bytes; |
Dave Airlie | 746c1aa | 2009-12-08 07:07:28 +1000 | [diff] [blame] | 386 | } |
| 387 | |
Alex Deucher | 834b290 | 2011-05-20 04:34:24 -0400 | [diff] [blame] | 388 | static int radeon_dp_aux_native_write(struct radeon_connector *radeon_connector, |
| 389 | u16 address, u8 *send, u8 send_bytes, u8 delay) |
Alex Deucher | 5801ead | 2009-11-24 13:32:59 -0500 | [diff] [blame] | 390 | { |
| 391 | struct radeon_connector_atom_dig *dig_connector = radeon_connector->con_priv; |
Alex Deucher | 834b290 | 2011-05-20 04:34:24 -0400 | [diff] [blame] | 392 | int ret; |
Alex Deucher | 5801ead | 2009-11-24 13:32:59 -0500 | [diff] [blame] | 393 | u8 msg[20]; |
Alex Deucher | 834b290 | 2011-05-20 04:34:24 -0400 | [diff] [blame] | 394 | int msg_bytes = send_bytes + 4; |
| 395 | u8 ack; |
Alex Deucher | 5801ead | 2009-11-24 13:32:59 -0500 | [diff] [blame] | 396 | |
Alex Deucher | 834b290 | 2011-05-20 04:34:24 -0400 | [diff] [blame] | 397 | if (send_bytes > 16) |
| 398 | return -1; |
| 399 | |
Alex Deucher | 5801ead | 2009-11-24 13:32:59 -0500 | [diff] [blame] | 400 | msg[0] = address; |
| 401 | msg[1] = address >> 8; |
| 402 | msg[2] = AUX_NATIVE_WRITE << 4; |
Alex Deucher | 834b290 | 2011-05-20 04:34:24 -0400 | [diff] [blame] | 403 | msg[3] = (msg_bytes << 4) | (send_bytes - 1); |
Alex Deucher | 5801ead | 2009-11-24 13:32:59 -0500 | [diff] [blame] | 404 | memcpy(&msg[4], send, send_bytes); |
Alex Deucher | 834b290 | 2011-05-20 04:34:24 -0400 | [diff] [blame] | 405 | |
| 406 | while (1) { |
| 407 | ret = radeon_process_aux_ch(dig_connector->dp_i2c_bus, |
| 408 | msg, msg_bytes, NULL, 0, delay, &ack); |
| 409 | if (ret < 0) |
| 410 | return ret; |
| 411 | if ((ack & AUX_NATIVE_REPLY_MASK) == AUX_NATIVE_REPLY_ACK) |
| 412 | break; |
| 413 | else if ((ack & AUX_NATIVE_REPLY_MASK) == AUX_NATIVE_REPLY_DEFER) |
| 414 | udelay(400); |
| 415 | else |
| 416 | return -EIO; |
| 417 | } |
| 418 | |
| 419 | return send_bytes; |
Alex Deucher | 5801ead | 2009-11-24 13:32:59 -0500 | [diff] [blame] | 420 | } |
| 421 | |
Alex Deucher | 834b290 | 2011-05-20 04:34:24 -0400 | [diff] [blame] | 422 | static int radeon_dp_aux_native_read(struct radeon_connector *radeon_connector, |
| 423 | u16 address, u8 *recv, int recv_bytes, u8 delay) |
Alex Deucher | 5801ead | 2009-11-24 13:32:59 -0500 | [diff] [blame] | 424 | { |
| 425 | struct radeon_connector_atom_dig *dig_connector = radeon_connector->con_priv; |
Alex Deucher | 834b290 | 2011-05-20 04:34:24 -0400 | [diff] [blame] | 426 | u8 msg[4]; |
| 427 | int msg_bytes = 4; |
| 428 | u8 ack; |
| 429 | int ret; |
| 430 | |
Alex Deucher | 5801ead | 2009-11-24 13:32:59 -0500 | [diff] [blame] | 431 | msg[0] = address; |
| 432 | msg[1] = address >> 8; |
| 433 | msg[2] = AUX_NATIVE_READ << 4; |
Alex Deucher | 834b290 | 2011-05-20 04:34:24 -0400 | [diff] [blame] | 434 | msg[3] = (msg_bytes << 4) | (recv_bytes - 1); |
Alex Deucher | 5801ead | 2009-11-24 13:32:59 -0500 | [diff] [blame] | 435 | |
Alex Deucher | 834b290 | 2011-05-20 04:34:24 -0400 | [diff] [blame] | 436 | while (1) { |
| 437 | ret = radeon_process_aux_ch(dig_connector->dp_i2c_bus, |
| 438 | msg, msg_bytes, recv, recv_bytes, delay, &ack); |
| 439 | if (ret == 0) |
| 440 | return -EPROTO; |
| 441 | if (ret < 0) |
| 442 | return ret; |
| 443 | if ((ack & AUX_NATIVE_REPLY_MASK) == AUX_NATIVE_REPLY_ACK) |
| 444 | return ret; |
| 445 | else if ((ack & AUX_NATIVE_REPLY_MASK) == AUX_NATIVE_REPLY_DEFER) |
| 446 | udelay(400); |
| 447 | else |
| 448 | return -EIO; |
| 449 | } |
Alex Deucher | 5801ead | 2009-11-24 13:32:59 -0500 | [diff] [blame] | 450 | } |
| 451 | |
| 452 | /* radeon dp functions */ |
Alex Deucher | 834b290 | 2011-05-20 04:34:24 -0400 | [diff] [blame] | 453 | static u8 radeon_dp_encoder_service(struct radeon_device *rdev, |
| 454 | int action, int dp_clock, |
Alex Deucher | 4143e91 | 2009-11-23 18:02:35 -0500 | [diff] [blame] | 455 | uint8_t ucconfig, uint8_t lane_num) |
Dave Airlie | 746c1aa | 2009-12-08 07:07:28 +1000 | [diff] [blame] | 456 | { |
| 457 | DP_ENCODER_SERVICE_PARAMETERS args; |
| 458 | int index = GetIndexIntoMasterTable(COMMAND, DPEncoderService); |
| 459 | |
| 460 | memset(&args, 0, sizeof(args)); |
| 461 | args.ucLinkClock = dp_clock / 10; |
| 462 | args.ucConfig = ucconfig; |
| 463 | args.ucAction = action; |
| 464 | args.ucLaneNum = lane_num; |
| 465 | args.ucStatus = 0; |
| 466 | |
| 467 | atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args); |
| 468 | return args.ucStatus; |
| 469 | } |
| 470 | |
Alex Deucher | 4143e91 | 2009-11-23 18:02:35 -0500 | [diff] [blame] | 471 | u8 radeon_dp_getsinktype(struct radeon_connector *radeon_connector) |
Dave Airlie | 746c1aa | 2009-12-08 07:07:28 +1000 | [diff] [blame] | 472 | { |
Alex Deucher | 5801ead | 2009-11-24 13:32:59 -0500 | [diff] [blame] | 473 | struct radeon_connector_atom_dig *dig_connector = radeon_connector->con_priv; |
Dave Airlie | 746c1aa | 2009-12-08 07:07:28 +1000 | [diff] [blame] | 474 | struct drm_device *dev = radeon_connector->base.dev; |
| 475 | struct radeon_device *rdev = dev->dev_private; |
| 476 | |
| 477 | return radeon_dp_encoder_service(rdev, ATOM_DP_ACTION_GET_SINK_TYPE, 0, |
Alex Deucher | 5801ead | 2009-11-24 13:32:59 -0500 | [diff] [blame] | 478 | dig_connector->dp_i2c_bus->rec.i2c_id, 0); |
Dave Airlie | 746c1aa | 2009-12-08 07:07:28 +1000 | [diff] [blame] | 479 | } |
| 480 | |
Alex Deucher | 9fa05c9 | 2009-11-27 13:01:46 -0500 | [diff] [blame] | 481 | bool radeon_dp_getdpcd(struct radeon_connector *radeon_connector) |
Dave Airlie | 746c1aa | 2009-12-08 07:07:28 +1000 | [diff] [blame] | 482 | { |
Alex Deucher | 5801ead | 2009-11-24 13:32:59 -0500 | [diff] [blame] | 483 | struct radeon_connector_atom_dig *dig_connector = radeon_connector->con_priv; |
Dave Airlie | 746c1aa | 2009-12-08 07:07:28 +1000 | [diff] [blame] | 484 | u8 msg[25]; |
| 485 | int ret; |
| 486 | |
Alex Deucher | 834b290 | 2011-05-20 04:34:24 -0400 | [diff] [blame] | 487 | ret = radeon_dp_aux_native_read(radeon_connector, DP_DPCD_REV, msg, 8, 0); |
| 488 | if (ret > 0) { |
Alex Deucher | 5801ead | 2009-11-24 13:32:59 -0500 | [diff] [blame] | 489 | memcpy(dig_connector->dpcd, msg, 8); |
Alex Deucher | 1a66c95 | 2009-11-20 19:40:13 -0500 | [diff] [blame] | 490 | { |
Dave Airlie | 746c1aa | 2009-12-08 07:07:28 +1000 | [diff] [blame] | 491 | int i; |
Dave Airlie | d9fdaaf | 2010-08-02 10:42:55 +1000 | [diff] [blame] | 492 | DRM_DEBUG_KMS("DPCD: "); |
Dave Airlie | 746c1aa | 2009-12-08 07:07:28 +1000 | [diff] [blame] | 493 | for (i = 0; i < 8; i++) |
Dave Airlie | d9fdaaf | 2010-08-02 10:42:55 +1000 | [diff] [blame] | 494 | DRM_DEBUG_KMS("%02x ", msg[i]); |
| 495 | DRM_DEBUG_KMS("\n"); |
Dave Airlie | 746c1aa | 2009-12-08 07:07:28 +1000 | [diff] [blame] | 496 | } |
Alex Deucher | 9fa05c9 | 2009-11-27 13:01:46 -0500 | [diff] [blame] | 497 | return true; |
Dave Airlie | 746c1aa | 2009-12-08 07:07:28 +1000 | [diff] [blame] | 498 | } |
Alex Deucher | 5801ead | 2009-11-24 13:32:59 -0500 | [diff] [blame] | 499 | dig_connector->dpcd[0] = 0; |
Alex Deucher | 9fa05c9 | 2009-11-27 13:01:46 -0500 | [diff] [blame] | 500 | return false; |
Dave Airlie | 746c1aa | 2009-12-08 07:07:28 +1000 | [diff] [blame] | 501 | } |
| 502 | |
Alex Deucher | 5801ead | 2009-11-24 13:32:59 -0500 | [diff] [blame] | 503 | void radeon_dp_set_link_config(struct drm_connector *connector, |
| 504 | struct drm_display_mode *mode) |
| 505 | { |
| 506 | struct radeon_connector *radeon_connector; |
| 507 | struct radeon_connector_atom_dig *dig_connector; |
| 508 | |
Dave Airlie | 97b94cc | 2010-01-29 15:31:47 +1000 | [diff] [blame] | 509 | if ((connector->connector_type != DRM_MODE_CONNECTOR_DisplayPort) && |
Alex Deucher | 196c58d | 2010-01-07 14:22:32 -0500 | [diff] [blame] | 510 | (connector->connector_type != DRM_MODE_CONNECTOR_eDP)) |
Alex Deucher | 5801ead | 2009-11-24 13:32:59 -0500 | [diff] [blame] | 511 | return; |
| 512 | |
| 513 | radeon_connector = to_radeon_connector(connector); |
| 514 | if (!radeon_connector->con_priv) |
| 515 | return; |
| 516 | dig_connector = radeon_connector->con_priv; |
| 517 | |
| 518 | dig_connector->dp_clock = |
| 519 | dp_link_clock_for_mode_clock(dig_connector->dpcd, mode->clock); |
| 520 | dig_connector->dp_lane_count = |
| 521 | dp_lanes_for_mode_clock(dig_connector->dpcd, mode->clock); |
| 522 | } |
| 523 | |
| 524 | int radeon_dp_mode_valid_helper(struct radeon_connector *radeon_connector, |
| 525 | struct drm_display_mode *mode) |
| 526 | { |
| 527 | struct radeon_connector_atom_dig *dig_connector = radeon_connector->con_priv; |
| 528 | |
| 529 | return dp_mode_valid(dig_connector->dpcd, mode->clock); |
| 530 | } |
| 531 | |
Dave Airlie | 746c1aa | 2009-12-08 07:07:28 +1000 | [diff] [blame] | 532 | static bool atom_dp_get_link_status(struct radeon_connector *radeon_connector, |
| 533 | u8 link_status[DP_LINK_STATUS_SIZE]) |
| 534 | { |
| 535 | int ret; |
Alex Deucher | 834b290 | 2011-05-20 04:34:24 -0400 | [diff] [blame] | 536 | ret = radeon_dp_aux_native_read(radeon_connector, DP_LANE0_1_STATUS, |
| 537 | link_status, DP_LINK_STATUS_SIZE, 100); |
| 538 | if (ret <= 0) { |
Dave Airlie | 746c1aa | 2009-12-08 07:07:28 +1000 | [diff] [blame] | 539 | DRM_ERROR("displayport link status failed\n"); |
| 540 | return false; |
| 541 | } |
| 542 | |
Dave Airlie | d9fdaaf | 2010-08-02 10:42:55 +1000 | [diff] [blame] | 543 | DRM_DEBUG_KMS("link status %02x %02x %02x %02x %02x %02x\n", |
Alex Deucher | 53c1e09 | 2009-11-27 13:14:37 -0500 | [diff] [blame] | 544 | link_status[0], link_status[1], link_status[2], |
| 545 | link_status[3], link_status[4], link_status[5]); |
Dave Airlie | 746c1aa | 2009-12-08 07:07:28 +1000 | [diff] [blame] | 546 | return true; |
| 547 | } |
| 548 | |
Alex Deucher | d4877cf | 2009-12-04 16:56:37 -0500 | [diff] [blame] | 549 | bool radeon_dp_needs_link_train(struct radeon_connector *radeon_connector) |
| 550 | { |
| 551 | struct radeon_connector_atom_dig *dig_connector = radeon_connector->con_priv; |
| 552 | u8 link_status[DP_LINK_STATUS_SIZE]; |
| 553 | |
| 554 | if (!atom_dp_get_link_status(radeon_connector, link_status)) |
| 555 | return false; |
| 556 | if (dp_channel_eq_ok(link_status, dig_connector->dp_lane_count)) |
| 557 | return false; |
| 558 | return true; |
| 559 | } |
| 560 | |
Dave Airlie | 746c1aa | 2009-12-08 07:07:28 +1000 | [diff] [blame] | 561 | static void dp_set_power(struct radeon_connector *radeon_connector, u8 power_state) |
| 562 | { |
Alex Deucher | 5801ead | 2009-11-24 13:32:59 -0500 | [diff] [blame] | 563 | struct radeon_connector_atom_dig *dig_connector = radeon_connector->con_priv; |
| 564 | |
| 565 | if (dig_connector->dpcd[0] >= 0x11) { |
Alex Deucher | 834b290 | 2011-05-20 04:34:24 -0400 | [diff] [blame] | 566 | radeon_dp_aux_native_write(radeon_connector, DP_SET_POWER, |
| 567 | &power_state, 1, 0); |
Dave Airlie | 746c1aa | 2009-12-08 07:07:28 +1000 | [diff] [blame] | 568 | } |
| 569 | } |
| 570 | |
Alex Deucher | 5801ead | 2009-11-24 13:32:59 -0500 | [diff] [blame] | 571 | static void dp_set_downspread(struct radeon_connector *radeon_connector, u8 downspread) |
| 572 | { |
Alex Deucher | 834b290 | 2011-05-20 04:34:24 -0400 | [diff] [blame] | 573 | radeon_dp_aux_native_write(radeon_connector, DP_DOWNSPREAD_CTRL, |
| 574 | &downspread, 1, 0); |
Alex Deucher | 5801ead | 2009-11-24 13:32:59 -0500 | [diff] [blame] | 575 | } |
| 576 | |
| 577 | static void dp_set_link_bw_lanes(struct radeon_connector *radeon_connector, |
| 578 | u8 link_configuration[DP_LINK_CONFIGURATION_SIZE]) |
| 579 | { |
Alex Deucher | 834b290 | 2011-05-20 04:34:24 -0400 | [diff] [blame] | 580 | radeon_dp_aux_native_write(radeon_connector, DP_LINK_BW_SET, |
| 581 | link_configuration, 2, 0); |
Alex Deucher | 5801ead | 2009-11-24 13:32:59 -0500 | [diff] [blame] | 582 | } |
| 583 | |
Dave Airlie | 746c1aa | 2009-12-08 07:07:28 +1000 | [diff] [blame] | 584 | static void dp_update_dpvs_emph(struct radeon_connector *radeon_connector, |
Alex Deucher | 5801ead | 2009-11-24 13:32:59 -0500 | [diff] [blame] | 585 | struct drm_encoder *encoder, |
Dave Airlie | 746c1aa | 2009-12-08 07:07:28 +1000 | [diff] [blame] | 586 | u8 train_set[4]) |
| 587 | { |
Alex Deucher | 5801ead | 2009-11-24 13:32:59 -0500 | [diff] [blame] | 588 | struct radeon_connector_atom_dig *dig_connector = radeon_connector->con_priv; |
| 589 | int i; |
Dave Airlie | 746c1aa | 2009-12-08 07:07:28 +1000 | [diff] [blame] | 590 | |
Alex Deucher | 5801ead | 2009-11-24 13:32:59 -0500 | [diff] [blame] | 591 | for (i = 0; i < dig_connector->dp_lane_count; i++) |
| 592 | atombios_dig_transmitter_setup(encoder, |
| 593 | ATOM_TRANSMITTER_ACTION_SETUP_VSEMPH, |
| 594 | i, train_set[i]); |
| 595 | |
Dave Airlie | 746c1aa | 2009-12-08 07:07:28 +1000 | [diff] [blame] | 596 | radeon_dp_aux_native_write(radeon_connector, DP_TRAINING_LANE0_SET, |
Alex Deucher | 834b290 | 2011-05-20 04:34:24 -0400 | [diff] [blame] | 597 | train_set, dig_connector->dp_lane_count, 0); |
Dave Airlie | 746c1aa | 2009-12-08 07:07:28 +1000 | [diff] [blame] | 598 | } |
| 599 | |
| 600 | static void dp_set_training(struct radeon_connector *radeon_connector, |
| 601 | u8 training) |
| 602 | { |
| 603 | radeon_dp_aux_native_write(radeon_connector, DP_TRAINING_PATTERN_SET, |
Alex Deucher | 834b290 | 2011-05-20 04:34:24 -0400 | [diff] [blame] | 604 | &training, 1, 0); |
Dave Airlie | 746c1aa | 2009-12-08 07:07:28 +1000 | [diff] [blame] | 605 | } |
| 606 | |
Alex Deucher | 5801ead | 2009-11-24 13:32:59 -0500 | [diff] [blame] | 607 | void dp_link_train(struct drm_encoder *encoder, |
| 608 | struct drm_connector *connector) |
| 609 | { |
| 610 | struct drm_device *dev = encoder->dev; |
| 611 | struct radeon_device *rdev = dev->dev_private; |
| 612 | struct radeon_encoder *radeon_encoder = to_radeon_encoder(encoder); |
| 613 | struct radeon_encoder_atom_dig *dig; |
| 614 | struct radeon_connector *radeon_connector; |
| 615 | struct radeon_connector_atom_dig *dig_connector; |
| 616 | int enc_id = 0; |
| 617 | bool clock_recovery, channel_eq; |
| 618 | u8 link_status[DP_LINK_STATUS_SIZE]; |
| 619 | u8 link_configuration[DP_LINK_CONFIGURATION_SIZE]; |
| 620 | u8 tries, voltage; |
| 621 | u8 train_set[4]; |
| 622 | int i; |
| 623 | |
Dave Airlie | 97b94cc | 2010-01-29 15:31:47 +1000 | [diff] [blame] | 624 | if ((connector->connector_type != DRM_MODE_CONNECTOR_DisplayPort) && |
Alex Deucher | 196c58d | 2010-01-07 14:22:32 -0500 | [diff] [blame] | 625 | (connector->connector_type != DRM_MODE_CONNECTOR_eDP)) |
Alex Deucher | 5801ead | 2009-11-24 13:32:59 -0500 | [diff] [blame] | 626 | return; |
| 627 | |
| 628 | if (!radeon_encoder->enc_priv) |
| 629 | return; |
| 630 | dig = radeon_encoder->enc_priv; |
| 631 | |
| 632 | radeon_connector = to_radeon_connector(connector); |
| 633 | if (!radeon_connector->con_priv) |
| 634 | return; |
| 635 | dig_connector = radeon_connector->con_priv; |
| 636 | |
Dave Airlie | f28cf33 | 2010-01-28 17:15:25 +1000 | [diff] [blame] | 637 | if (dig->dig_encoder) |
| 638 | enc_id |= ATOM_DP_CONFIG_DIG2_ENCODER; |
| 639 | else |
| 640 | enc_id |= ATOM_DP_CONFIG_DIG1_ENCODER; |
Alex Deucher | 5137ee9 | 2010-08-12 18:58:47 -0400 | [diff] [blame] | 641 | if (dig->linkb) |
Dave Airlie | f28cf33 | 2010-01-28 17:15:25 +1000 | [diff] [blame] | 642 | enc_id |= ATOM_DP_CONFIG_LINK_B; |
| 643 | else |
| 644 | enc_id |= ATOM_DP_CONFIG_LINK_A; |
Alex Deucher | 5801ead | 2009-11-24 13:32:59 -0500 | [diff] [blame] | 645 | |
| 646 | memset(link_configuration, 0, DP_LINK_CONFIGURATION_SIZE); |
| 647 | if (dig_connector->dp_clock == 270000) |
| 648 | link_configuration[0] = DP_LINK_BW_2_7; |
| 649 | else |
| 650 | link_configuration[0] = DP_LINK_BW_1_62; |
| 651 | link_configuration[1] = dig_connector->dp_lane_count; |
| 652 | if (dig_connector->dpcd[0] >= 0x11) |
| 653 | link_configuration[1] |= DP_LANE_COUNT_ENHANCED_FRAME_EN; |
| 654 | |
| 655 | /* power up the sink */ |
| 656 | dp_set_power(radeon_connector, DP_SET_POWER_D0); |
| 657 | /* disable the training pattern on the sink */ |
| 658 | dp_set_training(radeon_connector, DP_TRAINING_PATTERN_DISABLE); |
| 659 | /* set link bw and lanes on the sink */ |
| 660 | dp_set_link_bw_lanes(radeon_connector, link_configuration); |
| 661 | /* disable downspread on the sink */ |
| 662 | dp_set_downspread(radeon_connector, 0); |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 663 | if (ASIC_IS_DCE4(rdev)) { |
| 664 | /* start training on the source */ |
Alex Deucher | 558e27d | 2011-05-20 04:34:27 -0400 | [diff] [blame^] | 665 | atombios_dig_encoder_setup(encoder, ATOM_ENCODER_CMD_DP_LINK_TRAINING_START, 0); |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 666 | /* set training pattern 1 on the source */ |
Alex Deucher | 558e27d | 2011-05-20 04:34:27 -0400 | [diff] [blame^] | 667 | atombios_dig_encoder_setup(encoder, ATOM_ENCODER_CMD_DP_LINK_TRAINING_PATTERN1, 0); |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 668 | } else { |
| 669 | /* start training on the source */ |
| 670 | radeon_dp_encoder_service(rdev, ATOM_DP_ACTION_TRAINING_START, |
| 671 | dig_connector->dp_clock, enc_id, 0); |
| 672 | /* set training pattern 1 on the source */ |
| 673 | radeon_dp_encoder_service(rdev, ATOM_DP_ACTION_TRAINING_PATTERN_SEL, |
| 674 | dig_connector->dp_clock, enc_id, 0); |
| 675 | } |
Alex Deucher | 5801ead | 2009-11-24 13:32:59 -0500 | [diff] [blame] | 676 | |
| 677 | /* set initial vs/emph */ |
| 678 | memset(train_set, 0, 4); |
Alex Deucher | 5801ead | 2009-11-24 13:32:59 -0500 | [diff] [blame] | 679 | udelay(400); |
| 680 | /* set training pattern 1 on the sink */ |
| 681 | dp_set_training(radeon_connector, DP_TRAINING_PATTERN_1); |
| 682 | |
Dave Airlie | 5fbfce7 | 2009-11-26 08:55:18 +1000 | [diff] [blame] | 683 | dp_update_dpvs_emph(radeon_connector, encoder, train_set); |
| 684 | |
Alex Deucher | 5801ead | 2009-11-24 13:32:59 -0500 | [diff] [blame] | 685 | /* clock recovery loop */ |
| 686 | clock_recovery = false; |
| 687 | tries = 0; |
| 688 | voltage = 0xff; |
| 689 | for (;;) { |
| 690 | udelay(100); |
| 691 | if (!atom_dp_get_link_status(radeon_connector, link_status)) |
| 692 | break; |
| 693 | |
| 694 | if (dp_clock_recovery_ok(link_status, dig_connector->dp_lane_count)) { |
| 695 | clock_recovery = true; |
| 696 | break; |
| 697 | } |
| 698 | |
| 699 | for (i = 0; i < dig_connector->dp_lane_count; i++) { |
| 700 | if ((train_set[i] & DP_TRAIN_MAX_SWING_REACHED) == 0) |
| 701 | break; |
| 702 | } |
| 703 | if (i == dig_connector->dp_lane_count) { |
| 704 | DRM_ERROR("clock recovery reached max voltage\n"); |
| 705 | break; |
| 706 | } |
| 707 | |
| 708 | if ((train_set[0] & DP_TRAIN_VOLTAGE_SWING_MASK) == voltage) { |
| 709 | ++tries; |
| 710 | if (tries == 5) { |
| 711 | DRM_ERROR("clock recovery tried 5 times\n"); |
| 712 | break; |
| 713 | } |
| 714 | } else |
| 715 | tries = 0; |
| 716 | |
| 717 | voltage = train_set[0] & DP_TRAIN_VOLTAGE_SWING_MASK; |
| 718 | |
| 719 | /* Compute new train_set as requested by sink */ |
| 720 | dp_get_adjust_train(link_status, dig_connector->dp_lane_count, train_set); |
| 721 | dp_update_dpvs_emph(radeon_connector, encoder, train_set); |
| 722 | } |
| 723 | if (!clock_recovery) |
| 724 | DRM_ERROR("clock recovery failed\n"); |
| 725 | else |
Dave Airlie | d9fdaaf | 2010-08-02 10:42:55 +1000 | [diff] [blame] | 726 | DRM_DEBUG_KMS("clock recovery at voltage %d pre-emphasis %d\n", |
Alex Deucher | 53c1e09 | 2009-11-27 13:14:37 -0500 | [diff] [blame] | 727 | train_set[0] & DP_TRAIN_VOLTAGE_SWING_MASK, |
| 728 | (train_set[0] & DP_TRAIN_PRE_EMPHASIS_MASK) >> |
| 729 | DP_TRAIN_PRE_EMPHASIS_SHIFT); |
Alex Deucher | 5801ead | 2009-11-24 13:32:59 -0500 | [diff] [blame] | 730 | |
| 731 | |
| 732 | /* set training pattern 2 on the sink */ |
| 733 | dp_set_training(radeon_connector, DP_TRAINING_PATTERN_2); |
| 734 | /* set training pattern 2 on the source */ |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 735 | if (ASIC_IS_DCE4(rdev)) |
Alex Deucher | 558e27d | 2011-05-20 04:34:27 -0400 | [diff] [blame^] | 736 | atombios_dig_encoder_setup(encoder, ATOM_ENCODER_CMD_DP_LINK_TRAINING_PATTERN2, 0); |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 737 | else |
| 738 | radeon_dp_encoder_service(rdev, ATOM_DP_ACTION_TRAINING_PATTERN_SEL, |
| 739 | dig_connector->dp_clock, enc_id, 1); |
Alex Deucher | 5801ead | 2009-11-24 13:32:59 -0500 | [diff] [blame] | 740 | |
| 741 | /* channel equalization loop */ |
| 742 | tries = 0; |
| 743 | channel_eq = false; |
| 744 | for (;;) { |
| 745 | udelay(400); |
| 746 | if (!atom_dp_get_link_status(radeon_connector, link_status)) |
| 747 | break; |
| 748 | |
| 749 | if (dp_channel_eq_ok(link_status, dig_connector->dp_lane_count)) { |
| 750 | channel_eq = true; |
| 751 | break; |
| 752 | } |
| 753 | |
| 754 | /* Try 5 times */ |
| 755 | if (tries > 5) { |
| 756 | DRM_ERROR("channel eq failed: 5 tries\n"); |
| 757 | break; |
| 758 | } |
| 759 | |
| 760 | /* Compute new train_set as requested by sink */ |
| 761 | dp_get_adjust_train(link_status, dig_connector->dp_lane_count, train_set); |
| 762 | dp_update_dpvs_emph(radeon_connector, encoder, train_set); |
| 763 | |
| 764 | tries++; |
| 765 | } |
| 766 | |
| 767 | if (!channel_eq) |
| 768 | DRM_ERROR("channel eq failed\n"); |
| 769 | else |
Dave Airlie | d9fdaaf | 2010-08-02 10:42:55 +1000 | [diff] [blame] | 770 | DRM_DEBUG_KMS("channel eq at voltage %d pre-emphasis %d\n", |
Alex Deucher | 53c1e09 | 2009-11-27 13:14:37 -0500 | [diff] [blame] | 771 | train_set[0] & DP_TRAIN_VOLTAGE_SWING_MASK, |
| 772 | (train_set[0] & DP_TRAIN_PRE_EMPHASIS_MASK) |
| 773 | >> DP_TRAIN_PRE_EMPHASIS_SHIFT); |
Alex Deucher | 5801ead | 2009-11-24 13:32:59 -0500 | [diff] [blame] | 774 | |
| 775 | /* disable the training pattern on the sink */ |
Alex Deucher | 3b01a11 | 2010-03-30 02:03:48 -0400 | [diff] [blame] | 776 | dp_set_training(radeon_connector, DP_TRAINING_PATTERN_DISABLE); |
| 777 | |
| 778 | /* disable the training pattern on the source */ |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 779 | if (ASIC_IS_DCE4(rdev)) |
Alex Deucher | 558e27d | 2011-05-20 04:34:27 -0400 | [diff] [blame^] | 780 | atombios_dig_encoder_setup(encoder, ATOM_ENCODER_CMD_DP_LINK_TRAINING_COMPLETE, 0); |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 781 | else |
| 782 | radeon_dp_encoder_service(rdev, ATOM_DP_ACTION_TRAINING_COMPLETE, |
| 783 | dig_connector->dp_clock, enc_id, 0); |
Alex Deucher | 5801ead | 2009-11-24 13:32:59 -0500 | [diff] [blame] | 784 | } |
| 785 | |
Dave Airlie | 746c1aa | 2009-12-08 07:07:28 +1000 | [diff] [blame] | 786 | int radeon_dp_i2c_aux_ch(struct i2c_adapter *adapter, int mode, |
Alex Deucher | 834b290 | 2011-05-20 04:34:24 -0400 | [diff] [blame] | 787 | u8 write_byte, u8 *read_byte) |
Dave Airlie | 746c1aa | 2009-12-08 07:07:28 +1000 | [diff] [blame] | 788 | { |
| 789 | struct i2c_algo_dp_aux_data *algo_data = adapter->algo_data; |
| 790 | struct radeon_i2c_chan *auxch = (struct radeon_i2c_chan *)adapter; |
Alex Deucher | 834b290 | 2011-05-20 04:34:24 -0400 | [diff] [blame] | 791 | u16 address = algo_data->address; |
| 792 | u8 msg[5]; |
| 793 | u8 reply[2]; |
| 794 | unsigned retry; |
| 795 | int msg_bytes; |
| 796 | int reply_bytes = 1; |
| 797 | int ret; |
| 798 | u8 ack; |
Dave Airlie | 746c1aa | 2009-12-08 07:07:28 +1000 | [diff] [blame] | 799 | |
| 800 | /* Set up the command byte */ |
| 801 | if (mode & MODE_I2C_READ) |
| 802 | msg[2] = AUX_I2C_READ << 4; |
| 803 | else |
| 804 | msg[2] = AUX_I2C_WRITE << 4; |
| 805 | |
| 806 | if (!(mode & MODE_I2C_STOP)) |
| 807 | msg[2] |= AUX_I2C_MOT << 4; |
| 808 | |
| 809 | msg[0] = address; |
| 810 | msg[1] = address >> 8; |
| 811 | |
Dave Airlie | 746c1aa | 2009-12-08 07:07:28 +1000 | [diff] [blame] | 812 | switch (mode) { |
| 813 | case MODE_I2C_WRITE: |
Alex Deucher | 834b290 | 2011-05-20 04:34:24 -0400 | [diff] [blame] | 814 | msg_bytes = 5; |
| 815 | msg[3] = msg_bytes << 4; |
Dave Airlie | 746c1aa | 2009-12-08 07:07:28 +1000 | [diff] [blame] | 816 | msg[4] = write_byte; |
Dave Airlie | 746c1aa | 2009-12-08 07:07:28 +1000 | [diff] [blame] | 817 | break; |
| 818 | case MODE_I2C_READ: |
Alex Deucher | 834b290 | 2011-05-20 04:34:24 -0400 | [diff] [blame] | 819 | msg_bytes = 4; |
| 820 | msg[3] = msg_bytes << 4; |
Dave Airlie | 746c1aa | 2009-12-08 07:07:28 +1000 | [diff] [blame] | 821 | break; |
| 822 | default: |
Alex Deucher | 834b290 | 2011-05-20 04:34:24 -0400 | [diff] [blame] | 823 | msg_bytes = 4; |
| 824 | msg[3] = 3 << 4; |
Dave Airlie | 746c1aa | 2009-12-08 07:07:28 +1000 | [diff] [blame] | 825 | break; |
| 826 | } |
| 827 | |
Alex Deucher | 834b290 | 2011-05-20 04:34:24 -0400 | [diff] [blame] | 828 | for (retry = 0; retry < 4; retry++) { |
| 829 | ret = radeon_process_aux_ch(auxch, |
| 830 | msg, msg_bytes, reply, reply_bytes, 0, &ack); |
| 831 | if (ret < 0) { |
| 832 | DRM_DEBUG_KMS("aux_ch failed %d\n", ret); |
| 833 | return ret; |
| 834 | } |
Dave Airlie | 746c1aa | 2009-12-08 07:07:28 +1000 | [diff] [blame] | 835 | |
Alex Deucher | 834b290 | 2011-05-20 04:34:24 -0400 | [diff] [blame] | 836 | switch (ack & AUX_NATIVE_REPLY_MASK) { |
| 837 | case AUX_NATIVE_REPLY_ACK: |
| 838 | /* I2C-over-AUX Reply field is only valid |
| 839 | * when paired with AUX ACK. |
| 840 | */ |
| 841 | break; |
| 842 | case AUX_NATIVE_REPLY_NACK: |
| 843 | DRM_DEBUG_KMS("aux_ch native nack\n"); |
| 844 | return -EREMOTEIO; |
| 845 | case AUX_NATIVE_REPLY_DEFER: |
| 846 | DRM_DEBUG_KMS("aux_ch native defer\n"); |
| 847 | udelay(400); |
| 848 | continue; |
| 849 | default: |
| 850 | DRM_ERROR("aux_ch invalid native reply 0x%02x\n", ack); |
| 851 | return -EREMOTEIO; |
| 852 | } |
| 853 | |
| 854 | switch (ack & AUX_I2C_REPLY_MASK) { |
| 855 | case AUX_I2C_REPLY_ACK: |
| 856 | if (mode == MODE_I2C_READ) |
| 857 | *read_byte = reply[0]; |
| 858 | return ret; |
| 859 | case AUX_I2C_REPLY_NACK: |
| 860 | DRM_DEBUG_KMS("aux_i2c nack\n"); |
| 861 | return -EREMOTEIO; |
| 862 | case AUX_I2C_REPLY_DEFER: |
| 863 | DRM_DEBUG_KMS("aux_i2c defer\n"); |
| 864 | udelay(400); |
| 865 | break; |
| 866 | default: |
| 867 | DRM_ERROR("aux_i2c invalid reply 0x%02x\n", ack); |
| 868 | return -EREMOTEIO; |
| 869 | } |
Dave Airlie | 746c1aa | 2009-12-08 07:07:28 +1000 | [diff] [blame] | 870 | } |
Alex Deucher | 834b290 | 2011-05-20 04:34:24 -0400 | [diff] [blame] | 871 | |
| 872 | DRM_ERROR("aux i2c too many retries, giving up\n"); |
Dave Airlie | 746c1aa | 2009-12-08 07:07:28 +1000 | [diff] [blame] | 873 | return -EREMOTEIO; |
| 874 | } |
Alex Deucher | 5801ead | 2009-11-24 13:32:59 -0500 | [diff] [blame] | 875 | |