Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [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 | |
| 33 | /* from radeon_encoder.c */ |
| 34 | extern uint32_t |
Alex Deucher | 5137ee9 | 2010-08-12 18:58:47 -0400 | [diff] [blame] | 35 | radeon_get_encoder_enum(struct drm_device *dev, uint32_t supported_device, |
| 36 | uint8_t dac); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 37 | extern void radeon_link_encoder_connector(struct drm_device *dev); |
| 38 | extern void |
Alex Deucher | 5137ee9 | 2010-08-12 18:58:47 -0400 | [diff] [blame] | 39 | radeon_add_atom_encoder(struct drm_device *dev, uint32_t encoder_enum, |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 40 | uint32_t supported_device); |
| 41 | |
| 42 | /* from radeon_connector.c */ |
| 43 | extern void |
| 44 | radeon_add_atom_connector(struct drm_device *dev, |
| 45 | uint32_t connector_id, |
| 46 | uint32_t supported_device, |
| 47 | int connector_type, |
| 48 | struct radeon_i2c_bus_rec *i2c_bus, |
Alex Deucher | 5137ee9 | 2010-08-12 18:58:47 -0400 | [diff] [blame] | 49 | uint32_t igp_lane_info, |
Alex Deucher | eed45b3 | 2009-12-04 14:45:27 -0500 | [diff] [blame] | 50 | uint16_t connector_object_id, |
Alex Deucher | 26b5bc9 | 2010-08-05 21:21:18 -0400 | [diff] [blame] | 51 | struct radeon_hpd *hpd, |
| 52 | struct radeon_router *router); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 53 | |
| 54 | /* from radeon_legacy_encoder.c */ |
| 55 | extern void |
Alex Deucher | 5137ee9 | 2010-08-12 18:58:47 -0400 | [diff] [blame] | 56 | radeon_add_legacy_encoder(struct drm_device *dev, uint32_t encoder_enum, |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 57 | uint32_t supported_device); |
| 58 | |
| 59 | union atom_supported_devices { |
| 60 | struct _ATOM_SUPPORTED_DEVICES_INFO info; |
| 61 | struct _ATOM_SUPPORTED_DEVICES_INFO_2 info_2; |
| 62 | struct _ATOM_SUPPORTED_DEVICES_INFO_2d1 info_2d1; |
| 63 | }; |
| 64 | |
Alex Deucher | eed45b3 | 2009-12-04 14:45:27 -0500 | [diff] [blame] | 65 | static inline struct radeon_i2c_bus_rec radeon_lookup_i2c_gpio(struct radeon_device *rdev, |
| 66 | uint8_t id) |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 67 | { |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 68 | struct atom_context *ctx = rdev->mode_info.atom_context; |
Alex Deucher | 6a93cb2 | 2009-11-23 17:39:28 -0500 | [diff] [blame] | 69 | ATOM_GPIO_I2C_ASSIGMENT *gpio; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 70 | struct radeon_i2c_bus_rec i2c; |
| 71 | int index = GetIndexIntoMasterTable(DATA, GPIO_I2C_Info); |
| 72 | struct _ATOM_GPIO_I2C_INFO *i2c_info; |
Alex Deucher | 95beb69 | 2010-04-01 19:08:47 +0000 | [diff] [blame] | 73 | uint16_t data_offset, size; |
| 74 | int i, num_indices; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 75 | |
| 76 | memset(&i2c, 0, sizeof(struct radeon_i2c_bus_rec)); |
| 77 | i2c.valid = false; |
| 78 | |
Alex Deucher | 95beb69 | 2010-04-01 19:08:47 +0000 | [diff] [blame] | 79 | if (atom_parse_data_header(ctx, index, &size, NULL, NULL, &data_offset)) { |
Alex Deucher | a084e6e | 2010-03-18 01:04:01 -0400 | [diff] [blame] | 80 | i2c_info = (struct _ATOM_GPIO_I2C_INFO *)(ctx->bios + data_offset); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 81 | |
Alex Deucher | 95beb69 | 2010-04-01 19:08:47 +0000 | [diff] [blame] | 82 | num_indices = (size - sizeof(ATOM_COMMON_TABLE_HEADER)) / |
| 83 | sizeof(ATOM_GPIO_I2C_ASSIGMENT); |
| 84 | |
| 85 | for (i = 0; i < num_indices; i++) { |
Alex Deucher | a084e6e | 2010-03-18 01:04:01 -0400 | [diff] [blame] | 86 | gpio = &i2c_info->asGPIO_Info[i]; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 87 | |
Alex Deucher | ea39302 | 2010-08-27 16:04:29 -0400 | [diff] [blame] | 88 | /* some evergreen boards have bad data for this entry */ |
| 89 | if (ASIC_IS_DCE4(rdev)) { |
| 90 | if ((i == 7) && |
| 91 | (gpio->usClkMaskRegisterIndex == 0x1936) && |
| 92 | (gpio->sucI2cId.ucAccess == 0)) { |
| 93 | gpio->sucI2cId.ucAccess = 0x97; |
| 94 | gpio->ucDataMaskShift = 8; |
| 95 | gpio->ucDataEnShift = 8; |
| 96 | gpio->ucDataY_Shift = 8; |
| 97 | gpio->ucDataA_Shift = 8; |
| 98 | } |
| 99 | } |
| 100 | |
Alex Deucher | a084e6e | 2010-03-18 01:04:01 -0400 | [diff] [blame] | 101 | if (gpio->sucI2cId.ucAccess == id) { |
| 102 | i2c.mask_clk_reg = le16_to_cpu(gpio->usClkMaskRegisterIndex) * 4; |
| 103 | i2c.mask_data_reg = le16_to_cpu(gpio->usDataMaskRegisterIndex) * 4; |
| 104 | i2c.en_clk_reg = le16_to_cpu(gpio->usClkEnRegisterIndex) * 4; |
| 105 | i2c.en_data_reg = le16_to_cpu(gpio->usDataEnRegisterIndex) * 4; |
| 106 | i2c.y_clk_reg = le16_to_cpu(gpio->usClkY_RegisterIndex) * 4; |
| 107 | i2c.y_data_reg = le16_to_cpu(gpio->usDataY_RegisterIndex) * 4; |
| 108 | i2c.a_clk_reg = le16_to_cpu(gpio->usClkA_RegisterIndex) * 4; |
| 109 | i2c.a_data_reg = le16_to_cpu(gpio->usDataA_RegisterIndex) * 4; |
| 110 | i2c.mask_clk_mask = (1 << gpio->ucClkMaskShift); |
| 111 | i2c.mask_data_mask = (1 << gpio->ucDataMaskShift); |
| 112 | i2c.en_clk_mask = (1 << gpio->ucClkEnShift); |
| 113 | i2c.en_data_mask = (1 << gpio->ucDataEnShift); |
| 114 | i2c.y_clk_mask = (1 << gpio->ucClkY_Shift); |
| 115 | i2c.y_data_mask = (1 << gpio->ucDataY_Shift); |
| 116 | i2c.a_clk_mask = (1 << gpio->ucClkA_Shift); |
| 117 | i2c.a_data_mask = (1 << gpio->ucDataA_Shift); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 118 | |
Alex Deucher | a084e6e | 2010-03-18 01:04:01 -0400 | [diff] [blame] | 119 | if (gpio->sucI2cId.sbfAccess.bfHW_Capable) |
| 120 | i2c.hw_capable = true; |
| 121 | else |
| 122 | i2c.hw_capable = false; |
Alex Deucher | 6a93cb2 | 2009-11-23 17:39:28 -0500 | [diff] [blame] | 123 | |
Alex Deucher | a084e6e | 2010-03-18 01:04:01 -0400 | [diff] [blame] | 124 | if (gpio->sucI2cId.ucAccess == 0xa0) |
| 125 | i2c.mm_i2c = true; |
| 126 | else |
| 127 | i2c.mm_i2c = false; |
Alex Deucher | 6a93cb2 | 2009-11-23 17:39:28 -0500 | [diff] [blame] | 128 | |
Alex Deucher | a084e6e | 2010-03-18 01:04:01 -0400 | [diff] [blame] | 129 | i2c.i2c_id = gpio->sucI2cId.ucAccess; |
Alex Deucher | 6a93cb2 | 2009-11-23 17:39:28 -0500 | [diff] [blame] | 130 | |
Alex Deucher | f376b94 | 2010-08-05 21:21:16 -0400 | [diff] [blame] | 131 | if (i2c.mask_clk_reg) |
| 132 | i2c.valid = true; |
Alex Deucher | a084e6e | 2010-03-18 01:04:01 -0400 | [diff] [blame] | 133 | break; |
| 134 | } |
Alex Deucher | d3f420d | 2009-12-08 14:30:49 -0500 | [diff] [blame] | 135 | } |
| 136 | } |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 137 | |
| 138 | return i2c; |
| 139 | } |
| 140 | |
Alex Deucher | f376b94 | 2010-08-05 21:21:16 -0400 | [diff] [blame] | 141 | void radeon_atombios_i2c_init(struct radeon_device *rdev) |
| 142 | { |
| 143 | struct atom_context *ctx = rdev->mode_info.atom_context; |
| 144 | ATOM_GPIO_I2C_ASSIGMENT *gpio; |
| 145 | struct radeon_i2c_bus_rec i2c; |
| 146 | int index = GetIndexIntoMasterTable(DATA, GPIO_I2C_Info); |
| 147 | struct _ATOM_GPIO_I2C_INFO *i2c_info; |
| 148 | uint16_t data_offset, size; |
| 149 | int i, num_indices; |
| 150 | char stmp[32]; |
| 151 | |
| 152 | memset(&i2c, 0, sizeof(struct radeon_i2c_bus_rec)); |
| 153 | |
| 154 | if (atom_parse_data_header(ctx, index, &size, NULL, NULL, &data_offset)) { |
| 155 | i2c_info = (struct _ATOM_GPIO_I2C_INFO *)(ctx->bios + data_offset); |
| 156 | |
| 157 | num_indices = (size - sizeof(ATOM_COMMON_TABLE_HEADER)) / |
| 158 | sizeof(ATOM_GPIO_I2C_ASSIGMENT); |
| 159 | |
| 160 | for (i = 0; i < num_indices; i++) { |
| 161 | gpio = &i2c_info->asGPIO_Info[i]; |
| 162 | i2c.valid = false; |
Alex Deucher | ea39302 | 2010-08-27 16:04:29 -0400 | [diff] [blame] | 163 | |
| 164 | /* some evergreen boards have bad data for this entry */ |
| 165 | if (ASIC_IS_DCE4(rdev)) { |
| 166 | if ((i == 7) && |
| 167 | (gpio->usClkMaskRegisterIndex == 0x1936) && |
| 168 | (gpio->sucI2cId.ucAccess == 0)) { |
| 169 | gpio->sucI2cId.ucAccess = 0x97; |
| 170 | gpio->ucDataMaskShift = 8; |
| 171 | gpio->ucDataEnShift = 8; |
| 172 | gpio->ucDataY_Shift = 8; |
| 173 | gpio->ucDataA_Shift = 8; |
| 174 | } |
| 175 | } |
| 176 | |
Alex Deucher | f376b94 | 2010-08-05 21:21:16 -0400 | [diff] [blame] | 177 | i2c.mask_clk_reg = le16_to_cpu(gpio->usClkMaskRegisterIndex) * 4; |
| 178 | i2c.mask_data_reg = le16_to_cpu(gpio->usDataMaskRegisterIndex) * 4; |
| 179 | i2c.en_clk_reg = le16_to_cpu(gpio->usClkEnRegisterIndex) * 4; |
| 180 | i2c.en_data_reg = le16_to_cpu(gpio->usDataEnRegisterIndex) * 4; |
| 181 | i2c.y_clk_reg = le16_to_cpu(gpio->usClkY_RegisterIndex) * 4; |
| 182 | i2c.y_data_reg = le16_to_cpu(gpio->usDataY_RegisterIndex) * 4; |
| 183 | i2c.a_clk_reg = le16_to_cpu(gpio->usClkA_RegisterIndex) * 4; |
| 184 | i2c.a_data_reg = le16_to_cpu(gpio->usDataA_RegisterIndex) * 4; |
| 185 | i2c.mask_clk_mask = (1 << gpio->ucClkMaskShift); |
| 186 | i2c.mask_data_mask = (1 << gpio->ucDataMaskShift); |
| 187 | i2c.en_clk_mask = (1 << gpio->ucClkEnShift); |
| 188 | i2c.en_data_mask = (1 << gpio->ucDataEnShift); |
| 189 | i2c.y_clk_mask = (1 << gpio->ucClkY_Shift); |
| 190 | i2c.y_data_mask = (1 << gpio->ucDataY_Shift); |
| 191 | i2c.a_clk_mask = (1 << gpio->ucClkA_Shift); |
| 192 | i2c.a_data_mask = (1 << gpio->ucDataA_Shift); |
| 193 | |
| 194 | if (gpio->sucI2cId.sbfAccess.bfHW_Capable) |
| 195 | i2c.hw_capable = true; |
| 196 | else |
| 197 | i2c.hw_capable = false; |
| 198 | |
| 199 | if (gpio->sucI2cId.ucAccess == 0xa0) |
| 200 | i2c.mm_i2c = true; |
| 201 | else |
| 202 | i2c.mm_i2c = false; |
| 203 | |
| 204 | i2c.i2c_id = gpio->sucI2cId.ucAccess; |
| 205 | |
| 206 | if (i2c.mask_clk_reg) { |
| 207 | i2c.valid = true; |
| 208 | sprintf(stmp, "0x%x", i2c.i2c_id); |
| 209 | rdev->i2c_bus[i] = radeon_i2c_create(rdev->ddev, &i2c, stmp); |
| 210 | } |
| 211 | } |
| 212 | } |
| 213 | } |
| 214 | |
Alex Deucher | eed45b3 | 2009-12-04 14:45:27 -0500 | [diff] [blame] | 215 | static inline struct radeon_gpio_rec radeon_lookup_gpio(struct radeon_device *rdev, |
| 216 | u8 id) |
| 217 | { |
| 218 | struct atom_context *ctx = rdev->mode_info.atom_context; |
| 219 | struct radeon_gpio_rec gpio; |
| 220 | int index = GetIndexIntoMasterTable(DATA, GPIO_Pin_LUT); |
| 221 | struct _ATOM_GPIO_PIN_LUT *gpio_info; |
| 222 | ATOM_GPIO_PIN_ASSIGNMENT *pin; |
| 223 | u16 data_offset, size; |
| 224 | int i, num_indices; |
| 225 | |
| 226 | memset(&gpio, 0, sizeof(struct radeon_gpio_rec)); |
| 227 | gpio.valid = false; |
| 228 | |
Alex Deucher | a084e6e | 2010-03-18 01:04:01 -0400 | [diff] [blame] | 229 | if (atom_parse_data_header(ctx, index, &size, NULL, NULL, &data_offset)) { |
| 230 | gpio_info = (struct _ATOM_GPIO_PIN_LUT *)(ctx->bios + data_offset); |
Alex Deucher | eed45b3 | 2009-12-04 14:45:27 -0500 | [diff] [blame] | 231 | |
Alex Deucher | a084e6e | 2010-03-18 01:04:01 -0400 | [diff] [blame] | 232 | num_indices = (size - sizeof(ATOM_COMMON_TABLE_HEADER)) / |
| 233 | sizeof(ATOM_GPIO_PIN_ASSIGNMENT); |
Alex Deucher | eed45b3 | 2009-12-04 14:45:27 -0500 | [diff] [blame] | 234 | |
Alex Deucher | a084e6e | 2010-03-18 01:04:01 -0400 | [diff] [blame] | 235 | for (i = 0; i < num_indices; i++) { |
| 236 | pin = &gpio_info->asGPIO_Pin[i]; |
| 237 | if (id == pin->ucGPIO_ID) { |
| 238 | gpio.id = pin->ucGPIO_ID; |
| 239 | gpio.reg = pin->usGpioPin_AIndex * 4; |
| 240 | gpio.mask = (1 << pin->ucGpioPinBitShift); |
| 241 | gpio.valid = true; |
| 242 | break; |
| 243 | } |
Alex Deucher | eed45b3 | 2009-12-04 14:45:27 -0500 | [diff] [blame] | 244 | } |
| 245 | } |
| 246 | |
| 247 | return gpio; |
| 248 | } |
| 249 | |
| 250 | static struct radeon_hpd radeon_atom_get_hpd_info_from_gpio(struct radeon_device *rdev, |
| 251 | struct radeon_gpio_rec *gpio) |
| 252 | { |
| 253 | struct radeon_hpd hpd; |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 254 | u32 reg; |
| 255 | |
Jean Delvare | 1d978da | 2010-08-15 14:11:24 +0200 | [diff] [blame] | 256 | memset(&hpd, 0, sizeof(struct radeon_hpd)); |
| 257 | |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 258 | if (ASIC_IS_DCE4(rdev)) |
| 259 | reg = EVERGREEN_DC_GPIO_HPD_A; |
| 260 | else |
| 261 | reg = AVIVO_DC_GPIO_HPD_A; |
| 262 | |
Alex Deucher | eed45b3 | 2009-12-04 14:45:27 -0500 | [diff] [blame] | 263 | hpd.gpio = *gpio; |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 264 | if (gpio->reg == reg) { |
Alex Deucher | eed45b3 | 2009-12-04 14:45:27 -0500 | [diff] [blame] | 265 | switch(gpio->mask) { |
| 266 | case (1 << 0): |
| 267 | hpd.hpd = RADEON_HPD_1; |
| 268 | break; |
| 269 | case (1 << 8): |
| 270 | hpd.hpd = RADEON_HPD_2; |
| 271 | break; |
| 272 | case (1 << 16): |
| 273 | hpd.hpd = RADEON_HPD_3; |
| 274 | break; |
| 275 | case (1 << 24): |
| 276 | hpd.hpd = RADEON_HPD_4; |
| 277 | break; |
| 278 | case (1 << 26): |
| 279 | hpd.hpd = RADEON_HPD_5; |
| 280 | break; |
| 281 | case (1 << 28): |
| 282 | hpd.hpd = RADEON_HPD_6; |
| 283 | break; |
| 284 | default: |
| 285 | hpd.hpd = RADEON_HPD_NONE; |
| 286 | break; |
| 287 | } |
| 288 | } else |
| 289 | hpd.hpd = RADEON_HPD_NONE; |
| 290 | return hpd; |
| 291 | } |
| 292 | |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 293 | static bool radeon_atom_apply_quirks(struct drm_device *dev, |
| 294 | uint32_t supported_device, |
| 295 | int *connector_type, |
Alex Deucher | 848577e | 2009-07-08 16:15:30 -0400 | [diff] [blame] | 296 | struct radeon_i2c_bus_rec *i2c_bus, |
Alex Deucher | eed45b3 | 2009-12-04 14:45:27 -0500 | [diff] [blame] | 297 | uint16_t *line_mux, |
| 298 | struct radeon_hpd *hpd) |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 299 | { |
Alex Deucher | 9ea2c4b | 2010-08-06 00:27:44 -0400 | [diff] [blame] | 300 | struct radeon_device *rdev = dev->dev_private; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 301 | |
| 302 | /* Asus M2A-VM HDMI board lists the DVI port as HDMI */ |
| 303 | if ((dev->pdev->device == 0x791e) && |
| 304 | (dev->pdev->subsystem_vendor == 0x1043) && |
| 305 | (dev->pdev->subsystem_device == 0x826d)) { |
| 306 | if ((*connector_type == DRM_MODE_CONNECTOR_HDMIA) && |
| 307 | (supported_device == ATOM_DEVICE_DFP3_SUPPORT)) |
| 308 | *connector_type = DRM_MODE_CONNECTOR_DVID; |
| 309 | } |
| 310 | |
Alex Deucher | c86a903 | 2010-02-18 14:14:58 -0500 | [diff] [blame] | 311 | /* Asrock RS600 board lists the DVI port as HDMI */ |
| 312 | if ((dev->pdev->device == 0x7941) && |
| 313 | (dev->pdev->subsystem_vendor == 0x1849) && |
| 314 | (dev->pdev->subsystem_device == 0x7941)) { |
| 315 | if ((*connector_type == DRM_MODE_CONNECTOR_HDMIA) && |
| 316 | (supported_device == ATOM_DEVICE_DFP3_SUPPORT)) |
| 317 | *connector_type = DRM_MODE_CONNECTOR_DVID; |
| 318 | } |
| 319 | |
Alex Deucher | f36fce0 | 2010-09-27 11:33:00 -0400 | [diff] [blame] | 320 | /* MSI K9A2GM V2/V3 board has no HDMI or DVI */ |
| 321 | if ((dev->pdev->device == 0x796e) && |
| 322 | (dev->pdev->subsystem_vendor == 0x1462) && |
| 323 | (dev->pdev->subsystem_device == 0x7302)) { |
| 324 | if ((supported_device == ATOM_DEVICE_DFP2_SUPPORT) || |
| 325 | (supported_device == ATOM_DEVICE_DFP3_SUPPORT)) |
| 326 | return false; |
| 327 | } |
| 328 | |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 329 | /* a-bit f-i90hd - ciaranm on #radeonhd - this board has no DVI */ |
| 330 | if ((dev->pdev->device == 0x7941) && |
| 331 | (dev->pdev->subsystem_vendor == 0x147b) && |
| 332 | (dev->pdev->subsystem_device == 0x2412)) { |
| 333 | if (*connector_type == DRM_MODE_CONNECTOR_DVII) |
| 334 | return false; |
| 335 | } |
| 336 | |
| 337 | /* Falcon NW laptop lists vga ddc line for LVDS */ |
| 338 | if ((dev->pdev->device == 0x5653) && |
| 339 | (dev->pdev->subsystem_vendor == 0x1462) && |
| 340 | (dev->pdev->subsystem_device == 0x0291)) { |
Alex Deucher | 848577e | 2009-07-08 16:15:30 -0400 | [diff] [blame] | 341 | if (*connector_type == DRM_MODE_CONNECTOR_LVDS) { |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 342 | i2c_bus->valid = false; |
Alex Deucher | 848577e | 2009-07-08 16:15:30 -0400 | [diff] [blame] | 343 | *line_mux = 53; |
| 344 | } |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 345 | } |
| 346 | |
Alex Deucher | 4e3f9b78 | 2009-12-01 14:49:50 -0500 | [diff] [blame] | 347 | /* HIS X1300 is DVI+VGA, not DVI+DVI */ |
| 348 | if ((dev->pdev->device == 0x7146) && |
| 349 | (dev->pdev->subsystem_vendor == 0x17af) && |
| 350 | (dev->pdev->subsystem_device == 0x2058)) { |
| 351 | if (supported_device == ATOM_DEVICE_DFP1_SUPPORT) |
| 352 | return false; |
| 353 | } |
| 354 | |
Dave Airlie | aa1a750 | 2009-12-04 11:51:34 +1000 | [diff] [blame] | 355 | /* Gigabyte X1300 is DVI+VGA, not DVI+DVI */ |
| 356 | if ((dev->pdev->device == 0x7142) && |
| 357 | (dev->pdev->subsystem_vendor == 0x1458) && |
| 358 | (dev->pdev->subsystem_device == 0x2134)) { |
| 359 | if (supported_device == ATOM_DEVICE_DFP1_SUPPORT) |
| 360 | return false; |
| 361 | } |
| 362 | |
| 363 | |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 364 | /* Funky macbooks */ |
| 365 | if ((dev->pdev->device == 0x71C5) && |
| 366 | (dev->pdev->subsystem_vendor == 0x106b) && |
| 367 | (dev->pdev->subsystem_device == 0x0080)) { |
| 368 | if ((supported_device == ATOM_DEVICE_CRT1_SUPPORT) || |
| 369 | (supported_device == ATOM_DEVICE_DFP2_SUPPORT)) |
| 370 | return false; |
Alex Deucher | e1e8a5d | 2010-03-26 17:14:37 -0400 | [diff] [blame] | 371 | if (supported_device == ATOM_DEVICE_CRT2_SUPPORT) |
| 372 | *line_mux = 0x90; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 373 | } |
| 374 | |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 375 | /* ASUS HD 3600 XT board lists the DVI port as HDMI */ |
| 376 | if ((dev->pdev->device == 0x9598) && |
| 377 | (dev->pdev->subsystem_vendor == 0x1043) && |
| 378 | (dev->pdev->subsystem_device == 0x01da)) { |
Alex Deucher | 705af9c | 2009-09-10 16:31:13 -0400 | [diff] [blame] | 379 | if (*connector_type == DRM_MODE_CONNECTOR_HDMIA) { |
Alex Deucher | d42571e | 2009-09-11 15:27:14 -0400 | [diff] [blame] | 380 | *connector_type = DRM_MODE_CONNECTOR_DVII; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 381 | } |
| 382 | } |
| 383 | |
Alex Deucher | e153b70 | 2010-07-20 18:07:22 -0400 | [diff] [blame] | 384 | /* ASUS HD 3600 board lists the DVI port as HDMI */ |
| 385 | if ((dev->pdev->device == 0x9598) && |
| 386 | (dev->pdev->subsystem_vendor == 0x1043) && |
| 387 | (dev->pdev->subsystem_device == 0x01e4)) { |
| 388 | if (*connector_type == DRM_MODE_CONNECTOR_HDMIA) { |
| 389 | *connector_type = DRM_MODE_CONNECTOR_DVII; |
| 390 | } |
| 391 | } |
| 392 | |
Alex Deucher | 705af9c | 2009-09-10 16:31:13 -0400 | [diff] [blame] | 393 | /* ASUS HD 3450 board lists the DVI port as HDMI */ |
| 394 | if ((dev->pdev->device == 0x95C5) && |
| 395 | (dev->pdev->subsystem_vendor == 0x1043) && |
| 396 | (dev->pdev->subsystem_device == 0x01e2)) { |
| 397 | if (*connector_type == DRM_MODE_CONNECTOR_HDMIA) { |
Alex Deucher | d42571e | 2009-09-11 15:27:14 -0400 | [diff] [blame] | 398 | *connector_type = DRM_MODE_CONNECTOR_DVII; |
Alex Deucher | 705af9c | 2009-09-10 16:31:13 -0400 | [diff] [blame] | 399 | } |
| 400 | } |
| 401 | |
| 402 | /* some BIOSes seem to report DAC on HDMI - usually this is a board with |
| 403 | * HDMI + VGA reporting as HDMI |
| 404 | */ |
| 405 | if (*connector_type == DRM_MODE_CONNECTOR_HDMIA) { |
| 406 | if (supported_device & (ATOM_DEVICE_CRT_SUPPORT)) { |
| 407 | *connector_type = DRM_MODE_CONNECTOR_VGA; |
| 408 | *line_mux = 0; |
| 409 | } |
| 410 | } |
| 411 | |
Alex Deucher | 9ea2c4b | 2010-08-06 00:27:44 -0400 | [diff] [blame] | 412 | /* Acer laptop reports DVI-D as DVI-I and hpd pins reversed */ |
Alex Deucher | 3e5f8ff | 2009-11-17 17:12:10 -0500 | [diff] [blame] | 413 | if ((dev->pdev->device == 0x95c4) && |
| 414 | (dev->pdev->subsystem_vendor == 0x1025) && |
| 415 | (dev->pdev->subsystem_device == 0x013c)) { |
Alex Deucher | 9ea2c4b | 2010-08-06 00:27:44 -0400 | [diff] [blame] | 416 | struct radeon_gpio_rec gpio; |
| 417 | |
Alex Deucher | 3e5f8ff | 2009-11-17 17:12:10 -0500 | [diff] [blame] | 418 | if ((*connector_type == DRM_MODE_CONNECTOR_DVII) && |
Alex Deucher | 9ea2c4b | 2010-08-06 00:27:44 -0400 | [diff] [blame] | 419 | (supported_device == ATOM_DEVICE_DFP1_SUPPORT)) { |
| 420 | gpio = radeon_lookup_gpio(rdev, 6); |
| 421 | *hpd = radeon_atom_get_hpd_info_from_gpio(rdev, &gpio); |
Alex Deucher | 3e5f8ff | 2009-11-17 17:12:10 -0500 | [diff] [blame] | 422 | *connector_type = DRM_MODE_CONNECTOR_DVID; |
Alex Deucher | 9ea2c4b | 2010-08-06 00:27:44 -0400 | [diff] [blame] | 423 | } else if ((*connector_type == DRM_MODE_CONNECTOR_HDMIA) && |
| 424 | (supported_device == ATOM_DEVICE_DFP1_SUPPORT)) { |
| 425 | gpio = radeon_lookup_gpio(rdev, 7); |
| 426 | *hpd = radeon_atom_get_hpd_info_from_gpio(rdev, &gpio); |
| 427 | } |
Alex Deucher | 3e5f8ff | 2009-11-17 17:12:10 -0500 | [diff] [blame] | 428 | } |
| 429 | |
Dave Airlie | efa8450 | 2010-02-09 09:06:00 +1000 | [diff] [blame] | 430 | /* XFX Pine Group device rv730 reports no VGA DDC lines |
| 431 | * even though they are wired up to record 0x93 |
| 432 | */ |
| 433 | if ((dev->pdev->device == 0x9498) && |
| 434 | (dev->pdev->subsystem_vendor == 0x1682) && |
| 435 | (dev->pdev->subsystem_device == 0x2452)) { |
| 436 | struct radeon_device *rdev = dev->dev_private; |
| 437 | *i2c_bus = radeon_lookup_i2c_gpio(rdev, 0x93); |
| 438 | } |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 439 | return true; |
| 440 | } |
| 441 | |
| 442 | const int supported_devices_connector_convert[] = { |
| 443 | DRM_MODE_CONNECTOR_Unknown, |
| 444 | DRM_MODE_CONNECTOR_VGA, |
| 445 | DRM_MODE_CONNECTOR_DVII, |
| 446 | DRM_MODE_CONNECTOR_DVID, |
| 447 | DRM_MODE_CONNECTOR_DVIA, |
| 448 | DRM_MODE_CONNECTOR_SVIDEO, |
| 449 | DRM_MODE_CONNECTOR_Composite, |
| 450 | DRM_MODE_CONNECTOR_LVDS, |
| 451 | DRM_MODE_CONNECTOR_Unknown, |
| 452 | DRM_MODE_CONNECTOR_Unknown, |
| 453 | DRM_MODE_CONNECTOR_HDMIA, |
| 454 | DRM_MODE_CONNECTOR_HDMIB, |
| 455 | DRM_MODE_CONNECTOR_Unknown, |
| 456 | DRM_MODE_CONNECTOR_Unknown, |
| 457 | DRM_MODE_CONNECTOR_9PinDIN, |
| 458 | DRM_MODE_CONNECTOR_DisplayPort |
| 459 | }; |
| 460 | |
Alex Deucher | b75fad0 | 2009-11-05 13:16:01 -0500 | [diff] [blame] | 461 | const uint16_t supported_devices_connector_object_id_convert[] = { |
| 462 | CONNECTOR_OBJECT_ID_NONE, |
| 463 | CONNECTOR_OBJECT_ID_VGA, |
| 464 | CONNECTOR_OBJECT_ID_DUAL_LINK_DVI_I, /* not all boards support DL */ |
| 465 | CONNECTOR_OBJECT_ID_DUAL_LINK_DVI_D, /* not all boards support DL */ |
| 466 | CONNECTOR_OBJECT_ID_VGA, /* technically DVI-A */ |
| 467 | CONNECTOR_OBJECT_ID_COMPOSITE, |
| 468 | CONNECTOR_OBJECT_ID_SVIDEO, |
| 469 | CONNECTOR_OBJECT_ID_LVDS, |
| 470 | CONNECTOR_OBJECT_ID_9PIN_DIN, |
| 471 | CONNECTOR_OBJECT_ID_9PIN_DIN, |
| 472 | CONNECTOR_OBJECT_ID_DISPLAYPORT, |
| 473 | CONNECTOR_OBJECT_ID_HDMI_TYPE_A, |
| 474 | CONNECTOR_OBJECT_ID_HDMI_TYPE_B, |
| 475 | CONNECTOR_OBJECT_ID_SVIDEO |
| 476 | }; |
| 477 | |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 478 | const int object_connector_convert[] = { |
| 479 | DRM_MODE_CONNECTOR_Unknown, |
| 480 | DRM_MODE_CONNECTOR_DVII, |
| 481 | DRM_MODE_CONNECTOR_DVII, |
| 482 | DRM_MODE_CONNECTOR_DVID, |
| 483 | DRM_MODE_CONNECTOR_DVID, |
| 484 | DRM_MODE_CONNECTOR_VGA, |
| 485 | DRM_MODE_CONNECTOR_Composite, |
| 486 | DRM_MODE_CONNECTOR_SVIDEO, |
| 487 | DRM_MODE_CONNECTOR_Unknown, |
Alex Deucher | 705af9c | 2009-09-10 16:31:13 -0400 | [diff] [blame] | 488 | DRM_MODE_CONNECTOR_Unknown, |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 489 | DRM_MODE_CONNECTOR_9PinDIN, |
| 490 | DRM_MODE_CONNECTOR_Unknown, |
| 491 | DRM_MODE_CONNECTOR_HDMIA, |
| 492 | DRM_MODE_CONNECTOR_HDMIB, |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 493 | DRM_MODE_CONNECTOR_LVDS, |
| 494 | DRM_MODE_CONNECTOR_9PinDIN, |
| 495 | DRM_MODE_CONNECTOR_Unknown, |
| 496 | DRM_MODE_CONNECTOR_Unknown, |
| 497 | DRM_MODE_CONNECTOR_Unknown, |
Alex Deucher | 196c58d | 2010-01-07 14:22:32 -0500 | [diff] [blame] | 498 | DRM_MODE_CONNECTOR_DisplayPort, |
| 499 | DRM_MODE_CONNECTOR_eDP, |
| 500 | DRM_MODE_CONNECTOR_Unknown |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 501 | }; |
| 502 | |
| 503 | bool radeon_get_atom_connector_info_from_object_table(struct drm_device *dev) |
| 504 | { |
| 505 | struct radeon_device *rdev = dev->dev_private; |
| 506 | struct radeon_mode_info *mode_info = &rdev->mode_info; |
| 507 | struct atom_context *ctx = mode_info->atom_context; |
| 508 | int index = GetIndexIntoMasterTable(DATA, Object_Header); |
Alex Deucher | eed45b3 | 2009-12-04 14:45:27 -0500 | [diff] [blame] | 509 | u16 size, data_offset; |
| 510 | u8 frev, crev; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 511 | ATOM_CONNECTOR_OBJECT_TABLE *con_obj; |
Alex Deucher | 26b5bc9 | 2010-08-05 21:21:18 -0400 | [diff] [blame] | 512 | ATOM_OBJECT_TABLE *router_obj; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 513 | ATOM_DISPLAY_OBJECT_PATH_TABLE *path_obj; |
| 514 | ATOM_OBJECT_HEADER *obj_header; |
Alex Deucher | 26b5bc9 | 2010-08-05 21:21:18 -0400 | [diff] [blame] | 515 | int i, j, k, path_size, device_support; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 516 | int connector_type; |
Alex Deucher | eed45b3 | 2009-12-04 14:45:27 -0500 | [diff] [blame] | 517 | u16 igp_lane_info, conn_id, connector_object_id; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 518 | struct radeon_i2c_bus_rec ddc_bus; |
Alex Deucher | 26b5bc9 | 2010-08-05 21:21:18 -0400 | [diff] [blame] | 519 | struct radeon_router router; |
Alex Deucher | eed45b3 | 2009-12-04 14:45:27 -0500 | [diff] [blame] | 520 | struct radeon_gpio_rec gpio; |
| 521 | struct radeon_hpd hpd; |
| 522 | |
Alex Deucher | a084e6e | 2010-03-18 01:04:01 -0400 | [diff] [blame] | 523 | if (!atom_parse_data_header(ctx, index, &size, &frev, &crev, &data_offset)) |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 524 | return false; |
| 525 | |
| 526 | if (crev < 2) |
| 527 | return false; |
| 528 | |
| 529 | obj_header = (ATOM_OBJECT_HEADER *) (ctx->bios + data_offset); |
| 530 | path_obj = (ATOM_DISPLAY_OBJECT_PATH_TABLE *) |
| 531 | (ctx->bios + data_offset + |
| 532 | le16_to_cpu(obj_header->usDisplayPathTableOffset)); |
| 533 | con_obj = (ATOM_CONNECTOR_OBJECT_TABLE *) |
| 534 | (ctx->bios + data_offset + |
| 535 | le16_to_cpu(obj_header->usConnectorObjectTableOffset)); |
Alex Deucher | 26b5bc9 | 2010-08-05 21:21:18 -0400 | [diff] [blame] | 536 | router_obj = (ATOM_OBJECT_TABLE *) |
| 537 | (ctx->bios + data_offset + |
| 538 | le16_to_cpu(obj_header->usRouterObjectTableOffset)); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 539 | device_support = le16_to_cpu(obj_header->usDeviceSupport); |
| 540 | |
| 541 | path_size = 0; |
| 542 | for (i = 0; i < path_obj->ucNumOfDispPath; i++) { |
| 543 | uint8_t *addr = (uint8_t *) path_obj->asDispPath; |
| 544 | ATOM_DISPLAY_OBJECT_PATH *path; |
| 545 | addr += path_size; |
| 546 | path = (ATOM_DISPLAY_OBJECT_PATH *) addr; |
| 547 | path_size += le16_to_cpu(path->usSize); |
Alex Deucher | 5137ee9 | 2010-08-12 18:58:47 -0400 | [diff] [blame] | 548 | |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 549 | if (device_support & le16_to_cpu(path->usDeviceTag)) { |
| 550 | uint8_t con_obj_id, con_obj_num, con_obj_type; |
| 551 | |
| 552 | con_obj_id = |
| 553 | (le16_to_cpu(path->usConnObjectId) & OBJECT_ID_MASK) |
| 554 | >> OBJECT_ID_SHIFT; |
| 555 | con_obj_num = |
| 556 | (le16_to_cpu(path->usConnObjectId) & ENUM_ID_MASK) |
| 557 | >> ENUM_ID_SHIFT; |
| 558 | con_obj_type = |
| 559 | (le16_to_cpu(path->usConnObjectId) & |
| 560 | OBJECT_TYPE_MASK) >> OBJECT_TYPE_SHIFT; |
| 561 | |
Dave Airlie | 4bbd497 | 2009-09-25 08:56:12 +1000 | [diff] [blame] | 562 | /* TODO CV support */ |
| 563 | if (le16_to_cpu(path->usDeviceTag) == |
| 564 | ATOM_DEVICE_CV_SUPPORT) |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 565 | continue; |
| 566 | |
Alex Deucher | ee59f2b | 2009-11-05 13:11:46 -0500 | [diff] [blame] | 567 | /* IGP chips */ |
| 568 | if ((rdev->flags & RADEON_IS_IGP) && |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 569 | (con_obj_id == |
| 570 | CONNECTOR_OBJECT_ID_PCIE_CONNECTOR)) { |
| 571 | uint16_t igp_offset = 0; |
| 572 | ATOM_INTEGRATED_SYSTEM_INFO_V2 *igp_obj; |
| 573 | |
| 574 | index = |
| 575 | GetIndexIntoMasterTable(DATA, |
| 576 | IntegratedSystemInfo); |
| 577 | |
Alex Deucher | a084e6e | 2010-03-18 01:04:01 -0400 | [diff] [blame] | 578 | if (atom_parse_data_header(ctx, index, &size, &frev, |
| 579 | &crev, &igp_offset)) { |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 580 | |
Alex Deucher | a084e6e | 2010-03-18 01:04:01 -0400 | [diff] [blame] | 581 | if (crev >= 2) { |
| 582 | igp_obj = |
| 583 | (ATOM_INTEGRATED_SYSTEM_INFO_V2 |
| 584 | *) (ctx->bios + igp_offset); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 585 | |
Alex Deucher | a084e6e | 2010-03-18 01:04:01 -0400 | [diff] [blame] | 586 | if (igp_obj) { |
| 587 | uint32_t slot_config, ct; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 588 | |
Alex Deucher | a084e6e | 2010-03-18 01:04:01 -0400 | [diff] [blame] | 589 | if (con_obj_num == 1) |
| 590 | slot_config = |
| 591 | igp_obj-> |
| 592 | ulDDISlot1Config; |
| 593 | else |
| 594 | slot_config = |
| 595 | igp_obj-> |
| 596 | ulDDISlot2Config; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 597 | |
Alex Deucher | a084e6e | 2010-03-18 01:04:01 -0400 | [diff] [blame] | 598 | ct = (slot_config >> 16) & 0xff; |
| 599 | connector_type = |
| 600 | object_connector_convert |
| 601 | [ct]; |
| 602 | connector_object_id = ct; |
| 603 | igp_lane_info = |
| 604 | slot_config & 0xffff; |
| 605 | } else |
| 606 | continue; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 607 | } else |
| 608 | continue; |
Alex Deucher | a084e6e | 2010-03-18 01:04:01 -0400 | [diff] [blame] | 609 | } else { |
| 610 | igp_lane_info = 0; |
| 611 | connector_type = |
| 612 | object_connector_convert[con_obj_id]; |
| 613 | connector_object_id = con_obj_id; |
| 614 | } |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 615 | } else { |
| 616 | igp_lane_info = 0; |
| 617 | connector_type = |
| 618 | object_connector_convert[con_obj_id]; |
Alex Deucher | b75fad0 | 2009-11-05 13:16:01 -0500 | [diff] [blame] | 619 | connector_object_id = con_obj_id; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 620 | } |
| 621 | |
| 622 | if (connector_type == DRM_MODE_CONNECTOR_Unknown) |
| 623 | continue; |
| 624 | |
Tyson Whitehead | bdd91b2 | 2010-11-08 16:08:30 +0000 | [diff] [blame] | 625 | router.ddc_valid = false; |
| 626 | router.cd_valid = false; |
Alex Deucher | 26b5bc9 | 2010-08-05 21:21:18 -0400 | [diff] [blame] | 627 | for (j = 0; j < ((le16_to_cpu(path->usSize) - 8) / 2); j++) { |
| 628 | uint8_t grph_obj_id, grph_obj_num, grph_obj_type; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 629 | |
Alex Deucher | 26b5bc9 | 2010-08-05 21:21:18 -0400 | [diff] [blame] | 630 | grph_obj_id = |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 631 | (le16_to_cpu(path->usGraphicObjIds[j]) & |
| 632 | OBJECT_ID_MASK) >> OBJECT_ID_SHIFT; |
Alex Deucher | 26b5bc9 | 2010-08-05 21:21:18 -0400 | [diff] [blame] | 633 | grph_obj_num = |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 634 | (le16_to_cpu(path->usGraphicObjIds[j]) & |
| 635 | ENUM_ID_MASK) >> ENUM_ID_SHIFT; |
Alex Deucher | 26b5bc9 | 2010-08-05 21:21:18 -0400 | [diff] [blame] | 636 | grph_obj_type = |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 637 | (le16_to_cpu(path->usGraphicObjIds[j]) & |
| 638 | OBJECT_TYPE_MASK) >> OBJECT_TYPE_SHIFT; |
| 639 | |
Alex Deucher | 26b5bc9 | 2010-08-05 21:21:18 -0400 | [diff] [blame] | 640 | if (grph_obj_type == GRAPH_OBJECT_TYPE_ENCODER) { |
Alex Deucher | 5137ee9 | 2010-08-12 18:58:47 -0400 | [diff] [blame] | 641 | u16 encoder_obj = le16_to_cpu(path->usGraphicObjIds[j]); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 642 | |
| 643 | radeon_add_atom_encoder(dev, |
Alex Deucher | 5137ee9 | 2010-08-12 18:58:47 -0400 | [diff] [blame] | 644 | encoder_obj, |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 645 | le16_to_cpu |
| 646 | (path-> |
| 647 | usDeviceTag)); |
| 648 | |
Alex Deucher | 26b5bc9 | 2010-08-05 21:21:18 -0400 | [diff] [blame] | 649 | } else if (grph_obj_type == GRAPH_OBJECT_TYPE_ROUTER) { |
Alex Deucher | 26b5bc9 | 2010-08-05 21:21:18 -0400 | [diff] [blame] | 650 | for (k = 0; k < router_obj->ucNumberOfObjects; k++) { |
Tyson Whitehead | bdd91b2 | 2010-11-08 16:08:30 +0000 | [diff] [blame] | 651 | u16 router_obj_id = le16_to_cpu(router_obj->asObjects[k].usObjectID); |
Alex Deucher | 26b5bc9 | 2010-08-05 21:21:18 -0400 | [diff] [blame] | 652 | if (le16_to_cpu(path->usGraphicObjIds[j]) == router_obj_id) { |
| 653 | ATOM_COMMON_RECORD_HEADER *record = (ATOM_COMMON_RECORD_HEADER *) |
| 654 | (ctx->bios + data_offset + |
| 655 | le16_to_cpu(router_obj->asObjects[k].usRecordOffset)); |
| 656 | ATOM_I2C_RECORD *i2c_record; |
| 657 | ATOM_I2C_ID_CONFIG_ACCESS *i2c_config; |
| 658 | ATOM_ROUTER_DDC_PATH_SELECT_RECORD *ddc_path; |
Alex Deucher | fb939df | 2010-11-08 16:08:29 +0000 | [diff] [blame] | 659 | ATOM_ROUTER_DATA_CLOCK_PATH_SELECT_RECORD *cd_path; |
Alex Deucher | 26b5bc9 | 2010-08-05 21:21:18 -0400 | [diff] [blame] | 660 | ATOM_SRC_DST_TABLE_FOR_ONE_OBJECT *router_src_dst_table = |
| 661 | (ATOM_SRC_DST_TABLE_FOR_ONE_OBJECT *) |
| 662 | (ctx->bios + data_offset + |
| 663 | le16_to_cpu(router_obj->asObjects[k].usSrcDstTableOffset)); |
| 664 | int enum_id; |
| 665 | |
| 666 | router.router_id = router_obj_id; |
| 667 | for (enum_id = 0; enum_id < router_src_dst_table->ucNumberOfDst; |
| 668 | enum_id++) { |
| 669 | if (le16_to_cpu(path->usConnObjectId) == |
| 670 | le16_to_cpu(router_src_dst_table->usDstObjectID[enum_id])) |
| 671 | break; |
| 672 | } |
| 673 | |
| 674 | while (record->ucRecordType > 0 && |
| 675 | record->ucRecordType <= ATOM_MAX_OBJECT_RECORD_NUMBER) { |
| 676 | switch (record->ucRecordType) { |
| 677 | case ATOM_I2C_RECORD_TYPE: |
| 678 | i2c_record = |
| 679 | (ATOM_I2C_RECORD *) |
| 680 | record; |
| 681 | i2c_config = |
| 682 | (ATOM_I2C_ID_CONFIG_ACCESS *) |
| 683 | &i2c_record->sucI2cId; |
| 684 | router.i2c_info = |
| 685 | radeon_lookup_i2c_gpio(rdev, |
| 686 | i2c_config-> |
| 687 | ucAccess); |
| 688 | router.i2c_addr = i2c_record->ucI2CAddr >> 1; |
| 689 | break; |
| 690 | case ATOM_ROUTER_DDC_PATH_SELECT_RECORD_TYPE: |
| 691 | ddc_path = (ATOM_ROUTER_DDC_PATH_SELECT_RECORD *) |
| 692 | record; |
Alex Deucher | fb939df | 2010-11-08 16:08:29 +0000 | [diff] [blame] | 693 | router.ddc_valid = true; |
| 694 | router.ddc_mux_type = ddc_path->ucMuxType; |
| 695 | router.ddc_mux_control_pin = ddc_path->ucMuxControlPin; |
| 696 | router.ddc_mux_state = ddc_path->ucMuxState[enum_id]; |
| 697 | break; |
| 698 | case ATOM_ROUTER_DATA_CLOCK_PATH_SELECT_RECORD_TYPE: |
| 699 | cd_path = (ATOM_ROUTER_DATA_CLOCK_PATH_SELECT_RECORD *) |
| 700 | record; |
| 701 | router.cd_valid = true; |
| 702 | router.cd_mux_type = cd_path->ucMuxType; |
| 703 | router.cd_mux_control_pin = cd_path->ucMuxControlPin; |
| 704 | router.cd_mux_state = cd_path->ucMuxState[enum_id]; |
Alex Deucher | 26b5bc9 | 2010-08-05 21:21:18 -0400 | [diff] [blame] | 705 | break; |
| 706 | } |
| 707 | record = (ATOM_COMMON_RECORD_HEADER *) |
| 708 | ((char *)record + record->ucRecordSize); |
| 709 | } |
| 710 | } |
| 711 | } |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 712 | } |
| 713 | } |
| 714 | |
Alex Deucher | eed45b3 | 2009-12-04 14:45:27 -0500 | [diff] [blame] | 715 | /* look up gpio for ddc, hpd */ |
Alex Deucher | 2bfcc0f | 2010-05-18 19:26:46 -0400 | [diff] [blame] | 716 | ddc_bus.valid = false; |
| 717 | hpd.hpd = RADEON_HPD_NONE; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 718 | if ((le16_to_cpu(path->usDeviceTag) & |
Alex Deucher | eed45b3 | 2009-12-04 14:45:27 -0500 | [diff] [blame] | 719 | (ATOM_DEVICE_TV_SUPPORT | ATOM_DEVICE_CV_SUPPORT)) == 0) { |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 720 | for (j = 0; j < con_obj->ucNumberOfObjects; j++) { |
| 721 | if (le16_to_cpu(path->usConnObjectId) == |
| 722 | le16_to_cpu(con_obj->asObjects[j]. |
| 723 | usObjectID)) { |
| 724 | ATOM_COMMON_RECORD_HEADER |
| 725 | *record = |
| 726 | (ATOM_COMMON_RECORD_HEADER |
| 727 | *) |
| 728 | (ctx->bios + data_offset + |
| 729 | le16_to_cpu(con_obj-> |
| 730 | asObjects[j]. |
| 731 | usRecordOffset)); |
| 732 | ATOM_I2C_RECORD *i2c_record; |
Alex Deucher | eed45b3 | 2009-12-04 14:45:27 -0500 | [diff] [blame] | 733 | ATOM_HPD_INT_RECORD *hpd_record; |
Alex Deucher | d3f420d | 2009-12-08 14:30:49 -0500 | [diff] [blame] | 734 | ATOM_I2C_ID_CONFIG_ACCESS *i2c_config; |
Alex Deucher | 6a93cb2 | 2009-11-23 17:39:28 -0500 | [diff] [blame] | 735 | |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 736 | while (record->ucRecordType > 0 |
| 737 | && record-> |
| 738 | ucRecordType <= |
| 739 | ATOM_MAX_OBJECT_RECORD_NUMBER) { |
Alex Deucher | eed45b3 | 2009-12-04 14:45:27 -0500 | [diff] [blame] | 740 | switch (record->ucRecordType) { |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 741 | case ATOM_I2C_RECORD_TYPE: |
| 742 | i2c_record = |
Alex Deucher | eed45b3 | 2009-12-04 14:45:27 -0500 | [diff] [blame] | 743 | (ATOM_I2C_RECORD *) |
| 744 | record; |
Alex Deucher | d3f420d | 2009-12-08 14:30:49 -0500 | [diff] [blame] | 745 | i2c_config = |
| 746 | (ATOM_I2C_ID_CONFIG_ACCESS *) |
| 747 | &i2c_record->sucI2cId; |
Alex Deucher | eed45b3 | 2009-12-04 14:45:27 -0500 | [diff] [blame] | 748 | ddc_bus = radeon_lookup_i2c_gpio(rdev, |
Alex Deucher | d3f420d | 2009-12-08 14:30:49 -0500 | [diff] [blame] | 749 | i2c_config-> |
| 750 | ucAccess); |
Alex Deucher | eed45b3 | 2009-12-04 14:45:27 -0500 | [diff] [blame] | 751 | break; |
| 752 | case ATOM_HPD_INT_RECORD_TYPE: |
| 753 | hpd_record = |
| 754 | (ATOM_HPD_INT_RECORD *) |
| 755 | record; |
| 756 | gpio = radeon_lookup_gpio(rdev, |
| 757 | hpd_record->ucHPDIntGPIOID); |
| 758 | hpd = radeon_atom_get_hpd_info_from_gpio(rdev, &gpio); |
| 759 | hpd.plugged_state = hpd_record->ucPlugged_PinState; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 760 | break; |
| 761 | } |
| 762 | record = |
| 763 | (ATOM_COMMON_RECORD_HEADER |
| 764 | *) ((char *)record |
| 765 | + |
| 766 | record-> |
| 767 | ucRecordSize); |
| 768 | } |
| 769 | break; |
| 770 | } |
| 771 | } |
Alex Deucher | eed45b3 | 2009-12-04 14:45:27 -0500 | [diff] [blame] | 772 | } |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 773 | |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 774 | /* needed for aux chan transactions */ |
Alex Deucher | 8e36ed0 | 2010-05-18 19:26:47 -0400 | [diff] [blame] | 775 | ddc_bus.hpd = hpd.hpd; |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 776 | |
Alex Deucher | 705af9c | 2009-09-10 16:31:13 -0400 | [diff] [blame] | 777 | conn_id = le16_to_cpu(path->usConnObjectId); |
| 778 | |
| 779 | if (!radeon_atom_apply_quirks |
| 780 | (dev, le16_to_cpu(path->usDeviceTag), &connector_type, |
Alex Deucher | eed45b3 | 2009-12-04 14:45:27 -0500 | [diff] [blame] | 781 | &ddc_bus, &conn_id, &hpd)) |
Alex Deucher | 705af9c | 2009-09-10 16:31:13 -0400 | [diff] [blame] | 782 | continue; |
| 783 | |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 784 | radeon_add_atom_connector(dev, |
Alex Deucher | 705af9c | 2009-09-10 16:31:13 -0400 | [diff] [blame] | 785 | conn_id, |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 786 | le16_to_cpu(path-> |
| 787 | usDeviceTag), |
| 788 | connector_type, &ddc_bus, |
Alex Deucher | 5137ee9 | 2010-08-12 18:58:47 -0400 | [diff] [blame] | 789 | igp_lane_info, |
Alex Deucher | eed45b3 | 2009-12-04 14:45:27 -0500 | [diff] [blame] | 790 | connector_object_id, |
Alex Deucher | 26b5bc9 | 2010-08-05 21:21:18 -0400 | [diff] [blame] | 791 | &hpd, |
| 792 | &router); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 793 | |
| 794 | } |
| 795 | } |
| 796 | |
| 797 | radeon_link_encoder_connector(dev); |
| 798 | |
| 799 | return true; |
| 800 | } |
| 801 | |
Alex Deucher | b75fad0 | 2009-11-05 13:16:01 -0500 | [diff] [blame] | 802 | static uint16_t atombios_get_connector_object_id(struct drm_device *dev, |
| 803 | int connector_type, |
| 804 | uint16_t devices) |
| 805 | { |
| 806 | struct radeon_device *rdev = dev->dev_private; |
| 807 | |
| 808 | if (rdev->flags & RADEON_IS_IGP) { |
| 809 | return supported_devices_connector_object_id_convert |
| 810 | [connector_type]; |
| 811 | } else if (((connector_type == DRM_MODE_CONNECTOR_DVII) || |
| 812 | (connector_type == DRM_MODE_CONNECTOR_DVID)) && |
| 813 | (devices & ATOM_DEVICE_DFP2_SUPPORT)) { |
| 814 | struct radeon_mode_info *mode_info = &rdev->mode_info; |
| 815 | struct atom_context *ctx = mode_info->atom_context; |
| 816 | int index = GetIndexIntoMasterTable(DATA, XTMDS_Info); |
| 817 | uint16_t size, data_offset; |
| 818 | uint8_t frev, crev; |
| 819 | ATOM_XTMDS_INFO *xtmds; |
| 820 | |
Alex Deucher | a084e6e | 2010-03-18 01:04:01 -0400 | [diff] [blame] | 821 | if (atom_parse_data_header(ctx, index, &size, &frev, &crev, &data_offset)) { |
| 822 | xtmds = (ATOM_XTMDS_INFO *)(ctx->bios + data_offset); |
Alex Deucher | b75fad0 | 2009-11-05 13:16:01 -0500 | [diff] [blame] | 823 | |
Alex Deucher | a084e6e | 2010-03-18 01:04:01 -0400 | [diff] [blame] | 824 | if (xtmds->ucSupportedLink & ATOM_XTMDS_SUPPORTED_DUALLINK) { |
| 825 | if (connector_type == DRM_MODE_CONNECTOR_DVII) |
| 826 | return CONNECTOR_OBJECT_ID_DUAL_LINK_DVI_I; |
| 827 | else |
| 828 | return CONNECTOR_OBJECT_ID_DUAL_LINK_DVI_D; |
| 829 | } else { |
| 830 | if (connector_type == DRM_MODE_CONNECTOR_DVII) |
| 831 | return CONNECTOR_OBJECT_ID_SINGLE_LINK_DVI_I; |
| 832 | else |
| 833 | return CONNECTOR_OBJECT_ID_SINGLE_LINK_DVI_D; |
| 834 | } |
| 835 | } else |
| 836 | return supported_devices_connector_object_id_convert |
| 837 | [connector_type]; |
Alex Deucher | b75fad0 | 2009-11-05 13:16:01 -0500 | [diff] [blame] | 838 | } else { |
| 839 | return supported_devices_connector_object_id_convert |
| 840 | [connector_type]; |
| 841 | } |
| 842 | } |
| 843 | |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 844 | struct bios_connector { |
| 845 | bool valid; |
Alex Deucher | 705af9c | 2009-09-10 16:31:13 -0400 | [diff] [blame] | 846 | uint16_t line_mux; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 847 | uint16_t devices; |
| 848 | int connector_type; |
| 849 | struct radeon_i2c_bus_rec ddc_bus; |
Alex Deucher | eed45b3 | 2009-12-04 14:45:27 -0500 | [diff] [blame] | 850 | struct radeon_hpd hpd; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 851 | }; |
| 852 | |
| 853 | bool radeon_get_atom_connector_info_from_supported_devices_table(struct |
| 854 | drm_device |
| 855 | *dev) |
| 856 | { |
| 857 | struct radeon_device *rdev = dev->dev_private; |
| 858 | struct radeon_mode_info *mode_info = &rdev->mode_info; |
| 859 | struct atom_context *ctx = mode_info->atom_context; |
| 860 | int index = GetIndexIntoMasterTable(DATA, SupportedDevicesInfo); |
| 861 | uint16_t size, data_offset; |
| 862 | uint8_t frev, crev; |
| 863 | uint16_t device_support; |
| 864 | uint8_t dac; |
| 865 | union atom_supported_devices *supported_devices; |
Alex Deucher | eed45b3 | 2009-12-04 14:45:27 -0500 | [diff] [blame] | 866 | int i, j, max_device; |
Prarit Bhargava | f49d273 | 2010-05-24 10:24:07 +1000 | [diff] [blame] | 867 | struct bios_connector *bios_connectors; |
| 868 | size_t bc_size = sizeof(*bios_connectors) * ATOM_MAX_SUPPORTED_DEVICE; |
Alex Deucher | 26b5bc9 | 2010-08-05 21:21:18 -0400 | [diff] [blame] | 869 | struct radeon_router router; |
| 870 | |
Alex Deucher | fb939df | 2010-11-08 16:08:29 +0000 | [diff] [blame] | 871 | router.ddc_valid = false; |
| 872 | router.cd_valid = false; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 873 | |
Prarit Bhargava | f49d273 | 2010-05-24 10:24:07 +1000 | [diff] [blame] | 874 | bios_connectors = kzalloc(bc_size, GFP_KERNEL); |
| 875 | if (!bios_connectors) |
Alex Deucher | a084e6e | 2010-03-18 01:04:01 -0400 | [diff] [blame] | 876 | return false; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 877 | |
Prarit Bhargava | f49d273 | 2010-05-24 10:24:07 +1000 | [diff] [blame] | 878 | if (!atom_parse_data_header(ctx, index, &size, &frev, &crev, |
| 879 | &data_offset)) { |
| 880 | kfree(bios_connectors); |
| 881 | return false; |
| 882 | } |
| 883 | |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 884 | supported_devices = |
| 885 | (union atom_supported_devices *)(ctx->bios + data_offset); |
| 886 | |
| 887 | device_support = le16_to_cpu(supported_devices->info.usDeviceSupport); |
| 888 | |
Alex Deucher | eed45b3 | 2009-12-04 14:45:27 -0500 | [diff] [blame] | 889 | if (frev > 1) |
| 890 | max_device = ATOM_MAX_SUPPORTED_DEVICE; |
| 891 | else |
| 892 | max_device = ATOM_MAX_SUPPORTED_DEVICE_INFO; |
| 893 | |
| 894 | for (i = 0; i < max_device; i++) { |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 895 | ATOM_CONNECTOR_INFO_I2C ci = |
| 896 | supported_devices->info.asConnInfo[i]; |
| 897 | |
| 898 | bios_connectors[i].valid = false; |
| 899 | |
| 900 | if (!(device_support & (1 << i))) { |
| 901 | continue; |
| 902 | } |
| 903 | |
| 904 | if (i == ATOM_DEVICE_CV_INDEX) { |
Dave Airlie | d9fdaaf | 2010-08-02 10:42:55 +1000 | [diff] [blame] | 905 | DRM_DEBUG_KMS("Skipping Component Video\n"); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 906 | continue; |
| 907 | } |
| 908 | |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 909 | bios_connectors[i].connector_type = |
| 910 | supported_devices_connector_convert[ci.sucConnectorInfo. |
| 911 | sbfAccess. |
| 912 | bfConnectorType]; |
| 913 | |
| 914 | if (bios_connectors[i].connector_type == |
| 915 | DRM_MODE_CONNECTOR_Unknown) |
| 916 | continue; |
| 917 | |
| 918 | dac = ci.sucConnectorInfo.sbfAccess.bfAssociatedDAC; |
| 919 | |
Alex Deucher | d3f420d | 2009-12-08 14:30:49 -0500 | [diff] [blame] | 920 | bios_connectors[i].line_mux = |
| 921 | ci.sucI2cId.ucAccess; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 922 | |
| 923 | /* give tv unique connector ids */ |
| 924 | if (i == ATOM_DEVICE_TV1_INDEX) { |
| 925 | bios_connectors[i].ddc_bus.valid = false; |
| 926 | bios_connectors[i].line_mux = 50; |
| 927 | } else if (i == ATOM_DEVICE_TV2_INDEX) { |
| 928 | bios_connectors[i].ddc_bus.valid = false; |
| 929 | bios_connectors[i].line_mux = 51; |
| 930 | } else if (i == ATOM_DEVICE_CV_INDEX) { |
| 931 | bios_connectors[i].ddc_bus.valid = false; |
| 932 | bios_connectors[i].line_mux = 52; |
| 933 | } else |
| 934 | bios_connectors[i].ddc_bus = |
Alex Deucher | eed45b3 | 2009-12-04 14:45:27 -0500 | [diff] [blame] | 935 | radeon_lookup_i2c_gpio(rdev, |
| 936 | bios_connectors[i].line_mux); |
| 937 | |
| 938 | if ((crev > 1) && (frev > 1)) { |
| 939 | u8 isb = supported_devices->info_2d1.asIntSrcInfo[i].ucIntSrcBitmap; |
| 940 | switch (isb) { |
| 941 | case 0x4: |
| 942 | bios_connectors[i].hpd.hpd = RADEON_HPD_1; |
| 943 | break; |
| 944 | case 0xa: |
| 945 | bios_connectors[i].hpd.hpd = RADEON_HPD_2; |
| 946 | break; |
| 947 | default: |
| 948 | bios_connectors[i].hpd.hpd = RADEON_HPD_NONE; |
| 949 | break; |
| 950 | } |
| 951 | } else { |
| 952 | if (i == ATOM_DEVICE_DFP1_INDEX) |
| 953 | bios_connectors[i].hpd.hpd = RADEON_HPD_1; |
| 954 | else if (i == ATOM_DEVICE_DFP2_INDEX) |
| 955 | bios_connectors[i].hpd.hpd = RADEON_HPD_2; |
| 956 | else |
| 957 | bios_connectors[i].hpd.hpd = RADEON_HPD_NONE; |
| 958 | } |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 959 | |
| 960 | /* Always set the connector type to VGA for CRT1/CRT2. if they are |
| 961 | * shared with a DVI port, we'll pick up the DVI connector when we |
| 962 | * merge the outputs. Some bioses incorrectly list VGA ports as DVI. |
| 963 | */ |
| 964 | if (i == ATOM_DEVICE_CRT1_INDEX || i == ATOM_DEVICE_CRT2_INDEX) |
| 965 | bios_connectors[i].connector_type = |
| 966 | DRM_MODE_CONNECTOR_VGA; |
| 967 | |
| 968 | if (!radeon_atom_apply_quirks |
| 969 | (dev, (1 << i), &bios_connectors[i].connector_type, |
Alex Deucher | eed45b3 | 2009-12-04 14:45:27 -0500 | [diff] [blame] | 970 | &bios_connectors[i].ddc_bus, &bios_connectors[i].line_mux, |
| 971 | &bios_connectors[i].hpd)) |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 972 | continue; |
| 973 | |
| 974 | bios_connectors[i].valid = true; |
| 975 | bios_connectors[i].devices = (1 << i); |
| 976 | |
| 977 | if (ASIC_IS_AVIVO(rdev) || radeon_r4xx_atom) |
| 978 | radeon_add_atom_encoder(dev, |
Alex Deucher | 5137ee9 | 2010-08-12 18:58:47 -0400 | [diff] [blame] | 979 | radeon_get_encoder_enum(dev, |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 980 | (1 << i), |
| 981 | dac), |
| 982 | (1 << i)); |
| 983 | else |
| 984 | radeon_add_legacy_encoder(dev, |
Alex Deucher | 5137ee9 | 2010-08-12 18:58:47 -0400 | [diff] [blame] | 985 | radeon_get_encoder_enum(dev, |
Alex Deucher | f56cd64 | 2009-12-18 11:28:22 -0500 | [diff] [blame] | 986 | (1 << i), |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 987 | dac), |
| 988 | (1 << i)); |
| 989 | } |
| 990 | |
| 991 | /* combine shared connectors */ |
Alex Deucher | eed45b3 | 2009-12-04 14:45:27 -0500 | [diff] [blame] | 992 | for (i = 0; i < max_device; i++) { |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 993 | if (bios_connectors[i].valid) { |
Alex Deucher | eed45b3 | 2009-12-04 14:45:27 -0500 | [diff] [blame] | 994 | for (j = 0; j < max_device; j++) { |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 995 | if (bios_connectors[j].valid && (i != j)) { |
| 996 | if (bios_connectors[i].line_mux == |
| 997 | bios_connectors[j].line_mux) { |
Alex Deucher | f56cd64 | 2009-12-18 11:28:22 -0500 | [diff] [blame] | 998 | /* make sure not to combine LVDS */ |
| 999 | if (bios_connectors[i].devices & (ATOM_DEVICE_LCD_SUPPORT)) { |
| 1000 | bios_connectors[i].line_mux = 53; |
| 1001 | bios_connectors[i].ddc_bus.valid = false; |
| 1002 | continue; |
| 1003 | } |
| 1004 | if (bios_connectors[j].devices & (ATOM_DEVICE_LCD_SUPPORT)) { |
| 1005 | bios_connectors[j].line_mux = 53; |
| 1006 | bios_connectors[j].ddc_bus.valid = false; |
| 1007 | continue; |
| 1008 | } |
| 1009 | /* combine analog and digital for DVI-I */ |
| 1010 | if (((bios_connectors[i].devices & (ATOM_DEVICE_DFP_SUPPORT)) && |
| 1011 | (bios_connectors[j].devices & (ATOM_DEVICE_CRT_SUPPORT))) || |
| 1012 | ((bios_connectors[j].devices & (ATOM_DEVICE_DFP_SUPPORT)) && |
| 1013 | (bios_connectors[i].devices & (ATOM_DEVICE_CRT_SUPPORT)))) { |
| 1014 | bios_connectors[i].devices |= |
| 1015 | bios_connectors[j].devices; |
| 1016 | bios_connectors[i].connector_type = |
| 1017 | DRM_MODE_CONNECTOR_DVII; |
| 1018 | if (bios_connectors[j].devices & (ATOM_DEVICE_DFP_SUPPORT)) |
Alex Deucher | eed45b3 | 2009-12-04 14:45:27 -0500 | [diff] [blame] | 1019 | bios_connectors[i].hpd = |
| 1020 | bios_connectors[j].hpd; |
Alex Deucher | f56cd64 | 2009-12-18 11:28:22 -0500 | [diff] [blame] | 1021 | bios_connectors[j].valid = false; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1022 | } |
| 1023 | } |
| 1024 | } |
| 1025 | } |
| 1026 | } |
| 1027 | } |
| 1028 | |
| 1029 | /* add the connectors */ |
Alex Deucher | eed45b3 | 2009-12-04 14:45:27 -0500 | [diff] [blame] | 1030 | for (i = 0; i < max_device; i++) { |
Alex Deucher | b75fad0 | 2009-11-05 13:16:01 -0500 | [diff] [blame] | 1031 | if (bios_connectors[i].valid) { |
| 1032 | uint16_t connector_object_id = |
| 1033 | atombios_get_connector_object_id(dev, |
| 1034 | bios_connectors[i].connector_type, |
| 1035 | bios_connectors[i].devices); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1036 | radeon_add_atom_connector(dev, |
| 1037 | bios_connectors[i].line_mux, |
| 1038 | bios_connectors[i].devices, |
| 1039 | bios_connectors[i]. |
| 1040 | connector_type, |
| 1041 | &bios_connectors[i].ddc_bus, |
Alex Deucher | 5137ee9 | 2010-08-12 18:58:47 -0400 | [diff] [blame] | 1042 | 0, |
Alex Deucher | eed45b3 | 2009-12-04 14:45:27 -0500 | [diff] [blame] | 1043 | connector_object_id, |
Alex Deucher | 26b5bc9 | 2010-08-05 21:21:18 -0400 | [diff] [blame] | 1044 | &bios_connectors[i].hpd, |
| 1045 | &router); |
Alex Deucher | b75fad0 | 2009-11-05 13:16:01 -0500 | [diff] [blame] | 1046 | } |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1047 | } |
| 1048 | |
| 1049 | radeon_link_encoder_connector(dev); |
| 1050 | |
Prarit Bhargava | f49d273 | 2010-05-24 10:24:07 +1000 | [diff] [blame] | 1051 | kfree(bios_connectors); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1052 | return true; |
| 1053 | } |
| 1054 | |
| 1055 | union firmware_info { |
| 1056 | ATOM_FIRMWARE_INFO info; |
| 1057 | ATOM_FIRMWARE_INFO_V1_2 info_12; |
| 1058 | ATOM_FIRMWARE_INFO_V1_3 info_13; |
| 1059 | ATOM_FIRMWARE_INFO_V1_4 info_14; |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 1060 | ATOM_FIRMWARE_INFO_V2_1 info_21; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1061 | }; |
| 1062 | |
| 1063 | bool radeon_atom_get_clock_info(struct drm_device *dev) |
| 1064 | { |
| 1065 | struct radeon_device *rdev = dev->dev_private; |
| 1066 | struct radeon_mode_info *mode_info = &rdev->mode_info; |
| 1067 | int index = GetIndexIntoMasterTable(DATA, FirmwareInfo); |
| 1068 | union firmware_info *firmware_info; |
| 1069 | uint8_t frev, crev; |
| 1070 | struct radeon_pll *p1pll = &rdev->clock.p1pll; |
| 1071 | struct radeon_pll *p2pll = &rdev->clock.p2pll; |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 1072 | struct radeon_pll *dcpll = &rdev->clock.dcpll; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1073 | struct radeon_pll *spll = &rdev->clock.spll; |
| 1074 | struct radeon_pll *mpll = &rdev->clock.mpll; |
| 1075 | uint16_t data_offset; |
| 1076 | |
Alex Deucher | a084e6e | 2010-03-18 01:04:01 -0400 | [diff] [blame] | 1077 | if (atom_parse_data_header(mode_info->atom_context, index, NULL, |
| 1078 | &frev, &crev, &data_offset)) { |
| 1079 | firmware_info = |
| 1080 | (union firmware_info *)(mode_info->atom_context->bios + |
| 1081 | data_offset); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1082 | /* pixel clocks */ |
| 1083 | p1pll->reference_freq = |
| 1084 | le16_to_cpu(firmware_info->info.usReferenceClock); |
| 1085 | p1pll->reference_div = 0; |
| 1086 | |
Mathias Fröhlich | bc293e5 | 2009-10-19 17:49:49 -0400 | [diff] [blame] | 1087 | if (crev < 2) |
| 1088 | p1pll->pll_out_min = |
| 1089 | le16_to_cpu(firmware_info->info.usMinPixelClockPLL_Output); |
| 1090 | else |
| 1091 | p1pll->pll_out_min = |
| 1092 | le32_to_cpu(firmware_info->info_12.ulMinPixelClockPLL_Output); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1093 | p1pll->pll_out_max = |
| 1094 | le32_to_cpu(firmware_info->info.ulMaxPixelClockPLL_Output); |
| 1095 | |
Alex Deucher | 86cb2bb | 2010-03-08 12:55:16 -0500 | [diff] [blame] | 1096 | if (crev >= 4) { |
| 1097 | p1pll->lcd_pll_out_min = |
| 1098 | le16_to_cpu(firmware_info->info_14.usLcdMinPixelClockPLL_Output) * 100; |
| 1099 | if (p1pll->lcd_pll_out_min == 0) |
| 1100 | p1pll->lcd_pll_out_min = p1pll->pll_out_min; |
| 1101 | p1pll->lcd_pll_out_max = |
| 1102 | le16_to_cpu(firmware_info->info_14.usLcdMaxPixelClockPLL_Output) * 100; |
| 1103 | if (p1pll->lcd_pll_out_max == 0) |
| 1104 | p1pll->lcd_pll_out_max = p1pll->pll_out_max; |
| 1105 | } else { |
| 1106 | p1pll->lcd_pll_out_min = p1pll->pll_out_min; |
| 1107 | p1pll->lcd_pll_out_max = p1pll->pll_out_max; |
| 1108 | } |
| 1109 | |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1110 | if (p1pll->pll_out_min == 0) { |
| 1111 | if (ASIC_IS_AVIVO(rdev)) |
| 1112 | p1pll->pll_out_min = 64800; |
| 1113 | else |
| 1114 | p1pll->pll_out_min = 20000; |
Alex Deucher | 8f552a6 | 2009-10-27 11:16:09 -0400 | [diff] [blame] | 1115 | } else if (p1pll->pll_out_min > 64800) { |
| 1116 | /* Limiting the pll output range is a good thing generally as |
| 1117 | * it limits the number of possible pll combinations for a given |
| 1118 | * frequency presumably to the ones that work best on each card. |
| 1119 | * However, certain duallink DVI monitors seem to like |
| 1120 | * pll combinations that would be limited by this at least on |
| 1121 | * pre-DCE 3.0 r6xx hardware. This might need to be adjusted per |
| 1122 | * family. |
| 1123 | */ |
Alex Deucher | 48dfaae | 2010-09-29 11:37:41 -0400 | [diff] [blame] | 1124 | p1pll->pll_out_min = 64800; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1125 | } |
| 1126 | |
| 1127 | p1pll->pll_in_min = |
| 1128 | le16_to_cpu(firmware_info->info.usMinPixelClockPLL_Input); |
| 1129 | p1pll->pll_in_max = |
| 1130 | le16_to_cpu(firmware_info->info.usMaxPixelClockPLL_Input); |
| 1131 | |
| 1132 | *p2pll = *p1pll; |
| 1133 | |
| 1134 | /* system clock */ |
| 1135 | spll->reference_freq = |
| 1136 | le16_to_cpu(firmware_info->info.usReferenceClock); |
| 1137 | spll->reference_div = 0; |
| 1138 | |
| 1139 | spll->pll_out_min = |
| 1140 | le16_to_cpu(firmware_info->info.usMinEngineClockPLL_Output); |
| 1141 | spll->pll_out_max = |
| 1142 | le32_to_cpu(firmware_info->info.ulMaxEngineClockPLL_Output); |
| 1143 | |
| 1144 | /* ??? */ |
| 1145 | if (spll->pll_out_min == 0) { |
| 1146 | if (ASIC_IS_AVIVO(rdev)) |
| 1147 | spll->pll_out_min = 64800; |
| 1148 | else |
| 1149 | spll->pll_out_min = 20000; |
| 1150 | } |
| 1151 | |
| 1152 | spll->pll_in_min = |
| 1153 | le16_to_cpu(firmware_info->info.usMinEngineClockPLL_Input); |
| 1154 | spll->pll_in_max = |
| 1155 | le16_to_cpu(firmware_info->info.usMaxEngineClockPLL_Input); |
| 1156 | |
| 1157 | /* memory clock */ |
| 1158 | mpll->reference_freq = |
| 1159 | le16_to_cpu(firmware_info->info.usReferenceClock); |
| 1160 | mpll->reference_div = 0; |
| 1161 | |
| 1162 | mpll->pll_out_min = |
| 1163 | le16_to_cpu(firmware_info->info.usMinMemoryClockPLL_Output); |
| 1164 | mpll->pll_out_max = |
| 1165 | le32_to_cpu(firmware_info->info.ulMaxMemoryClockPLL_Output); |
| 1166 | |
| 1167 | /* ??? */ |
| 1168 | if (mpll->pll_out_min == 0) { |
| 1169 | if (ASIC_IS_AVIVO(rdev)) |
| 1170 | mpll->pll_out_min = 64800; |
| 1171 | else |
| 1172 | mpll->pll_out_min = 20000; |
| 1173 | } |
| 1174 | |
| 1175 | mpll->pll_in_min = |
| 1176 | le16_to_cpu(firmware_info->info.usMinMemoryClockPLL_Input); |
| 1177 | mpll->pll_in_max = |
| 1178 | le16_to_cpu(firmware_info->info.usMaxMemoryClockPLL_Input); |
| 1179 | |
| 1180 | rdev->clock.default_sclk = |
| 1181 | le32_to_cpu(firmware_info->info.ulDefaultEngineClock); |
| 1182 | rdev->clock.default_mclk = |
| 1183 | le32_to_cpu(firmware_info->info.ulDefaultMemoryClock); |
| 1184 | |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 1185 | if (ASIC_IS_DCE4(rdev)) { |
| 1186 | rdev->clock.default_dispclk = |
| 1187 | le32_to_cpu(firmware_info->info_21.ulDefaultDispEngineClkFreq); |
| 1188 | if (rdev->clock.default_dispclk == 0) |
| 1189 | rdev->clock.default_dispclk = 60000; /* 600 Mhz */ |
| 1190 | rdev->clock.dp_extclk = |
| 1191 | le16_to_cpu(firmware_info->info_21.usUniphyDPModeExtClkFreq); |
| 1192 | } |
| 1193 | *dcpll = *p1pll; |
| 1194 | |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1195 | return true; |
| 1196 | } |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 1197 | |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1198 | return false; |
| 1199 | } |
| 1200 | |
Alex Deucher | 06b6476 | 2010-01-05 11:27:29 -0500 | [diff] [blame] | 1201 | union igp_info { |
| 1202 | struct _ATOM_INTEGRATED_SYSTEM_INFO info; |
| 1203 | struct _ATOM_INTEGRATED_SYSTEM_INFO_V2 info_2; |
| 1204 | }; |
| 1205 | |
| 1206 | bool radeon_atombios_sideport_present(struct radeon_device *rdev) |
| 1207 | { |
| 1208 | struct radeon_mode_info *mode_info = &rdev->mode_info; |
| 1209 | int index = GetIndexIntoMasterTable(DATA, IntegratedSystemInfo); |
| 1210 | union igp_info *igp_info; |
| 1211 | u8 frev, crev; |
| 1212 | u16 data_offset; |
| 1213 | |
Alex Deucher | 4c70b2e | 2010-08-02 19:39:15 -0400 | [diff] [blame] | 1214 | /* sideport is AMD only */ |
| 1215 | if (rdev->family == CHIP_RS600) |
| 1216 | return false; |
| 1217 | |
Alex Deucher | a084e6e | 2010-03-18 01:04:01 -0400 | [diff] [blame] | 1218 | if (atom_parse_data_header(mode_info->atom_context, index, NULL, |
| 1219 | &frev, &crev, &data_offset)) { |
| 1220 | igp_info = (union igp_info *)(mode_info->atom_context->bios + |
Alex Deucher | 06b6476 | 2010-01-05 11:27:29 -0500 | [diff] [blame] | 1221 | data_offset); |
Alex Deucher | 06b6476 | 2010-01-05 11:27:29 -0500 | [diff] [blame] | 1222 | switch (crev) { |
| 1223 | case 1: |
Alex Deucher | 4c70b2e | 2010-08-02 19:39:15 -0400 | [diff] [blame] | 1224 | if (igp_info->info.ulBootUpMemoryClock) |
| 1225 | return true; |
Alex Deucher | 06b6476 | 2010-01-05 11:27:29 -0500 | [diff] [blame] | 1226 | break; |
| 1227 | case 2: |
Alex Deucher | 4b80d95 | 2010-08-20 12:47:54 -0400 | [diff] [blame] | 1228 | if (igp_info->info_2.ulBootUpSidePortClock) |
Alex Deucher | 06b6476 | 2010-01-05 11:27:29 -0500 | [diff] [blame] | 1229 | return true; |
| 1230 | break; |
| 1231 | default: |
| 1232 | DRM_ERROR("Unsupported IGP table: %d %d\n", frev, crev); |
| 1233 | break; |
| 1234 | } |
| 1235 | } |
| 1236 | return false; |
| 1237 | } |
| 1238 | |
Dave Airlie | 445282d | 2009-09-09 17:40:54 +1000 | [diff] [blame] | 1239 | bool radeon_atombios_get_tmds_info(struct radeon_encoder *encoder, |
| 1240 | struct radeon_encoder_int_tmds *tmds) |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1241 | { |
| 1242 | struct drm_device *dev = encoder->base.dev; |
| 1243 | struct radeon_device *rdev = dev->dev_private; |
| 1244 | struct radeon_mode_info *mode_info = &rdev->mode_info; |
| 1245 | int index = GetIndexIntoMasterTable(DATA, TMDS_Info); |
| 1246 | uint16_t data_offset; |
| 1247 | struct _ATOM_TMDS_INFO *tmds_info; |
| 1248 | uint8_t frev, crev; |
| 1249 | uint16_t maxfreq; |
| 1250 | int i; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1251 | |
Alex Deucher | a084e6e | 2010-03-18 01:04:01 -0400 | [diff] [blame] | 1252 | if (atom_parse_data_header(mode_info->atom_context, index, NULL, |
| 1253 | &frev, &crev, &data_offset)) { |
| 1254 | tmds_info = |
| 1255 | (struct _ATOM_TMDS_INFO *)(mode_info->atom_context->bios + |
| 1256 | data_offset); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1257 | |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1258 | maxfreq = le16_to_cpu(tmds_info->usMaxFrequency); |
| 1259 | for (i = 0; i < 4; i++) { |
| 1260 | tmds->tmds_pll[i].freq = |
| 1261 | le16_to_cpu(tmds_info->asMiscInfo[i].usFrequency); |
| 1262 | tmds->tmds_pll[i].value = |
| 1263 | tmds_info->asMiscInfo[i].ucPLL_ChargePump & 0x3f; |
| 1264 | tmds->tmds_pll[i].value |= |
| 1265 | (tmds_info->asMiscInfo[i]. |
| 1266 | ucPLL_VCO_Gain & 0x3f) << 6; |
| 1267 | tmds->tmds_pll[i].value |= |
| 1268 | (tmds_info->asMiscInfo[i]. |
| 1269 | ucPLL_DutyCycle & 0xf) << 12; |
| 1270 | tmds->tmds_pll[i].value |= |
| 1271 | (tmds_info->asMiscInfo[i]. |
| 1272 | ucPLL_VoltageSwing & 0xf) << 16; |
| 1273 | |
Dave Airlie | d9fdaaf | 2010-08-02 10:42:55 +1000 | [diff] [blame] | 1274 | DRM_DEBUG_KMS("TMDS PLL From ATOMBIOS %u %x\n", |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1275 | tmds->tmds_pll[i].freq, |
| 1276 | tmds->tmds_pll[i].value); |
| 1277 | |
| 1278 | if (maxfreq == tmds->tmds_pll[i].freq) { |
| 1279 | tmds->tmds_pll[i].freq = 0xffffffff; |
| 1280 | break; |
| 1281 | } |
| 1282 | } |
Dave Airlie | 445282d | 2009-09-09 17:40:54 +1000 | [diff] [blame] | 1283 | return true; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1284 | } |
Dave Airlie | 445282d | 2009-09-09 17:40:54 +1000 | [diff] [blame] | 1285 | return false; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1286 | } |
| 1287 | |
Alex Deucher | ba032a5 | 2010-10-04 17:13:01 -0400 | [diff] [blame] | 1288 | bool radeon_atombios_get_ppll_ss_info(struct radeon_device *rdev, |
| 1289 | struct radeon_atom_ss *ss, |
| 1290 | int id) |
Alex Deucher | ebbe1cb | 2009-10-16 11:15:25 -0400 | [diff] [blame] | 1291 | { |
Alex Deucher | ebbe1cb | 2009-10-16 11:15:25 -0400 | [diff] [blame] | 1292 | struct radeon_mode_info *mode_info = &rdev->mode_info; |
| 1293 | int index = GetIndexIntoMasterTable(DATA, PPLL_SS_Info); |
Alex Deucher | ba032a5 | 2010-10-04 17:13:01 -0400 | [diff] [blame] | 1294 | uint16_t data_offset, size; |
Alex Deucher | ebbe1cb | 2009-10-16 11:15:25 -0400 | [diff] [blame] | 1295 | struct _ATOM_SPREAD_SPECTRUM_INFO *ss_info; |
| 1296 | uint8_t frev, crev; |
Alex Deucher | ba032a5 | 2010-10-04 17:13:01 -0400 | [diff] [blame] | 1297 | int i, num_indices; |
Alex Deucher | ebbe1cb | 2009-10-16 11:15:25 -0400 | [diff] [blame] | 1298 | |
Alex Deucher | ba032a5 | 2010-10-04 17:13:01 -0400 | [diff] [blame] | 1299 | memset(ss, 0, sizeof(struct radeon_atom_ss)); |
| 1300 | if (atom_parse_data_header(mode_info->atom_context, index, &size, |
Alex Deucher | a084e6e | 2010-03-18 01:04:01 -0400 | [diff] [blame] | 1301 | &frev, &crev, &data_offset)) { |
| 1302 | ss_info = |
| 1303 | (struct _ATOM_SPREAD_SPECTRUM_INFO *)(mode_info->atom_context->bios + data_offset); |
Alex Deucher | ebbe1cb | 2009-10-16 11:15:25 -0400 | [diff] [blame] | 1304 | |
Alex Deucher | ba032a5 | 2010-10-04 17:13:01 -0400 | [diff] [blame] | 1305 | num_indices = (size - sizeof(ATOM_COMMON_TABLE_HEADER)) / |
| 1306 | sizeof(ATOM_SPREAD_SPECTRUM_ASSIGNMENT); |
Alex Deucher | ebbe1cb | 2009-10-16 11:15:25 -0400 | [diff] [blame] | 1307 | |
Alex Deucher | ba032a5 | 2010-10-04 17:13:01 -0400 | [diff] [blame] | 1308 | for (i = 0; i < num_indices; i++) { |
Alex Deucher | 279b215 | 2009-12-08 14:07:03 -0500 | [diff] [blame] | 1309 | if (ss_info->asSS_Info[i].ucSS_Id == id) { |
| 1310 | ss->percentage = |
| 1311 | le16_to_cpu(ss_info->asSS_Info[i].usSpreadSpectrumPercentage); |
| 1312 | ss->type = ss_info->asSS_Info[i].ucSpreadSpectrumType; |
| 1313 | ss->step = ss_info->asSS_Info[i].ucSS_Step; |
| 1314 | ss->delay = ss_info->asSS_Info[i].ucSS_Delay; |
| 1315 | ss->range = ss_info->asSS_Info[i].ucSS_Range; |
| 1316 | ss->refdiv = ss_info->asSS_Info[i].ucRecommendedRef_Div; |
Alex Deucher | ba032a5 | 2010-10-04 17:13:01 -0400 | [diff] [blame] | 1317 | return true; |
Alex Deucher | 279b215 | 2009-12-08 14:07:03 -0500 | [diff] [blame] | 1318 | } |
| 1319 | } |
Alex Deucher | ebbe1cb | 2009-10-16 11:15:25 -0400 | [diff] [blame] | 1320 | } |
Alex Deucher | ba032a5 | 2010-10-04 17:13:01 -0400 | [diff] [blame] | 1321 | return false; |
| 1322 | } |
| 1323 | |
Alex Deucher | 4339c44 | 2010-11-22 17:56:25 -0500 | [diff] [blame] | 1324 | static void radeon_atombios_get_igp_ss_overrides(struct radeon_device *rdev, |
| 1325 | struct radeon_atom_ss *ss, |
| 1326 | int id) |
| 1327 | { |
| 1328 | struct radeon_mode_info *mode_info = &rdev->mode_info; |
| 1329 | int index = GetIndexIntoMasterTable(DATA, IntegratedSystemInfo); |
| 1330 | u16 data_offset, size; |
| 1331 | struct _ATOM_INTEGRATED_SYSTEM_INFO_V6 *igp_info; |
| 1332 | u8 frev, crev; |
| 1333 | u16 percentage = 0, rate = 0; |
| 1334 | |
| 1335 | /* get any igp specific overrides */ |
| 1336 | if (atom_parse_data_header(mode_info->atom_context, index, &size, |
| 1337 | &frev, &crev, &data_offset)) { |
| 1338 | igp_info = (struct _ATOM_INTEGRATED_SYSTEM_INFO_V6 *) |
| 1339 | (mode_info->atom_context->bios + data_offset); |
| 1340 | switch (id) { |
| 1341 | case ASIC_INTERNAL_SS_ON_TMDS: |
| 1342 | percentage = le16_to_cpu(igp_info->usDVISSPercentage); |
| 1343 | rate = le16_to_cpu(igp_info->usDVISSpreadRateIn10Hz); |
| 1344 | break; |
| 1345 | case ASIC_INTERNAL_SS_ON_HDMI: |
| 1346 | percentage = le16_to_cpu(igp_info->usHDMISSPercentage); |
| 1347 | rate = le16_to_cpu(igp_info->usHDMISSpreadRateIn10Hz); |
| 1348 | break; |
| 1349 | case ASIC_INTERNAL_SS_ON_LVDS: |
| 1350 | percentage = le16_to_cpu(igp_info->usLvdsSSPercentage); |
| 1351 | rate = le16_to_cpu(igp_info->usLvdsSSpreadRateIn10Hz); |
| 1352 | break; |
| 1353 | } |
| 1354 | if (percentage) |
| 1355 | ss->percentage = percentage; |
| 1356 | if (rate) |
| 1357 | ss->rate = rate; |
| 1358 | } |
| 1359 | } |
| 1360 | |
Alex Deucher | ba032a5 | 2010-10-04 17:13:01 -0400 | [diff] [blame] | 1361 | union asic_ss_info { |
| 1362 | struct _ATOM_ASIC_INTERNAL_SS_INFO info; |
| 1363 | struct _ATOM_ASIC_INTERNAL_SS_INFO_V2 info_2; |
| 1364 | struct _ATOM_ASIC_INTERNAL_SS_INFO_V3 info_3; |
| 1365 | }; |
| 1366 | |
| 1367 | bool radeon_atombios_get_asic_ss_info(struct radeon_device *rdev, |
| 1368 | struct radeon_atom_ss *ss, |
| 1369 | int id, u32 clock) |
| 1370 | { |
| 1371 | struct radeon_mode_info *mode_info = &rdev->mode_info; |
| 1372 | int index = GetIndexIntoMasterTable(DATA, ASIC_InternalSS_Info); |
| 1373 | uint16_t data_offset, size; |
| 1374 | union asic_ss_info *ss_info; |
| 1375 | uint8_t frev, crev; |
| 1376 | int i, num_indices; |
| 1377 | |
| 1378 | memset(ss, 0, sizeof(struct radeon_atom_ss)); |
| 1379 | if (atom_parse_data_header(mode_info->atom_context, index, &size, |
| 1380 | &frev, &crev, &data_offset)) { |
| 1381 | |
| 1382 | ss_info = |
| 1383 | (union asic_ss_info *)(mode_info->atom_context->bios + data_offset); |
| 1384 | |
| 1385 | switch (frev) { |
| 1386 | case 1: |
| 1387 | num_indices = (size - sizeof(ATOM_COMMON_TABLE_HEADER)) / |
| 1388 | sizeof(ATOM_ASIC_SS_ASSIGNMENT); |
| 1389 | |
| 1390 | for (i = 0; i < num_indices; i++) { |
| 1391 | if ((ss_info->info.asSpreadSpectrum[i].ucClockIndication == id) && |
| 1392 | (clock <= ss_info->info.asSpreadSpectrum[i].ulTargetClockRange)) { |
| 1393 | ss->percentage = |
| 1394 | le16_to_cpu(ss_info->info.asSpreadSpectrum[i].usSpreadSpectrumPercentage); |
| 1395 | ss->type = ss_info->info.asSpreadSpectrum[i].ucSpreadSpectrumMode; |
| 1396 | ss->rate = le16_to_cpu(ss_info->info.asSpreadSpectrum[i].usSpreadRateInKhz); |
| 1397 | return true; |
| 1398 | } |
| 1399 | } |
| 1400 | break; |
| 1401 | case 2: |
| 1402 | num_indices = (size - sizeof(ATOM_COMMON_TABLE_HEADER)) / |
| 1403 | sizeof(ATOM_ASIC_SS_ASSIGNMENT_V2); |
| 1404 | for (i = 0; i < num_indices; i++) { |
| 1405 | if ((ss_info->info_2.asSpreadSpectrum[i].ucClockIndication == id) && |
| 1406 | (clock <= ss_info->info_2.asSpreadSpectrum[i].ulTargetClockRange)) { |
| 1407 | ss->percentage = |
| 1408 | le16_to_cpu(ss_info->info_2.asSpreadSpectrum[i].usSpreadSpectrumPercentage); |
| 1409 | ss->type = ss_info->info_2.asSpreadSpectrum[i].ucSpreadSpectrumMode; |
| 1410 | ss->rate = le16_to_cpu(ss_info->info_2.asSpreadSpectrum[i].usSpreadRateIn10Hz); |
| 1411 | return true; |
| 1412 | } |
| 1413 | } |
| 1414 | break; |
| 1415 | case 3: |
| 1416 | num_indices = (size - sizeof(ATOM_COMMON_TABLE_HEADER)) / |
| 1417 | sizeof(ATOM_ASIC_SS_ASSIGNMENT_V3); |
| 1418 | for (i = 0; i < num_indices; i++) { |
| 1419 | if ((ss_info->info_3.asSpreadSpectrum[i].ucClockIndication == id) && |
| 1420 | (clock <= ss_info->info_3.asSpreadSpectrum[i].ulTargetClockRange)) { |
| 1421 | ss->percentage = |
| 1422 | le16_to_cpu(ss_info->info_3.asSpreadSpectrum[i].usSpreadSpectrumPercentage); |
| 1423 | ss->type = ss_info->info_3.asSpreadSpectrum[i].ucSpreadSpectrumMode; |
| 1424 | ss->rate = le16_to_cpu(ss_info->info_3.asSpreadSpectrum[i].usSpreadRateIn10Hz); |
Alex Deucher | 4339c44 | 2010-11-22 17:56:25 -0500 | [diff] [blame] | 1425 | if (rdev->flags & RADEON_IS_IGP) |
| 1426 | radeon_atombios_get_igp_ss_overrides(rdev, ss, id); |
Alex Deucher | ba032a5 | 2010-10-04 17:13:01 -0400 | [diff] [blame] | 1427 | return true; |
| 1428 | } |
| 1429 | } |
| 1430 | break; |
| 1431 | default: |
| 1432 | DRM_ERROR("Unsupported ASIC_InternalSS_Info table: %d %d\n", frev, crev); |
| 1433 | break; |
| 1434 | } |
| 1435 | |
| 1436 | } |
| 1437 | return false; |
Alex Deucher | ebbe1cb | 2009-10-16 11:15:25 -0400 | [diff] [blame] | 1438 | } |
| 1439 | |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1440 | union lvds_info { |
| 1441 | struct _ATOM_LVDS_INFO info; |
| 1442 | struct _ATOM_LVDS_INFO_V12 info_12; |
| 1443 | }; |
| 1444 | |
| 1445 | struct radeon_encoder_atom_dig *radeon_atombios_get_lvds_info(struct |
| 1446 | radeon_encoder |
| 1447 | *encoder) |
| 1448 | { |
| 1449 | struct drm_device *dev = encoder->base.dev; |
| 1450 | struct radeon_device *rdev = dev->dev_private; |
| 1451 | struct radeon_mode_info *mode_info = &rdev->mode_info; |
| 1452 | int index = GetIndexIntoMasterTable(DATA, LVDS_Info); |
Alex Deucher | 7dde8a19 | 2009-11-30 01:40:24 -0500 | [diff] [blame] | 1453 | uint16_t data_offset, misc; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1454 | union lvds_info *lvds_info; |
| 1455 | uint8_t frev, crev; |
| 1456 | struct radeon_encoder_atom_dig *lvds = NULL; |
Alex Deucher | 5137ee9 | 2010-08-12 18:58:47 -0400 | [diff] [blame] | 1457 | int encoder_enum = (encoder->encoder_enum & ENUM_ID_MASK) >> ENUM_ID_SHIFT; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1458 | |
Alex Deucher | a084e6e | 2010-03-18 01:04:01 -0400 | [diff] [blame] | 1459 | if (atom_parse_data_header(mode_info->atom_context, index, NULL, |
| 1460 | &frev, &crev, &data_offset)) { |
| 1461 | lvds_info = |
| 1462 | (union lvds_info *)(mode_info->atom_context->bios + data_offset); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1463 | lvds = |
| 1464 | kzalloc(sizeof(struct radeon_encoder_atom_dig), GFP_KERNEL); |
| 1465 | |
| 1466 | if (!lvds) |
| 1467 | return NULL; |
| 1468 | |
Alex Deucher | de2103e | 2009-10-09 15:14:30 -0400 | [diff] [blame] | 1469 | lvds->native_mode.clock = |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1470 | le16_to_cpu(lvds_info->info.sLCDTiming.usPixClk) * 10; |
Alex Deucher | de2103e | 2009-10-09 15:14:30 -0400 | [diff] [blame] | 1471 | lvds->native_mode.hdisplay = |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1472 | le16_to_cpu(lvds_info->info.sLCDTiming.usHActive); |
Alex Deucher | de2103e | 2009-10-09 15:14:30 -0400 | [diff] [blame] | 1473 | lvds->native_mode.vdisplay = |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1474 | le16_to_cpu(lvds_info->info.sLCDTiming.usVActive); |
Alex Deucher | de2103e | 2009-10-09 15:14:30 -0400 | [diff] [blame] | 1475 | lvds->native_mode.htotal = lvds->native_mode.hdisplay + |
| 1476 | le16_to_cpu(lvds_info->info.sLCDTiming.usHBlanking_Time); |
| 1477 | lvds->native_mode.hsync_start = lvds->native_mode.hdisplay + |
| 1478 | le16_to_cpu(lvds_info->info.sLCDTiming.usHSyncOffset); |
| 1479 | lvds->native_mode.hsync_end = lvds->native_mode.hsync_start + |
| 1480 | le16_to_cpu(lvds_info->info.sLCDTiming.usHSyncWidth); |
| 1481 | lvds->native_mode.vtotal = lvds->native_mode.vdisplay + |
| 1482 | le16_to_cpu(lvds_info->info.sLCDTiming.usVBlanking_Time); |
| 1483 | lvds->native_mode.vsync_start = lvds->native_mode.vdisplay + |
Alex Deucher | 1ff26a3 | 2010-05-18 00:23:15 -0400 | [diff] [blame] | 1484 | le16_to_cpu(lvds_info->info.sLCDTiming.usVSyncOffset); |
Alex Deucher | de2103e | 2009-10-09 15:14:30 -0400 | [diff] [blame] | 1485 | lvds->native_mode.vsync_end = lvds->native_mode.vsync_start + |
| 1486 | le16_to_cpu(lvds_info->info.sLCDTiming.usVSyncWidth); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1487 | lvds->panel_pwr_delay = |
| 1488 | le16_to_cpu(lvds_info->info.usOffDelayInMs); |
Alex Deucher | ba032a5 | 2010-10-04 17:13:01 -0400 | [diff] [blame] | 1489 | lvds->lcd_misc = lvds_info->info.ucLVDS_Misc; |
Alex Deucher | 7dde8a19 | 2009-11-30 01:40:24 -0500 | [diff] [blame] | 1490 | |
| 1491 | misc = le16_to_cpu(lvds_info->info.sLCDTiming.susModeMiscInfo.usAccess); |
| 1492 | if (misc & ATOM_VSYNC_POLARITY) |
| 1493 | lvds->native_mode.flags |= DRM_MODE_FLAG_NVSYNC; |
| 1494 | if (misc & ATOM_HSYNC_POLARITY) |
| 1495 | lvds->native_mode.flags |= DRM_MODE_FLAG_NHSYNC; |
| 1496 | if (misc & ATOM_COMPOSITESYNC) |
| 1497 | lvds->native_mode.flags |= DRM_MODE_FLAG_CSYNC; |
| 1498 | if (misc & ATOM_INTERLACE) |
| 1499 | lvds->native_mode.flags |= DRM_MODE_FLAG_INTERLACE; |
| 1500 | if (misc & ATOM_DOUBLE_CLOCK_MODE) |
| 1501 | lvds->native_mode.flags |= DRM_MODE_FLAG_DBLSCAN; |
| 1502 | |
Alex Deucher | 7a868e1 | 2010-12-08 22:13:05 -0500 | [diff] [blame^] | 1503 | lvds->native_mode.width_mm = lvds_info->info.sLCDTiming.usImageHSize; |
| 1504 | lvds->native_mode.height_mm = lvds_info->info.sLCDTiming.usImageVSize; |
| 1505 | |
Alex Deucher | de2103e | 2009-10-09 15:14:30 -0400 | [diff] [blame] | 1506 | /* set crtc values */ |
| 1507 | drm_mode_set_crtcinfo(&lvds->native_mode, CRTC_INTERLACE_HALVE_V); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1508 | |
Alex Deucher | ba032a5 | 2010-10-04 17:13:01 -0400 | [diff] [blame] | 1509 | lvds->lcd_ss_id = lvds_info->info.ucSS_Id; |
Alex Deucher | ebbe1cb | 2009-10-16 11:15:25 -0400 | [diff] [blame] | 1510 | |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1511 | encoder->native_mode = lvds->native_mode; |
Alex Deucher | 5137ee9 | 2010-08-12 18:58:47 -0400 | [diff] [blame] | 1512 | |
| 1513 | if (encoder_enum == 2) |
| 1514 | lvds->linkb = true; |
| 1515 | else |
| 1516 | lvds->linkb = false; |
| 1517 | |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1518 | } |
| 1519 | return lvds; |
| 1520 | } |
| 1521 | |
Alex Deucher | 6fe7ac3 | 2009-06-12 17:26:08 +0000 | [diff] [blame] | 1522 | struct radeon_encoder_primary_dac * |
| 1523 | radeon_atombios_get_primary_dac_info(struct radeon_encoder *encoder) |
| 1524 | { |
| 1525 | struct drm_device *dev = encoder->base.dev; |
| 1526 | struct radeon_device *rdev = dev->dev_private; |
| 1527 | struct radeon_mode_info *mode_info = &rdev->mode_info; |
| 1528 | int index = GetIndexIntoMasterTable(DATA, CompassionateData); |
| 1529 | uint16_t data_offset; |
| 1530 | struct _COMPASSIONATE_DATA *dac_info; |
| 1531 | uint8_t frev, crev; |
| 1532 | uint8_t bg, dac; |
Alex Deucher | 6fe7ac3 | 2009-06-12 17:26:08 +0000 | [diff] [blame] | 1533 | struct radeon_encoder_primary_dac *p_dac = NULL; |
| 1534 | |
Alex Deucher | a084e6e | 2010-03-18 01:04:01 -0400 | [diff] [blame] | 1535 | if (atom_parse_data_header(mode_info->atom_context, index, NULL, |
| 1536 | &frev, &crev, &data_offset)) { |
| 1537 | dac_info = (struct _COMPASSIONATE_DATA *) |
| 1538 | (mode_info->atom_context->bios + data_offset); |
Alex Deucher | 6fe7ac3 | 2009-06-12 17:26:08 +0000 | [diff] [blame] | 1539 | |
Alex Deucher | 6fe7ac3 | 2009-06-12 17:26:08 +0000 | [diff] [blame] | 1540 | p_dac = kzalloc(sizeof(struct radeon_encoder_primary_dac), GFP_KERNEL); |
| 1541 | |
| 1542 | if (!p_dac) |
| 1543 | return NULL; |
| 1544 | |
| 1545 | bg = dac_info->ucDAC1_BG_Adjustment; |
| 1546 | dac = dac_info->ucDAC1_DAC_Adjustment; |
| 1547 | p_dac->ps2_pdac_adj = (bg << 8) | (dac); |
| 1548 | |
| 1549 | } |
| 1550 | return p_dac; |
| 1551 | } |
| 1552 | |
Dave Airlie | 4ce001a | 2009-08-13 16:32:14 +1000 | [diff] [blame] | 1553 | bool radeon_atom_get_tv_timings(struct radeon_device *rdev, int index, |
Alex Deucher | 5a9bcac | 2009-10-08 15:09:31 -0400 | [diff] [blame] | 1554 | struct drm_display_mode *mode) |
Dave Airlie | 4ce001a | 2009-08-13 16:32:14 +1000 | [diff] [blame] | 1555 | { |
| 1556 | struct radeon_mode_info *mode_info = &rdev->mode_info; |
| 1557 | ATOM_ANALOG_TV_INFO *tv_info; |
| 1558 | ATOM_ANALOG_TV_INFO_V1_2 *tv_info_v1_2; |
| 1559 | ATOM_DTD_FORMAT *dtd_timings; |
| 1560 | int data_index = GetIndexIntoMasterTable(DATA, AnalogTV_Info); |
| 1561 | u8 frev, crev; |
Alex Deucher | 5a9bcac | 2009-10-08 15:09:31 -0400 | [diff] [blame] | 1562 | u16 data_offset, misc; |
Dave Airlie | 4ce001a | 2009-08-13 16:32:14 +1000 | [diff] [blame] | 1563 | |
Alex Deucher | a084e6e | 2010-03-18 01:04:01 -0400 | [diff] [blame] | 1564 | if (!atom_parse_data_header(mode_info->atom_context, data_index, NULL, |
| 1565 | &frev, &crev, &data_offset)) |
| 1566 | return false; |
Dave Airlie | 4ce001a | 2009-08-13 16:32:14 +1000 | [diff] [blame] | 1567 | |
| 1568 | switch (crev) { |
| 1569 | case 1: |
| 1570 | tv_info = (ATOM_ANALOG_TV_INFO *)(mode_info->atom_context->bios + data_offset); |
Dan Carpenter | 0031c41 | 2010-04-27 14:11:04 -0700 | [diff] [blame] | 1571 | if (index >= MAX_SUPPORTED_TV_TIMING) |
Dave Airlie | 4ce001a | 2009-08-13 16:32:14 +1000 | [diff] [blame] | 1572 | return false; |
| 1573 | |
Alex Deucher | 5a9bcac | 2009-10-08 15:09:31 -0400 | [diff] [blame] | 1574 | mode->crtc_htotal = le16_to_cpu(tv_info->aModeTimings[index].usCRTC_H_Total); |
| 1575 | mode->crtc_hdisplay = le16_to_cpu(tv_info->aModeTimings[index].usCRTC_H_Disp); |
| 1576 | mode->crtc_hsync_start = le16_to_cpu(tv_info->aModeTimings[index].usCRTC_H_SyncStart); |
| 1577 | mode->crtc_hsync_end = le16_to_cpu(tv_info->aModeTimings[index].usCRTC_H_SyncStart) + |
| 1578 | le16_to_cpu(tv_info->aModeTimings[index].usCRTC_H_SyncWidth); |
Dave Airlie | 4ce001a | 2009-08-13 16:32:14 +1000 | [diff] [blame] | 1579 | |
Alex Deucher | 5a9bcac | 2009-10-08 15:09:31 -0400 | [diff] [blame] | 1580 | mode->crtc_vtotal = le16_to_cpu(tv_info->aModeTimings[index].usCRTC_V_Total); |
| 1581 | mode->crtc_vdisplay = le16_to_cpu(tv_info->aModeTimings[index].usCRTC_V_Disp); |
| 1582 | mode->crtc_vsync_start = le16_to_cpu(tv_info->aModeTimings[index].usCRTC_V_SyncStart); |
| 1583 | mode->crtc_vsync_end = le16_to_cpu(tv_info->aModeTimings[index].usCRTC_V_SyncStart) + |
| 1584 | le16_to_cpu(tv_info->aModeTimings[index].usCRTC_V_SyncWidth); |
Dave Airlie | 4ce001a | 2009-08-13 16:32:14 +1000 | [diff] [blame] | 1585 | |
Alex Deucher | 5a9bcac | 2009-10-08 15:09:31 -0400 | [diff] [blame] | 1586 | mode->flags = 0; |
| 1587 | misc = le16_to_cpu(tv_info->aModeTimings[index].susModeMiscInfo.usAccess); |
| 1588 | if (misc & ATOM_VSYNC_POLARITY) |
| 1589 | mode->flags |= DRM_MODE_FLAG_NVSYNC; |
| 1590 | if (misc & ATOM_HSYNC_POLARITY) |
| 1591 | mode->flags |= DRM_MODE_FLAG_NHSYNC; |
| 1592 | if (misc & ATOM_COMPOSITESYNC) |
| 1593 | mode->flags |= DRM_MODE_FLAG_CSYNC; |
| 1594 | if (misc & ATOM_INTERLACE) |
| 1595 | mode->flags |= DRM_MODE_FLAG_INTERLACE; |
| 1596 | if (misc & ATOM_DOUBLE_CLOCK_MODE) |
| 1597 | mode->flags |= DRM_MODE_FLAG_DBLSCAN; |
Dave Airlie | 4ce001a | 2009-08-13 16:32:14 +1000 | [diff] [blame] | 1598 | |
Alex Deucher | 5a9bcac | 2009-10-08 15:09:31 -0400 | [diff] [blame] | 1599 | mode->clock = le16_to_cpu(tv_info->aModeTimings[index].usPixelClock) * 10; |
Dave Airlie | 4ce001a | 2009-08-13 16:32:14 +1000 | [diff] [blame] | 1600 | |
| 1601 | if (index == 1) { |
| 1602 | /* PAL timings appear to have wrong values for totals */ |
Alex Deucher | 5a9bcac | 2009-10-08 15:09:31 -0400 | [diff] [blame] | 1603 | mode->crtc_htotal -= 1; |
| 1604 | mode->crtc_vtotal -= 1; |
Dave Airlie | 4ce001a | 2009-08-13 16:32:14 +1000 | [diff] [blame] | 1605 | } |
| 1606 | break; |
| 1607 | case 2: |
| 1608 | tv_info_v1_2 = (ATOM_ANALOG_TV_INFO_V1_2 *)(mode_info->atom_context->bios + data_offset); |
Dan Carpenter | 0031c41 | 2010-04-27 14:11:04 -0700 | [diff] [blame] | 1609 | if (index >= MAX_SUPPORTED_TV_TIMING_V1_2) |
Dave Airlie | 4ce001a | 2009-08-13 16:32:14 +1000 | [diff] [blame] | 1610 | return false; |
| 1611 | |
| 1612 | dtd_timings = &tv_info_v1_2->aModeTimings[index]; |
Alex Deucher | 5a9bcac | 2009-10-08 15:09:31 -0400 | [diff] [blame] | 1613 | mode->crtc_htotal = le16_to_cpu(dtd_timings->usHActive) + |
| 1614 | le16_to_cpu(dtd_timings->usHBlanking_Time); |
| 1615 | mode->crtc_hdisplay = le16_to_cpu(dtd_timings->usHActive); |
| 1616 | mode->crtc_hsync_start = le16_to_cpu(dtd_timings->usHActive) + |
| 1617 | le16_to_cpu(dtd_timings->usHSyncOffset); |
| 1618 | mode->crtc_hsync_end = mode->crtc_hsync_start + |
| 1619 | le16_to_cpu(dtd_timings->usHSyncWidth); |
Dave Airlie | 4ce001a | 2009-08-13 16:32:14 +1000 | [diff] [blame] | 1620 | |
Alex Deucher | 5a9bcac | 2009-10-08 15:09:31 -0400 | [diff] [blame] | 1621 | mode->crtc_vtotal = le16_to_cpu(dtd_timings->usVActive) + |
| 1622 | le16_to_cpu(dtd_timings->usVBlanking_Time); |
| 1623 | mode->crtc_vdisplay = le16_to_cpu(dtd_timings->usVActive); |
| 1624 | mode->crtc_vsync_start = le16_to_cpu(dtd_timings->usVActive) + |
| 1625 | le16_to_cpu(dtd_timings->usVSyncOffset); |
| 1626 | mode->crtc_vsync_end = mode->crtc_vsync_start + |
| 1627 | le16_to_cpu(dtd_timings->usVSyncWidth); |
| 1628 | |
| 1629 | mode->flags = 0; |
| 1630 | misc = le16_to_cpu(dtd_timings->susModeMiscInfo.usAccess); |
| 1631 | if (misc & ATOM_VSYNC_POLARITY) |
| 1632 | mode->flags |= DRM_MODE_FLAG_NVSYNC; |
| 1633 | if (misc & ATOM_HSYNC_POLARITY) |
| 1634 | mode->flags |= DRM_MODE_FLAG_NHSYNC; |
| 1635 | if (misc & ATOM_COMPOSITESYNC) |
| 1636 | mode->flags |= DRM_MODE_FLAG_CSYNC; |
| 1637 | if (misc & ATOM_INTERLACE) |
| 1638 | mode->flags |= DRM_MODE_FLAG_INTERLACE; |
| 1639 | if (misc & ATOM_DOUBLE_CLOCK_MODE) |
| 1640 | mode->flags |= DRM_MODE_FLAG_DBLSCAN; |
| 1641 | |
| 1642 | mode->clock = le16_to_cpu(dtd_timings->usPixClk) * 10; |
Dave Airlie | 4ce001a | 2009-08-13 16:32:14 +1000 | [diff] [blame] | 1643 | break; |
| 1644 | } |
| 1645 | return true; |
| 1646 | } |
| 1647 | |
Alex Deucher | d79766f | 2009-12-17 19:00:29 -0500 | [diff] [blame] | 1648 | enum radeon_tv_std |
| 1649 | radeon_atombios_get_tv_info(struct radeon_device *rdev) |
| 1650 | { |
| 1651 | struct radeon_mode_info *mode_info = &rdev->mode_info; |
| 1652 | int index = GetIndexIntoMasterTable(DATA, AnalogTV_Info); |
| 1653 | uint16_t data_offset; |
| 1654 | uint8_t frev, crev; |
| 1655 | struct _ATOM_ANALOG_TV_INFO *tv_info; |
| 1656 | enum radeon_tv_std tv_std = TV_STD_NTSC; |
| 1657 | |
Alex Deucher | a084e6e | 2010-03-18 01:04:01 -0400 | [diff] [blame] | 1658 | if (atom_parse_data_header(mode_info->atom_context, index, NULL, |
| 1659 | &frev, &crev, &data_offset)) { |
Alex Deucher | d79766f | 2009-12-17 19:00:29 -0500 | [diff] [blame] | 1660 | |
Alex Deucher | a084e6e | 2010-03-18 01:04:01 -0400 | [diff] [blame] | 1661 | tv_info = (struct _ATOM_ANALOG_TV_INFO *) |
| 1662 | (mode_info->atom_context->bios + data_offset); |
Alex Deucher | d79766f | 2009-12-17 19:00:29 -0500 | [diff] [blame] | 1663 | |
Alex Deucher | a084e6e | 2010-03-18 01:04:01 -0400 | [diff] [blame] | 1664 | switch (tv_info->ucTV_BootUpDefaultStandard) { |
| 1665 | case ATOM_TV_NTSC: |
| 1666 | tv_std = TV_STD_NTSC; |
Alex Deucher | 40f76d8 | 2010-10-07 22:38:42 -0400 | [diff] [blame] | 1667 | DRM_DEBUG_KMS("Default TV standard: NTSC\n"); |
Alex Deucher | a084e6e | 2010-03-18 01:04:01 -0400 | [diff] [blame] | 1668 | break; |
| 1669 | case ATOM_TV_NTSCJ: |
| 1670 | tv_std = TV_STD_NTSC_J; |
Alex Deucher | 40f76d8 | 2010-10-07 22:38:42 -0400 | [diff] [blame] | 1671 | DRM_DEBUG_KMS("Default TV standard: NTSC-J\n"); |
Alex Deucher | a084e6e | 2010-03-18 01:04:01 -0400 | [diff] [blame] | 1672 | break; |
| 1673 | case ATOM_TV_PAL: |
| 1674 | tv_std = TV_STD_PAL; |
Alex Deucher | 40f76d8 | 2010-10-07 22:38:42 -0400 | [diff] [blame] | 1675 | DRM_DEBUG_KMS("Default TV standard: PAL\n"); |
Alex Deucher | a084e6e | 2010-03-18 01:04:01 -0400 | [diff] [blame] | 1676 | break; |
| 1677 | case ATOM_TV_PALM: |
| 1678 | tv_std = TV_STD_PAL_M; |
Alex Deucher | 40f76d8 | 2010-10-07 22:38:42 -0400 | [diff] [blame] | 1679 | DRM_DEBUG_KMS("Default TV standard: PAL-M\n"); |
Alex Deucher | a084e6e | 2010-03-18 01:04:01 -0400 | [diff] [blame] | 1680 | break; |
| 1681 | case ATOM_TV_PALN: |
| 1682 | tv_std = TV_STD_PAL_N; |
Alex Deucher | 40f76d8 | 2010-10-07 22:38:42 -0400 | [diff] [blame] | 1683 | DRM_DEBUG_KMS("Default TV standard: PAL-N\n"); |
Alex Deucher | a084e6e | 2010-03-18 01:04:01 -0400 | [diff] [blame] | 1684 | break; |
| 1685 | case ATOM_TV_PALCN: |
| 1686 | tv_std = TV_STD_PAL_CN; |
Alex Deucher | 40f76d8 | 2010-10-07 22:38:42 -0400 | [diff] [blame] | 1687 | DRM_DEBUG_KMS("Default TV standard: PAL-CN\n"); |
Alex Deucher | a084e6e | 2010-03-18 01:04:01 -0400 | [diff] [blame] | 1688 | break; |
| 1689 | case ATOM_TV_PAL60: |
| 1690 | tv_std = TV_STD_PAL_60; |
Alex Deucher | 40f76d8 | 2010-10-07 22:38:42 -0400 | [diff] [blame] | 1691 | DRM_DEBUG_KMS("Default TV standard: PAL-60\n"); |
Alex Deucher | a084e6e | 2010-03-18 01:04:01 -0400 | [diff] [blame] | 1692 | break; |
| 1693 | case ATOM_TV_SECAM: |
| 1694 | tv_std = TV_STD_SECAM; |
Alex Deucher | 40f76d8 | 2010-10-07 22:38:42 -0400 | [diff] [blame] | 1695 | DRM_DEBUG_KMS("Default TV standard: SECAM\n"); |
Alex Deucher | a084e6e | 2010-03-18 01:04:01 -0400 | [diff] [blame] | 1696 | break; |
| 1697 | default: |
| 1698 | tv_std = TV_STD_NTSC; |
Alex Deucher | 40f76d8 | 2010-10-07 22:38:42 -0400 | [diff] [blame] | 1699 | DRM_DEBUG_KMS("Unknown TV standard; defaulting to NTSC\n"); |
Alex Deucher | a084e6e | 2010-03-18 01:04:01 -0400 | [diff] [blame] | 1700 | break; |
| 1701 | } |
Alex Deucher | d79766f | 2009-12-17 19:00:29 -0500 | [diff] [blame] | 1702 | } |
| 1703 | return tv_std; |
| 1704 | } |
| 1705 | |
Alex Deucher | 6fe7ac3 | 2009-06-12 17:26:08 +0000 | [diff] [blame] | 1706 | struct radeon_encoder_tv_dac * |
| 1707 | radeon_atombios_get_tv_dac_info(struct radeon_encoder *encoder) |
| 1708 | { |
| 1709 | struct drm_device *dev = encoder->base.dev; |
| 1710 | struct radeon_device *rdev = dev->dev_private; |
| 1711 | struct radeon_mode_info *mode_info = &rdev->mode_info; |
| 1712 | int index = GetIndexIntoMasterTable(DATA, CompassionateData); |
| 1713 | uint16_t data_offset; |
| 1714 | struct _COMPASSIONATE_DATA *dac_info; |
| 1715 | uint8_t frev, crev; |
| 1716 | uint8_t bg, dac; |
Alex Deucher | 6fe7ac3 | 2009-06-12 17:26:08 +0000 | [diff] [blame] | 1717 | struct radeon_encoder_tv_dac *tv_dac = NULL; |
| 1718 | |
Alex Deucher | a084e6e | 2010-03-18 01:04:01 -0400 | [diff] [blame] | 1719 | if (atom_parse_data_header(mode_info->atom_context, index, NULL, |
| 1720 | &frev, &crev, &data_offset)) { |
Alex Deucher | 6fe7ac3 | 2009-06-12 17:26:08 +0000 | [diff] [blame] | 1721 | |
Alex Deucher | a084e6e | 2010-03-18 01:04:01 -0400 | [diff] [blame] | 1722 | dac_info = (struct _COMPASSIONATE_DATA *) |
| 1723 | (mode_info->atom_context->bios + data_offset); |
Alex Deucher | 6fe7ac3 | 2009-06-12 17:26:08 +0000 | [diff] [blame] | 1724 | |
Alex Deucher | 6fe7ac3 | 2009-06-12 17:26:08 +0000 | [diff] [blame] | 1725 | tv_dac = kzalloc(sizeof(struct radeon_encoder_tv_dac), GFP_KERNEL); |
| 1726 | |
| 1727 | if (!tv_dac) |
| 1728 | return NULL; |
| 1729 | |
| 1730 | bg = dac_info->ucDAC2_CRT2_BG_Adjustment; |
| 1731 | dac = dac_info->ucDAC2_CRT2_DAC_Adjustment; |
| 1732 | tv_dac->ps2_tvdac_adj = (bg << 16) | (dac << 20); |
| 1733 | |
| 1734 | bg = dac_info->ucDAC2_PAL_BG_Adjustment; |
| 1735 | dac = dac_info->ucDAC2_PAL_DAC_Adjustment; |
| 1736 | tv_dac->pal_tvdac_adj = (bg << 16) | (dac << 20); |
| 1737 | |
| 1738 | bg = dac_info->ucDAC2_NTSC_BG_Adjustment; |
| 1739 | dac = dac_info->ucDAC2_NTSC_DAC_Adjustment; |
| 1740 | tv_dac->ntsc_tvdac_adj = (bg << 16) | (dac << 20); |
| 1741 | |
Alex Deucher | d79766f | 2009-12-17 19:00:29 -0500 | [diff] [blame] | 1742 | tv_dac->tv_std = radeon_atombios_get_tv_info(rdev); |
Alex Deucher | 6fe7ac3 | 2009-06-12 17:26:08 +0000 | [diff] [blame] | 1743 | } |
| 1744 | return tv_dac; |
| 1745 | } |
| 1746 | |
Alex Deucher | 29fb52c | 2010-03-11 10:01:17 -0500 | [diff] [blame] | 1747 | static const char *thermal_controller_names[] = { |
| 1748 | "NONE", |
Alex Deucher | 678e7dfa | 2010-04-22 14:17:56 -0400 | [diff] [blame] | 1749 | "lm63", |
| 1750 | "adm1032", |
| 1751 | "adm1030", |
| 1752 | "max6649", |
| 1753 | "lm64", |
| 1754 | "f75375", |
| 1755 | "asc7xxx", |
Alex Deucher | 29fb52c | 2010-03-11 10:01:17 -0500 | [diff] [blame] | 1756 | }; |
| 1757 | |
| 1758 | static const char *pp_lib_thermal_controller_names[] = { |
| 1759 | "NONE", |
Alex Deucher | 678e7dfa | 2010-04-22 14:17:56 -0400 | [diff] [blame] | 1760 | "lm63", |
| 1761 | "adm1032", |
| 1762 | "adm1030", |
| 1763 | "max6649", |
| 1764 | "lm64", |
| 1765 | "f75375", |
Alex Deucher | 29fb52c | 2010-03-11 10:01:17 -0500 | [diff] [blame] | 1766 | "RV6xx", |
| 1767 | "RV770", |
Alex Deucher | 678e7dfa | 2010-04-22 14:17:56 -0400 | [diff] [blame] | 1768 | "adt7473", |
Alex Deucher | 560154e | 2010-11-22 17:56:34 -0500 | [diff] [blame] | 1769 | "NONE", |
Alex Deucher | 49f6598 | 2010-03-24 16:39:45 -0400 | [diff] [blame] | 1770 | "External GPIO", |
| 1771 | "Evergreen", |
Alex Deucher | b0e6641 | 2010-11-22 17:56:35 -0500 | [diff] [blame] | 1772 | "emc2103", |
| 1773 | "Sumo", |
Alex Deucher | 29fb52c | 2010-03-11 10:01:17 -0500 | [diff] [blame] | 1774 | }; |
| 1775 | |
Alex Deucher | 56278a8 | 2009-12-28 13:58:44 -0500 | [diff] [blame] | 1776 | union power_info { |
| 1777 | struct _ATOM_POWERPLAY_INFO info; |
| 1778 | struct _ATOM_POWERPLAY_INFO_V2 info_2; |
| 1779 | struct _ATOM_POWERPLAY_INFO_V3 info_3; |
Alex Deucher | 560154e | 2010-11-22 17:56:34 -0500 | [diff] [blame] | 1780 | struct _ATOM_PPLIB_POWERPLAYTABLE pplib; |
Alex Deucher | b0e6641 | 2010-11-22 17:56:35 -0500 | [diff] [blame] | 1781 | struct _ATOM_PPLIB_POWERPLAYTABLE2 pplib2; |
| 1782 | struct _ATOM_PPLIB_POWERPLAYTABLE3 pplib3; |
Alex Deucher | 56278a8 | 2009-12-28 13:58:44 -0500 | [diff] [blame] | 1783 | }; |
| 1784 | |
Alex Deucher | 560154e | 2010-11-22 17:56:34 -0500 | [diff] [blame] | 1785 | union pplib_clock_info { |
| 1786 | struct _ATOM_PPLIB_R600_CLOCK_INFO r600; |
| 1787 | struct _ATOM_PPLIB_RS780_CLOCK_INFO rs780; |
| 1788 | struct _ATOM_PPLIB_EVERGREEN_CLOCK_INFO evergreen; |
Alex Deucher | b0e6641 | 2010-11-22 17:56:35 -0500 | [diff] [blame] | 1789 | struct _ATOM_PPLIB_SUMO_CLOCK_INFO sumo; |
Alex Deucher | 560154e | 2010-11-22 17:56:34 -0500 | [diff] [blame] | 1790 | }; |
| 1791 | |
| 1792 | union pplib_power_state { |
| 1793 | struct _ATOM_PPLIB_STATE v1; |
| 1794 | struct _ATOM_PPLIB_STATE_V2 v2; |
| 1795 | }; |
| 1796 | |
| 1797 | static void radeon_atombios_parse_misc_flags_1_3(struct radeon_device *rdev, |
| 1798 | int state_index, |
| 1799 | u32 misc, u32 misc2) |
| 1800 | { |
| 1801 | rdev->pm.power_state[state_index].misc = misc; |
| 1802 | rdev->pm.power_state[state_index].misc2 = misc2; |
| 1803 | /* order matters! */ |
| 1804 | if (misc & ATOM_PM_MISCINFO_POWER_SAVING_MODE) |
| 1805 | rdev->pm.power_state[state_index].type = |
| 1806 | POWER_STATE_TYPE_POWERSAVE; |
| 1807 | if (misc & ATOM_PM_MISCINFO_DEFAULT_DC_STATE_ENTRY_TRUE) |
| 1808 | rdev->pm.power_state[state_index].type = |
| 1809 | POWER_STATE_TYPE_BATTERY; |
| 1810 | if (misc & ATOM_PM_MISCINFO_DEFAULT_LOW_DC_STATE_ENTRY_TRUE) |
| 1811 | rdev->pm.power_state[state_index].type = |
| 1812 | POWER_STATE_TYPE_BATTERY; |
| 1813 | if (misc & ATOM_PM_MISCINFO_LOAD_BALANCE_EN) |
| 1814 | rdev->pm.power_state[state_index].type = |
| 1815 | POWER_STATE_TYPE_BALANCED; |
| 1816 | if (misc & ATOM_PM_MISCINFO_3D_ACCELERATION_EN) { |
| 1817 | rdev->pm.power_state[state_index].type = |
| 1818 | POWER_STATE_TYPE_PERFORMANCE; |
| 1819 | rdev->pm.power_state[state_index].flags &= |
| 1820 | ~RADEON_PM_STATE_SINGLE_DISPLAY_ONLY; |
| 1821 | } |
| 1822 | if (misc2 & ATOM_PM_MISCINFO2_SYSTEM_AC_LITE_MODE) |
| 1823 | rdev->pm.power_state[state_index].type = |
| 1824 | POWER_STATE_TYPE_BALANCED; |
| 1825 | if (misc & ATOM_PM_MISCINFO_DRIVER_DEFAULT_MODE) { |
| 1826 | rdev->pm.power_state[state_index].type = |
| 1827 | POWER_STATE_TYPE_DEFAULT; |
| 1828 | rdev->pm.default_power_state_index = state_index; |
| 1829 | rdev->pm.power_state[state_index].default_clock_mode = |
| 1830 | &rdev->pm.power_state[state_index].clock_info[0]; |
| 1831 | } else if (state_index == 0) { |
| 1832 | rdev->pm.power_state[state_index].clock_info[0].flags |= |
| 1833 | RADEON_PM_MODE_NO_DISPLAY; |
| 1834 | } |
| 1835 | } |
| 1836 | |
| 1837 | static int radeon_atombios_parse_power_table_1_3(struct radeon_device *rdev) |
| 1838 | { |
| 1839 | struct radeon_mode_info *mode_info = &rdev->mode_info; |
| 1840 | u32 misc, misc2 = 0; |
| 1841 | int num_modes = 0, i; |
| 1842 | int state_index = 0; |
| 1843 | struct radeon_i2c_bus_rec i2c_bus; |
| 1844 | union power_info *power_info; |
| 1845 | int index = GetIndexIntoMasterTable(DATA, PowerPlayInfo); |
| 1846 | u16 data_offset; |
| 1847 | u8 frev, crev; |
| 1848 | |
| 1849 | if (!atom_parse_data_header(mode_info->atom_context, index, NULL, |
| 1850 | &frev, &crev, &data_offset)) |
| 1851 | return state_index; |
| 1852 | power_info = (union power_info *)(mode_info->atom_context->bios + data_offset); |
| 1853 | |
| 1854 | /* add the i2c bus for thermal/fan chip */ |
| 1855 | if (power_info->info.ucOverdriveThermalController > 0) { |
| 1856 | DRM_INFO("Possible %s thermal controller at 0x%02x\n", |
| 1857 | thermal_controller_names[power_info->info.ucOverdriveThermalController], |
| 1858 | power_info->info.ucOverdriveControllerAddress >> 1); |
| 1859 | i2c_bus = radeon_lookup_i2c_gpio(rdev, power_info->info.ucOverdriveI2cLine); |
| 1860 | rdev->pm.i2c_bus = radeon_i2c_lookup(rdev, &i2c_bus); |
| 1861 | if (rdev->pm.i2c_bus) { |
| 1862 | struct i2c_board_info info = { }; |
| 1863 | const char *name = thermal_controller_names[power_info->info. |
| 1864 | ucOverdriveThermalController]; |
| 1865 | info.addr = power_info->info.ucOverdriveControllerAddress >> 1; |
| 1866 | strlcpy(info.type, name, sizeof(info.type)); |
| 1867 | i2c_new_device(&rdev->pm.i2c_bus->adapter, &info); |
| 1868 | } |
| 1869 | } |
| 1870 | num_modes = power_info->info.ucNumOfPowerModeEntries; |
| 1871 | if (num_modes > ATOM_MAX_NUMBEROF_POWER_BLOCK) |
| 1872 | num_modes = ATOM_MAX_NUMBEROF_POWER_BLOCK; |
| 1873 | /* last mode is usually default, array is low to high */ |
| 1874 | for (i = 0; i < num_modes; i++) { |
| 1875 | rdev->pm.power_state[state_index].clock_info[0].voltage.type = VOLTAGE_NONE; |
| 1876 | switch (frev) { |
| 1877 | case 1: |
| 1878 | rdev->pm.power_state[state_index].num_clock_modes = 1; |
| 1879 | rdev->pm.power_state[state_index].clock_info[0].mclk = |
| 1880 | le16_to_cpu(power_info->info.asPowerPlayInfo[i].usMemoryClock); |
| 1881 | rdev->pm.power_state[state_index].clock_info[0].sclk = |
| 1882 | le16_to_cpu(power_info->info.asPowerPlayInfo[i].usEngineClock); |
| 1883 | /* skip invalid modes */ |
| 1884 | if ((rdev->pm.power_state[state_index].clock_info[0].mclk == 0) || |
| 1885 | (rdev->pm.power_state[state_index].clock_info[0].sclk == 0)) |
| 1886 | continue; |
| 1887 | rdev->pm.power_state[state_index].pcie_lanes = |
| 1888 | power_info->info.asPowerPlayInfo[i].ucNumPciELanes; |
| 1889 | misc = le32_to_cpu(power_info->info.asPowerPlayInfo[i].ulMiscInfo); |
| 1890 | if ((misc & ATOM_PM_MISCINFO_VOLTAGE_DROP_SUPPORT) || |
| 1891 | (misc & ATOM_PM_MISCINFO_VOLTAGE_DROP_ACTIVE_HIGH)) { |
| 1892 | rdev->pm.power_state[state_index].clock_info[0].voltage.type = |
| 1893 | VOLTAGE_GPIO; |
| 1894 | rdev->pm.power_state[state_index].clock_info[0].voltage.gpio = |
| 1895 | radeon_lookup_gpio(rdev, |
| 1896 | power_info->info.asPowerPlayInfo[i].ucVoltageDropIndex); |
| 1897 | if (misc & ATOM_PM_MISCINFO_VOLTAGE_DROP_ACTIVE_HIGH) |
| 1898 | rdev->pm.power_state[state_index].clock_info[0].voltage.active_high = |
| 1899 | true; |
| 1900 | else |
| 1901 | rdev->pm.power_state[state_index].clock_info[0].voltage.active_high = |
| 1902 | false; |
| 1903 | } else if (misc & ATOM_PM_MISCINFO_PROGRAM_VOLTAGE) { |
| 1904 | rdev->pm.power_state[state_index].clock_info[0].voltage.type = |
| 1905 | VOLTAGE_VDDC; |
| 1906 | rdev->pm.power_state[state_index].clock_info[0].voltage.vddc_id = |
| 1907 | power_info->info.asPowerPlayInfo[i].ucVoltageDropIndex; |
| 1908 | } |
| 1909 | rdev->pm.power_state[state_index].flags = RADEON_PM_STATE_SINGLE_DISPLAY_ONLY; |
| 1910 | radeon_atombios_parse_misc_flags_1_3(rdev, state_index, misc, 0); |
| 1911 | state_index++; |
| 1912 | break; |
| 1913 | case 2: |
| 1914 | rdev->pm.power_state[state_index].num_clock_modes = 1; |
| 1915 | rdev->pm.power_state[state_index].clock_info[0].mclk = |
| 1916 | le32_to_cpu(power_info->info_2.asPowerPlayInfo[i].ulMemoryClock); |
| 1917 | rdev->pm.power_state[state_index].clock_info[0].sclk = |
| 1918 | le32_to_cpu(power_info->info_2.asPowerPlayInfo[i].ulEngineClock); |
| 1919 | /* skip invalid modes */ |
| 1920 | if ((rdev->pm.power_state[state_index].clock_info[0].mclk == 0) || |
| 1921 | (rdev->pm.power_state[state_index].clock_info[0].sclk == 0)) |
| 1922 | continue; |
| 1923 | rdev->pm.power_state[state_index].pcie_lanes = |
| 1924 | power_info->info_2.asPowerPlayInfo[i].ucNumPciELanes; |
| 1925 | misc = le32_to_cpu(power_info->info_2.asPowerPlayInfo[i].ulMiscInfo); |
| 1926 | misc2 = le32_to_cpu(power_info->info_2.asPowerPlayInfo[i].ulMiscInfo2); |
| 1927 | if ((misc & ATOM_PM_MISCINFO_VOLTAGE_DROP_SUPPORT) || |
| 1928 | (misc & ATOM_PM_MISCINFO_VOLTAGE_DROP_ACTIVE_HIGH)) { |
| 1929 | rdev->pm.power_state[state_index].clock_info[0].voltage.type = |
| 1930 | VOLTAGE_GPIO; |
| 1931 | rdev->pm.power_state[state_index].clock_info[0].voltage.gpio = |
| 1932 | radeon_lookup_gpio(rdev, |
| 1933 | power_info->info_2.asPowerPlayInfo[i].ucVoltageDropIndex); |
| 1934 | if (misc & ATOM_PM_MISCINFO_VOLTAGE_DROP_ACTIVE_HIGH) |
| 1935 | rdev->pm.power_state[state_index].clock_info[0].voltage.active_high = |
| 1936 | true; |
| 1937 | else |
| 1938 | rdev->pm.power_state[state_index].clock_info[0].voltage.active_high = |
| 1939 | false; |
| 1940 | } else if (misc & ATOM_PM_MISCINFO_PROGRAM_VOLTAGE) { |
| 1941 | rdev->pm.power_state[state_index].clock_info[0].voltage.type = |
| 1942 | VOLTAGE_VDDC; |
| 1943 | rdev->pm.power_state[state_index].clock_info[0].voltage.vddc_id = |
| 1944 | power_info->info_2.asPowerPlayInfo[i].ucVoltageDropIndex; |
| 1945 | } |
| 1946 | rdev->pm.power_state[state_index].flags = RADEON_PM_STATE_SINGLE_DISPLAY_ONLY; |
| 1947 | radeon_atombios_parse_misc_flags_1_3(rdev, state_index, misc, misc2); |
| 1948 | state_index++; |
| 1949 | break; |
| 1950 | case 3: |
| 1951 | rdev->pm.power_state[state_index].num_clock_modes = 1; |
| 1952 | rdev->pm.power_state[state_index].clock_info[0].mclk = |
| 1953 | le32_to_cpu(power_info->info_3.asPowerPlayInfo[i].ulMemoryClock); |
| 1954 | rdev->pm.power_state[state_index].clock_info[0].sclk = |
| 1955 | le32_to_cpu(power_info->info_3.asPowerPlayInfo[i].ulEngineClock); |
| 1956 | /* skip invalid modes */ |
| 1957 | if ((rdev->pm.power_state[state_index].clock_info[0].mclk == 0) || |
| 1958 | (rdev->pm.power_state[state_index].clock_info[0].sclk == 0)) |
| 1959 | continue; |
| 1960 | rdev->pm.power_state[state_index].pcie_lanes = |
| 1961 | power_info->info_3.asPowerPlayInfo[i].ucNumPciELanes; |
| 1962 | misc = le32_to_cpu(power_info->info_3.asPowerPlayInfo[i].ulMiscInfo); |
| 1963 | misc2 = le32_to_cpu(power_info->info_3.asPowerPlayInfo[i].ulMiscInfo2); |
| 1964 | if ((misc & ATOM_PM_MISCINFO_VOLTAGE_DROP_SUPPORT) || |
| 1965 | (misc & ATOM_PM_MISCINFO_VOLTAGE_DROP_ACTIVE_HIGH)) { |
| 1966 | rdev->pm.power_state[state_index].clock_info[0].voltage.type = |
| 1967 | VOLTAGE_GPIO; |
| 1968 | rdev->pm.power_state[state_index].clock_info[0].voltage.gpio = |
| 1969 | radeon_lookup_gpio(rdev, |
| 1970 | power_info->info_3.asPowerPlayInfo[i].ucVoltageDropIndex); |
| 1971 | if (misc & ATOM_PM_MISCINFO_VOLTAGE_DROP_ACTIVE_HIGH) |
| 1972 | rdev->pm.power_state[state_index].clock_info[0].voltage.active_high = |
| 1973 | true; |
| 1974 | else |
| 1975 | rdev->pm.power_state[state_index].clock_info[0].voltage.active_high = |
| 1976 | false; |
| 1977 | } else if (misc & ATOM_PM_MISCINFO_PROGRAM_VOLTAGE) { |
| 1978 | rdev->pm.power_state[state_index].clock_info[0].voltage.type = |
| 1979 | VOLTAGE_VDDC; |
| 1980 | rdev->pm.power_state[state_index].clock_info[0].voltage.vddc_id = |
| 1981 | power_info->info_3.asPowerPlayInfo[i].ucVoltageDropIndex; |
| 1982 | if (misc2 & ATOM_PM_MISCINFO2_VDDCI_DYNAMIC_VOLTAGE_EN) { |
| 1983 | rdev->pm.power_state[state_index].clock_info[0].voltage.vddci_enabled = |
| 1984 | true; |
| 1985 | rdev->pm.power_state[state_index].clock_info[0].voltage.vddci_id = |
| 1986 | power_info->info_3.asPowerPlayInfo[i].ucVDDCI_VoltageDropIndex; |
| 1987 | } |
| 1988 | } |
| 1989 | rdev->pm.power_state[state_index].flags = RADEON_PM_STATE_SINGLE_DISPLAY_ONLY; |
| 1990 | radeon_atombios_parse_misc_flags_1_3(rdev, state_index, misc, misc2); |
| 1991 | state_index++; |
| 1992 | break; |
| 1993 | } |
| 1994 | } |
| 1995 | /* last mode is usually default */ |
| 1996 | if (rdev->pm.default_power_state_index == -1) { |
| 1997 | rdev->pm.power_state[state_index - 1].type = |
| 1998 | POWER_STATE_TYPE_DEFAULT; |
| 1999 | rdev->pm.default_power_state_index = state_index - 1; |
| 2000 | rdev->pm.power_state[state_index - 1].default_clock_mode = |
| 2001 | &rdev->pm.power_state[state_index - 1].clock_info[0]; |
| 2002 | rdev->pm.power_state[state_index].flags &= |
| 2003 | ~RADEON_PM_STATE_SINGLE_DISPLAY_ONLY; |
| 2004 | rdev->pm.power_state[state_index].misc = 0; |
| 2005 | rdev->pm.power_state[state_index].misc2 = 0; |
| 2006 | } |
| 2007 | return state_index; |
| 2008 | } |
| 2009 | |
| 2010 | static void radeon_atombios_add_pplib_thermal_controller(struct radeon_device *rdev, |
| 2011 | ATOM_PPLIB_THERMALCONTROLLER *controller) |
| 2012 | { |
| 2013 | struct radeon_i2c_bus_rec i2c_bus; |
| 2014 | |
| 2015 | /* add the i2c bus for thermal/fan chip */ |
| 2016 | if (controller->ucType > 0) { |
| 2017 | if (controller->ucType == ATOM_PP_THERMALCONTROLLER_RV6xx) { |
| 2018 | DRM_INFO("Internal thermal controller %s fan control\n", |
| 2019 | (controller->ucFanParameters & |
| 2020 | ATOM_PP_FANPARAMETERS_NOFAN) ? "without" : "with"); |
| 2021 | rdev->pm.int_thermal_type = THERMAL_TYPE_RV6XX; |
| 2022 | } else if (controller->ucType == ATOM_PP_THERMALCONTROLLER_RV770) { |
| 2023 | DRM_INFO("Internal thermal controller %s fan control\n", |
| 2024 | (controller->ucFanParameters & |
| 2025 | ATOM_PP_FANPARAMETERS_NOFAN) ? "without" : "with"); |
| 2026 | rdev->pm.int_thermal_type = THERMAL_TYPE_RV770; |
| 2027 | } else if (controller->ucType == ATOM_PP_THERMALCONTROLLER_EVERGREEN) { |
| 2028 | DRM_INFO("Internal thermal controller %s fan control\n", |
| 2029 | (controller->ucFanParameters & |
| 2030 | ATOM_PP_FANPARAMETERS_NOFAN) ? "without" : "with"); |
| 2031 | rdev->pm.int_thermal_type = THERMAL_TYPE_EVERGREEN; |
Alex Deucher | b0e6641 | 2010-11-22 17:56:35 -0500 | [diff] [blame] | 2032 | } else if (controller->ucType == ATOM_PP_THERMALCONTROLLER_SUMO) { |
| 2033 | DRM_INFO("Internal thermal controller %s fan control\n", |
| 2034 | (controller->ucFanParameters & |
| 2035 | ATOM_PP_FANPARAMETERS_NOFAN) ? "without" : "with"); |
| 2036 | rdev->pm.int_thermal_type = THERMAL_TYPE_SUMO; |
Alex Deucher | 560154e | 2010-11-22 17:56:34 -0500 | [diff] [blame] | 2037 | } else if ((controller->ucType == |
| 2038 | ATOM_PP_THERMALCONTROLLER_EXTERNAL_GPIO) || |
| 2039 | (controller->ucType == |
Alex Deucher | b0e6641 | 2010-11-22 17:56:35 -0500 | [diff] [blame] | 2040 | ATOM_PP_THERMALCONTROLLER_ADT7473_WITH_INTERNAL) || |
| 2041 | (controller->ucType == |
| 2042 | ATOM_PP_THERMALCONTROLLER_EMC2103_WITH_INTERNAL)) { |
Alex Deucher | 560154e | 2010-11-22 17:56:34 -0500 | [diff] [blame] | 2043 | DRM_INFO("Special thermal controller config\n"); |
| 2044 | } else { |
| 2045 | DRM_INFO("Possible %s thermal controller at 0x%02x %s fan control\n", |
| 2046 | pp_lib_thermal_controller_names[controller->ucType], |
| 2047 | controller->ucI2cAddress >> 1, |
| 2048 | (controller->ucFanParameters & |
| 2049 | ATOM_PP_FANPARAMETERS_NOFAN) ? "without" : "with"); |
| 2050 | i2c_bus = radeon_lookup_i2c_gpio(rdev, controller->ucI2cLine); |
| 2051 | rdev->pm.i2c_bus = radeon_i2c_lookup(rdev, &i2c_bus); |
| 2052 | if (rdev->pm.i2c_bus) { |
| 2053 | struct i2c_board_info info = { }; |
| 2054 | const char *name = pp_lib_thermal_controller_names[controller->ucType]; |
| 2055 | info.addr = controller->ucI2cAddress >> 1; |
| 2056 | strlcpy(info.type, name, sizeof(info.type)); |
| 2057 | i2c_new_device(&rdev->pm.i2c_bus->adapter, &info); |
| 2058 | } |
| 2059 | } |
| 2060 | } |
| 2061 | } |
| 2062 | |
| 2063 | static u16 radeon_atombios_get_default_vddc(struct radeon_device *rdev) |
| 2064 | { |
| 2065 | struct radeon_mode_info *mode_info = &rdev->mode_info; |
| 2066 | int index = GetIndexIntoMasterTable(DATA, FirmwareInfo); |
| 2067 | u8 frev, crev; |
| 2068 | u16 data_offset; |
| 2069 | union firmware_info *firmware_info; |
| 2070 | u16 vddc = 0; |
| 2071 | |
| 2072 | if (atom_parse_data_header(mode_info->atom_context, index, NULL, |
| 2073 | &frev, &crev, &data_offset)) { |
| 2074 | firmware_info = |
| 2075 | (union firmware_info *)(mode_info->atom_context->bios + |
| 2076 | data_offset); |
| 2077 | vddc = firmware_info->info_14.usBootUpVDDCVoltage; |
| 2078 | } |
| 2079 | |
| 2080 | return vddc; |
| 2081 | } |
| 2082 | |
| 2083 | static void radeon_atombios_parse_pplib_non_clock_info(struct radeon_device *rdev, |
| 2084 | int state_index, int mode_index, |
| 2085 | struct _ATOM_PPLIB_NONCLOCK_INFO *non_clock_info) |
| 2086 | { |
| 2087 | int j; |
| 2088 | u32 misc = le32_to_cpu(non_clock_info->ulCapsAndSettings); |
| 2089 | u32 misc2 = le16_to_cpu(non_clock_info->usClassification); |
| 2090 | u16 vddc = radeon_atombios_get_default_vddc(rdev); |
| 2091 | |
| 2092 | rdev->pm.power_state[state_index].misc = misc; |
| 2093 | rdev->pm.power_state[state_index].misc2 = misc2; |
| 2094 | rdev->pm.power_state[state_index].pcie_lanes = |
| 2095 | ((misc & ATOM_PPLIB_PCIE_LINK_WIDTH_MASK) >> |
| 2096 | ATOM_PPLIB_PCIE_LINK_WIDTH_SHIFT) + 1; |
| 2097 | switch (misc2 & ATOM_PPLIB_CLASSIFICATION_UI_MASK) { |
| 2098 | case ATOM_PPLIB_CLASSIFICATION_UI_BATTERY: |
| 2099 | rdev->pm.power_state[state_index].type = |
| 2100 | POWER_STATE_TYPE_BATTERY; |
| 2101 | break; |
| 2102 | case ATOM_PPLIB_CLASSIFICATION_UI_BALANCED: |
| 2103 | rdev->pm.power_state[state_index].type = |
| 2104 | POWER_STATE_TYPE_BALANCED; |
| 2105 | break; |
| 2106 | case ATOM_PPLIB_CLASSIFICATION_UI_PERFORMANCE: |
| 2107 | rdev->pm.power_state[state_index].type = |
| 2108 | POWER_STATE_TYPE_PERFORMANCE; |
| 2109 | break; |
| 2110 | case ATOM_PPLIB_CLASSIFICATION_UI_NONE: |
| 2111 | if (misc2 & ATOM_PPLIB_CLASSIFICATION_3DPERFORMANCE) |
| 2112 | rdev->pm.power_state[state_index].type = |
| 2113 | POWER_STATE_TYPE_PERFORMANCE; |
| 2114 | break; |
| 2115 | } |
| 2116 | rdev->pm.power_state[state_index].flags = 0; |
| 2117 | if (misc & ATOM_PPLIB_SINGLE_DISPLAY_ONLY) |
| 2118 | rdev->pm.power_state[state_index].flags |= |
| 2119 | RADEON_PM_STATE_SINGLE_DISPLAY_ONLY; |
| 2120 | if (misc2 & ATOM_PPLIB_CLASSIFICATION_BOOT) { |
| 2121 | rdev->pm.power_state[state_index].type = |
| 2122 | POWER_STATE_TYPE_DEFAULT; |
| 2123 | rdev->pm.default_power_state_index = state_index; |
| 2124 | rdev->pm.power_state[state_index].default_clock_mode = |
| 2125 | &rdev->pm.power_state[state_index].clock_info[mode_index - 1]; |
| 2126 | /* patch the table values with the default slck/mclk from firmware info */ |
| 2127 | for (j = 0; j < mode_index; j++) { |
| 2128 | rdev->pm.power_state[state_index].clock_info[j].mclk = |
| 2129 | rdev->clock.default_mclk; |
| 2130 | rdev->pm.power_state[state_index].clock_info[j].sclk = |
| 2131 | rdev->clock.default_sclk; |
| 2132 | if (vddc) |
| 2133 | rdev->pm.power_state[state_index].clock_info[j].voltage.voltage = |
| 2134 | vddc; |
| 2135 | } |
| 2136 | } |
| 2137 | } |
| 2138 | |
| 2139 | static bool radeon_atombios_parse_pplib_clock_info(struct radeon_device *rdev, |
| 2140 | int state_index, int mode_index, |
| 2141 | union pplib_clock_info *clock_info) |
| 2142 | { |
| 2143 | u32 sclk, mclk; |
| 2144 | |
| 2145 | if (rdev->flags & RADEON_IS_IGP) { |
Alex Deucher | b0e6641 | 2010-11-22 17:56:35 -0500 | [diff] [blame] | 2146 | if (rdev->family >= CHIP_PALM) { |
| 2147 | sclk = le16_to_cpu(clock_info->sumo.usEngineClockLow); |
| 2148 | sclk |= clock_info->sumo.ucEngineClockHigh << 16; |
| 2149 | rdev->pm.power_state[state_index].clock_info[mode_index].sclk = sclk; |
| 2150 | } else { |
| 2151 | sclk = le16_to_cpu(clock_info->rs780.usLowEngineClockLow); |
| 2152 | sclk |= clock_info->rs780.ucLowEngineClockHigh << 16; |
| 2153 | rdev->pm.power_state[state_index].clock_info[mode_index].sclk = sclk; |
| 2154 | } |
Alex Deucher | 560154e | 2010-11-22 17:56:34 -0500 | [diff] [blame] | 2155 | } else if (ASIC_IS_DCE4(rdev)) { |
| 2156 | sclk = le16_to_cpu(clock_info->evergreen.usEngineClockLow); |
| 2157 | sclk |= clock_info->evergreen.ucEngineClockHigh << 16; |
| 2158 | mclk = le16_to_cpu(clock_info->evergreen.usMemoryClockLow); |
| 2159 | mclk |= clock_info->evergreen.ucMemoryClockHigh << 16; |
| 2160 | rdev->pm.power_state[state_index].clock_info[mode_index].mclk = mclk; |
| 2161 | rdev->pm.power_state[state_index].clock_info[mode_index].sclk = sclk; |
| 2162 | rdev->pm.power_state[state_index].clock_info[mode_index].voltage.type = |
| 2163 | VOLTAGE_SW; |
| 2164 | rdev->pm.power_state[state_index].clock_info[mode_index].voltage.voltage = |
| 2165 | clock_info->evergreen.usVDDC; |
| 2166 | } else { |
| 2167 | sclk = le16_to_cpu(clock_info->r600.usEngineClockLow); |
| 2168 | sclk |= clock_info->r600.ucEngineClockHigh << 16; |
| 2169 | mclk = le16_to_cpu(clock_info->r600.usMemoryClockLow); |
| 2170 | mclk |= clock_info->r600.ucMemoryClockHigh << 16; |
| 2171 | rdev->pm.power_state[state_index].clock_info[mode_index].mclk = mclk; |
| 2172 | rdev->pm.power_state[state_index].clock_info[mode_index].sclk = sclk; |
| 2173 | rdev->pm.power_state[state_index].clock_info[mode_index].voltage.type = |
| 2174 | VOLTAGE_SW; |
| 2175 | rdev->pm.power_state[state_index].clock_info[mode_index].voltage.voltage = |
| 2176 | clock_info->r600.usVDDC; |
| 2177 | } |
| 2178 | |
| 2179 | if (rdev->flags & RADEON_IS_IGP) { |
| 2180 | /* skip invalid modes */ |
| 2181 | if (rdev->pm.power_state[state_index].clock_info[mode_index].sclk == 0) |
| 2182 | return false; |
| 2183 | } else { |
| 2184 | /* skip invalid modes */ |
| 2185 | if ((rdev->pm.power_state[state_index].clock_info[mode_index].mclk == 0) || |
| 2186 | (rdev->pm.power_state[state_index].clock_info[mode_index].sclk == 0)) |
| 2187 | return false; |
| 2188 | } |
| 2189 | return true; |
| 2190 | } |
| 2191 | |
| 2192 | static int radeon_atombios_parse_power_table_4_5(struct radeon_device *rdev) |
| 2193 | { |
| 2194 | struct radeon_mode_info *mode_info = &rdev->mode_info; |
| 2195 | struct _ATOM_PPLIB_NONCLOCK_INFO *non_clock_info; |
| 2196 | union pplib_power_state *power_state; |
| 2197 | int i, j; |
| 2198 | int state_index = 0, mode_index = 0; |
| 2199 | union pplib_clock_info *clock_info; |
| 2200 | bool valid; |
| 2201 | union power_info *power_info; |
| 2202 | int index = GetIndexIntoMasterTable(DATA, PowerPlayInfo); |
| 2203 | u16 data_offset; |
| 2204 | u8 frev, crev; |
| 2205 | |
| 2206 | if (!atom_parse_data_header(mode_info->atom_context, index, NULL, |
| 2207 | &frev, &crev, &data_offset)) |
| 2208 | return state_index; |
| 2209 | power_info = (union power_info *)(mode_info->atom_context->bios + data_offset); |
| 2210 | |
| 2211 | radeon_atombios_add_pplib_thermal_controller(rdev, &power_info->pplib.sThermalController); |
| 2212 | /* first mode is usually default, followed by low to high */ |
| 2213 | for (i = 0; i < power_info->pplib.ucNumStates; i++) { |
| 2214 | mode_index = 0; |
| 2215 | power_state = (union pplib_power_state *) |
| 2216 | (mode_info->atom_context->bios + data_offset + |
| 2217 | le16_to_cpu(power_info->pplib.usStateArrayOffset) + |
| 2218 | i * power_info->pplib.ucStateEntrySize); |
| 2219 | non_clock_info = (struct _ATOM_PPLIB_NONCLOCK_INFO *) |
| 2220 | (mode_info->atom_context->bios + data_offset + |
| 2221 | le16_to_cpu(power_info->pplib.usNonClockInfoArrayOffset) + |
| 2222 | (power_state->v1.ucNonClockStateIndex * |
| 2223 | power_info->pplib.ucNonClockSize)); |
| 2224 | for (j = 0; j < (power_info->pplib.ucStateEntrySize - 1); j++) { |
| 2225 | clock_info = (union pplib_clock_info *) |
| 2226 | (mode_info->atom_context->bios + data_offset + |
| 2227 | le16_to_cpu(power_info->pplib.usClockInfoArrayOffset) + |
| 2228 | (power_state->v1.ucClockStateIndices[j] * |
| 2229 | power_info->pplib.ucClockInfoSize)); |
| 2230 | valid = radeon_atombios_parse_pplib_clock_info(rdev, |
| 2231 | state_index, mode_index, |
| 2232 | clock_info); |
| 2233 | if (valid) |
| 2234 | mode_index++; |
| 2235 | } |
| 2236 | rdev->pm.power_state[state_index].num_clock_modes = mode_index; |
| 2237 | if (mode_index) { |
| 2238 | radeon_atombios_parse_pplib_non_clock_info(rdev, state_index, mode_index, |
| 2239 | non_clock_info); |
| 2240 | state_index++; |
| 2241 | } |
| 2242 | } |
| 2243 | /* if multiple clock modes, mark the lowest as no display */ |
| 2244 | for (i = 0; i < state_index; i++) { |
| 2245 | if (rdev->pm.power_state[i].num_clock_modes > 1) |
| 2246 | rdev->pm.power_state[i].clock_info[0].flags |= |
| 2247 | RADEON_PM_MODE_NO_DISPLAY; |
| 2248 | } |
| 2249 | /* first mode is usually default */ |
| 2250 | if (rdev->pm.default_power_state_index == -1) { |
| 2251 | rdev->pm.power_state[0].type = |
| 2252 | POWER_STATE_TYPE_DEFAULT; |
| 2253 | rdev->pm.default_power_state_index = 0; |
| 2254 | rdev->pm.power_state[0].default_clock_mode = |
| 2255 | &rdev->pm.power_state[0].clock_info[0]; |
| 2256 | } |
| 2257 | return state_index; |
| 2258 | } |
| 2259 | |
Alex Deucher | b0e6641 | 2010-11-22 17:56:35 -0500 | [diff] [blame] | 2260 | static int radeon_atombios_parse_power_table_6(struct radeon_device *rdev) |
| 2261 | { |
| 2262 | struct radeon_mode_info *mode_info = &rdev->mode_info; |
| 2263 | struct _ATOM_PPLIB_NONCLOCK_INFO *non_clock_info; |
| 2264 | union pplib_power_state *power_state; |
| 2265 | int i, j, non_clock_array_index, clock_array_index; |
| 2266 | int state_index = 0, mode_index = 0; |
| 2267 | union pplib_clock_info *clock_info; |
| 2268 | struct StateArray *state_array; |
| 2269 | struct ClockInfoArray *clock_info_array; |
| 2270 | struct NonClockInfoArray *non_clock_info_array; |
| 2271 | bool valid; |
| 2272 | union power_info *power_info; |
| 2273 | int index = GetIndexIntoMasterTable(DATA, PowerPlayInfo); |
| 2274 | u16 data_offset; |
| 2275 | u8 frev, crev; |
| 2276 | |
| 2277 | if (!atom_parse_data_header(mode_info->atom_context, index, NULL, |
| 2278 | &frev, &crev, &data_offset)) |
| 2279 | return state_index; |
| 2280 | power_info = (union power_info *)(mode_info->atom_context->bios + data_offset); |
| 2281 | |
| 2282 | radeon_atombios_add_pplib_thermal_controller(rdev, &power_info->pplib.sThermalController); |
| 2283 | state_array = (struct StateArray *) |
| 2284 | (mode_info->atom_context->bios + data_offset + |
| 2285 | power_info->pplib.usStateArrayOffset); |
| 2286 | clock_info_array = (struct ClockInfoArray *) |
| 2287 | (mode_info->atom_context->bios + data_offset + |
| 2288 | power_info->pplib.usClockInfoArrayOffset); |
| 2289 | non_clock_info_array = (struct NonClockInfoArray *) |
| 2290 | (mode_info->atom_context->bios + data_offset + |
| 2291 | power_info->pplib.usNonClockInfoArrayOffset); |
| 2292 | for (i = 0; i < state_array->ucNumEntries; i++) { |
| 2293 | mode_index = 0; |
| 2294 | power_state = (union pplib_power_state *)&state_array->states[i]; |
| 2295 | /* XXX this might be an inagua bug... */ |
| 2296 | non_clock_array_index = i; /* power_state->v2.nonClockInfoIndex */ |
| 2297 | non_clock_info = (struct _ATOM_PPLIB_NONCLOCK_INFO *) |
| 2298 | &non_clock_info_array->nonClockInfo[non_clock_array_index]; |
| 2299 | for (j = 0; j < power_state->v2.ucNumDPMLevels; j++) { |
| 2300 | clock_array_index = power_state->v2.clockInfoIndex[j]; |
| 2301 | /* XXX this might be an inagua bug... */ |
| 2302 | if (clock_array_index >= clock_info_array->ucNumEntries) |
| 2303 | continue; |
| 2304 | clock_info = (union pplib_clock_info *) |
| 2305 | &clock_info_array->clockInfo[clock_array_index]; |
| 2306 | valid = radeon_atombios_parse_pplib_clock_info(rdev, |
| 2307 | state_index, mode_index, |
| 2308 | clock_info); |
| 2309 | if (valid) |
| 2310 | mode_index++; |
| 2311 | } |
| 2312 | rdev->pm.power_state[state_index].num_clock_modes = mode_index; |
| 2313 | if (mode_index) { |
| 2314 | radeon_atombios_parse_pplib_non_clock_info(rdev, state_index, mode_index, |
| 2315 | non_clock_info); |
| 2316 | state_index++; |
| 2317 | } |
| 2318 | } |
| 2319 | /* if multiple clock modes, mark the lowest as no display */ |
| 2320 | for (i = 0; i < state_index; i++) { |
| 2321 | if (rdev->pm.power_state[i].num_clock_modes > 1) |
| 2322 | rdev->pm.power_state[i].clock_info[0].flags |= |
| 2323 | RADEON_PM_MODE_NO_DISPLAY; |
| 2324 | } |
| 2325 | /* first mode is usually default */ |
| 2326 | if (rdev->pm.default_power_state_index == -1) { |
| 2327 | rdev->pm.power_state[0].type = |
| 2328 | POWER_STATE_TYPE_DEFAULT; |
| 2329 | rdev->pm.default_power_state_index = 0; |
| 2330 | rdev->pm.power_state[0].default_clock_mode = |
| 2331 | &rdev->pm.power_state[0].clock_info[0]; |
| 2332 | } |
| 2333 | return state_index; |
| 2334 | } |
| 2335 | |
Alex Deucher | 56278a8 | 2009-12-28 13:58:44 -0500 | [diff] [blame] | 2336 | void radeon_atombios_get_power_modes(struct radeon_device *rdev) |
| 2337 | { |
| 2338 | struct radeon_mode_info *mode_info = &rdev->mode_info; |
| 2339 | int index = GetIndexIntoMasterTable(DATA, PowerPlayInfo); |
| 2340 | u16 data_offset; |
| 2341 | u8 frev, crev; |
Alex Deucher | 560154e | 2010-11-22 17:56:34 -0500 | [diff] [blame] | 2342 | int state_index = 0; |
Alex Deucher | 56278a8 | 2009-12-28 13:58:44 -0500 | [diff] [blame] | 2343 | |
Alex Deucher | a48b9b4 | 2010-04-22 14:03:55 -0400 | [diff] [blame] | 2344 | rdev->pm.default_power_state_index = -1; |
Alex Deucher | 56278a8 | 2009-12-28 13:58:44 -0500 | [diff] [blame] | 2345 | |
Alex Deucher | a084e6e | 2010-03-18 01:04:01 -0400 | [diff] [blame] | 2346 | if (atom_parse_data_header(mode_info->atom_context, index, NULL, |
| 2347 | &frev, &crev, &data_offset)) { |
Alex Deucher | 560154e | 2010-11-22 17:56:34 -0500 | [diff] [blame] | 2348 | switch (frev) { |
| 2349 | case 1: |
| 2350 | case 2: |
| 2351 | case 3: |
| 2352 | state_index = radeon_atombios_parse_power_table_1_3(rdev); |
| 2353 | break; |
| 2354 | case 4: |
| 2355 | case 5: |
| 2356 | state_index = radeon_atombios_parse_power_table_4_5(rdev); |
| 2357 | break; |
Alex Deucher | b0e6641 | 2010-11-22 17:56:35 -0500 | [diff] [blame] | 2358 | case 6: |
| 2359 | state_index = radeon_atombios_parse_power_table_6(rdev); |
| 2360 | break; |
Alex Deucher | 560154e | 2010-11-22 17:56:34 -0500 | [diff] [blame] | 2361 | default: |
| 2362 | break; |
Alex Deucher | 56278a8 | 2009-12-28 13:58:44 -0500 | [diff] [blame] | 2363 | } |
| 2364 | } else { |
Alex Deucher | 56278a8 | 2009-12-28 13:58:44 -0500 | [diff] [blame] | 2365 | /* add the default mode */ |
Alex Deucher | 0ec0e74 | 2009-12-23 13:21:58 -0500 | [diff] [blame] | 2366 | rdev->pm.power_state[state_index].type = |
| 2367 | POWER_STATE_TYPE_DEFAULT; |
Alex Deucher | 56278a8 | 2009-12-28 13:58:44 -0500 | [diff] [blame] | 2368 | rdev->pm.power_state[state_index].num_clock_modes = 1; |
| 2369 | rdev->pm.power_state[state_index].clock_info[0].mclk = rdev->clock.default_mclk; |
| 2370 | rdev->pm.power_state[state_index].clock_info[0].sclk = rdev->clock.default_sclk; |
| 2371 | rdev->pm.power_state[state_index].default_clock_mode = |
| 2372 | &rdev->pm.power_state[state_index].clock_info[0]; |
Alex Deucher | 56278a8 | 2009-12-28 13:58:44 -0500 | [diff] [blame] | 2373 | rdev->pm.power_state[state_index].clock_info[0].voltage.type = VOLTAGE_NONE; |
Alex Deucher | 79daedc | 2010-04-22 14:25:19 -0400 | [diff] [blame] | 2374 | rdev->pm.power_state[state_index].pcie_lanes = 16; |
Alex Deucher | a48b9b4 | 2010-04-22 14:03:55 -0400 | [diff] [blame] | 2375 | rdev->pm.default_power_state_index = state_index; |
| 2376 | rdev->pm.power_state[state_index].flags = 0; |
Alex Deucher | 56278a8 | 2009-12-28 13:58:44 -0500 | [diff] [blame] | 2377 | state_index++; |
| 2378 | } |
Alex Deucher | 02b17cc | 2010-04-22 13:25:06 -0400 | [diff] [blame] | 2379 | |
Alex Deucher | 56278a8 | 2009-12-28 13:58:44 -0500 | [diff] [blame] | 2380 | rdev->pm.num_power_states = state_index; |
Rafał Miłecki | 9038dfd | 2010-02-20 23:15:04 +0000 | [diff] [blame] | 2381 | |
Alex Deucher | a48b9b4 | 2010-04-22 14:03:55 -0400 | [diff] [blame] | 2382 | rdev->pm.current_power_state_index = rdev->pm.default_power_state_index; |
| 2383 | rdev->pm.current_clock_mode_index = 0; |
Alex Deucher | 4d60173 | 2010-06-07 18:15:18 -0400 | [diff] [blame] | 2384 | rdev->pm.current_vddc = rdev->pm.power_state[rdev->pm.default_power_state_index].clock_info[0].voltage.voltage; |
Alex Deucher | 56278a8 | 2009-12-28 13:58:44 -0500 | [diff] [blame] | 2385 | } |
| 2386 | |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 2387 | void radeon_atom_set_clock_gating(struct radeon_device *rdev, int enable) |
| 2388 | { |
| 2389 | DYNAMIC_CLOCK_GATING_PS_ALLOCATION args; |
| 2390 | int index = GetIndexIntoMasterTable(COMMAND, DynamicClockGating); |
| 2391 | |
| 2392 | args.ucEnable = enable; |
| 2393 | |
| 2394 | atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args); |
| 2395 | } |
| 2396 | |
Rafał Miłecki | 7433874 | 2009-11-03 00:53:02 +0100 | [diff] [blame] | 2397 | uint32_t radeon_atom_get_engine_clock(struct radeon_device *rdev) |
| 2398 | { |
| 2399 | GET_ENGINE_CLOCK_PS_ALLOCATION args; |
| 2400 | int index = GetIndexIntoMasterTable(COMMAND, GetEngineClock); |
| 2401 | |
| 2402 | atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args); |
| 2403 | return args.ulReturnEngineClock; |
| 2404 | } |
| 2405 | |
| 2406 | uint32_t radeon_atom_get_memory_clock(struct radeon_device *rdev) |
| 2407 | { |
| 2408 | GET_MEMORY_CLOCK_PS_ALLOCATION args; |
| 2409 | int index = GetIndexIntoMasterTable(COMMAND, GetMemoryClock); |
| 2410 | |
| 2411 | atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args); |
| 2412 | return args.ulReturnMemoryClock; |
| 2413 | } |
| 2414 | |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 2415 | void radeon_atom_set_engine_clock(struct radeon_device *rdev, |
| 2416 | uint32_t eng_clock) |
| 2417 | { |
| 2418 | SET_ENGINE_CLOCK_PS_ALLOCATION args; |
| 2419 | int index = GetIndexIntoMasterTable(COMMAND, SetEngineClock); |
| 2420 | |
| 2421 | args.ulTargetEngineClock = eng_clock; /* 10 khz */ |
| 2422 | |
| 2423 | atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args); |
| 2424 | } |
| 2425 | |
| 2426 | void radeon_atom_set_memory_clock(struct radeon_device *rdev, |
| 2427 | uint32_t mem_clock) |
| 2428 | { |
| 2429 | SET_MEMORY_CLOCK_PS_ALLOCATION args; |
| 2430 | int index = GetIndexIntoMasterTable(COMMAND, SetMemoryClock); |
| 2431 | |
| 2432 | if (rdev->flags & RADEON_IS_IGP) |
| 2433 | return; |
| 2434 | |
| 2435 | args.ulTargetMemoryClock = mem_clock; /* 10 khz */ |
| 2436 | |
| 2437 | atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args); |
| 2438 | } |
| 2439 | |
Alex Deucher | 7ac9aa5 | 2010-05-27 19:25:54 -0400 | [diff] [blame] | 2440 | union set_voltage { |
| 2441 | struct _SET_VOLTAGE_PS_ALLOCATION alloc; |
| 2442 | struct _SET_VOLTAGE_PARAMETERS v1; |
| 2443 | struct _SET_VOLTAGE_PARAMETERS_V2 v2; |
| 2444 | }; |
| 2445 | |
| 2446 | void radeon_atom_set_voltage(struct radeon_device *rdev, u16 level) |
| 2447 | { |
| 2448 | union set_voltage args; |
| 2449 | int index = GetIndexIntoMasterTable(COMMAND, SetVoltage); |
| 2450 | u8 frev, crev, volt_index = level; |
| 2451 | |
| 2452 | if (!atom_parse_cmd_header(rdev->mode_info.atom_context, index, &frev, &crev)) |
| 2453 | return; |
| 2454 | |
| 2455 | switch (crev) { |
| 2456 | case 1: |
| 2457 | args.v1.ucVoltageType = SET_VOLTAGE_TYPE_ASIC_VDDC; |
| 2458 | args.v1.ucVoltageMode = SET_ASIC_VOLTAGE_MODE_ALL_SOURCE; |
| 2459 | args.v1.ucVoltageIndex = volt_index; |
| 2460 | break; |
| 2461 | case 2: |
| 2462 | args.v2.ucVoltageType = SET_VOLTAGE_TYPE_ASIC_VDDC; |
| 2463 | args.v2.ucVoltageMode = SET_ASIC_VOLTAGE_MODE_SET_VOLTAGE; |
| 2464 | args.v2.usVoltageLevel = cpu_to_le16(level); |
| 2465 | break; |
| 2466 | default: |
| 2467 | DRM_ERROR("Unknown table version %d, %d\n", frev, crev); |
| 2468 | return; |
| 2469 | } |
| 2470 | |
| 2471 | atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args); |
| 2472 | } |
| 2473 | |
| 2474 | |
| 2475 | |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 2476 | void radeon_atom_initialize_bios_scratch_regs(struct drm_device *dev) |
| 2477 | { |
| 2478 | struct radeon_device *rdev = dev->dev_private; |
| 2479 | uint32_t bios_2_scratch, bios_6_scratch; |
| 2480 | |
| 2481 | if (rdev->family >= CHIP_R600) { |
Dave Airlie | 4ce001a | 2009-08-13 16:32:14 +1000 | [diff] [blame] | 2482 | bios_2_scratch = RREG32(R600_BIOS_2_SCRATCH); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 2483 | bios_6_scratch = RREG32(R600_BIOS_6_SCRATCH); |
| 2484 | } else { |
Dave Airlie | 4ce001a | 2009-08-13 16:32:14 +1000 | [diff] [blame] | 2485 | bios_2_scratch = RREG32(RADEON_BIOS_2_SCRATCH); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 2486 | bios_6_scratch = RREG32(RADEON_BIOS_6_SCRATCH); |
| 2487 | } |
| 2488 | |
| 2489 | /* let the bios control the backlight */ |
| 2490 | bios_2_scratch &= ~ATOM_S2_VRI_BRIGHT_ENABLE; |
| 2491 | |
| 2492 | /* tell the bios not to handle mode switching */ |
| 2493 | bios_6_scratch |= (ATOM_S6_ACC_BLOCK_DISPLAY_SWITCH | ATOM_S6_ACC_MODE); |
| 2494 | |
| 2495 | if (rdev->family >= CHIP_R600) { |
| 2496 | WREG32(R600_BIOS_2_SCRATCH, bios_2_scratch); |
| 2497 | WREG32(R600_BIOS_6_SCRATCH, bios_6_scratch); |
| 2498 | } else { |
| 2499 | WREG32(RADEON_BIOS_2_SCRATCH, bios_2_scratch); |
| 2500 | WREG32(RADEON_BIOS_6_SCRATCH, bios_6_scratch); |
| 2501 | } |
| 2502 | |
| 2503 | } |
| 2504 | |
Yang Zhao | f657c2a | 2009-09-15 12:21:01 +1000 | [diff] [blame] | 2505 | void radeon_save_bios_scratch_regs(struct radeon_device *rdev) |
| 2506 | { |
| 2507 | uint32_t scratch_reg; |
| 2508 | int i; |
| 2509 | |
| 2510 | if (rdev->family >= CHIP_R600) |
| 2511 | scratch_reg = R600_BIOS_0_SCRATCH; |
| 2512 | else |
| 2513 | scratch_reg = RADEON_BIOS_0_SCRATCH; |
| 2514 | |
| 2515 | for (i = 0; i < RADEON_BIOS_NUM_SCRATCH; i++) |
| 2516 | rdev->bios_scratch[i] = RREG32(scratch_reg + (i * 4)); |
| 2517 | } |
| 2518 | |
| 2519 | void radeon_restore_bios_scratch_regs(struct radeon_device *rdev) |
| 2520 | { |
| 2521 | uint32_t scratch_reg; |
| 2522 | int i; |
| 2523 | |
| 2524 | if (rdev->family >= CHIP_R600) |
| 2525 | scratch_reg = R600_BIOS_0_SCRATCH; |
| 2526 | else |
| 2527 | scratch_reg = RADEON_BIOS_0_SCRATCH; |
| 2528 | |
| 2529 | for (i = 0; i < RADEON_BIOS_NUM_SCRATCH; i++) |
| 2530 | WREG32(scratch_reg + (i * 4), rdev->bios_scratch[i]); |
| 2531 | } |
| 2532 | |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 2533 | void radeon_atom_output_lock(struct drm_encoder *encoder, bool lock) |
| 2534 | { |
| 2535 | struct drm_device *dev = encoder->dev; |
| 2536 | struct radeon_device *rdev = dev->dev_private; |
| 2537 | uint32_t bios_6_scratch; |
| 2538 | |
| 2539 | if (rdev->family >= CHIP_R600) |
| 2540 | bios_6_scratch = RREG32(R600_BIOS_6_SCRATCH); |
| 2541 | else |
| 2542 | bios_6_scratch = RREG32(RADEON_BIOS_6_SCRATCH); |
| 2543 | |
| 2544 | if (lock) |
| 2545 | bios_6_scratch |= ATOM_S6_CRITICAL_STATE; |
| 2546 | else |
| 2547 | bios_6_scratch &= ~ATOM_S6_CRITICAL_STATE; |
| 2548 | |
| 2549 | if (rdev->family >= CHIP_R600) |
| 2550 | WREG32(R600_BIOS_6_SCRATCH, bios_6_scratch); |
| 2551 | else |
| 2552 | WREG32(RADEON_BIOS_6_SCRATCH, bios_6_scratch); |
| 2553 | } |
| 2554 | |
| 2555 | /* at some point we may want to break this out into individual functions */ |
| 2556 | void |
| 2557 | radeon_atombios_connected_scratch_regs(struct drm_connector *connector, |
| 2558 | struct drm_encoder *encoder, |
| 2559 | bool connected) |
| 2560 | { |
| 2561 | struct drm_device *dev = connector->dev; |
| 2562 | struct radeon_device *rdev = dev->dev_private; |
| 2563 | struct radeon_connector *radeon_connector = |
| 2564 | to_radeon_connector(connector); |
| 2565 | struct radeon_encoder *radeon_encoder = to_radeon_encoder(encoder); |
| 2566 | uint32_t bios_0_scratch, bios_3_scratch, bios_6_scratch; |
| 2567 | |
| 2568 | if (rdev->family >= CHIP_R600) { |
| 2569 | bios_0_scratch = RREG32(R600_BIOS_0_SCRATCH); |
| 2570 | bios_3_scratch = RREG32(R600_BIOS_3_SCRATCH); |
| 2571 | bios_6_scratch = RREG32(R600_BIOS_6_SCRATCH); |
| 2572 | } else { |
| 2573 | bios_0_scratch = RREG32(RADEON_BIOS_0_SCRATCH); |
| 2574 | bios_3_scratch = RREG32(RADEON_BIOS_3_SCRATCH); |
| 2575 | bios_6_scratch = RREG32(RADEON_BIOS_6_SCRATCH); |
| 2576 | } |
| 2577 | |
| 2578 | if ((radeon_encoder->devices & ATOM_DEVICE_TV1_SUPPORT) && |
| 2579 | (radeon_connector->devices & ATOM_DEVICE_TV1_SUPPORT)) { |
| 2580 | if (connected) { |
Dave Airlie | d9fdaaf | 2010-08-02 10:42:55 +1000 | [diff] [blame] | 2581 | DRM_DEBUG_KMS("TV1 connected\n"); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 2582 | bios_3_scratch |= ATOM_S3_TV1_ACTIVE; |
| 2583 | bios_6_scratch |= ATOM_S6_ACC_REQ_TV1; |
| 2584 | } else { |
Dave Airlie | d9fdaaf | 2010-08-02 10:42:55 +1000 | [diff] [blame] | 2585 | DRM_DEBUG_KMS("TV1 disconnected\n"); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 2586 | bios_0_scratch &= ~ATOM_S0_TV1_MASK; |
| 2587 | bios_3_scratch &= ~ATOM_S3_TV1_ACTIVE; |
| 2588 | bios_6_scratch &= ~ATOM_S6_ACC_REQ_TV1; |
| 2589 | } |
| 2590 | } |
| 2591 | if ((radeon_encoder->devices & ATOM_DEVICE_CV_SUPPORT) && |
| 2592 | (radeon_connector->devices & ATOM_DEVICE_CV_SUPPORT)) { |
| 2593 | if (connected) { |
Dave Airlie | d9fdaaf | 2010-08-02 10:42:55 +1000 | [diff] [blame] | 2594 | DRM_DEBUG_KMS("CV connected\n"); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 2595 | bios_3_scratch |= ATOM_S3_CV_ACTIVE; |
| 2596 | bios_6_scratch |= ATOM_S6_ACC_REQ_CV; |
| 2597 | } else { |
Dave Airlie | d9fdaaf | 2010-08-02 10:42:55 +1000 | [diff] [blame] | 2598 | DRM_DEBUG_KMS("CV disconnected\n"); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 2599 | bios_0_scratch &= ~ATOM_S0_CV_MASK; |
| 2600 | bios_3_scratch &= ~ATOM_S3_CV_ACTIVE; |
| 2601 | bios_6_scratch &= ~ATOM_S6_ACC_REQ_CV; |
| 2602 | } |
| 2603 | } |
| 2604 | if ((radeon_encoder->devices & ATOM_DEVICE_LCD1_SUPPORT) && |
| 2605 | (radeon_connector->devices & ATOM_DEVICE_LCD1_SUPPORT)) { |
| 2606 | if (connected) { |
Dave Airlie | d9fdaaf | 2010-08-02 10:42:55 +1000 | [diff] [blame] | 2607 | DRM_DEBUG_KMS("LCD1 connected\n"); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 2608 | bios_0_scratch |= ATOM_S0_LCD1; |
| 2609 | bios_3_scratch |= ATOM_S3_LCD1_ACTIVE; |
| 2610 | bios_6_scratch |= ATOM_S6_ACC_REQ_LCD1; |
| 2611 | } else { |
Dave Airlie | d9fdaaf | 2010-08-02 10:42:55 +1000 | [diff] [blame] | 2612 | DRM_DEBUG_KMS("LCD1 disconnected\n"); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 2613 | bios_0_scratch &= ~ATOM_S0_LCD1; |
| 2614 | bios_3_scratch &= ~ATOM_S3_LCD1_ACTIVE; |
| 2615 | bios_6_scratch &= ~ATOM_S6_ACC_REQ_LCD1; |
| 2616 | } |
| 2617 | } |
| 2618 | if ((radeon_encoder->devices & ATOM_DEVICE_CRT1_SUPPORT) && |
| 2619 | (radeon_connector->devices & ATOM_DEVICE_CRT1_SUPPORT)) { |
| 2620 | if (connected) { |
Dave Airlie | d9fdaaf | 2010-08-02 10:42:55 +1000 | [diff] [blame] | 2621 | DRM_DEBUG_KMS("CRT1 connected\n"); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 2622 | bios_0_scratch |= ATOM_S0_CRT1_COLOR; |
| 2623 | bios_3_scratch |= ATOM_S3_CRT1_ACTIVE; |
| 2624 | bios_6_scratch |= ATOM_S6_ACC_REQ_CRT1; |
| 2625 | } else { |
Dave Airlie | d9fdaaf | 2010-08-02 10:42:55 +1000 | [diff] [blame] | 2626 | DRM_DEBUG_KMS("CRT1 disconnected\n"); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 2627 | bios_0_scratch &= ~ATOM_S0_CRT1_MASK; |
| 2628 | bios_3_scratch &= ~ATOM_S3_CRT1_ACTIVE; |
| 2629 | bios_6_scratch &= ~ATOM_S6_ACC_REQ_CRT1; |
| 2630 | } |
| 2631 | } |
| 2632 | if ((radeon_encoder->devices & ATOM_DEVICE_CRT2_SUPPORT) && |
| 2633 | (radeon_connector->devices & ATOM_DEVICE_CRT2_SUPPORT)) { |
| 2634 | if (connected) { |
Dave Airlie | d9fdaaf | 2010-08-02 10:42:55 +1000 | [diff] [blame] | 2635 | DRM_DEBUG_KMS("CRT2 connected\n"); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 2636 | bios_0_scratch |= ATOM_S0_CRT2_COLOR; |
| 2637 | bios_3_scratch |= ATOM_S3_CRT2_ACTIVE; |
| 2638 | bios_6_scratch |= ATOM_S6_ACC_REQ_CRT2; |
| 2639 | } else { |
Dave Airlie | d9fdaaf | 2010-08-02 10:42:55 +1000 | [diff] [blame] | 2640 | DRM_DEBUG_KMS("CRT2 disconnected\n"); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 2641 | bios_0_scratch &= ~ATOM_S0_CRT2_MASK; |
| 2642 | bios_3_scratch &= ~ATOM_S3_CRT2_ACTIVE; |
| 2643 | bios_6_scratch &= ~ATOM_S6_ACC_REQ_CRT2; |
| 2644 | } |
| 2645 | } |
| 2646 | if ((radeon_encoder->devices & ATOM_DEVICE_DFP1_SUPPORT) && |
| 2647 | (radeon_connector->devices & ATOM_DEVICE_DFP1_SUPPORT)) { |
| 2648 | if (connected) { |
Dave Airlie | d9fdaaf | 2010-08-02 10:42:55 +1000 | [diff] [blame] | 2649 | DRM_DEBUG_KMS("DFP1 connected\n"); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 2650 | bios_0_scratch |= ATOM_S0_DFP1; |
| 2651 | bios_3_scratch |= ATOM_S3_DFP1_ACTIVE; |
| 2652 | bios_6_scratch |= ATOM_S6_ACC_REQ_DFP1; |
| 2653 | } else { |
Dave Airlie | d9fdaaf | 2010-08-02 10:42:55 +1000 | [diff] [blame] | 2654 | DRM_DEBUG_KMS("DFP1 disconnected\n"); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 2655 | bios_0_scratch &= ~ATOM_S0_DFP1; |
| 2656 | bios_3_scratch &= ~ATOM_S3_DFP1_ACTIVE; |
| 2657 | bios_6_scratch &= ~ATOM_S6_ACC_REQ_DFP1; |
| 2658 | } |
| 2659 | } |
| 2660 | if ((radeon_encoder->devices & ATOM_DEVICE_DFP2_SUPPORT) && |
| 2661 | (radeon_connector->devices & ATOM_DEVICE_DFP2_SUPPORT)) { |
| 2662 | if (connected) { |
Dave Airlie | d9fdaaf | 2010-08-02 10:42:55 +1000 | [diff] [blame] | 2663 | DRM_DEBUG_KMS("DFP2 connected\n"); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 2664 | bios_0_scratch |= ATOM_S0_DFP2; |
| 2665 | bios_3_scratch |= ATOM_S3_DFP2_ACTIVE; |
| 2666 | bios_6_scratch |= ATOM_S6_ACC_REQ_DFP2; |
| 2667 | } else { |
Dave Airlie | d9fdaaf | 2010-08-02 10:42:55 +1000 | [diff] [blame] | 2668 | DRM_DEBUG_KMS("DFP2 disconnected\n"); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 2669 | bios_0_scratch &= ~ATOM_S0_DFP2; |
| 2670 | bios_3_scratch &= ~ATOM_S3_DFP2_ACTIVE; |
| 2671 | bios_6_scratch &= ~ATOM_S6_ACC_REQ_DFP2; |
| 2672 | } |
| 2673 | } |
| 2674 | if ((radeon_encoder->devices & ATOM_DEVICE_DFP3_SUPPORT) && |
| 2675 | (radeon_connector->devices & ATOM_DEVICE_DFP3_SUPPORT)) { |
| 2676 | if (connected) { |
Dave Airlie | d9fdaaf | 2010-08-02 10:42:55 +1000 | [diff] [blame] | 2677 | DRM_DEBUG_KMS("DFP3 connected\n"); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 2678 | bios_0_scratch |= ATOM_S0_DFP3; |
| 2679 | bios_3_scratch |= ATOM_S3_DFP3_ACTIVE; |
| 2680 | bios_6_scratch |= ATOM_S6_ACC_REQ_DFP3; |
| 2681 | } else { |
Dave Airlie | d9fdaaf | 2010-08-02 10:42:55 +1000 | [diff] [blame] | 2682 | DRM_DEBUG_KMS("DFP3 disconnected\n"); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 2683 | bios_0_scratch &= ~ATOM_S0_DFP3; |
| 2684 | bios_3_scratch &= ~ATOM_S3_DFP3_ACTIVE; |
| 2685 | bios_6_scratch &= ~ATOM_S6_ACC_REQ_DFP3; |
| 2686 | } |
| 2687 | } |
| 2688 | if ((radeon_encoder->devices & ATOM_DEVICE_DFP4_SUPPORT) && |
| 2689 | (radeon_connector->devices & ATOM_DEVICE_DFP4_SUPPORT)) { |
| 2690 | if (connected) { |
Dave Airlie | d9fdaaf | 2010-08-02 10:42:55 +1000 | [diff] [blame] | 2691 | DRM_DEBUG_KMS("DFP4 connected\n"); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 2692 | bios_0_scratch |= ATOM_S0_DFP4; |
| 2693 | bios_3_scratch |= ATOM_S3_DFP4_ACTIVE; |
| 2694 | bios_6_scratch |= ATOM_S6_ACC_REQ_DFP4; |
| 2695 | } else { |
Dave Airlie | d9fdaaf | 2010-08-02 10:42:55 +1000 | [diff] [blame] | 2696 | DRM_DEBUG_KMS("DFP4 disconnected\n"); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 2697 | bios_0_scratch &= ~ATOM_S0_DFP4; |
| 2698 | bios_3_scratch &= ~ATOM_S3_DFP4_ACTIVE; |
| 2699 | bios_6_scratch &= ~ATOM_S6_ACC_REQ_DFP4; |
| 2700 | } |
| 2701 | } |
| 2702 | if ((radeon_encoder->devices & ATOM_DEVICE_DFP5_SUPPORT) && |
| 2703 | (radeon_connector->devices & ATOM_DEVICE_DFP5_SUPPORT)) { |
| 2704 | if (connected) { |
Dave Airlie | d9fdaaf | 2010-08-02 10:42:55 +1000 | [diff] [blame] | 2705 | DRM_DEBUG_KMS("DFP5 connected\n"); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 2706 | bios_0_scratch |= ATOM_S0_DFP5; |
| 2707 | bios_3_scratch |= ATOM_S3_DFP5_ACTIVE; |
| 2708 | bios_6_scratch |= ATOM_S6_ACC_REQ_DFP5; |
| 2709 | } else { |
Dave Airlie | d9fdaaf | 2010-08-02 10:42:55 +1000 | [diff] [blame] | 2710 | DRM_DEBUG_KMS("DFP5 disconnected\n"); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 2711 | bios_0_scratch &= ~ATOM_S0_DFP5; |
| 2712 | bios_3_scratch &= ~ATOM_S3_DFP5_ACTIVE; |
| 2713 | bios_6_scratch &= ~ATOM_S6_ACC_REQ_DFP5; |
| 2714 | } |
| 2715 | } |
| 2716 | |
| 2717 | if (rdev->family >= CHIP_R600) { |
| 2718 | WREG32(R600_BIOS_0_SCRATCH, bios_0_scratch); |
| 2719 | WREG32(R600_BIOS_3_SCRATCH, bios_3_scratch); |
| 2720 | WREG32(R600_BIOS_6_SCRATCH, bios_6_scratch); |
| 2721 | } else { |
| 2722 | WREG32(RADEON_BIOS_0_SCRATCH, bios_0_scratch); |
| 2723 | WREG32(RADEON_BIOS_3_SCRATCH, bios_3_scratch); |
| 2724 | WREG32(RADEON_BIOS_6_SCRATCH, bios_6_scratch); |
| 2725 | } |
| 2726 | } |
| 2727 | |
| 2728 | void |
| 2729 | radeon_atombios_encoder_crtc_scratch_regs(struct drm_encoder *encoder, int crtc) |
| 2730 | { |
| 2731 | struct drm_device *dev = encoder->dev; |
| 2732 | struct radeon_device *rdev = dev->dev_private; |
| 2733 | struct radeon_encoder *radeon_encoder = to_radeon_encoder(encoder); |
| 2734 | uint32_t bios_3_scratch; |
| 2735 | |
| 2736 | if (rdev->family >= CHIP_R600) |
| 2737 | bios_3_scratch = RREG32(R600_BIOS_3_SCRATCH); |
| 2738 | else |
| 2739 | bios_3_scratch = RREG32(RADEON_BIOS_3_SCRATCH); |
| 2740 | |
| 2741 | if (radeon_encoder->devices & ATOM_DEVICE_TV1_SUPPORT) { |
| 2742 | bios_3_scratch &= ~ATOM_S3_TV1_CRTC_ACTIVE; |
| 2743 | bios_3_scratch |= (crtc << 18); |
| 2744 | } |
| 2745 | if (radeon_encoder->devices & ATOM_DEVICE_CV_SUPPORT) { |
| 2746 | bios_3_scratch &= ~ATOM_S3_CV_CRTC_ACTIVE; |
| 2747 | bios_3_scratch |= (crtc << 24); |
| 2748 | } |
| 2749 | if (radeon_encoder->devices & ATOM_DEVICE_CRT1_SUPPORT) { |
| 2750 | bios_3_scratch &= ~ATOM_S3_CRT1_CRTC_ACTIVE; |
| 2751 | bios_3_scratch |= (crtc << 16); |
| 2752 | } |
| 2753 | if (radeon_encoder->devices & ATOM_DEVICE_CRT2_SUPPORT) { |
| 2754 | bios_3_scratch &= ~ATOM_S3_CRT2_CRTC_ACTIVE; |
| 2755 | bios_3_scratch |= (crtc << 20); |
| 2756 | } |
| 2757 | if (radeon_encoder->devices & ATOM_DEVICE_LCD1_SUPPORT) { |
| 2758 | bios_3_scratch &= ~ATOM_S3_LCD1_CRTC_ACTIVE; |
| 2759 | bios_3_scratch |= (crtc << 17); |
| 2760 | } |
| 2761 | if (radeon_encoder->devices & ATOM_DEVICE_DFP1_SUPPORT) { |
| 2762 | bios_3_scratch &= ~ATOM_S3_DFP1_CRTC_ACTIVE; |
| 2763 | bios_3_scratch |= (crtc << 19); |
| 2764 | } |
| 2765 | if (radeon_encoder->devices & ATOM_DEVICE_DFP2_SUPPORT) { |
| 2766 | bios_3_scratch &= ~ATOM_S3_DFP2_CRTC_ACTIVE; |
| 2767 | bios_3_scratch |= (crtc << 23); |
| 2768 | } |
| 2769 | if (radeon_encoder->devices & ATOM_DEVICE_DFP3_SUPPORT) { |
| 2770 | bios_3_scratch &= ~ATOM_S3_DFP3_CRTC_ACTIVE; |
| 2771 | bios_3_scratch |= (crtc << 25); |
| 2772 | } |
| 2773 | |
| 2774 | if (rdev->family >= CHIP_R600) |
| 2775 | WREG32(R600_BIOS_3_SCRATCH, bios_3_scratch); |
| 2776 | else |
| 2777 | WREG32(RADEON_BIOS_3_SCRATCH, bios_3_scratch); |
| 2778 | } |
| 2779 | |
| 2780 | void |
| 2781 | radeon_atombios_encoder_dpms_scratch_regs(struct drm_encoder *encoder, bool on) |
| 2782 | { |
| 2783 | struct drm_device *dev = encoder->dev; |
| 2784 | struct radeon_device *rdev = dev->dev_private; |
| 2785 | struct radeon_encoder *radeon_encoder = to_radeon_encoder(encoder); |
| 2786 | uint32_t bios_2_scratch; |
| 2787 | |
| 2788 | if (rdev->family >= CHIP_R600) |
| 2789 | bios_2_scratch = RREG32(R600_BIOS_2_SCRATCH); |
| 2790 | else |
| 2791 | bios_2_scratch = RREG32(RADEON_BIOS_2_SCRATCH); |
| 2792 | |
| 2793 | if (radeon_encoder->devices & ATOM_DEVICE_TV1_SUPPORT) { |
| 2794 | if (on) |
| 2795 | bios_2_scratch &= ~ATOM_S2_TV1_DPMS_STATE; |
| 2796 | else |
| 2797 | bios_2_scratch |= ATOM_S2_TV1_DPMS_STATE; |
| 2798 | } |
| 2799 | if (radeon_encoder->devices & ATOM_DEVICE_CV_SUPPORT) { |
| 2800 | if (on) |
| 2801 | bios_2_scratch &= ~ATOM_S2_CV_DPMS_STATE; |
| 2802 | else |
| 2803 | bios_2_scratch |= ATOM_S2_CV_DPMS_STATE; |
| 2804 | } |
| 2805 | if (radeon_encoder->devices & ATOM_DEVICE_CRT1_SUPPORT) { |
| 2806 | if (on) |
| 2807 | bios_2_scratch &= ~ATOM_S2_CRT1_DPMS_STATE; |
| 2808 | else |
| 2809 | bios_2_scratch |= ATOM_S2_CRT1_DPMS_STATE; |
| 2810 | } |
| 2811 | if (radeon_encoder->devices & ATOM_DEVICE_CRT2_SUPPORT) { |
| 2812 | if (on) |
| 2813 | bios_2_scratch &= ~ATOM_S2_CRT2_DPMS_STATE; |
| 2814 | else |
| 2815 | bios_2_scratch |= ATOM_S2_CRT2_DPMS_STATE; |
| 2816 | } |
| 2817 | if (radeon_encoder->devices & ATOM_DEVICE_LCD1_SUPPORT) { |
| 2818 | if (on) |
| 2819 | bios_2_scratch &= ~ATOM_S2_LCD1_DPMS_STATE; |
| 2820 | else |
| 2821 | bios_2_scratch |= ATOM_S2_LCD1_DPMS_STATE; |
| 2822 | } |
| 2823 | if (radeon_encoder->devices & ATOM_DEVICE_DFP1_SUPPORT) { |
| 2824 | if (on) |
| 2825 | bios_2_scratch &= ~ATOM_S2_DFP1_DPMS_STATE; |
| 2826 | else |
| 2827 | bios_2_scratch |= ATOM_S2_DFP1_DPMS_STATE; |
| 2828 | } |
| 2829 | if (radeon_encoder->devices & ATOM_DEVICE_DFP2_SUPPORT) { |
| 2830 | if (on) |
| 2831 | bios_2_scratch &= ~ATOM_S2_DFP2_DPMS_STATE; |
| 2832 | else |
| 2833 | bios_2_scratch |= ATOM_S2_DFP2_DPMS_STATE; |
| 2834 | } |
| 2835 | if (radeon_encoder->devices & ATOM_DEVICE_DFP3_SUPPORT) { |
| 2836 | if (on) |
| 2837 | bios_2_scratch &= ~ATOM_S2_DFP3_DPMS_STATE; |
| 2838 | else |
| 2839 | bios_2_scratch |= ATOM_S2_DFP3_DPMS_STATE; |
| 2840 | } |
| 2841 | if (radeon_encoder->devices & ATOM_DEVICE_DFP4_SUPPORT) { |
| 2842 | if (on) |
| 2843 | bios_2_scratch &= ~ATOM_S2_DFP4_DPMS_STATE; |
| 2844 | else |
| 2845 | bios_2_scratch |= ATOM_S2_DFP4_DPMS_STATE; |
| 2846 | } |
| 2847 | if (radeon_encoder->devices & ATOM_DEVICE_DFP5_SUPPORT) { |
| 2848 | if (on) |
| 2849 | bios_2_scratch &= ~ATOM_S2_DFP5_DPMS_STATE; |
| 2850 | else |
| 2851 | bios_2_scratch |= ATOM_S2_DFP5_DPMS_STATE; |
| 2852 | } |
| 2853 | |
| 2854 | if (rdev->family >= CHIP_R600) |
| 2855 | WREG32(R600_BIOS_2_SCRATCH, bios_2_scratch); |
| 2856 | else |
| 2857 | WREG32(RADEON_BIOS_2_SCRATCH, bios_2_scratch); |
| 2858 | } |