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> |
Ben Skeggs | 68adac5 | 2010-04-28 11:46:42 +1000 | [diff] [blame] | 29 | #include <drm/drm_fixed.h> |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 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 | |
Jerome Glisse | c93bb85 | 2009-07-13 21:04:08 +0200 | [diff] [blame] | 47 | args.ucCRTC = radeon_crtc->crtc_id; |
| 48 | |
| 49 | switch (radeon_crtc->rmx_type) { |
| 50 | case RMX_CENTER: |
Cédric Cano | 4589433 | 2011-02-11 19:45:37 -0500 | [diff] [blame] | 51 | args.usOverscanTop = cpu_to_le16((adjusted_mode->crtc_vdisplay - mode->crtc_vdisplay) / 2); |
| 52 | args.usOverscanBottom = cpu_to_le16((adjusted_mode->crtc_vdisplay - mode->crtc_vdisplay) / 2); |
| 53 | args.usOverscanLeft = cpu_to_le16((adjusted_mode->crtc_hdisplay - mode->crtc_hdisplay) / 2); |
| 54 | args.usOverscanRight = cpu_to_le16((adjusted_mode->crtc_hdisplay - mode->crtc_hdisplay) / 2); |
Jerome Glisse | c93bb85 | 2009-07-13 21:04:08 +0200 | [diff] [blame] | 55 | break; |
| 56 | case RMX_ASPECT: |
| 57 | a1 = mode->crtc_vdisplay * adjusted_mode->crtc_hdisplay; |
| 58 | a2 = adjusted_mode->crtc_vdisplay * mode->crtc_hdisplay; |
| 59 | |
| 60 | if (a1 > a2) { |
Cédric Cano | 4589433 | 2011-02-11 19:45:37 -0500 | [diff] [blame] | 61 | args.usOverscanLeft = cpu_to_le16((adjusted_mode->crtc_hdisplay - (a2 / mode->crtc_vdisplay)) / 2); |
| 62 | args.usOverscanRight = cpu_to_le16((adjusted_mode->crtc_hdisplay - (a2 / mode->crtc_vdisplay)) / 2); |
Jerome Glisse | c93bb85 | 2009-07-13 21:04:08 +0200 | [diff] [blame] | 63 | } else if (a2 > a1) { |
Alex Deucher | 942b0e9 | 2011-03-14 23:18:00 -0400 | [diff] [blame] | 64 | args.usOverscanTop = cpu_to_le16((adjusted_mode->crtc_vdisplay - (a1 / mode->crtc_hdisplay)) / 2); |
| 65 | args.usOverscanBottom = cpu_to_le16((adjusted_mode->crtc_vdisplay - (a1 / mode->crtc_hdisplay)) / 2); |
Jerome Glisse | c93bb85 | 2009-07-13 21:04:08 +0200 | [diff] [blame] | 66 | } |
Jerome Glisse | c93bb85 | 2009-07-13 21:04:08 +0200 | [diff] [blame] | 67 | break; |
| 68 | case RMX_FULL: |
| 69 | default: |
Cédric Cano | 4589433 | 2011-02-11 19:45:37 -0500 | [diff] [blame] | 70 | args.usOverscanRight = cpu_to_le16(radeon_crtc->h_border); |
| 71 | args.usOverscanLeft = cpu_to_le16(radeon_crtc->h_border); |
| 72 | args.usOverscanBottom = cpu_to_le16(radeon_crtc->v_border); |
| 73 | args.usOverscanTop = cpu_to_le16(radeon_crtc->v_border); |
Jerome Glisse | c93bb85 | 2009-07-13 21:04:08 +0200 | [diff] [blame] | 74 | break; |
| 75 | } |
Alex Deucher | 5b1714d | 2010-08-03 19:59:20 -0400 | [diff] [blame] | 76 | atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args); |
Jerome Glisse | c93bb85 | 2009-07-13 21:04:08 +0200 | [diff] [blame] | 77 | } |
| 78 | |
| 79 | static void atombios_scaler_setup(struct drm_crtc *crtc) |
| 80 | { |
| 81 | struct drm_device *dev = crtc->dev; |
| 82 | struct radeon_device *rdev = dev->dev_private; |
| 83 | struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc); |
| 84 | ENABLE_SCALER_PS_ALLOCATION args; |
| 85 | int index = GetIndexIntoMasterTable(COMMAND, EnableScaler); |
Dave Airlie | 4ce001a | 2009-08-13 16:32:14 +1000 | [diff] [blame] | 86 | |
Jerome Glisse | c93bb85 | 2009-07-13 21:04:08 +0200 | [diff] [blame] | 87 | /* fixme - fill in enc_priv for atom dac */ |
| 88 | enum radeon_tv_std tv_std = TV_STD_NTSC; |
Dave Airlie | 4ce001a | 2009-08-13 16:32:14 +1000 | [diff] [blame] | 89 | bool is_tv = false, is_cv = false; |
| 90 | struct drm_encoder *encoder; |
Jerome Glisse | c93bb85 | 2009-07-13 21:04:08 +0200 | [diff] [blame] | 91 | |
| 92 | if (!ASIC_IS_AVIVO(rdev) && radeon_crtc->crtc_id) |
| 93 | return; |
| 94 | |
Dave Airlie | 4ce001a | 2009-08-13 16:32:14 +1000 | [diff] [blame] | 95 | list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) { |
| 96 | /* find tv std */ |
| 97 | if (encoder->crtc == crtc) { |
| 98 | struct radeon_encoder *radeon_encoder = to_radeon_encoder(encoder); |
| 99 | if (radeon_encoder->active_device & ATOM_DEVICE_TV_SUPPORT) { |
| 100 | struct radeon_encoder_atom_dac *tv_dac = radeon_encoder->enc_priv; |
| 101 | tv_std = tv_dac->tv_std; |
| 102 | is_tv = true; |
| 103 | } |
| 104 | } |
| 105 | } |
| 106 | |
Jerome Glisse | c93bb85 | 2009-07-13 21:04:08 +0200 | [diff] [blame] | 107 | memset(&args, 0, sizeof(args)); |
| 108 | |
| 109 | args.ucScaler = radeon_crtc->crtc_id; |
| 110 | |
Dave Airlie | 4ce001a | 2009-08-13 16:32:14 +1000 | [diff] [blame] | 111 | if (is_tv) { |
Jerome Glisse | c93bb85 | 2009-07-13 21:04:08 +0200 | [diff] [blame] | 112 | switch (tv_std) { |
| 113 | case TV_STD_NTSC: |
| 114 | default: |
| 115 | args.ucTVStandard = ATOM_TV_NTSC; |
| 116 | break; |
| 117 | case TV_STD_PAL: |
| 118 | args.ucTVStandard = ATOM_TV_PAL; |
| 119 | break; |
| 120 | case TV_STD_PAL_M: |
| 121 | args.ucTVStandard = ATOM_TV_PALM; |
| 122 | break; |
| 123 | case TV_STD_PAL_60: |
| 124 | args.ucTVStandard = ATOM_TV_PAL60; |
| 125 | break; |
| 126 | case TV_STD_NTSC_J: |
| 127 | args.ucTVStandard = ATOM_TV_NTSCJ; |
| 128 | break; |
| 129 | case TV_STD_SCART_PAL: |
| 130 | args.ucTVStandard = ATOM_TV_PAL; /* ??? */ |
| 131 | break; |
| 132 | case TV_STD_SECAM: |
| 133 | args.ucTVStandard = ATOM_TV_SECAM; |
| 134 | break; |
| 135 | case TV_STD_PAL_CN: |
| 136 | args.ucTVStandard = ATOM_TV_PALCN; |
| 137 | break; |
| 138 | } |
| 139 | args.ucEnable = SCALER_ENABLE_MULTITAP_MODE; |
Dave Airlie | 4ce001a | 2009-08-13 16:32:14 +1000 | [diff] [blame] | 140 | } else if (is_cv) { |
Jerome Glisse | c93bb85 | 2009-07-13 21:04:08 +0200 | [diff] [blame] | 141 | args.ucTVStandard = ATOM_TV_CV; |
| 142 | args.ucEnable = SCALER_ENABLE_MULTITAP_MODE; |
| 143 | } else { |
| 144 | switch (radeon_crtc->rmx_type) { |
| 145 | case RMX_FULL: |
| 146 | args.ucEnable = ATOM_SCALER_EXPANSION; |
| 147 | break; |
| 148 | case RMX_CENTER: |
| 149 | args.ucEnable = ATOM_SCALER_CENTER; |
| 150 | break; |
| 151 | case RMX_ASPECT: |
| 152 | args.ucEnable = ATOM_SCALER_EXPANSION; |
| 153 | break; |
| 154 | default: |
| 155 | if (ASIC_IS_AVIVO(rdev)) |
| 156 | args.ucEnable = ATOM_SCALER_DISABLE; |
| 157 | else |
| 158 | args.ucEnable = ATOM_SCALER_CENTER; |
| 159 | break; |
| 160 | } |
| 161 | } |
| 162 | atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args); |
Dave Airlie | 4ce001a | 2009-08-13 16:32:14 +1000 | [diff] [blame] | 163 | if ((is_tv || is_cv) |
| 164 | && rdev->family >= CHIP_RV515 && rdev->family <= CHIP_R580) { |
| 165 | atom_rv515_force_tv_scaler(rdev, radeon_crtc); |
Jerome Glisse | c93bb85 | 2009-07-13 21:04:08 +0200 | [diff] [blame] | 166 | } |
| 167 | } |
| 168 | |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 169 | static void atombios_lock_crtc(struct drm_crtc *crtc, int lock) |
| 170 | { |
| 171 | struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc); |
| 172 | struct drm_device *dev = crtc->dev; |
| 173 | struct radeon_device *rdev = dev->dev_private; |
| 174 | int index = |
| 175 | GetIndexIntoMasterTable(COMMAND, UpdateCRTC_DoubleBufferRegisters); |
| 176 | ENABLE_CRTC_PS_ALLOCATION args; |
| 177 | |
| 178 | memset(&args, 0, sizeof(args)); |
| 179 | |
| 180 | args.ucCRTC = radeon_crtc->crtc_id; |
| 181 | args.ucEnable = lock; |
| 182 | |
| 183 | atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args); |
| 184 | } |
| 185 | |
| 186 | static void atombios_enable_crtc(struct drm_crtc *crtc, int state) |
| 187 | { |
| 188 | struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc); |
| 189 | struct drm_device *dev = crtc->dev; |
| 190 | struct radeon_device *rdev = dev->dev_private; |
| 191 | int index = GetIndexIntoMasterTable(COMMAND, EnableCRTC); |
| 192 | ENABLE_CRTC_PS_ALLOCATION args; |
| 193 | |
| 194 | memset(&args, 0, sizeof(args)); |
| 195 | |
| 196 | args.ucCRTC = radeon_crtc->crtc_id; |
| 197 | args.ucEnable = state; |
| 198 | |
| 199 | atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args); |
| 200 | } |
| 201 | |
| 202 | static void atombios_enable_crtc_memreq(struct drm_crtc *crtc, int state) |
| 203 | { |
| 204 | struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc); |
| 205 | struct drm_device *dev = crtc->dev; |
| 206 | struct radeon_device *rdev = dev->dev_private; |
| 207 | int index = GetIndexIntoMasterTable(COMMAND, EnableCRTCMemReq); |
| 208 | ENABLE_CRTC_PS_ALLOCATION args; |
| 209 | |
| 210 | memset(&args, 0, sizeof(args)); |
| 211 | |
| 212 | args.ucCRTC = radeon_crtc->crtc_id; |
| 213 | args.ucEnable = state; |
| 214 | |
| 215 | atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args); |
| 216 | } |
| 217 | |
| 218 | static void atombios_blank_crtc(struct drm_crtc *crtc, int state) |
| 219 | { |
| 220 | struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc); |
| 221 | struct drm_device *dev = crtc->dev; |
| 222 | struct radeon_device *rdev = dev->dev_private; |
| 223 | int index = GetIndexIntoMasterTable(COMMAND, BlankCRTC); |
| 224 | BLANK_CRTC_PS_ALLOCATION args; |
| 225 | |
| 226 | memset(&args, 0, sizeof(args)); |
| 227 | |
| 228 | args.ucCRTC = radeon_crtc->crtc_id; |
| 229 | args.ucBlanking = state; |
| 230 | |
| 231 | atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args); |
| 232 | } |
| 233 | |
| 234 | void atombios_crtc_dpms(struct drm_crtc *crtc, int mode) |
| 235 | { |
| 236 | struct drm_device *dev = crtc->dev; |
| 237 | struct radeon_device *rdev = dev->dev_private; |
Alex Deucher | 500b758 | 2009-12-02 11:46:52 -0500 | [diff] [blame] | 238 | struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 239 | |
| 240 | switch (mode) { |
| 241 | case DRM_MODE_DPMS_ON: |
Alex Deucher | d731117 | 2010-05-03 01:13:14 -0400 | [diff] [blame] | 242 | radeon_crtc->enabled = true; |
| 243 | /* adjust pm to dpms changes BEFORE enabling crtcs */ |
| 244 | radeon_pm_compute_clocks(rdev); |
Alex Deucher | 37b4390 | 2010-02-09 12:04:43 -0500 | [diff] [blame] | 245 | atombios_enable_crtc(crtc, ATOM_ENABLE); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 246 | if (ASIC_IS_DCE3(rdev)) |
Alex Deucher | 37b4390 | 2010-02-09 12:04:43 -0500 | [diff] [blame] | 247 | atombios_enable_crtc_memreq(crtc, ATOM_ENABLE); |
| 248 | atombios_blank_crtc(crtc, ATOM_DISABLE); |
Alex Deucher | 45f9a39 | 2010-03-24 13:55:51 -0400 | [diff] [blame] | 249 | drm_vblank_post_modeset(dev, radeon_crtc->crtc_id); |
Alex Deucher | 500b758 | 2009-12-02 11:46:52 -0500 | [diff] [blame] | 250 | radeon_crtc_load_lut(crtc); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 251 | break; |
| 252 | case DRM_MODE_DPMS_STANDBY: |
| 253 | case DRM_MODE_DPMS_SUSPEND: |
| 254 | case DRM_MODE_DPMS_OFF: |
Alex Deucher | 45f9a39 | 2010-03-24 13:55:51 -0400 | [diff] [blame] | 255 | drm_vblank_pre_modeset(dev, radeon_crtc->crtc_id); |
Alex Deucher | a93f344 | 2010-12-20 11:22:29 -0500 | [diff] [blame] | 256 | if (radeon_crtc->enabled) |
| 257 | atombios_blank_crtc(crtc, ATOM_ENABLE); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 258 | if (ASIC_IS_DCE3(rdev)) |
Alex Deucher | 37b4390 | 2010-02-09 12:04:43 -0500 | [diff] [blame] | 259 | atombios_enable_crtc_memreq(crtc, ATOM_DISABLE); |
| 260 | atombios_enable_crtc(crtc, ATOM_DISABLE); |
Alex Deucher | a48b9b4 | 2010-04-22 14:03:55 -0400 | [diff] [blame] | 261 | radeon_crtc->enabled = false; |
Alex Deucher | d731117 | 2010-05-03 01:13:14 -0400 | [diff] [blame] | 262 | /* adjust pm to dpms changes AFTER disabling crtcs */ |
| 263 | radeon_pm_compute_clocks(rdev); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 264 | break; |
| 265 | } |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 266 | } |
| 267 | |
| 268 | static void |
| 269 | atombios_set_crtc_dtd_timing(struct drm_crtc *crtc, |
Alex Deucher | 5a9bcac | 2009-10-08 15:09:31 -0400 | [diff] [blame] | 270 | struct drm_display_mode *mode) |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 271 | { |
Alex Deucher | 5a9bcac | 2009-10-08 15:09:31 -0400 | [diff] [blame] | 272 | struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 273 | struct drm_device *dev = crtc->dev; |
| 274 | struct radeon_device *rdev = dev->dev_private; |
Alex Deucher | 5a9bcac | 2009-10-08 15:09:31 -0400 | [diff] [blame] | 275 | SET_CRTC_USING_DTD_TIMING_PARAMETERS args; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 276 | int index = GetIndexIntoMasterTable(COMMAND, SetCRTC_UsingDTDTiming); |
Alex Deucher | 5a9bcac | 2009-10-08 15:09:31 -0400 | [diff] [blame] | 277 | u16 misc = 0; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 278 | |
Alex Deucher | 5a9bcac | 2009-10-08 15:09:31 -0400 | [diff] [blame] | 279 | memset(&args, 0, sizeof(args)); |
Alex Deucher | 5b1714d | 2010-08-03 19:59:20 -0400 | [diff] [blame] | 280 | args.usH_Size = cpu_to_le16(mode->crtc_hdisplay - (radeon_crtc->h_border * 2)); |
Alex Deucher | 5a9bcac | 2009-10-08 15:09:31 -0400 | [diff] [blame] | 281 | args.usH_Blanking_Time = |
Alex Deucher | 5b1714d | 2010-08-03 19:59:20 -0400 | [diff] [blame] | 282 | cpu_to_le16(mode->crtc_hblank_end - mode->crtc_hdisplay + (radeon_crtc->h_border * 2)); |
| 283 | args.usV_Size = cpu_to_le16(mode->crtc_vdisplay - (radeon_crtc->v_border * 2)); |
Alex Deucher | 5a9bcac | 2009-10-08 15:09:31 -0400 | [diff] [blame] | 284 | args.usV_Blanking_Time = |
Alex Deucher | 5b1714d | 2010-08-03 19:59:20 -0400 | [diff] [blame] | 285 | cpu_to_le16(mode->crtc_vblank_end - mode->crtc_vdisplay + (radeon_crtc->v_border * 2)); |
Alex Deucher | 5a9bcac | 2009-10-08 15:09:31 -0400 | [diff] [blame] | 286 | args.usH_SyncOffset = |
Alex Deucher | 5b1714d | 2010-08-03 19:59:20 -0400 | [diff] [blame] | 287 | cpu_to_le16(mode->crtc_hsync_start - mode->crtc_hdisplay + radeon_crtc->h_border); |
Alex Deucher | 5a9bcac | 2009-10-08 15:09:31 -0400 | [diff] [blame] | 288 | args.usH_SyncWidth = |
| 289 | cpu_to_le16(mode->crtc_hsync_end - mode->crtc_hsync_start); |
| 290 | args.usV_SyncOffset = |
Alex Deucher | 5b1714d | 2010-08-03 19:59:20 -0400 | [diff] [blame] | 291 | cpu_to_le16(mode->crtc_vsync_start - mode->crtc_vdisplay + radeon_crtc->v_border); |
Alex Deucher | 5a9bcac | 2009-10-08 15:09:31 -0400 | [diff] [blame] | 292 | args.usV_SyncWidth = |
| 293 | cpu_to_le16(mode->crtc_vsync_end - mode->crtc_vsync_start); |
Alex Deucher | 5b1714d | 2010-08-03 19:59:20 -0400 | [diff] [blame] | 294 | args.ucH_Border = radeon_crtc->h_border; |
| 295 | args.ucV_Border = radeon_crtc->v_border; |
Alex Deucher | 5a9bcac | 2009-10-08 15:09:31 -0400 | [diff] [blame] | 296 | |
| 297 | if (mode->flags & DRM_MODE_FLAG_NVSYNC) |
| 298 | misc |= ATOM_VSYNC_POLARITY; |
| 299 | if (mode->flags & DRM_MODE_FLAG_NHSYNC) |
| 300 | misc |= ATOM_HSYNC_POLARITY; |
| 301 | if (mode->flags & DRM_MODE_FLAG_CSYNC) |
| 302 | misc |= ATOM_COMPOSITESYNC; |
| 303 | if (mode->flags & DRM_MODE_FLAG_INTERLACE) |
| 304 | misc |= ATOM_INTERLACE; |
| 305 | if (mode->flags & DRM_MODE_FLAG_DBLSCAN) |
| 306 | misc |= ATOM_DOUBLE_CLOCK_MODE; |
| 307 | |
| 308 | args.susModeMiscInfo.usAccess = cpu_to_le16(misc); |
| 309 | args.ucCRTC = radeon_crtc->crtc_id; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 310 | |
Alex Deucher | 5a9bcac | 2009-10-08 15:09:31 -0400 | [diff] [blame] | 311 | atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 312 | } |
| 313 | |
Alex Deucher | 5a9bcac | 2009-10-08 15:09:31 -0400 | [diff] [blame] | 314 | static void atombios_crtc_set_timing(struct drm_crtc *crtc, |
| 315 | struct drm_display_mode *mode) |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 316 | { |
Alex Deucher | 5a9bcac | 2009-10-08 15:09:31 -0400 | [diff] [blame] | 317 | struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 318 | struct drm_device *dev = crtc->dev; |
| 319 | struct radeon_device *rdev = dev->dev_private; |
Alex Deucher | 5a9bcac | 2009-10-08 15:09:31 -0400 | [diff] [blame] | 320 | SET_CRTC_TIMING_PARAMETERS_PS_ALLOCATION args; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 321 | int index = GetIndexIntoMasterTable(COMMAND, SetCRTC_Timing); |
Alex Deucher | 5a9bcac | 2009-10-08 15:09:31 -0400 | [diff] [blame] | 322 | u16 misc = 0; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 323 | |
Alex Deucher | 5a9bcac | 2009-10-08 15:09:31 -0400 | [diff] [blame] | 324 | memset(&args, 0, sizeof(args)); |
| 325 | args.usH_Total = cpu_to_le16(mode->crtc_htotal); |
| 326 | args.usH_Disp = cpu_to_le16(mode->crtc_hdisplay); |
| 327 | args.usH_SyncStart = cpu_to_le16(mode->crtc_hsync_start); |
| 328 | args.usH_SyncWidth = |
| 329 | cpu_to_le16(mode->crtc_hsync_end - mode->crtc_hsync_start); |
| 330 | args.usV_Total = cpu_to_le16(mode->crtc_vtotal); |
| 331 | args.usV_Disp = cpu_to_le16(mode->crtc_vdisplay); |
| 332 | args.usV_SyncStart = cpu_to_le16(mode->crtc_vsync_start); |
| 333 | args.usV_SyncWidth = |
| 334 | cpu_to_le16(mode->crtc_vsync_end - mode->crtc_vsync_start); |
| 335 | |
Alex Deucher | 54bfe49 | 2010-09-03 15:52:53 -0400 | [diff] [blame] | 336 | args.ucOverscanRight = radeon_crtc->h_border; |
| 337 | args.ucOverscanLeft = radeon_crtc->h_border; |
| 338 | args.ucOverscanBottom = radeon_crtc->v_border; |
| 339 | args.ucOverscanTop = radeon_crtc->v_border; |
| 340 | |
Alex Deucher | 5a9bcac | 2009-10-08 15:09:31 -0400 | [diff] [blame] | 341 | if (mode->flags & DRM_MODE_FLAG_NVSYNC) |
| 342 | misc |= ATOM_VSYNC_POLARITY; |
| 343 | if (mode->flags & DRM_MODE_FLAG_NHSYNC) |
| 344 | misc |= ATOM_HSYNC_POLARITY; |
| 345 | if (mode->flags & DRM_MODE_FLAG_CSYNC) |
| 346 | misc |= ATOM_COMPOSITESYNC; |
| 347 | if (mode->flags & DRM_MODE_FLAG_INTERLACE) |
| 348 | misc |= ATOM_INTERLACE; |
| 349 | if (mode->flags & DRM_MODE_FLAG_DBLSCAN) |
| 350 | misc |= ATOM_DOUBLE_CLOCK_MODE; |
| 351 | |
| 352 | args.susModeMiscInfo.usAccess = cpu_to_le16(misc); |
| 353 | args.ucCRTC = radeon_crtc->crtc_id; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 354 | |
Alex Deucher | 5a9bcac | 2009-10-08 15:09:31 -0400 | [diff] [blame] | 355 | atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 356 | } |
| 357 | |
Alex Deucher | b792210 | 2010-03-06 10:57:30 -0500 | [diff] [blame] | 358 | static void atombios_disable_ss(struct drm_crtc *crtc) |
| 359 | { |
| 360 | struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc); |
| 361 | struct drm_device *dev = crtc->dev; |
| 362 | struct radeon_device *rdev = dev->dev_private; |
| 363 | u32 ss_cntl; |
| 364 | |
| 365 | if (ASIC_IS_DCE4(rdev)) { |
| 366 | switch (radeon_crtc->pll_id) { |
| 367 | case ATOM_PPLL1: |
| 368 | ss_cntl = RREG32(EVERGREEN_P1PLL_SS_CNTL); |
| 369 | ss_cntl &= ~EVERGREEN_PxPLL_SS_EN; |
| 370 | WREG32(EVERGREEN_P1PLL_SS_CNTL, ss_cntl); |
| 371 | break; |
| 372 | case ATOM_PPLL2: |
| 373 | ss_cntl = RREG32(EVERGREEN_P2PLL_SS_CNTL); |
| 374 | ss_cntl &= ~EVERGREEN_PxPLL_SS_EN; |
| 375 | WREG32(EVERGREEN_P2PLL_SS_CNTL, ss_cntl); |
| 376 | break; |
| 377 | case ATOM_DCPLL: |
| 378 | case ATOM_PPLL_INVALID: |
| 379 | return; |
| 380 | } |
| 381 | } else if (ASIC_IS_AVIVO(rdev)) { |
| 382 | switch (radeon_crtc->pll_id) { |
| 383 | case ATOM_PPLL1: |
| 384 | ss_cntl = RREG32(AVIVO_P1PLL_INT_SS_CNTL); |
| 385 | ss_cntl &= ~1; |
| 386 | WREG32(AVIVO_P1PLL_INT_SS_CNTL, ss_cntl); |
| 387 | break; |
| 388 | case ATOM_PPLL2: |
| 389 | ss_cntl = RREG32(AVIVO_P2PLL_INT_SS_CNTL); |
| 390 | ss_cntl &= ~1; |
| 391 | WREG32(AVIVO_P2PLL_INT_SS_CNTL, ss_cntl); |
| 392 | break; |
| 393 | case ATOM_DCPLL: |
| 394 | case ATOM_PPLL_INVALID: |
| 395 | return; |
| 396 | } |
| 397 | } |
| 398 | } |
| 399 | |
| 400 | |
Alex Deucher | 26b9fc3 | 2010-02-01 16:39:11 -0500 | [diff] [blame] | 401 | union atom_enable_ss { |
Alex Deucher | ba032a5 | 2010-10-04 17:13:01 -0400 | [diff] [blame] | 402 | ENABLE_LVDS_SS_PARAMETERS lvds_ss; |
| 403 | ENABLE_LVDS_SS_PARAMETERS_V2 lvds_ss_2; |
Alex Deucher | 26b9fc3 | 2010-02-01 16:39:11 -0500 | [diff] [blame] | 404 | ENABLE_SPREAD_SPECTRUM_ON_PPLL_PS_ALLOCATION v1; |
Alex Deucher | ba032a5 | 2010-10-04 17:13:01 -0400 | [diff] [blame] | 405 | ENABLE_SPREAD_SPECTRUM_ON_PPLL_V2 v2; |
Alex Deucher | a572eaa | 2011-01-06 21:19:16 -0500 | [diff] [blame] | 406 | ENABLE_SPREAD_SPECTRUM_ON_PPLL_V3 v3; |
Alex Deucher | 26b9fc3 | 2010-02-01 16:39:11 -0500 | [diff] [blame] | 407 | }; |
| 408 | |
Alex Deucher | ba032a5 | 2010-10-04 17:13:01 -0400 | [diff] [blame] | 409 | static void atombios_crtc_program_ss(struct drm_crtc *crtc, |
| 410 | int enable, |
| 411 | int pll_id, |
| 412 | struct radeon_atom_ss *ss) |
Alex Deucher | ebbe1cb | 2009-10-16 11:15:25 -0400 | [diff] [blame] | 413 | { |
Alex Deucher | ebbe1cb | 2009-10-16 11:15:25 -0400 | [diff] [blame] | 414 | struct drm_device *dev = crtc->dev; |
| 415 | struct radeon_device *rdev = dev->dev_private; |
Alex Deucher | ebbe1cb | 2009-10-16 11:15:25 -0400 | [diff] [blame] | 416 | int index = GetIndexIntoMasterTable(COMMAND, EnableSpreadSpectrumOnPPLL); |
Alex Deucher | 26b9fc3 | 2010-02-01 16:39:11 -0500 | [diff] [blame] | 417 | union atom_enable_ss args; |
Alex Deucher | ebbe1cb | 2009-10-16 11:15:25 -0400 | [diff] [blame] | 418 | |
Alex Deucher | 26b9fc3 | 2010-02-01 16:39:11 -0500 | [diff] [blame] | 419 | memset(&args, 0, sizeof(args)); |
Alex Deucher | ba032a5 | 2010-10-04 17:13:01 -0400 | [diff] [blame] | 420 | |
Alex Deucher | a572eaa | 2011-01-06 21:19:16 -0500 | [diff] [blame] | 421 | if (ASIC_IS_DCE5(rdev)) { |
Cédric Cano | 4589433 | 2011-02-11 19:45:37 -0500 | [diff] [blame] | 422 | args.v3.usSpreadSpectrumAmountFrac = cpu_to_le16(0); |
Alex Deucher | a572eaa | 2011-01-06 21:19:16 -0500 | [diff] [blame] | 423 | args.v3.ucSpreadSpectrumType = ss->type; |
| 424 | switch (pll_id) { |
| 425 | case ATOM_PPLL1: |
| 426 | args.v3.ucSpreadSpectrumType |= ATOM_PPLL_SS_TYPE_V3_P1PLL; |
Cédric Cano | 4589433 | 2011-02-11 19:45:37 -0500 | [diff] [blame] | 427 | args.v3.usSpreadSpectrumAmount = cpu_to_le16(ss->amount); |
| 428 | args.v3.usSpreadSpectrumStep = cpu_to_le16(ss->step); |
Alex Deucher | a572eaa | 2011-01-06 21:19:16 -0500 | [diff] [blame] | 429 | break; |
| 430 | case ATOM_PPLL2: |
| 431 | args.v3.ucSpreadSpectrumType |= ATOM_PPLL_SS_TYPE_V3_P2PLL; |
Cédric Cano | 4589433 | 2011-02-11 19:45:37 -0500 | [diff] [blame] | 432 | args.v3.usSpreadSpectrumAmount = cpu_to_le16(ss->amount); |
| 433 | args.v3.usSpreadSpectrumStep = cpu_to_le16(ss->step); |
Alex Deucher | a572eaa | 2011-01-06 21:19:16 -0500 | [diff] [blame] | 434 | break; |
| 435 | case ATOM_DCPLL: |
| 436 | args.v3.ucSpreadSpectrumType |= ATOM_PPLL_SS_TYPE_V3_DCPLL; |
Cédric Cano | 4589433 | 2011-02-11 19:45:37 -0500 | [diff] [blame] | 437 | args.v3.usSpreadSpectrumAmount = cpu_to_le16(0); |
| 438 | args.v3.usSpreadSpectrumStep = cpu_to_le16(0); |
Alex Deucher | a572eaa | 2011-01-06 21:19:16 -0500 | [diff] [blame] | 439 | break; |
| 440 | case ATOM_PPLL_INVALID: |
| 441 | return; |
| 442 | } |
| 443 | args.v2.ucEnable = enable; |
| 444 | } else if (ASIC_IS_DCE4(rdev)) { |
Alex Deucher | ba032a5 | 2010-10-04 17:13:01 -0400 | [diff] [blame] | 445 | args.v2.usSpreadSpectrumPercentage = cpu_to_le16(ss->percentage); |
| 446 | args.v2.ucSpreadSpectrumType = ss->type; |
| 447 | switch (pll_id) { |
| 448 | case ATOM_PPLL1: |
| 449 | args.v2.ucSpreadSpectrumType |= ATOM_PPLL_SS_TYPE_V2_P1PLL; |
Cédric Cano | 4589433 | 2011-02-11 19:45:37 -0500 | [diff] [blame] | 450 | args.v2.usSpreadSpectrumAmount = cpu_to_le16(ss->amount); |
| 451 | args.v2.usSpreadSpectrumStep = cpu_to_le16(ss->step); |
Alex Deucher | ba032a5 | 2010-10-04 17:13:01 -0400 | [diff] [blame] | 452 | break; |
| 453 | case ATOM_PPLL2: |
| 454 | args.v2.ucSpreadSpectrumType |= ATOM_PPLL_SS_TYPE_V2_P2PLL; |
Cédric Cano | 4589433 | 2011-02-11 19:45:37 -0500 | [diff] [blame] | 455 | args.v2.usSpreadSpectrumAmount = cpu_to_le16(ss->amount); |
| 456 | args.v2.usSpreadSpectrumStep = cpu_to_le16(ss->step); |
Alex Deucher | ba032a5 | 2010-10-04 17:13:01 -0400 | [diff] [blame] | 457 | break; |
| 458 | case ATOM_DCPLL: |
| 459 | args.v2.ucSpreadSpectrumType |= ATOM_PPLL_SS_TYPE_V2_DCPLL; |
Cédric Cano | 4589433 | 2011-02-11 19:45:37 -0500 | [diff] [blame] | 460 | args.v2.usSpreadSpectrumAmount = cpu_to_le16(0); |
| 461 | args.v2.usSpreadSpectrumStep = cpu_to_le16(0); |
Alex Deucher | ba032a5 | 2010-10-04 17:13:01 -0400 | [diff] [blame] | 462 | break; |
| 463 | case ATOM_PPLL_INVALID: |
| 464 | return; |
| 465 | } |
| 466 | args.v2.ucEnable = enable; |
| 467 | } else if (ASIC_IS_DCE3(rdev)) { |
| 468 | args.v1.usSpreadSpectrumPercentage = cpu_to_le16(ss->percentage); |
| 469 | args.v1.ucSpreadSpectrumType = ss->type; |
| 470 | args.v1.ucSpreadSpectrumStep = ss->step; |
| 471 | args.v1.ucSpreadSpectrumDelay = ss->delay; |
| 472 | args.v1.ucSpreadSpectrumRange = ss->range; |
| 473 | args.v1.ucPpll = pll_id; |
| 474 | args.v1.ucEnable = enable; |
| 475 | } else if (ASIC_IS_AVIVO(rdev)) { |
| 476 | if (enable == ATOM_DISABLE) { |
| 477 | atombios_disable_ss(crtc); |
| 478 | return; |
| 479 | } |
| 480 | args.lvds_ss_2.usSpreadSpectrumPercentage = cpu_to_le16(ss->percentage); |
| 481 | args.lvds_ss_2.ucSpreadSpectrumType = ss->type; |
| 482 | args.lvds_ss_2.ucSpreadSpectrumStep = ss->step; |
| 483 | args.lvds_ss_2.ucSpreadSpectrumDelay = ss->delay; |
| 484 | args.lvds_ss_2.ucSpreadSpectrumRange = ss->range; |
| 485 | args.lvds_ss_2.ucEnable = enable; |
Alex Deucher | ebbe1cb | 2009-10-16 11:15:25 -0400 | [diff] [blame] | 486 | } else { |
Alex Deucher | ba032a5 | 2010-10-04 17:13:01 -0400 | [diff] [blame] | 487 | if (enable == ATOM_DISABLE) { |
| 488 | atombios_disable_ss(crtc); |
| 489 | return; |
| 490 | } |
| 491 | args.lvds_ss.usSpreadSpectrumPercentage = cpu_to_le16(ss->percentage); |
| 492 | args.lvds_ss.ucSpreadSpectrumType = ss->type; |
| 493 | args.lvds_ss.ucSpreadSpectrumStepSize_Delay = (ss->step & 3) << 2; |
| 494 | args.lvds_ss.ucSpreadSpectrumStepSize_Delay |= (ss->delay & 7) << 4; |
| 495 | args.lvds_ss.ucEnable = enable; |
Alex Deucher | ebbe1cb | 2009-10-16 11:15:25 -0400 | [diff] [blame] | 496 | } |
Alex Deucher | 26b9fc3 | 2010-02-01 16:39:11 -0500 | [diff] [blame] | 497 | atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args); |
Alex Deucher | ebbe1cb | 2009-10-16 11:15:25 -0400 | [diff] [blame] | 498 | } |
| 499 | |
Alex Deucher | 4eaeca3 | 2010-01-19 17:32:27 -0500 | [diff] [blame] | 500 | union adjust_pixel_clock { |
| 501 | ADJUST_DISPLAY_PLL_PS_ALLOCATION v1; |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 502 | ADJUST_DISPLAY_PLL_PS_ALLOCATION_V3 v3; |
Alex Deucher | 4eaeca3 | 2010-01-19 17:32:27 -0500 | [diff] [blame] | 503 | }; |
| 504 | |
| 505 | static u32 atombios_adjust_pll(struct drm_crtc *crtc, |
| 506 | struct drm_display_mode *mode, |
Alex Deucher | ba032a5 | 2010-10-04 17:13:01 -0400 | [diff] [blame] | 507 | struct radeon_pll *pll, |
| 508 | bool ss_enabled, |
| 509 | struct radeon_atom_ss *ss) |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 510 | { |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 511 | struct drm_device *dev = crtc->dev; |
| 512 | struct radeon_device *rdev = dev->dev_private; |
| 513 | struct drm_encoder *encoder = NULL; |
| 514 | struct radeon_encoder *radeon_encoder = NULL; |
Alex Deucher | 4eaeca3 | 2010-01-19 17:32:27 -0500 | [diff] [blame] | 515 | u32 adjusted_clock = mode->clock; |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 516 | int encoder_mode = 0; |
Alex Deucher | fbee67a | 2010-08-16 12:44:47 -0400 | [diff] [blame] | 517 | u32 dp_clock = mode->clock; |
| 518 | int bpc = 8; |
Alex Deucher | fc10332 | 2010-01-19 17:16:10 -0500 | [diff] [blame] | 519 | |
Alex Deucher | 4eaeca3 | 2010-01-19 17:32:27 -0500 | [diff] [blame] | 520 | /* reset the pll flags */ |
| 521 | pll->flags = 0; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 522 | |
| 523 | if (ASIC_IS_AVIVO(rdev)) { |
Alex Deucher | eb1300b | 2009-07-13 11:09:56 -0400 | [diff] [blame] | 524 | if ((rdev->family == CHIP_RS600) || |
| 525 | (rdev->family == CHIP_RS690) || |
| 526 | (rdev->family == CHIP_RS740)) |
Alex Deucher | 2ff776c | 2010-06-08 19:44:36 -0400 | [diff] [blame] | 527 | pll->flags |= (/*RADEON_PLL_USE_FRAC_FB_DIV |*/ |
Alex Deucher | fc10332 | 2010-01-19 17:16:10 -0500 | [diff] [blame] | 528 | RADEON_PLL_PREFER_CLOSEST_LOWER); |
Dave Airlie | 5480f72 | 2010-10-19 10:36:47 +1000 | [diff] [blame] | 529 | |
| 530 | if (ASIC_IS_DCE32(rdev) && mode->clock > 200000) /* range limits??? */ |
| 531 | pll->flags |= RADEON_PLL_PREFER_HIGH_FB_DIV; |
| 532 | else |
| 533 | pll->flags |= RADEON_PLL_PREFER_LOW_REF_DIV; |
Alex Deucher | 9bb09fa | 2011-04-07 10:31:25 -0400 | [diff] [blame] | 534 | |
Alex Deucher | 5785e53 | 2011-04-19 15:24:59 -0400 | [diff] [blame^] | 535 | if (rdev->family < CHIP_RV770) |
Alex Deucher | 9bb09fa | 2011-04-07 10:31:25 -0400 | [diff] [blame] | 536 | pll->flags |= RADEON_PLL_PREFER_MINM_OVER_MAXP; |
Dave Airlie | 5480f72 | 2010-10-19 10:36:47 +1000 | [diff] [blame] | 537 | } else { |
Alex Deucher | fc10332 | 2010-01-19 17:16:10 -0500 | [diff] [blame] | 538 | pll->flags |= RADEON_PLL_LEGACY; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 539 | |
Dave Airlie | 5480f72 | 2010-10-19 10:36:47 +1000 | [diff] [blame] | 540 | if (mode->clock > 200000) /* range limits??? */ |
| 541 | pll->flags |= RADEON_PLL_PREFER_HIGH_FB_DIV; |
| 542 | else |
| 543 | pll->flags |= RADEON_PLL_PREFER_LOW_REF_DIV; |
Dave Airlie | 5480f72 | 2010-10-19 10:36:47 +1000 | [diff] [blame] | 544 | } |
| 545 | |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 546 | list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) { |
| 547 | if (encoder->crtc == crtc) { |
Alex Deucher | 4eaeca3 | 2010-01-19 17:32:27 -0500 | [diff] [blame] | 548 | radeon_encoder = to_radeon_encoder(encoder); |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 549 | encoder_mode = atombios_get_encoder_mode(encoder); |
Alex Deucher | fbee67a | 2010-08-16 12:44:47 -0400 | [diff] [blame] | 550 | if (radeon_encoder->devices & (ATOM_DEVICE_LCD_SUPPORT | ATOM_DEVICE_DFP_SUPPORT)) { |
| 551 | struct drm_connector *connector = radeon_get_connector_for_encoder(encoder); |
| 552 | if (connector) { |
| 553 | struct radeon_connector *radeon_connector = to_radeon_connector(connector); |
| 554 | struct radeon_connector_atom_dig *dig_connector = |
| 555 | radeon_connector->con_priv; |
| 556 | |
| 557 | dp_clock = dig_connector->dp_clock; |
| 558 | } |
| 559 | } |
Alex Deucher | 5b40ddf | 2011-02-14 11:43:11 -0500 | [diff] [blame] | 560 | |
Alex Deucher | ba032a5 | 2010-10-04 17:13:01 -0400 | [diff] [blame] | 561 | /* use recommended ref_div for ss */ |
| 562 | if (radeon_encoder->devices & (ATOM_DEVICE_LCD_SUPPORT)) { |
| 563 | if (ss_enabled) { |
| 564 | if (ss->refdiv) { |
| 565 | pll->flags |= RADEON_PLL_USE_REF_DIV; |
| 566 | pll->reference_div = ss->refdiv; |
Alex Deucher | 5b40ddf | 2011-02-14 11:43:11 -0500 | [diff] [blame] | 567 | if (ASIC_IS_AVIVO(rdev)) |
| 568 | pll->flags |= RADEON_PLL_USE_FRAC_FB_DIV; |
Alex Deucher | ba032a5 | 2010-10-04 17:13:01 -0400 | [diff] [blame] | 569 | } |
| 570 | } |
| 571 | } |
Alex Deucher | 5b40ddf | 2011-02-14 11:43:11 -0500 | [diff] [blame] | 572 | |
Alex Deucher | 4eaeca3 | 2010-01-19 17:32:27 -0500 | [diff] [blame] | 573 | if (ASIC_IS_AVIVO(rdev)) { |
| 574 | /* DVO wants 2x pixel clock if the DVO chip is in 12 bit mode */ |
| 575 | if (radeon_encoder->encoder_id == ENCODER_OBJECT_ID_INTERNAL_KLDSCP_DVO1) |
| 576 | adjusted_clock = mode->clock * 2; |
Alex Deucher | 48dfaae | 2010-09-29 11:37:41 -0400 | [diff] [blame] | 577 | if (radeon_encoder->active_device & (ATOM_DEVICE_TV_SUPPORT)) |
Alex Deucher | a1a4b23 | 2010-04-09 15:31:56 -0400 | [diff] [blame] | 578 | pll->flags |= RADEON_PLL_PREFER_CLOSEST_LOWER; |
Alex Deucher | 5b40ddf | 2011-02-14 11:43:11 -0500 | [diff] [blame] | 579 | if (radeon_encoder->devices & (ATOM_DEVICE_LCD_SUPPORT)) |
| 580 | pll->flags |= RADEON_PLL_IS_LCD; |
Alex Deucher | 4eaeca3 | 2010-01-19 17:32:27 -0500 | [diff] [blame] | 581 | } else { |
| 582 | if (encoder->encoder_type != DRM_MODE_ENCODER_DAC) |
Alex Deucher | fc10332 | 2010-01-19 17:16:10 -0500 | [diff] [blame] | 583 | pll->flags |= RADEON_PLL_NO_ODD_POST_DIV; |
Alex Deucher | 4eaeca3 | 2010-01-19 17:32:27 -0500 | [diff] [blame] | 584 | if (encoder->encoder_type == DRM_MODE_ENCODER_LVDS) |
Alex Deucher | fc10332 | 2010-01-19 17:16:10 -0500 | [diff] [blame] | 585 | pll->flags |= RADEON_PLL_USE_REF_DIV; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 586 | } |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 587 | break; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 588 | } |
| 589 | } |
| 590 | |
Alex Deucher | 2606c88 | 2009-10-08 13:36:21 -0400 | [diff] [blame] | 591 | /* DCE3+ has an AdjustDisplayPll that will adjust the pixel clock |
| 592 | * accordingly based on the encoder/transmitter to work around |
| 593 | * special hw requirements. |
| 594 | */ |
| 595 | if (ASIC_IS_DCE3(rdev)) { |
Alex Deucher | 4eaeca3 | 2010-01-19 17:32:27 -0500 | [diff] [blame] | 596 | union adjust_pixel_clock args; |
Alex Deucher | 4eaeca3 | 2010-01-19 17:32:27 -0500 | [diff] [blame] | 597 | u8 frev, crev; |
| 598 | int index; |
Alex Deucher | 2606c88 | 2009-10-08 13:36:21 -0400 | [diff] [blame] | 599 | |
Alex Deucher | 2606c88 | 2009-10-08 13:36:21 -0400 | [diff] [blame] | 600 | index = GetIndexIntoMasterTable(COMMAND, AdjustDisplayPll); |
Alex Deucher | a084e6e | 2010-03-18 01:04:01 -0400 | [diff] [blame] | 601 | if (!atom_parse_cmd_header(rdev->mode_info.atom_context, index, &frev, |
| 602 | &crev)) |
| 603 | return adjusted_clock; |
Alex Deucher | 4eaeca3 | 2010-01-19 17:32:27 -0500 | [diff] [blame] | 604 | |
| 605 | memset(&args, 0, sizeof(args)); |
| 606 | |
| 607 | switch (frev) { |
| 608 | case 1: |
| 609 | switch (crev) { |
| 610 | case 1: |
| 611 | case 2: |
| 612 | args.v1.usPixelClock = cpu_to_le16(mode->clock / 10); |
| 613 | args.v1.ucTransmitterID = radeon_encoder->encoder_id; |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 614 | args.v1.ucEncodeMode = encoder_mode; |
Alex Deucher | b526ce2 | 2011-01-20 23:35:58 +0000 | [diff] [blame] | 615 | if (ss_enabled) |
Alex Deucher | fbee67a | 2010-08-16 12:44:47 -0400 | [diff] [blame] | 616 | args.v1.ucConfig |= |
| 617 | ADJUST_DISPLAY_CONFIG_SS_ENABLE; |
Alex Deucher | 4eaeca3 | 2010-01-19 17:32:27 -0500 | [diff] [blame] | 618 | |
| 619 | atom_execute_table(rdev->mode_info.atom_context, |
| 620 | index, (uint32_t *)&args); |
| 621 | adjusted_clock = le16_to_cpu(args.v1.usPixelClock) * 10; |
| 622 | break; |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 623 | case 3: |
| 624 | args.v3.sInput.usPixelClock = cpu_to_le16(mode->clock / 10); |
| 625 | args.v3.sInput.ucTransmitterID = radeon_encoder->encoder_id; |
| 626 | args.v3.sInput.ucEncodeMode = encoder_mode; |
| 627 | args.v3.sInput.ucDispPllConfig = 0; |
Alex Deucher | b526ce2 | 2011-01-20 23:35:58 +0000 | [diff] [blame] | 628 | if (ss_enabled) |
| 629 | args.v3.sInput.ucDispPllConfig |= |
| 630 | DISPPLL_CONFIG_SS_ENABLE; |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 631 | if (radeon_encoder->devices & (ATOM_DEVICE_DFP_SUPPORT)) { |
| 632 | struct radeon_encoder_atom_dig *dig = radeon_encoder->enc_priv; |
Alex Deucher | fbee67a | 2010-08-16 12:44:47 -0400 | [diff] [blame] | 633 | if (encoder_mode == ATOM_ENCODER_MODE_DP) { |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 634 | args.v3.sInput.ucDispPllConfig |= |
| 635 | DISPPLL_CONFIG_COHERENT_MODE; |
Alex Deucher | fbee67a | 2010-08-16 12:44:47 -0400 | [diff] [blame] | 636 | /* 16200 or 27000 */ |
| 637 | args.v3.sInput.usPixelClock = cpu_to_le16(dp_clock / 10); |
| 638 | } else { |
| 639 | if (encoder_mode == ATOM_ENCODER_MODE_HDMI) { |
| 640 | /* deep color support */ |
| 641 | args.v3.sInput.usPixelClock = |
| 642 | cpu_to_le16((mode->clock * bpc / 8) / 10); |
| 643 | } |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 644 | if (dig->coherent_mode) |
| 645 | args.v3.sInput.ucDispPllConfig |= |
| 646 | DISPPLL_CONFIG_COHERENT_MODE; |
| 647 | if (mode->clock > 165000) |
| 648 | args.v3.sInput.ucDispPllConfig |= |
| 649 | DISPPLL_CONFIG_DUAL_LINK; |
| 650 | } |
| 651 | } else if (radeon_encoder->devices & (ATOM_DEVICE_LCD_SUPPORT)) { |
Alex Deucher | fbee67a | 2010-08-16 12:44:47 -0400 | [diff] [blame] | 652 | if (encoder_mode == ATOM_ENCODER_MODE_DP) { |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 653 | args.v3.sInput.ucDispPllConfig |= |
Alex Deucher | 9f998ad | 2010-03-29 21:37:08 -0400 | [diff] [blame] | 654 | DISPPLL_CONFIG_COHERENT_MODE; |
Alex Deucher | fbee67a | 2010-08-16 12:44:47 -0400 | [diff] [blame] | 655 | /* 16200 or 27000 */ |
| 656 | args.v3.sInput.usPixelClock = cpu_to_le16(dp_clock / 10); |
Alex Deucher | b526ce2 | 2011-01-20 23:35:58 +0000 | [diff] [blame] | 657 | } else if (encoder_mode != ATOM_ENCODER_MODE_LVDS) { |
Alex Deucher | 9f998ad | 2010-03-29 21:37:08 -0400 | [diff] [blame] | 658 | if (mode->clock > 165000) |
| 659 | args.v3.sInput.ucDispPllConfig |= |
| 660 | DISPPLL_CONFIG_DUAL_LINK; |
| 661 | } |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 662 | } |
| 663 | atom_execute_table(rdev->mode_info.atom_context, |
| 664 | index, (uint32_t *)&args); |
| 665 | adjusted_clock = le32_to_cpu(args.v3.sOutput.ulDispPllFreq) * 10; |
| 666 | if (args.v3.sOutput.ucRefDiv) { |
Alex Deucher | 9f4283f | 2011-02-16 21:17:04 -0500 | [diff] [blame] | 667 | pll->flags |= RADEON_PLL_USE_FRAC_FB_DIV; |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 668 | pll->flags |= RADEON_PLL_USE_REF_DIV; |
| 669 | pll->reference_div = args.v3.sOutput.ucRefDiv; |
| 670 | } |
| 671 | if (args.v3.sOutput.ucPostDiv) { |
Alex Deucher | 9f4283f | 2011-02-16 21:17:04 -0500 | [diff] [blame] | 672 | pll->flags |= RADEON_PLL_USE_FRAC_FB_DIV; |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 673 | pll->flags |= RADEON_PLL_USE_POST_DIV; |
| 674 | pll->post_div = args.v3.sOutput.ucPostDiv; |
| 675 | } |
| 676 | break; |
Alex Deucher | 4eaeca3 | 2010-01-19 17:32:27 -0500 | [diff] [blame] | 677 | default: |
| 678 | DRM_ERROR("Unknown table version %d %d\n", frev, crev); |
| 679 | return adjusted_clock; |
| 680 | } |
| 681 | break; |
| 682 | default: |
| 683 | DRM_ERROR("Unknown table version %d %d\n", frev, crev); |
| 684 | return adjusted_clock; |
| 685 | } |
Alex Deucher | d56ef9c | 2009-10-27 12:11:09 -0400 | [diff] [blame] | 686 | } |
Alex Deucher | 4eaeca3 | 2010-01-19 17:32:27 -0500 | [diff] [blame] | 687 | return adjusted_clock; |
| 688 | } |
| 689 | |
| 690 | union set_pixel_clock { |
| 691 | SET_PIXEL_CLOCK_PS_ALLOCATION base; |
| 692 | PIXEL_CLOCK_PARAMETERS v1; |
| 693 | PIXEL_CLOCK_PARAMETERS_V2 v2; |
| 694 | PIXEL_CLOCK_PARAMETERS_V3 v3; |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 695 | PIXEL_CLOCK_PARAMETERS_V5 v5; |
Alex Deucher | f82b3dd | 2011-01-06 21:19:15 -0500 | [diff] [blame] | 696 | PIXEL_CLOCK_PARAMETERS_V6 v6; |
Alex Deucher | 4eaeca3 | 2010-01-19 17:32:27 -0500 | [diff] [blame] | 697 | }; |
| 698 | |
Alex Deucher | f82b3dd | 2011-01-06 21:19:15 -0500 | [diff] [blame] | 699 | /* on DCE5, make sure the voltage is high enough to support the |
| 700 | * required disp clk. |
| 701 | */ |
| 702 | static void atombios_crtc_set_dcpll(struct drm_crtc *crtc, |
| 703 | u32 dispclk) |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 704 | { |
| 705 | struct drm_device *dev = crtc->dev; |
| 706 | struct radeon_device *rdev = dev->dev_private; |
| 707 | u8 frev, crev; |
| 708 | int index; |
| 709 | union set_pixel_clock args; |
| 710 | |
| 711 | memset(&args, 0, sizeof(args)); |
| 712 | |
| 713 | index = GetIndexIntoMasterTable(COMMAND, SetPixelClock); |
Alex Deucher | a084e6e | 2010-03-18 01:04:01 -0400 | [diff] [blame] | 714 | if (!atom_parse_cmd_header(rdev->mode_info.atom_context, index, &frev, |
| 715 | &crev)) |
| 716 | return; |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 717 | |
| 718 | switch (frev) { |
| 719 | case 1: |
| 720 | switch (crev) { |
| 721 | case 5: |
| 722 | /* if the default dcpll clock is specified, |
| 723 | * SetPixelClock provides the dividers |
| 724 | */ |
| 725 | args.v5.ucCRTC = ATOM_CRTC_INVALID; |
Cédric Cano | 4589433 | 2011-02-11 19:45:37 -0500 | [diff] [blame] | 726 | args.v5.usPixelClock = cpu_to_le16(dispclk); |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 727 | args.v5.ucPpll = ATOM_DCPLL; |
| 728 | break; |
Alex Deucher | f82b3dd | 2011-01-06 21:19:15 -0500 | [diff] [blame] | 729 | case 6: |
| 730 | /* if the default dcpll clock is specified, |
| 731 | * SetPixelClock provides the dividers |
| 732 | */ |
Alex Deucher | 265aa6c | 2011-02-14 16:16:22 -0500 | [diff] [blame] | 733 | args.v6.ulDispEngClkFreq = cpu_to_le32(dispclk); |
Alex Deucher | f82b3dd | 2011-01-06 21:19:15 -0500 | [diff] [blame] | 734 | args.v6.ucPpll = ATOM_DCPLL; |
| 735 | break; |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 736 | default: |
| 737 | DRM_ERROR("Unknown table version %d %d\n", frev, crev); |
| 738 | return; |
| 739 | } |
| 740 | break; |
| 741 | default: |
| 742 | DRM_ERROR("Unknown table version %d %d\n", frev, crev); |
| 743 | return; |
| 744 | } |
| 745 | atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args); |
| 746 | } |
| 747 | |
Alex Deucher | 37f9003 | 2010-06-11 17:58:38 -0400 | [diff] [blame] | 748 | static void atombios_crtc_program_pll(struct drm_crtc *crtc, |
| 749 | int crtc_id, |
| 750 | int pll_id, |
| 751 | u32 encoder_mode, |
| 752 | u32 encoder_id, |
| 753 | u32 clock, |
| 754 | u32 ref_div, |
| 755 | u32 fb_div, |
| 756 | u32 frac_fb_div, |
| 757 | u32 post_div) |
| 758 | { |
| 759 | struct drm_device *dev = crtc->dev; |
| 760 | struct radeon_device *rdev = dev->dev_private; |
| 761 | u8 frev, crev; |
| 762 | int index = GetIndexIntoMasterTable(COMMAND, SetPixelClock); |
| 763 | union set_pixel_clock args; |
| 764 | |
| 765 | memset(&args, 0, sizeof(args)); |
| 766 | |
| 767 | if (!atom_parse_cmd_header(rdev->mode_info.atom_context, index, &frev, |
| 768 | &crev)) |
| 769 | return; |
| 770 | |
| 771 | switch (frev) { |
| 772 | case 1: |
| 773 | switch (crev) { |
| 774 | case 1: |
| 775 | if (clock == ATOM_DISABLE) |
| 776 | return; |
| 777 | args.v1.usPixelClock = cpu_to_le16(clock / 10); |
| 778 | args.v1.usRefDiv = cpu_to_le16(ref_div); |
| 779 | args.v1.usFbDiv = cpu_to_le16(fb_div); |
| 780 | args.v1.ucFracFbDiv = frac_fb_div; |
| 781 | args.v1.ucPostDiv = post_div; |
| 782 | args.v1.ucPpll = pll_id; |
| 783 | args.v1.ucCRTC = crtc_id; |
| 784 | args.v1.ucRefDivSrc = 1; |
| 785 | break; |
| 786 | case 2: |
| 787 | args.v2.usPixelClock = cpu_to_le16(clock / 10); |
| 788 | args.v2.usRefDiv = cpu_to_le16(ref_div); |
| 789 | args.v2.usFbDiv = cpu_to_le16(fb_div); |
| 790 | args.v2.ucFracFbDiv = frac_fb_div; |
| 791 | args.v2.ucPostDiv = post_div; |
| 792 | args.v2.ucPpll = pll_id; |
| 793 | args.v2.ucCRTC = crtc_id; |
| 794 | args.v2.ucRefDivSrc = 1; |
| 795 | break; |
| 796 | case 3: |
| 797 | args.v3.usPixelClock = cpu_to_le16(clock / 10); |
| 798 | args.v3.usRefDiv = cpu_to_le16(ref_div); |
| 799 | args.v3.usFbDiv = cpu_to_le16(fb_div); |
| 800 | args.v3.ucFracFbDiv = frac_fb_div; |
| 801 | args.v3.ucPostDiv = post_div; |
| 802 | args.v3.ucPpll = pll_id; |
| 803 | args.v3.ucMiscInfo = (pll_id << 2); |
| 804 | args.v3.ucTransmitterId = encoder_id; |
| 805 | args.v3.ucEncoderMode = encoder_mode; |
| 806 | break; |
| 807 | case 5: |
| 808 | args.v5.ucCRTC = crtc_id; |
| 809 | args.v5.usPixelClock = cpu_to_le16(clock / 10); |
| 810 | args.v5.ucRefDiv = ref_div; |
| 811 | args.v5.usFbDiv = cpu_to_le16(fb_div); |
| 812 | args.v5.ulFbDivDecFrac = cpu_to_le32(frac_fb_div * 100000); |
| 813 | args.v5.ucPostDiv = post_div; |
| 814 | args.v5.ucMiscInfo = 0; /* HDMI depth, etc. */ |
| 815 | args.v5.ucTransmitterID = encoder_id; |
| 816 | args.v5.ucEncoderMode = encoder_mode; |
| 817 | args.v5.ucPpll = pll_id; |
| 818 | break; |
Alex Deucher | f82b3dd | 2011-01-06 21:19:15 -0500 | [diff] [blame] | 819 | case 6: |
| 820 | args.v6.ulCrtcPclkFreq.ucCRTC = crtc_id; |
| 821 | args.v6.ulCrtcPclkFreq.ulPixelClock = cpu_to_le32(clock / 10); |
| 822 | args.v6.ucRefDiv = ref_div; |
| 823 | args.v6.usFbDiv = cpu_to_le16(fb_div); |
| 824 | args.v6.ulFbDivDecFrac = cpu_to_le32(frac_fb_div * 100000); |
| 825 | args.v6.ucPostDiv = post_div; |
| 826 | args.v6.ucMiscInfo = 0; /* HDMI depth, etc. */ |
| 827 | args.v6.ucTransmitterID = encoder_id; |
| 828 | args.v6.ucEncoderMode = encoder_mode; |
| 829 | args.v6.ucPpll = pll_id; |
| 830 | break; |
Alex Deucher | 37f9003 | 2010-06-11 17:58:38 -0400 | [diff] [blame] | 831 | default: |
| 832 | DRM_ERROR("Unknown table version %d %d\n", frev, crev); |
| 833 | return; |
| 834 | } |
| 835 | break; |
| 836 | default: |
| 837 | DRM_ERROR("Unknown table version %d %d\n", frev, crev); |
| 838 | return; |
| 839 | } |
| 840 | |
| 841 | atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args); |
| 842 | } |
| 843 | |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 844 | 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] | 845 | { |
| 846 | struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc); |
| 847 | struct drm_device *dev = crtc->dev; |
| 848 | struct radeon_device *rdev = dev->dev_private; |
| 849 | struct drm_encoder *encoder = NULL; |
| 850 | struct radeon_encoder *radeon_encoder = NULL; |
Alex Deucher | 4eaeca3 | 2010-01-19 17:32:27 -0500 | [diff] [blame] | 851 | u32 pll_clock = mode->clock; |
| 852 | u32 ref_div = 0, fb_div = 0, frac_fb_div = 0, post_div = 0; |
| 853 | struct radeon_pll *pll; |
| 854 | u32 adjusted_clock; |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 855 | int encoder_mode = 0; |
Alex Deucher | ba032a5 | 2010-10-04 17:13:01 -0400 | [diff] [blame] | 856 | struct radeon_atom_ss ss; |
| 857 | bool ss_enabled = false; |
Alex Deucher | 4eaeca3 | 2010-01-19 17:32:27 -0500 | [diff] [blame] | 858 | |
Alex Deucher | 4eaeca3 | 2010-01-19 17:32:27 -0500 | [diff] [blame] | 859 | list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) { |
| 860 | if (encoder->crtc == crtc) { |
| 861 | radeon_encoder = to_radeon_encoder(encoder); |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 862 | encoder_mode = atombios_get_encoder_mode(encoder); |
Alex Deucher | 4eaeca3 | 2010-01-19 17:32:27 -0500 | [diff] [blame] | 863 | break; |
| 864 | } |
| 865 | } |
| 866 | |
| 867 | if (!radeon_encoder) |
| 868 | return; |
| 869 | |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 870 | switch (radeon_crtc->pll_id) { |
| 871 | case ATOM_PPLL1: |
Alex Deucher | 4eaeca3 | 2010-01-19 17:32:27 -0500 | [diff] [blame] | 872 | pll = &rdev->clock.p1pll; |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 873 | break; |
| 874 | case ATOM_PPLL2: |
Alex Deucher | 4eaeca3 | 2010-01-19 17:32:27 -0500 | [diff] [blame] | 875 | pll = &rdev->clock.p2pll; |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 876 | break; |
| 877 | case ATOM_DCPLL: |
| 878 | case ATOM_PPLL_INVALID: |
Stefan Richter | 921d98b | 2010-05-26 10:27:44 +1000 | [diff] [blame] | 879 | default: |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 880 | pll = &rdev->clock.dcpll; |
| 881 | break; |
| 882 | } |
Alex Deucher | 4eaeca3 | 2010-01-19 17:32:27 -0500 | [diff] [blame] | 883 | |
Alex Deucher | ba032a5 | 2010-10-04 17:13:01 -0400 | [diff] [blame] | 884 | if (radeon_encoder->active_device & |
| 885 | (ATOM_DEVICE_LCD_SUPPORT | ATOM_DEVICE_DFP_SUPPORT)) { |
| 886 | struct radeon_encoder_atom_dig *dig = radeon_encoder->enc_priv; |
| 887 | struct drm_connector *connector = |
| 888 | radeon_get_connector_for_encoder(encoder); |
| 889 | struct radeon_connector *radeon_connector = |
| 890 | to_radeon_connector(connector); |
| 891 | struct radeon_connector_atom_dig *dig_connector = |
| 892 | radeon_connector->con_priv; |
| 893 | int dp_clock; |
| 894 | |
| 895 | switch (encoder_mode) { |
| 896 | case ATOM_ENCODER_MODE_DP: |
| 897 | /* DP/eDP */ |
| 898 | dp_clock = dig_connector->dp_clock / 10; |
| 899 | if (radeon_encoder->active_device & (ATOM_DEVICE_LCD_SUPPORT)) { |
| 900 | if (ASIC_IS_DCE4(rdev)) |
| 901 | ss_enabled = |
| 902 | radeon_atombios_get_asic_ss_info(rdev, &ss, |
| 903 | dig->lcd_ss_id, |
| 904 | dp_clock); |
| 905 | else |
| 906 | ss_enabled = |
| 907 | radeon_atombios_get_ppll_ss_info(rdev, &ss, |
| 908 | dig->lcd_ss_id); |
| 909 | } else { |
| 910 | if (ASIC_IS_DCE4(rdev)) |
| 911 | ss_enabled = |
| 912 | radeon_atombios_get_asic_ss_info(rdev, &ss, |
| 913 | ASIC_INTERNAL_SS_ON_DP, |
| 914 | dp_clock); |
| 915 | else { |
| 916 | if (dp_clock == 16200) { |
| 917 | ss_enabled = |
| 918 | radeon_atombios_get_ppll_ss_info(rdev, &ss, |
| 919 | ATOM_DP_SS_ID2); |
| 920 | if (!ss_enabled) |
| 921 | ss_enabled = |
| 922 | radeon_atombios_get_ppll_ss_info(rdev, &ss, |
| 923 | ATOM_DP_SS_ID1); |
| 924 | } else |
| 925 | ss_enabled = |
| 926 | radeon_atombios_get_ppll_ss_info(rdev, &ss, |
| 927 | ATOM_DP_SS_ID1); |
| 928 | } |
| 929 | } |
| 930 | break; |
| 931 | case ATOM_ENCODER_MODE_LVDS: |
| 932 | if (ASIC_IS_DCE4(rdev)) |
| 933 | ss_enabled = radeon_atombios_get_asic_ss_info(rdev, &ss, |
| 934 | dig->lcd_ss_id, |
| 935 | mode->clock / 10); |
| 936 | else |
| 937 | ss_enabled = radeon_atombios_get_ppll_ss_info(rdev, &ss, |
| 938 | dig->lcd_ss_id); |
| 939 | break; |
| 940 | case ATOM_ENCODER_MODE_DVI: |
| 941 | if (ASIC_IS_DCE4(rdev)) |
| 942 | ss_enabled = |
| 943 | radeon_atombios_get_asic_ss_info(rdev, &ss, |
| 944 | ASIC_INTERNAL_SS_ON_TMDS, |
| 945 | mode->clock / 10); |
| 946 | break; |
| 947 | case ATOM_ENCODER_MODE_HDMI: |
| 948 | if (ASIC_IS_DCE4(rdev)) |
| 949 | ss_enabled = |
| 950 | radeon_atombios_get_asic_ss_info(rdev, &ss, |
| 951 | ASIC_INTERNAL_SS_ON_HDMI, |
| 952 | mode->clock / 10); |
| 953 | break; |
| 954 | default: |
| 955 | break; |
| 956 | } |
| 957 | } |
| 958 | |
Alex Deucher | 4eaeca3 | 2010-01-19 17:32:27 -0500 | [diff] [blame] | 959 | /* adjust pixel clock as needed */ |
Alex Deucher | ba032a5 | 2010-10-04 17:13:01 -0400 | [diff] [blame] | 960 | adjusted_clock = atombios_adjust_pll(crtc, mode, pll, ss_enabled, &ss); |
Alex Deucher | 2606c88 | 2009-10-08 13:36:21 -0400 | [diff] [blame] | 961 | |
Alex Deucher | 64146f8 | 2011-03-22 01:46:12 -0400 | [diff] [blame] | 962 | if (radeon_encoder->active_device & (ATOM_DEVICE_TV_SUPPORT)) |
| 963 | /* TV seems to prefer the legacy algo on some boards */ |
| 964 | radeon_compute_pll_legacy(pll, adjusted_clock, &pll_clock, &fb_div, &frac_fb_div, |
| 965 | &ref_div, &post_div); |
| 966 | else if (ASIC_IS_AVIVO(rdev)) |
Alex Deucher | 619efb1 | 2011-01-31 16:48:53 -0500 | [diff] [blame] | 967 | radeon_compute_pll_avivo(pll, adjusted_clock, &pll_clock, &fb_div, &frac_fb_div, |
| 968 | &ref_div, &post_div); |
| 969 | else |
| 970 | radeon_compute_pll_legacy(pll, adjusted_clock, &pll_clock, &fb_div, &frac_fb_div, |
| 971 | &ref_div, &post_div); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 972 | |
Alex Deucher | ba032a5 | 2010-10-04 17:13:01 -0400 | [diff] [blame] | 973 | atombios_crtc_program_ss(crtc, ATOM_DISABLE, radeon_crtc->pll_id, &ss); |
| 974 | |
Alex Deucher | 37f9003 | 2010-06-11 17:58:38 -0400 | [diff] [blame] | 975 | atombios_crtc_program_pll(crtc, radeon_crtc->crtc_id, radeon_crtc->pll_id, |
| 976 | encoder_mode, radeon_encoder->encoder_id, mode->clock, |
| 977 | ref_div, fb_div, frac_fb_div, post_div); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 978 | |
Alex Deucher | ba032a5 | 2010-10-04 17:13:01 -0400 | [diff] [blame] | 979 | if (ss_enabled) { |
| 980 | /* calculate ss amount and step size */ |
| 981 | if (ASIC_IS_DCE4(rdev)) { |
| 982 | u32 step_size; |
| 983 | u32 amount = (((fb_div * 10) + frac_fb_div) * ss.percentage) / 10000; |
| 984 | ss.amount = (amount / 10) & ATOM_PPLL_SS_AMOUNT_V2_FBDIV_MASK; |
| 985 | ss.amount |= ((amount - (ss.amount * 10)) << ATOM_PPLL_SS_AMOUNT_V2_NFRAC_SHIFT) & |
| 986 | ATOM_PPLL_SS_AMOUNT_V2_NFRAC_MASK; |
| 987 | if (ss.type & ATOM_PPLL_SS_TYPE_V2_CENTRE_SPREAD) |
| 988 | step_size = (4 * amount * ref_div * (ss.rate * 2048)) / |
| 989 | (125 * 25 * pll->reference_freq / 100); |
| 990 | else |
| 991 | step_size = (2 * amount * ref_div * (ss.rate * 2048)) / |
| 992 | (125 * 25 * pll->reference_freq / 100); |
| 993 | ss.step = step_size; |
| 994 | } |
| 995 | |
| 996 | atombios_crtc_program_ss(crtc, ATOM_ENABLE, radeon_crtc->pll_id, &ss); |
| 997 | } |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 998 | } |
| 999 | |
Alex Deucher | c9417bd | 2011-02-06 14:23:26 -0500 | [diff] [blame] | 1000 | static int dce4_crtc_do_set_base(struct drm_crtc *crtc, |
| 1001 | struct drm_framebuffer *fb, |
| 1002 | int x, int y, int atomic) |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 1003 | { |
| 1004 | struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc); |
| 1005 | struct drm_device *dev = crtc->dev; |
| 1006 | struct radeon_device *rdev = dev->dev_private; |
| 1007 | struct radeon_framebuffer *radeon_fb; |
Chris Ball | 4dd19b0 | 2010-09-26 06:47:23 -0500 | [diff] [blame] | 1008 | struct drm_framebuffer *target_fb; |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 1009 | struct drm_gem_object *obj; |
| 1010 | struct radeon_bo *rbo; |
| 1011 | uint64_t fb_location; |
| 1012 | uint32_t fb_format, fb_pitch_pixels, tiling_flags; |
Alex Deucher | fa6bee4 | 2011-01-25 11:55:50 -0500 | [diff] [blame] | 1013 | u32 fb_swap = EVERGREEN_GRPH_ENDIAN_SWAP(EVERGREEN_GRPH_ENDIAN_NONE); |
Alex Deucher | fb9674b | 2011-04-02 09:15:50 -0400 | [diff] [blame] | 1014 | u32 tmp; |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 1015 | int r; |
| 1016 | |
| 1017 | /* no fb bound */ |
Chris Ball | 4dd19b0 | 2010-09-26 06:47:23 -0500 | [diff] [blame] | 1018 | if (!atomic && !crtc->fb) { |
Dave Airlie | d9fdaaf | 2010-08-02 10:42:55 +1000 | [diff] [blame] | 1019 | DRM_DEBUG_KMS("No FB bound\n"); |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 1020 | return 0; |
| 1021 | } |
| 1022 | |
Chris Ball | 4dd19b0 | 2010-09-26 06:47:23 -0500 | [diff] [blame] | 1023 | if (atomic) { |
| 1024 | radeon_fb = to_radeon_framebuffer(fb); |
| 1025 | target_fb = fb; |
| 1026 | } |
| 1027 | else { |
| 1028 | radeon_fb = to_radeon_framebuffer(crtc->fb); |
| 1029 | target_fb = crtc->fb; |
| 1030 | } |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 1031 | |
Chris Ball | 4dd19b0 | 2010-09-26 06:47:23 -0500 | [diff] [blame] | 1032 | /* If atomic, assume fb object is pinned & idle & fenced and |
| 1033 | * just update base pointers |
| 1034 | */ |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 1035 | obj = radeon_fb->obj; |
Daniel Vetter | 7e4d15d | 2011-02-18 17:59:17 +0100 | [diff] [blame] | 1036 | rbo = gem_to_radeon_bo(obj); |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 1037 | r = radeon_bo_reserve(rbo, false); |
| 1038 | if (unlikely(r != 0)) |
| 1039 | return r; |
Chris Ball | 4dd19b0 | 2010-09-26 06:47:23 -0500 | [diff] [blame] | 1040 | |
| 1041 | if (atomic) |
| 1042 | fb_location = radeon_bo_gpu_offset(rbo); |
| 1043 | else { |
| 1044 | r = radeon_bo_pin(rbo, RADEON_GEM_DOMAIN_VRAM, &fb_location); |
| 1045 | if (unlikely(r != 0)) { |
| 1046 | radeon_bo_unreserve(rbo); |
| 1047 | return -EINVAL; |
| 1048 | } |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 1049 | } |
Chris Ball | 4dd19b0 | 2010-09-26 06:47:23 -0500 | [diff] [blame] | 1050 | |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 1051 | radeon_bo_get_tiling_flags(rbo, &tiling_flags, NULL); |
| 1052 | radeon_bo_unreserve(rbo); |
| 1053 | |
Chris Ball | 4dd19b0 | 2010-09-26 06:47:23 -0500 | [diff] [blame] | 1054 | switch (target_fb->bits_per_pixel) { |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 1055 | case 8: |
| 1056 | fb_format = (EVERGREEN_GRPH_DEPTH(EVERGREEN_GRPH_DEPTH_8BPP) | |
| 1057 | EVERGREEN_GRPH_FORMAT(EVERGREEN_GRPH_FORMAT_INDEXED)); |
| 1058 | break; |
| 1059 | case 15: |
| 1060 | fb_format = (EVERGREEN_GRPH_DEPTH(EVERGREEN_GRPH_DEPTH_16BPP) | |
| 1061 | EVERGREEN_GRPH_FORMAT(EVERGREEN_GRPH_FORMAT_ARGB1555)); |
| 1062 | break; |
| 1063 | case 16: |
| 1064 | fb_format = (EVERGREEN_GRPH_DEPTH(EVERGREEN_GRPH_DEPTH_16BPP) | |
| 1065 | EVERGREEN_GRPH_FORMAT(EVERGREEN_GRPH_FORMAT_ARGB565)); |
Alex Deucher | fa6bee4 | 2011-01-25 11:55:50 -0500 | [diff] [blame] | 1066 | #ifdef __BIG_ENDIAN |
| 1067 | fb_swap = EVERGREEN_GRPH_ENDIAN_SWAP(EVERGREEN_GRPH_ENDIAN_8IN16); |
| 1068 | #endif |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 1069 | break; |
| 1070 | case 24: |
| 1071 | case 32: |
| 1072 | fb_format = (EVERGREEN_GRPH_DEPTH(EVERGREEN_GRPH_DEPTH_32BPP) | |
| 1073 | EVERGREEN_GRPH_FORMAT(EVERGREEN_GRPH_FORMAT_ARGB8888)); |
Alex Deucher | fa6bee4 | 2011-01-25 11:55:50 -0500 | [diff] [blame] | 1074 | #ifdef __BIG_ENDIAN |
| 1075 | fb_swap = EVERGREEN_GRPH_ENDIAN_SWAP(EVERGREEN_GRPH_ENDIAN_8IN32); |
| 1076 | #endif |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 1077 | break; |
| 1078 | default: |
| 1079 | DRM_ERROR("Unsupported screen depth %d\n", |
Chris Ball | 4dd19b0 | 2010-09-26 06:47:23 -0500 | [diff] [blame] | 1080 | target_fb->bits_per_pixel); |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 1081 | return -EINVAL; |
| 1082 | } |
| 1083 | |
Alex Deucher | 97d6632 | 2010-05-20 12:12:48 -0400 | [diff] [blame] | 1084 | if (tiling_flags & RADEON_TILING_MACRO) |
| 1085 | fb_format |= EVERGREEN_GRPH_ARRAY_MODE(EVERGREEN_GRPH_ARRAY_2D_TILED_THIN1); |
| 1086 | else if (tiling_flags & RADEON_TILING_MICRO) |
| 1087 | fb_format |= EVERGREEN_GRPH_ARRAY_MODE(EVERGREEN_GRPH_ARRAY_1D_TILED_THIN1); |
| 1088 | |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 1089 | switch (radeon_crtc->crtc_id) { |
| 1090 | case 0: |
| 1091 | WREG32(AVIVO_D1VGA_CONTROL, 0); |
| 1092 | break; |
| 1093 | case 1: |
| 1094 | WREG32(AVIVO_D2VGA_CONTROL, 0); |
| 1095 | break; |
| 1096 | case 2: |
| 1097 | WREG32(EVERGREEN_D3VGA_CONTROL, 0); |
| 1098 | break; |
| 1099 | case 3: |
| 1100 | WREG32(EVERGREEN_D4VGA_CONTROL, 0); |
| 1101 | break; |
| 1102 | case 4: |
| 1103 | WREG32(EVERGREEN_D5VGA_CONTROL, 0); |
| 1104 | break; |
| 1105 | case 5: |
| 1106 | WREG32(EVERGREEN_D6VGA_CONTROL, 0); |
| 1107 | break; |
| 1108 | default: |
| 1109 | break; |
| 1110 | } |
| 1111 | |
| 1112 | WREG32(EVERGREEN_GRPH_PRIMARY_SURFACE_ADDRESS_HIGH + radeon_crtc->crtc_offset, |
| 1113 | upper_32_bits(fb_location)); |
| 1114 | WREG32(EVERGREEN_GRPH_SECONDARY_SURFACE_ADDRESS_HIGH + radeon_crtc->crtc_offset, |
| 1115 | upper_32_bits(fb_location)); |
| 1116 | WREG32(EVERGREEN_GRPH_PRIMARY_SURFACE_ADDRESS + radeon_crtc->crtc_offset, |
| 1117 | (u32)fb_location & EVERGREEN_GRPH_SURFACE_ADDRESS_MASK); |
| 1118 | WREG32(EVERGREEN_GRPH_SECONDARY_SURFACE_ADDRESS + radeon_crtc->crtc_offset, |
| 1119 | (u32) fb_location & EVERGREEN_GRPH_SURFACE_ADDRESS_MASK); |
| 1120 | WREG32(EVERGREEN_GRPH_CONTROL + radeon_crtc->crtc_offset, fb_format); |
Alex Deucher | fa6bee4 | 2011-01-25 11:55:50 -0500 | [diff] [blame] | 1121 | WREG32(EVERGREEN_GRPH_SWAP_CONTROL + radeon_crtc->crtc_offset, fb_swap); |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 1122 | |
| 1123 | WREG32(EVERGREEN_GRPH_SURFACE_OFFSET_X + radeon_crtc->crtc_offset, 0); |
| 1124 | WREG32(EVERGREEN_GRPH_SURFACE_OFFSET_Y + radeon_crtc->crtc_offset, 0); |
| 1125 | WREG32(EVERGREEN_GRPH_X_START + radeon_crtc->crtc_offset, 0); |
| 1126 | WREG32(EVERGREEN_GRPH_Y_START + radeon_crtc->crtc_offset, 0); |
Chris Ball | 4dd19b0 | 2010-09-26 06:47:23 -0500 | [diff] [blame] | 1127 | WREG32(EVERGREEN_GRPH_X_END + radeon_crtc->crtc_offset, target_fb->width); |
| 1128 | WREG32(EVERGREEN_GRPH_Y_END + radeon_crtc->crtc_offset, target_fb->height); |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 1129 | |
Chris Ball | 4dd19b0 | 2010-09-26 06:47:23 -0500 | [diff] [blame] | 1130 | fb_pitch_pixels = target_fb->pitch / (target_fb->bits_per_pixel / 8); |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 1131 | WREG32(EVERGREEN_GRPH_PITCH + radeon_crtc->crtc_offset, fb_pitch_pixels); |
| 1132 | WREG32(EVERGREEN_GRPH_ENABLE + radeon_crtc->crtc_offset, 1); |
| 1133 | |
| 1134 | WREG32(EVERGREEN_DESKTOP_HEIGHT + radeon_crtc->crtc_offset, |
| 1135 | crtc->mode.vdisplay); |
| 1136 | x &= ~3; |
| 1137 | y &= ~1; |
| 1138 | WREG32(EVERGREEN_VIEWPORT_START + radeon_crtc->crtc_offset, |
| 1139 | (x << 16) | y); |
| 1140 | WREG32(EVERGREEN_VIEWPORT_SIZE + radeon_crtc->crtc_offset, |
| 1141 | (crtc->mode.hdisplay << 16) | crtc->mode.vdisplay); |
| 1142 | |
Alex Deucher | fb9674b | 2011-04-02 09:15:50 -0400 | [diff] [blame] | 1143 | /* pageflip setup */ |
| 1144 | /* make sure flip is at vb rather than hb */ |
| 1145 | tmp = RREG32(EVERGREEN_GRPH_FLIP_CONTROL + radeon_crtc->crtc_offset); |
| 1146 | tmp &= ~EVERGREEN_GRPH_SURFACE_UPDATE_H_RETRACE_EN; |
| 1147 | WREG32(EVERGREEN_GRPH_FLIP_CONTROL + radeon_crtc->crtc_offset, tmp); |
| 1148 | |
| 1149 | /* set pageflip to happen anywhere in vblank interval */ |
| 1150 | WREG32(EVERGREEN_MASTER_UPDATE_MODE + radeon_crtc->crtc_offset, 0); |
| 1151 | |
Chris Ball | 4dd19b0 | 2010-09-26 06:47:23 -0500 | [diff] [blame] | 1152 | if (!atomic && fb && fb != crtc->fb) { |
| 1153 | radeon_fb = to_radeon_framebuffer(fb); |
Daniel Vetter | 7e4d15d | 2011-02-18 17:59:17 +0100 | [diff] [blame] | 1154 | rbo = gem_to_radeon_bo(radeon_fb->obj); |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 1155 | r = radeon_bo_reserve(rbo, false); |
| 1156 | if (unlikely(r != 0)) |
| 1157 | return r; |
| 1158 | radeon_bo_unpin(rbo); |
| 1159 | radeon_bo_unreserve(rbo); |
| 1160 | } |
| 1161 | |
| 1162 | /* Bytes per pixel may have changed */ |
| 1163 | radeon_bandwidth_update(rdev); |
| 1164 | |
| 1165 | return 0; |
| 1166 | } |
| 1167 | |
Chris Ball | 4dd19b0 | 2010-09-26 06:47:23 -0500 | [diff] [blame] | 1168 | static int avivo_crtc_do_set_base(struct drm_crtc *crtc, |
| 1169 | struct drm_framebuffer *fb, |
| 1170 | int x, int y, int atomic) |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1171 | { |
| 1172 | struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc); |
| 1173 | struct drm_device *dev = crtc->dev; |
| 1174 | struct radeon_device *rdev = dev->dev_private; |
| 1175 | struct radeon_framebuffer *radeon_fb; |
| 1176 | struct drm_gem_object *obj; |
Jerome Glisse | 4c78867 | 2009-11-20 14:29:23 +0100 | [diff] [blame] | 1177 | struct radeon_bo *rbo; |
Chris Ball | 4dd19b0 | 2010-09-26 06:47:23 -0500 | [diff] [blame] | 1178 | struct drm_framebuffer *target_fb; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1179 | uint64_t fb_location; |
Dave Airlie | e024e11 | 2009-06-24 09:48:08 +1000 | [diff] [blame] | 1180 | uint32_t fb_format, fb_pitch_pixels, tiling_flags; |
Alex Deucher | fa6bee4 | 2011-01-25 11:55:50 -0500 | [diff] [blame] | 1181 | u32 fb_swap = R600_D1GRPH_SWAP_ENDIAN_NONE; |
Alex Deucher | fb9674b | 2011-04-02 09:15:50 -0400 | [diff] [blame] | 1182 | u32 tmp; |
Jerome Glisse | 4c78867 | 2009-11-20 14:29:23 +0100 | [diff] [blame] | 1183 | int r; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1184 | |
Jerome Glisse | 2de3b48 | 2009-11-17 14:08:55 -0800 | [diff] [blame] | 1185 | /* no fb bound */ |
Chris Ball | 4dd19b0 | 2010-09-26 06:47:23 -0500 | [diff] [blame] | 1186 | if (!atomic && !crtc->fb) { |
Dave Airlie | d9fdaaf | 2010-08-02 10:42:55 +1000 | [diff] [blame] | 1187 | DRM_DEBUG_KMS("No FB bound\n"); |
Jerome Glisse | 2de3b48 | 2009-11-17 14:08:55 -0800 | [diff] [blame] | 1188 | return 0; |
| 1189 | } |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1190 | |
Chris Ball | 4dd19b0 | 2010-09-26 06:47:23 -0500 | [diff] [blame] | 1191 | if (atomic) { |
| 1192 | radeon_fb = to_radeon_framebuffer(fb); |
| 1193 | target_fb = fb; |
| 1194 | } |
| 1195 | else { |
| 1196 | radeon_fb = to_radeon_framebuffer(crtc->fb); |
| 1197 | target_fb = crtc->fb; |
| 1198 | } |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1199 | |
| 1200 | obj = radeon_fb->obj; |
Daniel Vetter | 7e4d15d | 2011-02-18 17:59:17 +0100 | [diff] [blame] | 1201 | rbo = gem_to_radeon_bo(obj); |
Jerome Glisse | 4c78867 | 2009-11-20 14:29:23 +0100 | [diff] [blame] | 1202 | r = radeon_bo_reserve(rbo, false); |
| 1203 | if (unlikely(r != 0)) |
| 1204 | return r; |
Chris Ball | 4dd19b0 | 2010-09-26 06:47:23 -0500 | [diff] [blame] | 1205 | |
| 1206 | /* If atomic, assume fb object is pinned & idle & fenced and |
| 1207 | * just update base pointers |
| 1208 | */ |
| 1209 | if (atomic) |
| 1210 | fb_location = radeon_bo_gpu_offset(rbo); |
| 1211 | else { |
| 1212 | r = radeon_bo_pin(rbo, RADEON_GEM_DOMAIN_VRAM, &fb_location); |
| 1213 | if (unlikely(r != 0)) { |
| 1214 | radeon_bo_unreserve(rbo); |
| 1215 | return -EINVAL; |
| 1216 | } |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1217 | } |
Jerome Glisse | 4c78867 | 2009-11-20 14:29:23 +0100 | [diff] [blame] | 1218 | radeon_bo_get_tiling_flags(rbo, &tiling_flags, NULL); |
| 1219 | radeon_bo_unreserve(rbo); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1220 | |
Chris Ball | 4dd19b0 | 2010-09-26 06:47:23 -0500 | [diff] [blame] | 1221 | switch (target_fb->bits_per_pixel) { |
Dave Airlie | 41456df | 2009-09-16 10:15:21 +1000 | [diff] [blame] | 1222 | case 8: |
| 1223 | fb_format = |
| 1224 | AVIVO_D1GRPH_CONTROL_DEPTH_8BPP | |
| 1225 | AVIVO_D1GRPH_CONTROL_8BPP_INDEXED; |
| 1226 | break; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1227 | case 15: |
| 1228 | fb_format = |
| 1229 | AVIVO_D1GRPH_CONTROL_DEPTH_16BPP | |
| 1230 | AVIVO_D1GRPH_CONTROL_16BPP_ARGB1555; |
| 1231 | break; |
| 1232 | case 16: |
| 1233 | fb_format = |
| 1234 | AVIVO_D1GRPH_CONTROL_DEPTH_16BPP | |
| 1235 | AVIVO_D1GRPH_CONTROL_16BPP_RGB565; |
Alex Deucher | fa6bee4 | 2011-01-25 11:55:50 -0500 | [diff] [blame] | 1236 | #ifdef __BIG_ENDIAN |
| 1237 | fb_swap = R600_D1GRPH_SWAP_ENDIAN_16BIT; |
| 1238 | #endif |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1239 | break; |
| 1240 | case 24: |
| 1241 | case 32: |
| 1242 | fb_format = |
| 1243 | AVIVO_D1GRPH_CONTROL_DEPTH_32BPP | |
| 1244 | AVIVO_D1GRPH_CONTROL_32BPP_ARGB8888; |
Alex Deucher | fa6bee4 | 2011-01-25 11:55:50 -0500 | [diff] [blame] | 1245 | #ifdef __BIG_ENDIAN |
| 1246 | fb_swap = R600_D1GRPH_SWAP_ENDIAN_32BIT; |
| 1247 | #endif |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1248 | break; |
| 1249 | default: |
| 1250 | DRM_ERROR("Unsupported screen depth %d\n", |
Chris Ball | 4dd19b0 | 2010-09-26 06:47:23 -0500 | [diff] [blame] | 1251 | target_fb->bits_per_pixel); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1252 | return -EINVAL; |
| 1253 | } |
| 1254 | |
Alex Deucher | 40c4ac1 | 2010-05-20 12:04:59 -0400 | [diff] [blame] | 1255 | if (rdev->family >= CHIP_R600) { |
| 1256 | if (tiling_flags & RADEON_TILING_MACRO) |
| 1257 | fb_format |= R600_D1GRPH_ARRAY_MODE_2D_TILED_THIN1; |
| 1258 | else if (tiling_flags & RADEON_TILING_MICRO) |
| 1259 | fb_format |= R600_D1GRPH_ARRAY_MODE_1D_TILED_THIN1; |
| 1260 | } else { |
| 1261 | if (tiling_flags & RADEON_TILING_MACRO) |
| 1262 | fb_format |= AVIVO_D1GRPH_MACRO_ADDRESS_MODE; |
Dave Airlie | cf2f05d | 2009-12-08 15:45:13 +1000 | [diff] [blame] | 1263 | |
Alex Deucher | 40c4ac1 | 2010-05-20 12:04:59 -0400 | [diff] [blame] | 1264 | if (tiling_flags & RADEON_TILING_MICRO) |
| 1265 | fb_format |= AVIVO_D1GRPH_TILED; |
| 1266 | } |
Dave Airlie | e024e11 | 2009-06-24 09:48:08 +1000 | [diff] [blame] | 1267 | |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1268 | if (radeon_crtc->crtc_id == 0) |
| 1269 | WREG32(AVIVO_D1VGA_CONTROL, 0); |
| 1270 | else |
| 1271 | WREG32(AVIVO_D2VGA_CONTROL, 0); |
Alex Deucher | c290dad | 2009-10-22 16:12:34 -0400 | [diff] [blame] | 1272 | |
| 1273 | if (rdev->family >= CHIP_RV770) { |
| 1274 | if (radeon_crtc->crtc_id) { |
Alex Deucher | 9534787 | 2010-09-01 17:20:42 -0400 | [diff] [blame] | 1275 | WREG32(R700_D2GRPH_PRIMARY_SURFACE_ADDRESS_HIGH, upper_32_bits(fb_location)); |
| 1276 | WREG32(R700_D2GRPH_SECONDARY_SURFACE_ADDRESS_HIGH, upper_32_bits(fb_location)); |
Alex Deucher | c290dad | 2009-10-22 16:12:34 -0400 | [diff] [blame] | 1277 | } else { |
Alex Deucher | 9534787 | 2010-09-01 17:20:42 -0400 | [diff] [blame] | 1278 | WREG32(R700_D1GRPH_PRIMARY_SURFACE_ADDRESS_HIGH, upper_32_bits(fb_location)); |
| 1279 | WREG32(R700_D1GRPH_SECONDARY_SURFACE_ADDRESS_HIGH, upper_32_bits(fb_location)); |
Alex Deucher | c290dad | 2009-10-22 16:12:34 -0400 | [diff] [blame] | 1280 | } |
| 1281 | } |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1282 | WREG32(AVIVO_D1GRPH_PRIMARY_SURFACE_ADDRESS + radeon_crtc->crtc_offset, |
| 1283 | (u32) fb_location); |
| 1284 | WREG32(AVIVO_D1GRPH_SECONDARY_SURFACE_ADDRESS + |
| 1285 | radeon_crtc->crtc_offset, (u32) fb_location); |
| 1286 | WREG32(AVIVO_D1GRPH_CONTROL + radeon_crtc->crtc_offset, fb_format); |
Alex Deucher | fa6bee4 | 2011-01-25 11:55:50 -0500 | [diff] [blame] | 1287 | if (rdev->family >= CHIP_R600) |
| 1288 | WREG32(R600_D1GRPH_SWAP_CONTROL + radeon_crtc->crtc_offset, fb_swap); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1289 | |
| 1290 | WREG32(AVIVO_D1GRPH_SURFACE_OFFSET_X + radeon_crtc->crtc_offset, 0); |
| 1291 | WREG32(AVIVO_D1GRPH_SURFACE_OFFSET_Y + radeon_crtc->crtc_offset, 0); |
| 1292 | WREG32(AVIVO_D1GRPH_X_START + radeon_crtc->crtc_offset, 0); |
| 1293 | WREG32(AVIVO_D1GRPH_Y_START + radeon_crtc->crtc_offset, 0); |
Chris Ball | 4dd19b0 | 2010-09-26 06:47:23 -0500 | [diff] [blame] | 1294 | WREG32(AVIVO_D1GRPH_X_END + radeon_crtc->crtc_offset, target_fb->width); |
| 1295 | WREG32(AVIVO_D1GRPH_Y_END + radeon_crtc->crtc_offset, target_fb->height); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1296 | |
Chris Ball | 4dd19b0 | 2010-09-26 06:47:23 -0500 | [diff] [blame] | 1297 | fb_pitch_pixels = target_fb->pitch / (target_fb->bits_per_pixel / 8); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1298 | WREG32(AVIVO_D1GRPH_PITCH + radeon_crtc->crtc_offset, fb_pitch_pixels); |
| 1299 | WREG32(AVIVO_D1GRPH_ENABLE + radeon_crtc->crtc_offset, 1); |
| 1300 | |
| 1301 | WREG32(AVIVO_D1MODE_DESKTOP_HEIGHT + radeon_crtc->crtc_offset, |
| 1302 | crtc->mode.vdisplay); |
| 1303 | x &= ~3; |
| 1304 | y &= ~1; |
| 1305 | WREG32(AVIVO_D1MODE_VIEWPORT_START + radeon_crtc->crtc_offset, |
| 1306 | (x << 16) | y); |
| 1307 | WREG32(AVIVO_D1MODE_VIEWPORT_SIZE + radeon_crtc->crtc_offset, |
| 1308 | (crtc->mode.hdisplay << 16) | crtc->mode.vdisplay); |
| 1309 | |
Alex Deucher | fb9674b | 2011-04-02 09:15:50 -0400 | [diff] [blame] | 1310 | /* pageflip setup */ |
| 1311 | /* make sure flip is at vb rather than hb */ |
| 1312 | tmp = RREG32(AVIVO_D1GRPH_FLIP_CONTROL + radeon_crtc->crtc_offset); |
| 1313 | tmp &= ~AVIVO_D1GRPH_SURFACE_UPDATE_H_RETRACE_EN; |
| 1314 | WREG32(AVIVO_D1GRPH_FLIP_CONTROL + radeon_crtc->crtc_offset, tmp); |
| 1315 | |
| 1316 | /* set pageflip to happen anywhere in vblank interval */ |
| 1317 | WREG32(AVIVO_D1MODE_MASTER_UPDATE_MODE + radeon_crtc->crtc_offset, 0); |
| 1318 | |
Chris Ball | 4dd19b0 | 2010-09-26 06:47:23 -0500 | [diff] [blame] | 1319 | if (!atomic && fb && fb != crtc->fb) { |
| 1320 | radeon_fb = to_radeon_framebuffer(fb); |
Daniel Vetter | 7e4d15d | 2011-02-18 17:59:17 +0100 | [diff] [blame] | 1321 | rbo = gem_to_radeon_bo(radeon_fb->obj); |
Jerome Glisse | 4c78867 | 2009-11-20 14:29:23 +0100 | [diff] [blame] | 1322 | r = radeon_bo_reserve(rbo, false); |
| 1323 | if (unlikely(r != 0)) |
| 1324 | return r; |
| 1325 | radeon_bo_unpin(rbo); |
| 1326 | radeon_bo_unreserve(rbo); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1327 | } |
Michel Dänzer | f30f37d | 2009-10-08 10:44:09 +0200 | [diff] [blame] | 1328 | |
| 1329 | /* Bytes per pixel may have changed */ |
| 1330 | radeon_bandwidth_update(rdev); |
| 1331 | |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1332 | return 0; |
| 1333 | } |
| 1334 | |
Alex Deucher | 54f088a | 2010-01-19 16:34:01 -0500 | [diff] [blame] | 1335 | int atombios_crtc_set_base(struct drm_crtc *crtc, int x, int y, |
| 1336 | struct drm_framebuffer *old_fb) |
| 1337 | { |
| 1338 | struct drm_device *dev = crtc->dev; |
| 1339 | struct radeon_device *rdev = dev->dev_private; |
| 1340 | |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 1341 | if (ASIC_IS_DCE4(rdev)) |
Alex Deucher | c9417bd | 2011-02-06 14:23:26 -0500 | [diff] [blame] | 1342 | return dce4_crtc_do_set_base(crtc, old_fb, x, y, 0); |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 1343 | else if (ASIC_IS_AVIVO(rdev)) |
Chris Ball | 4dd19b0 | 2010-09-26 06:47:23 -0500 | [diff] [blame] | 1344 | return avivo_crtc_do_set_base(crtc, old_fb, x, y, 0); |
Alex Deucher | 54f088a | 2010-01-19 16:34:01 -0500 | [diff] [blame] | 1345 | else |
Chris Ball | 4dd19b0 | 2010-09-26 06:47:23 -0500 | [diff] [blame] | 1346 | return radeon_crtc_do_set_base(crtc, old_fb, x, y, 0); |
| 1347 | } |
| 1348 | |
| 1349 | int atombios_crtc_set_base_atomic(struct drm_crtc *crtc, |
| 1350 | struct drm_framebuffer *fb, |
Jason Wessel | 21c74a8 | 2010-10-13 14:09:44 -0500 | [diff] [blame] | 1351 | int x, int y, enum mode_set_atomic state) |
Chris Ball | 4dd19b0 | 2010-09-26 06:47:23 -0500 | [diff] [blame] | 1352 | { |
| 1353 | struct drm_device *dev = crtc->dev; |
| 1354 | struct radeon_device *rdev = dev->dev_private; |
| 1355 | |
| 1356 | if (ASIC_IS_DCE4(rdev)) |
Alex Deucher | c9417bd | 2011-02-06 14:23:26 -0500 | [diff] [blame] | 1357 | return dce4_crtc_do_set_base(crtc, fb, x, y, 1); |
Chris Ball | 4dd19b0 | 2010-09-26 06:47:23 -0500 | [diff] [blame] | 1358 | else if (ASIC_IS_AVIVO(rdev)) |
| 1359 | return avivo_crtc_do_set_base(crtc, fb, x, y, 1); |
| 1360 | else |
| 1361 | return radeon_crtc_do_set_base(crtc, fb, x, y, 1); |
Alex Deucher | 54f088a | 2010-01-19 16:34:01 -0500 | [diff] [blame] | 1362 | } |
| 1363 | |
Alex Deucher | 615e0cb | 2010-01-20 16:22:53 -0500 | [diff] [blame] | 1364 | /* properly set additional regs when using atombios */ |
| 1365 | static void radeon_legacy_atom_fixup(struct drm_crtc *crtc) |
| 1366 | { |
| 1367 | struct drm_device *dev = crtc->dev; |
| 1368 | struct radeon_device *rdev = dev->dev_private; |
| 1369 | struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc); |
| 1370 | u32 disp_merge_cntl; |
| 1371 | |
| 1372 | switch (radeon_crtc->crtc_id) { |
| 1373 | case 0: |
| 1374 | disp_merge_cntl = RREG32(RADEON_DISP_MERGE_CNTL); |
| 1375 | disp_merge_cntl &= ~RADEON_DISP_RGB_OFFSET_EN; |
| 1376 | WREG32(RADEON_DISP_MERGE_CNTL, disp_merge_cntl); |
| 1377 | break; |
| 1378 | case 1: |
| 1379 | disp_merge_cntl = RREG32(RADEON_DISP2_MERGE_CNTL); |
| 1380 | disp_merge_cntl &= ~RADEON_DISP2_RGB_OFFSET_EN; |
| 1381 | WREG32(RADEON_DISP2_MERGE_CNTL, disp_merge_cntl); |
| 1382 | WREG32(RADEON_FP_H2_SYNC_STRT_WID, RREG32(RADEON_CRTC2_H_SYNC_STRT_WID)); |
| 1383 | WREG32(RADEON_FP_V2_SYNC_STRT_WID, RREG32(RADEON_CRTC2_V_SYNC_STRT_WID)); |
| 1384 | break; |
| 1385 | } |
| 1386 | } |
| 1387 | |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 1388 | static int radeon_atom_pick_pll(struct drm_crtc *crtc) |
| 1389 | { |
| 1390 | struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc); |
| 1391 | struct drm_device *dev = crtc->dev; |
| 1392 | struct radeon_device *rdev = dev->dev_private; |
| 1393 | struct drm_encoder *test_encoder; |
| 1394 | struct drm_crtc *test_crtc; |
| 1395 | uint32_t pll_in_use = 0; |
| 1396 | |
| 1397 | if (ASIC_IS_DCE4(rdev)) { |
| 1398 | /* if crtc is driving DP and we have an ext clock, use that */ |
| 1399 | list_for_each_entry(test_encoder, &dev->mode_config.encoder_list, head) { |
| 1400 | if (test_encoder->crtc && (test_encoder->crtc == crtc)) { |
| 1401 | if (atombios_get_encoder_mode(test_encoder) == ATOM_ENCODER_MODE_DP) { |
| 1402 | if (rdev->clock.dp_extclk) |
| 1403 | return ATOM_PPLL_INVALID; |
| 1404 | } |
| 1405 | } |
| 1406 | } |
| 1407 | |
| 1408 | /* otherwise, pick one of the plls */ |
| 1409 | list_for_each_entry(test_crtc, &dev->mode_config.crtc_list, head) { |
| 1410 | struct radeon_crtc *radeon_test_crtc; |
| 1411 | |
| 1412 | if (crtc == test_crtc) |
| 1413 | continue; |
| 1414 | |
| 1415 | radeon_test_crtc = to_radeon_crtc(test_crtc); |
| 1416 | if ((radeon_test_crtc->pll_id >= ATOM_PPLL1) && |
| 1417 | (radeon_test_crtc->pll_id <= ATOM_PPLL2)) |
| 1418 | pll_in_use |= (1 << radeon_test_crtc->pll_id); |
| 1419 | } |
| 1420 | if (!(pll_in_use & 1)) |
| 1421 | return ATOM_PPLL1; |
| 1422 | return ATOM_PPLL2; |
| 1423 | } else |
| 1424 | return radeon_crtc->crtc_id; |
| 1425 | |
| 1426 | } |
| 1427 | |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1428 | int atombios_crtc_mode_set(struct drm_crtc *crtc, |
| 1429 | struct drm_display_mode *mode, |
| 1430 | struct drm_display_mode *adjusted_mode, |
| 1431 | int x, int y, struct drm_framebuffer *old_fb) |
| 1432 | { |
| 1433 | struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc); |
| 1434 | struct drm_device *dev = crtc->dev; |
| 1435 | struct radeon_device *rdev = dev->dev_private; |
Alex Deucher | 54bfe49 | 2010-09-03 15:52:53 -0400 | [diff] [blame] | 1436 | struct drm_encoder *encoder; |
| 1437 | bool is_tvcv = false; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1438 | |
Alex Deucher | 54bfe49 | 2010-09-03 15:52:53 -0400 | [diff] [blame] | 1439 | list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) { |
| 1440 | /* find tv std */ |
| 1441 | if (encoder->crtc == crtc) { |
| 1442 | struct radeon_encoder *radeon_encoder = to_radeon_encoder(encoder); |
| 1443 | if (radeon_encoder->active_device & |
| 1444 | (ATOM_DEVICE_TV_SUPPORT | ATOM_DEVICE_CV_SUPPORT)) |
| 1445 | is_tvcv = true; |
| 1446 | } |
| 1447 | } |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1448 | |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 1449 | /* always set DCPLL */ |
Alex Deucher | ba032a5 | 2010-10-04 17:13:01 -0400 | [diff] [blame] | 1450 | if (ASIC_IS_DCE4(rdev)) { |
| 1451 | struct radeon_atom_ss ss; |
| 1452 | bool ss_enabled = radeon_atombios_get_asic_ss_info(rdev, &ss, |
| 1453 | ASIC_INTERNAL_SS_ON_DCPLL, |
| 1454 | rdev->clock.default_dispclk); |
| 1455 | if (ss_enabled) |
| 1456 | atombios_crtc_program_ss(crtc, ATOM_DISABLE, ATOM_DCPLL, &ss); |
Alex Deucher | f82b3dd | 2011-01-06 21:19:15 -0500 | [diff] [blame] | 1457 | /* XXX: DCE5, make sure voltage, dispclk is high enough */ |
| 1458 | atombios_crtc_set_dcpll(crtc, rdev->clock.default_dispclk); |
Alex Deucher | ba032a5 | 2010-10-04 17:13:01 -0400 | [diff] [blame] | 1459 | if (ss_enabled) |
| 1460 | atombios_crtc_program_ss(crtc, ATOM_ENABLE, ATOM_DCPLL, &ss); |
| 1461 | } |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1462 | atombios_crtc_set_pll(crtc, adjusted_mode); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1463 | |
Alex Deucher | 54bfe49 | 2010-09-03 15:52:53 -0400 | [diff] [blame] | 1464 | if (ASIC_IS_DCE4(rdev)) |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 1465 | atombios_set_crtc_dtd_timing(crtc, adjusted_mode); |
Alex Deucher | 54bfe49 | 2010-09-03 15:52:53 -0400 | [diff] [blame] | 1466 | else if (ASIC_IS_AVIVO(rdev)) { |
| 1467 | if (is_tvcv) |
| 1468 | atombios_crtc_set_timing(crtc, adjusted_mode); |
| 1469 | else |
| 1470 | atombios_set_crtc_dtd_timing(crtc, adjusted_mode); |
| 1471 | } else { |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 1472 | atombios_crtc_set_timing(crtc, adjusted_mode); |
Alex Deucher | 5a9bcac | 2009-10-08 15:09:31 -0400 | [diff] [blame] | 1473 | if (radeon_crtc->crtc_id == 0) |
| 1474 | atombios_set_crtc_dtd_timing(crtc, adjusted_mode); |
Alex Deucher | 615e0cb | 2010-01-20 16:22:53 -0500 | [diff] [blame] | 1475 | radeon_legacy_atom_fixup(crtc); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1476 | } |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 1477 | atombios_crtc_set_base(crtc, x, y, old_fb); |
Jerome Glisse | c93bb85 | 2009-07-13 21:04:08 +0200 | [diff] [blame] | 1478 | atombios_overscan_setup(crtc, mode, adjusted_mode); |
| 1479 | atombios_scaler_setup(crtc); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1480 | return 0; |
| 1481 | } |
| 1482 | |
| 1483 | static bool atombios_crtc_mode_fixup(struct drm_crtc *crtc, |
| 1484 | struct drm_display_mode *mode, |
| 1485 | struct drm_display_mode *adjusted_mode) |
| 1486 | { |
Alex Deucher | 03214bd | 2010-03-16 17:42:46 -0400 | [diff] [blame] | 1487 | struct drm_device *dev = crtc->dev; |
| 1488 | struct radeon_device *rdev = dev->dev_private; |
| 1489 | |
| 1490 | /* adjust pm to upcoming mode change */ |
| 1491 | radeon_pm_compute_clocks(rdev); |
| 1492 | |
Jerome Glisse | c93bb85 | 2009-07-13 21:04:08 +0200 | [diff] [blame] | 1493 | if (!radeon_crtc_scaling_mode_fixup(crtc, mode, adjusted_mode)) |
| 1494 | return false; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1495 | return true; |
| 1496 | } |
| 1497 | |
| 1498 | static void atombios_crtc_prepare(struct drm_crtc *crtc) |
| 1499 | { |
Alex Deucher | 267364a | 2010-03-08 17:10:41 -0500 | [diff] [blame] | 1500 | struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc); |
| 1501 | |
| 1502 | /* pick pll */ |
| 1503 | radeon_crtc->pll_id = radeon_atom_pick_pll(crtc); |
| 1504 | |
Alex Deucher | 37b4390 | 2010-02-09 12:04:43 -0500 | [diff] [blame] | 1505 | atombios_lock_crtc(crtc, ATOM_ENABLE); |
Alex Deucher | a348c84 | 2010-01-21 16:50:30 -0500 | [diff] [blame] | 1506 | atombios_crtc_dpms(crtc, DRM_MODE_DPMS_OFF); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1507 | } |
| 1508 | |
| 1509 | static void atombios_crtc_commit(struct drm_crtc *crtc) |
| 1510 | { |
| 1511 | atombios_crtc_dpms(crtc, DRM_MODE_DPMS_ON); |
Alex Deucher | 37b4390 | 2010-02-09 12:04:43 -0500 | [diff] [blame] | 1512 | atombios_lock_crtc(crtc, ATOM_DISABLE); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1513 | } |
| 1514 | |
Alex Deucher | 37f9003 | 2010-06-11 17:58:38 -0400 | [diff] [blame] | 1515 | static void atombios_crtc_disable(struct drm_crtc *crtc) |
| 1516 | { |
| 1517 | struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc); |
| 1518 | atombios_crtc_dpms(crtc, DRM_MODE_DPMS_OFF); |
| 1519 | |
| 1520 | switch (radeon_crtc->pll_id) { |
| 1521 | case ATOM_PPLL1: |
| 1522 | case ATOM_PPLL2: |
| 1523 | /* disable the ppll */ |
| 1524 | atombios_crtc_program_pll(crtc, radeon_crtc->crtc_id, radeon_crtc->pll_id, |
| 1525 | 0, 0, ATOM_DISABLE, 0, 0, 0, 0); |
| 1526 | break; |
| 1527 | default: |
| 1528 | break; |
| 1529 | } |
| 1530 | radeon_crtc->pll_id = -1; |
| 1531 | } |
| 1532 | |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1533 | static const struct drm_crtc_helper_funcs atombios_helper_funcs = { |
| 1534 | .dpms = atombios_crtc_dpms, |
| 1535 | .mode_fixup = atombios_crtc_mode_fixup, |
| 1536 | .mode_set = atombios_crtc_mode_set, |
| 1537 | .mode_set_base = atombios_crtc_set_base, |
Chris Ball | 4dd19b0 | 2010-09-26 06:47:23 -0500 | [diff] [blame] | 1538 | .mode_set_base_atomic = atombios_crtc_set_base_atomic, |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1539 | .prepare = atombios_crtc_prepare, |
| 1540 | .commit = atombios_crtc_commit, |
Dave Airlie | 068143d | 2009-10-05 09:58:02 +1000 | [diff] [blame] | 1541 | .load_lut = radeon_crtc_load_lut, |
Alex Deucher | 37f9003 | 2010-06-11 17:58:38 -0400 | [diff] [blame] | 1542 | .disable = atombios_crtc_disable, |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1543 | }; |
| 1544 | |
| 1545 | void radeon_atombios_init_crtc(struct drm_device *dev, |
| 1546 | struct radeon_crtc *radeon_crtc) |
| 1547 | { |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 1548 | struct radeon_device *rdev = dev->dev_private; |
| 1549 | |
| 1550 | if (ASIC_IS_DCE4(rdev)) { |
| 1551 | switch (radeon_crtc->crtc_id) { |
| 1552 | case 0: |
| 1553 | default: |
Alex Deucher | 12d7798 | 2010-02-09 17:18:48 -0500 | [diff] [blame] | 1554 | radeon_crtc->crtc_offset = EVERGREEN_CRTC0_REGISTER_OFFSET; |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 1555 | break; |
| 1556 | case 1: |
Alex Deucher | 12d7798 | 2010-02-09 17:18:48 -0500 | [diff] [blame] | 1557 | radeon_crtc->crtc_offset = EVERGREEN_CRTC1_REGISTER_OFFSET; |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 1558 | break; |
| 1559 | case 2: |
Alex Deucher | 12d7798 | 2010-02-09 17:18:48 -0500 | [diff] [blame] | 1560 | radeon_crtc->crtc_offset = EVERGREEN_CRTC2_REGISTER_OFFSET; |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 1561 | break; |
| 1562 | case 3: |
Alex Deucher | 12d7798 | 2010-02-09 17:18:48 -0500 | [diff] [blame] | 1563 | radeon_crtc->crtc_offset = EVERGREEN_CRTC3_REGISTER_OFFSET; |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 1564 | break; |
| 1565 | case 4: |
Alex Deucher | 12d7798 | 2010-02-09 17:18:48 -0500 | [diff] [blame] | 1566 | radeon_crtc->crtc_offset = EVERGREEN_CRTC4_REGISTER_OFFSET; |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 1567 | break; |
| 1568 | case 5: |
Alex Deucher | 12d7798 | 2010-02-09 17:18:48 -0500 | [diff] [blame] | 1569 | radeon_crtc->crtc_offset = EVERGREEN_CRTC5_REGISTER_OFFSET; |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 1570 | break; |
| 1571 | } |
| 1572 | } else { |
| 1573 | if (radeon_crtc->crtc_id == 1) |
| 1574 | radeon_crtc->crtc_offset = |
| 1575 | AVIVO_D2CRTC_H_TOTAL - AVIVO_D1CRTC_H_TOTAL; |
| 1576 | else |
| 1577 | radeon_crtc->crtc_offset = 0; |
| 1578 | } |
| 1579 | radeon_crtc->pll_id = -1; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1580 | drm_crtc_helper_add(&radeon_crtc->base, &atombios_helper_funcs); |
| 1581 | } |