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 <drm/drmP.h> |
| 27 | #include <drm/drm_crtc_helper.h> |
| 28 | #include <drm/radeon_drm.h> |
| 29 | #include "radeon_fixed.h" |
| 30 | #include "radeon.h" |
| 31 | #include "atom.h" |
| 32 | #include "atom-bits.h" |
| 33 | |
Jerome Glisse | c93bb85 | 2009-07-13 21:04:08 +0200 | [diff] [blame] | 34 | static void atombios_overscan_setup(struct drm_crtc *crtc, |
| 35 | struct drm_display_mode *mode, |
| 36 | struct drm_display_mode *adjusted_mode) |
| 37 | { |
| 38 | struct drm_device *dev = crtc->dev; |
| 39 | struct radeon_device *rdev = dev->dev_private; |
| 40 | struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc); |
| 41 | SET_CRTC_OVERSCAN_PS_ALLOCATION args; |
| 42 | int index = GetIndexIntoMasterTable(COMMAND, SetCRTC_OverScan); |
| 43 | int a1, a2; |
| 44 | |
| 45 | memset(&args, 0, sizeof(args)); |
| 46 | |
| 47 | args.usOverscanRight = 0; |
| 48 | args.usOverscanLeft = 0; |
| 49 | args.usOverscanBottom = 0; |
| 50 | args.usOverscanTop = 0; |
| 51 | args.ucCRTC = radeon_crtc->crtc_id; |
| 52 | |
| 53 | switch (radeon_crtc->rmx_type) { |
| 54 | case RMX_CENTER: |
| 55 | args.usOverscanTop = (adjusted_mode->crtc_vdisplay - mode->crtc_vdisplay) / 2; |
| 56 | args.usOverscanBottom = (adjusted_mode->crtc_vdisplay - mode->crtc_vdisplay) / 2; |
| 57 | args.usOverscanLeft = (adjusted_mode->crtc_hdisplay - mode->crtc_hdisplay) / 2; |
| 58 | args.usOverscanRight = (adjusted_mode->crtc_hdisplay - mode->crtc_hdisplay) / 2; |
| 59 | atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args); |
| 60 | break; |
| 61 | case RMX_ASPECT: |
| 62 | a1 = mode->crtc_vdisplay * adjusted_mode->crtc_hdisplay; |
| 63 | a2 = adjusted_mode->crtc_vdisplay * mode->crtc_hdisplay; |
| 64 | |
| 65 | if (a1 > a2) { |
| 66 | args.usOverscanLeft = (adjusted_mode->crtc_hdisplay - (a2 / mode->crtc_vdisplay)) / 2; |
| 67 | args.usOverscanRight = (adjusted_mode->crtc_hdisplay - (a2 / mode->crtc_vdisplay)) / 2; |
| 68 | } else if (a2 > a1) { |
| 69 | args.usOverscanLeft = (adjusted_mode->crtc_vdisplay - (a1 / mode->crtc_hdisplay)) / 2; |
| 70 | args.usOverscanRight = (adjusted_mode->crtc_vdisplay - (a1 / mode->crtc_hdisplay)) / 2; |
| 71 | } |
| 72 | atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args); |
| 73 | break; |
| 74 | case RMX_FULL: |
| 75 | default: |
| 76 | args.usOverscanRight = 0; |
| 77 | args.usOverscanLeft = 0; |
| 78 | args.usOverscanBottom = 0; |
| 79 | args.usOverscanTop = 0; |
| 80 | atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args); |
| 81 | break; |
| 82 | } |
| 83 | } |
| 84 | |
| 85 | static void atombios_scaler_setup(struct drm_crtc *crtc) |
| 86 | { |
| 87 | struct drm_device *dev = crtc->dev; |
| 88 | struct radeon_device *rdev = dev->dev_private; |
| 89 | struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc); |
| 90 | ENABLE_SCALER_PS_ALLOCATION args; |
| 91 | int index = GetIndexIntoMasterTable(COMMAND, EnableScaler); |
Dave Airlie | 4ce001a | 2009-08-13 16:32:14 +1000 | [diff] [blame] | 92 | |
Jerome Glisse | c93bb85 | 2009-07-13 21:04:08 +0200 | [diff] [blame] | 93 | /* fixme - fill in enc_priv for atom dac */ |
| 94 | enum radeon_tv_std tv_std = TV_STD_NTSC; |
Dave Airlie | 4ce001a | 2009-08-13 16:32:14 +1000 | [diff] [blame] | 95 | bool is_tv = false, is_cv = false; |
| 96 | struct drm_encoder *encoder; |
Jerome Glisse | c93bb85 | 2009-07-13 21:04:08 +0200 | [diff] [blame] | 97 | |
| 98 | if (!ASIC_IS_AVIVO(rdev) && radeon_crtc->crtc_id) |
| 99 | return; |
| 100 | |
Dave Airlie | 4ce001a | 2009-08-13 16:32:14 +1000 | [diff] [blame] | 101 | list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) { |
| 102 | /* find tv std */ |
| 103 | if (encoder->crtc == crtc) { |
| 104 | struct radeon_encoder *radeon_encoder = to_radeon_encoder(encoder); |
| 105 | if (radeon_encoder->active_device & ATOM_DEVICE_TV_SUPPORT) { |
| 106 | struct radeon_encoder_atom_dac *tv_dac = radeon_encoder->enc_priv; |
| 107 | tv_std = tv_dac->tv_std; |
| 108 | is_tv = true; |
| 109 | } |
| 110 | } |
| 111 | } |
| 112 | |
Jerome Glisse | c93bb85 | 2009-07-13 21:04:08 +0200 | [diff] [blame] | 113 | memset(&args, 0, sizeof(args)); |
| 114 | |
| 115 | args.ucScaler = radeon_crtc->crtc_id; |
| 116 | |
Dave Airlie | 4ce001a | 2009-08-13 16:32:14 +1000 | [diff] [blame] | 117 | if (is_tv) { |
Jerome Glisse | c93bb85 | 2009-07-13 21:04:08 +0200 | [diff] [blame] | 118 | switch (tv_std) { |
| 119 | case TV_STD_NTSC: |
| 120 | default: |
| 121 | args.ucTVStandard = ATOM_TV_NTSC; |
| 122 | break; |
| 123 | case TV_STD_PAL: |
| 124 | args.ucTVStandard = ATOM_TV_PAL; |
| 125 | break; |
| 126 | case TV_STD_PAL_M: |
| 127 | args.ucTVStandard = ATOM_TV_PALM; |
| 128 | break; |
| 129 | case TV_STD_PAL_60: |
| 130 | args.ucTVStandard = ATOM_TV_PAL60; |
| 131 | break; |
| 132 | case TV_STD_NTSC_J: |
| 133 | args.ucTVStandard = ATOM_TV_NTSCJ; |
| 134 | break; |
| 135 | case TV_STD_SCART_PAL: |
| 136 | args.ucTVStandard = ATOM_TV_PAL; /* ??? */ |
| 137 | break; |
| 138 | case TV_STD_SECAM: |
| 139 | args.ucTVStandard = ATOM_TV_SECAM; |
| 140 | break; |
| 141 | case TV_STD_PAL_CN: |
| 142 | args.ucTVStandard = ATOM_TV_PALCN; |
| 143 | break; |
| 144 | } |
| 145 | args.ucEnable = SCALER_ENABLE_MULTITAP_MODE; |
Dave Airlie | 4ce001a | 2009-08-13 16:32:14 +1000 | [diff] [blame] | 146 | } else if (is_cv) { |
Jerome Glisse | c93bb85 | 2009-07-13 21:04:08 +0200 | [diff] [blame] | 147 | args.ucTVStandard = ATOM_TV_CV; |
| 148 | args.ucEnable = SCALER_ENABLE_MULTITAP_MODE; |
| 149 | } else { |
| 150 | switch (radeon_crtc->rmx_type) { |
| 151 | case RMX_FULL: |
| 152 | args.ucEnable = ATOM_SCALER_EXPANSION; |
| 153 | break; |
| 154 | case RMX_CENTER: |
| 155 | args.ucEnable = ATOM_SCALER_CENTER; |
| 156 | break; |
| 157 | case RMX_ASPECT: |
| 158 | args.ucEnable = ATOM_SCALER_EXPANSION; |
| 159 | break; |
| 160 | default: |
| 161 | if (ASIC_IS_AVIVO(rdev)) |
| 162 | args.ucEnable = ATOM_SCALER_DISABLE; |
| 163 | else |
| 164 | args.ucEnable = ATOM_SCALER_CENTER; |
| 165 | break; |
| 166 | } |
| 167 | } |
| 168 | atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args); |
Dave Airlie | 4ce001a | 2009-08-13 16:32:14 +1000 | [diff] [blame] | 169 | if ((is_tv || is_cv) |
| 170 | && rdev->family >= CHIP_RV515 && rdev->family <= CHIP_R580) { |
| 171 | atom_rv515_force_tv_scaler(rdev, radeon_crtc); |
Jerome Glisse | c93bb85 | 2009-07-13 21:04:08 +0200 | [diff] [blame] | 172 | } |
| 173 | } |
| 174 | |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 175 | static void atombios_lock_crtc(struct drm_crtc *crtc, int lock) |
| 176 | { |
| 177 | struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc); |
| 178 | struct drm_device *dev = crtc->dev; |
| 179 | struct radeon_device *rdev = dev->dev_private; |
| 180 | int index = |
| 181 | GetIndexIntoMasterTable(COMMAND, UpdateCRTC_DoubleBufferRegisters); |
| 182 | ENABLE_CRTC_PS_ALLOCATION args; |
| 183 | |
| 184 | memset(&args, 0, sizeof(args)); |
| 185 | |
| 186 | args.ucCRTC = radeon_crtc->crtc_id; |
| 187 | args.ucEnable = lock; |
| 188 | |
| 189 | atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args); |
| 190 | } |
| 191 | |
| 192 | static void atombios_enable_crtc(struct drm_crtc *crtc, int state) |
| 193 | { |
| 194 | struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc); |
| 195 | struct drm_device *dev = crtc->dev; |
| 196 | struct radeon_device *rdev = dev->dev_private; |
| 197 | int index = GetIndexIntoMasterTable(COMMAND, EnableCRTC); |
| 198 | ENABLE_CRTC_PS_ALLOCATION args; |
| 199 | |
| 200 | memset(&args, 0, sizeof(args)); |
| 201 | |
| 202 | args.ucCRTC = radeon_crtc->crtc_id; |
| 203 | args.ucEnable = state; |
| 204 | |
| 205 | atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args); |
| 206 | } |
| 207 | |
| 208 | static void atombios_enable_crtc_memreq(struct drm_crtc *crtc, int state) |
| 209 | { |
| 210 | struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc); |
| 211 | struct drm_device *dev = crtc->dev; |
| 212 | struct radeon_device *rdev = dev->dev_private; |
| 213 | int index = GetIndexIntoMasterTable(COMMAND, EnableCRTCMemReq); |
| 214 | ENABLE_CRTC_PS_ALLOCATION args; |
| 215 | |
| 216 | memset(&args, 0, sizeof(args)); |
| 217 | |
| 218 | args.ucCRTC = radeon_crtc->crtc_id; |
| 219 | args.ucEnable = state; |
| 220 | |
| 221 | atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args); |
| 222 | } |
| 223 | |
| 224 | static void atombios_blank_crtc(struct drm_crtc *crtc, int state) |
| 225 | { |
| 226 | struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc); |
| 227 | struct drm_device *dev = crtc->dev; |
| 228 | struct radeon_device *rdev = dev->dev_private; |
| 229 | int index = GetIndexIntoMasterTable(COMMAND, BlankCRTC); |
| 230 | BLANK_CRTC_PS_ALLOCATION args; |
| 231 | |
| 232 | memset(&args, 0, sizeof(args)); |
| 233 | |
| 234 | args.ucCRTC = radeon_crtc->crtc_id; |
| 235 | args.ucBlanking = state; |
| 236 | |
| 237 | atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args); |
| 238 | } |
| 239 | |
| 240 | void atombios_crtc_dpms(struct drm_crtc *crtc, int mode) |
| 241 | { |
| 242 | struct drm_device *dev = crtc->dev; |
| 243 | struct radeon_device *rdev = dev->dev_private; |
Alex Deucher | 500b758 | 2009-12-02 11:46:52 -0500 | [diff] [blame] | 244 | struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 245 | |
| 246 | switch (mode) { |
| 247 | case DRM_MODE_DPMS_ON: |
Alex Deucher | 5f9a0eb | 2009-10-08 13:08:29 -0400 | [diff] [blame] | 248 | atombios_enable_crtc(crtc, 1); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 249 | if (ASIC_IS_DCE3(rdev)) |
| 250 | atombios_enable_crtc_memreq(crtc, 1); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 251 | atombios_blank_crtc(crtc, 0); |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame^] | 252 | /* XXX re-enable when interrupt support is added */ |
| 253 | if (!ASIC_IS_DCE4(rdev)) |
| 254 | drm_vblank_post_modeset(dev, radeon_crtc->crtc_id); |
Alex Deucher | 500b758 | 2009-12-02 11:46:52 -0500 | [diff] [blame] | 255 | radeon_crtc_load_lut(crtc); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 256 | break; |
| 257 | case DRM_MODE_DPMS_STANDBY: |
| 258 | case DRM_MODE_DPMS_SUSPEND: |
| 259 | case DRM_MODE_DPMS_OFF: |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame^] | 260 | /* XXX re-enable when interrupt support is added */ |
| 261 | if (!ASIC_IS_DCE4(rdev)) |
| 262 | drm_vblank_pre_modeset(dev, radeon_crtc->crtc_id); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 263 | atombios_blank_crtc(crtc, 1); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 264 | if (ASIC_IS_DCE3(rdev)) |
| 265 | atombios_enable_crtc_memreq(crtc, 0); |
Alex Deucher | 5f9a0eb | 2009-10-08 13:08:29 -0400 | [diff] [blame] | 266 | atombios_enable_crtc(crtc, 0); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 267 | break; |
| 268 | } |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 269 | } |
| 270 | |
| 271 | static void |
| 272 | atombios_set_crtc_dtd_timing(struct drm_crtc *crtc, |
Alex Deucher | 5a9bcac | 2009-10-08 15:09:31 -0400 | [diff] [blame] | 273 | struct drm_display_mode *mode) |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 274 | { |
Alex Deucher | 5a9bcac | 2009-10-08 15:09:31 -0400 | [diff] [blame] | 275 | struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 276 | struct drm_device *dev = crtc->dev; |
| 277 | struct radeon_device *rdev = dev->dev_private; |
Alex Deucher | 5a9bcac | 2009-10-08 15:09:31 -0400 | [diff] [blame] | 278 | SET_CRTC_USING_DTD_TIMING_PARAMETERS args; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 279 | int index = GetIndexIntoMasterTable(COMMAND, SetCRTC_UsingDTDTiming); |
Alex Deucher | 5a9bcac | 2009-10-08 15:09:31 -0400 | [diff] [blame] | 280 | u16 misc = 0; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 281 | |
Alex Deucher | 5a9bcac | 2009-10-08 15:09:31 -0400 | [diff] [blame] | 282 | memset(&args, 0, sizeof(args)); |
| 283 | args.usH_Size = cpu_to_le16(mode->crtc_hdisplay); |
| 284 | args.usH_Blanking_Time = |
| 285 | cpu_to_le16(mode->crtc_hblank_end - mode->crtc_hdisplay); |
| 286 | args.usV_Size = cpu_to_le16(mode->crtc_vdisplay); |
| 287 | args.usV_Blanking_Time = |
| 288 | cpu_to_le16(mode->crtc_vblank_end - mode->crtc_vdisplay); |
| 289 | args.usH_SyncOffset = |
| 290 | cpu_to_le16(mode->crtc_hsync_start - mode->crtc_hdisplay); |
| 291 | args.usH_SyncWidth = |
| 292 | cpu_to_le16(mode->crtc_hsync_end - mode->crtc_hsync_start); |
| 293 | args.usV_SyncOffset = |
| 294 | cpu_to_le16(mode->crtc_vsync_start - mode->crtc_vdisplay); |
| 295 | args.usV_SyncWidth = |
| 296 | cpu_to_le16(mode->crtc_vsync_end - mode->crtc_vsync_start); |
| 297 | /*args.ucH_Border = mode->hborder;*/ |
| 298 | /*args.ucV_Border = mode->vborder;*/ |
| 299 | |
| 300 | if (mode->flags & DRM_MODE_FLAG_NVSYNC) |
| 301 | misc |= ATOM_VSYNC_POLARITY; |
| 302 | if (mode->flags & DRM_MODE_FLAG_NHSYNC) |
| 303 | misc |= ATOM_HSYNC_POLARITY; |
| 304 | if (mode->flags & DRM_MODE_FLAG_CSYNC) |
| 305 | misc |= ATOM_COMPOSITESYNC; |
| 306 | if (mode->flags & DRM_MODE_FLAG_INTERLACE) |
| 307 | misc |= ATOM_INTERLACE; |
| 308 | if (mode->flags & DRM_MODE_FLAG_DBLSCAN) |
| 309 | misc |= ATOM_DOUBLE_CLOCK_MODE; |
| 310 | |
| 311 | args.susModeMiscInfo.usAccess = cpu_to_le16(misc); |
| 312 | args.ucCRTC = radeon_crtc->crtc_id; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 313 | |
Alex Deucher | 5a9bcac | 2009-10-08 15:09:31 -0400 | [diff] [blame] | 314 | atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 315 | } |
| 316 | |
Alex Deucher | 5a9bcac | 2009-10-08 15:09:31 -0400 | [diff] [blame] | 317 | static void atombios_crtc_set_timing(struct drm_crtc *crtc, |
| 318 | struct drm_display_mode *mode) |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 319 | { |
Alex Deucher | 5a9bcac | 2009-10-08 15:09:31 -0400 | [diff] [blame] | 320 | struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 321 | struct drm_device *dev = crtc->dev; |
| 322 | struct radeon_device *rdev = dev->dev_private; |
Alex Deucher | 5a9bcac | 2009-10-08 15:09:31 -0400 | [diff] [blame] | 323 | SET_CRTC_TIMING_PARAMETERS_PS_ALLOCATION args; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 324 | int index = GetIndexIntoMasterTable(COMMAND, SetCRTC_Timing); |
Alex Deucher | 5a9bcac | 2009-10-08 15:09:31 -0400 | [diff] [blame] | 325 | u16 misc = 0; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 326 | |
Alex Deucher | 5a9bcac | 2009-10-08 15:09:31 -0400 | [diff] [blame] | 327 | memset(&args, 0, sizeof(args)); |
| 328 | args.usH_Total = cpu_to_le16(mode->crtc_htotal); |
| 329 | args.usH_Disp = cpu_to_le16(mode->crtc_hdisplay); |
| 330 | args.usH_SyncStart = cpu_to_le16(mode->crtc_hsync_start); |
| 331 | args.usH_SyncWidth = |
| 332 | cpu_to_le16(mode->crtc_hsync_end - mode->crtc_hsync_start); |
| 333 | args.usV_Total = cpu_to_le16(mode->crtc_vtotal); |
| 334 | args.usV_Disp = cpu_to_le16(mode->crtc_vdisplay); |
| 335 | args.usV_SyncStart = cpu_to_le16(mode->crtc_vsync_start); |
| 336 | args.usV_SyncWidth = |
| 337 | cpu_to_le16(mode->crtc_vsync_end - mode->crtc_vsync_start); |
| 338 | |
| 339 | if (mode->flags & DRM_MODE_FLAG_NVSYNC) |
| 340 | misc |= ATOM_VSYNC_POLARITY; |
| 341 | if (mode->flags & DRM_MODE_FLAG_NHSYNC) |
| 342 | misc |= ATOM_HSYNC_POLARITY; |
| 343 | if (mode->flags & DRM_MODE_FLAG_CSYNC) |
| 344 | misc |= ATOM_COMPOSITESYNC; |
| 345 | if (mode->flags & DRM_MODE_FLAG_INTERLACE) |
| 346 | misc |= ATOM_INTERLACE; |
| 347 | if (mode->flags & DRM_MODE_FLAG_DBLSCAN) |
| 348 | misc |= ATOM_DOUBLE_CLOCK_MODE; |
| 349 | |
| 350 | args.susModeMiscInfo.usAccess = cpu_to_le16(misc); |
| 351 | args.ucCRTC = radeon_crtc->crtc_id; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 352 | |
Alex Deucher | 5a9bcac | 2009-10-08 15:09:31 -0400 | [diff] [blame] | 353 | atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 354 | } |
| 355 | |
Alex Deucher | 26b9fc3 | 2010-02-01 16:39:11 -0500 | [diff] [blame] | 356 | union atom_enable_ss { |
| 357 | ENABLE_LVDS_SS_PARAMETERS legacy; |
| 358 | ENABLE_SPREAD_SPECTRUM_ON_PPLL_PS_ALLOCATION v1; |
| 359 | }; |
| 360 | |
Alex Deucher | ebbe1cb | 2009-10-16 11:15:25 -0400 | [diff] [blame] | 361 | static void atombios_set_ss(struct drm_crtc *crtc, int enable) |
| 362 | { |
| 363 | struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc); |
| 364 | struct drm_device *dev = crtc->dev; |
| 365 | struct radeon_device *rdev = dev->dev_private; |
| 366 | struct drm_encoder *encoder = NULL; |
| 367 | struct radeon_encoder *radeon_encoder = NULL; |
| 368 | struct radeon_encoder_atom_dig *dig = NULL; |
| 369 | int index = GetIndexIntoMasterTable(COMMAND, EnableSpreadSpectrumOnPPLL); |
Alex Deucher | 26b9fc3 | 2010-02-01 16:39:11 -0500 | [diff] [blame] | 370 | union atom_enable_ss args; |
Alex Deucher | ebbe1cb | 2009-10-16 11:15:25 -0400 | [diff] [blame] | 371 | uint16_t percentage = 0; |
| 372 | uint8_t type = 0, step = 0, delay = 0, range = 0; |
| 373 | |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame^] | 374 | /* XXX add ss support for DCE4 */ |
| 375 | if (ASIC_IS_DCE4(rdev)) |
| 376 | return; |
| 377 | |
Alex Deucher | ebbe1cb | 2009-10-16 11:15:25 -0400 | [diff] [blame] | 378 | list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) { |
| 379 | if (encoder->crtc == crtc) { |
| 380 | radeon_encoder = to_radeon_encoder(encoder); |
Alex Deucher | ebbe1cb | 2009-10-16 11:15:25 -0400 | [diff] [blame] | 381 | /* only enable spread spectrum on LVDS */ |
Alex Deucher | d11aa88 | 2009-10-28 00:51:20 -0400 | [diff] [blame] | 382 | if (radeon_encoder->devices & (ATOM_DEVICE_LCD_SUPPORT)) { |
| 383 | dig = radeon_encoder->enc_priv; |
| 384 | if (dig && dig->ss) { |
| 385 | percentage = dig->ss->percentage; |
| 386 | type = dig->ss->type; |
| 387 | step = dig->ss->step; |
| 388 | delay = dig->ss->delay; |
| 389 | range = dig->ss->range; |
| 390 | } else if (enable) |
| 391 | return; |
Alex Deucher | ebbe1cb | 2009-10-16 11:15:25 -0400 | [diff] [blame] | 392 | } else if (enable) |
| 393 | return; |
| 394 | break; |
| 395 | } |
| 396 | } |
| 397 | |
| 398 | if (!radeon_encoder) |
| 399 | return; |
| 400 | |
Alex Deucher | 26b9fc3 | 2010-02-01 16:39:11 -0500 | [diff] [blame] | 401 | memset(&args, 0, sizeof(args)); |
Alex Deucher | ebbe1cb | 2009-10-16 11:15:25 -0400 | [diff] [blame] | 402 | if (ASIC_IS_AVIVO(rdev)) { |
Alex Deucher | 26b9fc3 | 2010-02-01 16:39:11 -0500 | [diff] [blame] | 403 | args.v1.usSpreadSpectrumPercentage = cpu_to_le16(percentage); |
| 404 | args.v1.ucSpreadSpectrumType = type; |
| 405 | args.v1.ucSpreadSpectrumStep = step; |
| 406 | args.v1.ucSpreadSpectrumDelay = delay; |
| 407 | args.v1.ucSpreadSpectrumRange = range; |
| 408 | args.v1.ucPpll = radeon_crtc->crtc_id ? ATOM_PPLL2 : ATOM_PPLL1; |
| 409 | args.v1.ucEnable = enable; |
Alex Deucher | ebbe1cb | 2009-10-16 11:15:25 -0400 | [diff] [blame] | 410 | } else { |
Alex Deucher | 26b9fc3 | 2010-02-01 16:39:11 -0500 | [diff] [blame] | 411 | args.legacy.usSpreadSpectrumPercentage = cpu_to_le16(percentage); |
| 412 | args.legacy.ucSpreadSpectrumType = type; |
| 413 | args.legacy.ucSpreadSpectrumStepSize_Delay = (step & 3) << 2; |
| 414 | args.legacy.ucSpreadSpectrumStepSize_Delay |= (delay & 7) << 4; |
| 415 | args.legacy.ucEnable = enable; |
Alex Deucher | ebbe1cb | 2009-10-16 11:15:25 -0400 | [diff] [blame] | 416 | } |
Alex Deucher | 26b9fc3 | 2010-02-01 16:39:11 -0500 | [diff] [blame] | 417 | atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args); |
Alex Deucher | ebbe1cb | 2009-10-16 11:15:25 -0400 | [diff] [blame] | 418 | } |
| 419 | |
Alex Deucher | 4eaeca3 | 2010-01-19 17:32:27 -0500 | [diff] [blame] | 420 | union adjust_pixel_clock { |
| 421 | ADJUST_DISPLAY_PLL_PS_ALLOCATION v1; |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame^] | 422 | ADJUST_DISPLAY_PLL_PS_ALLOCATION_V3 v3; |
Alex Deucher | 4eaeca3 | 2010-01-19 17:32:27 -0500 | [diff] [blame] | 423 | }; |
| 424 | |
| 425 | static u32 atombios_adjust_pll(struct drm_crtc *crtc, |
| 426 | struct drm_display_mode *mode, |
| 427 | struct radeon_pll *pll) |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 428 | { |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 429 | struct drm_device *dev = crtc->dev; |
| 430 | struct radeon_device *rdev = dev->dev_private; |
| 431 | struct drm_encoder *encoder = NULL; |
| 432 | struct radeon_encoder *radeon_encoder = NULL; |
Alex Deucher | 4eaeca3 | 2010-01-19 17:32:27 -0500 | [diff] [blame] | 433 | u32 adjusted_clock = mode->clock; |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame^] | 434 | int encoder_mode = 0; |
Alex Deucher | fc10332 | 2010-01-19 17:16:10 -0500 | [diff] [blame] | 435 | |
Alex Deucher | 4eaeca3 | 2010-01-19 17:32:27 -0500 | [diff] [blame] | 436 | /* reset the pll flags */ |
| 437 | pll->flags = 0; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 438 | |
Alex Deucher | 7c27f87 | 2010-02-02 12:05:01 -0500 | [diff] [blame] | 439 | /* select the PLL algo */ |
| 440 | if (ASIC_IS_AVIVO(rdev)) { |
| 441 | if (radeon_new_pll) |
| 442 | pll->algo = PLL_ALGO_AVIVO; |
| 443 | else |
| 444 | pll->algo = PLL_ALGO_LEGACY; |
| 445 | } else |
| 446 | pll->algo = PLL_ALGO_LEGACY; |
| 447 | |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 448 | if (ASIC_IS_AVIVO(rdev)) { |
Alex Deucher | eb1300b | 2009-07-13 11:09:56 -0400 | [diff] [blame] | 449 | if ((rdev->family == CHIP_RS600) || |
| 450 | (rdev->family == CHIP_RS690) || |
| 451 | (rdev->family == CHIP_RS740)) |
Alex Deucher | fc10332 | 2010-01-19 17:16:10 -0500 | [diff] [blame] | 452 | pll->flags |= (RADEON_PLL_USE_FRAC_FB_DIV | |
| 453 | RADEON_PLL_PREFER_CLOSEST_LOWER); |
Alex Deucher | eb1300b | 2009-07-13 11:09:56 -0400 | [diff] [blame] | 454 | |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 455 | if (ASIC_IS_DCE32(rdev) && mode->clock > 200000) /* range limits??? */ |
Alex Deucher | fc10332 | 2010-01-19 17:16:10 -0500 | [diff] [blame] | 456 | pll->flags |= RADEON_PLL_PREFER_HIGH_FB_DIV; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 457 | else |
Alex Deucher | fc10332 | 2010-01-19 17:16:10 -0500 | [diff] [blame] | 458 | pll->flags |= RADEON_PLL_PREFER_LOW_REF_DIV; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 459 | } else { |
Alex Deucher | fc10332 | 2010-01-19 17:16:10 -0500 | [diff] [blame] | 460 | pll->flags |= RADEON_PLL_LEGACY; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 461 | |
| 462 | if (mode->clock > 200000) /* range limits??? */ |
Alex Deucher | fc10332 | 2010-01-19 17:16:10 -0500 | [diff] [blame] | 463 | pll->flags |= RADEON_PLL_PREFER_HIGH_FB_DIV; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 464 | else |
Alex Deucher | fc10332 | 2010-01-19 17:16:10 -0500 | [diff] [blame] | 465 | pll->flags |= RADEON_PLL_PREFER_LOW_REF_DIV; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 466 | |
| 467 | } |
| 468 | |
| 469 | list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) { |
| 470 | if (encoder->crtc == crtc) { |
Alex Deucher | 4eaeca3 | 2010-01-19 17:32:27 -0500 | [diff] [blame] | 471 | radeon_encoder = to_radeon_encoder(encoder); |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame^] | 472 | encoder_mode = atombios_get_encoder_mode(encoder); |
Alex Deucher | 4eaeca3 | 2010-01-19 17:32:27 -0500 | [diff] [blame] | 473 | if (ASIC_IS_AVIVO(rdev)) { |
| 474 | /* DVO wants 2x pixel clock if the DVO chip is in 12 bit mode */ |
| 475 | if (radeon_encoder->encoder_id == ENCODER_OBJECT_ID_INTERNAL_KLDSCP_DVO1) |
| 476 | adjusted_clock = mode->clock * 2; |
Alex Deucher | 7c27f87 | 2010-02-02 12:05:01 -0500 | [diff] [blame] | 477 | /* LVDS PLL quirks */ |
| 478 | if (encoder->encoder_type == DRM_MODE_ENCODER_LVDS) { |
| 479 | struct radeon_encoder_atom_dig *dig = radeon_encoder->enc_priv; |
| 480 | pll->algo = dig->pll_algo; |
| 481 | } |
Alex Deucher | 4eaeca3 | 2010-01-19 17:32:27 -0500 | [diff] [blame] | 482 | } else { |
| 483 | if (encoder->encoder_type != DRM_MODE_ENCODER_DAC) |
Alex Deucher | fc10332 | 2010-01-19 17:16:10 -0500 | [diff] [blame] | 484 | pll->flags |= RADEON_PLL_NO_ODD_POST_DIV; |
Alex Deucher | 4eaeca3 | 2010-01-19 17:32:27 -0500 | [diff] [blame] | 485 | if (encoder->encoder_type == DRM_MODE_ENCODER_LVDS) |
Alex Deucher | fc10332 | 2010-01-19 17:16:10 -0500 | [diff] [blame] | 486 | pll->flags |= RADEON_PLL_USE_REF_DIV; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 487 | } |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 488 | break; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 489 | } |
| 490 | } |
| 491 | |
Alex Deucher | 2606c88 | 2009-10-08 13:36:21 -0400 | [diff] [blame] | 492 | /* DCE3+ has an AdjustDisplayPll that will adjust the pixel clock |
| 493 | * accordingly based on the encoder/transmitter to work around |
| 494 | * special hw requirements. |
| 495 | */ |
| 496 | if (ASIC_IS_DCE3(rdev)) { |
Alex Deucher | 4eaeca3 | 2010-01-19 17:32:27 -0500 | [diff] [blame] | 497 | union adjust_pixel_clock args; |
Alex Deucher | 4eaeca3 | 2010-01-19 17:32:27 -0500 | [diff] [blame] | 498 | u8 frev, crev; |
| 499 | int index; |
Alex Deucher | 2606c88 | 2009-10-08 13:36:21 -0400 | [diff] [blame] | 500 | |
Alex Deucher | 2606c88 | 2009-10-08 13:36:21 -0400 | [diff] [blame] | 501 | index = GetIndexIntoMasterTable(COMMAND, AdjustDisplayPll); |
Alex Deucher | 4eaeca3 | 2010-01-19 17:32:27 -0500 | [diff] [blame] | 502 | atom_parse_cmd_header(rdev->mode_info.atom_context, index, &frev, |
| 503 | &crev); |
| 504 | |
| 505 | memset(&args, 0, sizeof(args)); |
| 506 | |
| 507 | switch (frev) { |
| 508 | case 1: |
| 509 | switch (crev) { |
| 510 | case 1: |
| 511 | case 2: |
| 512 | args.v1.usPixelClock = cpu_to_le16(mode->clock / 10); |
| 513 | args.v1.ucTransmitterID = radeon_encoder->encoder_id; |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame^] | 514 | args.v1.ucEncodeMode = encoder_mode; |
Alex Deucher | 4eaeca3 | 2010-01-19 17:32:27 -0500 | [diff] [blame] | 515 | |
| 516 | atom_execute_table(rdev->mode_info.atom_context, |
| 517 | index, (uint32_t *)&args); |
| 518 | adjusted_clock = le16_to_cpu(args.v1.usPixelClock) * 10; |
| 519 | break; |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame^] | 520 | case 3: |
| 521 | args.v3.sInput.usPixelClock = cpu_to_le16(mode->clock / 10); |
| 522 | args.v3.sInput.ucTransmitterID = radeon_encoder->encoder_id; |
| 523 | args.v3.sInput.ucEncodeMode = encoder_mode; |
| 524 | args.v3.sInput.ucDispPllConfig = 0; |
| 525 | if (radeon_encoder->devices & (ATOM_DEVICE_DFP_SUPPORT)) { |
| 526 | struct radeon_encoder_atom_dig *dig = radeon_encoder->enc_priv; |
| 527 | |
| 528 | if (encoder_mode == ATOM_ENCODER_MODE_DP) |
| 529 | args.v3.sInput.ucDispPllConfig |= |
| 530 | DISPPLL_CONFIG_COHERENT_MODE; |
| 531 | else { |
| 532 | if (dig->coherent_mode) |
| 533 | args.v3.sInput.ucDispPllConfig |= |
| 534 | DISPPLL_CONFIG_COHERENT_MODE; |
| 535 | if (mode->clock > 165000) |
| 536 | args.v3.sInput.ucDispPllConfig |= |
| 537 | DISPPLL_CONFIG_DUAL_LINK; |
| 538 | } |
| 539 | } else if (radeon_encoder->devices & (ATOM_DEVICE_LCD_SUPPORT)) { |
| 540 | /* may want to enable SS on DP/eDP eventually */ |
| 541 | args.v3.sInput.ucDispPllConfig |= |
| 542 | DISPPLL_CONFIG_SS_ENABLE; |
| 543 | if (mode->clock > 165000) |
| 544 | args.v3.sInput.ucDispPllConfig |= |
| 545 | DISPPLL_CONFIG_DUAL_LINK; |
| 546 | } |
| 547 | atom_execute_table(rdev->mode_info.atom_context, |
| 548 | index, (uint32_t *)&args); |
| 549 | adjusted_clock = le32_to_cpu(args.v3.sOutput.ulDispPllFreq) * 10; |
| 550 | if (args.v3.sOutput.ucRefDiv) { |
| 551 | pll->flags |= RADEON_PLL_USE_REF_DIV; |
| 552 | pll->reference_div = args.v3.sOutput.ucRefDiv; |
| 553 | } |
| 554 | if (args.v3.sOutput.ucPostDiv) { |
| 555 | pll->flags |= RADEON_PLL_USE_POST_DIV; |
| 556 | pll->post_div = args.v3.sOutput.ucPostDiv; |
| 557 | } |
| 558 | break; |
Alex Deucher | 4eaeca3 | 2010-01-19 17:32:27 -0500 | [diff] [blame] | 559 | default: |
| 560 | DRM_ERROR("Unknown table version %d %d\n", frev, crev); |
| 561 | return adjusted_clock; |
| 562 | } |
| 563 | break; |
| 564 | default: |
| 565 | DRM_ERROR("Unknown table version %d %d\n", frev, crev); |
| 566 | return adjusted_clock; |
| 567 | } |
Alex Deucher | d56ef9c | 2009-10-27 12:11:09 -0400 | [diff] [blame] | 568 | } |
Alex Deucher | 4eaeca3 | 2010-01-19 17:32:27 -0500 | [diff] [blame] | 569 | return adjusted_clock; |
| 570 | } |
| 571 | |
| 572 | union set_pixel_clock { |
| 573 | SET_PIXEL_CLOCK_PS_ALLOCATION base; |
| 574 | PIXEL_CLOCK_PARAMETERS v1; |
| 575 | PIXEL_CLOCK_PARAMETERS_V2 v2; |
| 576 | PIXEL_CLOCK_PARAMETERS_V3 v3; |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame^] | 577 | PIXEL_CLOCK_PARAMETERS_V5 v5; |
Alex Deucher | 4eaeca3 | 2010-01-19 17:32:27 -0500 | [diff] [blame] | 578 | }; |
| 579 | |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame^] | 580 | static void atombios_crtc_set_dcpll(struct drm_crtc *crtc) |
| 581 | { |
| 582 | struct drm_device *dev = crtc->dev; |
| 583 | struct radeon_device *rdev = dev->dev_private; |
| 584 | u8 frev, crev; |
| 585 | int index; |
| 586 | union set_pixel_clock args; |
| 587 | |
| 588 | memset(&args, 0, sizeof(args)); |
| 589 | |
| 590 | index = GetIndexIntoMasterTable(COMMAND, SetPixelClock); |
| 591 | atom_parse_cmd_header(rdev->mode_info.atom_context, index, &frev, |
| 592 | &crev); |
| 593 | |
| 594 | switch (frev) { |
| 595 | case 1: |
| 596 | switch (crev) { |
| 597 | case 5: |
| 598 | /* if the default dcpll clock is specified, |
| 599 | * SetPixelClock provides the dividers |
| 600 | */ |
| 601 | args.v5.ucCRTC = ATOM_CRTC_INVALID; |
| 602 | args.v5.usPixelClock = rdev->clock.default_dispclk; |
| 603 | args.v5.ucPpll = ATOM_DCPLL; |
| 604 | break; |
| 605 | default: |
| 606 | DRM_ERROR("Unknown table version %d %d\n", frev, crev); |
| 607 | return; |
| 608 | } |
| 609 | break; |
| 610 | default: |
| 611 | DRM_ERROR("Unknown table version %d %d\n", frev, crev); |
| 612 | return; |
| 613 | } |
| 614 | atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args); |
| 615 | } |
| 616 | |
| 617 | static void atombios_crtc_set_pll(struct drm_crtc *crtc, struct drm_display_mode *mode) |
Alex Deucher | 4eaeca3 | 2010-01-19 17:32:27 -0500 | [diff] [blame] | 618 | { |
| 619 | struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc); |
| 620 | struct drm_device *dev = crtc->dev; |
| 621 | struct radeon_device *rdev = dev->dev_private; |
| 622 | struct drm_encoder *encoder = NULL; |
| 623 | struct radeon_encoder *radeon_encoder = NULL; |
| 624 | u8 frev, crev; |
| 625 | int index; |
| 626 | union set_pixel_clock args; |
| 627 | u32 pll_clock = mode->clock; |
| 628 | u32 ref_div = 0, fb_div = 0, frac_fb_div = 0, post_div = 0; |
| 629 | struct radeon_pll *pll; |
| 630 | u32 adjusted_clock; |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame^] | 631 | int encoder_mode = 0; |
Alex Deucher | 4eaeca3 | 2010-01-19 17:32:27 -0500 | [diff] [blame] | 632 | |
| 633 | memset(&args, 0, sizeof(args)); |
| 634 | |
| 635 | list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) { |
| 636 | if (encoder->crtc == crtc) { |
| 637 | radeon_encoder = to_radeon_encoder(encoder); |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame^] | 638 | encoder_mode = atombios_get_encoder_mode(encoder); |
Alex Deucher | 4eaeca3 | 2010-01-19 17:32:27 -0500 | [diff] [blame] | 639 | break; |
| 640 | } |
| 641 | } |
| 642 | |
| 643 | if (!radeon_encoder) |
| 644 | return; |
| 645 | |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame^] | 646 | switch (radeon_crtc->pll_id) { |
| 647 | case ATOM_PPLL1: |
Alex Deucher | 4eaeca3 | 2010-01-19 17:32:27 -0500 | [diff] [blame] | 648 | pll = &rdev->clock.p1pll; |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame^] | 649 | break; |
| 650 | case ATOM_PPLL2: |
Alex Deucher | 4eaeca3 | 2010-01-19 17:32:27 -0500 | [diff] [blame] | 651 | pll = &rdev->clock.p2pll; |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame^] | 652 | break; |
| 653 | case ATOM_DCPLL: |
| 654 | case ATOM_PPLL_INVALID: |
| 655 | pll = &rdev->clock.dcpll; |
| 656 | break; |
| 657 | } |
Alex Deucher | 4eaeca3 | 2010-01-19 17:32:27 -0500 | [diff] [blame] | 658 | |
| 659 | /* adjust pixel clock as needed */ |
| 660 | adjusted_clock = atombios_adjust_pll(crtc, mode, pll); |
Alex Deucher | 2606c88 | 2009-10-08 13:36:21 -0400 | [diff] [blame] | 661 | |
Alex Deucher | 7c27f87 | 2010-02-02 12:05:01 -0500 | [diff] [blame] | 662 | radeon_compute_pll(pll, adjusted_clock, &pll_clock, &fb_div, &frac_fb_div, |
| 663 | &ref_div, &post_div); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 664 | |
Dave Airlie | 39deb2d | 2009-10-12 14:21:19 +1000 | [diff] [blame] | 665 | index = GetIndexIntoMasterTable(COMMAND, SetPixelClock); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 666 | atom_parse_cmd_header(rdev->mode_info.atom_context, index, &frev, |
| 667 | &crev); |
| 668 | |
| 669 | switch (frev) { |
| 670 | case 1: |
| 671 | switch (crev) { |
| 672 | case 1: |
Alex Deucher | 4eaeca3 | 2010-01-19 17:32:27 -0500 | [diff] [blame] | 673 | args.v1.usPixelClock = cpu_to_le16(mode->clock / 10); |
| 674 | args.v1.usRefDiv = cpu_to_le16(ref_div); |
| 675 | args.v1.usFbDiv = cpu_to_le16(fb_div); |
| 676 | args.v1.ucFracFbDiv = frac_fb_div; |
| 677 | args.v1.ucPostDiv = post_div; |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame^] | 678 | args.v1.ucPpll = radeon_crtc->pll_id; |
Alex Deucher | 4eaeca3 | 2010-01-19 17:32:27 -0500 | [diff] [blame] | 679 | args.v1.ucCRTC = radeon_crtc->crtc_id; |
| 680 | args.v1.ucRefDivSrc = 1; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 681 | break; |
| 682 | case 2: |
Alex Deucher | 4eaeca3 | 2010-01-19 17:32:27 -0500 | [diff] [blame] | 683 | args.v2.usPixelClock = cpu_to_le16(mode->clock / 10); |
| 684 | args.v2.usRefDiv = cpu_to_le16(ref_div); |
| 685 | args.v2.usFbDiv = cpu_to_le16(fb_div); |
| 686 | args.v2.ucFracFbDiv = frac_fb_div; |
| 687 | args.v2.ucPostDiv = post_div; |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame^] | 688 | args.v2.ucPpll = radeon_crtc->pll_id; |
Alex Deucher | 4eaeca3 | 2010-01-19 17:32:27 -0500 | [diff] [blame] | 689 | args.v2.ucCRTC = radeon_crtc->crtc_id; |
| 690 | args.v2.ucRefDivSrc = 1; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 691 | break; |
| 692 | case 3: |
Alex Deucher | 4eaeca3 | 2010-01-19 17:32:27 -0500 | [diff] [blame] | 693 | args.v3.usPixelClock = cpu_to_le16(mode->clock / 10); |
| 694 | args.v3.usRefDiv = cpu_to_le16(ref_div); |
| 695 | args.v3.usFbDiv = cpu_to_le16(fb_div); |
| 696 | args.v3.ucFracFbDiv = frac_fb_div; |
| 697 | args.v3.ucPostDiv = post_div; |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame^] | 698 | args.v3.ucPpll = radeon_crtc->pll_id; |
| 699 | args.v3.ucMiscInfo = (radeon_crtc->pll_id << 2); |
Alex Deucher | 4eaeca3 | 2010-01-19 17:32:27 -0500 | [diff] [blame] | 700 | args.v3.ucTransmitterId = radeon_encoder->encoder_id; |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame^] | 701 | args.v3.ucEncoderMode = encoder_mode; |
| 702 | break; |
| 703 | case 5: |
| 704 | args.v5.ucCRTC = radeon_crtc->crtc_id; |
| 705 | args.v5.usPixelClock = cpu_to_le16(mode->clock / 10); |
| 706 | args.v5.ucRefDiv = ref_div; |
| 707 | args.v5.usFbDiv = cpu_to_le16(fb_div); |
| 708 | args.v5.ulFbDivDecFrac = cpu_to_le32(frac_fb_div * 100000); |
| 709 | args.v5.ucPostDiv = post_div; |
| 710 | args.v5.ucMiscInfo = 0; /* HDMI depth, etc. */ |
| 711 | args.v5.ucTransmitterID = radeon_encoder->encoder_id; |
| 712 | args.v5.ucEncoderMode = encoder_mode; |
| 713 | args.v5.ucPpll = radeon_crtc->pll_id; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 714 | break; |
| 715 | default: |
| 716 | DRM_ERROR("Unknown table version %d %d\n", frev, crev); |
| 717 | return; |
| 718 | } |
| 719 | break; |
| 720 | default: |
| 721 | DRM_ERROR("Unknown table version %d %d\n", frev, crev); |
| 722 | return; |
| 723 | } |
| 724 | |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 725 | atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args); |
| 726 | } |
| 727 | |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame^] | 728 | static int evergreen_crtc_set_base(struct drm_crtc *crtc, int x, int y, |
| 729 | struct drm_framebuffer *old_fb) |
| 730 | { |
| 731 | struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc); |
| 732 | struct drm_device *dev = crtc->dev; |
| 733 | struct radeon_device *rdev = dev->dev_private; |
| 734 | struct radeon_framebuffer *radeon_fb; |
| 735 | struct drm_gem_object *obj; |
| 736 | struct radeon_bo *rbo; |
| 737 | uint64_t fb_location; |
| 738 | uint32_t fb_format, fb_pitch_pixels, tiling_flags; |
| 739 | int r; |
| 740 | |
| 741 | /* no fb bound */ |
| 742 | if (!crtc->fb) { |
| 743 | DRM_DEBUG("No FB bound\n"); |
| 744 | return 0; |
| 745 | } |
| 746 | |
| 747 | radeon_fb = to_radeon_framebuffer(crtc->fb); |
| 748 | |
| 749 | /* Pin framebuffer & get tilling informations */ |
| 750 | obj = radeon_fb->obj; |
| 751 | rbo = obj->driver_private; |
| 752 | r = radeon_bo_reserve(rbo, false); |
| 753 | if (unlikely(r != 0)) |
| 754 | return r; |
| 755 | r = radeon_bo_pin(rbo, RADEON_GEM_DOMAIN_VRAM, &fb_location); |
| 756 | if (unlikely(r != 0)) { |
| 757 | radeon_bo_unreserve(rbo); |
| 758 | return -EINVAL; |
| 759 | } |
| 760 | radeon_bo_get_tiling_flags(rbo, &tiling_flags, NULL); |
| 761 | radeon_bo_unreserve(rbo); |
| 762 | |
| 763 | switch (crtc->fb->bits_per_pixel) { |
| 764 | case 8: |
| 765 | fb_format = (EVERGREEN_GRPH_DEPTH(EVERGREEN_GRPH_DEPTH_8BPP) | |
| 766 | EVERGREEN_GRPH_FORMAT(EVERGREEN_GRPH_FORMAT_INDEXED)); |
| 767 | break; |
| 768 | case 15: |
| 769 | fb_format = (EVERGREEN_GRPH_DEPTH(EVERGREEN_GRPH_DEPTH_16BPP) | |
| 770 | EVERGREEN_GRPH_FORMAT(EVERGREEN_GRPH_FORMAT_ARGB1555)); |
| 771 | break; |
| 772 | case 16: |
| 773 | fb_format = (EVERGREEN_GRPH_DEPTH(EVERGREEN_GRPH_DEPTH_16BPP) | |
| 774 | EVERGREEN_GRPH_FORMAT(EVERGREEN_GRPH_FORMAT_ARGB565)); |
| 775 | break; |
| 776 | case 24: |
| 777 | case 32: |
| 778 | fb_format = (EVERGREEN_GRPH_DEPTH(EVERGREEN_GRPH_DEPTH_32BPP) | |
| 779 | EVERGREEN_GRPH_FORMAT(EVERGREEN_GRPH_FORMAT_ARGB8888)); |
| 780 | break; |
| 781 | default: |
| 782 | DRM_ERROR("Unsupported screen depth %d\n", |
| 783 | crtc->fb->bits_per_pixel); |
| 784 | return -EINVAL; |
| 785 | } |
| 786 | |
| 787 | switch (radeon_crtc->crtc_id) { |
| 788 | case 0: |
| 789 | WREG32(AVIVO_D1VGA_CONTROL, 0); |
| 790 | break; |
| 791 | case 1: |
| 792 | WREG32(AVIVO_D2VGA_CONTROL, 0); |
| 793 | break; |
| 794 | case 2: |
| 795 | WREG32(EVERGREEN_D3VGA_CONTROL, 0); |
| 796 | break; |
| 797 | case 3: |
| 798 | WREG32(EVERGREEN_D4VGA_CONTROL, 0); |
| 799 | break; |
| 800 | case 4: |
| 801 | WREG32(EVERGREEN_D5VGA_CONTROL, 0); |
| 802 | break; |
| 803 | case 5: |
| 804 | WREG32(EVERGREEN_D6VGA_CONTROL, 0); |
| 805 | break; |
| 806 | default: |
| 807 | break; |
| 808 | } |
| 809 | |
| 810 | WREG32(EVERGREEN_GRPH_PRIMARY_SURFACE_ADDRESS_HIGH + radeon_crtc->crtc_offset, |
| 811 | upper_32_bits(fb_location)); |
| 812 | WREG32(EVERGREEN_GRPH_SECONDARY_SURFACE_ADDRESS_HIGH + radeon_crtc->crtc_offset, |
| 813 | upper_32_bits(fb_location)); |
| 814 | WREG32(EVERGREEN_GRPH_PRIMARY_SURFACE_ADDRESS + radeon_crtc->crtc_offset, |
| 815 | (u32)fb_location & EVERGREEN_GRPH_SURFACE_ADDRESS_MASK); |
| 816 | WREG32(EVERGREEN_GRPH_SECONDARY_SURFACE_ADDRESS + radeon_crtc->crtc_offset, |
| 817 | (u32) fb_location & EVERGREEN_GRPH_SURFACE_ADDRESS_MASK); |
| 818 | WREG32(EVERGREEN_GRPH_CONTROL + radeon_crtc->crtc_offset, fb_format); |
| 819 | |
| 820 | WREG32(EVERGREEN_GRPH_SURFACE_OFFSET_X + radeon_crtc->crtc_offset, 0); |
| 821 | WREG32(EVERGREEN_GRPH_SURFACE_OFFSET_Y + radeon_crtc->crtc_offset, 0); |
| 822 | WREG32(EVERGREEN_GRPH_X_START + radeon_crtc->crtc_offset, 0); |
| 823 | WREG32(EVERGREEN_GRPH_Y_START + radeon_crtc->crtc_offset, 0); |
| 824 | WREG32(EVERGREEN_GRPH_X_END + radeon_crtc->crtc_offset, crtc->fb->width); |
| 825 | WREG32(EVERGREEN_GRPH_Y_END + radeon_crtc->crtc_offset, crtc->fb->height); |
| 826 | |
| 827 | fb_pitch_pixels = crtc->fb->pitch / (crtc->fb->bits_per_pixel / 8); |
| 828 | WREG32(EVERGREEN_GRPH_PITCH + radeon_crtc->crtc_offset, fb_pitch_pixels); |
| 829 | WREG32(EVERGREEN_GRPH_ENABLE + radeon_crtc->crtc_offset, 1); |
| 830 | |
| 831 | WREG32(EVERGREEN_DESKTOP_HEIGHT + radeon_crtc->crtc_offset, |
| 832 | crtc->mode.vdisplay); |
| 833 | x &= ~3; |
| 834 | y &= ~1; |
| 835 | WREG32(EVERGREEN_VIEWPORT_START + radeon_crtc->crtc_offset, |
| 836 | (x << 16) | y); |
| 837 | WREG32(EVERGREEN_VIEWPORT_SIZE + radeon_crtc->crtc_offset, |
| 838 | (crtc->mode.hdisplay << 16) | crtc->mode.vdisplay); |
| 839 | |
| 840 | if (crtc->mode.flags & DRM_MODE_FLAG_INTERLACE) |
| 841 | WREG32(EVERGREEN_DATA_FORMAT + radeon_crtc->crtc_offset, |
| 842 | EVERGREEN_INTERLEAVE_EN); |
| 843 | else |
| 844 | WREG32(EVERGREEN_DATA_FORMAT + radeon_crtc->crtc_offset, 0); |
| 845 | |
| 846 | if (old_fb && old_fb != crtc->fb) { |
| 847 | radeon_fb = to_radeon_framebuffer(old_fb); |
| 848 | rbo = radeon_fb->obj->driver_private; |
| 849 | r = radeon_bo_reserve(rbo, false); |
| 850 | if (unlikely(r != 0)) |
| 851 | return r; |
| 852 | radeon_bo_unpin(rbo); |
| 853 | radeon_bo_unreserve(rbo); |
| 854 | } |
| 855 | |
| 856 | /* Bytes per pixel may have changed */ |
| 857 | radeon_bandwidth_update(rdev); |
| 858 | |
| 859 | return 0; |
| 860 | } |
| 861 | |
Alex Deucher | 54f088a | 2010-01-19 16:34:01 -0500 | [diff] [blame] | 862 | static int avivo_crtc_set_base(struct drm_crtc *crtc, int x, int y, |
| 863 | struct drm_framebuffer *old_fb) |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 864 | { |
| 865 | struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc); |
| 866 | struct drm_device *dev = crtc->dev; |
| 867 | struct radeon_device *rdev = dev->dev_private; |
| 868 | struct radeon_framebuffer *radeon_fb; |
| 869 | struct drm_gem_object *obj; |
Jerome Glisse | 4c78867 | 2009-11-20 14:29:23 +0100 | [diff] [blame] | 870 | struct radeon_bo *rbo; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 871 | uint64_t fb_location; |
Dave Airlie | e024e11 | 2009-06-24 09:48:08 +1000 | [diff] [blame] | 872 | uint32_t fb_format, fb_pitch_pixels, tiling_flags; |
Jerome Glisse | 4c78867 | 2009-11-20 14:29:23 +0100 | [diff] [blame] | 873 | int r; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 874 | |
Jerome Glisse | 2de3b48 | 2009-11-17 14:08:55 -0800 | [diff] [blame] | 875 | /* no fb bound */ |
| 876 | if (!crtc->fb) { |
| 877 | DRM_DEBUG("No FB bound\n"); |
| 878 | return 0; |
| 879 | } |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 880 | |
| 881 | radeon_fb = to_radeon_framebuffer(crtc->fb); |
| 882 | |
Jerome Glisse | 4c78867 | 2009-11-20 14:29:23 +0100 | [diff] [blame] | 883 | /* Pin framebuffer & get tilling informations */ |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 884 | obj = radeon_fb->obj; |
Jerome Glisse | 4c78867 | 2009-11-20 14:29:23 +0100 | [diff] [blame] | 885 | rbo = obj->driver_private; |
| 886 | r = radeon_bo_reserve(rbo, false); |
| 887 | if (unlikely(r != 0)) |
| 888 | return r; |
| 889 | r = radeon_bo_pin(rbo, RADEON_GEM_DOMAIN_VRAM, &fb_location); |
| 890 | if (unlikely(r != 0)) { |
| 891 | radeon_bo_unreserve(rbo); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 892 | return -EINVAL; |
| 893 | } |
Jerome Glisse | 4c78867 | 2009-11-20 14:29:23 +0100 | [diff] [blame] | 894 | radeon_bo_get_tiling_flags(rbo, &tiling_flags, NULL); |
| 895 | radeon_bo_unreserve(rbo); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 896 | |
| 897 | switch (crtc->fb->bits_per_pixel) { |
Dave Airlie | 41456df | 2009-09-16 10:15:21 +1000 | [diff] [blame] | 898 | case 8: |
| 899 | fb_format = |
| 900 | AVIVO_D1GRPH_CONTROL_DEPTH_8BPP | |
| 901 | AVIVO_D1GRPH_CONTROL_8BPP_INDEXED; |
| 902 | break; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 903 | case 15: |
| 904 | fb_format = |
| 905 | AVIVO_D1GRPH_CONTROL_DEPTH_16BPP | |
| 906 | AVIVO_D1GRPH_CONTROL_16BPP_ARGB1555; |
| 907 | break; |
| 908 | case 16: |
| 909 | fb_format = |
| 910 | AVIVO_D1GRPH_CONTROL_DEPTH_16BPP | |
| 911 | AVIVO_D1GRPH_CONTROL_16BPP_RGB565; |
| 912 | break; |
| 913 | case 24: |
| 914 | case 32: |
| 915 | fb_format = |
| 916 | AVIVO_D1GRPH_CONTROL_DEPTH_32BPP | |
| 917 | AVIVO_D1GRPH_CONTROL_32BPP_ARGB8888; |
| 918 | break; |
| 919 | default: |
| 920 | DRM_ERROR("Unsupported screen depth %d\n", |
| 921 | crtc->fb->bits_per_pixel); |
| 922 | return -EINVAL; |
| 923 | } |
| 924 | |
Dave Airlie | cf2f05d | 2009-12-08 15:45:13 +1000 | [diff] [blame] | 925 | if (tiling_flags & RADEON_TILING_MACRO) |
| 926 | fb_format |= AVIVO_D1GRPH_MACRO_ADDRESS_MODE; |
| 927 | |
Dave Airlie | e024e11 | 2009-06-24 09:48:08 +1000 | [diff] [blame] | 928 | if (tiling_flags & RADEON_TILING_MICRO) |
| 929 | fb_format |= AVIVO_D1GRPH_TILED; |
| 930 | |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 931 | if (radeon_crtc->crtc_id == 0) |
| 932 | WREG32(AVIVO_D1VGA_CONTROL, 0); |
| 933 | else |
| 934 | WREG32(AVIVO_D2VGA_CONTROL, 0); |
Alex Deucher | c290dad | 2009-10-22 16:12:34 -0400 | [diff] [blame] | 935 | |
| 936 | if (rdev->family >= CHIP_RV770) { |
| 937 | if (radeon_crtc->crtc_id) { |
| 938 | WREG32(R700_D2GRPH_PRIMARY_SURFACE_ADDRESS_HIGH, 0); |
| 939 | WREG32(R700_D2GRPH_SECONDARY_SURFACE_ADDRESS_HIGH, 0); |
| 940 | } else { |
| 941 | WREG32(R700_D1GRPH_PRIMARY_SURFACE_ADDRESS_HIGH, 0); |
| 942 | WREG32(R700_D1GRPH_SECONDARY_SURFACE_ADDRESS_HIGH, 0); |
| 943 | } |
| 944 | } |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 945 | WREG32(AVIVO_D1GRPH_PRIMARY_SURFACE_ADDRESS + radeon_crtc->crtc_offset, |
| 946 | (u32) fb_location); |
| 947 | WREG32(AVIVO_D1GRPH_SECONDARY_SURFACE_ADDRESS + |
| 948 | radeon_crtc->crtc_offset, (u32) fb_location); |
| 949 | WREG32(AVIVO_D1GRPH_CONTROL + radeon_crtc->crtc_offset, fb_format); |
| 950 | |
| 951 | WREG32(AVIVO_D1GRPH_SURFACE_OFFSET_X + radeon_crtc->crtc_offset, 0); |
| 952 | WREG32(AVIVO_D1GRPH_SURFACE_OFFSET_Y + radeon_crtc->crtc_offset, 0); |
| 953 | WREG32(AVIVO_D1GRPH_X_START + radeon_crtc->crtc_offset, 0); |
| 954 | WREG32(AVIVO_D1GRPH_Y_START + radeon_crtc->crtc_offset, 0); |
| 955 | WREG32(AVIVO_D1GRPH_X_END + radeon_crtc->crtc_offset, crtc->fb->width); |
| 956 | WREG32(AVIVO_D1GRPH_Y_END + radeon_crtc->crtc_offset, crtc->fb->height); |
| 957 | |
| 958 | fb_pitch_pixels = crtc->fb->pitch / (crtc->fb->bits_per_pixel / 8); |
| 959 | WREG32(AVIVO_D1GRPH_PITCH + radeon_crtc->crtc_offset, fb_pitch_pixels); |
| 960 | WREG32(AVIVO_D1GRPH_ENABLE + radeon_crtc->crtc_offset, 1); |
| 961 | |
| 962 | WREG32(AVIVO_D1MODE_DESKTOP_HEIGHT + radeon_crtc->crtc_offset, |
| 963 | crtc->mode.vdisplay); |
| 964 | x &= ~3; |
| 965 | y &= ~1; |
| 966 | WREG32(AVIVO_D1MODE_VIEWPORT_START + radeon_crtc->crtc_offset, |
| 967 | (x << 16) | y); |
| 968 | WREG32(AVIVO_D1MODE_VIEWPORT_SIZE + radeon_crtc->crtc_offset, |
| 969 | (crtc->mode.hdisplay << 16) | crtc->mode.vdisplay); |
| 970 | |
| 971 | if (crtc->mode.flags & DRM_MODE_FLAG_INTERLACE) |
| 972 | WREG32(AVIVO_D1MODE_DATA_FORMAT + radeon_crtc->crtc_offset, |
| 973 | AVIVO_D1MODE_INTERLEAVE_EN); |
| 974 | else |
| 975 | WREG32(AVIVO_D1MODE_DATA_FORMAT + radeon_crtc->crtc_offset, 0); |
| 976 | |
| 977 | if (old_fb && old_fb != crtc->fb) { |
| 978 | radeon_fb = to_radeon_framebuffer(old_fb); |
Jerome Glisse | 4c78867 | 2009-11-20 14:29:23 +0100 | [diff] [blame] | 979 | rbo = radeon_fb->obj->driver_private; |
| 980 | r = radeon_bo_reserve(rbo, false); |
| 981 | if (unlikely(r != 0)) |
| 982 | return r; |
| 983 | radeon_bo_unpin(rbo); |
| 984 | radeon_bo_unreserve(rbo); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 985 | } |
Michel Dänzer | f30f37d | 2009-10-08 10:44:09 +0200 | [diff] [blame] | 986 | |
| 987 | /* Bytes per pixel may have changed */ |
| 988 | radeon_bandwidth_update(rdev); |
| 989 | |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 990 | return 0; |
| 991 | } |
| 992 | |
Alex Deucher | 54f088a | 2010-01-19 16:34:01 -0500 | [diff] [blame] | 993 | int atombios_crtc_set_base(struct drm_crtc *crtc, int x, int y, |
| 994 | struct drm_framebuffer *old_fb) |
| 995 | { |
| 996 | struct drm_device *dev = crtc->dev; |
| 997 | struct radeon_device *rdev = dev->dev_private; |
| 998 | |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame^] | 999 | if (ASIC_IS_DCE4(rdev)) |
| 1000 | return evergreen_crtc_set_base(crtc, x, y, old_fb); |
| 1001 | else if (ASIC_IS_AVIVO(rdev)) |
Alex Deucher | 54f088a | 2010-01-19 16:34:01 -0500 | [diff] [blame] | 1002 | return avivo_crtc_set_base(crtc, x, y, old_fb); |
| 1003 | else |
| 1004 | return radeon_crtc_set_base(crtc, x, y, old_fb); |
| 1005 | } |
| 1006 | |
Alex Deucher | 615e0cb | 2010-01-20 16:22:53 -0500 | [diff] [blame] | 1007 | /* properly set additional regs when using atombios */ |
| 1008 | static void radeon_legacy_atom_fixup(struct drm_crtc *crtc) |
| 1009 | { |
| 1010 | struct drm_device *dev = crtc->dev; |
| 1011 | struct radeon_device *rdev = dev->dev_private; |
| 1012 | struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc); |
| 1013 | u32 disp_merge_cntl; |
| 1014 | |
| 1015 | switch (radeon_crtc->crtc_id) { |
| 1016 | case 0: |
| 1017 | disp_merge_cntl = RREG32(RADEON_DISP_MERGE_CNTL); |
| 1018 | disp_merge_cntl &= ~RADEON_DISP_RGB_OFFSET_EN; |
| 1019 | WREG32(RADEON_DISP_MERGE_CNTL, disp_merge_cntl); |
| 1020 | break; |
| 1021 | case 1: |
| 1022 | disp_merge_cntl = RREG32(RADEON_DISP2_MERGE_CNTL); |
| 1023 | disp_merge_cntl &= ~RADEON_DISP2_RGB_OFFSET_EN; |
| 1024 | WREG32(RADEON_DISP2_MERGE_CNTL, disp_merge_cntl); |
| 1025 | WREG32(RADEON_FP_H2_SYNC_STRT_WID, RREG32(RADEON_CRTC2_H_SYNC_STRT_WID)); |
| 1026 | WREG32(RADEON_FP_V2_SYNC_STRT_WID, RREG32(RADEON_CRTC2_V_SYNC_STRT_WID)); |
| 1027 | break; |
| 1028 | } |
| 1029 | } |
| 1030 | |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame^] | 1031 | static int radeon_atom_pick_pll(struct drm_crtc *crtc) |
| 1032 | { |
| 1033 | struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc); |
| 1034 | struct drm_device *dev = crtc->dev; |
| 1035 | struct radeon_device *rdev = dev->dev_private; |
| 1036 | struct drm_encoder *test_encoder; |
| 1037 | struct drm_crtc *test_crtc; |
| 1038 | uint32_t pll_in_use = 0; |
| 1039 | |
| 1040 | if (ASIC_IS_DCE4(rdev)) { |
| 1041 | /* if crtc is driving DP and we have an ext clock, use that */ |
| 1042 | list_for_each_entry(test_encoder, &dev->mode_config.encoder_list, head) { |
| 1043 | if (test_encoder->crtc && (test_encoder->crtc == crtc)) { |
| 1044 | if (atombios_get_encoder_mode(test_encoder) == ATOM_ENCODER_MODE_DP) { |
| 1045 | if (rdev->clock.dp_extclk) |
| 1046 | return ATOM_PPLL_INVALID; |
| 1047 | } |
| 1048 | } |
| 1049 | } |
| 1050 | |
| 1051 | /* otherwise, pick one of the plls */ |
| 1052 | list_for_each_entry(test_crtc, &dev->mode_config.crtc_list, head) { |
| 1053 | struct radeon_crtc *radeon_test_crtc; |
| 1054 | |
| 1055 | if (crtc == test_crtc) |
| 1056 | continue; |
| 1057 | |
| 1058 | radeon_test_crtc = to_radeon_crtc(test_crtc); |
| 1059 | if ((radeon_test_crtc->pll_id >= ATOM_PPLL1) && |
| 1060 | (radeon_test_crtc->pll_id <= ATOM_PPLL2)) |
| 1061 | pll_in_use |= (1 << radeon_test_crtc->pll_id); |
| 1062 | } |
| 1063 | if (!(pll_in_use & 1)) |
| 1064 | return ATOM_PPLL1; |
| 1065 | return ATOM_PPLL2; |
| 1066 | } else |
| 1067 | return radeon_crtc->crtc_id; |
| 1068 | |
| 1069 | } |
| 1070 | |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1071 | int atombios_crtc_mode_set(struct drm_crtc *crtc, |
| 1072 | struct drm_display_mode *mode, |
| 1073 | struct drm_display_mode *adjusted_mode, |
| 1074 | int x, int y, struct drm_framebuffer *old_fb) |
| 1075 | { |
| 1076 | struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc); |
| 1077 | struct drm_device *dev = crtc->dev; |
| 1078 | struct radeon_device *rdev = dev->dev_private; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1079 | |
| 1080 | /* TODO color tiling */ |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1081 | |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame^] | 1082 | /* pick pll */ |
| 1083 | radeon_crtc->pll_id = radeon_atom_pick_pll(crtc); |
| 1084 | |
Alex Deucher | ebbe1cb | 2009-10-16 11:15:25 -0400 | [diff] [blame] | 1085 | atombios_set_ss(crtc, 0); |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame^] | 1086 | /* always set DCPLL */ |
| 1087 | if (ASIC_IS_DCE4(rdev)) |
| 1088 | atombios_crtc_set_dcpll(crtc); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1089 | atombios_crtc_set_pll(crtc, adjusted_mode); |
Alex Deucher | ebbe1cb | 2009-10-16 11:15:25 -0400 | [diff] [blame] | 1090 | atombios_set_ss(crtc, 1); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1091 | |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame^] | 1092 | if (ASIC_IS_DCE4(rdev)) |
| 1093 | atombios_set_crtc_dtd_timing(crtc, adjusted_mode); |
| 1094 | else if (ASIC_IS_AVIVO(rdev)) |
| 1095 | atombios_crtc_set_timing(crtc, adjusted_mode); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1096 | else { |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame^] | 1097 | atombios_crtc_set_timing(crtc, adjusted_mode); |
Alex Deucher | 5a9bcac | 2009-10-08 15:09:31 -0400 | [diff] [blame] | 1098 | if (radeon_crtc->crtc_id == 0) |
| 1099 | atombios_set_crtc_dtd_timing(crtc, adjusted_mode); |
Alex Deucher | 615e0cb | 2010-01-20 16:22:53 -0500 | [diff] [blame] | 1100 | radeon_legacy_atom_fixup(crtc); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1101 | } |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame^] | 1102 | atombios_crtc_set_base(crtc, x, y, old_fb); |
Jerome Glisse | c93bb85 | 2009-07-13 21:04:08 +0200 | [diff] [blame] | 1103 | atombios_overscan_setup(crtc, mode, adjusted_mode); |
| 1104 | atombios_scaler_setup(crtc); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1105 | return 0; |
| 1106 | } |
| 1107 | |
| 1108 | static bool atombios_crtc_mode_fixup(struct drm_crtc *crtc, |
| 1109 | struct drm_display_mode *mode, |
| 1110 | struct drm_display_mode *adjusted_mode) |
| 1111 | { |
Jerome Glisse | c93bb85 | 2009-07-13 21:04:08 +0200 | [diff] [blame] | 1112 | if (!radeon_crtc_scaling_mode_fixup(crtc, mode, adjusted_mode)) |
| 1113 | return false; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1114 | return true; |
| 1115 | } |
| 1116 | |
| 1117 | static void atombios_crtc_prepare(struct drm_crtc *crtc) |
| 1118 | { |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1119 | atombios_lock_crtc(crtc, 1); |
Alex Deucher | a348c84 | 2010-01-21 16:50:30 -0500 | [diff] [blame] | 1120 | atombios_crtc_dpms(crtc, DRM_MODE_DPMS_OFF); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1121 | } |
| 1122 | |
| 1123 | static void atombios_crtc_commit(struct drm_crtc *crtc) |
| 1124 | { |
| 1125 | atombios_crtc_dpms(crtc, DRM_MODE_DPMS_ON); |
| 1126 | atombios_lock_crtc(crtc, 0); |
| 1127 | } |
| 1128 | |
| 1129 | static const struct drm_crtc_helper_funcs atombios_helper_funcs = { |
| 1130 | .dpms = atombios_crtc_dpms, |
| 1131 | .mode_fixup = atombios_crtc_mode_fixup, |
| 1132 | .mode_set = atombios_crtc_mode_set, |
| 1133 | .mode_set_base = atombios_crtc_set_base, |
| 1134 | .prepare = atombios_crtc_prepare, |
| 1135 | .commit = atombios_crtc_commit, |
Dave Airlie | 068143d | 2009-10-05 09:58:02 +1000 | [diff] [blame] | 1136 | .load_lut = radeon_crtc_load_lut, |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1137 | }; |
| 1138 | |
| 1139 | void radeon_atombios_init_crtc(struct drm_device *dev, |
| 1140 | struct radeon_crtc *radeon_crtc) |
| 1141 | { |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame^] | 1142 | struct radeon_device *rdev = dev->dev_private; |
| 1143 | |
| 1144 | if (ASIC_IS_DCE4(rdev)) { |
| 1145 | switch (radeon_crtc->crtc_id) { |
| 1146 | case 0: |
| 1147 | default: |
| 1148 | radeon_crtc->crtc_id = EVERGREEN_CRTC0_REGISTER_OFFSET; |
| 1149 | break; |
| 1150 | case 1: |
| 1151 | radeon_crtc->crtc_id = EVERGREEN_CRTC1_REGISTER_OFFSET; |
| 1152 | break; |
| 1153 | case 2: |
| 1154 | radeon_crtc->crtc_id = EVERGREEN_CRTC2_REGISTER_OFFSET; |
| 1155 | break; |
| 1156 | case 3: |
| 1157 | radeon_crtc->crtc_id = EVERGREEN_CRTC3_REGISTER_OFFSET; |
| 1158 | break; |
| 1159 | case 4: |
| 1160 | radeon_crtc->crtc_id = EVERGREEN_CRTC4_REGISTER_OFFSET; |
| 1161 | break; |
| 1162 | case 5: |
| 1163 | radeon_crtc->crtc_id = EVERGREEN_CRTC5_REGISTER_OFFSET; |
| 1164 | break; |
| 1165 | } |
| 1166 | } else { |
| 1167 | if (radeon_crtc->crtc_id == 1) |
| 1168 | radeon_crtc->crtc_offset = |
| 1169 | AVIVO_D2CRTC_H_TOTAL - AVIVO_D1CRTC_H_TOTAL; |
| 1170 | else |
| 1171 | radeon_crtc->crtc_offset = 0; |
| 1172 | } |
| 1173 | radeon_crtc->pll_id = -1; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1174 | drm_crtc_helper_add(&radeon_crtc->base, &atombios_helper_funcs); |
| 1175 | } |