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 | |
Alex Deucher | 224d94b | 2011-05-20 04:34:28 -0400 | [diff] [blame] | 46 | /***** radeon AUX functions *****/ |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 47 | union aux_channel_transaction { |
| 48 | PROCESS_AUX_CHANNEL_TRANSACTION_PS_ALLOCATION v1; |
| 49 | PROCESS_AUX_CHANNEL_TRANSACTION_PARAMETERS_V2 v2; |
| 50 | }; |
Alex Deucher | 5801ead | 2009-11-24 13:32:59 -0500 | [diff] [blame] | 51 | |
Alex Deucher | 834b290 | 2011-05-20 04:34:24 -0400 | [diff] [blame] | 52 | static int radeon_process_aux_ch(struct radeon_i2c_chan *chan, |
| 53 | u8 *send, int send_bytes, |
| 54 | u8 *recv, int recv_size, |
| 55 | u8 delay, u8 *ack) |
Dave Airlie | 746c1aa | 2009-12-08 07:07:28 +1000 | [diff] [blame] | 56 | { |
| 57 | struct drm_device *dev = chan->dev; |
| 58 | struct radeon_device *rdev = dev->dev_private; |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 59 | union aux_channel_transaction args; |
Dave Airlie | 746c1aa | 2009-12-08 07:07:28 +1000 | [diff] [blame] | 60 | int index = GetIndexIntoMasterTable(COMMAND, ProcessAuxChannelTransaction); |
| 61 | unsigned char *base; |
Alex Deucher | 834b290 | 2011-05-20 04:34:24 -0400 | [diff] [blame] | 62 | int recv_bytes; |
Alex Deucher | 1a66c95 | 2009-11-20 19:40:13 -0500 | [diff] [blame] | 63 | |
Dave Airlie | 746c1aa | 2009-12-08 07:07:28 +1000 | [diff] [blame] | 64 | memset(&args, 0, sizeof(args)); |
Alex Deucher | 1a66c95 | 2009-11-20 19:40:13 -0500 | [diff] [blame] | 65 | |
Alex Deucher | 97412a7 | 2012-03-20 17:18:06 -0400 | [diff] [blame^] | 66 | base = (unsigned char *)(rdev->mode_info.atom_context->scratch + 1); |
Dave Airlie | 746c1aa | 2009-12-08 07:07:28 +1000 | [diff] [blame] | 67 | |
Alex Deucher | 834b290 | 2011-05-20 04:34:24 -0400 | [diff] [blame] | 68 | memcpy(base, send, send_bytes); |
Dave Airlie | 746c1aa | 2009-12-08 07:07:28 +1000 | [diff] [blame] | 69 | |
Alex Deucher | 97412a7 | 2012-03-20 17:18:06 -0400 | [diff] [blame^] | 70 | args.v1.lpAuxRequest = 0 + 4; |
| 71 | args.v1.lpDataOut = 16 + 4; |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 72 | args.v1.ucDataOutLen = 0; |
| 73 | args.v1.ucChannelID = chan->rec.i2c_id; |
| 74 | args.v1.ucDelay = delay / 10; |
| 75 | if (ASIC_IS_DCE4(rdev)) |
Alex Deucher | 8e36ed0 | 2010-05-18 19:26:47 -0400 | [diff] [blame] | 76 | args.v2.ucHPD_ID = chan->rec.hpd; |
Dave Airlie | 746c1aa | 2009-12-08 07:07:28 +1000 | [diff] [blame] | 77 | |
| 78 | atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args); |
| 79 | |
Alex Deucher | 834b290 | 2011-05-20 04:34:24 -0400 | [diff] [blame] | 80 | *ack = args.v1.ucReplyStatus; |
| 81 | |
| 82 | /* timeout */ |
| 83 | if (args.v1.ucReplyStatus == 1) { |
| 84 | DRM_DEBUG_KMS("dp_aux_ch timeout\n"); |
| 85 | return -ETIMEDOUT; |
Dave Airlie | 746c1aa | 2009-12-08 07:07:28 +1000 | [diff] [blame] | 86 | } |
| 87 | |
Alex Deucher | 834b290 | 2011-05-20 04:34:24 -0400 | [diff] [blame] | 88 | /* flags not zero */ |
| 89 | if (args.v1.ucReplyStatus == 2) { |
| 90 | DRM_DEBUG_KMS("dp_aux_ch flags not zero\n"); |
| 91 | return -EBUSY; |
Dave Airlie | 746c1aa | 2009-12-08 07:07:28 +1000 | [diff] [blame] | 92 | } |
Alex Deucher | 834b290 | 2011-05-20 04:34:24 -0400 | [diff] [blame] | 93 | |
| 94 | /* error */ |
| 95 | if (args.v1.ucReplyStatus == 3) { |
| 96 | DRM_DEBUG_KMS("dp_aux_ch error\n"); |
| 97 | return -EIO; |
| 98 | } |
| 99 | |
| 100 | recv_bytes = args.v1.ucDataOutLen; |
| 101 | if (recv_bytes > recv_size) |
| 102 | recv_bytes = recv_size; |
| 103 | |
| 104 | if (recv && recv_size) |
| 105 | memcpy(recv, base + 16, recv_bytes); |
| 106 | |
| 107 | return recv_bytes; |
Dave Airlie | 746c1aa | 2009-12-08 07:07:28 +1000 | [diff] [blame] | 108 | } |
| 109 | |
Alex Deucher | 834b290 | 2011-05-20 04:34:24 -0400 | [diff] [blame] | 110 | static int radeon_dp_aux_native_write(struct radeon_connector *radeon_connector, |
| 111 | u16 address, u8 *send, u8 send_bytes, u8 delay) |
Alex Deucher | 5801ead | 2009-11-24 13:32:59 -0500 | [diff] [blame] | 112 | { |
| 113 | struct radeon_connector_atom_dig *dig_connector = radeon_connector->con_priv; |
Alex Deucher | 834b290 | 2011-05-20 04:34:24 -0400 | [diff] [blame] | 114 | int ret; |
Alex Deucher | 5801ead | 2009-11-24 13:32:59 -0500 | [diff] [blame] | 115 | u8 msg[20]; |
Alex Deucher | 834b290 | 2011-05-20 04:34:24 -0400 | [diff] [blame] | 116 | int msg_bytes = send_bytes + 4; |
| 117 | u8 ack; |
Alex Deucher | 6375bda | 2011-10-03 09:13:46 -0400 | [diff] [blame] | 118 | unsigned retry; |
Alex Deucher | 5801ead | 2009-11-24 13:32:59 -0500 | [diff] [blame] | 119 | |
Alex Deucher | 834b290 | 2011-05-20 04:34:24 -0400 | [diff] [blame] | 120 | if (send_bytes > 16) |
| 121 | return -1; |
| 122 | |
Alex Deucher | 5801ead | 2009-11-24 13:32:59 -0500 | [diff] [blame] | 123 | msg[0] = address; |
| 124 | msg[1] = address >> 8; |
| 125 | msg[2] = AUX_NATIVE_WRITE << 4; |
Alex Deucher | 834b290 | 2011-05-20 04:34:24 -0400 | [diff] [blame] | 126 | msg[3] = (msg_bytes << 4) | (send_bytes - 1); |
Alex Deucher | 5801ead | 2009-11-24 13:32:59 -0500 | [diff] [blame] | 127 | memcpy(&msg[4], send, send_bytes); |
Alex Deucher | 834b290 | 2011-05-20 04:34:24 -0400 | [diff] [blame] | 128 | |
Alex Deucher | 6375bda | 2011-10-03 09:13:46 -0400 | [diff] [blame] | 129 | for (retry = 0; retry < 4; retry++) { |
Alex Deucher | 834b290 | 2011-05-20 04:34:24 -0400 | [diff] [blame] | 130 | ret = radeon_process_aux_ch(dig_connector->dp_i2c_bus, |
| 131 | msg, msg_bytes, NULL, 0, delay, &ack); |
Alex Deucher | 4f33284 | 2011-10-04 17:23:15 -0400 | [diff] [blame] | 132 | if (ret == -EBUSY) |
| 133 | continue; |
| 134 | else if (ret < 0) |
Alex Deucher | 834b290 | 2011-05-20 04:34:24 -0400 | [diff] [blame] | 135 | return ret; |
| 136 | if ((ack & AUX_NATIVE_REPLY_MASK) == AUX_NATIVE_REPLY_ACK) |
Alex Deucher | 6375bda | 2011-10-03 09:13:46 -0400 | [diff] [blame] | 137 | return send_bytes; |
Alex Deucher | 834b290 | 2011-05-20 04:34:24 -0400 | [diff] [blame] | 138 | else if ((ack & AUX_NATIVE_REPLY_MASK) == AUX_NATIVE_REPLY_DEFER) |
| 139 | udelay(400); |
| 140 | else |
| 141 | return -EIO; |
| 142 | } |
| 143 | |
Alex Deucher | 6375bda | 2011-10-03 09:13:46 -0400 | [diff] [blame] | 144 | return -EIO; |
Alex Deucher | 5801ead | 2009-11-24 13:32:59 -0500 | [diff] [blame] | 145 | } |
| 146 | |
Alex Deucher | 834b290 | 2011-05-20 04:34:24 -0400 | [diff] [blame] | 147 | static int radeon_dp_aux_native_read(struct radeon_connector *radeon_connector, |
| 148 | u16 address, u8 *recv, int recv_bytes, u8 delay) |
Alex Deucher | 5801ead | 2009-11-24 13:32:59 -0500 | [diff] [blame] | 149 | { |
| 150 | struct radeon_connector_atom_dig *dig_connector = radeon_connector->con_priv; |
Alex Deucher | 834b290 | 2011-05-20 04:34:24 -0400 | [diff] [blame] | 151 | u8 msg[4]; |
| 152 | int msg_bytes = 4; |
| 153 | u8 ack; |
| 154 | int ret; |
Alex Deucher | 6375bda | 2011-10-03 09:13:46 -0400 | [diff] [blame] | 155 | unsigned retry; |
Alex Deucher | 834b290 | 2011-05-20 04:34:24 -0400 | [diff] [blame] | 156 | |
Alex Deucher | 5801ead | 2009-11-24 13:32:59 -0500 | [diff] [blame] | 157 | msg[0] = address; |
| 158 | msg[1] = address >> 8; |
| 159 | msg[2] = AUX_NATIVE_READ << 4; |
Alex Deucher | 834b290 | 2011-05-20 04:34:24 -0400 | [diff] [blame] | 160 | msg[3] = (msg_bytes << 4) | (recv_bytes - 1); |
Alex Deucher | 5801ead | 2009-11-24 13:32:59 -0500 | [diff] [blame] | 161 | |
Alex Deucher | 6375bda | 2011-10-03 09:13:46 -0400 | [diff] [blame] | 162 | for (retry = 0; retry < 4; retry++) { |
Alex Deucher | 834b290 | 2011-05-20 04:34:24 -0400 | [diff] [blame] | 163 | ret = radeon_process_aux_ch(dig_connector->dp_i2c_bus, |
| 164 | msg, msg_bytes, recv, recv_bytes, delay, &ack); |
Alex Deucher | 4f33284 | 2011-10-04 17:23:15 -0400 | [diff] [blame] | 165 | if (ret == -EBUSY) |
| 166 | continue; |
| 167 | else if (ret < 0) |
Alex Deucher | 834b290 | 2011-05-20 04:34:24 -0400 | [diff] [blame] | 168 | return ret; |
| 169 | if ((ack & AUX_NATIVE_REPLY_MASK) == AUX_NATIVE_REPLY_ACK) |
| 170 | return ret; |
| 171 | else if ((ack & AUX_NATIVE_REPLY_MASK) == AUX_NATIVE_REPLY_DEFER) |
| 172 | udelay(400); |
Alex Deucher | 109bc10 | 2011-10-03 09:13:45 -0400 | [diff] [blame] | 173 | else if (ret == 0) |
| 174 | return -EPROTO; |
Alex Deucher | 834b290 | 2011-05-20 04:34:24 -0400 | [diff] [blame] | 175 | else |
| 176 | return -EIO; |
| 177 | } |
Alex Deucher | 6375bda | 2011-10-03 09:13:46 -0400 | [diff] [blame] | 178 | |
| 179 | return -EIO; |
Alex Deucher | 5801ead | 2009-11-24 13:32:59 -0500 | [diff] [blame] | 180 | } |
| 181 | |
Alex Deucher | 224d94b | 2011-05-20 04:34:28 -0400 | [diff] [blame] | 182 | static void radeon_write_dpcd_reg(struct radeon_connector *radeon_connector, |
| 183 | u16 reg, u8 val) |
Dave Airlie | 746c1aa | 2009-12-08 07:07:28 +1000 | [diff] [blame] | 184 | { |
Alex Deucher | 224d94b | 2011-05-20 04:34:28 -0400 | [diff] [blame] | 185 | radeon_dp_aux_native_write(radeon_connector, reg, &val, 1, 0); |
Dave Airlie | 746c1aa | 2009-12-08 07:07:28 +1000 | [diff] [blame] | 186 | } |
| 187 | |
Alex Deucher | 224d94b | 2011-05-20 04:34:28 -0400 | [diff] [blame] | 188 | static u8 radeon_read_dpcd_reg(struct radeon_connector *radeon_connector, |
| 189 | u16 reg) |
Dave Airlie | 746c1aa | 2009-12-08 07:07:28 +1000 | [diff] [blame] | 190 | { |
Alex Deucher | 224d94b | 2011-05-20 04:34:28 -0400 | [diff] [blame] | 191 | u8 val = 0; |
Dave Airlie | 746c1aa | 2009-12-08 07:07:28 +1000 | [diff] [blame] | 192 | |
Alex Deucher | 224d94b | 2011-05-20 04:34:28 -0400 | [diff] [blame] | 193 | radeon_dp_aux_native_read(radeon_connector, reg, &val, 1, 0); |
Dave Airlie | 746c1aa | 2009-12-08 07:07:28 +1000 | [diff] [blame] | 194 | |
Alex Deucher | 224d94b | 2011-05-20 04:34:28 -0400 | [diff] [blame] | 195 | return val; |
Alex Deucher | 5801ead | 2009-11-24 13:32:59 -0500 | [diff] [blame] | 196 | } |
| 197 | |
Dave Airlie | 746c1aa | 2009-12-08 07:07:28 +1000 | [diff] [blame] | 198 | int radeon_dp_i2c_aux_ch(struct i2c_adapter *adapter, int mode, |
Alex Deucher | 834b290 | 2011-05-20 04:34:24 -0400 | [diff] [blame] | 199 | u8 write_byte, u8 *read_byte) |
Dave Airlie | 746c1aa | 2009-12-08 07:07:28 +1000 | [diff] [blame] | 200 | { |
| 201 | struct i2c_algo_dp_aux_data *algo_data = adapter->algo_data; |
| 202 | struct radeon_i2c_chan *auxch = (struct radeon_i2c_chan *)adapter; |
Alex Deucher | 834b290 | 2011-05-20 04:34:24 -0400 | [diff] [blame] | 203 | u16 address = algo_data->address; |
| 204 | u8 msg[5]; |
| 205 | u8 reply[2]; |
| 206 | unsigned retry; |
| 207 | int msg_bytes; |
| 208 | int reply_bytes = 1; |
| 209 | int ret; |
| 210 | u8 ack; |
Dave Airlie | 746c1aa | 2009-12-08 07:07:28 +1000 | [diff] [blame] | 211 | |
| 212 | /* Set up the command byte */ |
| 213 | if (mode & MODE_I2C_READ) |
| 214 | msg[2] = AUX_I2C_READ << 4; |
| 215 | else |
| 216 | msg[2] = AUX_I2C_WRITE << 4; |
| 217 | |
| 218 | if (!(mode & MODE_I2C_STOP)) |
| 219 | msg[2] |= AUX_I2C_MOT << 4; |
| 220 | |
| 221 | msg[0] = address; |
| 222 | msg[1] = address >> 8; |
| 223 | |
Dave Airlie | 746c1aa | 2009-12-08 07:07:28 +1000 | [diff] [blame] | 224 | switch (mode) { |
| 225 | case MODE_I2C_WRITE: |
Alex Deucher | 834b290 | 2011-05-20 04:34:24 -0400 | [diff] [blame] | 226 | msg_bytes = 5; |
| 227 | msg[3] = msg_bytes << 4; |
Dave Airlie | 746c1aa | 2009-12-08 07:07:28 +1000 | [diff] [blame] | 228 | msg[4] = write_byte; |
Dave Airlie | 746c1aa | 2009-12-08 07:07:28 +1000 | [diff] [blame] | 229 | break; |
| 230 | case MODE_I2C_READ: |
Alex Deucher | 834b290 | 2011-05-20 04:34:24 -0400 | [diff] [blame] | 231 | msg_bytes = 4; |
| 232 | msg[3] = msg_bytes << 4; |
Dave Airlie | 746c1aa | 2009-12-08 07:07:28 +1000 | [diff] [blame] | 233 | break; |
| 234 | default: |
Alex Deucher | 834b290 | 2011-05-20 04:34:24 -0400 | [diff] [blame] | 235 | msg_bytes = 4; |
| 236 | msg[3] = 3 << 4; |
Dave Airlie | 746c1aa | 2009-12-08 07:07:28 +1000 | [diff] [blame] | 237 | break; |
| 238 | } |
| 239 | |
Alex Deucher | 834b290 | 2011-05-20 04:34:24 -0400 | [diff] [blame] | 240 | for (retry = 0; retry < 4; retry++) { |
| 241 | ret = radeon_process_aux_ch(auxch, |
| 242 | msg, msg_bytes, reply, reply_bytes, 0, &ack); |
Alex Deucher | 4f33284 | 2011-10-04 17:23:15 -0400 | [diff] [blame] | 243 | if (ret == -EBUSY) |
| 244 | continue; |
| 245 | else if (ret < 0) { |
Alex Deucher | 834b290 | 2011-05-20 04:34:24 -0400 | [diff] [blame] | 246 | DRM_DEBUG_KMS("aux_ch failed %d\n", ret); |
| 247 | return ret; |
| 248 | } |
Dave Airlie | 746c1aa | 2009-12-08 07:07:28 +1000 | [diff] [blame] | 249 | |
Alex Deucher | 834b290 | 2011-05-20 04:34:24 -0400 | [diff] [blame] | 250 | switch (ack & AUX_NATIVE_REPLY_MASK) { |
| 251 | case AUX_NATIVE_REPLY_ACK: |
| 252 | /* I2C-over-AUX Reply field is only valid |
| 253 | * when paired with AUX ACK. |
| 254 | */ |
| 255 | break; |
| 256 | case AUX_NATIVE_REPLY_NACK: |
| 257 | DRM_DEBUG_KMS("aux_ch native nack\n"); |
| 258 | return -EREMOTEIO; |
| 259 | case AUX_NATIVE_REPLY_DEFER: |
| 260 | DRM_DEBUG_KMS("aux_ch native defer\n"); |
| 261 | udelay(400); |
| 262 | continue; |
| 263 | default: |
| 264 | DRM_ERROR("aux_ch invalid native reply 0x%02x\n", ack); |
| 265 | return -EREMOTEIO; |
| 266 | } |
| 267 | |
| 268 | switch (ack & AUX_I2C_REPLY_MASK) { |
| 269 | case AUX_I2C_REPLY_ACK: |
| 270 | if (mode == MODE_I2C_READ) |
| 271 | *read_byte = reply[0]; |
| 272 | return ret; |
| 273 | case AUX_I2C_REPLY_NACK: |
| 274 | DRM_DEBUG_KMS("aux_i2c nack\n"); |
| 275 | return -EREMOTEIO; |
| 276 | case AUX_I2C_REPLY_DEFER: |
| 277 | DRM_DEBUG_KMS("aux_i2c defer\n"); |
| 278 | udelay(400); |
| 279 | break; |
| 280 | default: |
| 281 | DRM_ERROR("aux_i2c invalid reply 0x%02x\n", ack); |
| 282 | return -EREMOTEIO; |
| 283 | } |
Dave Airlie | 746c1aa | 2009-12-08 07:07:28 +1000 | [diff] [blame] | 284 | } |
Alex Deucher | 834b290 | 2011-05-20 04:34:24 -0400 | [diff] [blame] | 285 | |
Alex Deucher | 091264f | 2011-11-08 10:09:58 -0500 | [diff] [blame] | 286 | DRM_DEBUG_KMS("aux i2c too many retries, giving up\n"); |
Dave Airlie | 746c1aa | 2009-12-08 07:07:28 +1000 | [diff] [blame] | 287 | return -EREMOTEIO; |
| 288 | } |
Alex Deucher | 5801ead | 2009-11-24 13:32:59 -0500 | [diff] [blame] | 289 | |
Alex Deucher | 224d94b | 2011-05-20 04:34:28 -0400 | [diff] [blame] | 290 | /***** general DP utility functions *****/ |
| 291 | |
| 292 | static u8 dp_link_status(u8 link_status[DP_LINK_STATUS_SIZE], int r) |
| 293 | { |
| 294 | return link_status[r - DP_LANE0_1_STATUS]; |
| 295 | } |
| 296 | |
| 297 | static u8 dp_get_lane_status(u8 link_status[DP_LINK_STATUS_SIZE], |
| 298 | int lane) |
| 299 | { |
| 300 | int i = DP_LANE0_1_STATUS + (lane >> 1); |
| 301 | int s = (lane & 1) * 4; |
| 302 | u8 l = dp_link_status(link_status, i); |
| 303 | return (l >> s) & 0xf; |
| 304 | } |
| 305 | |
| 306 | static bool dp_clock_recovery_ok(u8 link_status[DP_LINK_STATUS_SIZE], |
| 307 | int lane_count) |
| 308 | { |
| 309 | int lane; |
| 310 | u8 lane_status; |
| 311 | |
| 312 | for (lane = 0; lane < lane_count; lane++) { |
| 313 | lane_status = dp_get_lane_status(link_status, lane); |
| 314 | if ((lane_status & DP_LANE_CR_DONE) == 0) |
| 315 | return false; |
| 316 | } |
| 317 | return true; |
| 318 | } |
| 319 | |
| 320 | static bool dp_channel_eq_ok(u8 link_status[DP_LINK_STATUS_SIZE], |
| 321 | int lane_count) |
| 322 | { |
| 323 | u8 lane_align; |
| 324 | u8 lane_status; |
| 325 | int lane; |
| 326 | |
| 327 | lane_align = dp_link_status(link_status, |
| 328 | DP_LANE_ALIGN_STATUS_UPDATED); |
| 329 | if ((lane_align & DP_INTERLANE_ALIGN_DONE) == 0) |
| 330 | return false; |
| 331 | for (lane = 0; lane < lane_count; lane++) { |
| 332 | lane_status = dp_get_lane_status(link_status, lane); |
| 333 | if ((lane_status & DP_CHANNEL_EQ_BITS) != DP_CHANNEL_EQ_BITS) |
| 334 | return false; |
| 335 | } |
| 336 | return true; |
| 337 | } |
| 338 | |
| 339 | static u8 dp_get_adjust_request_voltage(u8 link_status[DP_LINK_STATUS_SIZE], |
| 340 | int lane) |
| 341 | |
| 342 | { |
| 343 | int i = DP_ADJUST_REQUEST_LANE0_1 + (lane >> 1); |
| 344 | int s = ((lane & 1) ? |
| 345 | DP_ADJUST_VOLTAGE_SWING_LANE1_SHIFT : |
| 346 | DP_ADJUST_VOLTAGE_SWING_LANE0_SHIFT); |
| 347 | u8 l = dp_link_status(link_status, i); |
| 348 | |
| 349 | return ((l >> s) & 0x3) << DP_TRAIN_VOLTAGE_SWING_SHIFT; |
| 350 | } |
| 351 | |
| 352 | static u8 dp_get_adjust_request_pre_emphasis(u8 link_status[DP_LINK_STATUS_SIZE], |
| 353 | int lane) |
| 354 | { |
| 355 | int i = DP_ADJUST_REQUEST_LANE0_1 + (lane >> 1); |
| 356 | int s = ((lane & 1) ? |
| 357 | DP_ADJUST_PRE_EMPHASIS_LANE1_SHIFT : |
| 358 | DP_ADJUST_PRE_EMPHASIS_LANE0_SHIFT); |
| 359 | u8 l = dp_link_status(link_status, i); |
| 360 | |
| 361 | return ((l >> s) & 0x3) << DP_TRAIN_PRE_EMPHASIS_SHIFT; |
| 362 | } |
| 363 | |
| 364 | #define DP_VOLTAGE_MAX DP_TRAIN_VOLTAGE_SWING_1200 |
| 365 | #define DP_PRE_EMPHASIS_MAX DP_TRAIN_PRE_EMPHASIS_9_5 |
| 366 | |
| 367 | static void dp_get_adjust_train(u8 link_status[DP_LINK_STATUS_SIZE], |
| 368 | int lane_count, |
| 369 | u8 train_set[4]) |
| 370 | { |
| 371 | u8 v = 0; |
| 372 | u8 p = 0; |
| 373 | int lane; |
| 374 | |
| 375 | for (lane = 0; lane < lane_count; lane++) { |
| 376 | u8 this_v = dp_get_adjust_request_voltage(link_status, lane); |
| 377 | u8 this_p = dp_get_adjust_request_pre_emphasis(link_status, lane); |
| 378 | |
| 379 | DRM_DEBUG_KMS("requested signal parameters: lane %d voltage %s pre_emph %s\n", |
| 380 | lane, |
| 381 | voltage_names[this_v >> DP_TRAIN_VOLTAGE_SWING_SHIFT], |
| 382 | pre_emph_names[this_p >> DP_TRAIN_PRE_EMPHASIS_SHIFT]); |
| 383 | |
| 384 | if (this_v > v) |
| 385 | v = this_v; |
| 386 | if (this_p > p) |
| 387 | p = this_p; |
| 388 | } |
| 389 | |
| 390 | if (v >= DP_VOLTAGE_MAX) |
| 391 | v |= DP_TRAIN_MAX_SWING_REACHED; |
| 392 | |
| 393 | if (p >= DP_PRE_EMPHASIS_MAX) |
| 394 | p |= DP_TRAIN_MAX_PRE_EMPHASIS_REACHED; |
| 395 | |
| 396 | DRM_DEBUG_KMS("using signal parameters: voltage %s pre_emph %s\n", |
| 397 | voltage_names[(v & DP_TRAIN_VOLTAGE_SWING_MASK) >> DP_TRAIN_VOLTAGE_SWING_SHIFT], |
| 398 | pre_emph_names[(p & DP_TRAIN_PRE_EMPHASIS_MASK) >> DP_TRAIN_PRE_EMPHASIS_SHIFT]); |
| 399 | |
| 400 | for (lane = 0; lane < 4; lane++) |
| 401 | train_set[lane] = v | p; |
| 402 | } |
| 403 | |
| 404 | /* convert bits per color to bits per pixel */ |
| 405 | /* get bpc from the EDID */ |
| 406 | static int convert_bpc_to_bpp(int bpc) |
| 407 | { |
| 408 | if (bpc == 0) |
| 409 | return 24; |
| 410 | else |
| 411 | return bpc * 3; |
| 412 | } |
| 413 | |
| 414 | /* get the max pix clock supported by the link rate and lane num */ |
| 415 | static int dp_get_max_dp_pix_clock(int link_rate, |
| 416 | int lane_num, |
| 417 | int bpp) |
| 418 | { |
| 419 | return (link_rate * lane_num * 8) / bpp; |
| 420 | } |
| 421 | |
| 422 | static int dp_get_max_link_rate(u8 dpcd[DP_DPCD_SIZE]) |
| 423 | { |
| 424 | switch (dpcd[DP_MAX_LINK_RATE]) { |
| 425 | case DP_LINK_BW_1_62: |
| 426 | default: |
| 427 | return 162000; |
| 428 | case DP_LINK_BW_2_7: |
| 429 | return 270000; |
| 430 | case DP_LINK_BW_5_4: |
| 431 | return 540000; |
| 432 | } |
| 433 | } |
| 434 | |
| 435 | static u8 dp_get_max_lane_number(u8 dpcd[DP_DPCD_SIZE]) |
| 436 | { |
| 437 | return dpcd[DP_MAX_LANE_COUNT] & DP_MAX_LANE_COUNT_MASK; |
| 438 | } |
| 439 | |
| 440 | static u8 dp_get_dp_link_rate_coded(int link_rate) |
| 441 | { |
| 442 | switch (link_rate) { |
| 443 | case 162000: |
| 444 | default: |
| 445 | return DP_LINK_BW_1_62; |
| 446 | case 270000: |
| 447 | return DP_LINK_BW_2_7; |
| 448 | case 540000: |
| 449 | return DP_LINK_BW_5_4; |
| 450 | } |
| 451 | } |
| 452 | |
| 453 | /***** radeon specific DP functions *****/ |
| 454 | |
| 455 | /* First get the min lane# when low rate is used according to pixel clock |
| 456 | * (prefer low rate), second check max lane# supported by DP panel, |
| 457 | * if the max lane# < low rate lane# then use max lane# instead. |
| 458 | */ |
| 459 | static int radeon_dp_get_dp_lane_number(struct drm_connector *connector, |
| 460 | u8 dpcd[DP_DPCD_SIZE], |
| 461 | int pix_clock) |
| 462 | { |
| 463 | int bpp = convert_bpc_to_bpp(connector->display_info.bpc); |
| 464 | int max_link_rate = dp_get_max_link_rate(dpcd); |
| 465 | int max_lane_num = dp_get_max_lane_number(dpcd); |
| 466 | int lane_num; |
| 467 | int max_dp_pix_clock; |
| 468 | |
| 469 | for (lane_num = 1; lane_num < max_lane_num; lane_num <<= 1) { |
| 470 | max_dp_pix_clock = dp_get_max_dp_pix_clock(max_link_rate, lane_num, bpp); |
| 471 | if (pix_clock <= max_dp_pix_clock) |
| 472 | break; |
| 473 | } |
| 474 | |
| 475 | return lane_num; |
| 476 | } |
| 477 | |
| 478 | static int radeon_dp_get_dp_link_clock(struct drm_connector *connector, |
| 479 | u8 dpcd[DP_DPCD_SIZE], |
| 480 | int pix_clock) |
| 481 | { |
| 482 | int bpp = convert_bpc_to_bpp(connector->display_info.bpc); |
| 483 | int lane_num, max_pix_clock; |
| 484 | |
Alex Deucher | fdca78c | 2011-10-25 11:54:52 -0400 | [diff] [blame] | 485 | if (radeon_connector_encoder_get_dp_bridge_encoder_id(connector) == |
| 486 | ENCODER_OBJECT_ID_NUTMEG) |
Alex Deucher | 224d94b | 2011-05-20 04:34:28 -0400 | [diff] [blame] | 487 | return 270000; |
| 488 | |
| 489 | lane_num = radeon_dp_get_dp_lane_number(connector, dpcd, pix_clock); |
| 490 | max_pix_clock = dp_get_max_dp_pix_clock(162000, lane_num, bpp); |
| 491 | if (pix_clock <= max_pix_clock) |
| 492 | return 162000; |
| 493 | max_pix_clock = dp_get_max_dp_pix_clock(270000, lane_num, bpp); |
| 494 | if (pix_clock <= max_pix_clock) |
| 495 | return 270000; |
| 496 | if (radeon_connector_is_dp12_capable(connector)) { |
| 497 | max_pix_clock = dp_get_max_dp_pix_clock(540000, lane_num, bpp); |
| 498 | if (pix_clock <= max_pix_clock) |
| 499 | return 540000; |
| 500 | } |
| 501 | |
| 502 | return dp_get_max_link_rate(dpcd); |
| 503 | } |
| 504 | |
| 505 | static u8 radeon_dp_encoder_service(struct radeon_device *rdev, |
| 506 | int action, int dp_clock, |
| 507 | u8 ucconfig, u8 lane_num) |
| 508 | { |
| 509 | DP_ENCODER_SERVICE_PARAMETERS args; |
| 510 | int index = GetIndexIntoMasterTable(COMMAND, DPEncoderService); |
| 511 | |
| 512 | memset(&args, 0, sizeof(args)); |
| 513 | args.ucLinkClock = dp_clock / 10; |
| 514 | args.ucConfig = ucconfig; |
| 515 | args.ucAction = action; |
| 516 | args.ucLaneNum = lane_num; |
| 517 | args.ucStatus = 0; |
| 518 | |
| 519 | atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args); |
| 520 | return args.ucStatus; |
| 521 | } |
| 522 | |
| 523 | u8 radeon_dp_getsinktype(struct radeon_connector *radeon_connector) |
| 524 | { |
| 525 | struct radeon_connector_atom_dig *dig_connector = radeon_connector->con_priv; |
| 526 | struct drm_device *dev = radeon_connector->base.dev; |
| 527 | struct radeon_device *rdev = dev->dev_private; |
| 528 | |
| 529 | return radeon_dp_encoder_service(rdev, ATOM_DP_ACTION_GET_SINK_TYPE, 0, |
| 530 | dig_connector->dp_i2c_bus->rec.i2c_id, 0); |
| 531 | } |
| 532 | |
| 533 | bool radeon_dp_getdpcd(struct radeon_connector *radeon_connector) |
| 534 | { |
| 535 | struct radeon_connector_atom_dig *dig_connector = radeon_connector->con_priv; |
| 536 | u8 msg[25]; |
| 537 | int ret, i; |
| 538 | |
| 539 | ret = radeon_dp_aux_native_read(radeon_connector, DP_DPCD_REV, msg, 8, 0); |
| 540 | if (ret > 0) { |
| 541 | memcpy(dig_connector->dpcd, msg, 8); |
| 542 | DRM_DEBUG_KMS("DPCD: "); |
| 543 | for (i = 0; i < 8; i++) |
| 544 | DRM_DEBUG_KMS("%02x ", msg[i]); |
| 545 | DRM_DEBUG_KMS("\n"); |
| 546 | return true; |
| 547 | } |
| 548 | dig_connector->dpcd[0] = 0; |
| 549 | return false; |
| 550 | } |
| 551 | |
Alex Deucher | 386d4d7 | 2012-01-20 15:01:29 -0500 | [diff] [blame] | 552 | int radeon_dp_get_panel_mode(struct drm_encoder *encoder, |
| 553 | struct drm_connector *connector) |
Alex Deucher | 224d94b | 2011-05-20 04:34:28 -0400 | [diff] [blame] | 554 | { |
| 555 | struct drm_device *dev = encoder->dev; |
| 556 | struct radeon_device *rdev = dev->dev_private; |
Alex Deucher | 00dfb8d | 2011-10-31 08:54:41 -0400 | [diff] [blame] | 557 | struct radeon_connector *radeon_connector = to_radeon_connector(connector); |
Alex Deucher | 224d94b | 2011-05-20 04:34:28 -0400 | [diff] [blame] | 558 | int panel_mode = DP_PANEL_MODE_EXTERNAL_DP_MODE; |
| 559 | |
| 560 | if (!ASIC_IS_DCE4(rdev)) |
Alex Deucher | 386d4d7 | 2012-01-20 15:01:29 -0500 | [diff] [blame] | 561 | return panel_mode; |
Alex Deucher | 224d94b | 2011-05-20 04:34:28 -0400 | [diff] [blame] | 562 | |
Alex Deucher | cf2aff6 | 2011-10-28 16:07:36 -0400 | [diff] [blame] | 563 | if (radeon_connector_encoder_get_dp_bridge_encoder_id(connector) == |
| 564 | ENCODER_OBJECT_ID_NUTMEG) |
Alex Deucher | 224d94b | 2011-05-20 04:34:28 -0400 | [diff] [blame] | 565 | panel_mode = DP_PANEL_MODE_INTERNAL_DP1_MODE; |
Alex Deucher | cf2aff6 | 2011-10-28 16:07:36 -0400 | [diff] [blame] | 566 | else if (radeon_connector_encoder_get_dp_bridge_encoder_id(connector) == |
Alex Deucher | 304a484 | 2012-02-02 10:18:00 -0500 | [diff] [blame] | 567 | ENCODER_OBJECT_ID_TRAVIS) { |
| 568 | u8 id[6]; |
| 569 | int i; |
| 570 | for (i = 0; i < 6; i++) |
| 571 | id[i] = radeon_read_dpcd_reg(radeon_connector, 0x503 + i); |
| 572 | if (id[0] == 0x73 && |
| 573 | id[1] == 0x69 && |
| 574 | id[2] == 0x76 && |
| 575 | id[3] == 0x61 && |
| 576 | id[4] == 0x72 && |
| 577 | id[5] == 0x54) |
| 578 | panel_mode = DP_PANEL_MODE_INTERNAL_DP1_MODE; |
| 579 | else |
| 580 | panel_mode = DP_PANEL_MODE_INTERNAL_DP2_MODE; |
| 581 | } else if (connector->connector_type == DRM_MODE_CONNECTOR_eDP) { |
Alex Deucher | 00dfb8d | 2011-10-31 08:54:41 -0400 | [diff] [blame] | 582 | u8 tmp = radeon_read_dpcd_reg(radeon_connector, DP_EDP_CONFIGURATION_CAP); |
| 583 | if (tmp & 1) |
| 584 | panel_mode = DP_PANEL_MODE_INTERNAL_DP2_MODE; |
| 585 | } |
Alex Deucher | 224d94b | 2011-05-20 04:34:28 -0400 | [diff] [blame] | 586 | |
Alex Deucher | 386d4d7 | 2012-01-20 15:01:29 -0500 | [diff] [blame] | 587 | return panel_mode; |
Alex Deucher | 224d94b | 2011-05-20 04:34:28 -0400 | [diff] [blame] | 588 | } |
| 589 | |
| 590 | void radeon_dp_set_link_config(struct drm_connector *connector, |
| 591 | struct drm_display_mode *mode) |
| 592 | { |
| 593 | struct radeon_connector *radeon_connector = to_radeon_connector(connector); |
| 594 | struct radeon_connector_atom_dig *dig_connector; |
| 595 | |
| 596 | if (!radeon_connector->con_priv) |
| 597 | return; |
| 598 | dig_connector = radeon_connector->con_priv; |
| 599 | |
| 600 | if ((dig_connector->dp_sink_type == CONNECTOR_OBJECT_ID_DISPLAYPORT) || |
| 601 | (dig_connector->dp_sink_type == CONNECTOR_OBJECT_ID_eDP)) { |
| 602 | dig_connector->dp_clock = |
| 603 | radeon_dp_get_dp_link_clock(connector, dig_connector->dpcd, mode->clock); |
| 604 | dig_connector->dp_lane_count = |
| 605 | radeon_dp_get_dp_lane_number(connector, dig_connector->dpcd, mode->clock); |
| 606 | } |
| 607 | } |
| 608 | |
| 609 | int radeon_dp_mode_valid_helper(struct drm_connector *connector, |
| 610 | struct drm_display_mode *mode) |
| 611 | { |
| 612 | struct radeon_connector *radeon_connector = to_radeon_connector(connector); |
| 613 | struct radeon_connector_atom_dig *dig_connector; |
| 614 | int dp_clock; |
| 615 | |
| 616 | if (!radeon_connector->con_priv) |
| 617 | return MODE_CLOCK_HIGH; |
| 618 | dig_connector = radeon_connector->con_priv; |
| 619 | |
| 620 | dp_clock = |
| 621 | radeon_dp_get_dp_link_clock(connector, dig_connector->dpcd, mode->clock); |
| 622 | |
| 623 | if ((dp_clock == 540000) && |
| 624 | (!radeon_connector_is_dp12_capable(connector))) |
| 625 | return MODE_CLOCK_HIGH; |
| 626 | |
| 627 | return MODE_OK; |
| 628 | } |
| 629 | |
| 630 | static bool radeon_dp_get_link_status(struct radeon_connector *radeon_connector, |
| 631 | u8 link_status[DP_LINK_STATUS_SIZE]) |
| 632 | { |
| 633 | int ret; |
| 634 | ret = radeon_dp_aux_native_read(radeon_connector, DP_LANE0_1_STATUS, |
| 635 | link_status, DP_LINK_STATUS_SIZE, 100); |
| 636 | if (ret <= 0) { |
| 637 | DRM_ERROR("displayport link status failed\n"); |
| 638 | return false; |
| 639 | } |
| 640 | |
| 641 | DRM_DEBUG_KMS("link status %02x %02x %02x %02x %02x %02x\n", |
| 642 | link_status[0], link_status[1], link_status[2], |
| 643 | link_status[3], link_status[4], link_status[5]); |
| 644 | return true; |
| 645 | } |
| 646 | |
Alex Deucher | d5811e8 | 2011-08-13 13:36:13 -0400 | [diff] [blame] | 647 | bool radeon_dp_needs_link_train(struct radeon_connector *radeon_connector) |
| 648 | { |
| 649 | u8 link_status[DP_LINK_STATUS_SIZE]; |
| 650 | struct radeon_connector_atom_dig *dig = radeon_connector->con_priv; |
| 651 | |
| 652 | if (!radeon_dp_get_link_status(radeon_connector, link_status)) |
| 653 | return false; |
| 654 | if (dp_channel_eq_ok(link_status, dig->dp_lane_count)) |
| 655 | return false; |
| 656 | return true; |
| 657 | } |
| 658 | |
Alex Deucher | 224d94b | 2011-05-20 04:34:28 -0400 | [diff] [blame] | 659 | struct radeon_dp_link_train_info { |
| 660 | struct radeon_device *rdev; |
| 661 | struct drm_encoder *encoder; |
| 662 | struct drm_connector *connector; |
| 663 | struct radeon_connector *radeon_connector; |
| 664 | int enc_id; |
| 665 | int dp_clock; |
| 666 | int dp_lane_count; |
| 667 | int rd_interval; |
| 668 | bool tp3_supported; |
| 669 | u8 dpcd[8]; |
| 670 | u8 train_set[4]; |
| 671 | u8 link_status[DP_LINK_STATUS_SIZE]; |
| 672 | u8 tries; |
Jerome Glisse | 5a96a89 | 2011-07-25 11:57:43 -0400 | [diff] [blame] | 673 | bool use_dpencoder; |
Alex Deucher | 224d94b | 2011-05-20 04:34:28 -0400 | [diff] [blame] | 674 | }; |
| 675 | |
| 676 | static void radeon_dp_update_vs_emph(struct radeon_dp_link_train_info *dp_info) |
| 677 | { |
| 678 | /* set the initial vs/emph on the source */ |
| 679 | atombios_dig_transmitter_setup(dp_info->encoder, |
| 680 | ATOM_TRANSMITTER_ACTION_SETUP_VSEMPH, |
| 681 | 0, dp_info->train_set[0]); /* sets all lanes at once */ |
| 682 | |
| 683 | /* set the vs/emph on the sink */ |
| 684 | radeon_dp_aux_native_write(dp_info->radeon_connector, DP_TRAINING_LANE0_SET, |
| 685 | dp_info->train_set, dp_info->dp_lane_count, 0); |
| 686 | } |
| 687 | |
| 688 | static void radeon_dp_set_tp(struct radeon_dp_link_train_info *dp_info, int tp) |
| 689 | { |
| 690 | int rtp = 0; |
| 691 | |
| 692 | /* set training pattern on the source */ |
Jerome Glisse | 5a96a89 | 2011-07-25 11:57:43 -0400 | [diff] [blame] | 693 | if (ASIC_IS_DCE4(dp_info->rdev) || !dp_info->use_dpencoder) { |
Alex Deucher | 224d94b | 2011-05-20 04:34:28 -0400 | [diff] [blame] | 694 | switch (tp) { |
| 695 | case DP_TRAINING_PATTERN_1: |
| 696 | rtp = ATOM_ENCODER_CMD_DP_LINK_TRAINING_PATTERN1; |
| 697 | break; |
| 698 | case DP_TRAINING_PATTERN_2: |
| 699 | rtp = ATOM_ENCODER_CMD_DP_LINK_TRAINING_PATTERN2; |
| 700 | break; |
| 701 | case DP_TRAINING_PATTERN_3: |
| 702 | rtp = ATOM_ENCODER_CMD_DP_LINK_TRAINING_PATTERN3; |
| 703 | break; |
| 704 | } |
| 705 | atombios_dig_encoder_setup(dp_info->encoder, rtp, 0); |
| 706 | } else { |
| 707 | switch (tp) { |
| 708 | case DP_TRAINING_PATTERN_1: |
| 709 | rtp = 0; |
| 710 | break; |
| 711 | case DP_TRAINING_PATTERN_2: |
| 712 | rtp = 1; |
| 713 | break; |
| 714 | } |
| 715 | radeon_dp_encoder_service(dp_info->rdev, ATOM_DP_ACTION_TRAINING_PATTERN_SEL, |
| 716 | dp_info->dp_clock, dp_info->enc_id, rtp); |
| 717 | } |
| 718 | |
| 719 | /* enable training pattern on the sink */ |
| 720 | radeon_write_dpcd_reg(dp_info->radeon_connector, DP_TRAINING_PATTERN_SET, tp); |
| 721 | } |
| 722 | |
| 723 | static int radeon_dp_link_train_init(struct radeon_dp_link_train_info *dp_info) |
| 724 | { |
Alex Deucher | 386d4d7 | 2012-01-20 15:01:29 -0500 | [diff] [blame] | 725 | struct radeon_encoder *radeon_encoder = to_radeon_encoder(dp_info->encoder); |
| 726 | struct radeon_encoder_atom_dig *dig = radeon_encoder->enc_priv; |
Alex Deucher | 224d94b | 2011-05-20 04:34:28 -0400 | [diff] [blame] | 727 | u8 tmp; |
| 728 | |
| 729 | /* power up the sink */ |
| 730 | if (dp_info->dpcd[0] >= 0x11) |
| 731 | radeon_write_dpcd_reg(dp_info->radeon_connector, |
| 732 | DP_SET_POWER, DP_SET_POWER_D0); |
| 733 | |
| 734 | /* possibly enable downspread on the sink */ |
| 735 | if (dp_info->dpcd[3] & 0x1) |
| 736 | radeon_write_dpcd_reg(dp_info->radeon_connector, |
| 737 | DP_DOWNSPREAD_CTRL, DP_SPREAD_AMP_0_5); |
| 738 | else |
| 739 | radeon_write_dpcd_reg(dp_info->radeon_connector, |
| 740 | DP_DOWNSPREAD_CTRL, 0); |
| 741 | |
Alex Deucher | 386d4d7 | 2012-01-20 15:01:29 -0500 | [diff] [blame] | 742 | if ((dp_info->connector->connector_type == DRM_MODE_CONNECTOR_eDP) && |
| 743 | (dig->panel_mode == DP_PANEL_MODE_INTERNAL_DP2_MODE)) { |
| 744 | radeon_write_dpcd_reg(dp_info->radeon_connector, DP_EDP_CONFIGURATION_SET, 1); |
| 745 | } |
Alex Deucher | 224d94b | 2011-05-20 04:34:28 -0400 | [diff] [blame] | 746 | |
| 747 | /* set the lane count on the sink */ |
| 748 | tmp = dp_info->dp_lane_count; |
Dave Airlie | abc8113 | 2012-03-18 10:10:50 +0000 | [diff] [blame] | 749 | if (dp_info->dpcd[DP_DPCD_REV] >= 0x11 && |
| 750 | dp_info->dpcd[DP_MAX_LANE_COUNT] & DP_ENHANCED_FRAME_CAP) |
Alex Deucher | 224d94b | 2011-05-20 04:34:28 -0400 | [diff] [blame] | 751 | tmp |= DP_LANE_COUNT_ENHANCED_FRAME_EN; |
| 752 | radeon_write_dpcd_reg(dp_info->radeon_connector, DP_LANE_COUNT_SET, tmp); |
| 753 | |
| 754 | /* set the link rate on the sink */ |
| 755 | tmp = dp_get_dp_link_rate_coded(dp_info->dp_clock); |
| 756 | radeon_write_dpcd_reg(dp_info->radeon_connector, DP_LINK_BW_SET, tmp); |
| 757 | |
| 758 | /* start training on the source */ |
Jerome Glisse | 5a96a89 | 2011-07-25 11:57:43 -0400 | [diff] [blame] | 759 | if (ASIC_IS_DCE4(dp_info->rdev) || !dp_info->use_dpencoder) |
Alex Deucher | 224d94b | 2011-05-20 04:34:28 -0400 | [diff] [blame] | 760 | atombios_dig_encoder_setup(dp_info->encoder, |
| 761 | ATOM_ENCODER_CMD_DP_LINK_TRAINING_START, 0); |
| 762 | else |
| 763 | radeon_dp_encoder_service(dp_info->rdev, ATOM_DP_ACTION_TRAINING_START, |
| 764 | dp_info->dp_clock, dp_info->enc_id, 0); |
| 765 | |
| 766 | /* disable the training pattern on the sink */ |
| 767 | radeon_write_dpcd_reg(dp_info->radeon_connector, |
| 768 | DP_TRAINING_PATTERN_SET, |
| 769 | DP_TRAINING_PATTERN_DISABLE); |
| 770 | |
| 771 | return 0; |
| 772 | } |
| 773 | |
| 774 | static int radeon_dp_link_train_finish(struct radeon_dp_link_train_info *dp_info) |
| 775 | { |
| 776 | udelay(400); |
| 777 | |
| 778 | /* disable the training pattern on the sink */ |
| 779 | radeon_write_dpcd_reg(dp_info->radeon_connector, |
| 780 | DP_TRAINING_PATTERN_SET, |
| 781 | DP_TRAINING_PATTERN_DISABLE); |
| 782 | |
| 783 | /* disable the training pattern on the source */ |
Jerome Glisse | 5a96a89 | 2011-07-25 11:57:43 -0400 | [diff] [blame] | 784 | if (ASIC_IS_DCE4(dp_info->rdev) || !dp_info->use_dpencoder) |
Alex Deucher | 224d94b | 2011-05-20 04:34:28 -0400 | [diff] [blame] | 785 | atombios_dig_encoder_setup(dp_info->encoder, |
| 786 | ATOM_ENCODER_CMD_DP_LINK_TRAINING_COMPLETE, 0); |
| 787 | else |
| 788 | radeon_dp_encoder_service(dp_info->rdev, ATOM_DP_ACTION_TRAINING_COMPLETE, |
| 789 | dp_info->dp_clock, dp_info->enc_id, 0); |
| 790 | |
| 791 | return 0; |
| 792 | } |
| 793 | |
| 794 | static int radeon_dp_link_train_cr(struct radeon_dp_link_train_info *dp_info) |
| 795 | { |
| 796 | bool clock_recovery; |
| 797 | u8 voltage; |
| 798 | int i; |
| 799 | |
| 800 | radeon_dp_set_tp(dp_info, DP_TRAINING_PATTERN_1); |
| 801 | memset(dp_info->train_set, 0, 4); |
| 802 | radeon_dp_update_vs_emph(dp_info); |
| 803 | |
| 804 | udelay(400); |
| 805 | |
| 806 | /* clock recovery loop */ |
| 807 | clock_recovery = false; |
| 808 | dp_info->tries = 0; |
| 809 | voltage = 0xff; |
| 810 | while (1) { |
| 811 | if (dp_info->rd_interval == 0) |
| 812 | udelay(100); |
| 813 | else |
| 814 | mdelay(dp_info->rd_interval * 4); |
| 815 | |
| 816 | if (!radeon_dp_get_link_status(dp_info->radeon_connector, dp_info->link_status)) |
| 817 | break; |
| 818 | |
| 819 | if (dp_clock_recovery_ok(dp_info->link_status, dp_info->dp_lane_count)) { |
| 820 | clock_recovery = true; |
| 821 | break; |
| 822 | } |
| 823 | |
| 824 | for (i = 0; i < dp_info->dp_lane_count; i++) { |
| 825 | if ((dp_info->train_set[i] & DP_TRAIN_MAX_SWING_REACHED) == 0) |
| 826 | break; |
| 827 | } |
| 828 | if (i == dp_info->dp_lane_count) { |
| 829 | DRM_ERROR("clock recovery reached max voltage\n"); |
| 830 | break; |
| 831 | } |
| 832 | |
| 833 | if ((dp_info->train_set[0] & DP_TRAIN_VOLTAGE_SWING_MASK) == voltage) { |
| 834 | ++dp_info->tries; |
| 835 | if (dp_info->tries == 5) { |
| 836 | DRM_ERROR("clock recovery tried 5 times\n"); |
| 837 | break; |
| 838 | } |
| 839 | } else |
| 840 | dp_info->tries = 0; |
| 841 | |
| 842 | voltage = dp_info->train_set[0] & DP_TRAIN_VOLTAGE_SWING_MASK; |
| 843 | |
| 844 | /* Compute new train_set as requested by sink */ |
| 845 | dp_get_adjust_train(dp_info->link_status, dp_info->dp_lane_count, dp_info->train_set); |
| 846 | |
| 847 | radeon_dp_update_vs_emph(dp_info); |
| 848 | } |
| 849 | if (!clock_recovery) { |
| 850 | DRM_ERROR("clock recovery failed\n"); |
| 851 | return -1; |
| 852 | } else { |
| 853 | DRM_DEBUG_KMS("clock recovery at voltage %d pre-emphasis %d\n", |
| 854 | dp_info->train_set[0] & DP_TRAIN_VOLTAGE_SWING_MASK, |
| 855 | (dp_info->train_set[0] & DP_TRAIN_PRE_EMPHASIS_MASK) >> |
| 856 | DP_TRAIN_PRE_EMPHASIS_SHIFT); |
| 857 | return 0; |
| 858 | } |
| 859 | } |
| 860 | |
| 861 | static int radeon_dp_link_train_ce(struct radeon_dp_link_train_info *dp_info) |
| 862 | { |
| 863 | bool channel_eq; |
| 864 | |
| 865 | if (dp_info->tp3_supported) |
| 866 | radeon_dp_set_tp(dp_info, DP_TRAINING_PATTERN_3); |
| 867 | else |
| 868 | radeon_dp_set_tp(dp_info, DP_TRAINING_PATTERN_2); |
| 869 | |
| 870 | /* channel equalization loop */ |
| 871 | dp_info->tries = 0; |
| 872 | channel_eq = false; |
| 873 | while (1) { |
| 874 | if (dp_info->rd_interval == 0) |
| 875 | udelay(400); |
| 876 | else |
| 877 | mdelay(dp_info->rd_interval * 4); |
| 878 | |
| 879 | if (!radeon_dp_get_link_status(dp_info->radeon_connector, dp_info->link_status)) |
| 880 | break; |
| 881 | |
| 882 | if (dp_channel_eq_ok(dp_info->link_status, dp_info->dp_lane_count)) { |
| 883 | channel_eq = true; |
| 884 | break; |
| 885 | } |
| 886 | |
| 887 | /* Try 5 times */ |
| 888 | if (dp_info->tries > 5) { |
| 889 | DRM_ERROR("channel eq failed: 5 tries\n"); |
| 890 | break; |
| 891 | } |
| 892 | |
| 893 | /* Compute new train_set as requested by sink */ |
| 894 | dp_get_adjust_train(dp_info->link_status, dp_info->dp_lane_count, dp_info->train_set); |
| 895 | |
| 896 | radeon_dp_update_vs_emph(dp_info); |
| 897 | dp_info->tries++; |
| 898 | } |
| 899 | |
| 900 | if (!channel_eq) { |
| 901 | DRM_ERROR("channel eq failed\n"); |
| 902 | return -1; |
| 903 | } else { |
| 904 | DRM_DEBUG_KMS("channel eq at voltage %d pre-emphasis %d\n", |
| 905 | dp_info->train_set[0] & DP_TRAIN_VOLTAGE_SWING_MASK, |
| 906 | (dp_info->train_set[0] & DP_TRAIN_PRE_EMPHASIS_MASK) |
| 907 | >> DP_TRAIN_PRE_EMPHASIS_SHIFT); |
| 908 | return 0; |
| 909 | } |
| 910 | } |
| 911 | |
| 912 | void radeon_dp_link_train(struct drm_encoder *encoder, |
| 913 | struct drm_connector *connector) |
| 914 | { |
| 915 | struct drm_device *dev = encoder->dev; |
| 916 | struct radeon_device *rdev = dev->dev_private; |
| 917 | struct radeon_encoder *radeon_encoder = to_radeon_encoder(encoder); |
| 918 | struct radeon_encoder_atom_dig *dig; |
| 919 | struct radeon_connector *radeon_connector; |
| 920 | struct radeon_connector_atom_dig *dig_connector; |
| 921 | struct radeon_dp_link_train_info dp_info; |
Jerome Glisse | 5a96a89 | 2011-07-25 11:57:43 -0400 | [diff] [blame] | 922 | int index; |
| 923 | u8 tmp, frev, crev; |
Alex Deucher | 224d94b | 2011-05-20 04:34:28 -0400 | [diff] [blame] | 924 | |
| 925 | if (!radeon_encoder->enc_priv) |
| 926 | return; |
| 927 | dig = radeon_encoder->enc_priv; |
| 928 | |
| 929 | radeon_connector = to_radeon_connector(connector); |
| 930 | if (!radeon_connector->con_priv) |
| 931 | return; |
| 932 | dig_connector = radeon_connector->con_priv; |
| 933 | |
| 934 | if ((dig_connector->dp_sink_type != CONNECTOR_OBJECT_ID_DISPLAYPORT) && |
| 935 | (dig_connector->dp_sink_type != CONNECTOR_OBJECT_ID_eDP)) |
| 936 | return; |
| 937 | |
Jerome Glisse | 5a96a89 | 2011-07-25 11:57:43 -0400 | [diff] [blame] | 938 | /* DPEncoderService newer than 1.1 can't program properly the |
| 939 | * training pattern. When facing such version use the |
| 940 | * DIGXEncoderControl (X== 1 | 2) |
| 941 | */ |
| 942 | dp_info.use_dpencoder = true; |
| 943 | index = GetIndexIntoMasterTable(COMMAND, DPEncoderService); |
| 944 | if (atom_parse_cmd_header(rdev->mode_info.atom_context, index, &frev, &crev)) { |
| 945 | if (crev > 1) { |
| 946 | dp_info.use_dpencoder = false; |
| 947 | } |
| 948 | } |
| 949 | |
Alex Deucher | 224d94b | 2011-05-20 04:34:28 -0400 | [diff] [blame] | 950 | dp_info.enc_id = 0; |
| 951 | if (dig->dig_encoder) |
| 952 | dp_info.enc_id |= ATOM_DP_CONFIG_DIG2_ENCODER; |
| 953 | else |
| 954 | dp_info.enc_id |= ATOM_DP_CONFIG_DIG1_ENCODER; |
| 955 | if (dig->linkb) |
| 956 | dp_info.enc_id |= ATOM_DP_CONFIG_LINK_B; |
| 957 | else |
| 958 | dp_info.enc_id |= ATOM_DP_CONFIG_LINK_A; |
| 959 | |
| 960 | dp_info.rd_interval = radeon_read_dpcd_reg(radeon_connector, DP_TRAINING_AUX_RD_INTERVAL); |
| 961 | tmp = radeon_read_dpcd_reg(radeon_connector, DP_MAX_LANE_COUNT); |
| 962 | if (ASIC_IS_DCE5(rdev) && (tmp & DP_TPS3_SUPPORTED)) |
| 963 | dp_info.tp3_supported = true; |
| 964 | else |
| 965 | dp_info.tp3_supported = false; |
| 966 | |
| 967 | memcpy(dp_info.dpcd, dig_connector->dpcd, 8); |
| 968 | dp_info.rdev = rdev; |
| 969 | dp_info.encoder = encoder; |
| 970 | dp_info.connector = connector; |
| 971 | dp_info.radeon_connector = radeon_connector; |
| 972 | dp_info.dp_lane_count = dig_connector->dp_lane_count; |
| 973 | dp_info.dp_clock = dig_connector->dp_clock; |
| 974 | |
| 975 | if (radeon_dp_link_train_init(&dp_info)) |
| 976 | goto done; |
| 977 | if (radeon_dp_link_train_cr(&dp_info)) |
| 978 | goto done; |
| 979 | if (radeon_dp_link_train_ce(&dp_info)) |
| 980 | goto done; |
| 981 | done: |
| 982 | if (radeon_dp_link_train_finish(&dp_info)) |
| 983 | return; |
| 984 | } |