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 |
| 35 | radeon_get_encoder_id(struct drm_device *dev, uint32_t supported_device, |
| 36 | uint8_t dac); |
| 37 | extern void radeon_link_encoder_connector(struct drm_device *dev); |
| 38 | extern void |
| 39 | radeon_add_atom_encoder(struct drm_device *dev, uint32_t encoder_id, |
| 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 | b75fad0 | 2009-11-05 13:16:01 -0500 | [diff] [blame] | 49 | bool linkb, uint32_t igp_lane_info, |
Alex Deucher | eed45b3 | 2009-12-04 14:45:27 -0500 | [diff] [blame] | 50 | uint16_t connector_object_id, |
| 51 | struct radeon_hpd *hpd); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 52 | |
| 53 | /* from radeon_legacy_encoder.c */ |
| 54 | extern void |
| 55 | radeon_add_legacy_encoder(struct drm_device *dev, uint32_t encoder_id, |
| 56 | uint32_t supported_device); |
| 57 | |
| 58 | union atom_supported_devices { |
| 59 | struct _ATOM_SUPPORTED_DEVICES_INFO info; |
| 60 | struct _ATOM_SUPPORTED_DEVICES_INFO_2 info_2; |
| 61 | struct _ATOM_SUPPORTED_DEVICES_INFO_2d1 info_2d1; |
| 62 | }; |
| 63 | |
Alex Deucher | eed45b3 | 2009-12-04 14:45:27 -0500 | [diff] [blame] | 64 | static inline struct radeon_i2c_bus_rec radeon_lookup_i2c_gpio(struct radeon_device *rdev, |
| 65 | uint8_t id) |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 66 | { |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 67 | struct atom_context *ctx = rdev->mode_info.atom_context; |
Alex Deucher | 6a93cb2 | 2009-11-23 17:39:28 -0500 | [diff] [blame] | 68 | ATOM_GPIO_I2C_ASSIGMENT *gpio; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 69 | struct radeon_i2c_bus_rec i2c; |
| 70 | int index = GetIndexIntoMasterTable(DATA, GPIO_I2C_Info); |
| 71 | struct _ATOM_GPIO_I2C_INFO *i2c_info; |
| 72 | uint16_t data_offset; |
Alex Deucher | d3f420d | 2009-12-08 14:30:49 -0500 | [diff] [blame] | 73 | int i; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 74 | |
| 75 | memset(&i2c, 0, sizeof(struct radeon_i2c_bus_rec)); |
| 76 | i2c.valid = false; |
| 77 | |
Alex Deucher | a084e6e | 2010-03-18 01:04:01 -0400 | [diff] [blame] | 78 | if (atom_parse_data_header(ctx, index, NULL, NULL, NULL, &data_offset)) { |
| 79 | i2c_info = (struct _ATOM_GPIO_I2C_INFO *)(ctx->bios + data_offset); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 80 | |
Alex Deucher | a084e6e | 2010-03-18 01:04:01 -0400 | [diff] [blame] | 81 | for (i = 0; i < ATOM_MAX_SUPPORTED_DEVICE; i++) { |
| 82 | gpio = &i2c_info->asGPIO_Info[i]; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 83 | |
Alex Deucher | a084e6e | 2010-03-18 01:04:01 -0400 | [diff] [blame] | 84 | if (gpio->sucI2cId.ucAccess == id) { |
| 85 | i2c.mask_clk_reg = le16_to_cpu(gpio->usClkMaskRegisterIndex) * 4; |
| 86 | i2c.mask_data_reg = le16_to_cpu(gpio->usDataMaskRegisterIndex) * 4; |
| 87 | i2c.en_clk_reg = le16_to_cpu(gpio->usClkEnRegisterIndex) * 4; |
| 88 | i2c.en_data_reg = le16_to_cpu(gpio->usDataEnRegisterIndex) * 4; |
| 89 | i2c.y_clk_reg = le16_to_cpu(gpio->usClkY_RegisterIndex) * 4; |
| 90 | i2c.y_data_reg = le16_to_cpu(gpio->usDataY_RegisterIndex) * 4; |
| 91 | i2c.a_clk_reg = le16_to_cpu(gpio->usClkA_RegisterIndex) * 4; |
| 92 | i2c.a_data_reg = le16_to_cpu(gpio->usDataA_RegisterIndex) * 4; |
| 93 | i2c.mask_clk_mask = (1 << gpio->ucClkMaskShift); |
| 94 | i2c.mask_data_mask = (1 << gpio->ucDataMaskShift); |
| 95 | i2c.en_clk_mask = (1 << gpio->ucClkEnShift); |
| 96 | i2c.en_data_mask = (1 << gpio->ucDataEnShift); |
| 97 | i2c.y_clk_mask = (1 << gpio->ucClkY_Shift); |
| 98 | i2c.y_data_mask = (1 << gpio->ucDataY_Shift); |
| 99 | i2c.a_clk_mask = (1 << gpio->ucClkA_Shift); |
| 100 | i2c.a_data_mask = (1 << gpio->ucDataA_Shift); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 101 | |
Alex Deucher | a084e6e | 2010-03-18 01:04:01 -0400 | [diff] [blame] | 102 | if (gpio->sucI2cId.sbfAccess.bfHW_Capable) |
| 103 | i2c.hw_capable = true; |
| 104 | else |
| 105 | i2c.hw_capable = false; |
Alex Deucher | 6a93cb2 | 2009-11-23 17:39:28 -0500 | [diff] [blame] | 106 | |
Alex Deucher | a084e6e | 2010-03-18 01:04:01 -0400 | [diff] [blame] | 107 | if (gpio->sucI2cId.ucAccess == 0xa0) |
| 108 | i2c.mm_i2c = true; |
| 109 | else |
| 110 | i2c.mm_i2c = false; |
Alex Deucher | 6a93cb2 | 2009-11-23 17:39:28 -0500 | [diff] [blame] | 111 | |
Alex Deucher | a084e6e | 2010-03-18 01:04:01 -0400 | [diff] [blame] | 112 | i2c.i2c_id = gpio->sucI2cId.ucAccess; |
Alex Deucher | 6a93cb2 | 2009-11-23 17:39:28 -0500 | [diff] [blame] | 113 | |
Alex Deucher | a084e6e | 2010-03-18 01:04:01 -0400 | [diff] [blame] | 114 | i2c.valid = true; |
| 115 | break; |
| 116 | } |
Alex Deucher | d3f420d | 2009-12-08 14:30:49 -0500 | [diff] [blame] | 117 | } |
| 118 | } |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 119 | |
| 120 | return i2c; |
| 121 | } |
| 122 | |
Alex Deucher | eed45b3 | 2009-12-04 14:45:27 -0500 | [diff] [blame] | 123 | static inline struct radeon_gpio_rec radeon_lookup_gpio(struct radeon_device *rdev, |
| 124 | u8 id) |
| 125 | { |
| 126 | struct atom_context *ctx = rdev->mode_info.atom_context; |
| 127 | struct radeon_gpio_rec gpio; |
| 128 | int index = GetIndexIntoMasterTable(DATA, GPIO_Pin_LUT); |
| 129 | struct _ATOM_GPIO_PIN_LUT *gpio_info; |
| 130 | ATOM_GPIO_PIN_ASSIGNMENT *pin; |
| 131 | u16 data_offset, size; |
| 132 | int i, num_indices; |
| 133 | |
| 134 | memset(&gpio, 0, sizeof(struct radeon_gpio_rec)); |
| 135 | gpio.valid = false; |
| 136 | |
Alex Deucher | a084e6e | 2010-03-18 01:04:01 -0400 | [diff] [blame] | 137 | if (atom_parse_data_header(ctx, index, &size, NULL, NULL, &data_offset)) { |
| 138 | gpio_info = (struct _ATOM_GPIO_PIN_LUT *)(ctx->bios + data_offset); |
Alex Deucher | eed45b3 | 2009-12-04 14:45:27 -0500 | [diff] [blame] | 139 | |
Alex Deucher | a084e6e | 2010-03-18 01:04:01 -0400 | [diff] [blame] | 140 | num_indices = (size - sizeof(ATOM_COMMON_TABLE_HEADER)) / |
| 141 | sizeof(ATOM_GPIO_PIN_ASSIGNMENT); |
Alex Deucher | eed45b3 | 2009-12-04 14:45:27 -0500 | [diff] [blame] | 142 | |
Alex Deucher | a084e6e | 2010-03-18 01:04:01 -0400 | [diff] [blame] | 143 | for (i = 0; i < num_indices; i++) { |
| 144 | pin = &gpio_info->asGPIO_Pin[i]; |
| 145 | if (id == pin->ucGPIO_ID) { |
| 146 | gpio.id = pin->ucGPIO_ID; |
| 147 | gpio.reg = pin->usGpioPin_AIndex * 4; |
| 148 | gpio.mask = (1 << pin->ucGpioPinBitShift); |
| 149 | gpio.valid = true; |
| 150 | break; |
| 151 | } |
Alex Deucher | eed45b3 | 2009-12-04 14:45:27 -0500 | [diff] [blame] | 152 | } |
| 153 | } |
| 154 | |
| 155 | return gpio; |
| 156 | } |
| 157 | |
| 158 | static struct radeon_hpd radeon_atom_get_hpd_info_from_gpio(struct radeon_device *rdev, |
| 159 | struct radeon_gpio_rec *gpio) |
| 160 | { |
| 161 | struct radeon_hpd hpd; |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 162 | u32 reg; |
| 163 | |
| 164 | if (ASIC_IS_DCE4(rdev)) |
| 165 | reg = EVERGREEN_DC_GPIO_HPD_A; |
| 166 | else |
| 167 | reg = AVIVO_DC_GPIO_HPD_A; |
| 168 | |
Alex Deucher | eed45b3 | 2009-12-04 14:45:27 -0500 | [diff] [blame] | 169 | hpd.gpio = *gpio; |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 170 | if (gpio->reg == reg) { |
Alex Deucher | eed45b3 | 2009-12-04 14:45:27 -0500 | [diff] [blame] | 171 | switch(gpio->mask) { |
| 172 | case (1 << 0): |
| 173 | hpd.hpd = RADEON_HPD_1; |
| 174 | break; |
| 175 | case (1 << 8): |
| 176 | hpd.hpd = RADEON_HPD_2; |
| 177 | break; |
| 178 | case (1 << 16): |
| 179 | hpd.hpd = RADEON_HPD_3; |
| 180 | break; |
| 181 | case (1 << 24): |
| 182 | hpd.hpd = RADEON_HPD_4; |
| 183 | break; |
| 184 | case (1 << 26): |
| 185 | hpd.hpd = RADEON_HPD_5; |
| 186 | break; |
| 187 | case (1 << 28): |
| 188 | hpd.hpd = RADEON_HPD_6; |
| 189 | break; |
| 190 | default: |
| 191 | hpd.hpd = RADEON_HPD_NONE; |
| 192 | break; |
| 193 | } |
| 194 | } else |
| 195 | hpd.hpd = RADEON_HPD_NONE; |
| 196 | return hpd; |
| 197 | } |
| 198 | |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 199 | static bool radeon_atom_apply_quirks(struct drm_device *dev, |
| 200 | uint32_t supported_device, |
| 201 | int *connector_type, |
Alex Deucher | 848577e | 2009-07-08 16:15:30 -0400 | [diff] [blame] | 202 | struct radeon_i2c_bus_rec *i2c_bus, |
Alex Deucher | eed45b3 | 2009-12-04 14:45:27 -0500 | [diff] [blame] | 203 | uint16_t *line_mux, |
| 204 | struct radeon_hpd *hpd) |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 205 | { |
| 206 | |
| 207 | /* Asus M2A-VM HDMI board lists the DVI port as HDMI */ |
| 208 | if ((dev->pdev->device == 0x791e) && |
| 209 | (dev->pdev->subsystem_vendor == 0x1043) && |
| 210 | (dev->pdev->subsystem_device == 0x826d)) { |
| 211 | if ((*connector_type == DRM_MODE_CONNECTOR_HDMIA) && |
| 212 | (supported_device == ATOM_DEVICE_DFP3_SUPPORT)) |
| 213 | *connector_type = DRM_MODE_CONNECTOR_DVID; |
| 214 | } |
| 215 | |
Alex Deucher | c86a903 | 2010-02-18 14:14:58 -0500 | [diff] [blame] | 216 | /* Asrock RS600 board lists the DVI port as HDMI */ |
| 217 | if ((dev->pdev->device == 0x7941) && |
| 218 | (dev->pdev->subsystem_vendor == 0x1849) && |
| 219 | (dev->pdev->subsystem_device == 0x7941)) { |
| 220 | if ((*connector_type == DRM_MODE_CONNECTOR_HDMIA) && |
| 221 | (supported_device == ATOM_DEVICE_DFP3_SUPPORT)) |
| 222 | *connector_type = DRM_MODE_CONNECTOR_DVID; |
| 223 | } |
| 224 | |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 225 | /* a-bit f-i90hd - ciaranm on #radeonhd - this board has no DVI */ |
| 226 | if ((dev->pdev->device == 0x7941) && |
| 227 | (dev->pdev->subsystem_vendor == 0x147b) && |
| 228 | (dev->pdev->subsystem_device == 0x2412)) { |
| 229 | if (*connector_type == DRM_MODE_CONNECTOR_DVII) |
| 230 | return false; |
| 231 | } |
| 232 | |
| 233 | /* Falcon NW laptop lists vga ddc line for LVDS */ |
| 234 | if ((dev->pdev->device == 0x5653) && |
| 235 | (dev->pdev->subsystem_vendor == 0x1462) && |
| 236 | (dev->pdev->subsystem_device == 0x0291)) { |
Alex Deucher | 848577e | 2009-07-08 16:15:30 -0400 | [diff] [blame] | 237 | if (*connector_type == DRM_MODE_CONNECTOR_LVDS) { |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 238 | i2c_bus->valid = false; |
Alex Deucher | 848577e | 2009-07-08 16:15:30 -0400 | [diff] [blame] | 239 | *line_mux = 53; |
| 240 | } |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 241 | } |
| 242 | |
Alex Deucher | 4e3f9b7 | 2009-12-01 14:49:50 -0500 | [diff] [blame] | 243 | /* HIS X1300 is DVI+VGA, not DVI+DVI */ |
| 244 | if ((dev->pdev->device == 0x7146) && |
| 245 | (dev->pdev->subsystem_vendor == 0x17af) && |
| 246 | (dev->pdev->subsystem_device == 0x2058)) { |
| 247 | if (supported_device == ATOM_DEVICE_DFP1_SUPPORT) |
| 248 | return false; |
| 249 | } |
| 250 | |
Dave Airlie | aa1a750 | 2009-12-04 11:51:34 +1000 | [diff] [blame] | 251 | /* Gigabyte X1300 is DVI+VGA, not DVI+DVI */ |
| 252 | if ((dev->pdev->device == 0x7142) && |
| 253 | (dev->pdev->subsystem_vendor == 0x1458) && |
| 254 | (dev->pdev->subsystem_device == 0x2134)) { |
| 255 | if (supported_device == ATOM_DEVICE_DFP1_SUPPORT) |
| 256 | return false; |
| 257 | } |
| 258 | |
| 259 | |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 260 | /* Funky macbooks */ |
| 261 | if ((dev->pdev->device == 0x71C5) && |
| 262 | (dev->pdev->subsystem_vendor == 0x106b) && |
| 263 | (dev->pdev->subsystem_device == 0x0080)) { |
| 264 | if ((supported_device == ATOM_DEVICE_CRT1_SUPPORT) || |
| 265 | (supported_device == ATOM_DEVICE_DFP2_SUPPORT)) |
| 266 | return false; |
Alex Deucher | e1e8a5d | 2010-03-26 17:14:37 -0400 | [diff] [blame^] | 267 | if (supported_device == ATOM_DEVICE_CRT2_SUPPORT) |
| 268 | *line_mux = 0x90; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 269 | } |
| 270 | |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 271 | /* ASUS HD 3600 XT board lists the DVI port as HDMI */ |
| 272 | if ((dev->pdev->device == 0x9598) && |
| 273 | (dev->pdev->subsystem_vendor == 0x1043) && |
| 274 | (dev->pdev->subsystem_device == 0x01da)) { |
Alex Deucher | 705af9c | 2009-09-10 16:31:13 -0400 | [diff] [blame] | 275 | if (*connector_type == DRM_MODE_CONNECTOR_HDMIA) { |
Alex Deucher | d42571e | 2009-09-11 15:27:14 -0400 | [diff] [blame] | 276 | *connector_type = DRM_MODE_CONNECTOR_DVII; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 277 | } |
| 278 | } |
| 279 | |
Alex Deucher | 705af9c | 2009-09-10 16:31:13 -0400 | [diff] [blame] | 280 | /* ASUS HD 3450 board lists the DVI port as HDMI */ |
| 281 | if ((dev->pdev->device == 0x95C5) && |
| 282 | (dev->pdev->subsystem_vendor == 0x1043) && |
| 283 | (dev->pdev->subsystem_device == 0x01e2)) { |
| 284 | if (*connector_type == DRM_MODE_CONNECTOR_HDMIA) { |
Alex Deucher | d42571e | 2009-09-11 15:27:14 -0400 | [diff] [blame] | 285 | *connector_type = DRM_MODE_CONNECTOR_DVII; |
Alex Deucher | 705af9c | 2009-09-10 16:31:13 -0400 | [diff] [blame] | 286 | } |
| 287 | } |
| 288 | |
| 289 | /* some BIOSes seem to report DAC on HDMI - usually this is a board with |
| 290 | * HDMI + VGA reporting as HDMI |
| 291 | */ |
| 292 | if (*connector_type == DRM_MODE_CONNECTOR_HDMIA) { |
| 293 | if (supported_device & (ATOM_DEVICE_CRT_SUPPORT)) { |
| 294 | *connector_type = DRM_MODE_CONNECTOR_VGA; |
| 295 | *line_mux = 0; |
| 296 | } |
| 297 | } |
| 298 | |
Alex Deucher | 3e5f8ff | 2009-11-17 17:12:10 -0500 | [diff] [blame] | 299 | /* Acer laptop reports DVI-D as DVI-I */ |
| 300 | if ((dev->pdev->device == 0x95c4) && |
| 301 | (dev->pdev->subsystem_vendor == 0x1025) && |
| 302 | (dev->pdev->subsystem_device == 0x013c)) { |
| 303 | if ((*connector_type == DRM_MODE_CONNECTOR_DVII) && |
| 304 | (supported_device == ATOM_DEVICE_DFP1_SUPPORT)) |
| 305 | *connector_type = DRM_MODE_CONNECTOR_DVID; |
| 306 | } |
| 307 | |
Dave Airlie | efa8450 | 2010-02-09 09:06:00 +1000 | [diff] [blame] | 308 | /* XFX Pine Group device rv730 reports no VGA DDC lines |
| 309 | * even though they are wired up to record 0x93 |
| 310 | */ |
| 311 | if ((dev->pdev->device == 0x9498) && |
| 312 | (dev->pdev->subsystem_vendor == 0x1682) && |
| 313 | (dev->pdev->subsystem_device == 0x2452)) { |
| 314 | struct radeon_device *rdev = dev->dev_private; |
| 315 | *i2c_bus = radeon_lookup_i2c_gpio(rdev, 0x93); |
| 316 | } |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 317 | return true; |
| 318 | } |
| 319 | |
| 320 | const int supported_devices_connector_convert[] = { |
| 321 | DRM_MODE_CONNECTOR_Unknown, |
| 322 | DRM_MODE_CONNECTOR_VGA, |
| 323 | DRM_MODE_CONNECTOR_DVII, |
| 324 | DRM_MODE_CONNECTOR_DVID, |
| 325 | DRM_MODE_CONNECTOR_DVIA, |
| 326 | DRM_MODE_CONNECTOR_SVIDEO, |
| 327 | DRM_MODE_CONNECTOR_Composite, |
| 328 | DRM_MODE_CONNECTOR_LVDS, |
| 329 | DRM_MODE_CONNECTOR_Unknown, |
| 330 | DRM_MODE_CONNECTOR_Unknown, |
| 331 | DRM_MODE_CONNECTOR_HDMIA, |
| 332 | DRM_MODE_CONNECTOR_HDMIB, |
| 333 | DRM_MODE_CONNECTOR_Unknown, |
| 334 | DRM_MODE_CONNECTOR_Unknown, |
| 335 | DRM_MODE_CONNECTOR_9PinDIN, |
| 336 | DRM_MODE_CONNECTOR_DisplayPort |
| 337 | }; |
| 338 | |
Alex Deucher | b75fad0 | 2009-11-05 13:16:01 -0500 | [diff] [blame] | 339 | const uint16_t supported_devices_connector_object_id_convert[] = { |
| 340 | CONNECTOR_OBJECT_ID_NONE, |
| 341 | CONNECTOR_OBJECT_ID_VGA, |
| 342 | CONNECTOR_OBJECT_ID_DUAL_LINK_DVI_I, /* not all boards support DL */ |
| 343 | CONNECTOR_OBJECT_ID_DUAL_LINK_DVI_D, /* not all boards support DL */ |
| 344 | CONNECTOR_OBJECT_ID_VGA, /* technically DVI-A */ |
| 345 | CONNECTOR_OBJECT_ID_COMPOSITE, |
| 346 | CONNECTOR_OBJECT_ID_SVIDEO, |
| 347 | CONNECTOR_OBJECT_ID_LVDS, |
| 348 | CONNECTOR_OBJECT_ID_9PIN_DIN, |
| 349 | CONNECTOR_OBJECT_ID_9PIN_DIN, |
| 350 | CONNECTOR_OBJECT_ID_DISPLAYPORT, |
| 351 | CONNECTOR_OBJECT_ID_HDMI_TYPE_A, |
| 352 | CONNECTOR_OBJECT_ID_HDMI_TYPE_B, |
| 353 | CONNECTOR_OBJECT_ID_SVIDEO |
| 354 | }; |
| 355 | |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 356 | const int object_connector_convert[] = { |
| 357 | DRM_MODE_CONNECTOR_Unknown, |
| 358 | DRM_MODE_CONNECTOR_DVII, |
| 359 | DRM_MODE_CONNECTOR_DVII, |
| 360 | DRM_MODE_CONNECTOR_DVID, |
| 361 | DRM_MODE_CONNECTOR_DVID, |
| 362 | DRM_MODE_CONNECTOR_VGA, |
| 363 | DRM_MODE_CONNECTOR_Composite, |
| 364 | DRM_MODE_CONNECTOR_SVIDEO, |
| 365 | DRM_MODE_CONNECTOR_Unknown, |
Alex Deucher | 705af9c | 2009-09-10 16:31:13 -0400 | [diff] [blame] | 366 | DRM_MODE_CONNECTOR_Unknown, |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 367 | DRM_MODE_CONNECTOR_9PinDIN, |
| 368 | DRM_MODE_CONNECTOR_Unknown, |
| 369 | DRM_MODE_CONNECTOR_HDMIA, |
| 370 | DRM_MODE_CONNECTOR_HDMIB, |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 371 | DRM_MODE_CONNECTOR_LVDS, |
| 372 | DRM_MODE_CONNECTOR_9PinDIN, |
| 373 | DRM_MODE_CONNECTOR_Unknown, |
| 374 | DRM_MODE_CONNECTOR_Unknown, |
| 375 | DRM_MODE_CONNECTOR_Unknown, |
Alex Deucher | 196c58d | 2010-01-07 14:22:32 -0500 | [diff] [blame] | 376 | DRM_MODE_CONNECTOR_DisplayPort, |
| 377 | DRM_MODE_CONNECTOR_eDP, |
| 378 | DRM_MODE_CONNECTOR_Unknown |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 379 | }; |
| 380 | |
| 381 | bool radeon_get_atom_connector_info_from_object_table(struct drm_device *dev) |
| 382 | { |
| 383 | struct radeon_device *rdev = dev->dev_private; |
| 384 | struct radeon_mode_info *mode_info = &rdev->mode_info; |
| 385 | struct atom_context *ctx = mode_info->atom_context; |
| 386 | int index = GetIndexIntoMasterTable(DATA, Object_Header); |
Alex Deucher | eed45b3 | 2009-12-04 14:45:27 -0500 | [diff] [blame] | 387 | u16 size, data_offset; |
| 388 | u8 frev, crev; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 389 | ATOM_CONNECTOR_OBJECT_TABLE *con_obj; |
| 390 | ATOM_DISPLAY_OBJECT_PATH_TABLE *path_obj; |
| 391 | ATOM_OBJECT_HEADER *obj_header; |
| 392 | int i, j, path_size, device_support; |
| 393 | int connector_type; |
Alex Deucher | eed45b3 | 2009-12-04 14:45:27 -0500 | [diff] [blame] | 394 | u16 igp_lane_info, conn_id, connector_object_id; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 395 | bool linkb; |
| 396 | struct radeon_i2c_bus_rec ddc_bus; |
Alex Deucher | eed45b3 | 2009-12-04 14:45:27 -0500 | [diff] [blame] | 397 | struct radeon_gpio_rec gpio; |
| 398 | struct radeon_hpd hpd; |
| 399 | |
Alex Deucher | a084e6e | 2010-03-18 01:04:01 -0400 | [diff] [blame] | 400 | if (!atom_parse_data_header(ctx, index, &size, &frev, &crev, &data_offset)) |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 401 | return false; |
| 402 | |
| 403 | if (crev < 2) |
| 404 | return false; |
| 405 | |
| 406 | obj_header = (ATOM_OBJECT_HEADER *) (ctx->bios + data_offset); |
| 407 | path_obj = (ATOM_DISPLAY_OBJECT_PATH_TABLE *) |
| 408 | (ctx->bios + data_offset + |
| 409 | le16_to_cpu(obj_header->usDisplayPathTableOffset)); |
| 410 | con_obj = (ATOM_CONNECTOR_OBJECT_TABLE *) |
| 411 | (ctx->bios + data_offset + |
| 412 | le16_to_cpu(obj_header->usConnectorObjectTableOffset)); |
| 413 | device_support = le16_to_cpu(obj_header->usDeviceSupport); |
| 414 | |
| 415 | path_size = 0; |
| 416 | for (i = 0; i < path_obj->ucNumOfDispPath; i++) { |
| 417 | uint8_t *addr = (uint8_t *) path_obj->asDispPath; |
| 418 | ATOM_DISPLAY_OBJECT_PATH *path; |
| 419 | addr += path_size; |
| 420 | path = (ATOM_DISPLAY_OBJECT_PATH *) addr; |
| 421 | path_size += le16_to_cpu(path->usSize); |
| 422 | linkb = false; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 423 | if (device_support & le16_to_cpu(path->usDeviceTag)) { |
| 424 | uint8_t con_obj_id, con_obj_num, con_obj_type; |
| 425 | |
| 426 | con_obj_id = |
| 427 | (le16_to_cpu(path->usConnObjectId) & OBJECT_ID_MASK) |
| 428 | >> OBJECT_ID_SHIFT; |
| 429 | con_obj_num = |
| 430 | (le16_to_cpu(path->usConnObjectId) & ENUM_ID_MASK) |
| 431 | >> ENUM_ID_SHIFT; |
| 432 | con_obj_type = |
| 433 | (le16_to_cpu(path->usConnObjectId) & |
| 434 | OBJECT_TYPE_MASK) >> OBJECT_TYPE_SHIFT; |
| 435 | |
Dave Airlie | 4bbd497 | 2009-09-25 08:56:12 +1000 | [diff] [blame] | 436 | /* TODO CV support */ |
| 437 | if (le16_to_cpu(path->usDeviceTag) == |
| 438 | ATOM_DEVICE_CV_SUPPORT) |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 439 | continue; |
| 440 | |
Alex Deucher | ee59f2b | 2009-11-05 13:11:46 -0500 | [diff] [blame] | 441 | /* IGP chips */ |
| 442 | if ((rdev->flags & RADEON_IS_IGP) && |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 443 | (con_obj_id == |
| 444 | CONNECTOR_OBJECT_ID_PCIE_CONNECTOR)) { |
| 445 | uint16_t igp_offset = 0; |
| 446 | ATOM_INTEGRATED_SYSTEM_INFO_V2 *igp_obj; |
| 447 | |
| 448 | index = |
| 449 | GetIndexIntoMasterTable(DATA, |
| 450 | IntegratedSystemInfo); |
| 451 | |
Alex Deucher | a084e6e | 2010-03-18 01:04:01 -0400 | [diff] [blame] | 452 | if (atom_parse_data_header(ctx, index, &size, &frev, |
| 453 | &crev, &igp_offset)) { |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 454 | |
Alex Deucher | a084e6e | 2010-03-18 01:04:01 -0400 | [diff] [blame] | 455 | if (crev >= 2) { |
| 456 | igp_obj = |
| 457 | (ATOM_INTEGRATED_SYSTEM_INFO_V2 |
| 458 | *) (ctx->bios + igp_offset); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 459 | |
Alex Deucher | a084e6e | 2010-03-18 01:04:01 -0400 | [diff] [blame] | 460 | if (igp_obj) { |
| 461 | uint32_t slot_config, ct; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 462 | |
Alex Deucher | a084e6e | 2010-03-18 01:04:01 -0400 | [diff] [blame] | 463 | if (con_obj_num == 1) |
| 464 | slot_config = |
| 465 | igp_obj-> |
| 466 | ulDDISlot1Config; |
| 467 | else |
| 468 | slot_config = |
| 469 | igp_obj-> |
| 470 | ulDDISlot2Config; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 471 | |
Alex Deucher | a084e6e | 2010-03-18 01:04:01 -0400 | [diff] [blame] | 472 | ct = (slot_config >> 16) & 0xff; |
| 473 | connector_type = |
| 474 | object_connector_convert |
| 475 | [ct]; |
| 476 | connector_object_id = ct; |
| 477 | igp_lane_info = |
| 478 | slot_config & 0xffff; |
| 479 | } else |
| 480 | continue; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 481 | } else |
| 482 | continue; |
Alex Deucher | a084e6e | 2010-03-18 01:04:01 -0400 | [diff] [blame] | 483 | } else { |
| 484 | igp_lane_info = 0; |
| 485 | connector_type = |
| 486 | object_connector_convert[con_obj_id]; |
| 487 | connector_object_id = con_obj_id; |
| 488 | } |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 489 | } else { |
| 490 | igp_lane_info = 0; |
| 491 | connector_type = |
| 492 | object_connector_convert[con_obj_id]; |
Alex Deucher | b75fad0 | 2009-11-05 13:16:01 -0500 | [diff] [blame] | 493 | connector_object_id = con_obj_id; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 494 | } |
| 495 | |
| 496 | if (connector_type == DRM_MODE_CONNECTOR_Unknown) |
| 497 | continue; |
| 498 | |
| 499 | for (j = 0; j < ((le16_to_cpu(path->usSize) - 8) / 2); |
| 500 | j++) { |
| 501 | uint8_t enc_obj_id, enc_obj_num, enc_obj_type; |
| 502 | |
| 503 | enc_obj_id = |
| 504 | (le16_to_cpu(path->usGraphicObjIds[j]) & |
| 505 | OBJECT_ID_MASK) >> OBJECT_ID_SHIFT; |
| 506 | enc_obj_num = |
| 507 | (le16_to_cpu(path->usGraphicObjIds[j]) & |
| 508 | ENUM_ID_MASK) >> ENUM_ID_SHIFT; |
| 509 | enc_obj_type = |
| 510 | (le16_to_cpu(path->usGraphicObjIds[j]) & |
| 511 | OBJECT_TYPE_MASK) >> OBJECT_TYPE_SHIFT; |
| 512 | |
| 513 | /* FIXME: add support for router objects */ |
| 514 | if (enc_obj_type == GRAPH_OBJECT_TYPE_ENCODER) { |
| 515 | if (enc_obj_num == 2) |
| 516 | linkb = true; |
| 517 | else |
| 518 | linkb = false; |
| 519 | |
| 520 | radeon_add_atom_encoder(dev, |
| 521 | enc_obj_id, |
| 522 | le16_to_cpu |
| 523 | (path-> |
| 524 | usDeviceTag)); |
| 525 | |
| 526 | } |
| 527 | } |
| 528 | |
Alex Deucher | eed45b3 | 2009-12-04 14:45:27 -0500 | [diff] [blame] | 529 | /* look up gpio for ddc, hpd */ |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 530 | if ((le16_to_cpu(path->usDeviceTag) & |
Alex Deucher | eed45b3 | 2009-12-04 14:45:27 -0500 | [diff] [blame] | 531 | (ATOM_DEVICE_TV_SUPPORT | ATOM_DEVICE_CV_SUPPORT)) == 0) { |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 532 | for (j = 0; j < con_obj->ucNumberOfObjects; j++) { |
| 533 | if (le16_to_cpu(path->usConnObjectId) == |
| 534 | le16_to_cpu(con_obj->asObjects[j]. |
| 535 | usObjectID)) { |
| 536 | ATOM_COMMON_RECORD_HEADER |
| 537 | *record = |
| 538 | (ATOM_COMMON_RECORD_HEADER |
| 539 | *) |
| 540 | (ctx->bios + data_offset + |
| 541 | le16_to_cpu(con_obj-> |
| 542 | asObjects[j]. |
| 543 | usRecordOffset)); |
| 544 | ATOM_I2C_RECORD *i2c_record; |
Alex Deucher | eed45b3 | 2009-12-04 14:45:27 -0500 | [diff] [blame] | 545 | ATOM_HPD_INT_RECORD *hpd_record; |
Alex Deucher | d3f420d | 2009-12-08 14:30:49 -0500 | [diff] [blame] | 546 | ATOM_I2C_ID_CONFIG_ACCESS *i2c_config; |
Alex Deucher | eed45b3 | 2009-12-04 14:45:27 -0500 | [diff] [blame] | 547 | hpd.hpd = RADEON_HPD_NONE; |
Alex Deucher | 6a93cb2 | 2009-11-23 17:39:28 -0500 | [diff] [blame] | 548 | |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 549 | while (record->ucRecordType > 0 |
| 550 | && record-> |
| 551 | ucRecordType <= |
| 552 | ATOM_MAX_OBJECT_RECORD_NUMBER) { |
Alex Deucher | eed45b3 | 2009-12-04 14:45:27 -0500 | [diff] [blame] | 553 | switch (record->ucRecordType) { |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 554 | case ATOM_I2C_RECORD_TYPE: |
| 555 | i2c_record = |
Alex Deucher | eed45b3 | 2009-12-04 14:45:27 -0500 | [diff] [blame] | 556 | (ATOM_I2C_RECORD *) |
| 557 | record; |
Alex Deucher | d3f420d | 2009-12-08 14:30:49 -0500 | [diff] [blame] | 558 | i2c_config = |
| 559 | (ATOM_I2C_ID_CONFIG_ACCESS *) |
| 560 | &i2c_record->sucI2cId; |
Alex Deucher | eed45b3 | 2009-12-04 14:45:27 -0500 | [diff] [blame] | 561 | ddc_bus = radeon_lookup_i2c_gpio(rdev, |
Alex Deucher | d3f420d | 2009-12-08 14:30:49 -0500 | [diff] [blame] | 562 | i2c_config-> |
| 563 | ucAccess); |
Alex Deucher | eed45b3 | 2009-12-04 14:45:27 -0500 | [diff] [blame] | 564 | break; |
| 565 | case ATOM_HPD_INT_RECORD_TYPE: |
| 566 | hpd_record = |
| 567 | (ATOM_HPD_INT_RECORD *) |
| 568 | record; |
| 569 | gpio = radeon_lookup_gpio(rdev, |
| 570 | hpd_record->ucHPDIntGPIOID); |
| 571 | hpd = radeon_atom_get_hpd_info_from_gpio(rdev, &gpio); |
| 572 | hpd.plugged_state = hpd_record->ucPlugged_PinState; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 573 | break; |
| 574 | } |
| 575 | record = |
| 576 | (ATOM_COMMON_RECORD_HEADER |
| 577 | *) ((char *)record |
| 578 | + |
| 579 | record-> |
| 580 | ucRecordSize); |
| 581 | } |
| 582 | break; |
| 583 | } |
| 584 | } |
Alex Deucher | eed45b3 | 2009-12-04 14:45:27 -0500 | [diff] [blame] | 585 | } else { |
| 586 | hpd.hpd = RADEON_HPD_NONE; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 587 | ddc_bus.valid = false; |
Alex Deucher | eed45b3 | 2009-12-04 14:45:27 -0500 | [diff] [blame] | 588 | } |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 589 | |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 590 | /* needed for aux chan transactions */ |
| 591 | ddc_bus.hpd_id = hpd.hpd ? (hpd.hpd - 1) : 0; |
| 592 | |
Alex Deucher | 705af9c | 2009-09-10 16:31:13 -0400 | [diff] [blame] | 593 | conn_id = le16_to_cpu(path->usConnObjectId); |
| 594 | |
| 595 | if (!radeon_atom_apply_quirks |
| 596 | (dev, le16_to_cpu(path->usDeviceTag), &connector_type, |
Alex Deucher | eed45b3 | 2009-12-04 14:45:27 -0500 | [diff] [blame] | 597 | &ddc_bus, &conn_id, &hpd)) |
Alex Deucher | 705af9c | 2009-09-10 16:31:13 -0400 | [diff] [blame] | 598 | continue; |
| 599 | |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 600 | radeon_add_atom_connector(dev, |
Alex Deucher | 705af9c | 2009-09-10 16:31:13 -0400 | [diff] [blame] | 601 | conn_id, |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 602 | le16_to_cpu(path-> |
| 603 | usDeviceTag), |
| 604 | connector_type, &ddc_bus, |
Alex Deucher | b75fad0 | 2009-11-05 13:16:01 -0500 | [diff] [blame] | 605 | linkb, igp_lane_info, |
Alex Deucher | eed45b3 | 2009-12-04 14:45:27 -0500 | [diff] [blame] | 606 | connector_object_id, |
| 607 | &hpd); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 608 | |
| 609 | } |
| 610 | } |
| 611 | |
| 612 | radeon_link_encoder_connector(dev); |
| 613 | |
| 614 | return true; |
| 615 | } |
| 616 | |
Alex Deucher | b75fad0 | 2009-11-05 13:16:01 -0500 | [diff] [blame] | 617 | static uint16_t atombios_get_connector_object_id(struct drm_device *dev, |
| 618 | int connector_type, |
| 619 | uint16_t devices) |
| 620 | { |
| 621 | struct radeon_device *rdev = dev->dev_private; |
| 622 | |
| 623 | if (rdev->flags & RADEON_IS_IGP) { |
| 624 | return supported_devices_connector_object_id_convert |
| 625 | [connector_type]; |
| 626 | } else if (((connector_type == DRM_MODE_CONNECTOR_DVII) || |
| 627 | (connector_type == DRM_MODE_CONNECTOR_DVID)) && |
| 628 | (devices & ATOM_DEVICE_DFP2_SUPPORT)) { |
| 629 | struct radeon_mode_info *mode_info = &rdev->mode_info; |
| 630 | struct atom_context *ctx = mode_info->atom_context; |
| 631 | int index = GetIndexIntoMasterTable(DATA, XTMDS_Info); |
| 632 | uint16_t size, data_offset; |
| 633 | uint8_t frev, crev; |
| 634 | ATOM_XTMDS_INFO *xtmds; |
| 635 | |
Alex Deucher | a084e6e | 2010-03-18 01:04:01 -0400 | [diff] [blame] | 636 | if (atom_parse_data_header(ctx, index, &size, &frev, &crev, &data_offset)) { |
| 637 | xtmds = (ATOM_XTMDS_INFO *)(ctx->bios + data_offset); |
Alex Deucher | b75fad0 | 2009-11-05 13:16:01 -0500 | [diff] [blame] | 638 | |
Alex Deucher | a084e6e | 2010-03-18 01:04:01 -0400 | [diff] [blame] | 639 | if (xtmds->ucSupportedLink & ATOM_XTMDS_SUPPORTED_DUALLINK) { |
| 640 | if (connector_type == DRM_MODE_CONNECTOR_DVII) |
| 641 | return CONNECTOR_OBJECT_ID_DUAL_LINK_DVI_I; |
| 642 | else |
| 643 | return CONNECTOR_OBJECT_ID_DUAL_LINK_DVI_D; |
| 644 | } else { |
| 645 | if (connector_type == DRM_MODE_CONNECTOR_DVII) |
| 646 | return CONNECTOR_OBJECT_ID_SINGLE_LINK_DVI_I; |
| 647 | else |
| 648 | return CONNECTOR_OBJECT_ID_SINGLE_LINK_DVI_D; |
| 649 | } |
| 650 | } else |
| 651 | return supported_devices_connector_object_id_convert |
| 652 | [connector_type]; |
Alex Deucher | b75fad0 | 2009-11-05 13:16:01 -0500 | [diff] [blame] | 653 | } else { |
| 654 | return supported_devices_connector_object_id_convert |
| 655 | [connector_type]; |
| 656 | } |
| 657 | } |
| 658 | |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 659 | struct bios_connector { |
| 660 | bool valid; |
Alex Deucher | 705af9c | 2009-09-10 16:31:13 -0400 | [diff] [blame] | 661 | uint16_t line_mux; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 662 | uint16_t devices; |
| 663 | int connector_type; |
| 664 | struct radeon_i2c_bus_rec ddc_bus; |
Alex Deucher | eed45b3 | 2009-12-04 14:45:27 -0500 | [diff] [blame] | 665 | struct radeon_hpd hpd; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 666 | }; |
| 667 | |
| 668 | bool radeon_get_atom_connector_info_from_supported_devices_table(struct |
| 669 | drm_device |
| 670 | *dev) |
| 671 | { |
| 672 | struct radeon_device *rdev = dev->dev_private; |
| 673 | struct radeon_mode_info *mode_info = &rdev->mode_info; |
| 674 | struct atom_context *ctx = mode_info->atom_context; |
| 675 | int index = GetIndexIntoMasterTable(DATA, SupportedDevicesInfo); |
| 676 | uint16_t size, data_offset; |
| 677 | uint8_t frev, crev; |
| 678 | uint16_t device_support; |
| 679 | uint8_t dac; |
| 680 | union atom_supported_devices *supported_devices; |
Alex Deucher | eed45b3 | 2009-12-04 14:45:27 -0500 | [diff] [blame] | 681 | int i, j, max_device; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 682 | struct bios_connector bios_connectors[ATOM_MAX_SUPPORTED_DEVICE]; |
| 683 | |
Alex Deucher | a084e6e | 2010-03-18 01:04:01 -0400 | [diff] [blame] | 684 | if (!atom_parse_data_header(ctx, index, &size, &frev, &crev, &data_offset)) |
| 685 | return false; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 686 | |
| 687 | supported_devices = |
| 688 | (union atom_supported_devices *)(ctx->bios + data_offset); |
| 689 | |
| 690 | device_support = le16_to_cpu(supported_devices->info.usDeviceSupport); |
| 691 | |
Alex Deucher | eed45b3 | 2009-12-04 14:45:27 -0500 | [diff] [blame] | 692 | if (frev > 1) |
| 693 | max_device = ATOM_MAX_SUPPORTED_DEVICE; |
| 694 | else |
| 695 | max_device = ATOM_MAX_SUPPORTED_DEVICE_INFO; |
| 696 | |
| 697 | for (i = 0; i < max_device; i++) { |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 698 | ATOM_CONNECTOR_INFO_I2C ci = |
| 699 | supported_devices->info.asConnInfo[i]; |
| 700 | |
| 701 | bios_connectors[i].valid = false; |
| 702 | |
| 703 | if (!(device_support & (1 << i))) { |
| 704 | continue; |
| 705 | } |
| 706 | |
| 707 | if (i == ATOM_DEVICE_CV_INDEX) { |
| 708 | DRM_DEBUG("Skipping Component Video\n"); |
| 709 | continue; |
| 710 | } |
| 711 | |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 712 | bios_connectors[i].connector_type = |
| 713 | supported_devices_connector_convert[ci.sucConnectorInfo. |
| 714 | sbfAccess. |
| 715 | bfConnectorType]; |
| 716 | |
| 717 | if (bios_connectors[i].connector_type == |
| 718 | DRM_MODE_CONNECTOR_Unknown) |
| 719 | continue; |
| 720 | |
| 721 | dac = ci.sucConnectorInfo.sbfAccess.bfAssociatedDAC; |
| 722 | |
Alex Deucher | d3f420d | 2009-12-08 14:30:49 -0500 | [diff] [blame] | 723 | bios_connectors[i].line_mux = |
| 724 | ci.sucI2cId.ucAccess; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 725 | |
| 726 | /* give tv unique connector ids */ |
| 727 | if (i == ATOM_DEVICE_TV1_INDEX) { |
| 728 | bios_connectors[i].ddc_bus.valid = false; |
| 729 | bios_connectors[i].line_mux = 50; |
| 730 | } else if (i == ATOM_DEVICE_TV2_INDEX) { |
| 731 | bios_connectors[i].ddc_bus.valid = false; |
| 732 | bios_connectors[i].line_mux = 51; |
| 733 | } else if (i == ATOM_DEVICE_CV_INDEX) { |
| 734 | bios_connectors[i].ddc_bus.valid = false; |
| 735 | bios_connectors[i].line_mux = 52; |
| 736 | } else |
| 737 | bios_connectors[i].ddc_bus = |
Alex Deucher | eed45b3 | 2009-12-04 14:45:27 -0500 | [diff] [blame] | 738 | radeon_lookup_i2c_gpio(rdev, |
| 739 | bios_connectors[i].line_mux); |
| 740 | |
| 741 | if ((crev > 1) && (frev > 1)) { |
| 742 | u8 isb = supported_devices->info_2d1.asIntSrcInfo[i].ucIntSrcBitmap; |
| 743 | switch (isb) { |
| 744 | case 0x4: |
| 745 | bios_connectors[i].hpd.hpd = RADEON_HPD_1; |
| 746 | break; |
| 747 | case 0xa: |
| 748 | bios_connectors[i].hpd.hpd = RADEON_HPD_2; |
| 749 | break; |
| 750 | default: |
| 751 | bios_connectors[i].hpd.hpd = RADEON_HPD_NONE; |
| 752 | break; |
| 753 | } |
| 754 | } else { |
| 755 | if (i == ATOM_DEVICE_DFP1_INDEX) |
| 756 | bios_connectors[i].hpd.hpd = RADEON_HPD_1; |
| 757 | else if (i == ATOM_DEVICE_DFP2_INDEX) |
| 758 | bios_connectors[i].hpd.hpd = RADEON_HPD_2; |
| 759 | else |
| 760 | bios_connectors[i].hpd.hpd = RADEON_HPD_NONE; |
| 761 | } |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 762 | |
| 763 | /* Always set the connector type to VGA for CRT1/CRT2. if they are |
| 764 | * shared with a DVI port, we'll pick up the DVI connector when we |
| 765 | * merge the outputs. Some bioses incorrectly list VGA ports as DVI. |
| 766 | */ |
| 767 | if (i == ATOM_DEVICE_CRT1_INDEX || i == ATOM_DEVICE_CRT2_INDEX) |
| 768 | bios_connectors[i].connector_type = |
| 769 | DRM_MODE_CONNECTOR_VGA; |
| 770 | |
| 771 | if (!radeon_atom_apply_quirks |
| 772 | (dev, (1 << i), &bios_connectors[i].connector_type, |
Alex Deucher | eed45b3 | 2009-12-04 14:45:27 -0500 | [diff] [blame] | 773 | &bios_connectors[i].ddc_bus, &bios_connectors[i].line_mux, |
| 774 | &bios_connectors[i].hpd)) |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 775 | continue; |
| 776 | |
| 777 | bios_connectors[i].valid = true; |
| 778 | bios_connectors[i].devices = (1 << i); |
| 779 | |
| 780 | if (ASIC_IS_AVIVO(rdev) || radeon_r4xx_atom) |
| 781 | radeon_add_atom_encoder(dev, |
| 782 | radeon_get_encoder_id(dev, |
| 783 | (1 << i), |
| 784 | dac), |
| 785 | (1 << i)); |
| 786 | else |
| 787 | radeon_add_legacy_encoder(dev, |
| 788 | radeon_get_encoder_id(dev, |
Alex Deucher | f56cd64 | 2009-12-18 11:28:22 -0500 | [diff] [blame] | 789 | (1 << i), |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 790 | dac), |
| 791 | (1 << i)); |
| 792 | } |
| 793 | |
| 794 | /* combine shared connectors */ |
Alex Deucher | eed45b3 | 2009-12-04 14:45:27 -0500 | [diff] [blame] | 795 | for (i = 0; i < max_device; i++) { |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 796 | if (bios_connectors[i].valid) { |
Alex Deucher | eed45b3 | 2009-12-04 14:45:27 -0500 | [diff] [blame] | 797 | for (j = 0; j < max_device; j++) { |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 798 | if (bios_connectors[j].valid && (i != j)) { |
| 799 | if (bios_connectors[i].line_mux == |
| 800 | bios_connectors[j].line_mux) { |
Alex Deucher | f56cd64 | 2009-12-18 11:28:22 -0500 | [diff] [blame] | 801 | /* make sure not to combine LVDS */ |
| 802 | if (bios_connectors[i].devices & (ATOM_DEVICE_LCD_SUPPORT)) { |
| 803 | bios_connectors[i].line_mux = 53; |
| 804 | bios_connectors[i].ddc_bus.valid = false; |
| 805 | continue; |
| 806 | } |
| 807 | if (bios_connectors[j].devices & (ATOM_DEVICE_LCD_SUPPORT)) { |
| 808 | bios_connectors[j].line_mux = 53; |
| 809 | bios_connectors[j].ddc_bus.valid = false; |
| 810 | continue; |
| 811 | } |
| 812 | /* combine analog and digital for DVI-I */ |
| 813 | if (((bios_connectors[i].devices & (ATOM_DEVICE_DFP_SUPPORT)) && |
| 814 | (bios_connectors[j].devices & (ATOM_DEVICE_CRT_SUPPORT))) || |
| 815 | ((bios_connectors[j].devices & (ATOM_DEVICE_DFP_SUPPORT)) && |
| 816 | (bios_connectors[i].devices & (ATOM_DEVICE_CRT_SUPPORT)))) { |
| 817 | bios_connectors[i].devices |= |
| 818 | bios_connectors[j].devices; |
| 819 | bios_connectors[i].connector_type = |
| 820 | DRM_MODE_CONNECTOR_DVII; |
| 821 | if (bios_connectors[j].devices & (ATOM_DEVICE_DFP_SUPPORT)) |
Alex Deucher | eed45b3 | 2009-12-04 14:45:27 -0500 | [diff] [blame] | 822 | bios_connectors[i].hpd = |
| 823 | bios_connectors[j].hpd; |
Alex Deucher | f56cd64 | 2009-12-18 11:28:22 -0500 | [diff] [blame] | 824 | bios_connectors[j].valid = false; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 825 | } |
| 826 | } |
| 827 | } |
| 828 | } |
| 829 | } |
| 830 | } |
| 831 | |
| 832 | /* add the connectors */ |
Alex Deucher | eed45b3 | 2009-12-04 14:45:27 -0500 | [diff] [blame] | 833 | for (i = 0; i < max_device; i++) { |
Alex Deucher | b75fad0 | 2009-11-05 13:16:01 -0500 | [diff] [blame] | 834 | if (bios_connectors[i].valid) { |
| 835 | uint16_t connector_object_id = |
| 836 | atombios_get_connector_object_id(dev, |
| 837 | bios_connectors[i].connector_type, |
| 838 | bios_connectors[i].devices); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 839 | radeon_add_atom_connector(dev, |
| 840 | bios_connectors[i].line_mux, |
| 841 | bios_connectors[i].devices, |
| 842 | bios_connectors[i]. |
| 843 | connector_type, |
| 844 | &bios_connectors[i].ddc_bus, |
Alex Deucher | b75fad0 | 2009-11-05 13:16:01 -0500 | [diff] [blame] | 845 | false, 0, |
Alex Deucher | eed45b3 | 2009-12-04 14:45:27 -0500 | [diff] [blame] | 846 | connector_object_id, |
| 847 | &bios_connectors[i].hpd); |
Alex Deucher | b75fad0 | 2009-11-05 13:16:01 -0500 | [diff] [blame] | 848 | } |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 849 | } |
| 850 | |
| 851 | radeon_link_encoder_connector(dev); |
| 852 | |
| 853 | return true; |
| 854 | } |
| 855 | |
| 856 | union firmware_info { |
| 857 | ATOM_FIRMWARE_INFO info; |
| 858 | ATOM_FIRMWARE_INFO_V1_2 info_12; |
| 859 | ATOM_FIRMWARE_INFO_V1_3 info_13; |
| 860 | ATOM_FIRMWARE_INFO_V1_4 info_14; |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 861 | ATOM_FIRMWARE_INFO_V2_1 info_21; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 862 | }; |
| 863 | |
| 864 | bool radeon_atom_get_clock_info(struct drm_device *dev) |
| 865 | { |
| 866 | struct radeon_device *rdev = dev->dev_private; |
| 867 | struct radeon_mode_info *mode_info = &rdev->mode_info; |
| 868 | int index = GetIndexIntoMasterTable(DATA, FirmwareInfo); |
| 869 | union firmware_info *firmware_info; |
| 870 | uint8_t frev, crev; |
| 871 | struct radeon_pll *p1pll = &rdev->clock.p1pll; |
| 872 | struct radeon_pll *p2pll = &rdev->clock.p2pll; |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 873 | struct radeon_pll *dcpll = &rdev->clock.dcpll; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 874 | struct radeon_pll *spll = &rdev->clock.spll; |
| 875 | struct radeon_pll *mpll = &rdev->clock.mpll; |
| 876 | uint16_t data_offset; |
| 877 | |
Alex Deucher | a084e6e | 2010-03-18 01:04:01 -0400 | [diff] [blame] | 878 | if (atom_parse_data_header(mode_info->atom_context, index, NULL, |
| 879 | &frev, &crev, &data_offset)) { |
| 880 | firmware_info = |
| 881 | (union firmware_info *)(mode_info->atom_context->bios + |
| 882 | data_offset); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 883 | /* pixel clocks */ |
| 884 | p1pll->reference_freq = |
| 885 | le16_to_cpu(firmware_info->info.usReferenceClock); |
| 886 | p1pll->reference_div = 0; |
| 887 | |
Mathias Fröhlich | bc293e5 | 2009-10-19 17:49:49 -0400 | [diff] [blame] | 888 | if (crev < 2) |
| 889 | p1pll->pll_out_min = |
| 890 | le16_to_cpu(firmware_info->info.usMinPixelClockPLL_Output); |
| 891 | else |
| 892 | p1pll->pll_out_min = |
| 893 | le32_to_cpu(firmware_info->info_12.ulMinPixelClockPLL_Output); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 894 | p1pll->pll_out_max = |
| 895 | le32_to_cpu(firmware_info->info.ulMaxPixelClockPLL_Output); |
| 896 | |
Alex Deucher | 86cb2bb | 2010-03-08 12:55:16 -0500 | [diff] [blame] | 897 | if (crev >= 4) { |
| 898 | p1pll->lcd_pll_out_min = |
| 899 | le16_to_cpu(firmware_info->info_14.usLcdMinPixelClockPLL_Output) * 100; |
| 900 | if (p1pll->lcd_pll_out_min == 0) |
| 901 | p1pll->lcd_pll_out_min = p1pll->pll_out_min; |
| 902 | p1pll->lcd_pll_out_max = |
| 903 | le16_to_cpu(firmware_info->info_14.usLcdMaxPixelClockPLL_Output) * 100; |
| 904 | if (p1pll->lcd_pll_out_max == 0) |
| 905 | p1pll->lcd_pll_out_max = p1pll->pll_out_max; |
| 906 | } else { |
| 907 | p1pll->lcd_pll_out_min = p1pll->pll_out_min; |
| 908 | p1pll->lcd_pll_out_max = p1pll->pll_out_max; |
| 909 | } |
| 910 | |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 911 | if (p1pll->pll_out_min == 0) { |
| 912 | if (ASIC_IS_AVIVO(rdev)) |
| 913 | p1pll->pll_out_min = 64800; |
| 914 | else |
| 915 | p1pll->pll_out_min = 20000; |
Alex Deucher | 8f552a6 | 2009-10-27 11:16:09 -0400 | [diff] [blame] | 916 | } else if (p1pll->pll_out_min > 64800) { |
| 917 | /* Limiting the pll output range is a good thing generally as |
| 918 | * it limits the number of possible pll combinations for a given |
| 919 | * frequency presumably to the ones that work best on each card. |
| 920 | * However, certain duallink DVI monitors seem to like |
| 921 | * pll combinations that would be limited by this at least on |
| 922 | * pre-DCE 3.0 r6xx hardware. This might need to be adjusted per |
| 923 | * family. |
| 924 | */ |
Alex Deucher | b27b637 | 2009-12-09 17:44:25 -0500 | [diff] [blame] | 925 | if (!radeon_new_pll) |
| 926 | p1pll->pll_out_min = 64800; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 927 | } |
| 928 | |
| 929 | p1pll->pll_in_min = |
| 930 | le16_to_cpu(firmware_info->info.usMinPixelClockPLL_Input); |
| 931 | p1pll->pll_in_max = |
| 932 | le16_to_cpu(firmware_info->info.usMaxPixelClockPLL_Input); |
| 933 | |
| 934 | *p2pll = *p1pll; |
| 935 | |
| 936 | /* system clock */ |
| 937 | spll->reference_freq = |
| 938 | le16_to_cpu(firmware_info->info.usReferenceClock); |
| 939 | spll->reference_div = 0; |
| 940 | |
| 941 | spll->pll_out_min = |
| 942 | le16_to_cpu(firmware_info->info.usMinEngineClockPLL_Output); |
| 943 | spll->pll_out_max = |
| 944 | le32_to_cpu(firmware_info->info.ulMaxEngineClockPLL_Output); |
| 945 | |
| 946 | /* ??? */ |
| 947 | if (spll->pll_out_min == 0) { |
| 948 | if (ASIC_IS_AVIVO(rdev)) |
| 949 | spll->pll_out_min = 64800; |
| 950 | else |
| 951 | spll->pll_out_min = 20000; |
| 952 | } |
| 953 | |
| 954 | spll->pll_in_min = |
| 955 | le16_to_cpu(firmware_info->info.usMinEngineClockPLL_Input); |
| 956 | spll->pll_in_max = |
| 957 | le16_to_cpu(firmware_info->info.usMaxEngineClockPLL_Input); |
| 958 | |
| 959 | /* memory clock */ |
| 960 | mpll->reference_freq = |
| 961 | le16_to_cpu(firmware_info->info.usReferenceClock); |
| 962 | mpll->reference_div = 0; |
| 963 | |
| 964 | mpll->pll_out_min = |
| 965 | le16_to_cpu(firmware_info->info.usMinMemoryClockPLL_Output); |
| 966 | mpll->pll_out_max = |
| 967 | le32_to_cpu(firmware_info->info.ulMaxMemoryClockPLL_Output); |
| 968 | |
| 969 | /* ??? */ |
| 970 | if (mpll->pll_out_min == 0) { |
| 971 | if (ASIC_IS_AVIVO(rdev)) |
| 972 | mpll->pll_out_min = 64800; |
| 973 | else |
| 974 | mpll->pll_out_min = 20000; |
| 975 | } |
| 976 | |
| 977 | mpll->pll_in_min = |
| 978 | le16_to_cpu(firmware_info->info.usMinMemoryClockPLL_Input); |
| 979 | mpll->pll_in_max = |
| 980 | le16_to_cpu(firmware_info->info.usMaxMemoryClockPLL_Input); |
| 981 | |
| 982 | rdev->clock.default_sclk = |
| 983 | le32_to_cpu(firmware_info->info.ulDefaultEngineClock); |
| 984 | rdev->clock.default_mclk = |
| 985 | le32_to_cpu(firmware_info->info.ulDefaultMemoryClock); |
| 986 | |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 987 | if (ASIC_IS_DCE4(rdev)) { |
| 988 | rdev->clock.default_dispclk = |
| 989 | le32_to_cpu(firmware_info->info_21.ulDefaultDispEngineClkFreq); |
| 990 | if (rdev->clock.default_dispclk == 0) |
| 991 | rdev->clock.default_dispclk = 60000; /* 600 Mhz */ |
| 992 | rdev->clock.dp_extclk = |
| 993 | le16_to_cpu(firmware_info->info_21.usUniphyDPModeExtClkFreq); |
| 994 | } |
| 995 | *dcpll = *p1pll; |
| 996 | |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 997 | return true; |
| 998 | } |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 999 | |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1000 | return false; |
| 1001 | } |
| 1002 | |
Alex Deucher | 06b6476 | 2010-01-05 11:27:29 -0500 | [diff] [blame] | 1003 | union igp_info { |
| 1004 | struct _ATOM_INTEGRATED_SYSTEM_INFO info; |
| 1005 | struct _ATOM_INTEGRATED_SYSTEM_INFO_V2 info_2; |
| 1006 | }; |
| 1007 | |
| 1008 | bool radeon_atombios_sideport_present(struct radeon_device *rdev) |
| 1009 | { |
| 1010 | struct radeon_mode_info *mode_info = &rdev->mode_info; |
| 1011 | int index = GetIndexIntoMasterTable(DATA, IntegratedSystemInfo); |
| 1012 | union igp_info *igp_info; |
| 1013 | u8 frev, crev; |
| 1014 | u16 data_offset; |
| 1015 | |
Alex Deucher | a084e6e | 2010-03-18 01:04:01 -0400 | [diff] [blame] | 1016 | if (atom_parse_data_header(mode_info->atom_context, index, NULL, |
| 1017 | &frev, &crev, &data_offset)) { |
| 1018 | igp_info = (union igp_info *)(mode_info->atom_context->bios + |
Alex Deucher | 06b6476 | 2010-01-05 11:27:29 -0500 | [diff] [blame] | 1019 | data_offset); |
Alex Deucher | 06b6476 | 2010-01-05 11:27:29 -0500 | [diff] [blame] | 1020 | switch (crev) { |
| 1021 | case 1: |
| 1022 | if (igp_info->info.ucMemoryType & 0xf0) |
| 1023 | return true; |
| 1024 | break; |
| 1025 | case 2: |
| 1026 | if (igp_info->info_2.ucMemoryType & 0x0f) |
| 1027 | return true; |
| 1028 | break; |
| 1029 | default: |
| 1030 | DRM_ERROR("Unsupported IGP table: %d %d\n", frev, crev); |
| 1031 | break; |
| 1032 | } |
| 1033 | } |
| 1034 | return false; |
| 1035 | } |
| 1036 | |
Dave Airlie | 445282d | 2009-09-09 17:40:54 +1000 | [diff] [blame] | 1037 | bool radeon_atombios_get_tmds_info(struct radeon_encoder *encoder, |
| 1038 | struct radeon_encoder_int_tmds *tmds) |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1039 | { |
| 1040 | struct drm_device *dev = encoder->base.dev; |
| 1041 | struct radeon_device *rdev = dev->dev_private; |
| 1042 | struct radeon_mode_info *mode_info = &rdev->mode_info; |
| 1043 | int index = GetIndexIntoMasterTable(DATA, TMDS_Info); |
| 1044 | uint16_t data_offset; |
| 1045 | struct _ATOM_TMDS_INFO *tmds_info; |
| 1046 | uint8_t frev, crev; |
| 1047 | uint16_t maxfreq; |
| 1048 | int i; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1049 | |
Alex Deucher | a084e6e | 2010-03-18 01:04:01 -0400 | [diff] [blame] | 1050 | if (atom_parse_data_header(mode_info->atom_context, index, NULL, |
| 1051 | &frev, &crev, &data_offset)) { |
| 1052 | tmds_info = |
| 1053 | (struct _ATOM_TMDS_INFO *)(mode_info->atom_context->bios + |
| 1054 | data_offset); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1055 | |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1056 | maxfreq = le16_to_cpu(tmds_info->usMaxFrequency); |
| 1057 | for (i = 0; i < 4; i++) { |
| 1058 | tmds->tmds_pll[i].freq = |
| 1059 | le16_to_cpu(tmds_info->asMiscInfo[i].usFrequency); |
| 1060 | tmds->tmds_pll[i].value = |
| 1061 | tmds_info->asMiscInfo[i].ucPLL_ChargePump & 0x3f; |
| 1062 | tmds->tmds_pll[i].value |= |
| 1063 | (tmds_info->asMiscInfo[i]. |
| 1064 | ucPLL_VCO_Gain & 0x3f) << 6; |
| 1065 | tmds->tmds_pll[i].value |= |
| 1066 | (tmds_info->asMiscInfo[i]. |
| 1067 | ucPLL_DutyCycle & 0xf) << 12; |
| 1068 | tmds->tmds_pll[i].value |= |
| 1069 | (tmds_info->asMiscInfo[i]. |
| 1070 | ucPLL_VoltageSwing & 0xf) << 16; |
| 1071 | |
| 1072 | DRM_DEBUG("TMDS PLL From ATOMBIOS %u %x\n", |
| 1073 | tmds->tmds_pll[i].freq, |
| 1074 | tmds->tmds_pll[i].value); |
| 1075 | |
| 1076 | if (maxfreq == tmds->tmds_pll[i].freq) { |
| 1077 | tmds->tmds_pll[i].freq = 0xffffffff; |
| 1078 | break; |
| 1079 | } |
| 1080 | } |
Dave Airlie | 445282d | 2009-09-09 17:40:54 +1000 | [diff] [blame] | 1081 | return true; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1082 | } |
Dave Airlie | 445282d | 2009-09-09 17:40:54 +1000 | [diff] [blame] | 1083 | return false; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1084 | } |
| 1085 | |
Alex Deucher | ebbe1cb | 2009-10-16 11:15:25 -0400 | [diff] [blame] | 1086 | static struct radeon_atom_ss *radeon_atombios_get_ss_info(struct |
| 1087 | radeon_encoder |
| 1088 | *encoder, |
| 1089 | int id) |
| 1090 | { |
| 1091 | struct drm_device *dev = encoder->base.dev; |
| 1092 | struct radeon_device *rdev = dev->dev_private; |
| 1093 | struct radeon_mode_info *mode_info = &rdev->mode_info; |
| 1094 | int index = GetIndexIntoMasterTable(DATA, PPLL_SS_Info); |
| 1095 | uint16_t data_offset; |
| 1096 | struct _ATOM_SPREAD_SPECTRUM_INFO *ss_info; |
| 1097 | uint8_t frev, crev; |
| 1098 | struct radeon_atom_ss *ss = NULL; |
Alex Deucher | 279b215 | 2009-12-08 14:07:03 -0500 | [diff] [blame] | 1099 | int i; |
Alex Deucher | ebbe1cb | 2009-10-16 11:15:25 -0400 | [diff] [blame] | 1100 | |
| 1101 | if (id > ATOM_MAX_SS_ENTRY) |
| 1102 | return NULL; |
| 1103 | |
Alex Deucher | a084e6e | 2010-03-18 01:04:01 -0400 | [diff] [blame] | 1104 | if (atom_parse_data_header(mode_info->atom_context, index, NULL, |
| 1105 | &frev, &crev, &data_offset)) { |
| 1106 | ss_info = |
| 1107 | (struct _ATOM_SPREAD_SPECTRUM_INFO *)(mode_info->atom_context->bios + data_offset); |
Alex Deucher | ebbe1cb | 2009-10-16 11:15:25 -0400 | [diff] [blame] | 1108 | |
Alex Deucher | ebbe1cb | 2009-10-16 11:15:25 -0400 | [diff] [blame] | 1109 | ss = |
| 1110 | kzalloc(sizeof(struct radeon_atom_ss), GFP_KERNEL); |
| 1111 | |
| 1112 | if (!ss) |
| 1113 | return NULL; |
| 1114 | |
Alex Deucher | 279b215 | 2009-12-08 14:07:03 -0500 | [diff] [blame] | 1115 | for (i = 0; i < ATOM_MAX_SS_ENTRY; i++) { |
| 1116 | if (ss_info->asSS_Info[i].ucSS_Id == id) { |
| 1117 | ss->percentage = |
| 1118 | le16_to_cpu(ss_info->asSS_Info[i].usSpreadSpectrumPercentage); |
| 1119 | ss->type = ss_info->asSS_Info[i].ucSpreadSpectrumType; |
| 1120 | ss->step = ss_info->asSS_Info[i].ucSS_Step; |
| 1121 | ss->delay = ss_info->asSS_Info[i].ucSS_Delay; |
| 1122 | ss->range = ss_info->asSS_Info[i].ucSS_Range; |
| 1123 | ss->refdiv = ss_info->asSS_Info[i].ucRecommendedRef_Div; |
Alex Deucher | 1d3d51b | 2009-12-28 13:45:23 -0500 | [diff] [blame] | 1124 | break; |
Alex Deucher | 279b215 | 2009-12-08 14:07:03 -0500 | [diff] [blame] | 1125 | } |
| 1126 | } |
Alex Deucher | ebbe1cb | 2009-10-16 11:15:25 -0400 | [diff] [blame] | 1127 | } |
| 1128 | return ss; |
| 1129 | } |
| 1130 | |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1131 | union lvds_info { |
| 1132 | struct _ATOM_LVDS_INFO info; |
| 1133 | struct _ATOM_LVDS_INFO_V12 info_12; |
| 1134 | }; |
| 1135 | |
| 1136 | struct radeon_encoder_atom_dig *radeon_atombios_get_lvds_info(struct |
| 1137 | radeon_encoder |
| 1138 | *encoder) |
| 1139 | { |
| 1140 | struct drm_device *dev = encoder->base.dev; |
| 1141 | struct radeon_device *rdev = dev->dev_private; |
| 1142 | struct radeon_mode_info *mode_info = &rdev->mode_info; |
| 1143 | int index = GetIndexIntoMasterTable(DATA, LVDS_Info); |
Alex Deucher | 7dde8a1 | 2009-11-30 01:40:24 -0500 | [diff] [blame] | 1144 | uint16_t data_offset, misc; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1145 | union lvds_info *lvds_info; |
| 1146 | uint8_t frev, crev; |
| 1147 | struct radeon_encoder_atom_dig *lvds = NULL; |
| 1148 | |
Alex Deucher | a084e6e | 2010-03-18 01:04:01 -0400 | [diff] [blame] | 1149 | if (atom_parse_data_header(mode_info->atom_context, index, NULL, |
| 1150 | &frev, &crev, &data_offset)) { |
| 1151 | lvds_info = |
| 1152 | (union lvds_info *)(mode_info->atom_context->bios + data_offset); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1153 | lvds = |
| 1154 | kzalloc(sizeof(struct radeon_encoder_atom_dig), GFP_KERNEL); |
| 1155 | |
| 1156 | if (!lvds) |
| 1157 | return NULL; |
| 1158 | |
Alex Deucher | de2103e | 2009-10-09 15:14:30 -0400 | [diff] [blame] | 1159 | lvds->native_mode.clock = |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1160 | le16_to_cpu(lvds_info->info.sLCDTiming.usPixClk) * 10; |
Alex Deucher | de2103e | 2009-10-09 15:14:30 -0400 | [diff] [blame] | 1161 | lvds->native_mode.hdisplay = |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1162 | le16_to_cpu(lvds_info->info.sLCDTiming.usHActive); |
Alex Deucher | de2103e | 2009-10-09 15:14:30 -0400 | [diff] [blame] | 1163 | lvds->native_mode.vdisplay = |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1164 | le16_to_cpu(lvds_info->info.sLCDTiming.usVActive); |
Alex Deucher | de2103e | 2009-10-09 15:14:30 -0400 | [diff] [blame] | 1165 | lvds->native_mode.htotal = lvds->native_mode.hdisplay + |
| 1166 | le16_to_cpu(lvds_info->info.sLCDTiming.usHBlanking_Time); |
| 1167 | lvds->native_mode.hsync_start = lvds->native_mode.hdisplay + |
| 1168 | le16_to_cpu(lvds_info->info.sLCDTiming.usHSyncOffset); |
| 1169 | lvds->native_mode.hsync_end = lvds->native_mode.hsync_start + |
| 1170 | le16_to_cpu(lvds_info->info.sLCDTiming.usHSyncWidth); |
| 1171 | lvds->native_mode.vtotal = lvds->native_mode.vdisplay + |
| 1172 | le16_to_cpu(lvds_info->info.sLCDTiming.usVBlanking_Time); |
| 1173 | lvds->native_mode.vsync_start = lvds->native_mode.vdisplay + |
| 1174 | le16_to_cpu(lvds_info->info.sLCDTiming.usVSyncWidth); |
| 1175 | lvds->native_mode.vsync_end = lvds->native_mode.vsync_start + |
| 1176 | le16_to_cpu(lvds_info->info.sLCDTiming.usVSyncWidth); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1177 | lvds->panel_pwr_delay = |
| 1178 | le16_to_cpu(lvds_info->info.usOffDelayInMs); |
| 1179 | lvds->lvds_misc = lvds_info->info.ucLVDS_Misc; |
Alex Deucher | 7dde8a1 | 2009-11-30 01:40:24 -0500 | [diff] [blame] | 1180 | |
| 1181 | misc = le16_to_cpu(lvds_info->info.sLCDTiming.susModeMiscInfo.usAccess); |
| 1182 | if (misc & ATOM_VSYNC_POLARITY) |
| 1183 | lvds->native_mode.flags |= DRM_MODE_FLAG_NVSYNC; |
| 1184 | if (misc & ATOM_HSYNC_POLARITY) |
| 1185 | lvds->native_mode.flags |= DRM_MODE_FLAG_NHSYNC; |
| 1186 | if (misc & ATOM_COMPOSITESYNC) |
| 1187 | lvds->native_mode.flags |= DRM_MODE_FLAG_CSYNC; |
| 1188 | if (misc & ATOM_INTERLACE) |
| 1189 | lvds->native_mode.flags |= DRM_MODE_FLAG_INTERLACE; |
| 1190 | if (misc & ATOM_DOUBLE_CLOCK_MODE) |
| 1191 | lvds->native_mode.flags |= DRM_MODE_FLAG_DBLSCAN; |
| 1192 | |
Alex Deucher | de2103e | 2009-10-09 15:14:30 -0400 | [diff] [blame] | 1193 | /* set crtc values */ |
| 1194 | drm_mode_set_crtcinfo(&lvds->native_mode, CRTC_INTERLACE_HALVE_V); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1195 | |
Alex Deucher | ebbe1cb | 2009-10-16 11:15:25 -0400 | [diff] [blame] | 1196 | lvds->ss = radeon_atombios_get_ss_info(encoder, lvds_info->info.ucSS_Id); |
| 1197 | |
Alex Deucher | 7c27f87 | 2010-02-02 12:05:01 -0500 | [diff] [blame] | 1198 | if (ASIC_IS_AVIVO(rdev)) { |
Alex Deucher | 383be5d | 2010-02-23 03:24:38 -0500 | [diff] [blame] | 1199 | if (radeon_new_pll == 0) |
| 1200 | lvds->pll_algo = PLL_ALGO_LEGACY; |
| 1201 | else |
| 1202 | lvds->pll_algo = PLL_ALGO_NEW; |
| 1203 | } else { |
| 1204 | if (radeon_new_pll == 1) |
| 1205 | lvds->pll_algo = PLL_ALGO_NEW; |
Alex Deucher | 7c27f87 | 2010-02-02 12:05:01 -0500 | [diff] [blame] | 1206 | else |
| 1207 | lvds->pll_algo = PLL_ALGO_LEGACY; |
Alex Deucher | 383be5d | 2010-02-23 03:24:38 -0500 | [diff] [blame] | 1208 | } |
Alex Deucher | 7c27f87 | 2010-02-02 12:05:01 -0500 | [diff] [blame] | 1209 | |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1210 | encoder->native_mode = lvds->native_mode; |
| 1211 | } |
| 1212 | return lvds; |
| 1213 | } |
| 1214 | |
Alex Deucher | 6fe7ac3 | 2009-06-12 17:26:08 +0000 | [diff] [blame] | 1215 | struct radeon_encoder_primary_dac * |
| 1216 | radeon_atombios_get_primary_dac_info(struct radeon_encoder *encoder) |
| 1217 | { |
| 1218 | struct drm_device *dev = encoder->base.dev; |
| 1219 | struct radeon_device *rdev = dev->dev_private; |
| 1220 | struct radeon_mode_info *mode_info = &rdev->mode_info; |
| 1221 | int index = GetIndexIntoMasterTable(DATA, CompassionateData); |
| 1222 | uint16_t data_offset; |
| 1223 | struct _COMPASSIONATE_DATA *dac_info; |
| 1224 | uint8_t frev, crev; |
| 1225 | uint8_t bg, dac; |
Alex Deucher | 6fe7ac3 | 2009-06-12 17:26:08 +0000 | [diff] [blame] | 1226 | struct radeon_encoder_primary_dac *p_dac = NULL; |
| 1227 | |
Alex Deucher | a084e6e | 2010-03-18 01:04:01 -0400 | [diff] [blame] | 1228 | if (atom_parse_data_header(mode_info->atom_context, index, NULL, |
| 1229 | &frev, &crev, &data_offset)) { |
| 1230 | dac_info = (struct _COMPASSIONATE_DATA *) |
| 1231 | (mode_info->atom_context->bios + data_offset); |
Alex Deucher | 6fe7ac3 | 2009-06-12 17:26:08 +0000 | [diff] [blame] | 1232 | |
Alex Deucher | 6fe7ac3 | 2009-06-12 17:26:08 +0000 | [diff] [blame] | 1233 | p_dac = kzalloc(sizeof(struct radeon_encoder_primary_dac), GFP_KERNEL); |
| 1234 | |
| 1235 | if (!p_dac) |
| 1236 | return NULL; |
| 1237 | |
| 1238 | bg = dac_info->ucDAC1_BG_Adjustment; |
| 1239 | dac = dac_info->ucDAC1_DAC_Adjustment; |
| 1240 | p_dac->ps2_pdac_adj = (bg << 8) | (dac); |
| 1241 | |
| 1242 | } |
| 1243 | return p_dac; |
| 1244 | } |
| 1245 | |
Dave Airlie | 4ce001a | 2009-08-13 16:32:14 +1000 | [diff] [blame] | 1246 | bool radeon_atom_get_tv_timings(struct radeon_device *rdev, int index, |
Alex Deucher | 5a9bcac | 2009-10-08 15:09:31 -0400 | [diff] [blame] | 1247 | struct drm_display_mode *mode) |
Dave Airlie | 4ce001a | 2009-08-13 16:32:14 +1000 | [diff] [blame] | 1248 | { |
| 1249 | struct radeon_mode_info *mode_info = &rdev->mode_info; |
| 1250 | ATOM_ANALOG_TV_INFO *tv_info; |
| 1251 | ATOM_ANALOG_TV_INFO_V1_2 *tv_info_v1_2; |
| 1252 | ATOM_DTD_FORMAT *dtd_timings; |
| 1253 | int data_index = GetIndexIntoMasterTable(DATA, AnalogTV_Info); |
| 1254 | u8 frev, crev; |
Alex Deucher | 5a9bcac | 2009-10-08 15:09:31 -0400 | [diff] [blame] | 1255 | u16 data_offset, misc; |
Dave Airlie | 4ce001a | 2009-08-13 16:32:14 +1000 | [diff] [blame] | 1256 | |
Alex Deucher | a084e6e | 2010-03-18 01:04:01 -0400 | [diff] [blame] | 1257 | if (!atom_parse_data_header(mode_info->atom_context, data_index, NULL, |
| 1258 | &frev, &crev, &data_offset)) |
| 1259 | return false; |
Dave Airlie | 4ce001a | 2009-08-13 16:32:14 +1000 | [diff] [blame] | 1260 | |
| 1261 | switch (crev) { |
| 1262 | case 1: |
| 1263 | tv_info = (ATOM_ANALOG_TV_INFO *)(mode_info->atom_context->bios + data_offset); |
| 1264 | if (index > MAX_SUPPORTED_TV_TIMING) |
| 1265 | return false; |
| 1266 | |
Alex Deucher | 5a9bcac | 2009-10-08 15:09:31 -0400 | [diff] [blame] | 1267 | mode->crtc_htotal = le16_to_cpu(tv_info->aModeTimings[index].usCRTC_H_Total); |
| 1268 | mode->crtc_hdisplay = le16_to_cpu(tv_info->aModeTimings[index].usCRTC_H_Disp); |
| 1269 | mode->crtc_hsync_start = le16_to_cpu(tv_info->aModeTimings[index].usCRTC_H_SyncStart); |
| 1270 | mode->crtc_hsync_end = le16_to_cpu(tv_info->aModeTimings[index].usCRTC_H_SyncStart) + |
| 1271 | le16_to_cpu(tv_info->aModeTimings[index].usCRTC_H_SyncWidth); |
Dave Airlie | 4ce001a | 2009-08-13 16:32:14 +1000 | [diff] [blame] | 1272 | |
Alex Deucher | 5a9bcac | 2009-10-08 15:09:31 -0400 | [diff] [blame] | 1273 | mode->crtc_vtotal = le16_to_cpu(tv_info->aModeTimings[index].usCRTC_V_Total); |
| 1274 | mode->crtc_vdisplay = le16_to_cpu(tv_info->aModeTimings[index].usCRTC_V_Disp); |
| 1275 | mode->crtc_vsync_start = le16_to_cpu(tv_info->aModeTimings[index].usCRTC_V_SyncStart); |
| 1276 | mode->crtc_vsync_end = le16_to_cpu(tv_info->aModeTimings[index].usCRTC_V_SyncStart) + |
| 1277 | le16_to_cpu(tv_info->aModeTimings[index].usCRTC_V_SyncWidth); |
Dave Airlie | 4ce001a | 2009-08-13 16:32:14 +1000 | [diff] [blame] | 1278 | |
Alex Deucher | 5a9bcac | 2009-10-08 15:09:31 -0400 | [diff] [blame] | 1279 | mode->flags = 0; |
| 1280 | misc = le16_to_cpu(tv_info->aModeTimings[index].susModeMiscInfo.usAccess); |
| 1281 | if (misc & ATOM_VSYNC_POLARITY) |
| 1282 | mode->flags |= DRM_MODE_FLAG_NVSYNC; |
| 1283 | if (misc & ATOM_HSYNC_POLARITY) |
| 1284 | mode->flags |= DRM_MODE_FLAG_NHSYNC; |
| 1285 | if (misc & ATOM_COMPOSITESYNC) |
| 1286 | mode->flags |= DRM_MODE_FLAG_CSYNC; |
| 1287 | if (misc & ATOM_INTERLACE) |
| 1288 | mode->flags |= DRM_MODE_FLAG_INTERLACE; |
| 1289 | if (misc & ATOM_DOUBLE_CLOCK_MODE) |
| 1290 | mode->flags |= DRM_MODE_FLAG_DBLSCAN; |
Dave Airlie | 4ce001a | 2009-08-13 16:32:14 +1000 | [diff] [blame] | 1291 | |
Alex Deucher | 5a9bcac | 2009-10-08 15:09:31 -0400 | [diff] [blame] | 1292 | mode->clock = le16_to_cpu(tv_info->aModeTimings[index].usPixelClock) * 10; |
Dave Airlie | 4ce001a | 2009-08-13 16:32:14 +1000 | [diff] [blame] | 1293 | |
| 1294 | if (index == 1) { |
| 1295 | /* PAL timings appear to have wrong values for totals */ |
Alex Deucher | 5a9bcac | 2009-10-08 15:09:31 -0400 | [diff] [blame] | 1296 | mode->crtc_htotal -= 1; |
| 1297 | mode->crtc_vtotal -= 1; |
Dave Airlie | 4ce001a | 2009-08-13 16:32:14 +1000 | [diff] [blame] | 1298 | } |
| 1299 | break; |
| 1300 | case 2: |
| 1301 | tv_info_v1_2 = (ATOM_ANALOG_TV_INFO_V1_2 *)(mode_info->atom_context->bios + data_offset); |
| 1302 | if (index > MAX_SUPPORTED_TV_TIMING_V1_2) |
| 1303 | return false; |
| 1304 | |
| 1305 | dtd_timings = &tv_info_v1_2->aModeTimings[index]; |
Alex Deucher | 5a9bcac | 2009-10-08 15:09:31 -0400 | [diff] [blame] | 1306 | mode->crtc_htotal = le16_to_cpu(dtd_timings->usHActive) + |
| 1307 | le16_to_cpu(dtd_timings->usHBlanking_Time); |
| 1308 | mode->crtc_hdisplay = le16_to_cpu(dtd_timings->usHActive); |
| 1309 | mode->crtc_hsync_start = le16_to_cpu(dtd_timings->usHActive) + |
| 1310 | le16_to_cpu(dtd_timings->usHSyncOffset); |
| 1311 | mode->crtc_hsync_end = mode->crtc_hsync_start + |
| 1312 | le16_to_cpu(dtd_timings->usHSyncWidth); |
Dave Airlie | 4ce001a | 2009-08-13 16:32:14 +1000 | [diff] [blame] | 1313 | |
Alex Deucher | 5a9bcac | 2009-10-08 15:09:31 -0400 | [diff] [blame] | 1314 | mode->crtc_vtotal = le16_to_cpu(dtd_timings->usVActive) + |
| 1315 | le16_to_cpu(dtd_timings->usVBlanking_Time); |
| 1316 | mode->crtc_vdisplay = le16_to_cpu(dtd_timings->usVActive); |
| 1317 | mode->crtc_vsync_start = le16_to_cpu(dtd_timings->usVActive) + |
| 1318 | le16_to_cpu(dtd_timings->usVSyncOffset); |
| 1319 | mode->crtc_vsync_end = mode->crtc_vsync_start + |
| 1320 | le16_to_cpu(dtd_timings->usVSyncWidth); |
| 1321 | |
| 1322 | mode->flags = 0; |
| 1323 | misc = le16_to_cpu(dtd_timings->susModeMiscInfo.usAccess); |
| 1324 | if (misc & ATOM_VSYNC_POLARITY) |
| 1325 | mode->flags |= DRM_MODE_FLAG_NVSYNC; |
| 1326 | if (misc & ATOM_HSYNC_POLARITY) |
| 1327 | mode->flags |= DRM_MODE_FLAG_NHSYNC; |
| 1328 | if (misc & ATOM_COMPOSITESYNC) |
| 1329 | mode->flags |= DRM_MODE_FLAG_CSYNC; |
| 1330 | if (misc & ATOM_INTERLACE) |
| 1331 | mode->flags |= DRM_MODE_FLAG_INTERLACE; |
| 1332 | if (misc & ATOM_DOUBLE_CLOCK_MODE) |
| 1333 | mode->flags |= DRM_MODE_FLAG_DBLSCAN; |
| 1334 | |
| 1335 | mode->clock = le16_to_cpu(dtd_timings->usPixClk) * 10; |
Dave Airlie | 4ce001a | 2009-08-13 16:32:14 +1000 | [diff] [blame] | 1336 | break; |
| 1337 | } |
| 1338 | return true; |
| 1339 | } |
| 1340 | |
Alex Deucher | d79766f | 2009-12-17 19:00:29 -0500 | [diff] [blame] | 1341 | enum radeon_tv_std |
| 1342 | radeon_atombios_get_tv_info(struct radeon_device *rdev) |
| 1343 | { |
| 1344 | struct radeon_mode_info *mode_info = &rdev->mode_info; |
| 1345 | int index = GetIndexIntoMasterTable(DATA, AnalogTV_Info); |
| 1346 | uint16_t data_offset; |
| 1347 | uint8_t frev, crev; |
| 1348 | struct _ATOM_ANALOG_TV_INFO *tv_info; |
| 1349 | enum radeon_tv_std tv_std = TV_STD_NTSC; |
| 1350 | |
Alex Deucher | a084e6e | 2010-03-18 01:04:01 -0400 | [diff] [blame] | 1351 | if (atom_parse_data_header(mode_info->atom_context, index, NULL, |
| 1352 | &frev, &crev, &data_offset)) { |
Alex Deucher | d79766f | 2009-12-17 19:00:29 -0500 | [diff] [blame] | 1353 | |
Alex Deucher | a084e6e | 2010-03-18 01:04:01 -0400 | [diff] [blame] | 1354 | tv_info = (struct _ATOM_ANALOG_TV_INFO *) |
| 1355 | (mode_info->atom_context->bios + data_offset); |
Alex Deucher | d79766f | 2009-12-17 19:00:29 -0500 | [diff] [blame] | 1356 | |
Alex Deucher | a084e6e | 2010-03-18 01:04:01 -0400 | [diff] [blame] | 1357 | switch (tv_info->ucTV_BootUpDefaultStandard) { |
| 1358 | case ATOM_TV_NTSC: |
| 1359 | tv_std = TV_STD_NTSC; |
| 1360 | DRM_INFO("Default TV standard: NTSC\n"); |
| 1361 | break; |
| 1362 | case ATOM_TV_NTSCJ: |
| 1363 | tv_std = TV_STD_NTSC_J; |
| 1364 | DRM_INFO("Default TV standard: NTSC-J\n"); |
| 1365 | break; |
| 1366 | case ATOM_TV_PAL: |
| 1367 | tv_std = TV_STD_PAL; |
| 1368 | DRM_INFO("Default TV standard: PAL\n"); |
| 1369 | break; |
| 1370 | case ATOM_TV_PALM: |
| 1371 | tv_std = TV_STD_PAL_M; |
| 1372 | DRM_INFO("Default TV standard: PAL-M\n"); |
| 1373 | break; |
| 1374 | case ATOM_TV_PALN: |
| 1375 | tv_std = TV_STD_PAL_N; |
| 1376 | DRM_INFO("Default TV standard: PAL-N\n"); |
| 1377 | break; |
| 1378 | case ATOM_TV_PALCN: |
| 1379 | tv_std = TV_STD_PAL_CN; |
| 1380 | DRM_INFO("Default TV standard: PAL-CN\n"); |
| 1381 | break; |
| 1382 | case ATOM_TV_PAL60: |
| 1383 | tv_std = TV_STD_PAL_60; |
| 1384 | DRM_INFO("Default TV standard: PAL-60\n"); |
| 1385 | break; |
| 1386 | case ATOM_TV_SECAM: |
| 1387 | tv_std = TV_STD_SECAM; |
| 1388 | DRM_INFO("Default TV standard: SECAM\n"); |
| 1389 | break; |
| 1390 | default: |
| 1391 | tv_std = TV_STD_NTSC; |
| 1392 | DRM_INFO("Unknown TV standard; defaulting to NTSC\n"); |
| 1393 | break; |
| 1394 | } |
Alex Deucher | d79766f | 2009-12-17 19:00:29 -0500 | [diff] [blame] | 1395 | } |
| 1396 | return tv_std; |
| 1397 | } |
| 1398 | |
Alex Deucher | 6fe7ac3 | 2009-06-12 17:26:08 +0000 | [diff] [blame] | 1399 | struct radeon_encoder_tv_dac * |
| 1400 | radeon_atombios_get_tv_dac_info(struct radeon_encoder *encoder) |
| 1401 | { |
| 1402 | struct drm_device *dev = encoder->base.dev; |
| 1403 | struct radeon_device *rdev = dev->dev_private; |
| 1404 | struct radeon_mode_info *mode_info = &rdev->mode_info; |
| 1405 | int index = GetIndexIntoMasterTable(DATA, CompassionateData); |
| 1406 | uint16_t data_offset; |
| 1407 | struct _COMPASSIONATE_DATA *dac_info; |
| 1408 | uint8_t frev, crev; |
| 1409 | uint8_t bg, dac; |
Alex Deucher | 6fe7ac3 | 2009-06-12 17:26:08 +0000 | [diff] [blame] | 1410 | struct radeon_encoder_tv_dac *tv_dac = NULL; |
| 1411 | |
Alex Deucher | a084e6e | 2010-03-18 01:04:01 -0400 | [diff] [blame] | 1412 | if (atom_parse_data_header(mode_info->atom_context, index, NULL, |
| 1413 | &frev, &crev, &data_offset)) { |
Alex Deucher | 6fe7ac3 | 2009-06-12 17:26:08 +0000 | [diff] [blame] | 1414 | |
Alex Deucher | a084e6e | 2010-03-18 01:04:01 -0400 | [diff] [blame] | 1415 | dac_info = (struct _COMPASSIONATE_DATA *) |
| 1416 | (mode_info->atom_context->bios + data_offset); |
Alex Deucher | 6fe7ac3 | 2009-06-12 17:26:08 +0000 | [diff] [blame] | 1417 | |
Alex Deucher | 6fe7ac3 | 2009-06-12 17:26:08 +0000 | [diff] [blame] | 1418 | tv_dac = kzalloc(sizeof(struct radeon_encoder_tv_dac), GFP_KERNEL); |
| 1419 | |
| 1420 | if (!tv_dac) |
| 1421 | return NULL; |
| 1422 | |
| 1423 | bg = dac_info->ucDAC2_CRT2_BG_Adjustment; |
| 1424 | dac = dac_info->ucDAC2_CRT2_DAC_Adjustment; |
| 1425 | tv_dac->ps2_tvdac_adj = (bg << 16) | (dac << 20); |
| 1426 | |
| 1427 | bg = dac_info->ucDAC2_PAL_BG_Adjustment; |
| 1428 | dac = dac_info->ucDAC2_PAL_DAC_Adjustment; |
| 1429 | tv_dac->pal_tvdac_adj = (bg << 16) | (dac << 20); |
| 1430 | |
| 1431 | bg = dac_info->ucDAC2_NTSC_BG_Adjustment; |
| 1432 | dac = dac_info->ucDAC2_NTSC_DAC_Adjustment; |
| 1433 | tv_dac->ntsc_tvdac_adj = (bg << 16) | (dac << 20); |
| 1434 | |
Alex Deucher | d79766f | 2009-12-17 19:00:29 -0500 | [diff] [blame] | 1435 | tv_dac->tv_std = radeon_atombios_get_tv_info(rdev); |
Alex Deucher | 6fe7ac3 | 2009-06-12 17:26:08 +0000 | [diff] [blame] | 1436 | } |
| 1437 | return tv_dac; |
| 1438 | } |
| 1439 | |
Alex Deucher | 29fb52c | 2010-03-11 10:01:17 -0500 | [diff] [blame] | 1440 | static const char *thermal_controller_names[] = { |
| 1441 | "NONE", |
| 1442 | "LM63", |
| 1443 | "ADM1032", |
| 1444 | "ADM1030", |
| 1445 | "MUA6649", |
| 1446 | "LM64", |
| 1447 | "F75375", |
| 1448 | "ASC7512", |
| 1449 | }; |
| 1450 | |
| 1451 | static const char *pp_lib_thermal_controller_names[] = { |
| 1452 | "NONE", |
| 1453 | "LM63", |
| 1454 | "ADM1032", |
| 1455 | "ADM1030", |
| 1456 | "MUA6649", |
| 1457 | "LM64", |
| 1458 | "F75375", |
| 1459 | "RV6xx", |
| 1460 | "RV770", |
| 1461 | "ADT7473", |
| 1462 | }; |
| 1463 | |
Alex Deucher | 56278a8 | 2009-12-28 13:58:44 -0500 | [diff] [blame] | 1464 | union power_info { |
| 1465 | struct _ATOM_POWERPLAY_INFO info; |
| 1466 | struct _ATOM_POWERPLAY_INFO_V2 info_2; |
| 1467 | struct _ATOM_POWERPLAY_INFO_V3 info_3; |
| 1468 | struct _ATOM_PPLIB_POWERPLAYTABLE info_4; |
| 1469 | }; |
| 1470 | |
| 1471 | void radeon_atombios_get_power_modes(struct radeon_device *rdev) |
| 1472 | { |
| 1473 | struct radeon_mode_info *mode_info = &rdev->mode_info; |
| 1474 | int index = GetIndexIntoMasterTable(DATA, PowerPlayInfo); |
| 1475 | u16 data_offset; |
| 1476 | u8 frev, crev; |
| 1477 | u32 misc, misc2 = 0, sclk, mclk; |
| 1478 | union power_info *power_info; |
| 1479 | struct _ATOM_PPLIB_NONCLOCK_INFO *non_clock_info; |
| 1480 | struct _ATOM_PPLIB_STATE *power_state; |
| 1481 | int num_modes = 0, i, j; |
| 1482 | int state_index = 0, mode_index = 0; |
Alex Deucher | 29fb52c | 2010-03-11 10:01:17 -0500 | [diff] [blame] | 1483 | struct radeon_i2c_bus_rec i2c_bus; |
Alex Deucher | 56278a8 | 2009-12-28 13:58:44 -0500 | [diff] [blame] | 1484 | |
Alex Deucher | 56278a8 | 2009-12-28 13:58:44 -0500 | [diff] [blame] | 1485 | rdev->pm.default_power_state = NULL; |
Alex Deucher | 56278a8 | 2009-12-28 13:58:44 -0500 | [diff] [blame] | 1486 | |
Alex Deucher | a084e6e | 2010-03-18 01:04:01 -0400 | [diff] [blame] | 1487 | if (atom_parse_data_header(mode_info->atom_context, index, NULL, |
| 1488 | &frev, &crev, &data_offset)) { |
| 1489 | power_info = (union power_info *)(mode_info->atom_context->bios + data_offset); |
Alex Deucher | 56278a8 | 2009-12-28 13:58:44 -0500 | [diff] [blame] | 1490 | if (frev < 4) { |
Alex Deucher | 29fb52c | 2010-03-11 10:01:17 -0500 | [diff] [blame] | 1491 | /* add the i2c bus for thermal/fan chip */ |
| 1492 | if (power_info->info.ucOverdriveThermalController > 0) { |
| 1493 | DRM_INFO("Possible %s thermal controller at 0x%02x\n", |
| 1494 | thermal_controller_names[power_info->info.ucOverdriveThermalController], |
| 1495 | power_info->info.ucOverdriveControllerAddress >> 1); |
| 1496 | i2c_bus = radeon_lookup_i2c_gpio(rdev, power_info->info.ucOverdriveI2cLine); |
| 1497 | rdev->pm.i2c_bus = radeon_i2c_create(rdev->ddev, &i2c_bus, "Thermal"); |
| 1498 | } |
Alex Deucher | 56278a8 | 2009-12-28 13:58:44 -0500 | [diff] [blame] | 1499 | num_modes = power_info->info.ucNumOfPowerModeEntries; |
| 1500 | if (num_modes > ATOM_MAX_NUMBEROF_POWER_BLOCK) |
| 1501 | num_modes = ATOM_MAX_NUMBEROF_POWER_BLOCK; |
| 1502 | for (i = 0; i < num_modes; i++) { |
| 1503 | rdev->pm.power_state[state_index].clock_info[0].voltage.type = VOLTAGE_NONE; |
| 1504 | switch (frev) { |
| 1505 | case 1: |
| 1506 | rdev->pm.power_state[state_index].num_clock_modes = 1; |
| 1507 | rdev->pm.power_state[state_index].clock_info[0].mclk = |
| 1508 | le16_to_cpu(power_info->info.asPowerPlayInfo[i].usMemoryClock); |
| 1509 | rdev->pm.power_state[state_index].clock_info[0].sclk = |
| 1510 | le16_to_cpu(power_info->info.asPowerPlayInfo[i].usEngineClock); |
| 1511 | /* skip invalid modes */ |
| 1512 | if ((rdev->pm.power_state[state_index].clock_info[0].mclk == 0) || |
| 1513 | (rdev->pm.power_state[state_index].clock_info[0].sclk == 0)) |
| 1514 | continue; |
| 1515 | /* skip overclock modes for now */ |
| 1516 | if ((rdev->pm.power_state[state_index].clock_info[0].mclk > |
Rafał Miłecki | 2745932 | 2010-02-11 22:16:36 +0000 | [diff] [blame] | 1517 | rdev->clock.default_mclk + RADEON_MODE_OVERCLOCK_MARGIN) || |
Alex Deucher | 56278a8 | 2009-12-28 13:58:44 -0500 | [diff] [blame] | 1518 | (rdev->pm.power_state[state_index].clock_info[0].sclk > |
Rafał Miłecki | 2745932 | 2010-02-11 22:16:36 +0000 | [diff] [blame] | 1519 | rdev->clock.default_sclk + RADEON_MODE_OVERCLOCK_MARGIN)) |
Alex Deucher | 56278a8 | 2009-12-28 13:58:44 -0500 | [diff] [blame] | 1520 | continue; |
| 1521 | rdev->pm.power_state[state_index].non_clock_info.pcie_lanes = |
| 1522 | power_info->info.asPowerPlayInfo[i].ucNumPciELanes; |
| 1523 | misc = le32_to_cpu(power_info->info.asPowerPlayInfo[i].ulMiscInfo); |
| 1524 | if (misc & ATOM_PM_MISCINFO_VOLTAGE_DROP_SUPPORT) { |
| 1525 | rdev->pm.power_state[state_index].clock_info[0].voltage.type = |
| 1526 | VOLTAGE_GPIO; |
| 1527 | rdev->pm.power_state[state_index].clock_info[0].voltage.gpio = |
| 1528 | radeon_lookup_gpio(rdev, |
| 1529 | power_info->info.asPowerPlayInfo[i].ucVoltageDropIndex); |
| 1530 | if (misc & ATOM_PM_MISCINFO_VOLTAGE_DROP_ACTIVE_HIGH) |
| 1531 | rdev->pm.power_state[state_index].clock_info[0].voltage.active_high = |
| 1532 | true; |
| 1533 | else |
| 1534 | rdev->pm.power_state[state_index].clock_info[0].voltage.active_high = |
| 1535 | false; |
| 1536 | } else if (misc & ATOM_PM_MISCINFO_PROGRAM_VOLTAGE) { |
| 1537 | rdev->pm.power_state[state_index].clock_info[0].voltage.type = |
| 1538 | VOLTAGE_VDDC; |
| 1539 | rdev->pm.power_state[state_index].clock_info[0].voltage.vddc_id = |
| 1540 | power_info->info.asPowerPlayInfo[i].ucVoltageDropIndex; |
| 1541 | } |
Alex Deucher | 0ec0e74 | 2009-12-23 13:21:58 -0500 | [diff] [blame] | 1542 | /* order matters! */ |
| 1543 | if (misc & ATOM_PM_MISCINFO_POWER_SAVING_MODE) |
| 1544 | rdev->pm.power_state[state_index].type = |
| 1545 | POWER_STATE_TYPE_POWERSAVE; |
| 1546 | if (misc & ATOM_PM_MISCINFO_DEFAULT_DC_STATE_ENTRY_TRUE) |
| 1547 | rdev->pm.power_state[state_index].type = |
| 1548 | POWER_STATE_TYPE_BATTERY; |
| 1549 | if (misc & ATOM_PM_MISCINFO_DEFAULT_LOW_DC_STATE_ENTRY_TRUE) |
| 1550 | rdev->pm.power_state[state_index].type = |
| 1551 | POWER_STATE_TYPE_BATTERY; |
| 1552 | if (misc & ATOM_PM_MISCINFO_LOAD_BALANCE_EN) |
| 1553 | rdev->pm.power_state[state_index].type = |
| 1554 | POWER_STATE_TYPE_BALANCED; |
| 1555 | if (misc & ATOM_PM_MISCINFO_3D_ACCELERATION_EN) |
| 1556 | rdev->pm.power_state[state_index].type = |
| 1557 | POWER_STATE_TYPE_PERFORMANCE; |
Alex Deucher | 56278a8 | 2009-12-28 13:58:44 -0500 | [diff] [blame] | 1558 | if (misc & ATOM_PM_MISCINFO_DRIVER_DEFAULT_MODE) { |
Alex Deucher | 0ec0e74 | 2009-12-23 13:21:58 -0500 | [diff] [blame] | 1559 | rdev->pm.power_state[state_index].type = |
| 1560 | POWER_STATE_TYPE_DEFAULT; |
Alex Deucher | 56278a8 | 2009-12-28 13:58:44 -0500 | [diff] [blame] | 1561 | rdev->pm.default_power_state = &rdev->pm.power_state[state_index]; |
Alex Deucher | 56278a8 | 2009-12-28 13:58:44 -0500 | [diff] [blame] | 1562 | rdev->pm.power_state[state_index].default_clock_mode = |
| 1563 | &rdev->pm.power_state[state_index].clock_info[0]; |
Alex Deucher | 56278a8 | 2009-12-28 13:58:44 -0500 | [diff] [blame] | 1564 | } |
| 1565 | state_index++; |
| 1566 | break; |
| 1567 | case 2: |
| 1568 | rdev->pm.power_state[state_index].num_clock_modes = 1; |
| 1569 | rdev->pm.power_state[state_index].clock_info[0].mclk = |
| 1570 | le32_to_cpu(power_info->info_2.asPowerPlayInfo[i].ulMemoryClock); |
| 1571 | rdev->pm.power_state[state_index].clock_info[0].sclk = |
| 1572 | le32_to_cpu(power_info->info_2.asPowerPlayInfo[i].ulEngineClock); |
| 1573 | /* skip invalid modes */ |
| 1574 | if ((rdev->pm.power_state[state_index].clock_info[0].mclk == 0) || |
| 1575 | (rdev->pm.power_state[state_index].clock_info[0].sclk == 0)) |
| 1576 | continue; |
| 1577 | /* skip overclock modes for now */ |
| 1578 | if ((rdev->pm.power_state[state_index].clock_info[0].mclk > |
Rafał Miłecki | 2745932 | 2010-02-11 22:16:36 +0000 | [diff] [blame] | 1579 | rdev->clock.default_mclk + RADEON_MODE_OVERCLOCK_MARGIN) || |
Alex Deucher | 56278a8 | 2009-12-28 13:58:44 -0500 | [diff] [blame] | 1580 | (rdev->pm.power_state[state_index].clock_info[0].sclk > |
Rafał Miłecki | 2745932 | 2010-02-11 22:16:36 +0000 | [diff] [blame] | 1581 | rdev->clock.default_sclk + RADEON_MODE_OVERCLOCK_MARGIN)) |
Alex Deucher | 56278a8 | 2009-12-28 13:58:44 -0500 | [diff] [blame] | 1582 | continue; |
| 1583 | rdev->pm.power_state[state_index].non_clock_info.pcie_lanes = |
| 1584 | power_info->info_2.asPowerPlayInfo[i].ucNumPciELanes; |
| 1585 | misc = le32_to_cpu(power_info->info_2.asPowerPlayInfo[i].ulMiscInfo); |
| 1586 | misc2 = le32_to_cpu(power_info->info_2.asPowerPlayInfo[i].ulMiscInfo2); |
| 1587 | if (misc & ATOM_PM_MISCINFO_VOLTAGE_DROP_SUPPORT) { |
| 1588 | rdev->pm.power_state[state_index].clock_info[0].voltage.type = |
| 1589 | VOLTAGE_GPIO; |
| 1590 | rdev->pm.power_state[state_index].clock_info[0].voltage.gpio = |
| 1591 | radeon_lookup_gpio(rdev, |
| 1592 | power_info->info_2.asPowerPlayInfo[i].ucVoltageDropIndex); |
| 1593 | if (misc & ATOM_PM_MISCINFO_VOLTAGE_DROP_ACTIVE_HIGH) |
| 1594 | rdev->pm.power_state[state_index].clock_info[0].voltage.active_high = |
| 1595 | true; |
| 1596 | else |
| 1597 | rdev->pm.power_state[state_index].clock_info[0].voltage.active_high = |
| 1598 | false; |
| 1599 | } else if (misc & ATOM_PM_MISCINFO_PROGRAM_VOLTAGE) { |
| 1600 | rdev->pm.power_state[state_index].clock_info[0].voltage.type = |
| 1601 | VOLTAGE_VDDC; |
| 1602 | rdev->pm.power_state[state_index].clock_info[0].voltage.vddc_id = |
| 1603 | power_info->info_2.asPowerPlayInfo[i].ucVoltageDropIndex; |
| 1604 | } |
Alex Deucher | 0ec0e74 | 2009-12-23 13:21:58 -0500 | [diff] [blame] | 1605 | /* order matters! */ |
| 1606 | if (misc & ATOM_PM_MISCINFO_POWER_SAVING_MODE) |
| 1607 | rdev->pm.power_state[state_index].type = |
| 1608 | POWER_STATE_TYPE_POWERSAVE; |
| 1609 | if (misc & ATOM_PM_MISCINFO_DEFAULT_DC_STATE_ENTRY_TRUE) |
| 1610 | rdev->pm.power_state[state_index].type = |
| 1611 | POWER_STATE_TYPE_BATTERY; |
| 1612 | if (misc & ATOM_PM_MISCINFO_DEFAULT_LOW_DC_STATE_ENTRY_TRUE) |
| 1613 | rdev->pm.power_state[state_index].type = |
| 1614 | POWER_STATE_TYPE_BATTERY; |
| 1615 | if (misc & ATOM_PM_MISCINFO_LOAD_BALANCE_EN) |
| 1616 | rdev->pm.power_state[state_index].type = |
| 1617 | POWER_STATE_TYPE_BALANCED; |
| 1618 | if (misc & ATOM_PM_MISCINFO_3D_ACCELERATION_EN) |
| 1619 | rdev->pm.power_state[state_index].type = |
| 1620 | POWER_STATE_TYPE_PERFORMANCE; |
| 1621 | if (misc2 & ATOM_PM_MISCINFO2_SYSTEM_AC_LITE_MODE) |
| 1622 | rdev->pm.power_state[state_index].type = |
| 1623 | POWER_STATE_TYPE_BALANCED; |
Alex Deucher | 56278a8 | 2009-12-28 13:58:44 -0500 | [diff] [blame] | 1624 | if (misc & ATOM_PM_MISCINFO_DRIVER_DEFAULT_MODE) { |
Alex Deucher | 0ec0e74 | 2009-12-23 13:21:58 -0500 | [diff] [blame] | 1625 | rdev->pm.power_state[state_index].type = |
| 1626 | POWER_STATE_TYPE_DEFAULT; |
Alex Deucher | 56278a8 | 2009-12-28 13:58:44 -0500 | [diff] [blame] | 1627 | rdev->pm.default_power_state = &rdev->pm.power_state[state_index]; |
Alex Deucher | 56278a8 | 2009-12-28 13:58:44 -0500 | [diff] [blame] | 1628 | rdev->pm.power_state[state_index].default_clock_mode = |
| 1629 | &rdev->pm.power_state[state_index].clock_info[0]; |
Alex Deucher | 56278a8 | 2009-12-28 13:58:44 -0500 | [diff] [blame] | 1630 | } |
| 1631 | state_index++; |
| 1632 | break; |
| 1633 | case 3: |
| 1634 | rdev->pm.power_state[state_index].num_clock_modes = 1; |
| 1635 | rdev->pm.power_state[state_index].clock_info[0].mclk = |
| 1636 | le32_to_cpu(power_info->info_3.asPowerPlayInfo[i].ulMemoryClock); |
| 1637 | rdev->pm.power_state[state_index].clock_info[0].sclk = |
| 1638 | le32_to_cpu(power_info->info_3.asPowerPlayInfo[i].ulEngineClock); |
| 1639 | /* skip invalid modes */ |
| 1640 | if ((rdev->pm.power_state[state_index].clock_info[0].mclk == 0) || |
| 1641 | (rdev->pm.power_state[state_index].clock_info[0].sclk == 0)) |
| 1642 | continue; |
| 1643 | /* skip overclock modes for now */ |
| 1644 | if ((rdev->pm.power_state[state_index].clock_info[0].mclk > |
Rafał Miłecki | 2745932 | 2010-02-11 22:16:36 +0000 | [diff] [blame] | 1645 | rdev->clock.default_mclk + RADEON_MODE_OVERCLOCK_MARGIN) || |
Alex Deucher | 56278a8 | 2009-12-28 13:58:44 -0500 | [diff] [blame] | 1646 | (rdev->pm.power_state[state_index].clock_info[0].sclk > |
Rafał Miłecki | 2745932 | 2010-02-11 22:16:36 +0000 | [diff] [blame] | 1647 | rdev->clock.default_sclk + RADEON_MODE_OVERCLOCK_MARGIN)) |
Alex Deucher | 56278a8 | 2009-12-28 13:58:44 -0500 | [diff] [blame] | 1648 | continue; |
| 1649 | rdev->pm.power_state[state_index].non_clock_info.pcie_lanes = |
| 1650 | power_info->info_3.asPowerPlayInfo[i].ucNumPciELanes; |
| 1651 | misc = le32_to_cpu(power_info->info_3.asPowerPlayInfo[i].ulMiscInfo); |
| 1652 | misc2 = le32_to_cpu(power_info->info_3.asPowerPlayInfo[i].ulMiscInfo2); |
| 1653 | if (misc & ATOM_PM_MISCINFO_VOLTAGE_DROP_SUPPORT) { |
| 1654 | rdev->pm.power_state[state_index].clock_info[0].voltage.type = |
| 1655 | VOLTAGE_GPIO; |
| 1656 | rdev->pm.power_state[state_index].clock_info[0].voltage.gpio = |
| 1657 | radeon_lookup_gpio(rdev, |
| 1658 | power_info->info_3.asPowerPlayInfo[i].ucVoltageDropIndex); |
| 1659 | if (misc & ATOM_PM_MISCINFO_VOLTAGE_DROP_ACTIVE_HIGH) |
| 1660 | rdev->pm.power_state[state_index].clock_info[0].voltage.active_high = |
| 1661 | true; |
| 1662 | else |
| 1663 | rdev->pm.power_state[state_index].clock_info[0].voltage.active_high = |
| 1664 | false; |
| 1665 | } else if (misc & ATOM_PM_MISCINFO_PROGRAM_VOLTAGE) { |
| 1666 | rdev->pm.power_state[state_index].clock_info[0].voltage.type = |
| 1667 | VOLTAGE_VDDC; |
| 1668 | rdev->pm.power_state[state_index].clock_info[0].voltage.vddc_id = |
| 1669 | power_info->info_3.asPowerPlayInfo[i].ucVoltageDropIndex; |
| 1670 | if (misc2 & ATOM_PM_MISCINFO2_VDDCI_DYNAMIC_VOLTAGE_EN) { |
| 1671 | rdev->pm.power_state[state_index].clock_info[0].voltage.vddci_enabled = |
| 1672 | true; |
| 1673 | rdev->pm.power_state[state_index].clock_info[0].voltage.vddci_id = |
| 1674 | power_info->info_3.asPowerPlayInfo[i].ucVDDCI_VoltageDropIndex; |
| 1675 | } |
| 1676 | } |
Alex Deucher | 0ec0e74 | 2009-12-23 13:21:58 -0500 | [diff] [blame] | 1677 | /* order matters! */ |
| 1678 | if (misc & ATOM_PM_MISCINFO_POWER_SAVING_MODE) |
| 1679 | rdev->pm.power_state[state_index].type = |
| 1680 | POWER_STATE_TYPE_POWERSAVE; |
| 1681 | if (misc & ATOM_PM_MISCINFO_DEFAULT_DC_STATE_ENTRY_TRUE) |
| 1682 | rdev->pm.power_state[state_index].type = |
| 1683 | POWER_STATE_TYPE_BATTERY; |
| 1684 | if (misc & ATOM_PM_MISCINFO_DEFAULT_LOW_DC_STATE_ENTRY_TRUE) |
| 1685 | rdev->pm.power_state[state_index].type = |
| 1686 | POWER_STATE_TYPE_BATTERY; |
| 1687 | if (misc & ATOM_PM_MISCINFO_LOAD_BALANCE_EN) |
| 1688 | rdev->pm.power_state[state_index].type = |
| 1689 | POWER_STATE_TYPE_BALANCED; |
| 1690 | if (misc & ATOM_PM_MISCINFO_3D_ACCELERATION_EN) |
| 1691 | rdev->pm.power_state[state_index].type = |
| 1692 | POWER_STATE_TYPE_PERFORMANCE; |
| 1693 | if (misc2 & ATOM_PM_MISCINFO2_SYSTEM_AC_LITE_MODE) |
| 1694 | rdev->pm.power_state[state_index].type = |
| 1695 | POWER_STATE_TYPE_BALANCED; |
Alex Deucher | 56278a8 | 2009-12-28 13:58:44 -0500 | [diff] [blame] | 1696 | if (misc & ATOM_PM_MISCINFO_DRIVER_DEFAULT_MODE) { |
Alex Deucher | 0ec0e74 | 2009-12-23 13:21:58 -0500 | [diff] [blame] | 1697 | rdev->pm.power_state[state_index].type = |
| 1698 | POWER_STATE_TYPE_DEFAULT; |
Alex Deucher | 56278a8 | 2009-12-28 13:58:44 -0500 | [diff] [blame] | 1699 | rdev->pm.default_power_state = &rdev->pm.power_state[state_index]; |
Alex Deucher | 56278a8 | 2009-12-28 13:58:44 -0500 | [diff] [blame] | 1700 | rdev->pm.power_state[state_index].default_clock_mode = |
| 1701 | &rdev->pm.power_state[state_index].clock_info[0]; |
Alex Deucher | 56278a8 | 2009-12-28 13:58:44 -0500 | [diff] [blame] | 1702 | } |
| 1703 | state_index++; |
| 1704 | break; |
| 1705 | } |
| 1706 | } |
| 1707 | } else if (frev == 4) { |
Alex Deucher | 29fb52c | 2010-03-11 10:01:17 -0500 | [diff] [blame] | 1708 | /* add the i2c bus for thermal/fan chip */ |
| 1709 | /* no support for internal controller yet */ |
| 1710 | if (power_info->info_4.sThermalController.ucType > 0) { |
Alex Deucher | 06abdb0 | 2010-03-15 01:36:32 -0400 | [diff] [blame] | 1711 | if ((power_info->info_4.sThermalController.ucType == ATOM_PP_THERMALCONTROLLER_RV6xx) || |
Alex Deucher | 29fb52c | 2010-03-11 10:01:17 -0500 | [diff] [blame] | 1712 | (power_info->info_4.sThermalController.ucType == ATOM_PP_THERMALCONTROLLER_RV770)) { |
| 1713 | DRM_INFO("Internal thermal controller %s fan control\n", |
| 1714 | (power_info->info_4.sThermalController.ucFanParameters & |
| 1715 | ATOM_PP_FANPARAMETERS_NOFAN) ? "without" : "with"); |
| 1716 | } else { |
| 1717 | DRM_INFO("Possible %s thermal controller at 0x%02x %s fan control\n", |
| 1718 | pp_lib_thermal_controller_names[power_info->info_4.sThermalController.ucType], |
| 1719 | power_info->info_4.sThermalController.ucI2cAddress >> 1, |
| 1720 | (power_info->info_4.sThermalController.ucFanParameters & |
| 1721 | ATOM_PP_FANPARAMETERS_NOFAN) ? "without" : "with"); |
| 1722 | i2c_bus = radeon_lookup_i2c_gpio(rdev, power_info->info_4.sThermalController.ucI2cLine); |
| 1723 | rdev->pm.i2c_bus = radeon_i2c_create(rdev->ddev, &i2c_bus, "Thermal"); |
| 1724 | } |
| 1725 | } |
Alex Deucher | 56278a8 | 2009-12-28 13:58:44 -0500 | [diff] [blame] | 1726 | for (i = 0; i < power_info->info_4.ucNumStates; i++) { |
| 1727 | mode_index = 0; |
| 1728 | power_state = (struct _ATOM_PPLIB_STATE *) |
| 1729 | (mode_info->atom_context->bios + |
| 1730 | data_offset + |
| 1731 | le16_to_cpu(power_info->info_4.usStateArrayOffset) + |
| 1732 | i * power_info->info_4.ucStateEntrySize); |
| 1733 | non_clock_info = (struct _ATOM_PPLIB_NONCLOCK_INFO *) |
| 1734 | (mode_info->atom_context->bios + |
| 1735 | data_offset + |
| 1736 | le16_to_cpu(power_info->info_4.usNonClockInfoArrayOffset) + |
| 1737 | (power_state->ucNonClockStateIndex * |
| 1738 | power_info->info_4.ucNonClockSize)); |
Alex Deucher | 56278a8 | 2009-12-28 13:58:44 -0500 | [diff] [blame] | 1739 | for (j = 0; j < (power_info->info_4.ucStateEntrySize - 1); j++) { |
| 1740 | if (rdev->flags & RADEON_IS_IGP) { |
| 1741 | struct _ATOM_PPLIB_RS780_CLOCK_INFO *clock_info = |
| 1742 | (struct _ATOM_PPLIB_RS780_CLOCK_INFO *) |
| 1743 | (mode_info->atom_context->bios + |
| 1744 | data_offset + |
| 1745 | le16_to_cpu(power_info->info_4.usClockInfoArrayOffset) + |
| 1746 | (power_state->ucClockStateIndices[j] * |
| 1747 | power_info->info_4.ucClockInfoSize)); |
| 1748 | sclk = le16_to_cpu(clock_info->usLowEngineClockLow); |
| 1749 | sclk |= clock_info->ucLowEngineClockHigh << 16; |
| 1750 | rdev->pm.power_state[state_index].clock_info[mode_index].sclk = sclk; |
| 1751 | /* skip invalid modes */ |
| 1752 | if (rdev->pm.power_state[state_index].clock_info[mode_index].sclk == 0) |
| 1753 | continue; |
| 1754 | /* skip overclock modes for now */ |
| 1755 | if (rdev->pm.power_state[state_index].clock_info[mode_index].sclk > |
Rafał Miłecki | 2745932 | 2010-02-11 22:16:36 +0000 | [diff] [blame] | 1756 | rdev->clock.default_sclk + RADEON_MODE_OVERCLOCK_MARGIN) |
Alex Deucher | 56278a8 | 2009-12-28 13:58:44 -0500 | [diff] [blame] | 1757 | continue; |
| 1758 | rdev->pm.power_state[state_index].clock_info[mode_index].voltage.type = |
| 1759 | VOLTAGE_SW; |
| 1760 | rdev->pm.power_state[state_index].clock_info[mode_index].voltage.voltage = |
| 1761 | clock_info->usVDDC; |
| 1762 | mode_index++; |
| 1763 | } else { |
| 1764 | struct _ATOM_PPLIB_R600_CLOCK_INFO *clock_info = |
| 1765 | (struct _ATOM_PPLIB_R600_CLOCK_INFO *) |
| 1766 | (mode_info->atom_context->bios + |
| 1767 | data_offset + |
| 1768 | le16_to_cpu(power_info->info_4.usClockInfoArrayOffset) + |
| 1769 | (power_state->ucClockStateIndices[j] * |
| 1770 | power_info->info_4.ucClockInfoSize)); |
| 1771 | sclk = le16_to_cpu(clock_info->usEngineClockLow); |
| 1772 | sclk |= clock_info->ucEngineClockHigh << 16; |
| 1773 | mclk = le16_to_cpu(clock_info->usMemoryClockLow); |
| 1774 | mclk |= clock_info->ucMemoryClockHigh << 16; |
| 1775 | rdev->pm.power_state[state_index].clock_info[mode_index].mclk = mclk; |
| 1776 | rdev->pm.power_state[state_index].clock_info[mode_index].sclk = sclk; |
| 1777 | /* skip invalid modes */ |
| 1778 | if ((rdev->pm.power_state[state_index].clock_info[mode_index].mclk == 0) || |
| 1779 | (rdev->pm.power_state[state_index].clock_info[mode_index].sclk == 0)) |
| 1780 | continue; |
| 1781 | /* skip overclock modes for now */ |
| 1782 | if ((rdev->pm.power_state[state_index].clock_info[mode_index].mclk > |
Rafał Miłecki | 2745932 | 2010-02-11 22:16:36 +0000 | [diff] [blame] | 1783 | rdev->clock.default_mclk + RADEON_MODE_OVERCLOCK_MARGIN) || |
Alex Deucher | 56278a8 | 2009-12-28 13:58:44 -0500 | [diff] [blame] | 1784 | (rdev->pm.power_state[state_index].clock_info[mode_index].sclk > |
Rafał Miłecki | 2745932 | 2010-02-11 22:16:36 +0000 | [diff] [blame] | 1785 | rdev->clock.default_sclk + RADEON_MODE_OVERCLOCK_MARGIN)) |
Alex Deucher | 56278a8 | 2009-12-28 13:58:44 -0500 | [diff] [blame] | 1786 | continue; |
| 1787 | rdev->pm.power_state[state_index].clock_info[mode_index].voltage.type = |
| 1788 | VOLTAGE_SW; |
| 1789 | rdev->pm.power_state[state_index].clock_info[mode_index].voltage.voltage = |
| 1790 | clock_info->usVDDC; |
| 1791 | mode_index++; |
| 1792 | } |
| 1793 | } |
| 1794 | rdev->pm.power_state[state_index].num_clock_modes = mode_index; |
| 1795 | if (mode_index) { |
Rafał Miłecki | 845db70 | 2009-12-23 00:42:43 +0100 | [diff] [blame] | 1796 | misc = le32_to_cpu(non_clock_info->ulCapsAndSettings); |
Alex Deucher | 56278a8 | 2009-12-28 13:58:44 -0500 | [diff] [blame] | 1797 | misc2 = le16_to_cpu(non_clock_info->usClassification); |
Rafał Miłecki | 845db70 | 2009-12-23 00:42:43 +0100 | [diff] [blame] | 1798 | rdev->pm.power_state[state_index].non_clock_info.pcie_lanes = |
| 1799 | ((misc & ATOM_PPLIB_PCIE_LINK_WIDTH_MASK) >> |
| 1800 | ATOM_PPLIB_PCIE_LINK_WIDTH_SHIFT) + 1; |
Alex Deucher | 0ec0e74 | 2009-12-23 13:21:58 -0500 | [diff] [blame] | 1801 | switch (misc2 & ATOM_PPLIB_CLASSIFICATION_UI_MASK) { |
| 1802 | case ATOM_PPLIB_CLASSIFICATION_UI_BATTERY: |
| 1803 | rdev->pm.power_state[state_index].type = |
| 1804 | POWER_STATE_TYPE_BATTERY; |
| 1805 | break; |
| 1806 | case ATOM_PPLIB_CLASSIFICATION_UI_BALANCED: |
| 1807 | rdev->pm.power_state[state_index].type = |
| 1808 | POWER_STATE_TYPE_BALANCED; |
| 1809 | break; |
| 1810 | case ATOM_PPLIB_CLASSIFICATION_UI_PERFORMANCE: |
| 1811 | rdev->pm.power_state[state_index].type = |
| 1812 | POWER_STATE_TYPE_PERFORMANCE; |
| 1813 | break; |
| 1814 | } |
Alex Deucher | 56278a8 | 2009-12-28 13:58:44 -0500 | [diff] [blame] | 1815 | if (misc2 & ATOM_PPLIB_CLASSIFICATION_BOOT) { |
Alex Deucher | 0ec0e74 | 2009-12-23 13:21:58 -0500 | [diff] [blame] | 1816 | rdev->pm.power_state[state_index].type = |
| 1817 | POWER_STATE_TYPE_DEFAULT; |
Alex Deucher | 56278a8 | 2009-12-28 13:58:44 -0500 | [diff] [blame] | 1818 | rdev->pm.default_power_state = &rdev->pm.power_state[state_index]; |
Alex Deucher | 56278a8 | 2009-12-28 13:58:44 -0500 | [diff] [blame] | 1819 | rdev->pm.power_state[state_index].default_clock_mode = |
| 1820 | &rdev->pm.power_state[state_index].clock_info[mode_index - 1]; |
Alex Deucher | 56278a8 | 2009-12-28 13:58:44 -0500 | [diff] [blame] | 1821 | } |
| 1822 | state_index++; |
| 1823 | } |
| 1824 | } |
| 1825 | } |
| 1826 | } else { |
| 1827 | /* XXX figure out some good default low power mode for cards w/out power tables */ |
| 1828 | } |
| 1829 | |
| 1830 | if (rdev->pm.default_power_state == NULL) { |
| 1831 | /* add the default mode */ |
Alex Deucher | 0ec0e74 | 2009-12-23 13:21:58 -0500 | [diff] [blame] | 1832 | rdev->pm.power_state[state_index].type = |
| 1833 | POWER_STATE_TYPE_DEFAULT; |
Alex Deucher | 56278a8 | 2009-12-28 13:58:44 -0500 | [diff] [blame] | 1834 | rdev->pm.power_state[state_index].num_clock_modes = 1; |
| 1835 | rdev->pm.power_state[state_index].clock_info[0].mclk = rdev->clock.default_mclk; |
| 1836 | rdev->pm.power_state[state_index].clock_info[0].sclk = rdev->clock.default_sclk; |
| 1837 | rdev->pm.power_state[state_index].default_clock_mode = |
| 1838 | &rdev->pm.power_state[state_index].clock_info[0]; |
Alex Deucher | 56278a8 | 2009-12-28 13:58:44 -0500 | [diff] [blame] | 1839 | rdev->pm.power_state[state_index].clock_info[0].voltage.type = VOLTAGE_NONE; |
| 1840 | if (rdev->asic->get_pcie_lanes) |
| 1841 | rdev->pm.power_state[state_index].non_clock_info.pcie_lanes = radeon_get_pcie_lanes(rdev); |
| 1842 | else |
| 1843 | rdev->pm.power_state[state_index].non_clock_info.pcie_lanes = 16; |
| 1844 | rdev->pm.default_power_state = &rdev->pm.power_state[state_index]; |
Alex Deucher | 56278a8 | 2009-12-28 13:58:44 -0500 | [diff] [blame] | 1845 | state_index++; |
| 1846 | } |
| 1847 | rdev->pm.num_power_states = state_index; |
Rafał Miłecki | 9038dfd | 2010-02-20 23:15:04 +0000 | [diff] [blame] | 1848 | |
| 1849 | rdev->pm.current_power_state = rdev->pm.default_power_state; |
| 1850 | rdev->pm.current_clock_mode = |
| 1851 | rdev->pm.default_power_state->default_clock_mode; |
Alex Deucher | 56278a8 | 2009-12-28 13:58:44 -0500 | [diff] [blame] | 1852 | } |
| 1853 | |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1854 | void radeon_atom_set_clock_gating(struct radeon_device *rdev, int enable) |
| 1855 | { |
| 1856 | DYNAMIC_CLOCK_GATING_PS_ALLOCATION args; |
| 1857 | int index = GetIndexIntoMasterTable(COMMAND, DynamicClockGating); |
| 1858 | |
| 1859 | args.ucEnable = enable; |
| 1860 | |
| 1861 | atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args); |
| 1862 | } |
| 1863 | |
Rafał Miłecki | 7433874 | 2009-11-03 00:53:02 +0100 | [diff] [blame] | 1864 | uint32_t radeon_atom_get_engine_clock(struct radeon_device *rdev) |
| 1865 | { |
| 1866 | GET_ENGINE_CLOCK_PS_ALLOCATION args; |
| 1867 | int index = GetIndexIntoMasterTable(COMMAND, GetEngineClock); |
| 1868 | |
| 1869 | atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args); |
| 1870 | return args.ulReturnEngineClock; |
| 1871 | } |
| 1872 | |
| 1873 | uint32_t radeon_atom_get_memory_clock(struct radeon_device *rdev) |
| 1874 | { |
| 1875 | GET_MEMORY_CLOCK_PS_ALLOCATION args; |
| 1876 | int index = GetIndexIntoMasterTable(COMMAND, GetMemoryClock); |
| 1877 | |
| 1878 | atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args); |
| 1879 | return args.ulReturnMemoryClock; |
| 1880 | } |
| 1881 | |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1882 | void radeon_atom_set_engine_clock(struct radeon_device *rdev, |
| 1883 | uint32_t eng_clock) |
| 1884 | { |
| 1885 | SET_ENGINE_CLOCK_PS_ALLOCATION args; |
| 1886 | int index = GetIndexIntoMasterTable(COMMAND, SetEngineClock); |
| 1887 | |
| 1888 | args.ulTargetEngineClock = eng_clock; /* 10 khz */ |
| 1889 | |
| 1890 | atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args); |
| 1891 | } |
| 1892 | |
| 1893 | void radeon_atom_set_memory_clock(struct radeon_device *rdev, |
| 1894 | uint32_t mem_clock) |
| 1895 | { |
| 1896 | SET_MEMORY_CLOCK_PS_ALLOCATION args; |
| 1897 | int index = GetIndexIntoMasterTable(COMMAND, SetMemoryClock); |
| 1898 | |
| 1899 | if (rdev->flags & RADEON_IS_IGP) |
| 1900 | return; |
| 1901 | |
| 1902 | args.ulTargetMemoryClock = mem_clock; /* 10 khz */ |
| 1903 | |
| 1904 | atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args); |
| 1905 | } |
| 1906 | |
| 1907 | void radeon_atom_initialize_bios_scratch_regs(struct drm_device *dev) |
| 1908 | { |
| 1909 | struct radeon_device *rdev = dev->dev_private; |
| 1910 | uint32_t bios_2_scratch, bios_6_scratch; |
| 1911 | |
| 1912 | if (rdev->family >= CHIP_R600) { |
Dave Airlie | 4ce001a | 2009-08-13 16:32:14 +1000 | [diff] [blame] | 1913 | bios_2_scratch = RREG32(R600_BIOS_2_SCRATCH); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1914 | bios_6_scratch = RREG32(R600_BIOS_6_SCRATCH); |
| 1915 | } else { |
Dave Airlie | 4ce001a | 2009-08-13 16:32:14 +1000 | [diff] [blame] | 1916 | bios_2_scratch = RREG32(RADEON_BIOS_2_SCRATCH); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1917 | bios_6_scratch = RREG32(RADEON_BIOS_6_SCRATCH); |
| 1918 | } |
| 1919 | |
| 1920 | /* let the bios control the backlight */ |
| 1921 | bios_2_scratch &= ~ATOM_S2_VRI_BRIGHT_ENABLE; |
| 1922 | |
| 1923 | /* tell the bios not to handle mode switching */ |
| 1924 | bios_6_scratch |= (ATOM_S6_ACC_BLOCK_DISPLAY_SWITCH | ATOM_S6_ACC_MODE); |
| 1925 | |
| 1926 | if (rdev->family >= CHIP_R600) { |
| 1927 | WREG32(R600_BIOS_2_SCRATCH, bios_2_scratch); |
| 1928 | WREG32(R600_BIOS_6_SCRATCH, bios_6_scratch); |
| 1929 | } else { |
| 1930 | WREG32(RADEON_BIOS_2_SCRATCH, bios_2_scratch); |
| 1931 | WREG32(RADEON_BIOS_6_SCRATCH, bios_6_scratch); |
| 1932 | } |
| 1933 | |
| 1934 | } |
| 1935 | |
Yang Zhao | f657c2a | 2009-09-15 12:21:01 +1000 | [diff] [blame] | 1936 | void radeon_save_bios_scratch_regs(struct radeon_device *rdev) |
| 1937 | { |
| 1938 | uint32_t scratch_reg; |
| 1939 | int i; |
| 1940 | |
| 1941 | if (rdev->family >= CHIP_R600) |
| 1942 | scratch_reg = R600_BIOS_0_SCRATCH; |
| 1943 | else |
| 1944 | scratch_reg = RADEON_BIOS_0_SCRATCH; |
| 1945 | |
| 1946 | for (i = 0; i < RADEON_BIOS_NUM_SCRATCH; i++) |
| 1947 | rdev->bios_scratch[i] = RREG32(scratch_reg + (i * 4)); |
| 1948 | } |
| 1949 | |
| 1950 | void radeon_restore_bios_scratch_regs(struct radeon_device *rdev) |
| 1951 | { |
| 1952 | uint32_t scratch_reg; |
| 1953 | int i; |
| 1954 | |
| 1955 | if (rdev->family >= CHIP_R600) |
| 1956 | scratch_reg = R600_BIOS_0_SCRATCH; |
| 1957 | else |
| 1958 | scratch_reg = RADEON_BIOS_0_SCRATCH; |
| 1959 | |
| 1960 | for (i = 0; i < RADEON_BIOS_NUM_SCRATCH; i++) |
| 1961 | WREG32(scratch_reg + (i * 4), rdev->bios_scratch[i]); |
| 1962 | } |
| 1963 | |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1964 | void radeon_atom_output_lock(struct drm_encoder *encoder, bool lock) |
| 1965 | { |
| 1966 | struct drm_device *dev = encoder->dev; |
| 1967 | struct radeon_device *rdev = dev->dev_private; |
| 1968 | uint32_t bios_6_scratch; |
| 1969 | |
| 1970 | if (rdev->family >= CHIP_R600) |
| 1971 | bios_6_scratch = RREG32(R600_BIOS_6_SCRATCH); |
| 1972 | else |
| 1973 | bios_6_scratch = RREG32(RADEON_BIOS_6_SCRATCH); |
| 1974 | |
| 1975 | if (lock) |
| 1976 | bios_6_scratch |= ATOM_S6_CRITICAL_STATE; |
| 1977 | else |
| 1978 | bios_6_scratch &= ~ATOM_S6_CRITICAL_STATE; |
| 1979 | |
| 1980 | if (rdev->family >= CHIP_R600) |
| 1981 | WREG32(R600_BIOS_6_SCRATCH, bios_6_scratch); |
| 1982 | else |
| 1983 | WREG32(RADEON_BIOS_6_SCRATCH, bios_6_scratch); |
| 1984 | } |
| 1985 | |
| 1986 | /* at some point we may want to break this out into individual functions */ |
| 1987 | void |
| 1988 | radeon_atombios_connected_scratch_regs(struct drm_connector *connector, |
| 1989 | struct drm_encoder *encoder, |
| 1990 | bool connected) |
| 1991 | { |
| 1992 | struct drm_device *dev = connector->dev; |
| 1993 | struct radeon_device *rdev = dev->dev_private; |
| 1994 | struct radeon_connector *radeon_connector = |
| 1995 | to_radeon_connector(connector); |
| 1996 | struct radeon_encoder *radeon_encoder = to_radeon_encoder(encoder); |
| 1997 | uint32_t bios_0_scratch, bios_3_scratch, bios_6_scratch; |
| 1998 | |
| 1999 | if (rdev->family >= CHIP_R600) { |
| 2000 | bios_0_scratch = RREG32(R600_BIOS_0_SCRATCH); |
| 2001 | bios_3_scratch = RREG32(R600_BIOS_3_SCRATCH); |
| 2002 | bios_6_scratch = RREG32(R600_BIOS_6_SCRATCH); |
| 2003 | } else { |
| 2004 | bios_0_scratch = RREG32(RADEON_BIOS_0_SCRATCH); |
| 2005 | bios_3_scratch = RREG32(RADEON_BIOS_3_SCRATCH); |
| 2006 | bios_6_scratch = RREG32(RADEON_BIOS_6_SCRATCH); |
| 2007 | } |
| 2008 | |
| 2009 | if ((radeon_encoder->devices & ATOM_DEVICE_TV1_SUPPORT) && |
| 2010 | (radeon_connector->devices & ATOM_DEVICE_TV1_SUPPORT)) { |
| 2011 | if (connected) { |
| 2012 | DRM_DEBUG("TV1 connected\n"); |
| 2013 | bios_3_scratch |= ATOM_S3_TV1_ACTIVE; |
| 2014 | bios_6_scratch |= ATOM_S6_ACC_REQ_TV1; |
| 2015 | } else { |
| 2016 | DRM_DEBUG("TV1 disconnected\n"); |
| 2017 | bios_0_scratch &= ~ATOM_S0_TV1_MASK; |
| 2018 | bios_3_scratch &= ~ATOM_S3_TV1_ACTIVE; |
| 2019 | bios_6_scratch &= ~ATOM_S6_ACC_REQ_TV1; |
| 2020 | } |
| 2021 | } |
| 2022 | if ((radeon_encoder->devices & ATOM_DEVICE_CV_SUPPORT) && |
| 2023 | (radeon_connector->devices & ATOM_DEVICE_CV_SUPPORT)) { |
| 2024 | if (connected) { |
| 2025 | DRM_DEBUG("CV connected\n"); |
| 2026 | bios_3_scratch |= ATOM_S3_CV_ACTIVE; |
| 2027 | bios_6_scratch |= ATOM_S6_ACC_REQ_CV; |
| 2028 | } else { |
| 2029 | DRM_DEBUG("CV disconnected\n"); |
| 2030 | bios_0_scratch &= ~ATOM_S0_CV_MASK; |
| 2031 | bios_3_scratch &= ~ATOM_S3_CV_ACTIVE; |
| 2032 | bios_6_scratch &= ~ATOM_S6_ACC_REQ_CV; |
| 2033 | } |
| 2034 | } |
| 2035 | if ((radeon_encoder->devices & ATOM_DEVICE_LCD1_SUPPORT) && |
| 2036 | (radeon_connector->devices & ATOM_DEVICE_LCD1_SUPPORT)) { |
| 2037 | if (connected) { |
| 2038 | DRM_DEBUG("LCD1 connected\n"); |
| 2039 | bios_0_scratch |= ATOM_S0_LCD1; |
| 2040 | bios_3_scratch |= ATOM_S3_LCD1_ACTIVE; |
| 2041 | bios_6_scratch |= ATOM_S6_ACC_REQ_LCD1; |
| 2042 | } else { |
| 2043 | DRM_DEBUG("LCD1 disconnected\n"); |
| 2044 | bios_0_scratch &= ~ATOM_S0_LCD1; |
| 2045 | bios_3_scratch &= ~ATOM_S3_LCD1_ACTIVE; |
| 2046 | bios_6_scratch &= ~ATOM_S6_ACC_REQ_LCD1; |
| 2047 | } |
| 2048 | } |
| 2049 | if ((radeon_encoder->devices & ATOM_DEVICE_CRT1_SUPPORT) && |
| 2050 | (radeon_connector->devices & ATOM_DEVICE_CRT1_SUPPORT)) { |
| 2051 | if (connected) { |
| 2052 | DRM_DEBUG("CRT1 connected\n"); |
| 2053 | bios_0_scratch |= ATOM_S0_CRT1_COLOR; |
| 2054 | bios_3_scratch |= ATOM_S3_CRT1_ACTIVE; |
| 2055 | bios_6_scratch |= ATOM_S6_ACC_REQ_CRT1; |
| 2056 | } else { |
| 2057 | DRM_DEBUG("CRT1 disconnected\n"); |
| 2058 | bios_0_scratch &= ~ATOM_S0_CRT1_MASK; |
| 2059 | bios_3_scratch &= ~ATOM_S3_CRT1_ACTIVE; |
| 2060 | bios_6_scratch &= ~ATOM_S6_ACC_REQ_CRT1; |
| 2061 | } |
| 2062 | } |
| 2063 | if ((radeon_encoder->devices & ATOM_DEVICE_CRT2_SUPPORT) && |
| 2064 | (radeon_connector->devices & ATOM_DEVICE_CRT2_SUPPORT)) { |
| 2065 | if (connected) { |
| 2066 | DRM_DEBUG("CRT2 connected\n"); |
| 2067 | bios_0_scratch |= ATOM_S0_CRT2_COLOR; |
| 2068 | bios_3_scratch |= ATOM_S3_CRT2_ACTIVE; |
| 2069 | bios_6_scratch |= ATOM_S6_ACC_REQ_CRT2; |
| 2070 | } else { |
| 2071 | DRM_DEBUG("CRT2 disconnected\n"); |
| 2072 | bios_0_scratch &= ~ATOM_S0_CRT2_MASK; |
| 2073 | bios_3_scratch &= ~ATOM_S3_CRT2_ACTIVE; |
| 2074 | bios_6_scratch &= ~ATOM_S6_ACC_REQ_CRT2; |
| 2075 | } |
| 2076 | } |
| 2077 | if ((radeon_encoder->devices & ATOM_DEVICE_DFP1_SUPPORT) && |
| 2078 | (radeon_connector->devices & ATOM_DEVICE_DFP1_SUPPORT)) { |
| 2079 | if (connected) { |
| 2080 | DRM_DEBUG("DFP1 connected\n"); |
| 2081 | bios_0_scratch |= ATOM_S0_DFP1; |
| 2082 | bios_3_scratch |= ATOM_S3_DFP1_ACTIVE; |
| 2083 | bios_6_scratch |= ATOM_S6_ACC_REQ_DFP1; |
| 2084 | } else { |
| 2085 | DRM_DEBUG("DFP1 disconnected\n"); |
| 2086 | bios_0_scratch &= ~ATOM_S0_DFP1; |
| 2087 | bios_3_scratch &= ~ATOM_S3_DFP1_ACTIVE; |
| 2088 | bios_6_scratch &= ~ATOM_S6_ACC_REQ_DFP1; |
| 2089 | } |
| 2090 | } |
| 2091 | if ((radeon_encoder->devices & ATOM_DEVICE_DFP2_SUPPORT) && |
| 2092 | (radeon_connector->devices & ATOM_DEVICE_DFP2_SUPPORT)) { |
| 2093 | if (connected) { |
| 2094 | DRM_DEBUG("DFP2 connected\n"); |
| 2095 | bios_0_scratch |= ATOM_S0_DFP2; |
| 2096 | bios_3_scratch |= ATOM_S3_DFP2_ACTIVE; |
| 2097 | bios_6_scratch |= ATOM_S6_ACC_REQ_DFP2; |
| 2098 | } else { |
| 2099 | DRM_DEBUG("DFP2 disconnected\n"); |
| 2100 | bios_0_scratch &= ~ATOM_S0_DFP2; |
| 2101 | bios_3_scratch &= ~ATOM_S3_DFP2_ACTIVE; |
| 2102 | bios_6_scratch &= ~ATOM_S6_ACC_REQ_DFP2; |
| 2103 | } |
| 2104 | } |
| 2105 | if ((radeon_encoder->devices & ATOM_DEVICE_DFP3_SUPPORT) && |
| 2106 | (radeon_connector->devices & ATOM_DEVICE_DFP3_SUPPORT)) { |
| 2107 | if (connected) { |
| 2108 | DRM_DEBUG("DFP3 connected\n"); |
| 2109 | bios_0_scratch |= ATOM_S0_DFP3; |
| 2110 | bios_3_scratch |= ATOM_S3_DFP3_ACTIVE; |
| 2111 | bios_6_scratch |= ATOM_S6_ACC_REQ_DFP3; |
| 2112 | } else { |
| 2113 | DRM_DEBUG("DFP3 disconnected\n"); |
| 2114 | bios_0_scratch &= ~ATOM_S0_DFP3; |
| 2115 | bios_3_scratch &= ~ATOM_S3_DFP3_ACTIVE; |
| 2116 | bios_6_scratch &= ~ATOM_S6_ACC_REQ_DFP3; |
| 2117 | } |
| 2118 | } |
| 2119 | if ((radeon_encoder->devices & ATOM_DEVICE_DFP4_SUPPORT) && |
| 2120 | (radeon_connector->devices & ATOM_DEVICE_DFP4_SUPPORT)) { |
| 2121 | if (connected) { |
| 2122 | DRM_DEBUG("DFP4 connected\n"); |
| 2123 | bios_0_scratch |= ATOM_S0_DFP4; |
| 2124 | bios_3_scratch |= ATOM_S3_DFP4_ACTIVE; |
| 2125 | bios_6_scratch |= ATOM_S6_ACC_REQ_DFP4; |
| 2126 | } else { |
| 2127 | DRM_DEBUG("DFP4 disconnected\n"); |
| 2128 | bios_0_scratch &= ~ATOM_S0_DFP4; |
| 2129 | bios_3_scratch &= ~ATOM_S3_DFP4_ACTIVE; |
| 2130 | bios_6_scratch &= ~ATOM_S6_ACC_REQ_DFP4; |
| 2131 | } |
| 2132 | } |
| 2133 | if ((radeon_encoder->devices & ATOM_DEVICE_DFP5_SUPPORT) && |
| 2134 | (radeon_connector->devices & ATOM_DEVICE_DFP5_SUPPORT)) { |
| 2135 | if (connected) { |
| 2136 | DRM_DEBUG("DFP5 connected\n"); |
| 2137 | bios_0_scratch |= ATOM_S0_DFP5; |
| 2138 | bios_3_scratch |= ATOM_S3_DFP5_ACTIVE; |
| 2139 | bios_6_scratch |= ATOM_S6_ACC_REQ_DFP5; |
| 2140 | } else { |
| 2141 | DRM_DEBUG("DFP5 disconnected\n"); |
| 2142 | bios_0_scratch &= ~ATOM_S0_DFP5; |
| 2143 | bios_3_scratch &= ~ATOM_S3_DFP5_ACTIVE; |
| 2144 | bios_6_scratch &= ~ATOM_S6_ACC_REQ_DFP5; |
| 2145 | } |
| 2146 | } |
| 2147 | |
| 2148 | if (rdev->family >= CHIP_R600) { |
| 2149 | WREG32(R600_BIOS_0_SCRATCH, bios_0_scratch); |
| 2150 | WREG32(R600_BIOS_3_SCRATCH, bios_3_scratch); |
| 2151 | WREG32(R600_BIOS_6_SCRATCH, bios_6_scratch); |
| 2152 | } else { |
| 2153 | WREG32(RADEON_BIOS_0_SCRATCH, bios_0_scratch); |
| 2154 | WREG32(RADEON_BIOS_3_SCRATCH, bios_3_scratch); |
| 2155 | WREG32(RADEON_BIOS_6_SCRATCH, bios_6_scratch); |
| 2156 | } |
| 2157 | } |
| 2158 | |
| 2159 | void |
| 2160 | radeon_atombios_encoder_crtc_scratch_regs(struct drm_encoder *encoder, int crtc) |
| 2161 | { |
| 2162 | struct drm_device *dev = encoder->dev; |
| 2163 | struct radeon_device *rdev = dev->dev_private; |
| 2164 | struct radeon_encoder *radeon_encoder = to_radeon_encoder(encoder); |
| 2165 | uint32_t bios_3_scratch; |
| 2166 | |
| 2167 | if (rdev->family >= CHIP_R600) |
| 2168 | bios_3_scratch = RREG32(R600_BIOS_3_SCRATCH); |
| 2169 | else |
| 2170 | bios_3_scratch = RREG32(RADEON_BIOS_3_SCRATCH); |
| 2171 | |
| 2172 | if (radeon_encoder->devices & ATOM_DEVICE_TV1_SUPPORT) { |
| 2173 | bios_3_scratch &= ~ATOM_S3_TV1_CRTC_ACTIVE; |
| 2174 | bios_3_scratch |= (crtc << 18); |
| 2175 | } |
| 2176 | if (radeon_encoder->devices & ATOM_DEVICE_CV_SUPPORT) { |
| 2177 | bios_3_scratch &= ~ATOM_S3_CV_CRTC_ACTIVE; |
| 2178 | bios_3_scratch |= (crtc << 24); |
| 2179 | } |
| 2180 | if (radeon_encoder->devices & ATOM_DEVICE_CRT1_SUPPORT) { |
| 2181 | bios_3_scratch &= ~ATOM_S3_CRT1_CRTC_ACTIVE; |
| 2182 | bios_3_scratch |= (crtc << 16); |
| 2183 | } |
| 2184 | if (radeon_encoder->devices & ATOM_DEVICE_CRT2_SUPPORT) { |
| 2185 | bios_3_scratch &= ~ATOM_S3_CRT2_CRTC_ACTIVE; |
| 2186 | bios_3_scratch |= (crtc << 20); |
| 2187 | } |
| 2188 | if (radeon_encoder->devices & ATOM_DEVICE_LCD1_SUPPORT) { |
| 2189 | bios_3_scratch &= ~ATOM_S3_LCD1_CRTC_ACTIVE; |
| 2190 | bios_3_scratch |= (crtc << 17); |
| 2191 | } |
| 2192 | if (radeon_encoder->devices & ATOM_DEVICE_DFP1_SUPPORT) { |
| 2193 | bios_3_scratch &= ~ATOM_S3_DFP1_CRTC_ACTIVE; |
| 2194 | bios_3_scratch |= (crtc << 19); |
| 2195 | } |
| 2196 | if (radeon_encoder->devices & ATOM_DEVICE_DFP2_SUPPORT) { |
| 2197 | bios_3_scratch &= ~ATOM_S3_DFP2_CRTC_ACTIVE; |
| 2198 | bios_3_scratch |= (crtc << 23); |
| 2199 | } |
| 2200 | if (radeon_encoder->devices & ATOM_DEVICE_DFP3_SUPPORT) { |
| 2201 | bios_3_scratch &= ~ATOM_S3_DFP3_CRTC_ACTIVE; |
| 2202 | bios_3_scratch |= (crtc << 25); |
| 2203 | } |
| 2204 | |
| 2205 | if (rdev->family >= CHIP_R600) |
| 2206 | WREG32(R600_BIOS_3_SCRATCH, bios_3_scratch); |
| 2207 | else |
| 2208 | WREG32(RADEON_BIOS_3_SCRATCH, bios_3_scratch); |
| 2209 | } |
| 2210 | |
| 2211 | void |
| 2212 | radeon_atombios_encoder_dpms_scratch_regs(struct drm_encoder *encoder, bool on) |
| 2213 | { |
| 2214 | struct drm_device *dev = encoder->dev; |
| 2215 | struct radeon_device *rdev = dev->dev_private; |
| 2216 | struct radeon_encoder *radeon_encoder = to_radeon_encoder(encoder); |
| 2217 | uint32_t bios_2_scratch; |
| 2218 | |
| 2219 | if (rdev->family >= CHIP_R600) |
| 2220 | bios_2_scratch = RREG32(R600_BIOS_2_SCRATCH); |
| 2221 | else |
| 2222 | bios_2_scratch = RREG32(RADEON_BIOS_2_SCRATCH); |
| 2223 | |
| 2224 | if (radeon_encoder->devices & ATOM_DEVICE_TV1_SUPPORT) { |
| 2225 | if (on) |
| 2226 | bios_2_scratch &= ~ATOM_S2_TV1_DPMS_STATE; |
| 2227 | else |
| 2228 | bios_2_scratch |= ATOM_S2_TV1_DPMS_STATE; |
| 2229 | } |
| 2230 | if (radeon_encoder->devices & ATOM_DEVICE_CV_SUPPORT) { |
| 2231 | if (on) |
| 2232 | bios_2_scratch &= ~ATOM_S2_CV_DPMS_STATE; |
| 2233 | else |
| 2234 | bios_2_scratch |= ATOM_S2_CV_DPMS_STATE; |
| 2235 | } |
| 2236 | if (radeon_encoder->devices & ATOM_DEVICE_CRT1_SUPPORT) { |
| 2237 | if (on) |
| 2238 | bios_2_scratch &= ~ATOM_S2_CRT1_DPMS_STATE; |
| 2239 | else |
| 2240 | bios_2_scratch |= ATOM_S2_CRT1_DPMS_STATE; |
| 2241 | } |
| 2242 | if (radeon_encoder->devices & ATOM_DEVICE_CRT2_SUPPORT) { |
| 2243 | if (on) |
| 2244 | bios_2_scratch &= ~ATOM_S2_CRT2_DPMS_STATE; |
| 2245 | else |
| 2246 | bios_2_scratch |= ATOM_S2_CRT2_DPMS_STATE; |
| 2247 | } |
| 2248 | if (radeon_encoder->devices & ATOM_DEVICE_LCD1_SUPPORT) { |
| 2249 | if (on) |
| 2250 | bios_2_scratch &= ~ATOM_S2_LCD1_DPMS_STATE; |
| 2251 | else |
| 2252 | bios_2_scratch |= ATOM_S2_LCD1_DPMS_STATE; |
| 2253 | } |
| 2254 | if (radeon_encoder->devices & ATOM_DEVICE_DFP1_SUPPORT) { |
| 2255 | if (on) |
| 2256 | bios_2_scratch &= ~ATOM_S2_DFP1_DPMS_STATE; |
| 2257 | else |
| 2258 | bios_2_scratch |= ATOM_S2_DFP1_DPMS_STATE; |
| 2259 | } |
| 2260 | if (radeon_encoder->devices & ATOM_DEVICE_DFP2_SUPPORT) { |
| 2261 | if (on) |
| 2262 | bios_2_scratch &= ~ATOM_S2_DFP2_DPMS_STATE; |
| 2263 | else |
| 2264 | bios_2_scratch |= ATOM_S2_DFP2_DPMS_STATE; |
| 2265 | } |
| 2266 | if (radeon_encoder->devices & ATOM_DEVICE_DFP3_SUPPORT) { |
| 2267 | if (on) |
| 2268 | bios_2_scratch &= ~ATOM_S2_DFP3_DPMS_STATE; |
| 2269 | else |
| 2270 | bios_2_scratch |= ATOM_S2_DFP3_DPMS_STATE; |
| 2271 | } |
| 2272 | if (radeon_encoder->devices & ATOM_DEVICE_DFP4_SUPPORT) { |
| 2273 | if (on) |
| 2274 | bios_2_scratch &= ~ATOM_S2_DFP4_DPMS_STATE; |
| 2275 | else |
| 2276 | bios_2_scratch |= ATOM_S2_DFP4_DPMS_STATE; |
| 2277 | } |
| 2278 | if (radeon_encoder->devices & ATOM_DEVICE_DFP5_SUPPORT) { |
| 2279 | if (on) |
| 2280 | bios_2_scratch &= ~ATOM_S2_DFP5_DPMS_STATE; |
| 2281 | else |
| 2282 | bios_2_scratch |= ATOM_S2_DFP5_DPMS_STATE; |
| 2283 | } |
| 2284 | |
| 2285 | if (rdev->family >= CHIP_R600) |
| 2286 | WREG32(R600_BIOS_2_SCRATCH, bios_2_scratch); |
| 2287 | else |
| 2288 | WREG32(RADEON_BIOS_2_SCRATCH, bios_2_scratch); |
| 2289 | } |