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 | */ |
David Howells | 760285e | 2012-10-02 18:01:07 +0100 | [diff] [blame] | 26 | #include <drm/drmP.h> |
| 27 | #include <drm/radeon_drm.h> |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 28 | #include "radeon.h" |
| 29 | |
| 30 | #include "atom.h" |
| 31 | #include <asm/div64.h> |
| 32 | |
Dave Airlie | 10ebc0b | 2012-09-17 14:40:31 +1000 | [diff] [blame] | 33 | #include <linux/pm_runtime.h> |
David Howells | 760285e | 2012-10-02 18:01:07 +0100 | [diff] [blame] | 34 | #include <drm/drm_crtc_helper.h> |
| 35 | #include <drm/drm_edid.h> |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 36 | |
Christian König | 3216701 | 2014-03-28 18:55:10 +0100 | [diff] [blame] | 37 | #include <linux/gcd.h> |
| 38 | |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 39 | static void avivo_crtc_load_lut(struct drm_crtc *crtc) |
| 40 | { |
| 41 | struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc); |
| 42 | struct drm_device *dev = crtc->dev; |
| 43 | struct radeon_device *rdev = dev->dev_private; |
| 44 | int i; |
| 45 | |
Dave Airlie | d9fdaaf | 2010-08-02 10:42:55 +1000 | [diff] [blame] | 46 | DRM_DEBUG_KMS("%d\n", radeon_crtc->crtc_id); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 47 | WREG32(AVIVO_DC_LUTA_CONTROL + radeon_crtc->crtc_offset, 0); |
| 48 | |
| 49 | WREG32(AVIVO_DC_LUTA_BLACK_OFFSET_BLUE + radeon_crtc->crtc_offset, 0); |
| 50 | WREG32(AVIVO_DC_LUTA_BLACK_OFFSET_GREEN + radeon_crtc->crtc_offset, 0); |
| 51 | WREG32(AVIVO_DC_LUTA_BLACK_OFFSET_RED + radeon_crtc->crtc_offset, 0); |
| 52 | |
| 53 | WREG32(AVIVO_DC_LUTA_WHITE_OFFSET_BLUE + radeon_crtc->crtc_offset, 0xffff); |
| 54 | WREG32(AVIVO_DC_LUTA_WHITE_OFFSET_GREEN + radeon_crtc->crtc_offset, 0xffff); |
| 55 | WREG32(AVIVO_DC_LUTA_WHITE_OFFSET_RED + radeon_crtc->crtc_offset, 0xffff); |
| 56 | |
| 57 | WREG32(AVIVO_DC_LUT_RW_SELECT, radeon_crtc->crtc_id); |
| 58 | WREG32(AVIVO_DC_LUT_RW_MODE, 0); |
| 59 | WREG32(AVIVO_DC_LUT_WRITE_EN_MASK, 0x0000003f); |
| 60 | |
| 61 | WREG8(AVIVO_DC_LUT_RW_INDEX, 0); |
| 62 | for (i = 0; i < 256; i++) { |
| 63 | WREG32(AVIVO_DC_LUT_30_COLOR, |
| 64 | (radeon_crtc->lut_r[i] << 20) | |
| 65 | (radeon_crtc->lut_g[i] << 10) | |
| 66 | (radeon_crtc->lut_b[i] << 0)); |
| 67 | } |
| 68 | |
| 69 | WREG32(AVIVO_D1GRPH_LUT_SEL + radeon_crtc->crtc_offset, radeon_crtc->crtc_id); |
| 70 | } |
| 71 | |
Alex Deucher | fee298f | 2011-01-06 21:19:30 -0500 | [diff] [blame] | 72 | static void dce4_crtc_load_lut(struct drm_crtc *crtc) |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 73 | { |
| 74 | struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc); |
| 75 | struct drm_device *dev = crtc->dev; |
| 76 | struct radeon_device *rdev = dev->dev_private; |
| 77 | int i; |
| 78 | |
Dave Airlie | d9fdaaf | 2010-08-02 10:42:55 +1000 | [diff] [blame] | 79 | DRM_DEBUG_KMS("%d\n", radeon_crtc->crtc_id); |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 80 | WREG32(EVERGREEN_DC_LUT_CONTROL + radeon_crtc->crtc_offset, 0); |
| 81 | |
| 82 | WREG32(EVERGREEN_DC_LUT_BLACK_OFFSET_BLUE + radeon_crtc->crtc_offset, 0); |
| 83 | WREG32(EVERGREEN_DC_LUT_BLACK_OFFSET_GREEN + radeon_crtc->crtc_offset, 0); |
| 84 | WREG32(EVERGREEN_DC_LUT_BLACK_OFFSET_RED + radeon_crtc->crtc_offset, 0); |
| 85 | |
| 86 | WREG32(EVERGREEN_DC_LUT_WHITE_OFFSET_BLUE + radeon_crtc->crtc_offset, 0xffff); |
| 87 | WREG32(EVERGREEN_DC_LUT_WHITE_OFFSET_GREEN + radeon_crtc->crtc_offset, 0xffff); |
| 88 | WREG32(EVERGREEN_DC_LUT_WHITE_OFFSET_RED + radeon_crtc->crtc_offset, 0xffff); |
| 89 | |
Alex Deucher | 677d076 | 2010-04-22 22:58:50 -0400 | [diff] [blame] | 90 | WREG32(EVERGREEN_DC_LUT_RW_MODE + radeon_crtc->crtc_offset, 0); |
| 91 | WREG32(EVERGREEN_DC_LUT_WRITE_EN_MASK + radeon_crtc->crtc_offset, 0x00000007); |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 92 | |
Alex Deucher | 677d076 | 2010-04-22 22:58:50 -0400 | [diff] [blame] | 93 | WREG32(EVERGREEN_DC_LUT_RW_INDEX + radeon_crtc->crtc_offset, 0); |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 94 | for (i = 0; i < 256; i++) { |
Alex Deucher | 677d076 | 2010-04-22 22:58:50 -0400 | [diff] [blame] | 95 | WREG32(EVERGREEN_DC_LUT_30_COLOR + radeon_crtc->crtc_offset, |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 96 | (radeon_crtc->lut_r[i] << 20) | |
| 97 | (radeon_crtc->lut_g[i] << 10) | |
| 98 | (radeon_crtc->lut_b[i] << 0)); |
| 99 | } |
| 100 | } |
| 101 | |
Alex Deucher | fee298f | 2011-01-06 21:19:30 -0500 | [diff] [blame] | 102 | static void dce5_crtc_load_lut(struct drm_crtc *crtc) |
| 103 | { |
| 104 | struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc); |
| 105 | struct drm_device *dev = crtc->dev; |
| 106 | struct radeon_device *rdev = dev->dev_private; |
| 107 | int i; |
| 108 | |
| 109 | DRM_DEBUG_KMS("%d\n", radeon_crtc->crtc_id); |
| 110 | |
| 111 | WREG32(NI_INPUT_CSC_CONTROL + radeon_crtc->crtc_offset, |
| 112 | (NI_INPUT_CSC_GRPH_MODE(NI_INPUT_CSC_BYPASS) | |
| 113 | NI_INPUT_CSC_OVL_MODE(NI_INPUT_CSC_BYPASS))); |
| 114 | WREG32(NI_PRESCALE_GRPH_CONTROL + radeon_crtc->crtc_offset, |
| 115 | NI_GRPH_PRESCALE_BYPASS); |
| 116 | WREG32(NI_PRESCALE_OVL_CONTROL + radeon_crtc->crtc_offset, |
| 117 | NI_OVL_PRESCALE_BYPASS); |
| 118 | WREG32(NI_INPUT_GAMMA_CONTROL + radeon_crtc->crtc_offset, |
| 119 | (NI_GRPH_INPUT_GAMMA_MODE(NI_INPUT_GAMMA_USE_LUT) | |
| 120 | NI_OVL_INPUT_GAMMA_MODE(NI_INPUT_GAMMA_USE_LUT))); |
| 121 | |
| 122 | WREG32(EVERGREEN_DC_LUT_CONTROL + radeon_crtc->crtc_offset, 0); |
| 123 | |
| 124 | WREG32(EVERGREEN_DC_LUT_BLACK_OFFSET_BLUE + radeon_crtc->crtc_offset, 0); |
| 125 | WREG32(EVERGREEN_DC_LUT_BLACK_OFFSET_GREEN + radeon_crtc->crtc_offset, 0); |
| 126 | WREG32(EVERGREEN_DC_LUT_BLACK_OFFSET_RED + radeon_crtc->crtc_offset, 0); |
| 127 | |
| 128 | WREG32(EVERGREEN_DC_LUT_WHITE_OFFSET_BLUE + radeon_crtc->crtc_offset, 0xffff); |
| 129 | WREG32(EVERGREEN_DC_LUT_WHITE_OFFSET_GREEN + radeon_crtc->crtc_offset, 0xffff); |
| 130 | WREG32(EVERGREEN_DC_LUT_WHITE_OFFSET_RED + radeon_crtc->crtc_offset, 0xffff); |
| 131 | |
| 132 | WREG32(EVERGREEN_DC_LUT_RW_MODE + radeon_crtc->crtc_offset, 0); |
| 133 | WREG32(EVERGREEN_DC_LUT_WRITE_EN_MASK + radeon_crtc->crtc_offset, 0x00000007); |
| 134 | |
| 135 | WREG32(EVERGREEN_DC_LUT_RW_INDEX + radeon_crtc->crtc_offset, 0); |
| 136 | for (i = 0; i < 256; i++) { |
| 137 | WREG32(EVERGREEN_DC_LUT_30_COLOR + radeon_crtc->crtc_offset, |
| 138 | (radeon_crtc->lut_r[i] << 20) | |
| 139 | (radeon_crtc->lut_g[i] << 10) | |
| 140 | (radeon_crtc->lut_b[i] << 0)); |
| 141 | } |
| 142 | |
| 143 | WREG32(NI_DEGAMMA_CONTROL + radeon_crtc->crtc_offset, |
| 144 | (NI_GRPH_DEGAMMA_MODE(NI_DEGAMMA_BYPASS) | |
| 145 | NI_OVL_DEGAMMA_MODE(NI_DEGAMMA_BYPASS) | |
| 146 | NI_ICON_DEGAMMA_MODE(NI_DEGAMMA_BYPASS) | |
| 147 | NI_CURSOR_DEGAMMA_MODE(NI_DEGAMMA_BYPASS))); |
| 148 | WREG32(NI_GAMUT_REMAP_CONTROL + radeon_crtc->crtc_offset, |
| 149 | (NI_GRPH_GAMUT_REMAP_MODE(NI_GAMUT_REMAP_BYPASS) | |
| 150 | NI_OVL_GAMUT_REMAP_MODE(NI_GAMUT_REMAP_BYPASS))); |
| 151 | WREG32(NI_REGAMMA_CONTROL + radeon_crtc->crtc_offset, |
| 152 | (NI_GRPH_REGAMMA_MODE(NI_REGAMMA_BYPASS) | |
| 153 | NI_OVL_REGAMMA_MODE(NI_REGAMMA_BYPASS))); |
| 154 | WREG32(NI_OUTPUT_CSC_CONTROL + radeon_crtc->crtc_offset, |
| 155 | (NI_OUTPUT_CSC_GRPH_MODE(NI_OUTPUT_CSC_BYPASS) | |
| 156 | NI_OUTPUT_CSC_OVL_MODE(NI_OUTPUT_CSC_BYPASS))); |
| 157 | /* XXX match this to the depth of the crtc fmt block, move to modeset? */ |
| 158 | WREG32(0x6940 + radeon_crtc->crtc_offset, 0); |
Alex Deucher | 9e05fa1 | 2013-01-24 10:06:33 -0500 | [diff] [blame] | 159 | if (ASIC_IS_DCE8(rdev)) { |
| 160 | /* XXX this only needs to be programmed once per crtc at startup, |
| 161 | * not sure where the best place for it is |
| 162 | */ |
| 163 | WREG32(CIK_ALPHA_CONTROL + radeon_crtc->crtc_offset, |
| 164 | CIK_CURSOR_ALPHA_BLND_ENA); |
| 165 | } |
Alex Deucher | fee298f | 2011-01-06 21:19:30 -0500 | [diff] [blame] | 166 | } |
| 167 | |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 168 | static void legacy_crtc_load_lut(struct drm_crtc *crtc) |
| 169 | { |
| 170 | struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc); |
| 171 | struct drm_device *dev = crtc->dev; |
| 172 | struct radeon_device *rdev = dev->dev_private; |
| 173 | int i; |
| 174 | uint32_t dac2_cntl; |
| 175 | |
| 176 | dac2_cntl = RREG32(RADEON_DAC_CNTL2); |
| 177 | if (radeon_crtc->crtc_id == 0) |
| 178 | dac2_cntl &= (uint32_t)~RADEON_DAC2_PALETTE_ACC_CTL; |
| 179 | else |
| 180 | dac2_cntl |= RADEON_DAC2_PALETTE_ACC_CTL; |
| 181 | WREG32(RADEON_DAC_CNTL2, dac2_cntl); |
| 182 | |
| 183 | WREG8(RADEON_PALETTE_INDEX, 0); |
| 184 | for (i = 0; i < 256; i++) { |
| 185 | WREG32(RADEON_PALETTE_30_DATA, |
| 186 | (radeon_crtc->lut_r[i] << 20) | |
| 187 | (radeon_crtc->lut_g[i] << 10) | |
| 188 | (radeon_crtc->lut_b[i] << 0)); |
| 189 | } |
| 190 | } |
| 191 | |
| 192 | void radeon_crtc_load_lut(struct drm_crtc *crtc) |
| 193 | { |
| 194 | struct drm_device *dev = crtc->dev; |
| 195 | struct radeon_device *rdev = dev->dev_private; |
| 196 | |
| 197 | if (!crtc->enabled) |
| 198 | return; |
| 199 | |
Alex Deucher | fee298f | 2011-01-06 21:19:30 -0500 | [diff] [blame] | 200 | if (ASIC_IS_DCE5(rdev)) |
| 201 | dce5_crtc_load_lut(crtc); |
| 202 | else if (ASIC_IS_DCE4(rdev)) |
| 203 | dce4_crtc_load_lut(crtc); |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 204 | else if (ASIC_IS_AVIVO(rdev)) |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 205 | avivo_crtc_load_lut(crtc); |
| 206 | else |
| 207 | legacy_crtc_load_lut(crtc); |
| 208 | } |
| 209 | |
Dave Airlie | b8c00ac | 2009-10-06 13:54:01 +1000 | [diff] [blame] | 210 | /** Sets the color ramps on behalf of fbcon */ |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 211 | void radeon_crtc_fb_gamma_set(struct drm_crtc *crtc, u16 red, u16 green, |
| 212 | u16 blue, int regno) |
| 213 | { |
| 214 | struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc); |
| 215 | |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 216 | radeon_crtc->lut_r[regno] = red >> 6; |
| 217 | radeon_crtc->lut_g[regno] = green >> 6; |
| 218 | radeon_crtc->lut_b[regno] = blue >> 6; |
| 219 | } |
| 220 | |
Dave Airlie | b8c00ac | 2009-10-06 13:54:01 +1000 | [diff] [blame] | 221 | /** Gets the color ramps on behalf of fbcon */ |
| 222 | void radeon_crtc_fb_gamma_get(struct drm_crtc *crtc, u16 *red, u16 *green, |
| 223 | u16 *blue, int regno) |
| 224 | { |
| 225 | struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc); |
| 226 | |
| 227 | *red = radeon_crtc->lut_r[regno] << 6; |
| 228 | *green = radeon_crtc->lut_g[regno] << 6; |
| 229 | *blue = radeon_crtc->lut_b[regno] << 6; |
| 230 | } |
| 231 | |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 232 | static void radeon_crtc_gamma_set(struct drm_crtc *crtc, u16 *red, u16 *green, |
James Simmons | 7203425 | 2010-08-03 01:33:19 +0100 | [diff] [blame] | 233 | u16 *blue, uint32_t start, uint32_t size) |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 234 | { |
| 235 | struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc); |
James Simmons | 7203425 | 2010-08-03 01:33:19 +0100 | [diff] [blame] | 236 | int end = (start + size > 256) ? 256 : start + size, i; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 237 | |
Dave Airlie | b8c00ac | 2009-10-06 13:54:01 +1000 | [diff] [blame] | 238 | /* userspace palettes are always correct as is */ |
James Simmons | 7203425 | 2010-08-03 01:33:19 +0100 | [diff] [blame] | 239 | for (i = start; i < end; i++) { |
Dave Airlie | b8c00ac | 2009-10-06 13:54:01 +1000 | [diff] [blame] | 240 | radeon_crtc->lut_r[i] = red[i] >> 6; |
| 241 | radeon_crtc->lut_g[i] = green[i] >> 6; |
| 242 | radeon_crtc->lut_b[i] = blue[i] >> 6; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 243 | } |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 244 | radeon_crtc_load_lut(crtc); |
| 245 | } |
| 246 | |
| 247 | static void radeon_crtc_destroy(struct drm_crtc *crtc) |
| 248 | { |
| 249 | struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc); |
| 250 | |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 251 | drm_crtc_cleanup(crtc); |
| 252 | kfree(radeon_crtc); |
| 253 | } |
| 254 | |
Alex Deucher | 6f34be5 | 2010-11-21 10:59:01 -0500 | [diff] [blame] | 255 | /* |
| 256 | * Handle unpin events outside the interrupt handler proper. |
| 257 | */ |
| 258 | static void radeon_unpin_work_func(struct work_struct *__work) |
| 259 | { |
| 260 | struct radeon_unpin_work *work = |
| 261 | container_of(__work, struct radeon_unpin_work, work); |
| 262 | int r; |
| 263 | |
| 264 | /* unpin of the old buffer */ |
| 265 | r = radeon_bo_reserve(work->old_rbo, false); |
| 266 | if (likely(r == 0)) { |
| 267 | r = radeon_bo_unpin(work->old_rbo); |
| 268 | if (unlikely(r != 0)) { |
| 269 | DRM_ERROR("failed to unpin buffer after flip\n"); |
| 270 | } |
| 271 | radeon_bo_unreserve(work->old_rbo); |
| 272 | } else |
| 273 | DRM_ERROR("failed to reserve buffer after flip\n"); |
Dave Airlie | 498c555 | 2011-05-29 17:48:32 +1000 | [diff] [blame] | 274 | |
| 275 | drm_gem_object_unreference_unlocked(&work->old_rbo->gem_base); |
Alex Deucher | 6f34be5 | 2010-11-21 10:59:01 -0500 | [diff] [blame] | 276 | kfree(work); |
| 277 | } |
| 278 | |
| 279 | void radeon_crtc_handle_flip(struct radeon_device *rdev, int crtc_id) |
| 280 | { |
| 281 | struct radeon_crtc *radeon_crtc = rdev->mode_info.crtcs[crtc_id]; |
| 282 | struct radeon_unpin_work *work; |
Alex Deucher | 6f34be5 | 2010-11-21 10:59:01 -0500 | [diff] [blame] | 283 | unsigned long flags; |
| 284 | u32 update_pending; |
| 285 | int vpos, hpos; |
| 286 | |
| 287 | spin_lock_irqsave(&rdev->ddev->event_lock, flags); |
| 288 | work = radeon_crtc->unpin_work; |
| 289 | if (work == NULL || |
Michel Dänzer | fcc485d | 2011-07-13 15:18:09 +0000 | [diff] [blame] | 290 | (work->fence && !radeon_fence_signaled(work->fence))) { |
Alex Deucher | 6f34be5 | 2010-11-21 10:59:01 -0500 | [diff] [blame] | 291 | spin_unlock_irqrestore(&rdev->ddev->event_lock, flags); |
| 292 | return; |
| 293 | } |
| 294 | /* New pageflip, or just completion of a previous one? */ |
| 295 | if (!radeon_crtc->deferred_flip_completion) { |
| 296 | /* do the flip (mmio) */ |
| 297 | update_pending = radeon_page_flip(rdev, crtc_id, work->new_crtc_base); |
| 298 | } else { |
| 299 | /* This is just a completion of a flip queued in crtc |
| 300 | * at last invocation. Make sure we go directly to |
| 301 | * completion routine. |
| 302 | */ |
| 303 | update_pending = 0; |
| 304 | radeon_crtc->deferred_flip_completion = 0; |
| 305 | } |
| 306 | |
| 307 | /* Has the pageflip already completed in crtc, or is it certain |
| 308 | * to complete in this vblank? |
| 309 | */ |
| 310 | if (update_pending && |
Ville Syrjälä | abca9e4 | 2013-10-28 20:50:48 +0200 | [diff] [blame] | 311 | (DRM_SCANOUTPOS_VALID & radeon_get_crtc_scanoutpos(rdev->ddev, crtc_id, 0, |
Mario Kleiner | d47abc5 | 2013-10-30 05:13:07 +0100 | [diff] [blame] | 312 | &vpos, &hpos, NULL, NULL)) && |
Felix Kuehling | 81ffbbe | 2012-02-23 19:16:12 -0500 | [diff] [blame] | 313 | ((vpos >= (99 * rdev->mode_info.crtcs[crtc_id]->base.hwmode.crtc_vdisplay)/100) || |
| 314 | (vpos < 0 && !ASIC_IS_AVIVO(rdev)))) { |
| 315 | /* crtc didn't flip in this target vblank interval, |
| 316 | * but flip is pending in crtc. Based on the current |
| 317 | * scanout position we know that the current frame is |
| 318 | * (nearly) complete and the flip will (likely) |
| 319 | * complete before the start of the next frame. |
| 320 | */ |
| 321 | update_pending = 0; |
| 322 | } |
| 323 | if (update_pending) { |
Alex Deucher | 6f34be5 | 2010-11-21 10:59:01 -0500 | [diff] [blame] | 324 | /* crtc didn't flip in this target vblank interval, |
| 325 | * but flip is pending in crtc. It will complete it |
| 326 | * in next vblank interval, so complete the flip at |
| 327 | * next vblank irq. |
| 328 | */ |
| 329 | radeon_crtc->deferred_flip_completion = 1; |
| 330 | spin_unlock_irqrestore(&rdev->ddev->event_lock, flags); |
| 331 | return; |
| 332 | } |
| 333 | |
| 334 | /* Pageflip (will be) certainly completed in this vblank. Clean up. */ |
| 335 | radeon_crtc->unpin_work = NULL; |
| 336 | |
| 337 | /* wakeup userspace */ |
Rob Clark | 26ae466 | 2012-10-08 19:50:42 +0000 | [diff] [blame] | 338 | if (work->event) |
| 339 | drm_send_vblank_event(rdev->ddev, crtc_id, work->event); |
| 340 | |
Alex Deucher | 6f34be5 | 2010-11-21 10:59:01 -0500 | [diff] [blame] | 341 | spin_unlock_irqrestore(&rdev->ddev->event_lock, flags); |
| 342 | |
| 343 | drm_vblank_put(rdev->ddev, radeon_crtc->crtc_id); |
| 344 | radeon_fence_unref(&work->fence); |
| 345 | radeon_post_page_flip(work->rdev, work->crtc_id); |
| 346 | schedule_work(&work->work); |
| 347 | } |
| 348 | |
| 349 | static int radeon_crtc_page_flip(struct drm_crtc *crtc, |
| 350 | struct drm_framebuffer *fb, |
Keith Packard | ed8d197 | 2013-07-22 18:49:58 -0700 | [diff] [blame] | 351 | struct drm_pending_vblank_event *event, |
| 352 | uint32_t page_flip_flags) |
Alex Deucher | 6f34be5 | 2010-11-21 10:59:01 -0500 | [diff] [blame] | 353 | { |
| 354 | struct drm_device *dev = crtc->dev; |
| 355 | struct radeon_device *rdev = dev->dev_private; |
| 356 | struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc); |
| 357 | struct radeon_framebuffer *old_radeon_fb; |
| 358 | struct radeon_framebuffer *new_radeon_fb; |
| 359 | struct drm_gem_object *obj; |
| 360 | struct radeon_bo *rbo; |
Alex Deucher | 6f34be5 | 2010-11-21 10:59:01 -0500 | [diff] [blame] | 361 | struct radeon_unpin_work *work; |
| 362 | unsigned long flags; |
| 363 | u32 tiling_flags, pitch_pixels; |
| 364 | u64 base; |
| 365 | int r; |
| 366 | |
| 367 | work = kzalloc(sizeof *work, GFP_KERNEL); |
| 368 | if (work == NULL) |
| 369 | return -ENOMEM; |
| 370 | |
Alex Deucher | 6f34be5 | 2010-11-21 10:59:01 -0500 | [diff] [blame] | 371 | work->event = event; |
| 372 | work->rdev = rdev; |
| 373 | work->crtc_id = radeon_crtc->crtc_id; |
Matt Roper | f4510a2 | 2014-04-01 15:22:40 -0700 | [diff] [blame] | 374 | old_radeon_fb = to_radeon_framebuffer(crtc->primary->fb); |
Alex Deucher | 6f34be5 | 2010-11-21 10:59:01 -0500 | [diff] [blame] | 375 | new_radeon_fb = to_radeon_framebuffer(fb); |
| 376 | /* schedule unpin of the old buffer */ |
| 377 | obj = old_radeon_fb->obj; |
Dave Airlie | 498c555 | 2011-05-29 17:48:32 +1000 | [diff] [blame] | 378 | /* take a reference to the old object */ |
| 379 | drm_gem_object_reference(obj); |
Daniel Vetter | 7e4d15d | 2011-02-18 17:59:17 +0100 | [diff] [blame] | 380 | rbo = gem_to_radeon_bo(obj); |
Alex Deucher | 6f34be5 | 2010-11-21 10:59:01 -0500 | [diff] [blame] | 381 | work->old_rbo = rbo; |
Michel Dänzer | fcc485d | 2011-07-13 15:18:09 +0000 | [diff] [blame] | 382 | obj = new_radeon_fb->obj; |
| 383 | rbo = gem_to_radeon_bo(obj); |
Daniel Vetter | 9af2079 | 2012-12-11 23:42:24 +0100 | [diff] [blame] | 384 | |
| 385 | spin_lock(&rbo->tbo.bdev->fence_lock); |
Michel Dänzer | fcc485d | 2011-07-13 15:18:09 +0000 | [diff] [blame] | 386 | if (rbo->tbo.sync_obj) |
| 387 | work->fence = radeon_fence_ref(rbo->tbo.sync_obj); |
Daniel Vetter | 9af2079 | 2012-12-11 23:42:24 +0100 | [diff] [blame] | 388 | spin_unlock(&rbo->tbo.bdev->fence_lock); |
| 389 | |
Alex Deucher | 6f34be5 | 2010-11-21 10:59:01 -0500 | [diff] [blame] | 390 | INIT_WORK(&work->work, radeon_unpin_work_func); |
| 391 | |
| 392 | /* We borrow the event spin lock for protecting unpin_work */ |
| 393 | spin_lock_irqsave(&dev->event_lock, flags); |
| 394 | if (radeon_crtc->unpin_work) { |
Alex Deucher | 6f34be5 | 2010-11-21 10:59:01 -0500 | [diff] [blame] | 395 | DRM_DEBUG_DRIVER("flip queue: crtc already busy\n"); |
Dave Airlie | 498c555 | 2011-05-29 17:48:32 +1000 | [diff] [blame] | 396 | r = -EBUSY; |
| 397 | goto unlock_free; |
Alex Deucher | 6f34be5 | 2010-11-21 10:59:01 -0500 | [diff] [blame] | 398 | } |
| 399 | radeon_crtc->unpin_work = work; |
| 400 | radeon_crtc->deferred_flip_completion = 0; |
| 401 | spin_unlock_irqrestore(&dev->event_lock, flags); |
| 402 | |
| 403 | /* pin the new buffer */ |
Alex Deucher | 6f34be5 | 2010-11-21 10:59:01 -0500 | [diff] [blame] | 404 | DRM_DEBUG_DRIVER("flip-ioctl() cur_fbo = %p, cur_bbo = %p\n", |
| 405 | work->old_rbo, rbo); |
| 406 | |
| 407 | r = radeon_bo_reserve(rbo, false); |
| 408 | if (unlikely(r != 0)) { |
| 409 | DRM_ERROR("failed to reserve new rbo buffer before flip\n"); |
| 410 | goto pflip_cleanup; |
| 411 | } |
Michel Dänzer | 0349af7 | 2012-03-14 17:12:42 +0100 | [diff] [blame] | 412 | /* Only 27 bit offset for legacy CRTC */ |
| 413 | r = radeon_bo_pin_restricted(rbo, RADEON_GEM_DOMAIN_VRAM, |
| 414 | ASIC_IS_AVIVO(rdev) ? 0 : 1 << 27, &base); |
Alex Deucher | 6f34be5 | 2010-11-21 10:59:01 -0500 | [diff] [blame] | 415 | if (unlikely(r != 0)) { |
| 416 | radeon_bo_unreserve(rbo); |
| 417 | r = -EINVAL; |
| 418 | DRM_ERROR("failed to pin new rbo buffer before flip\n"); |
| 419 | goto pflip_cleanup; |
| 420 | } |
| 421 | radeon_bo_get_tiling_flags(rbo, &tiling_flags, NULL); |
| 422 | radeon_bo_unreserve(rbo); |
| 423 | |
| 424 | if (!ASIC_IS_AVIVO(rdev)) { |
| 425 | /* crtc offset is from display base addr not FB location */ |
| 426 | base -= radeon_crtc->legacy_display_base_addr; |
Ville Syrjälä | 01f2c77 | 2011-12-20 00:06:49 +0200 | [diff] [blame] | 427 | pitch_pixels = fb->pitches[0] / (fb->bits_per_pixel / 8); |
Alex Deucher | 6f34be5 | 2010-11-21 10:59:01 -0500 | [diff] [blame] | 428 | |
| 429 | if (tiling_flags & RADEON_TILING_MACRO) { |
| 430 | if (ASIC_IS_R300(rdev)) { |
| 431 | base &= ~0x7ff; |
| 432 | } else { |
| 433 | int byteshift = fb->bits_per_pixel >> 4; |
| 434 | int tile_addr = (((crtc->y >> 3) * pitch_pixels + crtc->x) >> (8 - byteshift)) << 11; |
| 435 | base += tile_addr + ((crtc->x << byteshift) % 256) + ((crtc->y % 8) << 8); |
| 436 | } |
| 437 | } else { |
| 438 | int offset = crtc->y * pitch_pixels + crtc->x; |
| 439 | switch (fb->bits_per_pixel) { |
| 440 | case 8: |
| 441 | default: |
| 442 | offset *= 1; |
| 443 | break; |
| 444 | case 15: |
| 445 | case 16: |
| 446 | offset *= 2; |
| 447 | break; |
| 448 | case 24: |
| 449 | offset *= 3; |
| 450 | break; |
| 451 | case 32: |
| 452 | offset *= 4; |
| 453 | break; |
| 454 | } |
| 455 | base += offset; |
| 456 | } |
| 457 | base &= ~7; |
| 458 | } |
| 459 | |
| 460 | spin_lock_irqsave(&dev->event_lock, flags); |
| 461 | work->new_crtc_base = base; |
| 462 | spin_unlock_irqrestore(&dev->event_lock, flags); |
| 463 | |
| 464 | /* update crtc fb */ |
Matt Roper | f4510a2 | 2014-04-01 15:22:40 -0700 | [diff] [blame] | 465 | crtc->primary->fb = fb; |
Alex Deucher | 6f34be5 | 2010-11-21 10:59:01 -0500 | [diff] [blame] | 466 | |
| 467 | r = drm_vblank_get(dev, radeon_crtc->crtc_id); |
| 468 | if (r) { |
| 469 | DRM_ERROR("failed to get vblank before flip\n"); |
| 470 | goto pflip_cleanup1; |
| 471 | } |
| 472 | |
Alex Deucher | 6f34be5 | 2010-11-21 10:59:01 -0500 | [diff] [blame] | 473 | /* set the proper interrupt */ |
| 474 | radeon_pre_page_flip(rdev, radeon_crtc->crtc_id); |
Alex Deucher | 6f34be5 | 2010-11-21 10:59:01 -0500 | [diff] [blame] | 475 | |
| 476 | return 0; |
| 477 | |
Alex Deucher | 6f34be5 | 2010-11-21 10:59:01 -0500 | [diff] [blame] | 478 | pflip_cleanup1: |
Michel Dänzer | d0254d5 | 2011-07-13 15:18:10 +0000 | [diff] [blame] | 479 | if (unlikely(radeon_bo_reserve(rbo, false) != 0)) { |
Alex Deucher | 6f34be5 | 2010-11-21 10:59:01 -0500 | [diff] [blame] | 480 | DRM_ERROR("failed to reserve new rbo in error path\n"); |
| 481 | goto pflip_cleanup; |
| 482 | } |
Michel Dänzer | d0254d5 | 2011-07-13 15:18:10 +0000 | [diff] [blame] | 483 | if (unlikely(radeon_bo_unpin(rbo) != 0)) { |
Alex Deucher | 6f34be5 | 2010-11-21 10:59:01 -0500 | [diff] [blame] | 484 | DRM_ERROR("failed to unpin new rbo in error path\n"); |
Alex Deucher | 6f34be5 | 2010-11-21 10:59:01 -0500 | [diff] [blame] | 485 | } |
| 486 | radeon_bo_unreserve(rbo); |
| 487 | |
| 488 | pflip_cleanup: |
| 489 | spin_lock_irqsave(&dev->event_lock, flags); |
| 490 | radeon_crtc->unpin_work = NULL; |
Dave Airlie | 498c555 | 2011-05-29 17:48:32 +1000 | [diff] [blame] | 491 | unlock_free: |
Alex Deucher | 6f34be5 | 2010-11-21 10:59:01 -0500 | [diff] [blame] | 492 | spin_unlock_irqrestore(&dev->event_lock, flags); |
Michel Dänzer | db318d7 | 2011-09-13 11:29:12 +0200 | [diff] [blame] | 493 | drm_gem_object_unreference_unlocked(old_radeon_fb->obj); |
Michel Dänzer | fcc485d | 2011-07-13 15:18:09 +0000 | [diff] [blame] | 494 | radeon_fence_unref(&work->fence); |
Alex Deucher | 6f34be5 | 2010-11-21 10:59:01 -0500 | [diff] [blame] | 495 | kfree(work); |
| 496 | |
| 497 | return r; |
| 498 | } |
| 499 | |
Dave Airlie | 10ebc0b | 2012-09-17 14:40:31 +1000 | [diff] [blame] | 500 | static int |
| 501 | radeon_crtc_set_config(struct drm_mode_set *set) |
| 502 | { |
| 503 | struct drm_device *dev; |
| 504 | struct radeon_device *rdev; |
| 505 | struct drm_crtc *crtc; |
| 506 | bool active = false; |
| 507 | int ret; |
| 508 | |
| 509 | if (!set || !set->crtc) |
| 510 | return -EINVAL; |
| 511 | |
| 512 | dev = set->crtc->dev; |
| 513 | |
| 514 | ret = pm_runtime_get_sync(dev->dev); |
| 515 | if (ret < 0) |
| 516 | return ret; |
| 517 | |
| 518 | ret = drm_crtc_helper_set_config(set); |
| 519 | |
| 520 | list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) |
| 521 | if (crtc->enabled) |
| 522 | active = true; |
| 523 | |
| 524 | pm_runtime_mark_last_busy(dev->dev); |
| 525 | |
| 526 | rdev = dev->dev_private; |
| 527 | /* if we have active crtcs and we don't have a power ref, |
| 528 | take the current one */ |
| 529 | if (active && !rdev->have_disp_power_ref) { |
| 530 | rdev->have_disp_power_ref = true; |
| 531 | return ret; |
| 532 | } |
| 533 | /* if we have no active crtcs, then drop the power ref |
| 534 | we got before */ |
| 535 | if (!active && rdev->have_disp_power_ref) { |
| 536 | pm_runtime_put_autosuspend(dev->dev); |
| 537 | rdev->have_disp_power_ref = false; |
| 538 | } |
| 539 | |
| 540 | /* drop the power reference we got coming in here */ |
| 541 | pm_runtime_put_autosuspend(dev->dev); |
| 542 | return ret; |
| 543 | } |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 544 | static const struct drm_crtc_funcs radeon_crtc_funcs = { |
| 545 | .cursor_set = radeon_crtc_cursor_set, |
| 546 | .cursor_move = radeon_crtc_cursor_move, |
| 547 | .gamma_set = radeon_crtc_gamma_set, |
Dave Airlie | 10ebc0b | 2012-09-17 14:40:31 +1000 | [diff] [blame] | 548 | .set_config = radeon_crtc_set_config, |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 549 | .destroy = radeon_crtc_destroy, |
Alex Deucher | 6f34be5 | 2010-11-21 10:59:01 -0500 | [diff] [blame] | 550 | .page_flip = radeon_crtc_page_flip, |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 551 | }; |
| 552 | |
| 553 | static void radeon_crtc_init(struct drm_device *dev, int index) |
| 554 | { |
| 555 | struct radeon_device *rdev = dev->dev_private; |
| 556 | struct radeon_crtc *radeon_crtc; |
| 557 | int i; |
| 558 | |
| 559 | radeon_crtc = kzalloc(sizeof(struct radeon_crtc) + (RADEONFB_CONN_LIMIT * sizeof(struct drm_connector *)), GFP_KERNEL); |
| 560 | if (radeon_crtc == NULL) |
| 561 | return; |
| 562 | |
| 563 | drm_crtc_init(dev, &radeon_crtc->base, &radeon_crtc_funcs); |
| 564 | |
| 565 | drm_mode_crtc_set_gamma_size(&radeon_crtc->base, 256); |
| 566 | radeon_crtc->crtc_id = index; |
Jerome Glisse | c93bb85 | 2009-07-13 21:04:08 +0200 | [diff] [blame] | 567 | rdev->mode_info.crtcs[index] = radeon_crtc; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 568 | |
Alex Deucher | 9e05fa1 | 2013-01-24 10:06:33 -0500 | [diff] [blame] | 569 | if (rdev->family >= CHIP_BONAIRE) { |
| 570 | radeon_crtc->max_cursor_width = CIK_CURSOR_WIDTH; |
| 571 | radeon_crtc->max_cursor_height = CIK_CURSOR_HEIGHT; |
| 572 | } else { |
| 573 | radeon_crtc->max_cursor_width = CURSOR_WIDTH; |
| 574 | radeon_crtc->max_cursor_height = CURSOR_HEIGHT; |
| 575 | } |
Alex Deucher | bea61c5 | 2014-02-12 12:56:53 -0500 | [diff] [blame] | 576 | dev->mode_config.cursor_width = radeon_crtc->max_cursor_width; |
| 577 | dev->mode_config.cursor_height = radeon_crtc->max_cursor_height; |
Alex Deucher | 9e05fa1 | 2013-01-24 10:06:33 -0500 | [diff] [blame] | 578 | |
Dave Airlie | 785b93e | 2009-08-28 15:46:53 +1000 | [diff] [blame] | 579 | #if 0 |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 580 | radeon_crtc->mode_set.crtc = &radeon_crtc->base; |
| 581 | radeon_crtc->mode_set.connectors = (struct drm_connector **)(radeon_crtc + 1); |
| 582 | radeon_crtc->mode_set.num_connectors = 0; |
Dave Airlie | 785b93e | 2009-08-28 15:46:53 +1000 | [diff] [blame] | 583 | #endif |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 584 | |
| 585 | for (i = 0; i < 256; i++) { |
| 586 | radeon_crtc->lut_r[i] = i << 2; |
| 587 | radeon_crtc->lut_g[i] = i << 2; |
| 588 | radeon_crtc->lut_b[i] = i << 2; |
| 589 | } |
| 590 | |
| 591 | if (rdev->is_atom_bios && (ASIC_IS_AVIVO(rdev) || radeon_r4xx_atom)) |
| 592 | radeon_atombios_init_crtc(dev, radeon_crtc); |
| 593 | else |
| 594 | radeon_legacy_init_crtc(dev, radeon_crtc); |
| 595 | } |
| 596 | |
Alex Deucher | e68adef | 2012-09-06 14:32:06 -0400 | [diff] [blame] | 597 | static const char *encoder_names[38] = { |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 598 | "NONE", |
| 599 | "INTERNAL_LVDS", |
| 600 | "INTERNAL_TMDS1", |
| 601 | "INTERNAL_TMDS2", |
| 602 | "INTERNAL_DAC1", |
| 603 | "INTERNAL_DAC2", |
| 604 | "INTERNAL_SDVOA", |
| 605 | "INTERNAL_SDVOB", |
| 606 | "SI170B", |
| 607 | "CH7303", |
| 608 | "CH7301", |
| 609 | "INTERNAL_DVO1", |
| 610 | "EXTERNAL_SDVOA", |
| 611 | "EXTERNAL_SDVOB", |
| 612 | "TITFP513", |
| 613 | "INTERNAL_LVTM1", |
| 614 | "VT1623", |
| 615 | "HDMI_SI1930", |
| 616 | "HDMI_INTERNAL", |
| 617 | "INTERNAL_KLDSCP_TMDS1", |
| 618 | "INTERNAL_KLDSCP_DVO1", |
| 619 | "INTERNAL_KLDSCP_DAC1", |
| 620 | "INTERNAL_KLDSCP_DAC2", |
| 621 | "SI178", |
| 622 | "MVPU_FPGA", |
| 623 | "INTERNAL_DDI", |
| 624 | "VT1625", |
| 625 | "HDMI_SI1932", |
| 626 | "DP_AN9801", |
| 627 | "DP_DP501", |
| 628 | "INTERNAL_UNIPHY", |
| 629 | "INTERNAL_KLDSCP_LVTMA", |
| 630 | "INTERNAL_UNIPHY1", |
| 631 | "INTERNAL_UNIPHY2", |
Alex Deucher | bf982eb | 2010-11-22 17:56:24 -0500 | [diff] [blame] | 632 | "NUTMEG", |
| 633 | "TRAVIS", |
Alex Deucher | e68adef | 2012-09-06 14:32:06 -0400 | [diff] [blame] | 634 | "INTERNAL_VCE", |
| 635 | "INTERNAL_UNIPHY3", |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 636 | }; |
| 637 | |
Alex Deucher | cbd4623 | 2010-06-07 02:24:54 -0400 | [diff] [blame] | 638 | static const char *hpd_names[6] = { |
Alex Deucher | eed45b3 | 2009-12-04 14:45:27 -0500 | [diff] [blame] | 639 | "HPD1", |
| 640 | "HPD2", |
| 641 | "HPD3", |
| 642 | "HPD4", |
| 643 | "HPD5", |
| 644 | "HPD6", |
| 645 | }; |
| 646 | |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 647 | static void radeon_print_display_setup(struct drm_device *dev) |
| 648 | { |
| 649 | struct drm_connector *connector; |
| 650 | struct radeon_connector *radeon_connector; |
| 651 | struct drm_encoder *encoder; |
| 652 | struct radeon_encoder *radeon_encoder; |
| 653 | uint32_t devices; |
| 654 | int i = 0; |
| 655 | |
| 656 | DRM_INFO("Radeon Display Connectors\n"); |
| 657 | list_for_each_entry(connector, &dev->mode_config.connector_list, head) { |
| 658 | radeon_connector = to_radeon_connector(connector); |
| 659 | DRM_INFO("Connector %d:\n", i); |
Ilija Hadzic | c1d2dbd | 2012-05-04 11:25:12 -0400 | [diff] [blame] | 660 | DRM_INFO(" %s\n", drm_get_connector_name(connector)); |
Alex Deucher | eed45b3 | 2009-12-04 14:45:27 -0500 | [diff] [blame] | 661 | if (radeon_connector->hpd.hpd != RADEON_HPD_NONE) |
| 662 | DRM_INFO(" %s\n", hpd_names[radeon_connector->hpd.hpd]); |
Dave Airlie | 4b9d2a2 | 2010-02-08 13:16:55 +1000 | [diff] [blame] | 663 | if (radeon_connector->ddc_bus) { |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 664 | DRM_INFO(" DDC: 0x%x 0x%x 0x%x 0x%x 0x%x 0x%x 0x%x 0x%x\n", |
| 665 | radeon_connector->ddc_bus->rec.mask_clk_reg, |
| 666 | radeon_connector->ddc_bus->rec.mask_data_reg, |
| 667 | radeon_connector->ddc_bus->rec.a_clk_reg, |
| 668 | radeon_connector->ddc_bus->rec.a_data_reg, |
Alex Deucher | 9b9fe72 | 2009-11-10 15:59:44 -0500 | [diff] [blame] | 669 | radeon_connector->ddc_bus->rec.en_clk_reg, |
| 670 | radeon_connector->ddc_bus->rec.en_data_reg, |
| 671 | radeon_connector->ddc_bus->rec.y_clk_reg, |
| 672 | radeon_connector->ddc_bus->rec.y_data_reg); |
Alex Deucher | fb939df | 2010-11-08 16:08:29 +0000 | [diff] [blame] | 673 | if (radeon_connector->router.ddc_valid) |
Alex Deucher | 26b5bc9 | 2010-08-05 21:21:18 -0400 | [diff] [blame] | 674 | DRM_INFO(" DDC Router 0x%x/0x%x\n", |
Alex Deucher | fb939df | 2010-11-08 16:08:29 +0000 | [diff] [blame] | 675 | radeon_connector->router.ddc_mux_control_pin, |
| 676 | radeon_connector->router.ddc_mux_state); |
| 677 | if (radeon_connector->router.cd_valid) |
| 678 | DRM_INFO(" Clock/Data Router 0x%x/0x%x\n", |
| 679 | radeon_connector->router.cd_mux_control_pin, |
| 680 | radeon_connector->router.cd_mux_state); |
Dave Airlie | 4b9d2a2 | 2010-02-08 13:16:55 +1000 | [diff] [blame] | 681 | } else { |
| 682 | if (connector->connector_type == DRM_MODE_CONNECTOR_VGA || |
| 683 | connector->connector_type == DRM_MODE_CONNECTOR_DVII || |
| 684 | connector->connector_type == DRM_MODE_CONNECTOR_DVID || |
| 685 | connector->connector_type == DRM_MODE_CONNECTOR_DVIA || |
| 686 | connector->connector_type == DRM_MODE_CONNECTOR_HDMIA || |
| 687 | connector->connector_type == DRM_MODE_CONNECTOR_HDMIB) |
| 688 | DRM_INFO(" DDC: no ddc bus - possible BIOS bug - please report to xorg-driver-ati@lists.x.org\n"); |
| 689 | } |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 690 | DRM_INFO(" Encoders:\n"); |
| 691 | list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) { |
| 692 | radeon_encoder = to_radeon_encoder(encoder); |
| 693 | devices = radeon_encoder->devices & radeon_connector->devices; |
| 694 | if (devices) { |
| 695 | if (devices & ATOM_DEVICE_CRT1_SUPPORT) |
| 696 | DRM_INFO(" CRT1: %s\n", encoder_names[radeon_encoder->encoder_id]); |
| 697 | if (devices & ATOM_DEVICE_CRT2_SUPPORT) |
| 698 | DRM_INFO(" CRT2: %s\n", encoder_names[radeon_encoder->encoder_id]); |
| 699 | if (devices & ATOM_DEVICE_LCD1_SUPPORT) |
| 700 | DRM_INFO(" LCD1: %s\n", encoder_names[radeon_encoder->encoder_id]); |
| 701 | if (devices & ATOM_DEVICE_DFP1_SUPPORT) |
| 702 | DRM_INFO(" DFP1: %s\n", encoder_names[radeon_encoder->encoder_id]); |
| 703 | if (devices & ATOM_DEVICE_DFP2_SUPPORT) |
| 704 | DRM_INFO(" DFP2: %s\n", encoder_names[radeon_encoder->encoder_id]); |
| 705 | if (devices & ATOM_DEVICE_DFP3_SUPPORT) |
| 706 | DRM_INFO(" DFP3: %s\n", encoder_names[radeon_encoder->encoder_id]); |
| 707 | if (devices & ATOM_DEVICE_DFP4_SUPPORT) |
| 708 | DRM_INFO(" DFP4: %s\n", encoder_names[radeon_encoder->encoder_id]); |
| 709 | if (devices & ATOM_DEVICE_DFP5_SUPPORT) |
| 710 | DRM_INFO(" DFP5: %s\n", encoder_names[radeon_encoder->encoder_id]); |
Alex Deucher | 73758a5 | 2010-09-24 14:59:32 -0400 | [diff] [blame] | 711 | if (devices & ATOM_DEVICE_DFP6_SUPPORT) |
| 712 | DRM_INFO(" DFP6: %s\n", encoder_names[radeon_encoder->encoder_id]); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 713 | if (devices & ATOM_DEVICE_TV1_SUPPORT) |
| 714 | DRM_INFO(" TV1: %s\n", encoder_names[radeon_encoder->encoder_id]); |
| 715 | if (devices & ATOM_DEVICE_CV_SUPPORT) |
| 716 | DRM_INFO(" CV: %s\n", encoder_names[radeon_encoder->encoder_id]); |
| 717 | } |
| 718 | } |
| 719 | i++; |
| 720 | } |
| 721 | } |
| 722 | |
Dave Airlie | 4ce001a | 2009-08-13 16:32:14 +1000 | [diff] [blame] | 723 | static bool radeon_setup_enc_conn(struct drm_device *dev) |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 724 | { |
| 725 | struct radeon_device *rdev = dev->dev_private; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 726 | bool ret = false; |
| 727 | |
| 728 | if (rdev->bios) { |
| 729 | if (rdev->is_atom_bios) { |
Alex Deucher | a084e6e | 2010-03-18 01:04:01 -0400 | [diff] [blame] | 730 | ret = radeon_get_atom_connector_info_from_supported_devices_table(dev); |
| 731 | if (ret == false) |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 732 | ret = radeon_get_atom_connector_info_from_object_table(dev); |
Alex Deucher | b9597a1 | 2010-01-04 19:12:02 -0500 | [diff] [blame] | 733 | } else { |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 734 | ret = radeon_get_legacy_connector_info_from_bios(dev); |
Alex Deucher | b9597a1 | 2010-01-04 19:12:02 -0500 | [diff] [blame] | 735 | if (ret == false) |
| 736 | ret = radeon_get_legacy_connector_info_from_table(dev); |
| 737 | } |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 738 | } else { |
| 739 | if (!ASIC_IS_AVIVO(rdev)) |
| 740 | ret = radeon_get_legacy_connector_info_from_table(dev); |
| 741 | } |
| 742 | if (ret) { |
Dave Airlie | 1f3b6a4 | 2009-10-13 14:10:37 +1000 | [diff] [blame] | 743 | radeon_setup_encoder_clones(dev); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 744 | radeon_print_display_setup(dev); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 745 | } |
| 746 | |
| 747 | return ret; |
| 748 | } |
| 749 | |
| 750 | int radeon_ddc_get_modes(struct radeon_connector *radeon_connector) |
| 751 | { |
Alex Deucher | 3c53788 | 2010-02-05 04:21:19 -0500 | [diff] [blame] | 752 | struct drm_device *dev = radeon_connector->base.dev; |
| 753 | struct radeon_device *rdev = dev->dev_private; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 754 | int ret = 0; |
| 755 | |
Alex Deucher | 26b5bc9 | 2010-08-05 21:21:18 -0400 | [diff] [blame] | 756 | /* on hw with routers, select right port */ |
Alex Deucher | fb939df | 2010-11-08 16:08:29 +0000 | [diff] [blame] | 757 | if (radeon_connector->router.ddc_valid) |
| 758 | radeon_router_select_ddc_port(radeon_connector); |
Alex Deucher | 26b5bc9 | 2010-08-05 21:21:18 -0400 | [diff] [blame] | 759 | |
Niels Ole Salscheider | 0a9069d | 2013-01-03 19:09:28 +0100 | [diff] [blame] | 760 | if (radeon_connector_encoder_get_dp_bridge_encoder_id(&radeon_connector->base) != |
| 761 | ENCODER_OBJECT_ID_NONE) { |
Alex Deucher | 379dfc2 | 2014-04-07 10:33:46 -0400 | [diff] [blame] | 762 | if (radeon_connector->ddc_bus->has_aux) |
Niels Ole Salscheider | 0a9069d | 2013-01-03 19:09:28 +0100 | [diff] [blame] | 763 | radeon_connector->edid = drm_get_edid(&radeon_connector->base, |
Alex Deucher | 379dfc2 | 2014-04-07 10:33:46 -0400 | [diff] [blame] | 764 | &radeon_connector->ddc_bus->aux.ddc); |
Niels Ole Salscheider | 0a9069d | 2013-01-03 19:09:28 +0100 | [diff] [blame] | 765 | } else if ((radeon_connector->base.connector_type == DRM_MODE_CONNECTOR_DisplayPort) || |
| 766 | (radeon_connector->base.connector_type == DRM_MODE_CONNECTOR_eDP)) { |
Dave Airlie | 746c1aa | 2009-12-08 07:07:28 +1000 | [diff] [blame] | 767 | struct radeon_connector_atom_dig *dig = radeon_connector->con_priv; |
Alex Deucher | b06947b | 2011-09-02 14:23:09 +0000 | [diff] [blame] | 768 | |
Dave Airlie | 7a15cbd4 | 2010-01-14 11:42:17 +1000 | [diff] [blame] | 769 | if ((dig->dp_sink_type == CONNECTOR_OBJECT_ID_DISPLAYPORT || |
Alex Deucher | 379dfc2 | 2014-04-07 10:33:46 -0400 | [diff] [blame] | 770 | dig->dp_sink_type == CONNECTOR_OBJECT_ID_eDP) && |
| 771 | radeon_connector->ddc_bus->has_aux) |
Alex Deucher | b06947b | 2011-09-02 14:23:09 +0000 | [diff] [blame] | 772 | radeon_connector->edid = drm_get_edid(&radeon_connector->base, |
Alex Deucher | 379dfc2 | 2014-04-07 10:33:46 -0400 | [diff] [blame] | 773 | &radeon_connector->ddc_bus->aux.ddc); |
Alex Deucher | b06947b | 2011-09-02 14:23:09 +0000 | [diff] [blame] | 774 | else if (radeon_connector->ddc_bus && !radeon_connector->edid) |
| 775 | radeon_connector->edid = drm_get_edid(&radeon_connector->base, |
| 776 | &radeon_connector->ddc_bus->adapter); |
| 777 | } else { |
| 778 | if (radeon_connector->ddc_bus && !radeon_connector->edid) |
| 779 | radeon_connector->edid = drm_get_edid(&radeon_connector->base, |
| 780 | &radeon_connector->ddc_bus->adapter); |
Alex Deucher | 0294cf4f | 2009-10-15 16:16:35 -0400 | [diff] [blame] | 781 | } |
Alex Deucher | c324acd | 2010-12-08 22:13:06 -0500 | [diff] [blame] | 782 | |
| 783 | if (!radeon_connector->edid) { |
| 784 | if (rdev->is_atom_bios) { |
| 785 | /* some laptops provide a hardcoded edid in rom for LCDs */ |
| 786 | if (((radeon_connector->base.connector_type == DRM_MODE_CONNECTOR_LVDS) || |
| 787 | (radeon_connector->base.connector_type == DRM_MODE_CONNECTOR_eDP))) |
| 788 | radeon_connector->edid = radeon_bios_get_hardcoded_edid(rdev); |
| 789 | } else |
| 790 | /* some servers provide a hardcoded edid in rom for KVMs */ |
| 791 | radeon_connector->edid = radeon_bios_get_hardcoded_edid(rdev); |
| 792 | } |
Alex Deucher | 0294cf4f | 2009-10-15 16:16:35 -0400 | [diff] [blame] | 793 | if (radeon_connector->edid) { |
| 794 | drm_mode_connector_update_edid_property(&radeon_connector->base, radeon_connector->edid); |
| 795 | ret = drm_add_edid_modes(&radeon_connector->base, radeon_connector->edid); |
Alex Deucher | 1608627 | 2014-03-31 11:19:46 -0400 | [diff] [blame] | 796 | drm_edid_to_eld(&radeon_connector->base, radeon_connector->edid); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 797 | return ret; |
| 798 | } |
| 799 | drm_mode_connector_update_edid_property(&radeon_connector->base, NULL); |
Dave Airlie | 42dea5d | 2009-09-15 20:21:11 +1000 | [diff] [blame] | 800 | return 0; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 801 | } |
| 802 | |
Alex Deucher | f523f74 | 2011-01-31 16:48:52 -0500 | [diff] [blame] | 803 | /* avivo */ |
Christian König | 3216701 | 2014-03-28 18:55:10 +0100 | [diff] [blame] | 804 | |
| 805 | /** |
| 806 | * avivo_reduce_ratio - fractional number reduction |
| 807 | * |
| 808 | * @nom: nominator |
| 809 | * @den: denominator |
| 810 | * @nom_min: minimum value for nominator |
| 811 | * @den_min: minimum value for denominator |
| 812 | * |
| 813 | * Find the greatest common divisor and apply it on both nominator and |
| 814 | * denominator, but make nominator and denominator are at least as large |
| 815 | * as their minimum values. |
| 816 | */ |
| 817 | static void avivo_reduce_ratio(unsigned *nom, unsigned *den, |
| 818 | unsigned nom_min, unsigned den_min) |
Alex Deucher | f523f74 | 2011-01-31 16:48:52 -0500 | [diff] [blame] | 819 | { |
Christian König | 3216701 | 2014-03-28 18:55:10 +0100 | [diff] [blame] | 820 | unsigned tmp; |
Alex Deucher | f523f74 | 2011-01-31 16:48:52 -0500 | [diff] [blame] | 821 | |
Christian König | 3216701 | 2014-03-28 18:55:10 +0100 | [diff] [blame] | 822 | /* reduce the numbers to a simpler ratio */ |
| 823 | tmp = gcd(*nom, *den); |
| 824 | *nom /= tmp; |
| 825 | *den /= tmp; |
Alex Deucher | a4b40d5 | 2011-02-14 11:43:10 -0500 | [diff] [blame] | 826 | |
Christian König | 3216701 | 2014-03-28 18:55:10 +0100 | [diff] [blame] | 827 | /* make sure nominator is large enough */ |
| 828 | if (*nom < nom_min) { |
| 829 | tmp = (nom_min + *nom - 1) / *nom; |
| 830 | *nom *= tmp; |
| 831 | *den *= tmp; |
Alex Deucher | f523f74 | 2011-01-31 16:48:52 -0500 | [diff] [blame] | 832 | } |
| 833 | |
Christian König | 3216701 | 2014-03-28 18:55:10 +0100 | [diff] [blame] | 834 | /* make sure the denominator is large enough */ |
| 835 | if (*den < den_min) { |
| 836 | tmp = (den_min + *den - 1) / *den; |
| 837 | *nom *= tmp; |
| 838 | *den *= tmp; |
Alex Deucher | f523f74 | 2011-01-31 16:48:52 -0500 | [diff] [blame] | 839 | } |
Alex Deucher | f523f74 | 2011-01-31 16:48:52 -0500 | [diff] [blame] | 840 | } |
| 841 | |
Christian König | 3216701 | 2014-03-28 18:55:10 +0100 | [diff] [blame] | 842 | /** |
| 843 | * radeon_compute_pll_avivo - compute PLL paramaters |
| 844 | * |
| 845 | * @pll: information about the PLL |
| 846 | * @dot_clock_p: resulting pixel clock |
| 847 | * fb_div_p: resulting feedback divider |
| 848 | * frac_fb_div_p: fractional part of the feedback divider |
| 849 | * ref_div_p: resulting reference divider |
| 850 | * post_div_p: resulting reference divider |
| 851 | * |
| 852 | * Try to calculate the PLL parameters to generate the given frequency: |
| 853 | * dot_clock = (ref_freq * feedback_div) / (ref_div * post_div) |
| 854 | */ |
Alex Deucher | f523f74 | 2011-01-31 16:48:52 -0500 | [diff] [blame] | 855 | void radeon_compute_pll_avivo(struct radeon_pll *pll, |
| 856 | u32 freq, |
| 857 | u32 *dot_clock_p, |
| 858 | u32 *fb_div_p, |
| 859 | u32 *frac_fb_div_p, |
| 860 | u32 *ref_div_p, |
| 861 | u32 *post_div_p) |
| 862 | { |
Christian König | 3216701 | 2014-03-28 18:55:10 +0100 | [diff] [blame] | 863 | unsigned fb_div_min, fb_div_max, fb_div; |
| 864 | unsigned post_div_min, post_div_max, post_div; |
| 865 | unsigned ref_div_min, ref_div_max, ref_div; |
| 866 | unsigned post_div_best, diff_best; |
Christian König | f8a2645 | 2014-04-16 11:54:21 +0200 | [diff] [blame] | 867 | unsigned nom, den; |
Alex Deucher | f523f74 | 2011-01-31 16:48:52 -0500 | [diff] [blame] | 868 | |
Christian König | 3216701 | 2014-03-28 18:55:10 +0100 | [diff] [blame] | 869 | /* determine allowed feedback divider range */ |
| 870 | fb_div_min = pll->min_feedback_div; |
| 871 | fb_div_max = pll->max_feedback_div; |
Alex Deucher | f523f74 | 2011-01-31 16:48:52 -0500 | [diff] [blame] | 872 | |
| 873 | if (pll->flags & RADEON_PLL_USE_FRAC_FB_DIV) { |
Christian König | 3216701 | 2014-03-28 18:55:10 +0100 | [diff] [blame] | 874 | fb_div_min *= 10; |
| 875 | fb_div_max *= 10; |
Alex Deucher | f523f74 | 2011-01-31 16:48:52 -0500 | [diff] [blame] | 876 | } |
| 877 | |
Christian König | 3216701 | 2014-03-28 18:55:10 +0100 | [diff] [blame] | 878 | /* determine allowed ref divider range */ |
| 879 | if (pll->flags & RADEON_PLL_USE_REF_DIV) |
| 880 | ref_div_min = pll->reference_div; |
| 881 | else |
| 882 | ref_div_min = pll->min_ref_div; |
Christian König | 2431581 | 2014-04-19 18:57:14 +0200 | [diff] [blame^] | 883 | |
| 884 | if (pll->flags & RADEON_PLL_USE_FRAC_FB_DIV && |
| 885 | pll->flags & RADEON_PLL_USE_REF_DIV) |
| 886 | ref_div_max = pll->reference_div; |
| 887 | else |
| 888 | ref_div_max = pll->max_ref_div; |
Christian König | 3216701 | 2014-03-28 18:55:10 +0100 | [diff] [blame] | 889 | |
| 890 | /* determine allowed post divider range */ |
| 891 | if (pll->flags & RADEON_PLL_USE_POST_DIV) { |
| 892 | post_div_min = pll->post_div; |
| 893 | post_div_max = pll->post_div; |
| 894 | } else { |
| 895 | unsigned target_clock = freq / 10; |
| 896 | unsigned vco_min, vco_max; |
| 897 | |
| 898 | if (pll->flags & RADEON_PLL_IS_LCD) { |
| 899 | vco_min = pll->lcd_pll_out_min; |
| 900 | vco_max = pll->lcd_pll_out_max; |
| 901 | } else { |
| 902 | vco_min = pll->pll_out_min; |
| 903 | vco_max = pll->pll_out_max; |
| 904 | } |
| 905 | |
| 906 | post_div_min = vco_min / target_clock; |
| 907 | if ((target_clock * post_div_min) < vco_min) |
| 908 | ++post_div_min; |
| 909 | if (post_div_min < pll->min_post_div) |
| 910 | post_div_min = pll->min_post_div; |
| 911 | |
| 912 | post_div_max = vco_max / target_clock; |
| 913 | if ((target_clock * post_div_max) > vco_max) |
| 914 | --post_div_max; |
| 915 | if (post_div_max > pll->max_post_div) |
| 916 | post_div_max = pll->max_post_div; |
| 917 | } |
| 918 | |
| 919 | /* represent the searched ratio as fractional number */ |
| 920 | nom = pll->flags & RADEON_PLL_USE_FRAC_FB_DIV ? freq : freq / 10; |
| 921 | den = pll->reference_freq; |
| 922 | |
| 923 | /* reduce the numbers to a simpler ratio */ |
| 924 | avivo_reduce_ratio(&nom, &den, fb_div_min, post_div_min); |
| 925 | |
| 926 | /* now search for a post divider */ |
| 927 | if (pll->flags & RADEON_PLL_PREFER_MINM_OVER_MAXP) |
| 928 | post_div_best = post_div_min; |
| 929 | else |
| 930 | post_div_best = post_div_max; |
| 931 | diff_best = ~0; |
| 932 | |
| 933 | for (post_div = post_div_min; post_div <= post_div_max; ++post_div) { |
| 934 | unsigned diff = abs(den - den / post_div * post_div); |
| 935 | if (diff < diff_best || (diff == diff_best && |
| 936 | !(pll->flags & RADEON_PLL_PREFER_MINM_OVER_MAXP))) { |
| 937 | |
| 938 | post_div_best = post_div; |
| 939 | diff_best = diff; |
| 940 | } |
| 941 | } |
| 942 | post_div = post_div_best; |
| 943 | |
Christian König | 5fb9cc4 | 2014-04-04 13:45:42 +0200 | [diff] [blame] | 944 | /* limit reference * post divider to a maximum */ |
| 945 | ref_div_max = min(210 / post_div, ref_div_max); |
| 946 | |
Christian König | 3216701 | 2014-03-28 18:55:10 +0100 | [diff] [blame] | 947 | /* get matching reference and feedback divider */ |
Christian König | f8a2645 | 2014-04-16 11:54:21 +0200 | [diff] [blame] | 948 | ref_div = max(DIV_ROUND_CLOSEST(den, post_div), 1u); |
| 949 | fb_div = DIV_ROUND_CLOSEST(nom * ref_div * post_div, den); |
Christian König | 3216701 | 2014-03-28 18:55:10 +0100 | [diff] [blame] | 950 | |
| 951 | /* we're almost done, but reference and feedback |
| 952 | divider might be to large now */ |
| 953 | |
Christian König | f8a2645 | 2014-04-16 11:54:21 +0200 | [diff] [blame] | 954 | nom = fb_div; |
| 955 | den = ref_div; |
Christian König | 3216701 | 2014-03-28 18:55:10 +0100 | [diff] [blame] | 956 | |
| 957 | if (fb_div > fb_div_max) { |
Christian König | f8a2645 | 2014-04-16 11:54:21 +0200 | [diff] [blame] | 958 | ref_div = DIV_ROUND_CLOSEST(den * fb_div_max, nom); |
Christian König | 3216701 | 2014-03-28 18:55:10 +0100 | [diff] [blame] | 959 | fb_div = fb_div_max; |
| 960 | } |
| 961 | |
| 962 | if (ref_div > ref_div_max) { |
| 963 | ref_div = ref_div_max; |
Christian König | f8a2645 | 2014-04-16 11:54:21 +0200 | [diff] [blame] | 964 | fb_div = DIV_ROUND_CLOSEST(nom * ref_div_max, den); |
Christian König | 3216701 | 2014-03-28 18:55:10 +0100 | [diff] [blame] | 965 | } |
| 966 | |
| 967 | /* reduce the numbers to a simpler ratio once more */ |
| 968 | /* this also makes sure that the reference divider is large enough */ |
| 969 | avivo_reduce_ratio(&fb_div, &ref_div, fb_div_min, ref_div_min); |
| 970 | |
| 971 | /* and finally save the result */ |
| 972 | if (pll->flags & RADEON_PLL_USE_FRAC_FB_DIV) { |
| 973 | *fb_div_p = fb_div / 10; |
| 974 | *frac_fb_div_p = fb_div % 10; |
| 975 | } else { |
| 976 | *fb_div_p = fb_div; |
| 977 | *frac_fb_div_p = 0; |
| 978 | } |
| 979 | |
| 980 | *dot_clock_p = ((pll->reference_freq * *fb_div_p * 10) + |
| 981 | (pll->reference_freq * *frac_fb_div_p)) / |
| 982 | (ref_div * post_div * 10); |
Alex Deucher | f523f74 | 2011-01-31 16:48:52 -0500 | [diff] [blame] | 983 | *ref_div_p = ref_div; |
| 984 | *post_div_p = post_div; |
Christian König | 3216701 | 2014-03-28 18:55:10 +0100 | [diff] [blame] | 985 | |
| 986 | DRM_DEBUG_KMS("%d - %d, pll dividers - fb: %d.%d ref: %d, post %d\n", |
| 987 | freq, *dot_clock_p, *fb_div_p, *frac_fb_div_p, |
| 988 | ref_div, post_div); |
Alex Deucher | f523f74 | 2011-01-31 16:48:52 -0500 | [diff] [blame] | 989 | } |
| 990 | |
| 991 | /* pre-avivo */ |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 992 | static inline uint32_t radeon_div(uint64_t n, uint32_t d) |
| 993 | { |
| 994 | uint64_t mod; |
| 995 | |
| 996 | n += d / 2; |
| 997 | |
| 998 | mod = do_div(n, d); |
| 999 | return n; |
| 1000 | } |
| 1001 | |
Alex Deucher | f523f74 | 2011-01-31 16:48:52 -0500 | [diff] [blame] | 1002 | void radeon_compute_pll_legacy(struct radeon_pll *pll, |
| 1003 | uint64_t freq, |
| 1004 | uint32_t *dot_clock_p, |
| 1005 | uint32_t *fb_div_p, |
| 1006 | uint32_t *frac_fb_div_p, |
| 1007 | uint32_t *ref_div_p, |
| 1008 | uint32_t *post_div_p) |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1009 | { |
| 1010 | uint32_t min_ref_div = pll->min_ref_div; |
| 1011 | uint32_t max_ref_div = pll->max_ref_div; |
Alex Deucher | fc10332 | 2010-01-19 17:16:10 -0500 | [diff] [blame] | 1012 | uint32_t min_post_div = pll->min_post_div; |
| 1013 | uint32_t max_post_div = pll->max_post_div; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1014 | uint32_t min_fractional_feed_div = 0; |
| 1015 | uint32_t max_fractional_feed_div = 0; |
| 1016 | uint32_t best_vco = pll->best_vco; |
| 1017 | uint32_t best_post_div = 1; |
| 1018 | uint32_t best_ref_div = 1; |
| 1019 | uint32_t best_feedback_div = 1; |
| 1020 | uint32_t best_frac_feedback_div = 0; |
| 1021 | uint32_t best_freq = -1; |
| 1022 | uint32_t best_error = 0xffffffff; |
| 1023 | uint32_t best_vco_diff = 1; |
| 1024 | uint32_t post_div; |
Alex Deucher | 86cb2bb | 2010-03-08 12:55:16 -0500 | [diff] [blame] | 1025 | u32 pll_out_min, pll_out_max; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1026 | |
Dave Airlie | d9fdaaf | 2010-08-02 10:42:55 +1000 | [diff] [blame] | 1027 | DRM_DEBUG_KMS("PLL freq %llu %u %u\n", freq, pll->min_ref_div, pll->max_ref_div); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1028 | freq = freq * 1000; |
| 1029 | |
Alex Deucher | 86cb2bb | 2010-03-08 12:55:16 -0500 | [diff] [blame] | 1030 | if (pll->flags & RADEON_PLL_IS_LCD) { |
| 1031 | pll_out_min = pll->lcd_pll_out_min; |
| 1032 | pll_out_max = pll->lcd_pll_out_max; |
| 1033 | } else { |
| 1034 | pll_out_min = pll->pll_out_min; |
| 1035 | pll_out_max = pll->pll_out_max; |
| 1036 | } |
| 1037 | |
Alex Deucher | 619efb1 | 2011-01-31 16:48:53 -0500 | [diff] [blame] | 1038 | if (pll_out_min > 64800) |
| 1039 | pll_out_min = 64800; |
| 1040 | |
Alex Deucher | fc10332 | 2010-01-19 17:16:10 -0500 | [diff] [blame] | 1041 | if (pll->flags & RADEON_PLL_USE_REF_DIV) |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1042 | min_ref_div = max_ref_div = pll->reference_div; |
| 1043 | else { |
| 1044 | while (min_ref_div < max_ref_div-1) { |
| 1045 | uint32_t mid = (min_ref_div + max_ref_div) / 2; |
| 1046 | uint32_t pll_in = pll->reference_freq / mid; |
| 1047 | if (pll_in < pll->pll_in_min) |
| 1048 | max_ref_div = mid; |
| 1049 | else if (pll_in > pll->pll_in_max) |
| 1050 | min_ref_div = mid; |
| 1051 | else |
| 1052 | break; |
| 1053 | } |
| 1054 | } |
| 1055 | |
Alex Deucher | fc10332 | 2010-01-19 17:16:10 -0500 | [diff] [blame] | 1056 | if (pll->flags & RADEON_PLL_USE_POST_DIV) |
| 1057 | min_post_div = max_post_div = pll->post_div; |
| 1058 | |
| 1059 | if (pll->flags & RADEON_PLL_USE_FRAC_FB_DIV) { |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1060 | min_fractional_feed_div = pll->min_frac_feedback_div; |
| 1061 | max_fractional_feed_div = pll->max_frac_feedback_div; |
| 1062 | } |
| 1063 | |
Alex Deucher | bd6a60a | 2011-02-21 01:11:59 -0500 | [diff] [blame] | 1064 | for (post_div = max_post_div; post_div >= min_post_div; --post_div) { |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1065 | uint32_t ref_div; |
| 1066 | |
Alex Deucher | fc10332 | 2010-01-19 17:16:10 -0500 | [diff] [blame] | 1067 | if ((pll->flags & RADEON_PLL_NO_ODD_POST_DIV) && (post_div & 1)) |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1068 | continue; |
| 1069 | |
| 1070 | /* legacy radeons only have a few post_divs */ |
Alex Deucher | fc10332 | 2010-01-19 17:16:10 -0500 | [diff] [blame] | 1071 | if (pll->flags & RADEON_PLL_LEGACY) { |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1072 | if ((post_div == 5) || |
| 1073 | (post_div == 7) || |
| 1074 | (post_div == 9) || |
| 1075 | (post_div == 10) || |
| 1076 | (post_div == 11) || |
| 1077 | (post_div == 13) || |
| 1078 | (post_div == 14) || |
| 1079 | (post_div == 15)) |
| 1080 | continue; |
| 1081 | } |
| 1082 | |
| 1083 | for (ref_div = min_ref_div; ref_div <= max_ref_div; ++ref_div) { |
| 1084 | uint32_t feedback_div, current_freq = 0, error, vco_diff; |
| 1085 | uint32_t pll_in = pll->reference_freq / ref_div; |
| 1086 | uint32_t min_feed_div = pll->min_feedback_div; |
| 1087 | uint32_t max_feed_div = pll->max_feedback_div + 1; |
| 1088 | |
| 1089 | if (pll_in < pll->pll_in_min || pll_in > pll->pll_in_max) |
| 1090 | continue; |
| 1091 | |
| 1092 | while (min_feed_div < max_feed_div) { |
| 1093 | uint32_t vco; |
| 1094 | uint32_t min_frac_feed_div = min_fractional_feed_div; |
| 1095 | uint32_t max_frac_feed_div = max_fractional_feed_div + 1; |
| 1096 | uint32_t frac_feedback_div; |
| 1097 | uint64_t tmp; |
| 1098 | |
| 1099 | feedback_div = (min_feed_div + max_feed_div) / 2; |
| 1100 | |
| 1101 | tmp = (uint64_t)pll->reference_freq * feedback_div; |
| 1102 | vco = radeon_div(tmp, ref_div); |
| 1103 | |
Alex Deucher | 86cb2bb | 2010-03-08 12:55:16 -0500 | [diff] [blame] | 1104 | if (vco < pll_out_min) { |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1105 | min_feed_div = feedback_div + 1; |
| 1106 | continue; |
Alex Deucher | 86cb2bb | 2010-03-08 12:55:16 -0500 | [diff] [blame] | 1107 | } else if (vco > pll_out_max) { |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1108 | max_feed_div = feedback_div; |
| 1109 | continue; |
| 1110 | } |
| 1111 | |
| 1112 | while (min_frac_feed_div < max_frac_feed_div) { |
| 1113 | frac_feedback_div = (min_frac_feed_div + max_frac_feed_div) / 2; |
| 1114 | tmp = (uint64_t)pll->reference_freq * 10000 * feedback_div; |
| 1115 | tmp += (uint64_t)pll->reference_freq * 1000 * frac_feedback_div; |
| 1116 | current_freq = radeon_div(tmp, ref_div * post_div); |
| 1117 | |
Alex Deucher | fc10332 | 2010-01-19 17:16:10 -0500 | [diff] [blame] | 1118 | if (pll->flags & RADEON_PLL_PREFER_CLOSEST_LOWER) { |
Dan Carpenter | 167ffc4 | 2010-07-17 12:28:02 +0200 | [diff] [blame] | 1119 | if (freq < current_freq) |
| 1120 | error = 0xffffffff; |
| 1121 | else |
| 1122 | error = freq - current_freq; |
Alex Deucher | d0e275a | 2009-07-13 11:08:18 -0400 | [diff] [blame] | 1123 | } else |
| 1124 | error = abs(current_freq - freq); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1125 | vco_diff = abs(vco - best_vco); |
| 1126 | |
| 1127 | if ((best_vco == 0 && error < best_error) || |
| 1128 | (best_vco != 0 && |
Dan Carpenter | 167ffc4 | 2010-07-17 12:28:02 +0200 | [diff] [blame] | 1129 | ((best_error > 100 && error < best_error - 100) || |
Dave Airlie | 5480f72 | 2010-10-19 10:36:47 +1000 | [diff] [blame] | 1130 | (abs(error - best_error) < 100 && vco_diff < best_vco_diff)))) { |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1131 | best_post_div = post_div; |
| 1132 | best_ref_div = ref_div; |
| 1133 | best_feedback_div = feedback_div; |
| 1134 | best_frac_feedback_div = frac_feedback_div; |
| 1135 | best_freq = current_freq; |
| 1136 | best_error = error; |
| 1137 | best_vco_diff = vco_diff; |
Dave Airlie | 5480f72 | 2010-10-19 10:36:47 +1000 | [diff] [blame] | 1138 | } else if (current_freq == freq) { |
| 1139 | if (best_freq == -1) { |
| 1140 | best_post_div = post_div; |
| 1141 | best_ref_div = ref_div; |
| 1142 | best_feedback_div = feedback_div; |
| 1143 | best_frac_feedback_div = frac_feedback_div; |
| 1144 | best_freq = current_freq; |
| 1145 | best_error = error; |
| 1146 | best_vco_diff = vco_diff; |
| 1147 | } else if (((pll->flags & RADEON_PLL_PREFER_LOW_REF_DIV) && (ref_div < best_ref_div)) || |
| 1148 | ((pll->flags & RADEON_PLL_PREFER_HIGH_REF_DIV) && (ref_div > best_ref_div)) || |
| 1149 | ((pll->flags & RADEON_PLL_PREFER_LOW_FB_DIV) && (feedback_div < best_feedback_div)) || |
| 1150 | ((pll->flags & RADEON_PLL_PREFER_HIGH_FB_DIV) && (feedback_div > best_feedback_div)) || |
| 1151 | ((pll->flags & RADEON_PLL_PREFER_LOW_POST_DIV) && (post_div < best_post_div)) || |
| 1152 | ((pll->flags & RADEON_PLL_PREFER_HIGH_POST_DIV) && (post_div > best_post_div))) { |
| 1153 | best_post_div = post_div; |
| 1154 | best_ref_div = ref_div; |
| 1155 | best_feedback_div = feedback_div; |
| 1156 | best_frac_feedback_div = frac_feedback_div; |
| 1157 | best_freq = current_freq; |
| 1158 | best_error = error; |
| 1159 | best_vco_diff = vco_diff; |
| 1160 | } |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1161 | } |
| 1162 | if (current_freq < freq) |
| 1163 | min_frac_feed_div = frac_feedback_div + 1; |
| 1164 | else |
| 1165 | max_frac_feed_div = frac_feedback_div; |
| 1166 | } |
| 1167 | if (current_freq < freq) |
| 1168 | min_feed_div = feedback_div + 1; |
| 1169 | else |
| 1170 | max_feed_div = feedback_div; |
| 1171 | } |
| 1172 | } |
| 1173 | } |
| 1174 | |
| 1175 | *dot_clock_p = best_freq / 10000; |
| 1176 | *fb_div_p = best_feedback_div; |
| 1177 | *frac_fb_div_p = best_frac_feedback_div; |
| 1178 | *ref_div_p = best_ref_div; |
| 1179 | *post_div_p = best_post_div; |
Joe Perches | bbb0aef5 | 2011-04-17 20:35:52 -0700 | [diff] [blame] | 1180 | DRM_DEBUG_KMS("%lld %d, pll dividers - fb: %d.%d ref: %d, post %d\n", |
| 1181 | (long long)freq, |
| 1182 | best_freq / 1000, best_feedback_div, best_frac_feedback_div, |
Alex Deucher | 51d4bf8 | 2011-01-31 16:48:51 -0500 | [diff] [blame] | 1183 | best_ref_div, best_post_div); |
| 1184 | |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1185 | } |
| 1186 | |
| 1187 | static void radeon_user_framebuffer_destroy(struct drm_framebuffer *fb) |
| 1188 | { |
| 1189 | struct radeon_framebuffer *radeon_fb = to_radeon_framebuffer(fb); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1190 | |
Dave Airlie | 29d08b3 | 2010-09-27 16:17:17 +1000 | [diff] [blame] | 1191 | if (radeon_fb->obj) { |
Luca Barbieri | bc9025b | 2010-02-09 05:49:12 +0000 | [diff] [blame] | 1192 | drm_gem_object_unreference_unlocked(radeon_fb->obj); |
Dave Airlie | 29d08b3 | 2010-09-27 16:17:17 +1000 | [diff] [blame] | 1193 | } |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1194 | drm_framebuffer_cleanup(fb); |
| 1195 | kfree(radeon_fb); |
| 1196 | } |
| 1197 | |
| 1198 | static int radeon_user_framebuffer_create_handle(struct drm_framebuffer *fb, |
| 1199 | struct drm_file *file_priv, |
| 1200 | unsigned int *handle) |
| 1201 | { |
| 1202 | struct radeon_framebuffer *radeon_fb = to_radeon_framebuffer(fb); |
| 1203 | |
| 1204 | return drm_gem_handle_create(file_priv, radeon_fb->obj, handle); |
| 1205 | } |
| 1206 | |
| 1207 | static const struct drm_framebuffer_funcs radeon_fb_funcs = { |
| 1208 | .destroy = radeon_user_framebuffer_destroy, |
| 1209 | .create_handle = radeon_user_framebuffer_create_handle, |
| 1210 | }; |
| 1211 | |
Dave Airlie | aaefcd4 | 2012-03-06 10:44:40 +0000 | [diff] [blame] | 1212 | int |
Dave Airlie | 3865167 | 2010-03-30 05:34:13 +0000 | [diff] [blame] | 1213 | radeon_framebuffer_init(struct drm_device *dev, |
| 1214 | struct radeon_framebuffer *rfb, |
Jesse Barnes | 308e5bc | 2011-11-14 14:51:28 -0800 | [diff] [blame] | 1215 | struct drm_mode_fb_cmd2 *mode_cmd, |
Dave Airlie | 3865167 | 2010-03-30 05:34:13 +0000 | [diff] [blame] | 1216 | struct drm_gem_object *obj) |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1217 | { |
Dave Airlie | aaefcd4 | 2012-03-06 10:44:40 +0000 | [diff] [blame] | 1218 | int ret; |
Dave Airlie | 3865167 | 2010-03-30 05:34:13 +0000 | [diff] [blame] | 1219 | rfb->obj = obj; |
Daniel Vetter | c7d73f6 | 2012-12-13 23:38:38 +0100 | [diff] [blame] | 1220 | drm_helper_mode_fill_fb_struct(&rfb->base, mode_cmd); |
Dave Airlie | aaefcd4 | 2012-03-06 10:44:40 +0000 | [diff] [blame] | 1221 | ret = drm_framebuffer_init(dev, &rfb->base, &radeon_fb_funcs); |
| 1222 | if (ret) { |
| 1223 | rfb->obj = NULL; |
| 1224 | return ret; |
| 1225 | } |
Dave Airlie | aaefcd4 | 2012-03-06 10:44:40 +0000 | [diff] [blame] | 1226 | return 0; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1227 | } |
| 1228 | |
| 1229 | static struct drm_framebuffer * |
| 1230 | radeon_user_framebuffer_create(struct drm_device *dev, |
| 1231 | struct drm_file *file_priv, |
Jesse Barnes | 308e5bc | 2011-11-14 14:51:28 -0800 | [diff] [blame] | 1232 | struct drm_mode_fb_cmd2 *mode_cmd) |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1233 | { |
| 1234 | struct drm_gem_object *obj; |
Dave Airlie | 3865167 | 2010-03-30 05:34:13 +0000 | [diff] [blame] | 1235 | struct radeon_framebuffer *radeon_fb; |
Dave Airlie | aaefcd4 | 2012-03-06 10:44:40 +0000 | [diff] [blame] | 1236 | int ret; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1237 | |
Jesse Barnes | 308e5bc | 2011-11-14 14:51:28 -0800 | [diff] [blame] | 1238 | obj = drm_gem_object_lookup(dev, file_priv, mode_cmd->handles[0]); |
Jerome Glisse | 7e71c9e | 2010-01-17 21:21:41 +0100 | [diff] [blame] | 1239 | if (obj == NULL) { |
| 1240 | dev_err(&dev->pdev->dev, "No GEM object associated to handle 0x%08X, " |
Jesse Barnes | 308e5bc | 2011-11-14 14:51:28 -0800 | [diff] [blame] | 1241 | "can't create framebuffer\n", mode_cmd->handles[0]); |
Chris Wilson | cce13ff | 2010-08-08 13:36:38 +0100 | [diff] [blame] | 1242 | return ERR_PTR(-ENOENT); |
Jerome Glisse | 7e71c9e | 2010-01-17 21:21:41 +0100 | [diff] [blame] | 1243 | } |
Dave Airlie | 3865167 | 2010-03-30 05:34:13 +0000 | [diff] [blame] | 1244 | |
| 1245 | radeon_fb = kzalloc(sizeof(*radeon_fb), GFP_KERNEL); |
liu chuansheng | f2d68cf | 2013-01-31 22:13:00 +0800 | [diff] [blame] | 1246 | if (radeon_fb == NULL) { |
| 1247 | drm_gem_object_unreference_unlocked(obj); |
Chris Wilson | cce13ff | 2010-08-08 13:36:38 +0100 | [diff] [blame] | 1248 | return ERR_PTR(-ENOMEM); |
liu chuansheng | f2d68cf | 2013-01-31 22:13:00 +0800 | [diff] [blame] | 1249 | } |
Dave Airlie | 3865167 | 2010-03-30 05:34:13 +0000 | [diff] [blame] | 1250 | |
Dave Airlie | aaefcd4 | 2012-03-06 10:44:40 +0000 | [diff] [blame] | 1251 | ret = radeon_framebuffer_init(dev, radeon_fb, mode_cmd, obj); |
| 1252 | if (ret) { |
| 1253 | kfree(radeon_fb); |
| 1254 | drm_gem_object_unreference_unlocked(obj); |
xueminsu | b2f4b03 | 2013-01-22 22:16:53 +0800 | [diff] [blame] | 1255 | return ERR_PTR(ret); |
Dave Airlie | aaefcd4 | 2012-03-06 10:44:40 +0000 | [diff] [blame] | 1256 | } |
Dave Airlie | 3865167 | 2010-03-30 05:34:13 +0000 | [diff] [blame] | 1257 | |
| 1258 | return &radeon_fb->base; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1259 | } |
| 1260 | |
Dave Airlie | eb1f8e4 | 2010-05-07 06:42:51 +0000 | [diff] [blame] | 1261 | static void radeon_output_poll_changed(struct drm_device *dev) |
| 1262 | { |
| 1263 | struct radeon_device *rdev = dev->dev_private; |
| 1264 | radeon_fb_output_poll_changed(rdev); |
| 1265 | } |
| 1266 | |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1267 | static const struct drm_mode_config_funcs radeon_mode_funcs = { |
| 1268 | .fb_create = radeon_user_framebuffer_create, |
Dave Airlie | eb1f8e4 | 2010-05-07 06:42:51 +0000 | [diff] [blame] | 1269 | .output_poll_changed = radeon_output_poll_changed |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1270 | }; |
| 1271 | |
Dave Airlie | 445282d | 2009-09-09 17:40:54 +1000 | [diff] [blame] | 1272 | static struct drm_prop_enum_list radeon_tmds_pll_enum_list[] = |
| 1273 | { { 0, "driver" }, |
| 1274 | { 1, "bios" }, |
| 1275 | }; |
| 1276 | |
| 1277 | static struct drm_prop_enum_list radeon_tv_std_enum_list[] = |
| 1278 | { { TV_STD_NTSC, "ntsc" }, |
| 1279 | { TV_STD_PAL, "pal" }, |
| 1280 | { TV_STD_PAL_M, "pal-m" }, |
| 1281 | { TV_STD_PAL_60, "pal-60" }, |
| 1282 | { TV_STD_NTSC_J, "ntsc-j" }, |
| 1283 | { TV_STD_SCART_PAL, "scart-pal" }, |
| 1284 | { TV_STD_PAL_CN, "pal-cn" }, |
| 1285 | { TV_STD_SECAM, "secam" }, |
| 1286 | }; |
| 1287 | |
Alex Deucher | 5b1714d | 2010-08-03 19:59:20 -0400 | [diff] [blame] | 1288 | static struct drm_prop_enum_list radeon_underscan_enum_list[] = |
| 1289 | { { UNDERSCAN_OFF, "off" }, |
| 1290 | { UNDERSCAN_ON, "on" }, |
| 1291 | { UNDERSCAN_AUTO, "auto" }, |
| 1292 | }; |
| 1293 | |
Alex Deucher | 8666c07 | 2013-09-03 14:58:44 -0400 | [diff] [blame] | 1294 | static struct drm_prop_enum_list radeon_audio_enum_list[] = |
| 1295 | { { RADEON_AUDIO_DISABLE, "off" }, |
| 1296 | { RADEON_AUDIO_ENABLE, "on" }, |
| 1297 | { RADEON_AUDIO_AUTO, "auto" }, |
| 1298 | }; |
| 1299 | |
Alex Deucher | 6214bb7 | 2013-09-24 17:26:26 -0400 | [diff] [blame] | 1300 | /* XXX support different dither options? spatial, temporal, both, etc. */ |
| 1301 | static struct drm_prop_enum_list radeon_dither_enum_list[] = |
| 1302 | { { RADEON_FMT_DITHER_DISABLE, "off" }, |
| 1303 | { RADEON_FMT_DITHER_ENABLE, "on" }, |
| 1304 | }; |
| 1305 | |
Alex Deucher | d79766f | 2009-12-17 19:00:29 -0500 | [diff] [blame] | 1306 | static int radeon_modeset_create_props(struct radeon_device *rdev) |
Dave Airlie | 445282d | 2009-09-09 17:40:54 +1000 | [diff] [blame] | 1307 | { |
Sascha Hauer | 4a67d39 | 2012-02-06 10:58:17 +0100 | [diff] [blame] | 1308 | int sz; |
Dave Airlie | 445282d | 2009-09-09 17:40:54 +1000 | [diff] [blame] | 1309 | |
| 1310 | if (rdev->is_atom_bios) { |
| 1311 | rdev->mode_info.coherent_mode_property = |
Sascha Hauer | d9bc3c0 | 2012-02-06 10:58:18 +0100 | [diff] [blame] | 1312 | drm_property_create_range(rdev->ddev, 0 , "coherent", 0, 1); |
Dave Airlie | 445282d | 2009-09-09 17:40:54 +1000 | [diff] [blame] | 1313 | if (!rdev->mode_info.coherent_mode_property) |
| 1314 | return -ENOMEM; |
Dave Airlie | 445282d | 2009-09-09 17:40:54 +1000 | [diff] [blame] | 1315 | } |
| 1316 | |
| 1317 | if (!ASIC_IS_AVIVO(rdev)) { |
| 1318 | sz = ARRAY_SIZE(radeon_tmds_pll_enum_list); |
| 1319 | rdev->mode_info.tmds_pll_property = |
Sascha Hauer | 4a67d39 | 2012-02-06 10:58:17 +0100 | [diff] [blame] | 1320 | drm_property_create_enum(rdev->ddev, 0, |
| 1321 | "tmds_pll", |
| 1322 | radeon_tmds_pll_enum_list, sz); |
Dave Airlie | 445282d | 2009-09-09 17:40:54 +1000 | [diff] [blame] | 1323 | } |
| 1324 | |
| 1325 | rdev->mode_info.load_detect_property = |
Sascha Hauer | d9bc3c0 | 2012-02-06 10:58:18 +0100 | [diff] [blame] | 1326 | drm_property_create_range(rdev->ddev, 0, "load detection", 0, 1); |
Dave Airlie | 445282d | 2009-09-09 17:40:54 +1000 | [diff] [blame] | 1327 | if (!rdev->mode_info.load_detect_property) |
| 1328 | return -ENOMEM; |
Dave Airlie | 445282d | 2009-09-09 17:40:54 +1000 | [diff] [blame] | 1329 | |
| 1330 | drm_mode_create_scaling_mode_property(rdev->ddev); |
| 1331 | |
| 1332 | sz = ARRAY_SIZE(radeon_tv_std_enum_list); |
| 1333 | rdev->mode_info.tv_std_property = |
Sascha Hauer | 4a67d39 | 2012-02-06 10:58:17 +0100 | [diff] [blame] | 1334 | drm_property_create_enum(rdev->ddev, 0, |
| 1335 | "tv standard", |
| 1336 | radeon_tv_std_enum_list, sz); |
Dave Airlie | 445282d | 2009-09-09 17:40:54 +1000 | [diff] [blame] | 1337 | |
Alex Deucher | 5b1714d | 2010-08-03 19:59:20 -0400 | [diff] [blame] | 1338 | sz = ARRAY_SIZE(radeon_underscan_enum_list); |
| 1339 | rdev->mode_info.underscan_property = |
Sascha Hauer | 4a67d39 | 2012-02-06 10:58:17 +0100 | [diff] [blame] | 1340 | drm_property_create_enum(rdev->ddev, 0, |
| 1341 | "underscan", |
| 1342 | radeon_underscan_enum_list, sz); |
Alex Deucher | 5b1714d | 2010-08-03 19:59:20 -0400 | [diff] [blame] | 1343 | |
Marius Gröger | 5bccf5e | 2010-09-21 21:30:59 +0200 | [diff] [blame] | 1344 | rdev->mode_info.underscan_hborder_property = |
Sascha Hauer | d9bc3c0 | 2012-02-06 10:58:18 +0100 | [diff] [blame] | 1345 | drm_property_create_range(rdev->ddev, 0, |
| 1346 | "underscan hborder", 0, 128); |
Marius Gröger | 5bccf5e | 2010-09-21 21:30:59 +0200 | [diff] [blame] | 1347 | if (!rdev->mode_info.underscan_hborder_property) |
| 1348 | return -ENOMEM; |
Marius Gröger | 5bccf5e | 2010-09-21 21:30:59 +0200 | [diff] [blame] | 1349 | |
| 1350 | rdev->mode_info.underscan_vborder_property = |
Sascha Hauer | d9bc3c0 | 2012-02-06 10:58:18 +0100 | [diff] [blame] | 1351 | drm_property_create_range(rdev->ddev, 0, |
| 1352 | "underscan vborder", 0, 128); |
Marius Gröger | 5bccf5e | 2010-09-21 21:30:59 +0200 | [diff] [blame] | 1353 | if (!rdev->mode_info.underscan_vborder_property) |
| 1354 | return -ENOMEM; |
Marius Gröger | 5bccf5e | 2010-09-21 21:30:59 +0200 | [diff] [blame] | 1355 | |
Alex Deucher | 8666c07 | 2013-09-03 14:58:44 -0400 | [diff] [blame] | 1356 | sz = ARRAY_SIZE(radeon_audio_enum_list); |
| 1357 | rdev->mode_info.audio_property = |
| 1358 | drm_property_create_enum(rdev->ddev, 0, |
| 1359 | "audio", |
| 1360 | radeon_audio_enum_list, sz); |
| 1361 | |
Alex Deucher | 6214bb7 | 2013-09-24 17:26:26 -0400 | [diff] [blame] | 1362 | sz = ARRAY_SIZE(radeon_dither_enum_list); |
| 1363 | rdev->mode_info.dither_property = |
| 1364 | drm_property_create_enum(rdev->ddev, 0, |
| 1365 | "dither", |
| 1366 | radeon_dither_enum_list, sz); |
| 1367 | |
Dave Airlie | 445282d | 2009-09-09 17:40:54 +1000 | [diff] [blame] | 1368 | return 0; |
| 1369 | } |
| 1370 | |
Alex Deucher | f46c012 | 2010-03-31 00:33:27 -0400 | [diff] [blame] | 1371 | void radeon_update_display_priority(struct radeon_device *rdev) |
| 1372 | { |
| 1373 | /* adjustment options for the display watermarks */ |
| 1374 | if ((radeon_disp_priority == 0) || (radeon_disp_priority > 2)) { |
| 1375 | /* set display priority to high for r3xx, rv515 chips |
| 1376 | * this avoids flickering due to underflow to the |
| 1377 | * display controllers during heavy acceleration. |
Alex Deucher | 4573744 | 2010-05-20 11:26:11 -0400 | [diff] [blame] | 1378 | * Don't force high on rs4xx igp chips as it seems to |
| 1379 | * affect the sound card. See kernel bug 15982. |
Alex Deucher | f46c012 | 2010-03-31 00:33:27 -0400 | [diff] [blame] | 1380 | */ |
Alex Deucher | 4573744 | 2010-05-20 11:26:11 -0400 | [diff] [blame] | 1381 | if ((ASIC_IS_R300(rdev) || (rdev->family == CHIP_RV515)) && |
| 1382 | !(rdev->flags & RADEON_IS_IGP)) |
Alex Deucher | f46c012 | 2010-03-31 00:33:27 -0400 | [diff] [blame] | 1383 | rdev->disp_priority = 2; |
| 1384 | else |
| 1385 | rdev->disp_priority = 0; |
| 1386 | } else |
| 1387 | rdev->disp_priority = radeon_disp_priority; |
| 1388 | |
| 1389 | } |
| 1390 | |
Alex Deucher | 0783986 | 2012-05-14 16:52:29 +0200 | [diff] [blame] | 1391 | /* |
| 1392 | * Allocate hdmi structs and determine register offsets |
| 1393 | */ |
| 1394 | static void radeon_afmt_init(struct radeon_device *rdev) |
| 1395 | { |
| 1396 | int i; |
| 1397 | |
| 1398 | for (i = 0; i < RADEON_MAX_AFMT_BLOCKS; i++) |
| 1399 | rdev->mode_info.afmt[i] = NULL; |
| 1400 | |
Alex Deucher | b530602 | 2013-07-31 16:51:33 -0400 | [diff] [blame] | 1401 | if (ASIC_IS_NODCE(rdev)) { |
| 1402 | /* nothing to do */ |
Alex Deucher | 0783986 | 2012-05-14 16:52:29 +0200 | [diff] [blame] | 1403 | } else if (ASIC_IS_DCE4(rdev)) { |
Rafał Miłecki | a4d39e6 | 2013-08-01 17:29:16 +0200 | [diff] [blame] | 1404 | static uint32_t eg_offsets[] = { |
| 1405 | EVERGREEN_CRTC0_REGISTER_OFFSET, |
| 1406 | EVERGREEN_CRTC1_REGISTER_OFFSET, |
| 1407 | EVERGREEN_CRTC2_REGISTER_OFFSET, |
| 1408 | EVERGREEN_CRTC3_REGISTER_OFFSET, |
| 1409 | EVERGREEN_CRTC4_REGISTER_OFFSET, |
| 1410 | EVERGREEN_CRTC5_REGISTER_OFFSET, |
Alex Deucher | b530602 | 2013-07-31 16:51:33 -0400 | [diff] [blame] | 1411 | 0x13830 - 0x7030, |
Rafał Miłecki | a4d39e6 | 2013-08-01 17:29:16 +0200 | [diff] [blame] | 1412 | }; |
| 1413 | int num_afmt; |
| 1414 | |
Alex Deucher | b530602 | 2013-07-31 16:51:33 -0400 | [diff] [blame] | 1415 | /* DCE8 has 7 audio blocks tied to DIG encoders */ |
| 1416 | /* DCE6 has 6 audio blocks tied to DIG encoders */ |
Alex Deucher | 0783986 | 2012-05-14 16:52:29 +0200 | [diff] [blame] | 1417 | /* DCE4/5 has 6 audio blocks tied to DIG encoders */ |
| 1418 | /* DCE4.1 has 2 audio blocks tied to DIG encoders */ |
Alex Deucher | b530602 | 2013-07-31 16:51:33 -0400 | [diff] [blame] | 1419 | if (ASIC_IS_DCE8(rdev)) |
| 1420 | num_afmt = 7; |
| 1421 | else if (ASIC_IS_DCE6(rdev)) |
| 1422 | num_afmt = 6; |
| 1423 | else if (ASIC_IS_DCE5(rdev)) |
Rafał Miłecki | a4d39e6 | 2013-08-01 17:29:16 +0200 | [diff] [blame] | 1424 | num_afmt = 6; |
| 1425 | else if (ASIC_IS_DCE41(rdev)) |
| 1426 | num_afmt = 2; |
| 1427 | else /* DCE4 */ |
| 1428 | num_afmt = 6; |
| 1429 | |
| 1430 | BUG_ON(num_afmt > ARRAY_SIZE(eg_offsets)); |
| 1431 | for (i = 0; i < num_afmt; i++) { |
| 1432 | rdev->mode_info.afmt[i] = kzalloc(sizeof(struct radeon_afmt), GFP_KERNEL); |
| 1433 | if (rdev->mode_info.afmt[i]) { |
| 1434 | rdev->mode_info.afmt[i]->offset = eg_offsets[i]; |
| 1435 | rdev->mode_info.afmt[i]->id = i; |
Alex Deucher | 0783986 | 2012-05-14 16:52:29 +0200 | [diff] [blame] | 1436 | } |
| 1437 | } |
| 1438 | } else if (ASIC_IS_DCE3(rdev)) { |
| 1439 | /* DCE3.x has 2 audio blocks tied to DIG encoders */ |
| 1440 | rdev->mode_info.afmt[0] = kzalloc(sizeof(struct radeon_afmt), GFP_KERNEL); |
| 1441 | if (rdev->mode_info.afmt[0]) { |
| 1442 | rdev->mode_info.afmt[0]->offset = DCE3_HDMI_OFFSET0; |
| 1443 | rdev->mode_info.afmt[0]->id = 0; |
| 1444 | } |
| 1445 | rdev->mode_info.afmt[1] = kzalloc(sizeof(struct radeon_afmt), GFP_KERNEL); |
| 1446 | if (rdev->mode_info.afmt[1]) { |
| 1447 | rdev->mode_info.afmt[1]->offset = DCE3_HDMI_OFFSET1; |
| 1448 | rdev->mode_info.afmt[1]->id = 1; |
| 1449 | } |
| 1450 | } else if (ASIC_IS_DCE2(rdev)) { |
| 1451 | /* DCE2 has at least 1 routable audio block */ |
| 1452 | rdev->mode_info.afmt[0] = kzalloc(sizeof(struct radeon_afmt), GFP_KERNEL); |
| 1453 | if (rdev->mode_info.afmt[0]) { |
| 1454 | rdev->mode_info.afmt[0]->offset = DCE2_HDMI_OFFSET0; |
| 1455 | rdev->mode_info.afmt[0]->id = 0; |
| 1456 | } |
| 1457 | /* r6xx has 2 routable audio blocks */ |
| 1458 | if (rdev->family >= CHIP_R600) { |
| 1459 | rdev->mode_info.afmt[1] = kzalloc(sizeof(struct radeon_afmt), GFP_KERNEL); |
| 1460 | if (rdev->mode_info.afmt[1]) { |
| 1461 | rdev->mode_info.afmt[1]->offset = DCE2_HDMI_OFFSET1; |
| 1462 | rdev->mode_info.afmt[1]->id = 1; |
| 1463 | } |
| 1464 | } |
| 1465 | } |
| 1466 | } |
| 1467 | |
| 1468 | static void radeon_afmt_fini(struct radeon_device *rdev) |
| 1469 | { |
| 1470 | int i; |
| 1471 | |
| 1472 | for (i = 0; i < RADEON_MAX_AFMT_BLOCKS; i++) { |
| 1473 | kfree(rdev->mode_info.afmt[i]); |
| 1474 | rdev->mode_info.afmt[i] = NULL; |
| 1475 | } |
| 1476 | } |
| 1477 | |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1478 | int radeon_modeset_init(struct radeon_device *rdev) |
| 1479 | { |
Alex Deucher | 18917b6 | 2010-02-01 16:02:25 -0500 | [diff] [blame] | 1480 | int i; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1481 | int ret; |
| 1482 | |
| 1483 | drm_mode_config_init(rdev->ddev); |
| 1484 | rdev->mode_info.mode_config_initialized = true; |
| 1485 | |
Laurent Pinchart | e6ecefa | 2012-05-17 13:27:23 +0200 | [diff] [blame] | 1486 | rdev->ddev->mode_config.funcs = &radeon_mode_funcs; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1487 | |
Alex Deucher | 881dd74 | 2011-01-06 21:19:14 -0500 | [diff] [blame] | 1488 | if (ASIC_IS_DCE5(rdev)) { |
| 1489 | rdev->ddev->mode_config.max_width = 16384; |
| 1490 | rdev->ddev->mode_config.max_height = 16384; |
| 1491 | } else if (ASIC_IS_AVIVO(rdev)) { |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1492 | rdev->ddev->mode_config.max_width = 8192; |
| 1493 | rdev->ddev->mode_config.max_height = 8192; |
| 1494 | } else { |
| 1495 | rdev->ddev->mode_config.max_width = 4096; |
| 1496 | rdev->ddev->mode_config.max_height = 4096; |
| 1497 | } |
| 1498 | |
Dave Airlie | 019d96c | 2011-09-29 16:20:42 +0100 | [diff] [blame] | 1499 | rdev->ddev->mode_config.preferred_depth = 24; |
| 1500 | rdev->ddev->mode_config.prefer_shadow = 1; |
| 1501 | |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1502 | rdev->ddev->mode_config.fb_base = rdev->mc.aper_base; |
| 1503 | |
Dave Airlie | 445282d | 2009-09-09 17:40:54 +1000 | [diff] [blame] | 1504 | ret = radeon_modeset_create_props(rdev); |
| 1505 | if (ret) { |
| 1506 | return ret; |
| 1507 | } |
Dave Airlie | dfee561 | 2009-10-02 09:19:09 +1000 | [diff] [blame] | 1508 | |
Alex Deucher | f376b94 | 2010-08-05 21:21:16 -0400 | [diff] [blame] | 1509 | /* init i2c buses */ |
| 1510 | radeon_i2c_init(rdev); |
| 1511 | |
Alex Deucher | 3c53788 | 2010-02-05 04:21:19 -0500 | [diff] [blame] | 1512 | /* check combios for a valid hardcoded EDID - Sun servers */ |
| 1513 | if (!rdev->is_atom_bios) { |
| 1514 | /* check for hardcoded EDID in BIOS */ |
| 1515 | radeon_combios_check_hardcoded_edid(rdev); |
| 1516 | } |
| 1517 | |
Dave Airlie | dfee561 | 2009-10-02 09:19:09 +1000 | [diff] [blame] | 1518 | /* allocate crtcs */ |
Alex Deucher | 18917b6 | 2010-02-01 16:02:25 -0500 | [diff] [blame] | 1519 | for (i = 0; i < rdev->num_crtc; i++) { |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1520 | radeon_crtc_init(rdev->ddev, i); |
| 1521 | } |
| 1522 | |
| 1523 | /* okay we should have all the bios connectors */ |
| 1524 | ret = radeon_setup_enc_conn(rdev->ddev); |
| 1525 | if (!ret) { |
| 1526 | return ret; |
| 1527 | } |
Alex Deucher | ac89af1 | 2011-05-22 13:20:36 -0400 | [diff] [blame] | 1528 | |
Alex Deucher | 3fa47d9 | 2012-01-20 14:56:39 -0500 | [diff] [blame] | 1529 | /* init dig PHYs, disp eng pll */ |
| 1530 | if (rdev->is_atom_bios) { |
Alex Deucher | ac89af1 | 2011-05-22 13:20:36 -0400 | [diff] [blame] | 1531 | radeon_atom_encoder_init(rdev); |
Alex Deucher | f3f1f03 | 2012-03-20 17:18:04 -0400 | [diff] [blame] | 1532 | radeon_atom_disp_eng_pll_init(rdev); |
Alex Deucher | 3fa47d9 | 2012-01-20 14:56:39 -0500 | [diff] [blame] | 1533 | } |
Alex Deucher | ac89af1 | 2011-05-22 13:20:36 -0400 | [diff] [blame] | 1534 | |
Alex Deucher | d4877cf | 2009-12-04 16:56:37 -0500 | [diff] [blame] | 1535 | /* initialize hpd */ |
| 1536 | radeon_hpd_init(rdev); |
Dave Airlie | 3865167 | 2010-03-30 05:34:13 +0000 | [diff] [blame] | 1537 | |
Alex Deucher | 0783986 | 2012-05-14 16:52:29 +0200 | [diff] [blame] | 1538 | /* setup afmt */ |
| 1539 | radeon_afmt_init(rdev); |
| 1540 | |
Dave Airlie | 3865167 | 2010-03-30 05:34:13 +0000 | [diff] [blame] | 1541 | radeon_fbdev_init(rdev); |
Dave Airlie | eb1f8e4 | 2010-05-07 06:42:51 +0000 | [diff] [blame] | 1542 | drm_kms_helper_poll_init(rdev->ddev); |
| 1543 | |
Alex Deucher | 6c7bcce | 2013-12-18 14:07:14 -0500 | [diff] [blame] | 1544 | if (rdev->pm.dpm_enabled) { |
| 1545 | /* do dpm late init */ |
| 1546 | ret = radeon_pm_late_init(rdev); |
| 1547 | if (ret) { |
| 1548 | rdev->pm.dpm_enabled = false; |
| 1549 | DRM_ERROR("radeon_pm_late_init failed, disabling dpm\n"); |
| 1550 | } |
| 1551 | /* set the dpm state for PX since there won't be |
| 1552 | * a modeset to call this. |
| 1553 | */ |
| 1554 | radeon_pm_compute_clocks(rdev); |
| 1555 | } |
| 1556 | |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1557 | return 0; |
| 1558 | } |
| 1559 | |
| 1560 | void radeon_modeset_fini(struct radeon_device *rdev) |
| 1561 | { |
Dave Airlie | 3865167 | 2010-03-30 05:34:13 +0000 | [diff] [blame] | 1562 | radeon_fbdev_fini(rdev); |
Alex Deucher | 3c53788 | 2010-02-05 04:21:19 -0500 | [diff] [blame] | 1563 | kfree(rdev->mode_info.bios_hardcoded_edid); |
| 1564 | |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1565 | if (rdev->mode_info.mode_config_initialized) { |
Alex Deucher | 0783986 | 2012-05-14 16:52:29 +0200 | [diff] [blame] | 1566 | radeon_afmt_fini(rdev); |
Dave Airlie | eb1f8e4 | 2010-05-07 06:42:51 +0000 | [diff] [blame] | 1567 | drm_kms_helper_poll_fini(rdev->ddev); |
Alex Deucher | d4877cf | 2009-12-04 16:56:37 -0500 | [diff] [blame] | 1568 | radeon_hpd_fini(rdev); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1569 | drm_mode_config_cleanup(rdev->ddev); |
| 1570 | rdev->mode_info.mode_config_initialized = false; |
| 1571 | } |
Alex Deucher | f376b94 | 2010-08-05 21:21:16 -0400 | [diff] [blame] | 1572 | /* free i2c buses */ |
| 1573 | radeon_i2c_fini(rdev); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1574 | } |
| 1575 | |
Laurent Pinchart | e811f5a | 2012-07-17 17:56:50 +0200 | [diff] [blame] | 1576 | static bool is_hdtv_mode(const struct drm_display_mode *mode) |
Alex Deucher | 039ed2d | 2010-08-20 11:57:19 -0400 | [diff] [blame] | 1577 | { |
| 1578 | /* try and guess if this is a tv or a monitor */ |
| 1579 | if ((mode->vdisplay == 480 && mode->hdisplay == 720) || /* 480p */ |
| 1580 | (mode->vdisplay == 576) || /* 576p */ |
| 1581 | (mode->vdisplay == 720) || /* 720p */ |
| 1582 | (mode->vdisplay == 1080)) /* 1080p */ |
| 1583 | return true; |
| 1584 | else |
| 1585 | return false; |
| 1586 | } |
| 1587 | |
Jerome Glisse | c93bb85 | 2009-07-13 21:04:08 +0200 | [diff] [blame] | 1588 | bool radeon_crtc_scaling_mode_fixup(struct drm_crtc *crtc, |
Laurent Pinchart | e811f5a | 2012-07-17 17:56:50 +0200 | [diff] [blame] | 1589 | const struct drm_display_mode *mode, |
Jerome Glisse | c93bb85 | 2009-07-13 21:04:08 +0200 | [diff] [blame] | 1590 | struct drm_display_mode *adjusted_mode) |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1591 | { |
Jerome Glisse | c93bb85 | 2009-07-13 21:04:08 +0200 | [diff] [blame] | 1592 | struct drm_device *dev = crtc->dev; |
Alex Deucher | 5b1714d | 2010-08-03 19:59:20 -0400 | [diff] [blame] | 1593 | struct radeon_device *rdev = dev->dev_private; |
Jerome Glisse | c93bb85 | 2009-07-13 21:04:08 +0200 | [diff] [blame] | 1594 | struct drm_encoder *encoder; |
| 1595 | struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc); |
| 1596 | struct radeon_encoder *radeon_encoder; |
Alex Deucher | 5b1714d | 2010-08-03 19:59:20 -0400 | [diff] [blame] | 1597 | struct drm_connector *connector; |
| 1598 | struct radeon_connector *radeon_connector; |
Jerome Glisse | c93bb85 | 2009-07-13 21:04:08 +0200 | [diff] [blame] | 1599 | bool first = true; |
Alex Deucher | d65d65b | 2010-08-03 19:58:49 -0400 | [diff] [blame] | 1600 | u32 src_v = 1, dst_v = 1; |
| 1601 | u32 src_h = 1, dst_h = 1; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1602 | |
Alex Deucher | 5b1714d | 2010-08-03 19:59:20 -0400 | [diff] [blame] | 1603 | radeon_crtc->h_border = 0; |
| 1604 | radeon_crtc->v_border = 0; |
| 1605 | |
Jerome Glisse | c93bb85 | 2009-07-13 21:04:08 +0200 | [diff] [blame] | 1606 | list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) { |
Jerome Glisse | c93bb85 | 2009-07-13 21:04:08 +0200 | [diff] [blame] | 1607 | if (encoder->crtc != crtc) |
| 1608 | continue; |
Alex Deucher | d65d65b | 2010-08-03 19:58:49 -0400 | [diff] [blame] | 1609 | radeon_encoder = to_radeon_encoder(encoder); |
Alex Deucher | 5b1714d | 2010-08-03 19:59:20 -0400 | [diff] [blame] | 1610 | connector = radeon_get_connector_for_encoder(encoder); |
| 1611 | radeon_connector = to_radeon_connector(connector); |
| 1612 | |
Jerome Glisse | c93bb85 | 2009-07-13 21:04:08 +0200 | [diff] [blame] | 1613 | if (first) { |
Alex Deucher | 80297e8 | 2009-11-12 14:55:14 -0500 | [diff] [blame] | 1614 | /* set scaling */ |
| 1615 | if (radeon_encoder->rmx_type == RMX_OFF) |
| 1616 | radeon_crtc->rmx_type = RMX_OFF; |
| 1617 | else if (mode->hdisplay < radeon_encoder->native_mode.hdisplay || |
| 1618 | mode->vdisplay < radeon_encoder->native_mode.vdisplay) |
| 1619 | radeon_crtc->rmx_type = radeon_encoder->rmx_type; |
| 1620 | else |
| 1621 | radeon_crtc->rmx_type = RMX_OFF; |
| 1622 | /* copy native mode */ |
Jerome Glisse | c93bb85 | 2009-07-13 21:04:08 +0200 | [diff] [blame] | 1623 | memcpy(&radeon_crtc->native_mode, |
Alex Deucher | 80297e8 | 2009-11-12 14:55:14 -0500 | [diff] [blame] | 1624 | &radeon_encoder->native_mode, |
Alex Deucher | de2103e | 2009-10-09 15:14:30 -0400 | [diff] [blame] | 1625 | sizeof(struct drm_display_mode)); |
Alex Deucher | ff32a59 | 2010-09-07 13:26:39 -0400 | [diff] [blame] | 1626 | src_v = crtc->mode.vdisplay; |
| 1627 | dst_v = radeon_crtc->native_mode.vdisplay; |
| 1628 | src_h = crtc->mode.hdisplay; |
| 1629 | dst_h = radeon_crtc->native_mode.hdisplay; |
Alex Deucher | 5b1714d | 2010-08-03 19:59:20 -0400 | [diff] [blame] | 1630 | |
| 1631 | /* fix up for overscan on hdmi */ |
| 1632 | if (ASIC_IS_AVIVO(rdev) && |
Alex Deucher | e6db0da | 2010-09-10 03:19:05 -0400 | [diff] [blame] | 1633 | (!(mode->flags & DRM_MODE_FLAG_INTERLACE)) && |
Alex Deucher | 5b1714d | 2010-08-03 19:59:20 -0400 | [diff] [blame] | 1634 | ((radeon_encoder->underscan_type == UNDERSCAN_ON) || |
| 1635 | ((radeon_encoder->underscan_type == UNDERSCAN_AUTO) && |
Alex Deucher | 039ed2d | 2010-08-20 11:57:19 -0400 | [diff] [blame] | 1636 | drm_detect_hdmi_monitor(radeon_connector->edid) && |
| 1637 | is_hdtv_mode(mode)))) { |
Marius Gröger | 5bccf5e | 2010-09-21 21:30:59 +0200 | [diff] [blame] | 1638 | if (radeon_encoder->underscan_hborder != 0) |
| 1639 | radeon_crtc->h_border = radeon_encoder->underscan_hborder; |
| 1640 | else |
| 1641 | radeon_crtc->h_border = (mode->hdisplay >> 5) + 16; |
| 1642 | if (radeon_encoder->underscan_vborder != 0) |
| 1643 | radeon_crtc->v_border = radeon_encoder->underscan_vborder; |
| 1644 | else |
| 1645 | radeon_crtc->v_border = (mode->vdisplay >> 5) + 16; |
Alex Deucher | 5b1714d | 2010-08-03 19:59:20 -0400 | [diff] [blame] | 1646 | radeon_crtc->rmx_type = RMX_FULL; |
| 1647 | src_v = crtc->mode.vdisplay; |
| 1648 | dst_v = crtc->mode.vdisplay - (radeon_crtc->v_border * 2); |
| 1649 | src_h = crtc->mode.hdisplay; |
| 1650 | dst_h = crtc->mode.hdisplay - (radeon_crtc->h_border * 2); |
| 1651 | } |
Jerome Glisse | c93bb85 | 2009-07-13 21:04:08 +0200 | [diff] [blame] | 1652 | first = false; |
| 1653 | } else { |
| 1654 | if (radeon_crtc->rmx_type != radeon_encoder->rmx_type) { |
| 1655 | /* WARNING: Right now this can't happen but |
| 1656 | * in the future we need to check that scaling |
Alex Deucher | d65d65b | 2010-08-03 19:58:49 -0400 | [diff] [blame] | 1657 | * are consistent across different encoder |
Jerome Glisse | c93bb85 | 2009-07-13 21:04:08 +0200 | [diff] [blame] | 1658 | * (ie all encoder can work with the same |
| 1659 | * scaling). |
| 1660 | */ |
Alex Deucher | d65d65b | 2010-08-03 19:58:49 -0400 | [diff] [blame] | 1661 | DRM_ERROR("Scaling not consistent across encoder.\n"); |
Jerome Glisse | c93bb85 | 2009-07-13 21:04:08 +0200 | [diff] [blame] | 1662 | return false; |
| 1663 | } |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1664 | } |
| 1665 | } |
Jerome Glisse | c93bb85 | 2009-07-13 21:04:08 +0200 | [diff] [blame] | 1666 | if (radeon_crtc->rmx_type != RMX_OFF) { |
| 1667 | fixed20_12 a, b; |
Alex Deucher | d65d65b | 2010-08-03 19:58:49 -0400 | [diff] [blame] | 1668 | a.full = dfixed_const(src_v); |
| 1669 | b.full = dfixed_const(dst_v); |
Ben Skeggs | 68adac5 | 2010-04-28 11:46:42 +1000 | [diff] [blame] | 1670 | radeon_crtc->vsc.full = dfixed_div(a, b); |
Alex Deucher | d65d65b | 2010-08-03 19:58:49 -0400 | [diff] [blame] | 1671 | a.full = dfixed_const(src_h); |
| 1672 | b.full = dfixed_const(dst_h); |
Ben Skeggs | 68adac5 | 2010-04-28 11:46:42 +1000 | [diff] [blame] | 1673 | radeon_crtc->hsc.full = dfixed_div(a, b); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1674 | } else { |
Ben Skeggs | 68adac5 | 2010-04-28 11:46:42 +1000 | [diff] [blame] | 1675 | radeon_crtc->vsc.full = dfixed_const(1); |
| 1676 | radeon_crtc->hsc.full = dfixed_const(1); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1677 | } |
Jerome Glisse | c93bb85 | 2009-07-13 21:04:08 +0200 | [diff] [blame] | 1678 | return true; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1679 | } |
Mario Kleiner | 6383cf7 | 2010-10-05 19:57:36 -0400 | [diff] [blame] | 1680 | |
| 1681 | /* |
Mario Kleiner | d47abc5 | 2013-10-30 05:13:07 +0100 | [diff] [blame] | 1682 | * Retrieve current video scanout position of crtc on a given gpu, and |
| 1683 | * an optional accurate timestamp of when query happened. |
Mario Kleiner | 6383cf7 | 2010-10-05 19:57:36 -0400 | [diff] [blame] | 1684 | * |
Mario Kleiner | f5a8020 | 2010-10-23 04:42:17 +0200 | [diff] [blame] | 1685 | * \param dev Device to query. |
Mario Kleiner | 6383cf7 | 2010-10-05 19:57:36 -0400 | [diff] [blame] | 1686 | * \param crtc Crtc to query. |
Ville Syrjälä | abca9e4 | 2013-10-28 20:50:48 +0200 | [diff] [blame] | 1687 | * \param flags Flags from caller (DRM_CALLED_FROM_VBLIRQ or 0). |
Mario Kleiner | 6383cf7 | 2010-10-05 19:57:36 -0400 | [diff] [blame] | 1688 | * \param *vpos Location where vertical scanout position should be stored. |
| 1689 | * \param *hpos Location where horizontal scanout position should go. |
Mario Kleiner | d47abc5 | 2013-10-30 05:13:07 +0100 | [diff] [blame] | 1690 | * \param *stime Target location for timestamp taken immediately before |
| 1691 | * scanout position query. Can be NULL to skip timestamp. |
| 1692 | * \param *etime Target location for timestamp taken immediately after |
| 1693 | * scanout position query. Can be NULL to skip timestamp. |
Mario Kleiner | 6383cf7 | 2010-10-05 19:57:36 -0400 | [diff] [blame] | 1694 | * |
| 1695 | * Returns vpos as a positive number while in active scanout area. |
| 1696 | * Returns vpos as a negative number inside vblank, counting the number |
| 1697 | * of scanlines to go until end of vblank, e.g., -1 means "one scanline |
| 1698 | * until start of active scanout / end of vblank." |
| 1699 | * |
| 1700 | * \return Flags, or'ed together as follows: |
| 1701 | * |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 1702 | * DRM_SCANOUTPOS_VALID = Query successful. |
Mario Kleiner | f5a8020 | 2010-10-23 04:42:17 +0200 | [diff] [blame] | 1703 | * DRM_SCANOUTPOS_INVBL = Inside vblank. |
| 1704 | * DRM_SCANOUTPOS_ACCURATE = Returned position is accurate. A lack of |
Mario Kleiner | 6383cf7 | 2010-10-05 19:57:36 -0400 | [diff] [blame] | 1705 | * this flag means that returned position may be offset by a constant but |
| 1706 | * unknown small number of scanlines wrt. real scanout position. |
| 1707 | * |
| 1708 | */ |
Ville Syrjälä | abca9e4 | 2013-10-28 20:50:48 +0200 | [diff] [blame] | 1709 | int radeon_get_crtc_scanoutpos(struct drm_device *dev, int crtc, unsigned int flags, |
| 1710 | int *vpos, int *hpos, ktime_t *stime, ktime_t *etime) |
Mario Kleiner | 6383cf7 | 2010-10-05 19:57:36 -0400 | [diff] [blame] | 1711 | { |
| 1712 | u32 stat_crtc = 0, vbl = 0, position = 0; |
| 1713 | int vbl_start, vbl_end, vtotal, ret = 0; |
| 1714 | bool in_vbl = true; |
| 1715 | |
Mario Kleiner | f5a8020 | 2010-10-23 04:42:17 +0200 | [diff] [blame] | 1716 | struct radeon_device *rdev = dev->dev_private; |
| 1717 | |
Mario Kleiner | d47abc5 | 2013-10-30 05:13:07 +0100 | [diff] [blame] | 1718 | /* preempt_disable_rt() should go right here in PREEMPT_RT patchset. */ |
| 1719 | |
| 1720 | /* Get optional system timestamp before query. */ |
| 1721 | if (stime) |
| 1722 | *stime = ktime_get(); |
| 1723 | |
Mario Kleiner | 6383cf7 | 2010-10-05 19:57:36 -0400 | [diff] [blame] | 1724 | if (ASIC_IS_DCE4(rdev)) { |
| 1725 | if (crtc == 0) { |
| 1726 | vbl = RREG32(EVERGREEN_CRTC_V_BLANK_START_END + |
| 1727 | EVERGREEN_CRTC0_REGISTER_OFFSET); |
| 1728 | position = RREG32(EVERGREEN_CRTC_STATUS_POSITION + |
| 1729 | EVERGREEN_CRTC0_REGISTER_OFFSET); |
Mario Kleiner | f5a8020 | 2010-10-23 04:42:17 +0200 | [diff] [blame] | 1730 | ret |= DRM_SCANOUTPOS_VALID; |
Mario Kleiner | 6383cf7 | 2010-10-05 19:57:36 -0400 | [diff] [blame] | 1731 | } |
| 1732 | if (crtc == 1) { |
| 1733 | vbl = RREG32(EVERGREEN_CRTC_V_BLANK_START_END + |
| 1734 | EVERGREEN_CRTC1_REGISTER_OFFSET); |
| 1735 | position = RREG32(EVERGREEN_CRTC_STATUS_POSITION + |
| 1736 | EVERGREEN_CRTC1_REGISTER_OFFSET); |
Mario Kleiner | f5a8020 | 2010-10-23 04:42:17 +0200 | [diff] [blame] | 1737 | ret |= DRM_SCANOUTPOS_VALID; |
Mario Kleiner | 6383cf7 | 2010-10-05 19:57:36 -0400 | [diff] [blame] | 1738 | } |
| 1739 | if (crtc == 2) { |
| 1740 | vbl = RREG32(EVERGREEN_CRTC_V_BLANK_START_END + |
| 1741 | EVERGREEN_CRTC2_REGISTER_OFFSET); |
| 1742 | position = RREG32(EVERGREEN_CRTC_STATUS_POSITION + |
| 1743 | EVERGREEN_CRTC2_REGISTER_OFFSET); |
Mario Kleiner | f5a8020 | 2010-10-23 04:42:17 +0200 | [diff] [blame] | 1744 | ret |= DRM_SCANOUTPOS_VALID; |
Mario Kleiner | 6383cf7 | 2010-10-05 19:57:36 -0400 | [diff] [blame] | 1745 | } |
| 1746 | if (crtc == 3) { |
| 1747 | vbl = RREG32(EVERGREEN_CRTC_V_BLANK_START_END + |
| 1748 | EVERGREEN_CRTC3_REGISTER_OFFSET); |
| 1749 | position = RREG32(EVERGREEN_CRTC_STATUS_POSITION + |
| 1750 | EVERGREEN_CRTC3_REGISTER_OFFSET); |
Mario Kleiner | f5a8020 | 2010-10-23 04:42:17 +0200 | [diff] [blame] | 1751 | ret |= DRM_SCANOUTPOS_VALID; |
Mario Kleiner | 6383cf7 | 2010-10-05 19:57:36 -0400 | [diff] [blame] | 1752 | } |
| 1753 | if (crtc == 4) { |
| 1754 | vbl = RREG32(EVERGREEN_CRTC_V_BLANK_START_END + |
| 1755 | EVERGREEN_CRTC4_REGISTER_OFFSET); |
| 1756 | position = RREG32(EVERGREEN_CRTC_STATUS_POSITION + |
| 1757 | EVERGREEN_CRTC4_REGISTER_OFFSET); |
Mario Kleiner | f5a8020 | 2010-10-23 04:42:17 +0200 | [diff] [blame] | 1758 | ret |= DRM_SCANOUTPOS_VALID; |
Mario Kleiner | 6383cf7 | 2010-10-05 19:57:36 -0400 | [diff] [blame] | 1759 | } |
| 1760 | if (crtc == 5) { |
| 1761 | vbl = RREG32(EVERGREEN_CRTC_V_BLANK_START_END + |
| 1762 | EVERGREEN_CRTC5_REGISTER_OFFSET); |
| 1763 | position = RREG32(EVERGREEN_CRTC_STATUS_POSITION + |
| 1764 | EVERGREEN_CRTC5_REGISTER_OFFSET); |
Mario Kleiner | f5a8020 | 2010-10-23 04:42:17 +0200 | [diff] [blame] | 1765 | ret |= DRM_SCANOUTPOS_VALID; |
Mario Kleiner | 6383cf7 | 2010-10-05 19:57:36 -0400 | [diff] [blame] | 1766 | } |
| 1767 | } else if (ASIC_IS_AVIVO(rdev)) { |
| 1768 | if (crtc == 0) { |
| 1769 | vbl = RREG32(AVIVO_D1CRTC_V_BLANK_START_END); |
| 1770 | position = RREG32(AVIVO_D1CRTC_STATUS_POSITION); |
Mario Kleiner | f5a8020 | 2010-10-23 04:42:17 +0200 | [diff] [blame] | 1771 | ret |= DRM_SCANOUTPOS_VALID; |
Mario Kleiner | 6383cf7 | 2010-10-05 19:57:36 -0400 | [diff] [blame] | 1772 | } |
| 1773 | if (crtc == 1) { |
| 1774 | vbl = RREG32(AVIVO_D2CRTC_V_BLANK_START_END); |
| 1775 | position = RREG32(AVIVO_D2CRTC_STATUS_POSITION); |
Mario Kleiner | f5a8020 | 2010-10-23 04:42:17 +0200 | [diff] [blame] | 1776 | ret |= DRM_SCANOUTPOS_VALID; |
Mario Kleiner | 6383cf7 | 2010-10-05 19:57:36 -0400 | [diff] [blame] | 1777 | } |
| 1778 | } else { |
| 1779 | /* Pre-AVIVO: Different encoding of scanout pos and vblank interval. */ |
| 1780 | if (crtc == 0) { |
| 1781 | /* Assume vbl_end == 0, get vbl_start from |
| 1782 | * upper 16 bits. |
| 1783 | */ |
| 1784 | vbl = (RREG32(RADEON_CRTC_V_TOTAL_DISP) & |
| 1785 | RADEON_CRTC_V_DISP) >> RADEON_CRTC_V_DISP_SHIFT; |
| 1786 | /* Only retrieve vpos from upper 16 bits, set hpos == 0. */ |
| 1787 | position = (RREG32(RADEON_CRTC_VLINE_CRNT_VLINE) >> 16) & RADEON_CRTC_V_TOTAL; |
| 1788 | stat_crtc = RREG32(RADEON_CRTC_STATUS); |
| 1789 | if (!(stat_crtc & 1)) |
| 1790 | in_vbl = false; |
| 1791 | |
Mario Kleiner | f5a8020 | 2010-10-23 04:42:17 +0200 | [diff] [blame] | 1792 | ret |= DRM_SCANOUTPOS_VALID; |
Mario Kleiner | 6383cf7 | 2010-10-05 19:57:36 -0400 | [diff] [blame] | 1793 | } |
| 1794 | if (crtc == 1) { |
| 1795 | vbl = (RREG32(RADEON_CRTC2_V_TOTAL_DISP) & |
| 1796 | RADEON_CRTC_V_DISP) >> RADEON_CRTC_V_DISP_SHIFT; |
| 1797 | position = (RREG32(RADEON_CRTC2_VLINE_CRNT_VLINE) >> 16) & RADEON_CRTC_V_TOTAL; |
| 1798 | stat_crtc = RREG32(RADEON_CRTC2_STATUS); |
| 1799 | if (!(stat_crtc & 1)) |
| 1800 | in_vbl = false; |
| 1801 | |
Mario Kleiner | f5a8020 | 2010-10-23 04:42:17 +0200 | [diff] [blame] | 1802 | ret |= DRM_SCANOUTPOS_VALID; |
Mario Kleiner | 6383cf7 | 2010-10-05 19:57:36 -0400 | [diff] [blame] | 1803 | } |
| 1804 | } |
| 1805 | |
Mario Kleiner | d47abc5 | 2013-10-30 05:13:07 +0100 | [diff] [blame] | 1806 | /* Get optional system timestamp after query. */ |
| 1807 | if (etime) |
| 1808 | *etime = ktime_get(); |
| 1809 | |
| 1810 | /* preempt_enable_rt() should go right here in PREEMPT_RT patchset. */ |
| 1811 | |
Mario Kleiner | 6383cf7 | 2010-10-05 19:57:36 -0400 | [diff] [blame] | 1812 | /* Decode into vertical and horizontal scanout position. */ |
| 1813 | *vpos = position & 0x1fff; |
| 1814 | *hpos = (position >> 16) & 0x1fff; |
| 1815 | |
| 1816 | /* Valid vblank area boundaries from gpu retrieved? */ |
| 1817 | if (vbl > 0) { |
| 1818 | /* Yes: Decode. */ |
Mario Kleiner | f5a8020 | 2010-10-23 04:42:17 +0200 | [diff] [blame] | 1819 | ret |= DRM_SCANOUTPOS_ACCURATE; |
Mario Kleiner | 6383cf7 | 2010-10-05 19:57:36 -0400 | [diff] [blame] | 1820 | vbl_start = vbl & 0x1fff; |
| 1821 | vbl_end = (vbl >> 16) & 0x1fff; |
| 1822 | } |
| 1823 | else { |
| 1824 | /* No: Fake something reasonable which gives at least ok results. */ |
Mario Kleiner | f5a8020 | 2010-10-23 04:42:17 +0200 | [diff] [blame] | 1825 | vbl_start = rdev->mode_info.crtcs[crtc]->base.hwmode.crtc_vdisplay; |
Mario Kleiner | 6383cf7 | 2010-10-05 19:57:36 -0400 | [diff] [blame] | 1826 | vbl_end = 0; |
| 1827 | } |
| 1828 | |
| 1829 | /* Test scanout position against vblank region. */ |
| 1830 | if ((*vpos < vbl_start) && (*vpos >= vbl_end)) |
| 1831 | in_vbl = false; |
| 1832 | |
| 1833 | /* Check if inside vblank area and apply corrective offsets: |
| 1834 | * vpos will then be >=0 in video scanout area, but negative |
| 1835 | * within vblank area, counting down the number of lines until |
| 1836 | * start of scanout. |
| 1837 | */ |
| 1838 | |
| 1839 | /* Inside "upper part" of vblank area? Apply corrective offset if so: */ |
| 1840 | if (in_vbl && (*vpos >= vbl_start)) { |
Mario Kleiner | f5a8020 | 2010-10-23 04:42:17 +0200 | [diff] [blame] | 1841 | vtotal = rdev->mode_info.crtcs[crtc]->base.hwmode.crtc_vtotal; |
Mario Kleiner | 6383cf7 | 2010-10-05 19:57:36 -0400 | [diff] [blame] | 1842 | *vpos = *vpos - vtotal; |
| 1843 | } |
| 1844 | |
| 1845 | /* Correct for shifted end of vbl at vbl_end. */ |
| 1846 | *vpos = *vpos - vbl_end; |
| 1847 | |
| 1848 | /* In vblank? */ |
| 1849 | if (in_vbl) |
Mario Kleiner | f5a8020 | 2010-10-23 04:42:17 +0200 | [diff] [blame] | 1850 | ret |= DRM_SCANOUTPOS_INVBL; |
Mario Kleiner | 6383cf7 | 2010-10-05 19:57:36 -0400 | [diff] [blame] | 1851 | |
Ville Syrjälä | 8072bfa | 2013-10-28 21:22:52 +0200 | [diff] [blame] | 1852 | /* Is vpos outside nominal vblank area, but less than |
| 1853 | * 1/100 of a frame height away from start of vblank? |
| 1854 | * If so, assume this isn't a massively delayed vblank |
| 1855 | * interrupt, but a vblank interrupt that fired a few |
| 1856 | * microseconds before true start of vblank. Compensate |
| 1857 | * by adding a full frame duration to the final timestamp. |
| 1858 | * Happens, e.g., on ATI R500, R600. |
| 1859 | * |
| 1860 | * We only do this if DRM_CALLED_FROM_VBLIRQ. |
| 1861 | */ |
| 1862 | if ((flags & DRM_CALLED_FROM_VBLIRQ) && !in_vbl) { |
| 1863 | vbl_start = rdev->mode_info.crtcs[crtc]->base.hwmode.crtc_vdisplay; |
| 1864 | vtotal = rdev->mode_info.crtcs[crtc]->base.hwmode.crtc_vtotal; |
| 1865 | |
| 1866 | if (vbl_start - *vpos < vtotal / 100) { |
| 1867 | *vpos -= vtotal; |
| 1868 | |
| 1869 | /* Signal this correction as "applied". */ |
| 1870 | ret |= 0x8; |
| 1871 | } |
| 1872 | } |
| 1873 | |
Mario Kleiner | 6383cf7 | 2010-10-05 19:57:36 -0400 | [diff] [blame] | 1874 | return ret; |
| 1875 | } |