Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright © 2006-2007 Intel Corporation |
| 3 | * |
| 4 | * Permission is hereby granted, free of charge, to any person obtaining a |
| 5 | * copy of this software and associated documentation files (the "Software"), |
| 6 | * to deal in the Software without restriction, including without limitation |
| 7 | * the rights to use, copy, modify, merge, publish, distribute, sublicense, |
| 8 | * and/or sell copies of the Software, and to permit persons to whom the |
| 9 | * Software is furnished to do so, subject to the following conditions: |
| 10 | * |
| 11 | * The above copyright notice and this permission notice (including the next |
| 12 | * paragraph) shall be included in all copies or substantial portions of the |
| 13 | * 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 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| 19 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING |
| 20 | * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
| 21 | * DEALINGS IN THE SOFTWARE. |
| 22 | * |
| 23 | * Authors: |
| 24 | * Eric Anholt <eric@anholt.net> |
| 25 | */ |
| 26 | |
Daniel Vetter | 618563e | 2012-04-01 13:38:50 +0200 | [diff] [blame] | 27 | #include <linux/dmi.h> |
Jesse Barnes | c1c7af6 | 2009-09-10 15:28:03 -0700 | [diff] [blame] | 28 | #include <linux/module.h> |
| 29 | #include <linux/input.h> |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 30 | #include <linux/i2c.h> |
Shaohua Li | 7662c8b | 2009-06-26 11:23:55 +0800 | [diff] [blame] | 31 | #include <linux/kernel.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 32 | #include <linux/slab.h> |
Jesse Barnes | 9cce37f | 2010-08-13 15:11:26 -0700 | [diff] [blame] | 33 | #include <linux/vgaarb.h> |
Wu Fengguang | e0dac65 | 2011-09-05 14:25:34 +0800 | [diff] [blame] | 34 | #include <drm/drm_edid.h> |
David Howells | 760285e | 2012-10-02 18:01:07 +0100 | [diff] [blame] | 35 | #include <drm/drmP.h> |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 36 | #include "intel_drv.h" |
David Howells | 760285e | 2012-10-02 18:01:07 +0100 | [diff] [blame] | 37 | #include <drm/i915_drm.h> |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 38 | #include "i915_drv.h" |
Jesse Barnes | e5510fa | 2010-07-01 16:48:37 -0700 | [diff] [blame] | 39 | #include "i915_trace.h" |
David Howells | 760285e | 2012-10-02 18:01:07 +0100 | [diff] [blame] | 40 | #include <drm/drm_dp_helper.h> |
| 41 | #include <drm/drm_crtc_helper.h> |
Keith Packard | c0f372b3 | 2011-11-16 22:24:52 -0800 | [diff] [blame] | 42 | #include <linux/dma_remapping.h> |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 43 | |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 44 | bool intel_pipe_has_type(struct drm_crtc *crtc, int type); |
Daniel Vetter | 3dec009 | 2010-08-20 21:40:52 +0200 | [diff] [blame] | 45 | static void intel_increase_pllclock(struct drm_crtc *crtc); |
Chris Wilson | 6b383a7 | 2010-09-13 13:54:26 +0100 | [diff] [blame] | 46 | static void intel_crtc_update_cursor(struct drm_crtc *crtc, bool on); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 47 | |
| 48 | typedef struct { |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 49 | int min, max; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 50 | } intel_range_t; |
| 51 | |
| 52 | typedef struct { |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 53 | int dot_limit; |
| 54 | int p2_slow, p2_fast; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 55 | } intel_p2_t; |
| 56 | |
| 57 | #define INTEL_P2_NUM 2 |
Ma Ling | d490609 | 2009-03-18 20:13:27 +0800 | [diff] [blame] | 58 | typedef struct intel_limit intel_limit_t; |
| 59 | struct intel_limit { |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 60 | intel_range_t dot, vco, n, m, m1, m2, p, p1; |
| 61 | intel_p2_t p2; |
Ville Syrjälä | f4808ab | 2013-02-28 19:19:44 +0200 | [diff] [blame] | 62 | /** |
| 63 | * find_pll() - Find the best values for the PLL |
| 64 | * @limit: limits for the PLL |
| 65 | * @crtc: current CRTC |
| 66 | * @target: target frequency in kHz |
| 67 | * @refclk: reference clock frequency in kHz |
| 68 | * @match_clock: if provided, @best_clock P divider must |
| 69 | * match the P divider from @match_clock |
| 70 | * used for LVDS downclocking |
| 71 | * @best_clock: best PLL values found |
| 72 | * |
| 73 | * Returns true on success, false on failure. |
| 74 | */ |
| 75 | bool (*find_pll)(const intel_limit_t *limit, |
| 76 | struct drm_crtc *crtc, |
| 77 | int target, int refclk, |
| 78 | intel_clock_t *match_clock, |
| 79 | intel_clock_t *best_clock); |
Ma Ling | d490609 | 2009-03-18 20:13:27 +0800 | [diff] [blame] | 80 | }; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 81 | |
Jesse Barnes | 2377b74 | 2010-07-07 14:06:43 -0700 | [diff] [blame] | 82 | /* FDI */ |
| 83 | #define IRONLAKE_FDI_FREQ 2700000 /* in kHz for mode->clock */ |
| 84 | |
Daniel Vetter | d2acd21 | 2012-10-20 20:57:43 +0200 | [diff] [blame] | 85 | int |
| 86 | intel_pch_rawclk(struct drm_device *dev) |
| 87 | { |
| 88 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 89 | |
| 90 | WARN_ON(!HAS_PCH_SPLIT(dev)); |
| 91 | |
| 92 | return I915_READ(PCH_RAWCLK_FREQ) & RAWCLK_FREQ_MASK; |
| 93 | } |
| 94 | |
Ma Ling | d490609 | 2009-03-18 20:13:27 +0800 | [diff] [blame] | 95 | static bool |
| 96 | intel_find_best_PLL(const intel_limit_t *limit, struct drm_crtc *crtc, |
Sean Paul | cec2f35 | 2012-01-10 15:09:36 -0800 | [diff] [blame] | 97 | int target, int refclk, intel_clock_t *match_clock, |
| 98 | intel_clock_t *best_clock); |
Ma Ling | d490609 | 2009-03-18 20:13:27 +0800 | [diff] [blame] | 99 | static bool |
Daniel Vetter | ac58c3f | 2013-06-01 17:16:17 +0200 | [diff] [blame^] | 100 | intel_pnv_find_best_PLL(const intel_limit_t *limit, struct drm_crtc *crtc, |
| 101 | int target, int refclk, intel_clock_t *match_clock, |
| 102 | intel_clock_t *best_clock); |
| 103 | static bool |
Ma Ling | d490609 | 2009-03-18 20:13:27 +0800 | [diff] [blame] | 104 | intel_g4x_find_best_PLL(const intel_limit_t *limit, struct drm_crtc *crtc, |
Sean Paul | cec2f35 | 2012-01-10 15:09:36 -0800 | [diff] [blame] | 105 | int target, int refclk, intel_clock_t *match_clock, |
| 106 | intel_clock_t *best_clock); |
Keith Packard | a4fc5ed | 2009-04-07 16:16:42 -0700 | [diff] [blame] | 107 | static bool |
Jesse Barnes | a0c4da24 | 2012-06-15 11:55:13 -0700 | [diff] [blame] | 108 | intel_vlv_find_best_pll(const intel_limit_t *limit, struct drm_crtc *crtc, |
| 109 | int target, int refclk, intel_clock_t *match_clock, |
| 110 | intel_clock_t *best_clock); |
| 111 | |
Chris Wilson | 021357a | 2010-09-07 20:54:59 +0100 | [diff] [blame] | 112 | static inline u32 /* units of 100MHz */ |
| 113 | intel_fdi_link_freq(struct drm_device *dev) |
| 114 | { |
Chris Wilson | 8b99e68 | 2010-10-13 09:59:17 +0100 | [diff] [blame] | 115 | if (IS_GEN5(dev)) { |
| 116 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 117 | return (I915_READ(FDI_PLL_BIOS_0) & FDI_PLL_FB_CLOCK_MASK) + 2; |
| 118 | } else |
| 119 | return 27; |
Chris Wilson | 021357a | 2010-09-07 20:54:59 +0100 | [diff] [blame] | 120 | } |
| 121 | |
Keith Packard | e4b3669 | 2009-06-05 19:22:17 -0700 | [diff] [blame] | 122 | static const intel_limit_t intel_limits_i8xx_dvo = { |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 123 | .dot = { .min = 25000, .max = 350000 }, |
| 124 | .vco = { .min = 930000, .max = 1400000 }, |
| 125 | .n = { .min = 3, .max = 16 }, |
| 126 | .m = { .min = 96, .max = 140 }, |
| 127 | .m1 = { .min = 18, .max = 26 }, |
| 128 | .m2 = { .min = 6, .max = 16 }, |
| 129 | .p = { .min = 4, .max = 128 }, |
| 130 | .p1 = { .min = 2, .max = 33 }, |
Eric Anholt | 273e27c | 2011-03-30 13:01:10 -0700 | [diff] [blame] | 131 | .p2 = { .dot_limit = 165000, |
| 132 | .p2_slow = 4, .p2_fast = 2 }, |
Ma Ling | d490609 | 2009-03-18 20:13:27 +0800 | [diff] [blame] | 133 | .find_pll = intel_find_best_PLL, |
Keith Packard | e4b3669 | 2009-06-05 19:22:17 -0700 | [diff] [blame] | 134 | }; |
| 135 | |
| 136 | static const intel_limit_t intel_limits_i8xx_lvds = { |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 137 | .dot = { .min = 25000, .max = 350000 }, |
| 138 | .vco = { .min = 930000, .max = 1400000 }, |
| 139 | .n = { .min = 3, .max = 16 }, |
| 140 | .m = { .min = 96, .max = 140 }, |
| 141 | .m1 = { .min = 18, .max = 26 }, |
| 142 | .m2 = { .min = 6, .max = 16 }, |
| 143 | .p = { .min = 4, .max = 128 }, |
| 144 | .p1 = { .min = 1, .max = 6 }, |
Eric Anholt | 273e27c | 2011-03-30 13:01:10 -0700 | [diff] [blame] | 145 | .p2 = { .dot_limit = 165000, |
| 146 | .p2_slow = 14, .p2_fast = 7 }, |
Ma Ling | d490609 | 2009-03-18 20:13:27 +0800 | [diff] [blame] | 147 | .find_pll = intel_find_best_PLL, |
Keith Packard | e4b3669 | 2009-06-05 19:22:17 -0700 | [diff] [blame] | 148 | }; |
Eric Anholt | 273e27c | 2011-03-30 13:01:10 -0700 | [diff] [blame] | 149 | |
Keith Packard | e4b3669 | 2009-06-05 19:22:17 -0700 | [diff] [blame] | 150 | static const intel_limit_t intel_limits_i9xx_sdvo = { |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 151 | .dot = { .min = 20000, .max = 400000 }, |
| 152 | .vco = { .min = 1400000, .max = 2800000 }, |
| 153 | .n = { .min = 1, .max = 6 }, |
| 154 | .m = { .min = 70, .max = 120 }, |
Patrik Jakobsson | 4f7dfb6 | 2013-02-13 22:20:22 +0100 | [diff] [blame] | 155 | .m1 = { .min = 8, .max = 18 }, |
| 156 | .m2 = { .min = 3, .max = 7 }, |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 157 | .p = { .min = 5, .max = 80 }, |
| 158 | .p1 = { .min = 1, .max = 8 }, |
Eric Anholt | 273e27c | 2011-03-30 13:01:10 -0700 | [diff] [blame] | 159 | .p2 = { .dot_limit = 200000, |
| 160 | .p2_slow = 10, .p2_fast = 5 }, |
Ma Ling | d490609 | 2009-03-18 20:13:27 +0800 | [diff] [blame] | 161 | .find_pll = intel_find_best_PLL, |
Keith Packard | e4b3669 | 2009-06-05 19:22:17 -0700 | [diff] [blame] | 162 | }; |
| 163 | |
| 164 | static const intel_limit_t intel_limits_i9xx_lvds = { |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 165 | .dot = { .min = 20000, .max = 400000 }, |
| 166 | .vco = { .min = 1400000, .max = 2800000 }, |
| 167 | .n = { .min = 1, .max = 6 }, |
| 168 | .m = { .min = 70, .max = 120 }, |
Patrik Jakobsson | 53a7d2d | 2013-02-13 22:20:21 +0100 | [diff] [blame] | 169 | .m1 = { .min = 8, .max = 18 }, |
| 170 | .m2 = { .min = 3, .max = 7 }, |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 171 | .p = { .min = 7, .max = 98 }, |
| 172 | .p1 = { .min = 1, .max = 8 }, |
Eric Anholt | 273e27c | 2011-03-30 13:01:10 -0700 | [diff] [blame] | 173 | .p2 = { .dot_limit = 112000, |
| 174 | .p2_slow = 14, .p2_fast = 7 }, |
Ma Ling | d490609 | 2009-03-18 20:13:27 +0800 | [diff] [blame] | 175 | .find_pll = intel_find_best_PLL, |
Keith Packard | e4b3669 | 2009-06-05 19:22:17 -0700 | [diff] [blame] | 176 | }; |
| 177 | |
Eric Anholt | 273e27c | 2011-03-30 13:01:10 -0700 | [diff] [blame] | 178 | |
Keith Packard | e4b3669 | 2009-06-05 19:22:17 -0700 | [diff] [blame] | 179 | static const intel_limit_t intel_limits_g4x_sdvo = { |
Eric Anholt | 273e27c | 2011-03-30 13:01:10 -0700 | [diff] [blame] | 180 | .dot = { .min = 25000, .max = 270000 }, |
| 181 | .vco = { .min = 1750000, .max = 3500000}, |
| 182 | .n = { .min = 1, .max = 4 }, |
| 183 | .m = { .min = 104, .max = 138 }, |
| 184 | .m1 = { .min = 17, .max = 23 }, |
| 185 | .m2 = { .min = 5, .max = 11 }, |
| 186 | .p = { .min = 10, .max = 30 }, |
| 187 | .p1 = { .min = 1, .max = 3}, |
| 188 | .p2 = { .dot_limit = 270000, |
| 189 | .p2_slow = 10, |
| 190 | .p2_fast = 10 |
Ma Ling | 044c7c4 | 2009-03-18 20:13:23 +0800 | [diff] [blame] | 191 | }, |
Ma Ling | d490609 | 2009-03-18 20:13:27 +0800 | [diff] [blame] | 192 | .find_pll = intel_g4x_find_best_PLL, |
Keith Packard | e4b3669 | 2009-06-05 19:22:17 -0700 | [diff] [blame] | 193 | }; |
| 194 | |
| 195 | static const intel_limit_t intel_limits_g4x_hdmi = { |
Eric Anholt | 273e27c | 2011-03-30 13:01:10 -0700 | [diff] [blame] | 196 | .dot = { .min = 22000, .max = 400000 }, |
| 197 | .vco = { .min = 1750000, .max = 3500000}, |
| 198 | .n = { .min = 1, .max = 4 }, |
| 199 | .m = { .min = 104, .max = 138 }, |
| 200 | .m1 = { .min = 16, .max = 23 }, |
| 201 | .m2 = { .min = 5, .max = 11 }, |
| 202 | .p = { .min = 5, .max = 80 }, |
| 203 | .p1 = { .min = 1, .max = 8}, |
| 204 | .p2 = { .dot_limit = 165000, |
| 205 | .p2_slow = 10, .p2_fast = 5 }, |
Ma Ling | d490609 | 2009-03-18 20:13:27 +0800 | [diff] [blame] | 206 | .find_pll = intel_g4x_find_best_PLL, |
Keith Packard | e4b3669 | 2009-06-05 19:22:17 -0700 | [diff] [blame] | 207 | }; |
| 208 | |
| 209 | static const intel_limit_t intel_limits_g4x_single_channel_lvds = { |
Eric Anholt | 273e27c | 2011-03-30 13:01:10 -0700 | [diff] [blame] | 210 | .dot = { .min = 20000, .max = 115000 }, |
| 211 | .vco = { .min = 1750000, .max = 3500000 }, |
| 212 | .n = { .min = 1, .max = 3 }, |
| 213 | .m = { .min = 104, .max = 138 }, |
| 214 | .m1 = { .min = 17, .max = 23 }, |
| 215 | .m2 = { .min = 5, .max = 11 }, |
| 216 | .p = { .min = 28, .max = 112 }, |
| 217 | .p1 = { .min = 2, .max = 8 }, |
| 218 | .p2 = { .dot_limit = 0, |
| 219 | .p2_slow = 14, .p2_fast = 14 |
Ma Ling | 044c7c4 | 2009-03-18 20:13:23 +0800 | [diff] [blame] | 220 | }, |
Ma Ling | d490609 | 2009-03-18 20:13:27 +0800 | [diff] [blame] | 221 | .find_pll = intel_g4x_find_best_PLL, |
Keith Packard | e4b3669 | 2009-06-05 19:22:17 -0700 | [diff] [blame] | 222 | }; |
| 223 | |
| 224 | static const intel_limit_t intel_limits_g4x_dual_channel_lvds = { |
Eric Anholt | 273e27c | 2011-03-30 13:01:10 -0700 | [diff] [blame] | 225 | .dot = { .min = 80000, .max = 224000 }, |
| 226 | .vco = { .min = 1750000, .max = 3500000 }, |
| 227 | .n = { .min = 1, .max = 3 }, |
| 228 | .m = { .min = 104, .max = 138 }, |
| 229 | .m1 = { .min = 17, .max = 23 }, |
| 230 | .m2 = { .min = 5, .max = 11 }, |
| 231 | .p = { .min = 14, .max = 42 }, |
| 232 | .p1 = { .min = 2, .max = 6 }, |
| 233 | .p2 = { .dot_limit = 0, |
| 234 | .p2_slow = 7, .p2_fast = 7 |
Ma Ling | 044c7c4 | 2009-03-18 20:13:23 +0800 | [diff] [blame] | 235 | }, |
Ma Ling | d490609 | 2009-03-18 20:13:27 +0800 | [diff] [blame] | 236 | .find_pll = intel_g4x_find_best_PLL, |
Keith Packard | e4b3669 | 2009-06-05 19:22:17 -0700 | [diff] [blame] | 237 | }; |
| 238 | |
Adam Jackson | f2b115e | 2009-12-03 17:14:42 -0500 | [diff] [blame] | 239 | static const intel_limit_t intel_limits_pineview_sdvo = { |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 240 | .dot = { .min = 20000, .max = 400000}, |
| 241 | .vco = { .min = 1700000, .max = 3500000 }, |
Eric Anholt | 273e27c | 2011-03-30 13:01:10 -0700 | [diff] [blame] | 242 | /* Pineview's Ncounter is a ring counter */ |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 243 | .n = { .min = 3, .max = 6 }, |
| 244 | .m = { .min = 2, .max = 256 }, |
Eric Anholt | 273e27c | 2011-03-30 13:01:10 -0700 | [diff] [blame] | 245 | /* Pineview only has one combined m divider, which we treat as m2. */ |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 246 | .m1 = { .min = 0, .max = 0 }, |
| 247 | .m2 = { .min = 0, .max = 254 }, |
| 248 | .p = { .min = 5, .max = 80 }, |
| 249 | .p1 = { .min = 1, .max = 8 }, |
Eric Anholt | 273e27c | 2011-03-30 13:01:10 -0700 | [diff] [blame] | 250 | .p2 = { .dot_limit = 200000, |
| 251 | .p2_slow = 10, .p2_fast = 5 }, |
Daniel Vetter | ac58c3f | 2013-06-01 17:16:17 +0200 | [diff] [blame^] | 252 | .find_pll = intel_pnv_find_best_PLL, |
Keith Packard | e4b3669 | 2009-06-05 19:22:17 -0700 | [diff] [blame] | 253 | }; |
| 254 | |
Adam Jackson | f2b115e | 2009-12-03 17:14:42 -0500 | [diff] [blame] | 255 | static const intel_limit_t intel_limits_pineview_lvds = { |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 256 | .dot = { .min = 20000, .max = 400000 }, |
| 257 | .vco = { .min = 1700000, .max = 3500000 }, |
| 258 | .n = { .min = 3, .max = 6 }, |
| 259 | .m = { .min = 2, .max = 256 }, |
| 260 | .m1 = { .min = 0, .max = 0 }, |
| 261 | .m2 = { .min = 0, .max = 254 }, |
| 262 | .p = { .min = 7, .max = 112 }, |
| 263 | .p1 = { .min = 1, .max = 8 }, |
Eric Anholt | 273e27c | 2011-03-30 13:01:10 -0700 | [diff] [blame] | 264 | .p2 = { .dot_limit = 112000, |
| 265 | .p2_slow = 14, .p2_fast = 14 }, |
Daniel Vetter | ac58c3f | 2013-06-01 17:16:17 +0200 | [diff] [blame^] | 266 | .find_pll = intel_pnv_find_best_PLL, |
Keith Packard | e4b3669 | 2009-06-05 19:22:17 -0700 | [diff] [blame] | 267 | }; |
| 268 | |
Eric Anholt | 273e27c | 2011-03-30 13:01:10 -0700 | [diff] [blame] | 269 | /* Ironlake / Sandybridge |
| 270 | * |
| 271 | * We calculate clock using (register_value + 2) for N/M1/M2, so here |
| 272 | * the range value for them is (actual_value - 2). |
| 273 | */ |
Zhenyu Wang | b91ad0e | 2010-02-05 09:14:17 +0800 | [diff] [blame] | 274 | static const intel_limit_t intel_limits_ironlake_dac = { |
Eric Anholt | 273e27c | 2011-03-30 13:01:10 -0700 | [diff] [blame] | 275 | .dot = { .min = 25000, .max = 350000 }, |
| 276 | .vco = { .min = 1760000, .max = 3510000 }, |
| 277 | .n = { .min = 1, .max = 5 }, |
| 278 | .m = { .min = 79, .max = 127 }, |
| 279 | .m1 = { .min = 12, .max = 22 }, |
| 280 | .m2 = { .min = 5, .max = 9 }, |
| 281 | .p = { .min = 5, .max = 80 }, |
| 282 | .p1 = { .min = 1, .max = 8 }, |
| 283 | .p2 = { .dot_limit = 225000, |
| 284 | .p2_slow = 10, .p2_fast = 5 }, |
Zhao Yakui | 4547668 | 2009-12-31 16:06:04 +0800 | [diff] [blame] | 285 | .find_pll = intel_g4x_find_best_PLL, |
Keith Packard | e4b3669 | 2009-06-05 19:22:17 -0700 | [diff] [blame] | 286 | }; |
| 287 | |
Zhenyu Wang | b91ad0e | 2010-02-05 09:14:17 +0800 | [diff] [blame] | 288 | static const intel_limit_t intel_limits_ironlake_single_lvds = { |
Eric Anholt | 273e27c | 2011-03-30 13:01:10 -0700 | [diff] [blame] | 289 | .dot = { .min = 25000, .max = 350000 }, |
| 290 | .vco = { .min = 1760000, .max = 3510000 }, |
| 291 | .n = { .min = 1, .max = 3 }, |
| 292 | .m = { .min = 79, .max = 118 }, |
| 293 | .m1 = { .min = 12, .max = 22 }, |
| 294 | .m2 = { .min = 5, .max = 9 }, |
| 295 | .p = { .min = 28, .max = 112 }, |
| 296 | .p1 = { .min = 2, .max = 8 }, |
| 297 | .p2 = { .dot_limit = 225000, |
| 298 | .p2_slow = 14, .p2_fast = 14 }, |
Zhenyu Wang | b91ad0e | 2010-02-05 09:14:17 +0800 | [diff] [blame] | 299 | .find_pll = intel_g4x_find_best_PLL, |
| 300 | }; |
| 301 | |
| 302 | static const intel_limit_t intel_limits_ironlake_dual_lvds = { |
Eric Anholt | 273e27c | 2011-03-30 13:01:10 -0700 | [diff] [blame] | 303 | .dot = { .min = 25000, .max = 350000 }, |
| 304 | .vco = { .min = 1760000, .max = 3510000 }, |
| 305 | .n = { .min = 1, .max = 3 }, |
| 306 | .m = { .min = 79, .max = 127 }, |
| 307 | .m1 = { .min = 12, .max = 22 }, |
| 308 | .m2 = { .min = 5, .max = 9 }, |
| 309 | .p = { .min = 14, .max = 56 }, |
| 310 | .p1 = { .min = 2, .max = 8 }, |
| 311 | .p2 = { .dot_limit = 225000, |
| 312 | .p2_slow = 7, .p2_fast = 7 }, |
Zhenyu Wang | b91ad0e | 2010-02-05 09:14:17 +0800 | [diff] [blame] | 313 | .find_pll = intel_g4x_find_best_PLL, |
| 314 | }; |
| 315 | |
Eric Anholt | 273e27c | 2011-03-30 13:01:10 -0700 | [diff] [blame] | 316 | /* LVDS 100mhz refclk limits. */ |
Zhenyu Wang | b91ad0e | 2010-02-05 09:14:17 +0800 | [diff] [blame] | 317 | static const intel_limit_t intel_limits_ironlake_single_lvds_100m = { |
Eric Anholt | 273e27c | 2011-03-30 13:01:10 -0700 | [diff] [blame] | 318 | .dot = { .min = 25000, .max = 350000 }, |
| 319 | .vco = { .min = 1760000, .max = 3510000 }, |
| 320 | .n = { .min = 1, .max = 2 }, |
| 321 | .m = { .min = 79, .max = 126 }, |
| 322 | .m1 = { .min = 12, .max = 22 }, |
| 323 | .m2 = { .min = 5, .max = 9 }, |
| 324 | .p = { .min = 28, .max = 112 }, |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 325 | .p1 = { .min = 2, .max = 8 }, |
Eric Anholt | 273e27c | 2011-03-30 13:01:10 -0700 | [diff] [blame] | 326 | .p2 = { .dot_limit = 225000, |
| 327 | .p2_slow = 14, .p2_fast = 14 }, |
Zhenyu Wang | b91ad0e | 2010-02-05 09:14:17 +0800 | [diff] [blame] | 328 | .find_pll = intel_g4x_find_best_PLL, |
| 329 | }; |
| 330 | |
| 331 | static const intel_limit_t intel_limits_ironlake_dual_lvds_100m = { |
Eric Anholt | 273e27c | 2011-03-30 13:01:10 -0700 | [diff] [blame] | 332 | .dot = { .min = 25000, .max = 350000 }, |
| 333 | .vco = { .min = 1760000, .max = 3510000 }, |
| 334 | .n = { .min = 1, .max = 3 }, |
| 335 | .m = { .min = 79, .max = 126 }, |
| 336 | .m1 = { .min = 12, .max = 22 }, |
| 337 | .m2 = { .min = 5, .max = 9 }, |
| 338 | .p = { .min = 14, .max = 42 }, |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 339 | .p1 = { .min = 2, .max = 6 }, |
Eric Anholt | 273e27c | 2011-03-30 13:01:10 -0700 | [diff] [blame] | 340 | .p2 = { .dot_limit = 225000, |
| 341 | .p2_slow = 7, .p2_fast = 7 }, |
Zhao Yakui | 4547668 | 2009-12-31 16:06:04 +0800 | [diff] [blame] | 342 | .find_pll = intel_g4x_find_best_PLL, |
| 343 | }; |
| 344 | |
Jesse Barnes | a0c4da24 | 2012-06-15 11:55:13 -0700 | [diff] [blame] | 345 | static const intel_limit_t intel_limits_vlv_dac = { |
| 346 | .dot = { .min = 25000, .max = 270000 }, |
| 347 | .vco = { .min = 4000000, .max = 6000000 }, |
| 348 | .n = { .min = 1, .max = 7 }, |
| 349 | .m = { .min = 22, .max = 450 }, /* guess */ |
| 350 | .m1 = { .min = 2, .max = 3 }, |
| 351 | .m2 = { .min = 11, .max = 156 }, |
| 352 | .p = { .min = 10, .max = 30 }, |
Daniel Vetter | 75e5398 | 2013-04-18 21:10:43 +0200 | [diff] [blame] | 353 | .p1 = { .min = 1, .max = 3 }, |
Jesse Barnes | a0c4da24 | 2012-06-15 11:55:13 -0700 | [diff] [blame] | 354 | .p2 = { .dot_limit = 270000, |
| 355 | .p2_slow = 2, .p2_fast = 20 }, |
| 356 | .find_pll = intel_vlv_find_best_pll, |
| 357 | }; |
| 358 | |
| 359 | static const intel_limit_t intel_limits_vlv_hdmi = { |
Daniel Vetter | 75e5398 | 2013-04-18 21:10:43 +0200 | [diff] [blame] | 360 | .dot = { .min = 25000, .max = 270000 }, |
| 361 | .vco = { .min = 4000000, .max = 6000000 }, |
Jesse Barnes | a0c4da24 | 2012-06-15 11:55:13 -0700 | [diff] [blame] | 362 | .n = { .min = 1, .max = 7 }, |
| 363 | .m = { .min = 60, .max = 300 }, /* guess */ |
| 364 | .m1 = { .min = 2, .max = 3 }, |
| 365 | .m2 = { .min = 11, .max = 156 }, |
| 366 | .p = { .min = 10, .max = 30 }, |
| 367 | .p1 = { .min = 2, .max = 3 }, |
| 368 | .p2 = { .dot_limit = 270000, |
| 369 | .p2_slow = 2, .p2_fast = 20 }, |
| 370 | .find_pll = intel_vlv_find_best_pll, |
| 371 | }; |
| 372 | |
| 373 | static const intel_limit_t intel_limits_vlv_dp = { |
Vijay Purushothaman | 74a4dd2 | 2012-09-27 19:13:04 +0530 | [diff] [blame] | 374 | .dot = { .min = 25000, .max = 270000 }, |
| 375 | .vco = { .min = 4000000, .max = 6000000 }, |
Jesse Barnes | a0c4da24 | 2012-06-15 11:55:13 -0700 | [diff] [blame] | 376 | .n = { .min = 1, .max = 7 }, |
Vijay Purushothaman | 74a4dd2 | 2012-09-27 19:13:04 +0530 | [diff] [blame] | 377 | .m = { .min = 22, .max = 450 }, |
Jesse Barnes | a0c4da24 | 2012-06-15 11:55:13 -0700 | [diff] [blame] | 378 | .m1 = { .min = 2, .max = 3 }, |
| 379 | .m2 = { .min = 11, .max = 156 }, |
| 380 | .p = { .min = 10, .max = 30 }, |
Daniel Vetter | 75e5398 | 2013-04-18 21:10:43 +0200 | [diff] [blame] | 381 | .p1 = { .min = 1, .max = 3 }, |
Jesse Barnes | a0c4da24 | 2012-06-15 11:55:13 -0700 | [diff] [blame] | 382 | .p2 = { .dot_limit = 270000, |
| 383 | .p2_slow = 2, .p2_fast = 20 }, |
| 384 | .find_pll = intel_vlv_find_best_pll, |
| 385 | }; |
| 386 | |
Chris Wilson | 1b894b5 | 2010-12-14 20:04:54 +0000 | [diff] [blame] | 387 | static const intel_limit_t *intel_ironlake_limit(struct drm_crtc *crtc, |
| 388 | int refclk) |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 389 | { |
Zhenyu Wang | b91ad0e | 2010-02-05 09:14:17 +0800 | [diff] [blame] | 390 | struct drm_device *dev = crtc->dev; |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 391 | const intel_limit_t *limit; |
Zhenyu Wang | b91ad0e | 2010-02-05 09:14:17 +0800 | [diff] [blame] | 392 | |
| 393 | if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) { |
Daniel Vetter | 1974cad | 2012-11-26 17:22:09 +0100 | [diff] [blame] | 394 | if (intel_is_dual_link_lvds(dev)) { |
Chris Wilson | 1b894b5 | 2010-12-14 20:04:54 +0000 | [diff] [blame] | 395 | if (refclk == 100000) |
Zhenyu Wang | b91ad0e | 2010-02-05 09:14:17 +0800 | [diff] [blame] | 396 | limit = &intel_limits_ironlake_dual_lvds_100m; |
| 397 | else |
| 398 | limit = &intel_limits_ironlake_dual_lvds; |
| 399 | } else { |
Chris Wilson | 1b894b5 | 2010-12-14 20:04:54 +0000 | [diff] [blame] | 400 | if (refclk == 100000) |
Zhenyu Wang | b91ad0e | 2010-02-05 09:14:17 +0800 | [diff] [blame] | 401 | limit = &intel_limits_ironlake_single_lvds_100m; |
| 402 | else |
| 403 | limit = &intel_limits_ironlake_single_lvds; |
| 404 | } |
Daniel Vetter | c6bb353 | 2013-04-19 11:14:33 +0200 | [diff] [blame] | 405 | } else |
Zhenyu Wang | b91ad0e | 2010-02-05 09:14:17 +0800 | [diff] [blame] | 406 | limit = &intel_limits_ironlake_dac; |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 407 | |
| 408 | return limit; |
| 409 | } |
| 410 | |
Ma Ling | 044c7c4 | 2009-03-18 20:13:23 +0800 | [diff] [blame] | 411 | static const intel_limit_t *intel_g4x_limit(struct drm_crtc *crtc) |
| 412 | { |
| 413 | struct drm_device *dev = crtc->dev; |
Ma Ling | 044c7c4 | 2009-03-18 20:13:23 +0800 | [diff] [blame] | 414 | const intel_limit_t *limit; |
| 415 | |
| 416 | if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) { |
Daniel Vetter | 1974cad | 2012-11-26 17:22:09 +0100 | [diff] [blame] | 417 | if (intel_is_dual_link_lvds(dev)) |
Keith Packard | e4b3669 | 2009-06-05 19:22:17 -0700 | [diff] [blame] | 418 | limit = &intel_limits_g4x_dual_channel_lvds; |
Ma Ling | 044c7c4 | 2009-03-18 20:13:23 +0800 | [diff] [blame] | 419 | else |
Keith Packard | e4b3669 | 2009-06-05 19:22:17 -0700 | [diff] [blame] | 420 | limit = &intel_limits_g4x_single_channel_lvds; |
Ma Ling | 044c7c4 | 2009-03-18 20:13:23 +0800 | [diff] [blame] | 421 | } else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_HDMI) || |
| 422 | intel_pipe_has_type(crtc, INTEL_OUTPUT_ANALOG)) { |
Keith Packard | e4b3669 | 2009-06-05 19:22:17 -0700 | [diff] [blame] | 423 | limit = &intel_limits_g4x_hdmi; |
Ma Ling | 044c7c4 | 2009-03-18 20:13:23 +0800 | [diff] [blame] | 424 | } else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_SDVO)) { |
Keith Packard | e4b3669 | 2009-06-05 19:22:17 -0700 | [diff] [blame] | 425 | limit = &intel_limits_g4x_sdvo; |
Ma Ling | 044c7c4 | 2009-03-18 20:13:23 +0800 | [diff] [blame] | 426 | } else /* The option is for other outputs */ |
Keith Packard | e4b3669 | 2009-06-05 19:22:17 -0700 | [diff] [blame] | 427 | limit = &intel_limits_i9xx_sdvo; |
Ma Ling | 044c7c4 | 2009-03-18 20:13:23 +0800 | [diff] [blame] | 428 | |
| 429 | return limit; |
| 430 | } |
| 431 | |
Chris Wilson | 1b894b5 | 2010-12-14 20:04:54 +0000 | [diff] [blame] | 432 | static const intel_limit_t *intel_limit(struct drm_crtc *crtc, int refclk) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 433 | { |
| 434 | struct drm_device *dev = crtc->dev; |
| 435 | const intel_limit_t *limit; |
| 436 | |
Eric Anholt | bad720f | 2009-10-22 16:11:14 -0700 | [diff] [blame] | 437 | if (HAS_PCH_SPLIT(dev)) |
Chris Wilson | 1b894b5 | 2010-12-14 20:04:54 +0000 | [diff] [blame] | 438 | limit = intel_ironlake_limit(crtc, refclk); |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 439 | else if (IS_G4X(dev)) { |
Ma Ling | 044c7c4 | 2009-03-18 20:13:23 +0800 | [diff] [blame] | 440 | limit = intel_g4x_limit(crtc); |
Adam Jackson | f2b115e | 2009-12-03 17:14:42 -0500 | [diff] [blame] | 441 | } else if (IS_PINEVIEW(dev)) { |
Shaohua Li | 2177832 | 2009-02-23 15:19:16 +0800 | [diff] [blame] | 442 | if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) |
Adam Jackson | f2b115e | 2009-12-03 17:14:42 -0500 | [diff] [blame] | 443 | limit = &intel_limits_pineview_lvds; |
Shaohua Li | 2177832 | 2009-02-23 15:19:16 +0800 | [diff] [blame] | 444 | else |
Adam Jackson | f2b115e | 2009-12-03 17:14:42 -0500 | [diff] [blame] | 445 | limit = &intel_limits_pineview_sdvo; |
Jesse Barnes | a0c4da24 | 2012-06-15 11:55:13 -0700 | [diff] [blame] | 446 | } else if (IS_VALLEYVIEW(dev)) { |
| 447 | if (intel_pipe_has_type(crtc, INTEL_OUTPUT_ANALOG)) |
| 448 | limit = &intel_limits_vlv_dac; |
| 449 | else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_HDMI)) |
| 450 | limit = &intel_limits_vlv_hdmi; |
| 451 | else |
| 452 | limit = &intel_limits_vlv_dp; |
Chris Wilson | a6c45cf | 2010-09-17 00:32:17 +0100 | [diff] [blame] | 453 | } else if (!IS_GEN2(dev)) { |
| 454 | if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) |
| 455 | limit = &intel_limits_i9xx_lvds; |
| 456 | else |
| 457 | limit = &intel_limits_i9xx_sdvo; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 458 | } else { |
| 459 | if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) |
Keith Packard | e4b3669 | 2009-06-05 19:22:17 -0700 | [diff] [blame] | 460 | limit = &intel_limits_i8xx_lvds; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 461 | else |
Keith Packard | e4b3669 | 2009-06-05 19:22:17 -0700 | [diff] [blame] | 462 | limit = &intel_limits_i8xx_dvo; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 463 | } |
| 464 | return limit; |
| 465 | } |
| 466 | |
Adam Jackson | f2b115e | 2009-12-03 17:14:42 -0500 | [diff] [blame] | 467 | /* m1 is reserved as 0 in Pineview, n is a ring counter */ |
| 468 | static void pineview_clock(int refclk, intel_clock_t *clock) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 469 | { |
Shaohua Li | 2177832 | 2009-02-23 15:19:16 +0800 | [diff] [blame] | 470 | clock->m = clock->m2 + 2; |
| 471 | clock->p = clock->p1 * clock->p2; |
| 472 | clock->vco = refclk * clock->m / clock->n; |
| 473 | clock->dot = clock->vco / clock->p; |
| 474 | } |
| 475 | |
Daniel Vetter | 7429e9d | 2013-04-20 17:19:46 +0200 | [diff] [blame] | 476 | static uint32_t i9xx_dpll_compute_m(struct dpll *dpll) |
| 477 | { |
| 478 | return 5 * (dpll->m1 + 2) + (dpll->m2 + 2); |
| 479 | } |
| 480 | |
Daniel Vetter | ac58c3f | 2013-06-01 17:16:17 +0200 | [diff] [blame^] | 481 | static void i9xx_clock(int refclk, intel_clock_t *clock) |
Shaohua Li | 2177832 | 2009-02-23 15:19:16 +0800 | [diff] [blame] | 482 | { |
Daniel Vetter | 7429e9d | 2013-04-20 17:19:46 +0200 | [diff] [blame] | 483 | clock->m = i9xx_dpll_compute_m(clock); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 484 | clock->p = clock->p1 * clock->p2; |
| 485 | clock->vco = refclk * clock->m / (clock->n + 2); |
| 486 | clock->dot = clock->vco / clock->p; |
| 487 | } |
| 488 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 489 | /** |
| 490 | * Returns whether any output on the specified pipe is of the specified type |
| 491 | */ |
Chris Wilson | 4ef69c7 | 2010-09-09 15:14:28 +0100 | [diff] [blame] | 492 | bool intel_pipe_has_type(struct drm_crtc *crtc, int type) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 493 | { |
Chris Wilson | 4ef69c7 | 2010-09-09 15:14:28 +0100 | [diff] [blame] | 494 | struct drm_device *dev = crtc->dev; |
Chris Wilson | 4ef69c7 | 2010-09-09 15:14:28 +0100 | [diff] [blame] | 495 | struct intel_encoder *encoder; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 496 | |
Daniel Vetter | 6c2b7c1 | 2012-07-05 09:50:24 +0200 | [diff] [blame] | 497 | for_each_encoder_on_crtc(dev, crtc, encoder) |
| 498 | if (encoder->type == type) |
Chris Wilson | 4ef69c7 | 2010-09-09 15:14:28 +0100 | [diff] [blame] | 499 | return true; |
| 500 | |
| 501 | return false; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 502 | } |
| 503 | |
Jesse Barnes | 7c04d1d | 2009-02-23 15:36:40 -0800 | [diff] [blame] | 504 | #define INTELPllInvalid(s) do { /* DRM_DEBUG(s); */ return false; } while (0) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 505 | /** |
| 506 | * Returns whether the given set of divisors are valid for a given refclk with |
| 507 | * the given connectors. |
| 508 | */ |
| 509 | |
Chris Wilson | 1b894b5 | 2010-12-14 20:04:54 +0000 | [diff] [blame] | 510 | static bool intel_PLL_is_valid(struct drm_device *dev, |
| 511 | const intel_limit_t *limit, |
| 512 | const intel_clock_t *clock) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 513 | { |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 514 | if (clock->p1 < limit->p1.min || limit->p1.max < clock->p1) |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 515 | INTELPllInvalid("p1 out of range\n"); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 516 | if (clock->p < limit->p.min || limit->p.max < clock->p) |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 517 | INTELPllInvalid("p out of range\n"); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 518 | if (clock->m2 < limit->m2.min || limit->m2.max < clock->m2) |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 519 | INTELPllInvalid("m2 out of range\n"); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 520 | if (clock->m1 < limit->m1.min || limit->m1.max < clock->m1) |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 521 | INTELPllInvalid("m1 out of range\n"); |
Adam Jackson | f2b115e | 2009-12-03 17:14:42 -0500 | [diff] [blame] | 522 | if (clock->m1 <= clock->m2 && !IS_PINEVIEW(dev)) |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 523 | INTELPllInvalid("m1 <= m2\n"); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 524 | if (clock->m < limit->m.min || limit->m.max < clock->m) |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 525 | INTELPllInvalid("m out of range\n"); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 526 | if (clock->n < limit->n.min || limit->n.max < clock->n) |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 527 | INTELPllInvalid("n out of range\n"); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 528 | if (clock->vco < limit->vco.min || limit->vco.max < clock->vco) |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 529 | INTELPllInvalid("vco out of range\n"); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 530 | /* XXX: We may need to be checking "Dot clock" depending on the multiplier, |
| 531 | * connector, etc., rather than just a single range. |
| 532 | */ |
| 533 | if (clock->dot < limit->dot.min || limit->dot.max < clock->dot) |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 534 | INTELPllInvalid("dot out of range\n"); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 535 | |
| 536 | return true; |
| 537 | } |
| 538 | |
Ma Ling | d490609 | 2009-03-18 20:13:27 +0800 | [diff] [blame] | 539 | static bool |
| 540 | intel_find_best_PLL(const intel_limit_t *limit, struct drm_crtc *crtc, |
Sean Paul | cec2f35 | 2012-01-10 15:09:36 -0800 | [diff] [blame] | 541 | int target, int refclk, intel_clock_t *match_clock, |
| 542 | intel_clock_t *best_clock) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 543 | { |
| 544 | struct drm_device *dev = crtc->dev; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 545 | intel_clock_t clock; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 546 | int err = target; |
| 547 | |
Daniel Vetter | a210b02 | 2012-11-26 17:22:08 +0100 | [diff] [blame] | 548 | if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) { |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 549 | /* |
Daniel Vetter | a210b02 | 2012-11-26 17:22:08 +0100 | [diff] [blame] | 550 | * For LVDS just rely on its current settings for dual-channel. |
| 551 | * We haven't figured out how to reliably set up different |
| 552 | * single/dual channel state, if we even can. |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 553 | */ |
Daniel Vetter | 1974cad | 2012-11-26 17:22:09 +0100 | [diff] [blame] | 554 | if (intel_is_dual_link_lvds(dev)) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 555 | clock.p2 = limit->p2.p2_fast; |
| 556 | else |
| 557 | clock.p2 = limit->p2.p2_slow; |
| 558 | } else { |
| 559 | if (target < limit->p2.dot_limit) |
| 560 | clock.p2 = limit->p2.p2_slow; |
| 561 | else |
| 562 | clock.p2 = limit->p2.p2_fast; |
| 563 | } |
| 564 | |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 565 | memset(best_clock, 0, sizeof(*best_clock)); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 566 | |
Zhao Yakui | 4215866 | 2009-11-20 11:24:18 +0800 | [diff] [blame] | 567 | for (clock.m1 = limit->m1.min; clock.m1 <= limit->m1.max; |
| 568 | clock.m1++) { |
| 569 | for (clock.m2 = limit->m2.min; |
| 570 | clock.m2 <= limit->m2.max; clock.m2++) { |
Adam Jackson | f2b115e | 2009-12-03 17:14:42 -0500 | [diff] [blame] | 571 | /* m1 is always 0 in Pineview */ |
| 572 | if (clock.m2 >= clock.m1 && !IS_PINEVIEW(dev)) |
Zhao Yakui | 4215866 | 2009-11-20 11:24:18 +0800 | [diff] [blame] | 573 | break; |
| 574 | for (clock.n = limit->n.min; |
| 575 | clock.n <= limit->n.max; clock.n++) { |
| 576 | for (clock.p1 = limit->p1.min; |
| 577 | clock.p1 <= limit->p1.max; clock.p1++) { |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 578 | int this_err; |
| 579 | |
Daniel Vetter | ac58c3f | 2013-06-01 17:16:17 +0200 | [diff] [blame^] | 580 | i9xx_clock(refclk, &clock); |
| 581 | if (!intel_PLL_is_valid(dev, limit, |
| 582 | &clock)) |
| 583 | continue; |
| 584 | if (match_clock && |
| 585 | clock.p != match_clock->p) |
| 586 | continue; |
| 587 | |
| 588 | this_err = abs(clock.dot - target); |
| 589 | if (this_err < err) { |
| 590 | *best_clock = clock; |
| 591 | err = this_err; |
| 592 | } |
| 593 | } |
| 594 | } |
| 595 | } |
| 596 | } |
| 597 | |
| 598 | return (err != target); |
| 599 | } |
| 600 | |
| 601 | static bool |
| 602 | intel_pnv_find_best_PLL(const intel_limit_t *limit, struct drm_crtc *crtc, |
| 603 | int target, int refclk, intel_clock_t *match_clock, |
| 604 | intel_clock_t *best_clock) |
| 605 | { |
| 606 | struct drm_device *dev = crtc->dev; |
| 607 | intel_clock_t clock; |
| 608 | int err = target; |
| 609 | |
| 610 | if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) { |
| 611 | /* |
| 612 | * For LVDS just rely on its current settings for dual-channel. |
| 613 | * We haven't figured out how to reliably set up different |
| 614 | * single/dual channel state, if we even can. |
| 615 | */ |
| 616 | if (intel_is_dual_link_lvds(dev)) |
| 617 | clock.p2 = limit->p2.p2_fast; |
| 618 | else |
| 619 | clock.p2 = limit->p2.p2_slow; |
| 620 | } else { |
| 621 | if (target < limit->p2.dot_limit) |
| 622 | clock.p2 = limit->p2.p2_slow; |
| 623 | else |
| 624 | clock.p2 = limit->p2.p2_fast; |
| 625 | } |
| 626 | |
| 627 | memset(best_clock, 0, sizeof(*best_clock)); |
| 628 | |
| 629 | for (clock.m1 = limit->m1.min; clock.m1 <= limit->m1.max; |
| 630 | clock.m1++) { |
| 631 | for (clock.m2 = limit->m2.min; |
| 632 | clock.m2 <= limit->m2.max; clock.m2++) { |
| 633 | /* m1 is always 0 in Pineview */ |
| 634 | if (clock.m2 >= clock.m1 && !IS_PINEVIEW(dev)) |
| 635 | break; |
| 636 | for (clock.n = limit->n.min; |
| 637 | clock.n <= limit->n.max; clock.n++) { |
| 638 | for (clock.p1 = limit->p1.min; |
| 639 | clock.p1 <= limit->p1.max; clock.p1++) { |
| 640 | int this_err; |
| 641 | |
| 642 | pineview_clock(refclk, &clock); |
Chris Wilson | 1b894b5 | 2010-12-14 20:04:54 +0000 | [diff] [blame] | 643 | if (!intel_PLL_is_valid(dev, limit, |
| 644 | &clock)) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 645 | continue; |
Sean Paul | cec2f35 | 2012-01-10 15:09:36 -0800 | [diff] [blame] | 646 | if (match_clock && |
| 647 | clock.p != match_clock->p) |
| 648 | continue; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 649 | |
| 650 | this_err = abs(clock.dot - target); |
| 651 | if (this_err < err) { |
| 652 | *best_clock = clock; |
| 653 | err = this_err; |
| 654 | } |
| 655 | } |
| 656 | } |
| 657 | } |
| 658 | } |
| 659 | |
| 660 | return (err != target); |
| 661 | } |
| 662 | |
Ma Ling | d490609 | 2009-03-18 20:13:27 +0800 | [diff] [blame] | 663 | static bool |
| 664 | intel_g4x_find_best_PLL(const intel_limit_t *limit, struct drm_crtc *crtc, |
Sean Paul | cec2f35 | 2012-01-10 15:09:36 -0800 | [diff] [blame] | 665 | int target, int refclk, intel_clock_t *match_clock, |
| 666 | intel_clock_t *best_clock) |
Ma Ling | d490609 | 2009-03-18 20:13:27 +0800 | [diff] [blame] | 667 | { |
| 668 | struct drm_device *dev = crtc->dev; |
Ma Ling | d490609 | 2009-03-18 20:13:27 +0800 | [diff] [blame] | 669 | intel_clock_t clock; |
| 670 | int max_n; |
| 671 | bool found; |
Adam Jackson | 6ba770d | 2010-07-02 16:43:30 -0400 | [diff] [blame] | 672 | /* approximately equals target * 0.00585 */ |
| 673 | int err_most = (target >> 8) + (target >> 9); |
Ma Ling | d490609 | 2009-03-18 20:13:27 +0800 | [diff] [blame] | 674 | found = false; |
| 675 | |
| 676 | if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) { |
Daniel Vetter | 1974cad | 2012-11-26 17:22:09 +0100 | [diff] [blame] | 677 | if (intel_is_dual_link_lvds(dev)) |
Ma Ling | d490609 | 2009-03-18 20:13:27 +0800 | [diff] [blame] | 678 | clock.p2 = limit->p2.p2_fast; |
| 679 | else |
| 680 | clock.p2 = limit->p2.p2_slow; |
| 681 | } else { |
| 682 | if (target < limit->p2.dot_limit) |
| 683 | clock.p2 = limit->p2.p2_slow; |
| 684 | else |
| 685 | clock.p2 = limit->p2.p2_fast; |
| 686 | } |
| 687 | |
| 688 | memset(best_clock, 0, sizeof(*best_clock)); |
| 689 | max_n = limit->n.max; |
Gilles Espinasse | f77f13e | 2010-03-29 15:41:47 +0200 | [diff] [blame] | 690 | /* based on hardware requirement, prefer smaller n to precision */ |
Ma Ling | d490609 | 2009-03-18 20:13:27 +0800 | [diff] [blame] | 691 | for (clock.n = limit->n.min; clock.n <= max_n; clock.n++) { |
Gilles Espinasse | f77f13e | 2010-03-29 15:41:47 +0200 | [diff] [blame] | 692 | /* based on hardware requirement, prefere larger m1,m2 */ |
Ma Ling | d490609 | 2009-03-18 20:13:27 +0800 | [diff] [blame] | 693 | for (clock.m1 = limit->m1.max; |
| 694 | clock.m1 >= limit->m1.min; clock.m1--) { |
| 695 | for (clock.m2 = limit->m2.max; |
| 696 | clock.m2 >= limit->m2.min; clock.m2--) { |
| 697 | for (clock.p1 = limit->p1.max; |
| 698 | clock.p1 >= limit->p1.min; clock.p1--) { |
| 699 | int this_err; |
| 700 | |
Daniel Vetter | ac58c3f | 2013-06-01 17:16:17 +0200 | [diff] [blame^] | 701 | i9xx_clock(refclk, &clock); |
Chris Wilson | 1b894b5 | 2010-12-14 20:04:54 +0000 | [diff] [blame] | 702 | if (!intel_PLL_is_valid(dev, limit, |
| 703 | &clock)) |
Ma Ling | d490609 | 2009-03-18 20:13:27 +0800 | [diff] [blame] | 704 | continue; |
Chris Wilson | 1b894b5 | 2010-12-14 20:04:54 +0000 | [diff] [blame] | 705 | |
| 706 | this_err = abs(clock.dot - target); |
Ma Ling | d490609 | 2009-03-18 20:13:27 +0800 | [diff] [blame] | 707 | if (this_err < err_most) { |
| 708 | *best_clock = clock; |
| 709 | err_most = this_err; |
| 710 | max_n = clock.n; |
| 711 | found = true; |
| 712 | } |
| 713 | } |
| 714 | } |
| 715 | } |
| 716 | } |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 717 | return found; |
| 718 | } |
Ma Ling | d490609 | 2009-03-18 20:13:27 +0800 | [diff] [blame] | 719 | |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 720 | static bool |
Jesse Barnes | a0c4da24 | 2012-06-15 11:55:13 -0700 | [diff] [blame] | 721 | intel_vlv_find_best_pll(const intel_limit_t *limit, struct drm_crtc *crtc, |
| 722 | int target, int refclk, intel_clock_t *match_clock, |
| 723 | intel_clock_t *best_clock) |
| 724 | { |
| 725 | u32 p1, p2, m1, m2, vco, bestn, bestm1, bestm2, bestp1, bestp2; |
| 726 | u32 m, n, fastclk; |
| 727 | u32 updrate, minupdate, fracbits, p; |
| 728 | unsigned long bestppm, ppm, absppm; |
| 729 | int dotclk, flag; |
| 730 | |
Alan Cox | af447bd | 2012-07-25 13:49:18 +0100 | [diff] [blame] | 731 | flag = 0; |
Jesse Barnes | a0c4da24 | 2012-06-15 11:55:13 -0700 | [diff] [blame] | 732 | dotclk = target * 1000; |
| 733 | bestppm = 1000000; |
| 734 | ppm = absppm = 0; |
| 735 | fastclk = dotclk / (2*100); |
| 736 | updrate = 0; |
| 737 | minupdate = 19200; |
| 738 | fracbits = 1; |
| 739 | n = p = p1 = p2 = m = m1 = m2 = vco = bestn = 0; |
| 740 | bestm1 = bestm2 = bestp1 = bestp2 = 0; |
| 741 | |
| 742 | /* based on hardware requirement, prefer smaller n to precision */ |
| 743 | for (n = limit->n.min; n <= ((refclk) / minupdate); n++) { |
| 744 | updrate = refclk / n; |
| 745 | for (p1 = limit->p1.max; p1 > limit->p1.min; p1--) { |
| 746 | for (p2 = limit->p2.p2_fast+1; p2 > 0; p2--) { |
| 747 | if (p2 > 10) |
| 748 | p2 = p2 - 1; |
| 749 | p = p1 * p2; |
| 750 | /* based on hardware requirement, prefer bigger m1,m2 values */ |
| 751 | for (m1 = limit->m1.min; m1 <= limit->m1.max; m1++) { |
| 752 | m2 = (((2*(fastclk * p * n / m1 )) + |
| 753 | refclk) / (2*refclk)); |
| 754 | m = m1 * m2; |
| 755 | vco = updrate * m; |
| 756 | if (vco >= limit->vco.min && vco < limit->vco.max) { |
| 757 | ppm = 1000000 * ((vco / p) - fastclk) / fastclk; |
| 758 | absppm = (ppm > 0) ? ppm : (-ppm); |
| 759 | if (absppm < 100 && ((p1 * p2) > (bestp1 * bestp2))) { |
| 760 | bestppm = 0; |
| 761 | flag = 1; |
| 762 | } |
| 763 | if (absppm < bestppm - 10) { |
| 764 | bestppm = absppm; |
| 765 | flag = 1; |
| 766 | } |
| 767 | if (flag) { |
| 768 | bestn = n; |
| 769 | bestm1 = m1; |
| 770 | bestm2 = m2; |
| 771 | bestp1 = p1; |
| 772 | bestp2 = p2; |
| 773 | flag = 0; |
| 774 | } |
| 775 | } |
| 776 | } |
| 777 | } |
| 778 | } |
| 779 | } |
| 780 | best_clock->n = bestn; |
| 781 | best_clock->m1 = bestm1; |
| 782 | best_clock->m2 = bestm2; |
| 783 | best_clock->p1 = bestp1; |
| 784 | best_clock->p2 = bestp2; |
| 785 | |
| 786 | return true; |
| 787 | } |
Keith Packard | a4fc5ed | 2009-04-07 16:16:42 -0700 | [diff] [blame] | 788 | |
Paulo Zanoni | a5c961d | 2012-10-24 15:59:34 -0200 | [diff] [blame] | 789 | enum transcoder intel_pipe_to_cpu_transcoder(struct drm_i915_private *dev_priv, |
| 790 | enum pipe pipe) |
| 791 | { |
| 792 | struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe]; |
| 793 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 794 | |
Daniel Vetter | 3b117c8 | 2013-04-17 20:15:07 +0200 | [diff] [blame] | 795 | return intel_crtc->config.cpu_transcoder; |
Paulo Zanoni | a5c961d | 2012-10-24 15:59:34 -0200 | [diff] [blame] | 796 | } |
| 797 | |
Paulo Zanoni | a928d53 | 2012-05-04 17:18:15 -0300 | [diff] [blame] | 798 | static void ironlake_wait_for_vblank(struct drm_device *dev, int pipe) |
| 799 | { |
| 800 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 801 | u32 frame, frame_reg = PIPEFRAME(pipe); |
| 802 | |
| 803 | frame = I915_READ(frame_reg); |
| 804 | |
| 805 | if (wait_for(I915_READ_NOTRACE(frame_reg) != frame, 50)) |
| 806 | DRM_DEBUG_KMS("vblank wait timed out\n"); |
| 807 | } |
| 808 | |
Jesse Barnes | 9d0498a | 2010-08-18 13:20:54 -0700 | [diff] [blame] | 809 | /** |
| 810 | * intel_wait_for_vblank - wait for vblank on a given pipe |
| 811 | * @dev: drm device |
| 812 | * @pipe: pipe to wait for |
| 813 | * |
| 814 | * Wait for vblank to occur on a given pipe. Needed for various bits of |
| 815 | * mode setting code. |
| 816 | */ |
| 817 | void intel_wait_for_vblank(struct drm_device *dev, int pipe) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 818 | { |
Jesse Barnes | 9d0498a | 2010-08-18 13:20:54 -0700 | [diff] [blame] | 819 | struct drm_i915_private *dev_priv = dev->dev_private; |
Jesse Barnes | 9db4a9c | 2011-02-07 12:26:52 -0800 | [diff] [blame] | 820 | int pipestat_reg = PIPESTAT(pipe); |
Jesse Barnes | 9d0498a | 2010-08-18 13:20:54 -0700 | [diff] [blame] | 821 | |
Paulo Zanoni | a928d53 | 2012-05-04 17:18:15 -0300 | [diff] [blame] | 822 | if (INTEL_INFO(dev)->gen >= 5) { |
| 823 | ironlake_wait_for_vblank(dev, pipe); |
| 824 | return; |
| 825 | } |
| 826 | |
Chris Wilson | 300387c | 2010-09-05 20:25:43 +0100 | [diff] [blame] | 827 | /* Clear existing vblank status. Note this will clear any other |
| 828 | * sticky status fields as well. |
| 829 | * |
| 830 | * This races with i915_driver_irq_handler() with the result |
| 831 | * that either function could miss a vblank event. Here it is not |
| 832 | * fatal, as we will either wait upon the next vblank interrupt or |
| 833 | * timeout. Generally speaking intel_wait_for_vblank() is only |
| 834 | * called during modeset at which time the GPU should be idle and |
| 835 | * should *not* be performing page flips and thus not waiting on |
| 836 | * vblanks... |
| 837 | * Currently, the result of us stealing a vblank from the irq |
| 838 | * handler is that a single frame will be skipped during swapbuffers. |
| 839 | */ |
| 840 | I915_WRITE(pipestat_reg, |
| 841 | I915_READ(pipestat_reg) | PIPE_VBLANK_INTERRUPT_STATUS); |
| 842 | |
Jesse Barnes | 9d0498a | 2010-08-18 13:20:54 -0700 | [diff] [blame] | 843 | /* Wait for vblank interrupt bit to set */ |
Chris Wilson | 481b6af | 2010-08-23 17:43:35 +0100 | [diff] [blame] | 844 | if (wait_for(I915_READ(pipestat_reg) & |
| 845 | PIPE_VBLANK_INTERRUPT_STATUS, |
| 846 | 50)) |
Jesse Barnes | 9d0498a | 2010-08-18 13:20:54 -0700 | [diff] [blame] | 847 | DRM_DEBUG_KMS("vblank wait timed out\n"); |
| 848 | } |
| 849 | |
Keith Packard | ab7ad7f | 2010-10-03 00:33:06 -0700 | [diff] [blame] | 850 | /* |
| 851 | * intel_wait_for_pipe_off - wait for pipe to turn off |
Jesse Barnes | 9d0498a | 2010-08-18 13:20:54 -0700 | [diff] [blame] | 852 | * @dev: drm device |
| 853 | * @pipe: pipe to wait for |
| 854 | * |
| 855 | * After disabling a pipe, we can't wait for vblank in the usual way, |
| 856 | * spinning on the vblank interrupt status bit, since we won't actually |
| 857 | * see an interrupt when the pipe is disabled. |
| 858 | * |
Keith Packard | ab7ad7f | 2010-10-03 00:33:06 -0700 | [diff] [blame] | 859 | * On Gen4 and above: |
| 860 | * wait for the pipe register state bit to turn off |
| 861 | * |
| 862 | * Otherwise: |
| 863 | * wait for the display line value to settle (it usually |
| 864 | * ends up stopping at the start of the next frame). |
Chris Wilson | 58e10eb | 2010-10-03 10:56:11 +0100 | [diff] [blame] | 865 | * |
Jesse Barnes | 9d0498a | 2010-08-18 13:20:54 -0700 | [diff] [blame] | 866 | */ |
Chris Wilson | 58e10eb | 2010-10-03 10:56:11 +0100 | [diff] [blame] | 867 | void intel_wait_for_pipe_off(struct drm_device *dev, int pipe) |
Jesse Barnes | 9d0498a | 2010-08-18 13:20:54 -0700 | [diff] [blame] | 868 | { |
| 869 | struct drm_i915_private *dev_priv = dev->dev_private; |
Paulo Zanoni | 702e7a5 | 2012-10-23 18:29:59 -0200 | [diff] [blame] | 870 | enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv, |
| 871 | pipe); |
Jesse Barnes | 9d0498a | 2010-08-18 13:20:54 -0700 | [diff] [blame] | 872 | |
Keith Packard | ab7ad7f | 2010-10-03 00:33:06 -0700 | [diff] [blame] | 873 | if (INTEL_INFO(dev)->gen >= 4) { |
Paulo Zanoni | 702e7a5 | 2012-10-23 18:29:59 -0200 | [diff] [blame] | 874 | int reg = PIPECONF(cpu_transcoder); |
Jesse Barnes | 9d0498a | 2010-08-18 13:20:54 -0700 | [diff] [blame] | 875 | |
Keith Packard | ab7ad7f | 2010-10-03 00:33:06 -0700 | [diff] [blame] | 876 | /* Wait for the Pipe State to go off */ |
Chris Wilson | 58e10eb | 2010-10-03 10:56:11 +0100 | [diff] [blame] | 877 | if (wait_for((I915_READ(reg) & I965_PIPECONF_ACTIVE) == 0, |
| 878 | 100)) |
Daniel Vetter | 284637d | 2012-07-09 09:51:57 +0200 | [diff] [blame] | 879 | WARN(1, "pipe_off wait timed out\n"); |
Keith Packard | ab7ad7f | 2010-10-03 00:33:06 -0700 | [diff] [blame] | 880 | } else { |
Paulo Zanoni | 837ba00 | 2012-05-04 17:18:14 -0300 | [diff] [blame] | 881 | u32 last_line, line_mask; |
Chris Wilson | 58e10eb | 2010-10-03 10:56:11 +0100 | [diff] [blame] | 882 | int reg = PIPEDSL(pipe); |
Keith Packard | ab7ad7f | 2010-10-03 00:33:06 -0700 | [diff] [blame] | 883 | unsigned long timeout = jiffies + msecs_to_jiffies(100); |
| 884 | |
Paulo Zanoni | 837ba00 | 2012-05-04 17:18:14 -0300 | [diff] [blame] | 885 | if (IS_GEN2(dev)) |
| 886 | line_mask = DSL_LINEMASK_GEN2; |
| 887 | else |
| 888 | line_mask = DSL_LINEMASK_GEN3; |
| 889 | |
Keith Packard | ab7ad7f | 2010-10-03 00:33:06 -0700 | [diff] [blame] | 890 | /* Wait for the display line to settle */ |
| 891 | do { |
Paulo Zanoni | 837ba00 | 2012-05-04 17:18:14 -0300 | [diff] [blame] | 892 | last_line = I915_READ(reg) & line_mask; |
Keith Packard | ab7ad7f | 2010-10-03 00:33:06 -0700 | [diff] [blame] | 893 | mdelay(5); |
Paulo Zanoni | 837ba00 | 2012-05-04 17:18:14 -0300 | [diff] [blame] | 894 | } while (((I915_READ(reg) & line_mask) != last_line) && |
Keith Packard | ab7ad7f | 2010-10-03 00:33:06 -0700 | [diff] [blame] | 895 | time_after(timeout, jiffies)); |
| 896 | if (time_after(jiffies, timeout)) |
Daniel Vetter | 284637d | 2012-07-09 09:51:57 +0200 | [diff] [blame] | 897 | WARN(1, "pipe_off wait timed out\n"); |
Keith Packard | ab7ad7f | 2010-10-03 00:33:06 -0700 | [diff] [blame] | 898 | } |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 899 | } |
| 900 | |
Damien Lespiau | b0ea7d3 | 2012-12-13 16:09:00 +0000 | [diff] [blame] | 901 | /* |
| 902 | * ibx_digital_port_connected - is the specified port connected? |
| 903 | * @dev_priv: i915 private structure |
| 904 | * @port: the port to test |
| 905 | * |
| 906 | * Returns true if @port is connected, false otherwise. |
| 907 | */ |
| 908 | bool ibx_digital_port_connected(struct drm_i915_private *dev_priv, |
| 909 | struct intel_digital_port *port) |
| 910 | { |
| 911 | u32 bit; |
| 912 | |
Damien Lespiau | c36346e | 2012-12-13 16:09:03 +0000 | [diff] [blame] | 913 | if (HAS_PCH_IBX(dev_priv->dev)) { |
| 914 | switch(port->port) { |
| 915 | case PORT_B: |
| 916 | bit = SDE_PORTB_HOTPLUG; |
| 917 | break; |
| 918 | case PORT_C: |
| 919 | bit = SDE_PORTC_HOTPLUG; |
| 920 | break; |
| 921 | case PORT_D: |
| 922 | bit = SDE_PORTD_HOTPLUG; |
| 923 | break; |
| 924 | default: |
| 925 | return true; |
| 926 | } |
| 927 | } else { |
| 928 | switch(port->port) { |
| 929 | case PORT_B: |
| 930 | bit = SDE_PORTB_HOTPLUG_CPT; |
| 931 | break; |
| 932 | case PORT_C: |
| 933 | bit = SDE_PORTC_HOTPLUG_CPT; |
| 934 | break; |
| 935 | case PORT_D: |
| 936 | bit = SDE_PORTD_HOTPLUG_CPT; |
| 937 | break; |
| 938 | default: |
| 939 | return true; |
| 940 | } |
Damien Lespiau | b0ea7d3 | 2012-12-13 16:09:00 +0000 | [diff] [blame] | 941 | } |
| 942 | |
| 943 | return I915_READ(SDEISR) & bit; |
| 944 | } |
| 945 | |
Jesse Barnes | b24e717 | 2011-01-04 15:09:30 -0800 | [diff] [blame] | 946 | static const char *state_string(bool enabled) |
| 947 | { |
| 948 | return enabled ? "on" : "off"; |
| 949 | } |
| 950 | |
| 951 | /* Only for pre-ILK configs */ |
| 952 | static void assert_pll(struct drm_i915_private *dev_priv, |
| 953 | enum pipe pipe, bool state) |
| 954 | { |
| 955 | int reg; |
| 956 | u32 val; |
| 957 | bool cur_state; |
| 958 | |
| 959 | reg = DPLL(pipe); |
| 960 | val = I915_READ(reg); |
| 961 | cur_state = !!(val & DPLL_VCO_ENABLE); |
| 962 | WARN(cur_state != state, |
| 963 | "PLL state assertion failure (expected %s, current %s)\n", |
| 964 | state_string(state), state_string(cur_state)); |
| 965 | } |
| 966 | #define assert_pll_enabled(d, p) assert_pll(d, p, true) |
| 967 | #define assert_pll_disabled(d, p) assert_pll(d, p, false) |
| 968 | |
Jesse Barnes | 040484a | 2011-01-03 12:14:26 -0800 | [diff] [blame] | 969 | /* For ILK+ */ |
| 970 | static void assert_pch_pll(struct drm_i915_private *dev_priv, |
Chris Wilson | 92b27b0 | 2012-05-20 18:10:50 +0100 | [diff] [blame] | 971 | struct intel_pch_pll *pll, |
| 972 | struct intel_crtc *crtc, |
| 973 | bool state) |
Jesse Barnes | 040484a | 2011-01-03 12:14:26 -0800 | [diff] [blame] | 974 | { |
Jesse Barnes | 040484a | 2011-01-03 12:14:26 -0800 | [diff] [blame] | 975 | u32 val; |
| 976 | bool cur_state; |
| 977 | |
Eugeni Dodonov | 9d82aa1 | 2012-05-09 15:37:17 -0300 | [diff] [blame] | 978 | if (HAS_PCH_LPT(dev_priv->dev)) { |
| 979 | DRM_DEBUG_DRIVER("LPT detected: skipping PCH PLL test\n"); |
| 980 | return; |
| 981 | } |
| 982 | |
Chris Wilson | 92b27b0 | 2012-05-20 18:10:50 +0100 | [diff] [blame] | 983 | if (WARN (!pll, |
| 984 | "asserting PCH PLL %s with no PLL\n", state_string(state))) |
Jesse Barnes | ee7b9f9 | 2012-04-20 17:11:53 +0100 | [diff] [blame] | 985 | return; |
Jesse Barnes | ee7b9f9 | 2012-04-20 17:11:53 +0100 | [diff] [blame] | 986 | |
Chris Wilson | 92b27b0 | 2012-05-20 18:10:50 +0100 | [diff] [blame] | 987 | val = I915_READ(pll->pll_reg); |
| 988 | cur_state = !!(val & DPLL_VCO_ENABLE); |
| 989 | WARN(cur_state != state, |
| 990 | "PCH PLL state for reg %x assertion failure (expected %s, current %s), val=%08x\n", |
| 991 | pll->pll_reg, state_string(state), state_string(cur_state), val); |
| 992 | |
| 993 | /* Make sure the selected PLL is correctly attached to the transcoder */ |
| 994 | if (crtc && HAS_PCH_CPT(dev_priv->dev)) { |
Jesse Barnes | d3ccbe8 | 2011-10-12 09:27:42 -0700 | [diff] [blame] | 995 | u32 pch_dpll; |
| 996 | |
| 997 | pch_dpll = I915_READ(PCH_DPLL_SEL); |
Chris Wilson | 92b27b0 | 2012-05-20 18:10:50 +0100 | [diff] [blame] | 998 | cur_state = pll->pll_reg == _PCH_DPLL_B; |
| 999 | if (!WARN(((pch_dpll >> (4 * crtc->pipe)) & 1) != cur_state, |
Ville Syrjälä | 4bb6f1f | 2013-04-17 17:48:50 +0300 | [diff] [blame] | 1000 | "PLL[%d] not attached to this transcoder %c: %08x\n", |
| 1001 | cur_state, pipe_name(crtc->pipe), pch_dpll)) { |
Chris Wilson | 92b27b0 | 2012-05-20 18:10:50 +0100 | [diff] [blame] | 1002 | cur_state = !!(val >> (4*crtc->pipe + 3)); |
| 1003 | WARN(cur_state != state, |
Ville Syrjälä | 4bb6f1f | 2013-04-17 17:48:50 +0300 | [diff] [blame] | 1004 | "PLL[%d] not %s on this transcoder %c: %08x\n", |
Chris Wilson | 92b27b0 | 2012-05-20 18:10:50 +0100 | [diff] [blame] | 1005 | pll->pll_reg == _PCH_DPLL_B, |
| 1006 | state_string(state), |
Ville Syrjälä | 4bb6f1f | 2013-04-17 17:48:50 +0300 | [diff] [blame] | 1007 | pipe_name(crtc->pipe), |
Chris Wilson | 92b27b0 | 2012-05-20 18:10:50 +0100 | [diff] [blame] | 1008 | val); |
| 1009 | } |
Jesse Barnes | d3ccbe8 | 2011-10-12 09:27:42 -0700 | [diff] [blame] | 1010 | } |
Jesse Barnes | 040484a | 2011-01-03 12:14:26 -0800 | [diff] [blame] | 1011 | } |
Chris Wilson | 92b27b0 | 2012-05-20 18:10:50 +0100 | [diff] [blame] | 1012 | #define assert_pch_pll_enabled(d, p, c) assert_pch_pll(d, p, c, true) |
| 1013 | #define assert_pch_pll_disabled(d, p, c) assert_pch_pll(d, p, c, false) |
Jesse Barnes | 040484a | 2011-01-03 12:14:26 -0800 | [diff] [blame] | 1014 | |
| 1015 | static void assert_fdi_tx(struct drm_i915_private *dev_priv, |
| 1016 | enum pipe pipe, bool state) |
| 1017 | { |
| 1018 | int reg; |
| 1019 | u32 val; |
| 1020 | bool cur_state; |
Paulo Zanoni | ad80a81 | 2012-10-24 16:06:19 -0200 | [diff] [blame] | 1021 | enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv, |
| 1022 | pipe); |
Jesse Barnes | 040484a | 2011-01-03 12:14:26 -0800 | [diff] [blame] | 1023 | |
Paulo Zanoni | affa935 | 2012-11-23 15:30:39 -0200 | [diff] [blame] | 1024 | if (HAS_DDI(dev_priv->dev)) { |
| 1025 | /* DDI does not have a specific FDI_TX register */ |
Paulo Zanoni | ad80a81 | 2012-10-24 16:06:19 -0200 | [diff] [blame] | 1026 | reg = TRANS_DDI_FUNC_CTL(cpu_transcoder); |
Eugeni Dodonov | bf507ef | 2012-05-09 15:37:18 -0300 | [diff] [blame] | 1027 | val = I915_READ(reg); |
Paulo Zanoni | ad80a81 | 2012-10-24 16:06:19 -0200 | [diff] [blame] | 1028 | cur_state = !!(val & TRANS_DDI_FUNC_ENABLE); |
Eugeni Dodonov | bf507ef | 2012-05-09 15:37:18 -0300 | [diff] [blame] | 1029 | } else { |
| 1030 | reg = FDI_TX_CTL(pipe); |
| 1031 | val = I915_READ(reg); |
| 1032 | cur_state = !!(val & FDI_TX_ENABLE); |
| 1033 | } |
Jesse Barnes | 040484a | 2011-01-03 12:14:26 -0800 | [diff] [blame] | 1034 | WARN(cur_state != state, |
| 1035 | "FDI TX state assertion failure (expected %s, current %s)\n", |
| 1036 | state_string(state), state_string(cur_state)); |
| 1037 | } |
| 1038 | #define assert_fdi_tx_enabled(d, p) assert_fdi_tx(d, p, true) |
| 1039 | #define assert_fdi_tx_disabled(d, p) assert_fdi_tx(d, p, false) |
| 1040 | |
| 1041 | static void assert_fdi_rx(struct drm_i915_private *dev_priv, |
| 1042 | enum pipe pipe, bool state) |
| 1043 | { |
| 1044 | int reg; |
| 1045 | u32 val; |
| 1046 | bool cur_state; |
| 1047 | |
Paulo Zanoni | d63fa0d | 2012-11-20 13:27:35 -0200 | [diff] [blame] | 1048 | reg = FDI_RX_CTL(pipe); |
| 1049 | val = I915_READ(reg); |
| 1050 | cur_state = !!(val & FDI_RX_ENABLE); |
Jesse Barnes | 040484a | 2011-01-03 12:14:26 -0800 | [diff] [blame] | 1051 | WARN(cur_state != state, |
| 1052 | "FDI RX state assertion failure (expected %s, current %s)\n", |
| 1053 | state_string(state), state_string(cur_state)); |
| 1054 | } |
| 1055 | #define assert_fdi_rx_enabled(d, p) assert_fdi_rx(d, p, true) |
| 1056 | #define assert_fdi_rx_disabled(d, p) assert_fdi_rx(d, p, false) |
| 1057 | |
| 1058 | static void assert_fdi_tx_pll_enabled(struct drm_i915_private *dev_priv, |
| 1059 | enum pipe pipe) |
| 1060 | { |
| 1061 | int reg; |
| 1062 | u32 val; |
| 1063 | |
| 1064 | /* ILK FDI PLL is always enabled */ |
| 1065 | if (dev_priv->info->gen == 5) |
| 1066 | return; |
| 1067 | |
Eugeni Dodonov | bf507ef | 2012-05-09 15:37:18 -0300 | [diff] [blame] | 1068 | /* On Haswell, DDI ports are responsible for the FDI PLL setup */ |
Paulo Zanoni | affa935 | 2012-11-23 15:30:39 -0200 | [diff] [blame] | 1069 | if (HAS_DDI(dev_priv->dev)) |
Eugeni Dodonov | bf507ef | 2012-05-09 15:37:18 -0300 | [diff] [blame] | 1070 | return; |
| 1071 | |
Jesse Barnes | 040484a | 2011-01-03 12:14:26 -0800 | [diff] [blame] | 1072 | reg = FDI_TX_CTL(pipe); |
| 1073 | val = I915_READ(reg); |
| 1074 | WARN(!(val & FDI_TX_PLL_ENABLE), "FDI TX PLL assertion failure, should be active but is disabled\n"); |
| 1075 | } |
| 1076 | |
| 1077 | static void assert_fdi_rx_pll_enabled(struct drm_i915_private *dev_priv, |
| 1078 | enum pipe pipe) |
| 1079 | { |
| 1080 | int reg; |
| 1081 | u32 val; |
| 1082 | |
| 1083 | reg = FDI_RX_CTL(pipe); |
| 1084 | val = I915_READ(reg); |
| 1085 | WARN(!(val & FDI_RX_PLL_ENABLE), "FDI RX PLL assertion failure, should be active but is disabled\n"); |
| 1086 | } |
| 1087 | |
Jesse Barnes | ea0760c | 2011-01-04 15:09:32 -0800 | [diff] [blame] | 1088 | static void assert_panel_unlocked(struct drm_i915_private *dev_priv, |
| 1089 | enum pipe pipe) |
| 1090 | { |
| 1091 | int pp_reg, lvds_reg; |
| 1092 | u32 val; |
| 1093 | enum pipe panel_pipe = PIPE_A; |
Thomas Jarosch | 0de3b48 | 2011-08-25 15:37:45 +0200 | [diff] [blame] | 1094 | bool locked = true; |
Jesse Barnes | ea0760c | 2011-01-04 15:09:32 -0800 | [diff] [blame] | 1095 | |
| 1096 | if (HAS_PCH_SPLIT(dev_priv->dev)) { |
| 1097 | pp_reg = PCH_PP_CONTROL; |
| 1098 | lvds_reg = PCH_LVDS; |
| 1099 | } else { |
| 1100 | pp_reg = PP_CONTROL; |
| 1101 | lvds_reg = LVDS; |
| 1102 | } |
| 1103 | |
| 1104 | val = I915_READ(pp_reg); |
| 1105 | if (!(val & PANEL_POWER_ON) || |
| 1106 | ((val & PANEL_UNLOCK_REGS) == PANEL_UNLOCK_REGS)) |
| 1107 | locked = false; |
| 1108 | |
| 1109 | if (I915_READ(lvds_reg) & LVDS_PIPEB_SELECT) |
| 1110 | panel_pipe = PIPE_B; |
| 1111 | |
| 1112 | WARN(panel_pipe == pipe && locked, |
| 1113 | "panel assertion failure, pipe %c regs locked\n", |
Jesse Barnes | 9db4a9c | 2011-02-07 12:26:52 -0800 | [diff] [blame] | 1114 | pipe_name(pipe)); |
Jesse Barnes | ea0760c | 2011-01-04 15:09:32 -0800 | [diff] [blame] | 1115 | } |
| 1116 | |
Jesse Barnes | b840d907f | 2011-12-13 13:19:38 -0800 | [diff] [blame] | 1117 | void assert_pipe(struct drm_i915_private *dev_priv, |
| 1118 | enum pipe pipe, bool state) |
Jesse Barnes | b24e717 | 2011-01-04 15:09:30 -0800 | [diff] [blame] | 1119 | { |
| 1120 | int reg; |
| 1121 | u32 val; |
Jesse Barnes | 63d7bbe | 2011-01-04 15:09:33 -0800 | [diff] [blame] | 1122 | bool cur_state; |
Paulo Zanoni | 702e7a5 | 2012-10-23 18:29:59 -0200 | [diff] [blame] | 1123 | enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv, |
| 1124 | pipe); |
Jesse Barnes | b24e717 | 2011-01-04 15:09:30 -0800 | [diff] [blame] | 1125 | |
Daniel Vetter | 8e63678 | 2012-01-22 01:36:48 +0100 | [diff] [blame] | 1126 | /* if we need the pipe A quirk it must be always on */ |
| 1127 | if (pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) |
| 1128 | state = true; |
| 1129 | |
Paulo Zanoni | b97186f | 2013-05-03 12:15:36 -0300 | [diff] [blame] | 1130 | if (!intel_display_power_enabled(dev_priv->dev, |
| 1131 | POWER_DOMAIN_TRANSCODER(cpu_transcoder))) { |
Paulo Zanoni | 6931016 | 2013-01-29 16:35:19 -0200 | [diff] [blame] | 1132 | cur_state = false; |
| 1133 | } else { |
| 1134 | reg = PIPECONF(cpu_transcoder); |
| 1135 | val = I915_READ(reg); |
| 1136 | cur_state = !!(val & PIPECONF_ENABLE); |
| 1137 | } |
| 1138 | |
Jesse Barnes | 63d7bbe | 2011-01-04 15:09:33 -0800 | [diff] [blame] | 1139 | WARN(cur_state != state, |
| 1140 | "pipe %c assertion failure (expected %s, current %s)\n", |
Jesse Barnes | 9db4a9c | 2011-02-07 12:26:52 -0800 | [diff] [blame] | 1141 | pipe_name(pipe), state_string(state), state_string(cur_state)); |
Jesse Barnes | b24e717 | 2011-01-04 15:09:30 -0800 | [diff] [blame] | 1142 | } |
| 1143 | |
Chris Wilson | 931872f | 2012-01-16 23:01:13 +0000 | [diff] [blame] | 1144 | static void assert_plane(struct drm_i915_private *dev_priv, |
| 1145 | enum plane plane, bool state) |
Jesse Barnes | b24e717 | 2011-01-04 15:09:30 -0800 | [diff] [blame] | 1146 | { |
| 1147 | int reg; |
| 1148 | u32 val; |
Chris Wilson | 931872f | 2012-01-16 23:01:13 +0000 | [diff] [blame] | 1149 | bool cur_state; |
Jesse Barnes | b24e717 | 2011-01-04 15:09:30 -0800 | [diff] [blame] | 1150 | |
| 1151 | reg = DSPCNTR(plane); |
| 1152 | val = I915_READ(reg); |
Chris Wilson | 931872f | 2012-01-16 23:01:13 +0000 | [diff] [blame] | 1153 | cur_state = !!(val & DISPLAY_PLANE_ENABLE); |
| 1154 | WARN(cur_state != state, |
| 1155 | "plane %c assertion failure (expected %s, current %s)\n", |
| 1156 | plane_name(plane), state_string(state), state_string(cur_state)); |
Jesse Barnes | b24e717 | 2011-01-04 15:09:30 -0800 | [diff] [blame] | 1157 | } |
| 1158 | |
Chris Wilson | 931872f | 2012-01-16 23:01:13 +0000 | [diff] [blame] | 1159 | #define assert_plane_enabled(d, p) assert_plane(d, p, true) |
| 1160 | #define assert_plane_disabled(d, p) assert_plane(d, p, false) |
| 1161 | |
Jesse Barnes | b24e717 | 2011-01-04 15:09:30 -0800 | [diff] [blame] | 1162 | static void assert_planes_disabled(struct drm_i915_private *dev_priv, |
| 1163 | enum pipe pipe) |
| 1164 | { |
| 1165 | int reg, i; |
| 1166 | u32 val; |
| 1167 | int cur_pipe; |
| 1168 | |
Jesse Barnes | 19ec135 | 2011-02-02 12:28:02 -0800 | [diff] [blame] | 1169 | /* Planes are fixed to pipes on ILK+ */ |
Jesse Barnes | da6ecc5 | 2013-03-08 10:46:00 -0800 | [diff] [blame] | 1170 | if (HAS_PCH_SPLIT(dev_priv->dev) || IS_VALLEYVIEW(dev_priv->dev)) { |
Adam Jackson | 28c05794 | 2011-10-07 14:38:42 -0400 | [diff] [blame] | 1171 | reg = DSPCNTR(pipe); |
| 1172 | val = I915_READ(reg); |
| 1173 | WARN((val & DISPLAY_PLANE_ENABLE), |
| 1174 | "plane %c assertion failure, should be disabled but not\n", |
| 1175 | plane_name(pipe)); |
Jesse Barnes | 19ec135 | 2011-02-02 12:28:02 -0800 | [diff] [blame] | 1176 | return; |
Adam Jackson | 28c05794 | 2011-10-07 14:38:42 -0400 | [diff] [blame] | 1177 | } |
Jesse Barnes | 19ec135 | 2011-02-02 12:28:02 -0800 | [diff] [blame] | 1178 | |
Jesse Barnes | b24e717 | 2011-01-04 15:09:30 -0800 | [diff] [blame] | 1179 | /* Need to check both planes against the pipe */ |
| 1180 | for (i = 0; i < 2; i++) { |
| 1181 | reg = DSPCNTR(i); |
| 1182 | val = I915_READ(reg); |
| 1183 | cur_pipe = (val & DISPPLANE_SEL_PIPE_MASK) >> |
| 1184 | DISPPLANE_SEL_PIPE_SHIFT; |
| 1185 | WARN((val & DISPLAY_PLANE_ENABLE) && pipe == cur_pipe, |
Jesse Barnes | 9db4a9c | 2011-02-07 12:26:52 -0800 | [diff] [blame] | 1186 | "plane %c assertion failure, should be off on pipe %c but is still active\n", |
| 1187 | plane_name(i), pipe_name(pipe)); |
Jesse Barnes | b24e717 | 2011-01-04 15:09:30 -0800 | [diff] [blame] | 1188 | } |
| 1189 | } |
| 1190 | |
Jesse Barnes | 19332d7 | 2013-03-28 09:55:38 -0700 | [diff] [blame] | 1191 | static void assert_sprites_disabled(struct drm_i915_private *dev_priv, |
| 1192 | enum pipe pipe) |
| 1193 | { |
| 1194 | int reg, i; |
| 1195 | u32 val; |
| 1196 | |
| 1197 | if (!IS_VALLEYVIEW(dev_priv->dev)) |
| 1198 | return; |
| 1199 | |
| 1200 | /* Need to check both planes against the pipe */ |
| 1201 | for (i = 0; i < dev_priv->num_plane; i++) { |
| 1202 | reg = SPCNTR(pipe, i); |
| 1203 | val = I915_READ(reg); |
| 1204 | WARN((val & SP_ENABLE), |
Ville Syrjälä | 06da8da | 2013-04-17 17:48:51 +0300 | [diff] [blame] | 1205 | "sprite %c assertion failure, should be off on pipe %c but is still active\n", |
| 1206 | sprite_name(pipe, i), pipe_name(pipe)); |
Jesse Barnes | 19332d7 | 2013-03-28 09:55:38 -0700 | [diff] [blame] | 1207 | } |
| 1208 | } |
| 1209 | |
Jesse Barnes | 92f2584 | 2011-01-04 15:09:34 -0800 | [diff] [blame] | 1210 | static void assert_pch_refclk_enabled(struct drm_i915_private *dev_priv) |
| 1211 | { |
| 1212 | u32 val; |
| 1213 | bool enabled; |
| 1214 | |
Eugeni Dodonov | 9d82aa1 | 2012-05-09 15:37:17 -0300 | [diff] [blame] | 1215 | if (HAS_PCH_LPT(dev_priv->dev)) { |
| 1216 | DRM_DEBUG_DRIVER("LPT does not has PCH refclk, skipping check\n"); |
| 1217 | return; |
| 1218 | } |
| 1219 | |
Jesse Barnes | 92f2584 | 2011-01-04 15:09:34 -0800 | [diff] [blame] | 1220 | val = I915_READ(PCH_DREF_CONTROL); |
| 1221 | enabled = !!(val & (DREF_SSC_SOURCE_MASK | DREF_NONSPREAD_SOURCE_MASK | |
| 1222 | DREF_SUPERSPREAD_SOURCE_MASK)); |
| 1223 | WARN(!enabled, "PCH refclk assertion failure, should be active but is disabled\n"); |
| 1224 | } |
| 1225 | |
Daniel Vetter | ab9412b | 2013-05-03 11:49:46 +0200 | [diff] [blame] | 1226 | static void assert_pch_transcoder_disabled(struct drm_i915_private *dev_priv, |
| 1227 | enum pipe pipe) |
Jesse Barnes | 92f2584 | 2011-01-04 15:09:34 -0800 | [diff] [blame] | 1228 | { |
| 1229 | int reg; |
| 1230 | u32 val; |
| 1231 | bool enabled; |
| 1232 | |
Daniel Vetter | ab9412b | 2013-05-03 11:49:46 +0200 | [diff] [blame] | 1233 | reg = PCH_TRANSCONF(pipe); |
Jesse Barnes | 92f2584 | 2011-01-04 15:09:34 -0800 | [diff] [blame] | 1234 | val = I915_READ(reg); |
| 1235 | enabled = !!(val & TRANS_ENABLE); |
Jesse Barnes | 9db4a9c | 2011-02-07 12:26:52 -0800 | [diff] [blame] | 1236 | WARN(enabled, |
| 1237 | "transcoder assertion failed, should be off on pipe %c but is still active\n", |
| 1238 | pipe_name(pipe)); |
Jesse Barnes | 92f2584 | 2011-01-04 15:09:34 -0800 | [diff] [blame] | 1239 | } |
| 1240 | |
Keith Packard | 4e63438 | 2011-08-06 10:39:45 -0700 | [diff] [blame] | 1241 | static bool dp_pipe_enabled(struct drm_i915_private *dev_priv, |
| 1242 | enum pipe pipe, u32 port_sel, u32 val) |
Keith Packard | f0575e9 | 2011-07-25 22:12:43 -0700 | [diff] [blame] | 1243 | { |
| 1244 | if ((val & DP_PORT_EN) == 0) |
| 1245 | return false; |
| 1246 | |
| 1247 | if (HAS_PCH_CPT(dev_priv->dev)) { |
| 1248 | u32 trans_dp_ctl_reg = TRANS_DP_CTL(pipe); |
| 1249 | u32 trans_dp_ctl = I915_READ(trans_dp_ctl_reg); |
| 1250 | if ((trans_dp_ctl & TRANS_DP_PORT_SEL_MASK) != port_sel) |
| 1251 | return false; |
| 1252 | } else { |
| 1253 | if ((val & DP_PIPE_MASK) != (pipe << 30)) |
| 1254 | return false; |
| 1255 | } |
| 1256 | return true; |
| 1257 | } |
| 1258 | |
Keith Packard | 1519b99 | 2011-08-06 10:35:34 -0700 | [diff] [blame] | 1259 | static bool hdmi_pipe_enabled(struct drm_i915_private *dev_priv, |
| 1260 | enum pipe pipe, u32 val) |
| 1261 | { |
Paulo Zanoni | dc0fa71 | 2013-02-19 16:21:46 -0300 | [diff] [blame] | 1262 | if ((val & SDVO_ENABLE) == 0) |
Keith Packard | 1519b99 | 2011-08-06 10:35:34 -0700 | [diff] [blame] | 1263 | return false; |
| 1264 | |
| 1265 | if (HAS_PCH_CPT(dev_priv->dev)) { |
Paulo Zanoni | dc0fa71 | 2013-02-19 16:21:46 -0300 | [diff] [blame] | 1266 | if ((val & SDVO_PIPE_SEL_MASK_CPT) != SDVO_PIPE_SEL_CPT(pipe)) |
Keith Packard | 1519b99 | 2011-08-06 10:35:34 -0700 | [diff] [blame] | 1267 | return false; |
| 1268 | } else { |
Paulo Zanoni | dc0fa71 | 2013-02-19 16:21:46 -0300 | [diff] [blame] | 1269 | if ((val & SDVO_PIPE_SEL_MASK) != SDVO_PIPE_SEL(pipe)) |
Keith Packard | 1519b99 | 2011-08-06 10:35:34 -0700 | [diff] [blame] | 1270 | return false; |
| 1271 | } |
| 1272 | return true; |
| 1273 | } |
| 1274 | |
| 1275 | static bool lvds_pipe_enabled(struct drm_i915_private *dev_priv, |
| 1276 | enum pipe pipe, u32 val) |
| 1277 | { |
| 1278 | if ((val & LVDS_PORT_EN) == 0) |
| 1279 | return false; |
| 1280 | |
| 1281 | if (HAS_PCH_CPT(dev_priv->dev)) { |
| 1282 | if ((val & PORT_TRANS_SEL_MASK) != PORT_TRANS_SEL_CPT(pipe)) |
| 1283 | return false; |
| 1284 | } else { |
| 1285 | if ((val & LVDS_PIPE_MASK) != LVDS_PIPE(pipe)) |
| 1286 | return false; |
| 1287 | } |
| 1288 | return true; |
| 1289 | } |
| 1290 | |
| 1291 | static bool adpa_pipe_enabled(struct drm_i915_private *dev_priv, |
| 1292 | enum pipe pipe, u32 val) |
| 1293 | { |
| 1294 | if ((val & ADPA_DAC_ENABLE) == 0) |
| 1295 | return false; |
| 1296 | if (HAS_PCH_CPT(dev_priv->dev)) { |
| 1297 | if ((val & PORT_TRANS_SEL_MASK) != PORT_TRANS_SEL_CPT(pipe)) |
| 1298 | return false; |
| 1299 | } else { |
| 1300 | if ((val & ADPA_PIPE_SELECT_MASK) != ADPA_PIPE_SELECT(pipe)) |
| 1301 | return false; |
| 1302 | } |
| 1303 | return true; |
| 1304 | } |
| 1305 | |
Jesse Barnes | 291906f | 2011-02-02 12:28:03 -0800 | [diff] [blame] | 1306 | static void assert_pch_dp_disabled(struct drm_i915_private *dev_priv, |
Keith Packard | f0575e9 | 2011-07-25 22:12:43 -0700 | [diff] [blame] | 1307 | enum pipe pipe, int reg, u32 port_sel) |
Jesse Barnes | 291906f | 2011-02-02 12:28:03 -0800 | [diff] [blame] | 1308 | { |
Jesse Barnes | 47a05ec | 2011-02-07 13:46:40 -0800 | [diff] [blame] | 1309 | u32 val = I915_READ(reg); |
Keith Packard | 4e63438 | 2011-08-06 10:39:45 -0700 | [diff] [blame] | 1310 | WARN(dp_pipe_enabled(dev_priv, pipe, port_sel, val), |
Jesse Barnes | 291906f | 2011-02-02 12:28:03 -0800 | [diff] [blame] | 1311 | "PCH DP (0x%08x) enabled on transcoder %c, should be disabled\n", |
Jesse Barnes | 9db4a9c | 2011-02-07 12:26:52 -0800 | [diff] [blame] | 1312 | reg, pipe_name(pipe)); |
Daniel Vetter | de9a35a | 2012-06-05 11:03:40 +0200 | [diff] [blame] | 1313 | |
Daniel Vetter | 75c5da2 | 2012-09-10 21:58:29 +0200 | [diff] [blame] | 1314 | WARN(HAS_PCH_IBX(dev_priv->dev) && (val & DP_PORT_EN) == 0 |
| 1315 | && (val & DP_PIPEB_SELECT), |
Daniel Vetter | de9a35a | 2012-06-05 11:03:40 +0200 | [diff] [blame] | 1316 | "IBX PCH dp port still using transcoder B\n"); |
Jesse Barnes | 291906f | 2011-02-02 12:28:03 -0800 | [diff] [blame] | 1317 | } |
| 1318 | |
| 1319 | static void assert_pch_hdmi_disabled(struct drm_i915_private *dev_priv, |
| 1320 | enum pipe pipe, int reg) |
| 1321 | { |
Jesse Barnes | 47a05ec | 2011-02-07 13:46:40 -0800 | [diff] [blame] | 1322 | u32 val = I915_READ(reg); |
Xu, Anhua | b70ad58 | 2012-08-13 03:08:33 +0000 | [diff] [blame] | 1323 | WARN(hdmi_pipe_enabled(dev_priv, pipe, val), |
Adam Jackson | 23c99e7 | 2011-10-07 14:38:43 -0400 | [diff] [blame] | 1324 | "PCH HDMI (0x%08x) enabled on transcoder %c, should be disabled\n", |
Jesse Barnes | 9db4a9c | 2011-02-07 12:26:52 -0800 | [diff] [blame] | 1325 | reg, pipe_name(pipe)); |
Daniel Vetter | de9a35a | 2012-06-05 11:03:40 +0200 | [diff] [blame] | 1326 | |
Paulo Zanoni | dc0fa71 | 2013-02-19 16:21:46 -0300 | [diff] [blame] | 1327 | WARN(HAS_PCH_IBX(dev_priv->dev) && (val & SDVO_ENABLE) == 0 |
Daniel Vetter | 75c5da2 | 2012-09-10 21:58:29 +0200 | [diff] [blame] | 1328 | && (val & SDVO_PIPE_B_SELECT), |
Daniel Vetter | de9a35a | 2012-06-05 11:03:40 +0200 | [diff] [blame] | 1329 | "IBX PCH hdmi port still using transcoder B\n"); |
Jesse Barnes | 291906f | 2011-02-02 12:28:03 -0800 | [diff] [blame] | 1330 | } |
| 1331 | |
| 1332 | static void assert_pch_ports_disabled(struct drm_i915_private *dev_priv, |
| 1333 | enum pipe pipe) |
| 1334 | { |
| 1335 | int reg; |
| 1336 | u32 val; |
Jesse Barnes | 291906f | 2011-02-02 12:28:03 -0800 | [diff] [blame] | 1337 | |
Keith Packard | f0575e9 | 2011-07-25 22:12:43 -0700 | [diff] [blame] | 1338 | assert_pch_dp_disabled(dev_priv, pipe, PCH_DP_B, TRANS_DP_PORT_SEL_B); |
| 1339 | assert_pch_dp_disabled(dev_priv, pipe, PCH_DP_C, TRANS_DP_PORT_SEL_C); |
| 1340 | assert_pch_dp_disabled(dev_priv, pipe, PCH_DP_D, TRANS_DP_PORT_SEL_D); |
Jesse Barnes | 291906f | 2011-02-02 12:28:03 -0800 | [diff] [blame] | 1341 | |
| 1342 | reg = PCH_ADPA; |
| 1343 | val = I915_READ(reg); |
Xu, Anhua | b70ad58 | 2012-08-13 03:08:33 +0000 | [diff] [blame] | 1344 | WARN(adpa_pipe_enabled(dev_priv, pipe, val), |
Jesse Barnes | 291906f | 2011-02-02 12:28:03 -0800 | [diff] [blame] | 1345 | "PCH VGA enabled on transcoder %c, should be disabled\n", |
Jesse Barnes | 9db4a9c | 2011-02-07 12:26:52 -0800 | [diff] [blame] | 1346 | pipe_name(pipe)); |
Jesse Barnes | 291906f | 2011-02-02 12:28:03 -0800 | [diff] [blame] | 1347 | |
| 1348 | reg = PCH_LVDS; |
| 1349 | val = I915_READ(reg); |
Xu, Anhua | b70ad58 | 2012-08-13 03:08:33 +0000 | [diff] [blame] | 1350 | WARN(lvds_pipe_enabled(dev_priv, pipe, val), |
Jesse Barnes | 291906f | 2011-02-02 12:28:03 -0800 | [diff] [blame] | 1351 | "PCH LVDS enabled on transcoder %c, should be disabled\n", |
Jesse Barnes | 9db4a9c | 2011-02-07 12:26:52 -0800 | [diff] [blame] | 1352 | pipe_name(pipe)); |
Jesse Barnes | 291906f | 2011-02-02 12:28:03 -0800 | [diff] [blame] | 1353 | |
Paulo Zanoni | e2debe9 | 2013-02-18 19:00:27 -0300 | [diff] [blame] | 1354 | assert_pch_hdmi_disabled(dev_priv, pipe, PCH_HDMIB); |
| 1355 | assert_pch_hdmi_disabled(dev_priv, pipe, PCH_HDMIC); |
| 1356 | assert_pch_hdmi_disabled(dev_priv, pipe, PCH_HDMID); |
Jesse Barnes | 291906f | 2011-02-02 12:28:03 -0800 | [diff] [blame] | 1357 | } |
| 1358 | |
Jesse Barnes | b24e717 | 2011-01-04 15:09:30 -0800 | [diff] [blame] | 1359 | /** |
Jesse Barnes | 63d7bbe | 2011-01-04 15:09:33 -0800 | [diff] [blame] | 1360 | * intel_enable_pll - enable a PLL |
| 1361 | * @dev_priv: i915 private structure |
| 1362 | * @pipe: pipe PLL to enable |
| 1363 | * |
| 1364 | * Enable @pipe's PLL so we can start pumping pixels from a plane. Check to |
| 1365 | * make sure the PLL reg is writable first though, since the panel write |
| 1366 | * protect mechanism may be enabled. |
| 1367 | * |
| 1368 | * Note! This is for pre-ILK only. |
Thomas Richter | 7434a25 | 2012-07-18 19:22:30 +0200 | [diff] [blame] | 1369 | * |
| 1370 | * Unfortunately needed by dvo_ns2501 since the dvo depends on it running. |
Jesse Barnes | 63d7bbe | 2011-01-04 15:09:33 -0800 | [diff] [blame] | 1371 | */ |
| 1372 | static void intel_enable_pll(struct drm_i915_private *dev_priv, enum pipe pipe) |
| 1373 | { |
| 1374 | int reg; |
| 1375 | u32 val; |
| 1376 | |
Daniel Vetter | 58c6eaa | 2013-04-11 16:29:09 +0200 | [diff] [blame] | 1377 | assert_pipe_disabled(dev_priv, pipe); |
| 1378 | |
Jesse Barnes | 63d7bbe | 2011-01-04 15:09:33 -0800 | [diff] [blame] | 1379 | /* No really, not for ILK+ */ |
Jesse Barnes | a0c4da24 | 2012-06-15 11:55:13 -0700 | [diff] [blame] | 1380 | BUG_ON(!IS_VALLEYVIEW(dev_priv->dev) && dev_priv->info->gen >= 5); |
Jesse Barnes | 63d7bbe | 2011-01-04 15:09:33 -0800 | [diff] [blame] | 1381 | |
| 1382 | /* PLL is protected by panel, make sure we can write it */ |
| 1383 | if (IS_MOBILE(dev_priv->dev) && !IS_I830(dev_priv->dev)) |
| 1384 | assert_panel_unlocked(dev_priv, pipe); |
| 1385 | |
| 1386 | reg = DPLL(pipe); |
| 1387 | val = I915_READ(reg); |
| 1388 | val |= DPLL_VCO_ENABLE; |
| 1389 | |
| 1390 | /* We do this three times for luck */ |
| 1391 | I915_WRITE(reg, val); |
| 1392 | POSTING_READ(reg); |
| 1393 | udelay(150); /* wait for warmup */ |
| 1394 | I915_WRITE(reg, val); |
| 1395 | POSTING_READ(reg); |
| 1396 | udelay(150); /* wait for warmup */ |
| 1397 | I915_WRITE(reg, val); |
| 1398 | POSTING_READ(reg); |
| 1399 | udelay(150); /* wait for warmup */ |
| 1400 | } |
| 1401 | |
| 1402 | /** |
| 1403 | * intel_disable_pll - disable a PLL |
| 1404 | * @dev_priv: i915 private structure |
| 1405 | * @pipe: pipe PLL to disable |
| 1406 | * |
| 1407 | * Disable the PLL for @pipe, making sure the pipe is off first. |
| 1408 | * |
| 1409 | * Note! This is for pre-ILK only. |
| 1410 | */ |
| 1411 | static void intel_disable_pll(struct drm_i915_private *dev_priv, enum pipe pipe) |
| 1412 | { |
| 1413 | int reg; |
| 1414 | u32 val; |
| 1415 | |
| 1416 | /* Don't disable pipe A or pipe A PLLs if needed */ |
| 1417 | if (pipe == PIPE_A && (dev_priv->quirks & QUIRK_PIPEA_FORCE)) |
| 1418 | return; |
| 1419 | |
| 1420 | /* Make sure the pipe isn't still relying on us */ |
| 1421 | assert_pipe_disabled(dev_priv, pipe); |
| 1422 | |
| 1423 | reg = DPLL(pipe); |
| 1424 | val = I915_READ(reg); |
| 1425 | val &= ~DPLL_VCO_ENABLE; |
| 1426 | I915_WRITE(reg, val); |
| 1427 | POSTING_READ(reg); |
| 1428 | } |
| 1429 | |
Jesse Barnes | 89b667f | 2013-04-18 14:51:36 -0700 | [diff] [blame] | 1430 | void vlv_wait_port_ready(struct drm_i915_private *dev_priv, int port) |
| 1431 | { |
| 1432 | u32 port_mask; |
| 1433 | |
| 1434 | if (!port) |
| 1435 | port_mask = DPLL_PORTB_READY_MASK; |
| 1436 | else |
| 1437 | port_mask = DPLL_PORTC_READY_MASK; |
| 1438 | |
| 1439 | if (wait_for((I915_READ(DPLL(0)) & port_mask) == 0, 1000)) |
| 1440 | WARN(1, "timed out waiting for port %c ready: 0x%08x\n", |
| 1441 | 'B' + port, I915_READ(DPLL(0))); |
| 1442 | } |
| 1443 | |
Jesse Barnes | 63d7bbe | 2011-01-04 15:09:33 -0800 | [diff] [blame] | 1444 | /** |
Paulo Zanoni | b6b4e18 | 2012-10-31 18:12:38 -0200 | [diff] [blame] | 1445 | * ironlake_enable_pch_pll - enable PCH PLL |
Jesse Barnes | 92f2584 | 2011-01-04 15:09:34 -0800 | [diff] [blame] | 1446 | * @dev_priv: i915 private structure |
| 1447 | * @pipe: pipe PLL to enable |
| 1448 | * |
| 1449 | * The PCH PLL needs to be enabled before the PCH transcoder, since it |
| 1450 | * drives the transcoder clock. |
| 1451 | */ |
Paulo Zanoni | b6b4e18 | 2012-10-31 18:12:38 -0200 | [diff] [blame] | 1452 | static void ironlake_enable_pch_pll(struct intel_crtc *intel_crtc) |
Jesse Barnes | 92f2584 | 2011-01-04 15:09:34 -0800 | [diff] [blame] | 1453 | { |
Jesse Barnes | ee7b9f9 | 2012-04-20 17:11:53 +0100 | [diff] [blame] | 1454 | struct drm_i915_private *dev_priv = intel_crtc->base.dev->dev_private; |
Chris Wilson | 48da64a | 2012-05-13 20:16:12 +0100 | [diff] [blame] | 1455 | struct intel_pch_pll *pll; |
Jesse Barnes | 92f2584 | 2011-01-04 15:09:34 -0800 | [diff] [blame] | 1456 | int reg; |
| 1457 | u32 val; |
| 1458 | |
Chris Wilson | 48da64a | 2012-05-13 20:16:12 +0100 | [diff] [blame] | 1459 | /* PCH PLLs only available on ILK, SNB and IVB */ |
Jesse Barnes | 92f2584 | 2011-01-04 15:09:34 -0800 | [diff] [blame] | 1460 | BUG_ON(dev_priv->info->gen < 5); |
Chris Wilson | 48da64a | 2012-05-13 20:16:12 +0100 | [diff] [blame] | 1461 | pll = intel_crtc->pch_pll; |
| 1462 | if (pll == NULL) |
| 1463 | return; |
| 1464 | |
| 1465 | if (WARN_ON(pll->refcount == 0)) |
| 1466 | return; |
Jesse Barnes | ee7b9f9 | 2012-04-20 17:11:53 +0100 | [diff] [blame] | 1467 | |
| 1468 | DRM_DEBUG_KMS("enable PCH PLL %x (active %d, on? %d)for crtc %d\n", |
| 1469 | pll->pll_reg, pll->active, pll->on, |
| 1470 | intel_crtc->base.base.id); |
Jesse Barnes | 92f2584 | 2011-01-04 15:09:34 -0800 | [diff] [blame] | 1471 | |
| 1472 | /* PCH refclock must be enabled first */ |
| 1473 | assert_pch_refclk_enabled(dev_priv); |
| 1474 | |
Jesse Barnes | ee7b9f9 | 2012-04-20 17:11:53 +0100 | [diff] [blame] | 1475 | if (pll->active++ && pll->on) { |
Chris Wilson | 92b27b0 | 2012-05-20 18:10:50 +0100 | [diff] [blame] | 1476 | assert_pch_pll_enabled(dev_priv, pll, NULL); |
Jesse Barnes | ee7b9f9 | 2012-04-20 17:11:53 +0100 | [diff] [blame] | 1477 | return; |
| 1478 | } |
| 1479 | |
| 1480 | DRM_DEBUG_KMS("enabling PCH PLL %x\n", pll->pll_reg); |
| 1481 | |
| 1482 | reg = pll->pll_reg; |
Jesse Barnes | 92f2584 | 2011-01-04 15:09:34 -0800 | [diff] [blame] | 1483 | val = I915_READ(reg); |
| 1484 | val |= DPLL_VCO_ENABLE; |
| 1485 | I915_WRITE(reg, val); |
| 1486 | POSTING_READ(reg); |
| 1487 | udelay(200); |
Jesse Barnes | ee7b9f9 | 2012-04-20 17:11:53 +0100 | [diff] [blame] | 1488 | |
| 1489 | pll->on = true; |
Jesse Barnes | 92f2584 | 2011-01-04 15:09:34 -0800 | [diff] [blame] | 1490 | } |
| 1491 | |
Jesse Barnes | ee7b9f9 | 2012-04-20 17:11:53 +0100 | [diff] [blame] | 1492 | static void intel_disable_pch_pll(struct intel_crtc *intel_crtc) |
Jesse Barnes | 92f2584 | 2011-01-04 15:09:34 -0800 | [diff] [blame] | 1493 | { |
Jesse Barnes | ee7b9f9 | 2012-04-20 17:11:53 +0100 | [diff] [blame] | 1494 | struct drm_i915_private *dev_priv = intel_crtc->base.dev->dev_private; |
| 1495 | struct intel_pch_pll *pll = intel_crtc->pch_pll; |
Jesse Barnes | 92f2584 | 2011-01-04 15:09:34 -0800 | [diff] [blame] | 1496 | int reg; |
Jesse Barnes | ee7b9f9 | 2012-04-20 17:11:53 +0100 | [diff] [blame] | 1497 | u32 val; |
Jesse Barnes | 4c609cb | 2011-09-02 12:52:11 -0700 | [diff] [blame] | 1498 | |
Jesse Barnes | 92f2584 | 2011-01-04 15:09:34 -0800 | [diff] [blame] | 1499 | /* PCH only available on ILK+ */ |
| 1500 | BUG_ON(dev_priv->info->gen < 5); |
Jesse Barnes | ee7b9f9 | 2012-04-20 17:11:53 +0100 | [diff] [blame] | 1501 | if (pll == NULL) |
| 1502 | return; |
| 1503 | |
Chris Wilson | 48da64a | 2012-05-13 20:16:12 +0100 | [diff] [blame] | 1504 | if (WARN_ON(pll->refcount == 0)) |
| 1505 | return; |
Jesse Barnes | ee7b9f9 | 2012-04-20 17:11:53 +0100 | [diff] [blame] | 1506 | |
| 1507 | DRM_DEBUG_KMS("disable PCH PLL %x (active %d, on? %d) for crtc %d\n", |
| 1508 | pll->pll_reg, pll->active, pll->on, |
| 1509 | intel_crtc->base.base.id); |
| 1510 | |
Chris Wilson | 48da64a | 2012-05-13 20:16:12 +0100 | [diff] [blame] | 1511 | if (WARN_ON(pll->active == 0)) { |
Chris Wilson | 92b27b0 | 2012-05-20 18:10:50 +0100 | [diff] [blame] | 1512 | assert_pch_pll_disabled(dev_priv, pll, NULL); |
Chris Wilson | 48da64a | 2012-05-13 20:16:12 +0100 | [diff] [blame] | 1513 | return; |
| 1514 | } |
| 1515 | |
Jesse Barnes | ee7b9f9 | 2012-04-20 17:11:53 +0100 | [diff] [blame] | 1516 | if (--pll->active) { |
Chris Wilson | 92b27b0 | 2012-05-20 18:10:50 +0100 | [diff] [blame] | 1517 | assert_pch_pll_enabled(dev_priv, pll, NULL); |
Jesse Barnes | ee7b9f9 | 2012-04-20 17:11:53 +0100 | [diff] [blame] | 1518 | return; |
| 1519 | } |
| 1520 | |
| 1521 | DRM_DEBUG_KMS("disabling PCH PLL %x\n", pll->pll_reg); |
Jesse Barnes | 92f2584 | 2011-01-04 15:09:34 -0800 | [diff] [blame] | 1522 | |
| 1523 | /* Make sure transcoder isn't still depending on us */ |
Daniel Vetter | ab9412b | 2013-05-03 11:49:46 +0200 | [diff] [blame] | 1524 | assert_pch_transcoder_disabled(dev_priv, intel_crtc->pipe); |
Jesse Barnes | 92f2584 | 2011-01-04 15:09:34 -0800 | [diff] [blame] | 1525 | |
Jesse Barnes | ee7b9f9 | 2012-04-20 17:11:53 +0100 | [diff] [blame] | 1526 | reg = pll->pll_reg; |
Jesse Barnes | 92f2584 | 2011-01-04 15:09:34 -0800 | [diff] [blame] | 1527 | val = I915_READ(reg); |
| 1528 | val &= ~DPLL_VCO_ENABLE; |
| 1529 | I915_WRITE(reg, val); |
| 1530 | POSTING_READ(reg); |
| 1531 | udelay(200); |
Jesse Barnes | ee7b9f9 | 2012-04-20 17:11:53 +0100 | [diff] [blame] | 1532 | |
| 1533 | pll->on = false; |
Jesse Barnes | 92f2584 | 2011-01-04 15:09:34 -0800 | [diff] [blame] | 1534 | } |
| 1535 | |
Paulo Zanoni | b8a4f40 | 2012-10-31 18:12:42 -0200 | [diff] [blame] | 1536 | static void ironlake_enable_pch_transcoder(struct drm_i915_private *dev_priv, |
| 1537 | enum pipe pipe) |
Jesse Barnes | 040484a | 2011-01-03 12:14:26 -0800 | [diff] [blame] | 1538 | { |
Daniel Vetter | 23670b32 | 2012-11-01 09:15:30 +0100 | [diff] [blame] | 1539 | struct drm_device *dev = dev_priv->dev; |
Paulo Zanoni | 7c26e5c | 2012-02-14 17:07:09 -0200 | [diff] [blame] | 1540 | struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe]; |
Daniel Vetter | 23670b32 | 2012-11-01 09:15:30 +0100 | [diff] [blame] | 1541 | uint32_t reg, val, pipeconf_val; |
Jesse Barnes | 040484a | 2011-01-03 12:14:26 -0800 | [diff] [blame] | 1542 | |
| 1543 | /* PCH only available on ILK+ */ |
| 1544 | BUG_ON(dev_priv->info->gen < 5); |
| 1545 | |
| 1546 | /* Make sure PCH DPLL is enabled */ |
Chris Wilson | 92b27b0 | 2012-05-20 18:10:50 +0100 | [diff] [blame] | 1547 | assert_pch_pll_enabled(dev_priv, |
| 1548 | to_intel_crtc(crtc)->pch_pll, |
| 1549 | to_intel_crtc(crtc)); |
Jesse Barnes | 040484a | 2011-01-03 12:14:26 -0800 | [diff] [blame] | 1550 | |
| 1551 | /* FDI must be feeding us bits for PCH ports */ |
| 1552 | assert_fdi_tx_enabled(dev_priv, pipe); |
| 1553 | assert_fdi_rx_enabled(dev_priv, pipe); |
| 1554 | |
Daniel Vetter | 23670b32 | 2012-11-01 09:15:30 +0100 | [diff] [blame] | 1555 | if (HAS_PCH_CPT(dev)) { |
| 1556 | /* Workaround: Set the timing override bit before enabling the |
| 1557 | * pch transcoder. */ |
| 1558 | reg = TRANS_CHICKEN2(pipe); |
| 1559 | val = I915_READ(reg); |
| 1560 | val |= TRANS_CHICKEN2_TIMING_OVERRIDE; |
| 1561 | I915_WRITE(reg, val); |
Eugeni Dodonov | 59c859d | 2012-05-09 15:37:19 -0300 | [diff] [blame] | 1562 | } |
Daniel Vetter | 23670b32 | 2012-11-01 09:15:30 +0100 | [diff] [blame] | 1563 | |
Daniel Vetter | ab9412b | 2013-05-03 11:49:46 +0200 | [diff] [blame] | 1564 | reg = PCH_TRANSCONF(pipe); |
Jesse Barnes | 040484a | 2011-01-03 12:14:26 -0800 | [diff] [blame] | 1565 | val = I915_READ(reg); |
Paulo Zanoni | 5f7f726 | 2012-02-03 17:47:15 -0200 | [diff] [blame] | 1566 | pipeconf_val = I915_READ(PIPECONF(pipe)); |
Jesse Barnes | e9bcff5 | 2011-06-24 12:19:20 -0700 | [diff] [blame] | 1567 | |
| 1568 | if (HAS_PCH_IBX(dev_priv->dev)) { |
| 1569 | /* |
| 1570 | * make the BPC in transcoder be consistent with |
| 1571 | * that in pipeconf reg. |
| 1572 | */ |
Daniel Vetter | dfd07d7 | 2012-12-17 11:21:38 +0100 | [diff] [blame] | 1573 | val &= ~PIPECONF_BPC_MASK; |
| 1574 | val |= pipeconf_val & PIPECONF_BPC_MASK; |
Jesse Barnes | e9bcff5 | 2011-06-24 12:19:20 -0700 | [diff] [blame] | 1575 | } |
Paulo Zanoni | 5f7f726 | 2012-02-03 17:47:15 -0200 | [diff] [blame] | 1576 | |
| 1577 | val &= ~TRANS_INTERLACE_MASK; |
| 1578 | if ((pipeconf_val & PIPECONF_INTERLACE_MASK) == PIPECONF_INTERLACED_ILK) |
Paulo Zanoni | 7c26e5c | 2012-02-14 17:07:09 -0200 | [diff] [blame] | 1579 | if (HAS_PCH_IBX(dev_priv->dev) && |
| 1580 | intel_pipe_has_type(crtc, INTEL_OUTPUT_SDVO)) |
| 1581 | val |= TRANS_LEGACY_INTERLACED_ILK; |
| 1582 | else |
| 1583 | val |= TRANS_INTERLACED; |
Paulo Zanoni | 5f7f726 | 2012-02-03 17:47:15 -0200 | [diff] [blame] | 1584 | else |
| 1585 | val |= TRANS_PROGRESSIVE; |
| 1586 | |
Jesse Barnes | 040484a | 2011-01-03 12:14:26 -0800 | [diff] [blame] | 1587 | I915_WRITE(reg, val | TRANS_ENABLE); |
| 1588 | if (wait_for(I915_READ(reg) & TRANS_STATE_ENABLE, 100)) |
Ville Syrjälä | 4bb6f1f | 2013-04-17 17:48:50 +0300 | [diff] [blame] | 1589 | DRM_ERROR("failed to enable transcoder %c\n", pipe_name(pipe)); |
Jesse Barnes | 040484a | 2011-01-03 12:14:26 -0800 | [diff] [blame] | 1590 | } |
| 1591 | |
Paulo Zanoni | 8fb033d | 2012-10-31 18:12:43 -0200 | [diff] [blame] | 1592 | static void lpt_enable_pch_transcoder(struct drm_i915_private *dev_priv, |
Paulo Zanoni | 937bb61 | 2012-10-31 18:12:47 -0200 | [diff] [blame] | 1593 | enum transcoder cpu_transcoder) |
Jesse Barnes | 040484a | 2011-01-03 12:14:26 -0800 | [diff] [blame] | 1594 | { |
Paulo Zanoni | 8fb033d | 2012-10-31 18:12:43 -0200 | [diff] [blame] | 1595 | u32 val, pipeconf_val; |
Paulo Zanoni | 8fb033d | 2012-10-31 18:12:43 -0200 | [diff] [blame] | 1596 | |
| 1597 | /* PCH only available on ILK+ */ |
| 1598 | BUG_ON(dev_priv->info->gen < 5); |
| 1599 | |
Paulo Zanoni | 8fb033d | 2012-10-31 18:12:43 -0200 | [diff] [blame] | 1600 | /* FDI must be feeding us bits for PCH ports */ |
Daniel Vetter | 1a240d4 | 2012-11-29 22:18:51 +0100 | [diff] [blame] | 1601 | assert_fdi_tx_enabled(dev_priv, (enum pipe) cpu_transcoder); |
Paulo Zanoni | 937bb61 | 2012-10-31 18:12:47 -0200 | [diff] [blame] | 1602 | assert_fdi_rx_enabled(dev_priv, TRANSCODER_A); |
Paulo Zanoni | 8fb033d | 2012-10-31 18:12:43 -0200 | [diff] [blame] | 1603 | |
Paulo Zanoni | 223a6fd | 2012-10-31 18:12:52 -0200 | [diff] [blame] | 1604 | /* Workaround: set timing override bit. */ |
| 1605 | val = I915_READ(_TRANSA_CHICKEN2); |
Daniel Vetter | 23670b32 | 2012-11-01 09:15:30 +0100 | [diff] [blame] | 1606 | val |= TRANS_CHICKEN2_TIMING_OVERRIDE; |
Paulo Zanoni | 223a6fd | 2012-10-31 18:12:52 -0200 | [diff] [blame] | 1607 | I915_WRITE(_TRANSA_CHICKEN2, val); |
| 1608 | |
Paulo Zanoni | 25f3ef1 | 2012-10-31 18:12:49 -0200 | [diff] [blame] | 1609 | val = TRANS_ENABLE; |
Paulo Zanoni | 937bb61 | 2012-10-31 18:12:47 -0200 | [diff] [blame] | 1610 | pipeconf_val = I915_READ(PIPECONF(cpu_transcoder)); |
Paulo Zanoni | 8fb033d | 2012-10-31 18:12:43 -0200 | [diff] [blame] | 1611 | |
Paulo Zanoni | 9a76b1c | 2012-10-31 18:12:48 -0200 | [diff] [blame] | 1612 | if ((pipeconf_val & PIPECONF_INTERLACE_MASK_HSW) == |
| 1613 | PIPECONF_INTERLACED_ILK) |
Paulo Zanoni | a35f267 | 2012-10-31 18:12:45 -0200 | [diff] [blame] | 1614 | val |= TRANS_INTERLACED; |
Paulo Zanoni | 8fb033d | 2012-10-31 18:12:43 -0200 | [diff] [blame] | 1615 | else |
| 1616 | val |= TRANS_PROGRESSIVE; |
| 1617 | |
Daniel Vetter | ab9412b | 2013-05-03 11:49:46 +0200 | [diff] [blame] | 1618 | I915_WRITE(LPT_TRANSCONF, val); |
| 1619 | if (wait_for(I915_READ(LPT_TRANSCONF) & TRANS_STATE_ENABLE, 100)) |
Paulo Zanoni | 937bb61 | 2012-10-31 18:12:47 -0200 | [diff] [blame] | 1620 | DRM_ERROR("Failed to enable PCH transcoder\n"); |
Paulo Zanoni | 8fb033d | 2012-10-31 18:12:43 -0200 | [diff] [blame] | 1621 | } |
| 1622 | |
Paulo Zanoni | b8a4f40 | 2012-10-31 18:12:42 -0200 | [diff] [blame] | 1623 | static void ironlake_disable_pch_transcoder(struct drm_i915_private *dev_priv, |
| 1624 | enum pipe pipe) |
Jesse Barnes | 040484a | 2011-01-03 12:14:26 -0800 | [diff] [blame] | 1625 | { |
Daniel Vetter | 23670b32 | 2012-11-01 09:15:30 +0100 | [diff] [blame] | 1626 | struct drm_device *dev = dev_priv->dev; |
| 1627 | uint32_t reg, val; |
Jesse Barnes | 040484a | 2011-01-03 12:14:26 -0800 | [diff] [blame] | 1628 | |
| 1629 | /* FDI relies on the transcoder */ |
| 1630 | assert_fdi_tx_disabled(dev_priv, pipe); |
| 1631 | assert_fdi_rx_disabled(dev_priv, pipe); |
| 1632 | |
Jesse Barnes | 291906f | 2011-02-02 12:28:03 -0800 | [diff] [blame] | 1633 | /* Ports must be off as well */ |
| 1634 | assert_pch_ports_disabled(dev_priv, pipe); |
| 1635 | |
Daniel Vetter | ab9412b | 2013-05-03 11:49:46 +0200 | [diff] [blame] | 1636 | reg = PCH_TRANSCONF(pipe); |
Jesse Barnes | 040484a | 2011-01-03 12:14:26 -0800 | [diff] [blame] | 1637 | val = I915_READ(reg); |
| 1638 | val &= ~TRANS_ENABLE; |
| 1639 | I915_WRITE(reg, val); |
| 1640 | /* wait for PCH transcoder off, transcoder state */ |
| 1641 | if (wait_for((I915_READ(reg) & TRANS_STATE_ENABLE) == 0, 50)) |
Ville Syrjälä | 4bb6f1f | 2013-04-17 17:48:50 +0300 | [diff] [blame] | 1642 | DRM_ERROR("failed to disable transcoder %c\n", pipe_name(pipe)); |
Daniel Vetter | 23670b32 | 2012-11-01 09:15:30 +0100 | [diff] [blame] | 1643 | |
| 1644 | if (!HAS_PCH_IBX(dev)) { |
| 1645 | /* Workaround: Clear the timing override chicken bit again. */ |
| 1646 | reg = TRANS_CHICKEN2(pipe); |
| 1647 | val = I915_READ(reg); |
| 1648 | val &= ~TRANS_CHICKEN2_TIMING_OVERRIDE; |
| 1649 | I915_WRITE(reg, val); |
| 1650 | } |
Jesse Barnes | 040484a | 2011-01-03 12:14:26 -0800 | [diff] [blame] | 1651 | } |
| 1652 | |
Paulo Zanoni | ab4d966 | 2012-10-31 18:12:55 -0200 | [diff] [blame] | 1653 | static void lpt_disable_pch_transcoder(struct drm_i915_private *dev_priv) |
Paulo Zanoni | 8fb033d | 2012-10-31 18:12:43 -0200 | [diff] [blame] | 1654 | { |
Paulo Zanoni | 8fb033d | 2012-10-31 18:12:43 -0200 | [diff] [blame] | 1655 | u32 val; |
| 1656 | |
Daniel Vetter | ab9412b | 2013-05-03 11:49:46 +0200 | [diff] [blame] | 1657 | val = I915_READ(LPT_TRANSCONF); |
Paulo Zanoni | 8fb033d | 2012-10-31 18:12:43 -0200 | [diff] [blame] | 1658 | val &= ~TRANS_ENABLE; |
Daniel Vetter | ab9412b | 2013-05-03 11:49:46 +0200 | [diff] [blame] | 1659 | I915_WRITE(LPT_TRANSCONF, val); |
Paulo Zanoni | 8fb033d | 2012-10-31 18:12:43 -0200 | [diff] [blame] | 1660 | /* wait for PCH transcoder off, transcoder state */ |
Daniel Vetter | ab9412b | 2013-05-03 11:49:46 +0200 | [diff] [blame] | 1661 | if (wait_for((I915_READ(LPT_TRANSCONF) & TRANS_STATE_ENABLE) == 0, 50)) |
Paulo Zanoni | 8a52fd9 | 2012-10-31 18:12:51 -0200 | [diff] [blame] | 1662 | DRM_ERROR("Failed to disable PCH transcoder\n"); |
Paulo Zanoni | 223a6fd | 2012-10-31 18:12:52 -0200 | [diff] [blame] | 1663 | |
| 1664 | /* Workaround: clear timing override bit. */ |
| 1665 | val = I915_READ(_TRANSA_CHICKEN2); |
Daniel Vetter | 23670b32 | 2012-11-01 09:15:30 +0100 | [diff] [blame] | 1666 | val &= ~TRANS_CHICKEN2_TIMING_OVERRIDE; |
Paulo Zanoni | 223a6fd | 2012-10-31 18:12:52 -0200 | [diff] [blame] | 1667 | I915_WRITE(_TRANSA_CHICKEN2, val); |
Jesse Barnes | 92f2584 | 2011-01-04 15:09:34 -0800 | [diff] [blame] | 1668 | } |
| 1669 | |
| 1670 | /** |
Chris Wilson | 309cfea | 2011-01-28 13:54:53 +0000 | [diff] [blame] | 1671 | * intel_enable_pipe - enable a pipe, asserting requirements |
Jesse Barnes | b24e717 | 2011-01-04 15:09:30 -0800 | [diff] [blame] | 1672 | * @dev_priv: i915 private structure |
| 1673 | * @pipe: pipe to enable |
Jesse Barnes | 040484a | 2011-01-03 12:14:26 -0800 | [diff] [blame] | 1674 | * @pch_port: on ILK+, is this pipe driving a PCH port or not |
Jesse Barnes | b24e717 | 2011-01-04 15:09:30 -0800 | [diff] [blame] | 1675 | * |
| 1676 | * Enable @pipe, making sure that various hardware specific requirements |
| 1677 | * are met, if applicable, e.g. PLL enabled, LVDS pairs enabled, etc. |
| 1678 | * |
| 1679 | * @pipe should be %PIPE_A or %PIPE_B. |
| 1680 | * |
| 1681 | * Will wait until the pipe is actually running (i.e. first vblank) before |
| 1682 | * returning. |
| 1683 | */ |
Jesse Barnes | 040484a | 2011-01-03 12:14:26 -0800 | [diff] [blame] | 1684 | static void intel_enable_pipe(struct drm_i915_private *dev_priv, enum pipe pipe, |
| 1685 | bool pch_port) |
Jesse Barnes | b24e717 | 2011-01-04 15:09:30 -0800 | [diff] [blame] | 1686 | { |
Paulo Zanoni | 702e7a5 | 2012-10-23 18:29:59 -0200 | [diff] [blame] | 1687 | enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv, |
| 1688 | pipe); |
Daniel Vetter | 1a240d4 | 2012-11-29 22:18:51 +0100 | [diff] [blame] | 1689 | enum pipe pch_transcoder; |
Jesse Barnes | b24e717 | 2011-01-04 15:09:30 -0800 | [diff] [blame] | 1690 | int reg; |
| 1691 | u32 val; |
| 1692 | |
Daniel Vetter | 58c6eaa | 2013-04-11 16:29:09 +0200 | [diff] [blame] | 1693 | assert_planes_disabled(dev_priv, pipe); |
| 1694 | assert_sprites_disabled(dev_priv, pipe); |
| 1695 | |
Paulo Zanoni | 681e581 | 2012-12-06 11:12:38 -0200 | [diff] [blame] | 1696 | if (HAS_PCH_LPT(dev_priv->dev)) |
Paulo Zanoni | cc391bb | 2012-11-20 13:27:37 -0200 | [diff] [blame] | 1697 | pch_transcoder = TRANSCODER_A; |
| 1698 | else |
| 1699 | pch_transcoder = pipe; |
| 1700 | |
Jesse Barnes | b24e717 | 2011-01-04 15:09:30 -0800 | [diff] [blame] | 1701 | /* |
| 1702 | * A pipe without a PLL won't actually be able to drive bits from |
| 1703 | * a plane. On ILK+ the pipe PLLs are integrated, so we don't |
| 1704 | * need the check. |
| 1705 | */ |
| 1706 | if (!HAS_PCH_SPLIT(dev_priv->dev)) |
| 1707 | assert_pll_enabled(dev_priv, pipe); |
Jesse Barnes | 040484a | 2011-01-03 12:14:26 -0800 | [diff] [blame] | 1708 | else { |
| 1709 | if (pch_port) { |
| 1710 | /* if driving the PCH, we need FDI enabled */ |
Paulo Zanoni | cc391bb | 2012-11-20 13:27:37 -0200 | [diff] [blame] | 1711 | assert_fdi_rx_pll_enabled(dev_priv, pch_transcoder); |
Daniel Vetter | 1a240d4 | 2012-11-29 22:18:51 +0100 | [diff] [blame] | 1712 | assert_fdi_tx_pll_enabled(dev_priv, |
| 1713 | (enum pipe) cpu_transcoder); |
Jesse Barnes | 040484a | 2011-01-03 12:14:26 -0800 | [diff] [blame] | 1714 | } |
| 1715 | /* FIXME: assert CPU port conditions for SNB+ */ |
| 1716 | } |
Jesse Barnes | b24e717 | 2011-01-04 15:09:30 -0800 | [diff] [blame] | 1717 | |
Paulo Zanoni | 702e7a5 | 2012-10-23 18:29:59 -0200 | [diff] [blame] | 1718 | reg = PIPECONF(cpu_transcoder); |
Jesse Barnes | b24e717 | 2011-01-04 15:09:30 -0800 | [diff] [blame] | 1719 | val = I915_READ(reg); |
Chris Wilson | 00d70b1 | 2011-03-17 07:18:29 +0000 | [diff] [blame] | 1720 | if (val & PIPECONF_ENABLE) |
| 1721 | return; |
| 1722 | |
| 1723 | I915_WRITE(reg, val | PIPECONF_ENABLE); |
Jesse Barnes | b24e717 | 2011-01-04 15:09:30 -0800 | [diff] [blame] | 1724 | intel_wait_for_vblank(dev_priv->dev, pipe); |
| 1725 | } |
| 1726 | |
| 1727 | /** |
Chris Wilson | 309cfea | 2011-01-28 13:54:53 +0000 | [diff] [blame] | 1728 | * intel_disable_pipe - disable a pipe, asserting requirements |
Jesse Barnes | b24e717 | 2011-01-04 15:09:30 -0800 | [diff] [blame] | 1729 | * @dev_priv: i915 private structure |
| 1730 | * @pipe: pipe to disable |
| 1731 | * |
| 1732 | * Disable @pipe, making sure that various hardware specific requirements |
| 1733 | * are met, if applicable, e.g. plane disabled, panel fitter off, etc. |
| 1734 | * |
| 1735 | * @pipe should be %PIPE_A or %PIPE_B. |
| 1736 | * |
| 1737 | * Will wait until the pipe has shut down before returning. |
| 1738 | */ |
| 1739 | static void intel_disable_pipe(struct drm_i915_private *dev_priv, |
| 1740 | enum pipe pipe) |
| 1741 | { |
Paulo Zanoni | 702e7a5 | 2012-10-23 18:29:59 -0200 | [diff] [blame] | 1742 | enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv, |
| 1743 | pipe); |
Jesse Barnes | b24e717 | 2011-01-04 15:09:30 -0800 | [diff] [blame] | 1744 | int reg; |
| 1745 | u32 val; |
| 1746 | |
| 1747 | /* |
| 1748 | * Make sure planes won't keep trying to pump pixels to us, |
| 1749 | * or we might hang the display. |
| 1750 | */ |
| 1751 | assert_planes_disabled(dev_priv, pipe); |
Jesse Barnes | 19332d7 | 2013-03-28 09:55:38 -0700 | [diff] [blame] | 1752 | assert_sprites_disabled(dev_priv, pipe); |
Jesse Barnes | b24e717 | 2011-01-04 15:09:30 -0800 | [diff] [blame] | 1753 | |
| 1754 | /* Don't disable pipe A or pipe A PLLs if needed */ |
| 1755 | if (pipe == PIPE_A && (dev_priv->quirks & QUIRK_PIPEA_FORCE)) |
| 1756 | return; |
| 1757 | |
Paulo Zanoni | 702e7a5 | 2012-10-23 18:29:59 -0200 | [diff] [blame] | 1758 | reg = PIPECONF(cpu_transcoder); |
Jesse Barnes | b24e717 | 2011-01-04 15:09:30 -0800 | [diff] [blame] | 1759 | val = I915_READ(reg); |
Chris Wilson | 00d70b1 | 2011-03-17 07:18:29 +0000 | [diff] [blame] | 1760 | if ((val & PIPECONF_ENABLE) == 0) |
| 1761 | return; |
| 1762 | |
| 1763 | I915_WRITE(reg, val & ~PIPECONF_ENABLE); |
Jesse Barnes | b24e717 | 2011-01-04 15:09:30 -0800 | [diff] [blame] | 1764 | intel_wait_for_pipe_off(dev_priv->dev, pipe); |
| 1765 | } |
| 1766 | |
Keith Packard | d74362c | 2011-07-28 14:47:14 -0700 | [diff] [blame] | 1767 | /* |
| 1768 | * Plane regs are double buffered, going from enabled->disabled needs a |
| 1769 | * trigger in order to latch. The display address reg provides this. |
| 1770 | */ |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 1771 | void intel_flush_display_plane(struct drm_i915_private *dev_priv, |
Keith Packard | d74362c | 2011-07-28 14:47:14 -0700 | [diff] [blame] | 1772 | enum plane plane) |
| 1773 | { |
Damien Lespiau | 14f8614 | 2012-10-29 15:24:49 +0000 | [diff] [blame] | 1774 | if (dev_priv->info->gen >= 4) |
| 1775 | I915_WRITE(DSPSURF(plane), I915_READ(DSPSURF(plane))); |
| 1776 | else |
| 1777 | I915_WRITE(DSPADDR(plane), I915_READ(DSPADDR(plane))); |
Keith Packard | d74362c | 2011-07-28 14:47:14 -0700 | [diff] [blame] | 1778 | } |
| 1779 | |
Jesse Barnes | b24e717 | 2011-01-04 15:09:30 -0800 | [diff] [blame] | 1780 | /** |
| 1781 | * intel_enable_plane - enable a display plane on a given pipe |
| 1782 | * @dev_priv: i915 private structure |
| 1783 | * @plane: plane to enable |
| 1784 | * @pipe: pipe being fed |
| 1785 | * |
| 1786 | * Enable @plane on @pipe, making sure that @pipe is running first. |
| 1787 | */ |
| 1788 | static void intel_enable_plane(struct drm_i915_private *dev_priv, |
| 1789 | enum plane plane, enum pipe pipe) |
| 1790 | { |
| 1791 | int reg; |
| 1792 | u32 val; |
| 1793 | |
| 1794 | /* If the pipe isn't enabled, we can't pump pixels and may hang */ |
| 1795 | assert_pipe_enabled(dev_priv, pipe); |
| 1796 | |
| 1797 | reg = DSPCNTR(plane); |
| 1798 | val = I915_READ(reg); |
Chris Wilson | 00d70b1 | 2011-03-17 07:18:29 +0000 | [diff] [blame] | 1799 | if (val & DISPLAY_PLANE_ENABLE) |
| 1800 | return; |
| 1801 | |
| 1802 | I915_WRITE(reg, val | DISPLAY_PLANE_ENABLE); |
Keith Packard | d74362c | 2011-07-28 14:47:14 -0700 | [diff] [blame] | 1803 | intel_flush_display_plane(dev_priv, plane); |
Jesse Barnes | b24e717 | 2011-01-04 15:09:30 -0800 | [diff] [blame] | 1804 | intel_wait_for_vblank(dev_priv->dev, pipe); |
| 1805 | } |
| 1806 | |
Jesse Barnes | b24e717 | 2011-01-04 15:09:30 -0800 | [diff] [blame] | 1807 | /** |
| 1808 | * intel_disable_plane - disable a display plane |
| 1809 | * @dev_priv: i915 private structure |
| 1810 | * @plane: plane to disable |
| 1811 | * @pipe: pipe consuming the data |
| 1812 | * |
| 1813 | * Disable @plane; should be an independent operation. |
| 1814 | */ |
| 1815 | static void intel_disable_plane(struct drm_i915_private *dev_priv, |
| 1816 | enum plane plane, enum pipe pipe) |
| 1817 | { |
| 1818 | int reg; |
| 1819 | u32 val; |
| 1820 | |
| 1821 | reg = DSPCNTR(plane); |
| 1822 | val = I915_READ(reg); |
Chris Wilson | 00d70b1 | 2011-03-17 07:18:29 +0000 | [diff] [blame] | 1823 | if ((val & DISPLAY_PLANE_ENABLE) == 0) |
| 1824 | return; |
| 1825 | |
| 1826 | I915_WRITE(reg, val & ~DISPLAY_PLANE_ENABLE); |
Jesse Barnes | b24e717 | 2011-01-04 15:09:30 -0800 | [diff] [blame] | 1827 | intel_flush_display_plane(dev_priv, plane); |
| 1828 | intel_wait_for_vblank(dev_priv->dev, pipe); |
| 1829 | } |
| 1830 | |
Chris Wilson | 693db18 | 2013-03-05 14:52:39 +0000 | [diff] [blame] | 1831 | static bool need_vtd_wa(struct drm_device *dev) |
| 1832 | { |
| 1833 | #ifdef CONFIG_INTEL_IOMMU |
| 1834 | if (INTEL_INFO(dev)->gen >= 6 && intel_iommu_gfx_mapped) |
| 1835 | return true; |
| 1836 | #endif |
| 1837 | return false; |
| 1838 | } |
| 1839 | |
Chris Wilson | 127bd2a | 2010-07-23 23:32:05 +0100 | [diff] [blame] | 1840 | int |
Chris Wilson | 48b956c | 2010-09-14 12:50:34 +0100 | [diff] [blame] | 1841 | intel_pin_and_fence_fb_obj(struct drm_device *dev, |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 1842 | struct drm_i915_gem_object *obj, |
Chris Wilson | 919926a | 2010-11-12 13:42:53 +0000 | [diff] [blame] | 1843 | struct intel_ring_buffer *pipelined) |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 1844 | { |
Chris Wilson | ce453d8 | 2011-02-21 14:43:56 +0000 | [diff] [blame] | 1845 | struct drm_i915_private *dev_priv = dev->dev_private; |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 1846 | u32 alignment; |
| 1847 | int ret; |
| 1848 | |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 1849 | switch (obj->tiling_mode) { |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 1850 | case I915_TILING_NONE: |
Chris Wilson | 534843d | 2010-07-05 18:01:46 +0100 | [diff] [blame] | 1851 | if (IS_BROADWATER(dev) || IS_CRESTLINE(dev)) |
| 1852 | alignment = 128 * 1024; |
Chris Wilson | a6c45cf | 2010-09-17 00:32:17 +0100 | [diff] [blame] | 1853 | else if (INTEL_INFO(dev)->gen >= 4) |
Chris Wilson | 534843d | 2010-07-05 18:01:46 +0100 | [diff] [blame] | 1854 | alignment = 4 * 1024; |
| 1855 | else |
| 1856 | alignment = 64 * 1024; |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 1857 | break; |
| 1858 | case I915_TILING_X: |
| 1859 | /* pin() will align the object as required by fence */ |
| 1860 | alignment = 0; |
| 1861 | break; |
| 1862 | case I915_TILING_Y: |
Daniel Vetter | 8bb6e95 | 2013-04-06 23:54:56 +0200 | [diff] [blame] | 1863 | /* Despite that we check this in framebuffer_init userspace can |
| 1864 | * screw us over and change the tiling after the fact. Only |
| 1865 | * pinned buffers can't change their tiling. */ |
| 1866 | DRM_DEBUG_DRIVER("Y tiled not allowed for scan out buffers\n"); |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 1867 | return -EINVAL; |
| 1868 | default: |
| 1869 | BUG(); |
| 1870 | } |
| 1871 | |
Chris Wilson | 693db18 | 2013-03-05 14:52:39 +0000 | [diff] [blame] | 1872 | /* Note that the w/a also requires 64 PTE of padding following the |
| 1873 | * bo. We currently fill all unused PTE with the shadow page and so |
| 1874 | * we should always have valid PTE following the scanout preventing |
| 1875 | * the VT-d warning. |
| 1876 | */ |
| 1877 | if (need_vtd_wa(dev) && alignment < 256 * 1024) |
| 1878 | alignment = 256 * 1024; |
| 1879 | |
Chris Wilson | ce453d8 | 2011-02-21 14:43:56 +0000 | [diff] [blame] | 1880 | dev_priv->mm.interruptible = false; |
Chris Wilson | 2da3b9b | 2011-04-14 09:41:17 +0100 | [diff] [blame] | 1881 | ret = i915_gem_object_pin_to_display_plane(obj, alignment, pipelined); |
Chris Wilson | 48b956c | 2010-09-14 12:50:34 +0100 | [diff] [blame] | 1882 | if (ret) |
Chris Wilson | ce453d8 | 2011-02-21 14:43:56 +0000 | [diff] [blame] | 1883 | goto err_interruptible; |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 1884 | |
| 1885 | /* Install a fence for tiled scan-out. Pre-i965 always needs a |
| 1886 | * fence, whereas 965+ only requires a fence if using |
| 1887 | * framebuffer compression. For simplicity, we always install |
| 1888 | * a fence as the cost is not that onerous. |
| 1889 | */ |
Chris Wilson | 06d9813 | 2012-04-17 15:31:24 +0100 | [diff] [blame] | 1890 | ret = i915_gem_object_get_fence(obj); |
Chris Wilson | 9a5a53b | 2012-03-22 15:10:00 +0000 | [diff] [blame] | 1891 | if (ret) |
| 1892 | goto err_unpin; |
Chris Wilson | 1690e1e | 2011-12-14 13:57:08 +0100 | [diff] [blame] | 1893 | |
Chris Wilson | 9a5a53b | 2012-03-22 15:10:00 +0000 | [diff] [blame] | 1894 | i915_gem_object_pin_fence(obj); |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 1895 | |
Chris Wilson | ce453d8 | 2011-02-21 14:43:56 +0000 | [diff] [blame] | 1896 | dev_priv->mm.interruptible = true; |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 1897 | return 0; |
Chris Wilson | 48b956c | 2010-09-14 12:50:34 +0100 | [diff] [blame] | 1898 | |
| 1899 | err_unpin: |
| 1900 | i915_gem_object_unpin(obj); |
Chris Wilson | ce453d8 | 2011-02-21 14:43:56 +0000 | [diff] [blame] | 1901 | err_interruptible: |
| 1902 | dev_priv->mm.interruptible = true; |
Chris Wilson | 48b956c | 2010-09-14 12:50:34 +0100 | [diff] [blame] | 1903 | return ret; |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 1904 | } |
| 1905 | |
Chris Wilson | 1690e1e | 2011-12-14 13:57:08 +0100 | [diff] [blame] | 1906 | void intel_unpin_fb_obj(struct drm_i915_gem_object *obj) |
| 1907 | { |
| 1908 | i915_gem_object_unpin_fence(obj); |
| 1909 | i915_gem_object_unpin(obj); |
| 1910 | } |
| 1911 | |
Daniel Vetter | c2c7513 | 2012-07-05 12:17:30 +0200 | [diff] [blame] | 1912 | /* Computes the linear offset to the base tile and adjusts x, y. bytes per pixel |
| 1913 | * is assumed to be a power-of-two. */ |
Chris Wilson | bc75286 | 2013-02-21 20:04:31 +0000 | [diff] [blame] | 1914 | unsigned long intel_gen4_compute_page_offset(int *x, int *y, |
| 1915 | unsigned int tiling_mode, |
| 1916 | unsigned int cpp, |
| 1917 | unsigned int pitch) |
Daniel Vetter | c2c7513 | 2012-07-05 12:17:30 +0200 | [diff] [blame] | 1918 | { |
Chris Wilson | bc75286 | 2013-02-21 20:04:31 +0000 | [diff] [blame] | 1919 | if (tiling_mode != I915_TILING_NONE) { |
| 1920 | unsigned int tile_rows, tiles; |
Daniel Vetter | c2c7513 | 2012-07-05 12:17:30 +0200 | [diff] [blame] | 1921 | |
Chris Wilson | bc75286 | 2013-02-21 20:04:31 +0000 | [diff] [blame] | 1922 | tile_rows = *y / 8; |
| 1923 | *y %= 8; |
Daniel Vetter | c2c7513 | 2012-07-05 12:17:30 +0200 | [diff] [blame] | 1924 | |
Chris Wilson | bc75286 | 2013-02-21 20:04:31 +0000 | [diff] [blame] | 1925 | tiles = *x / (512/cpp); |
| 1926 | *x %= 512/cpp; |
| 1927 | |
| 1928 | return tile_rows * pitch * 8 + tiles * 4096; |
| 1929 | } else { |
| 1930 | unsigned int offset; |
| 1931 | |
| 1932 | offset = *y * pitch + *x * cpp; |
| 1933 | *y = 0; |
| 1934 | *x = (offset & 4095) / cpp; |
| 1935 | return offset & -4096; |
| 1936 | } |
Daniel Vetter | c2c7513 | 2012-07-05 12:17:30 +0200 | [diff] [blame] | 1937 | } |
| 1938 | |
Jesse Barnes | 17638cd | 2011-06-24 12:19:23 -0700 | [diff] [blame] | 1939 | static int i9xx_update_plane(struct drm_crtc *crtc, struct drm_framebuffer *fb, |
| 1940 | int x, int y) |
Jesse Barnes | 8125556 | 2010-08-02 12:07:50 -0700 | [diff] [blame] | 1941 | { |
| 1942 | struct drm_device *dev = crtc->dev; |
| 1943 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 1944 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 1945 | struct intel_framebuffer *intel_fb; |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 1946 | struct drm_i915_gem_object *obj; |
Jesse Barnes | 8125556 | 2010-08-02 12:07:50 -0700 | [diff] [blame] | 1947 | int plane = intel_crtc->plane; |
Daniel Vetter | e506a0c | 2012-07-05 12:17:29 +0200 | [diff] [blame] | 1948 | unsigned long linear_offset; |
Jesse Barnes | 8125556 | 2010-08-02 12:07:50 -0700 | [diff] [blame] | 1949 | u32 dspcntr; |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 1950 | u32 reg; |
Jesse Barnes | 8125556 | 2010-08-02 12:07:50 -0700 | [diff] [blame] | 1951 | |
| 1952 | switch (plane) { |
| 1953 | case 0: |
| 1954 | case 1: |
| 1955 | break; |
| 1956 | default: |
Ville Syrjälä | 84f44ce | 2013-04-17 17:48:49 +0300 | [diff] [blame] | 1957 | DRM_ERROR("Can't update plane %c in SAREA\n", plane_name(plane)); |
Jesse Barnes | 8125556 | 2010-08-02 12:07:50 -0700 | [diff] [blame] | 1958 | return -EINVAL; |
| 1959 | } |
| 1960 | |
| 1961 | intel_fb = to_intel_framebuffer(fb); |
| 1962 | obj = intel_fb->obj; |
Jesse Barnes | 8125556 | 2010-08-02 12:07:50 -0700 | [diff] [blame] | 1963 | |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 1964 | reg = DSPCNTR(plane); |
| 1965 | dspcntr = I915_READ(reg); |
Jesse Barnes | 8125556 | 2010-08-02 12:07:50 -0700 | [diff] [blame] | 1966 | /* Mask out pixel format bits in case we change it */ |
| 1967 | dspcntr &= ~DISPPLANE_PIXFORMAT_MASK; |
Ville Syrjälä | 57779d0 | 2012-10-31 17:50:14 +0200 | [diff] [blame] | 1968 | switch (fb->pixel_format) { |
| 1969 | case DRM_FORMAT_C8: |
Jesse Barnes | 8125556 | 2010-08-02 12:07:50 -0700 | [diff] [blame] | 1970 | dspcntr |= DISPPLANE_8BPP; |
| 1971 | break; |
Ville Syrjälä | 57779d0 | 2012-10-31 17:50:14 +0200 | [diff] [blame] | 1972 | case DRM_FORMAT_XRGB1555: |
| 1973 | case DRM_FORMAT_ARGB1555: |
| 1974 | dspcntr |= DISPPLANE_BGRX555; |
Jesse Barnes | 8125556 | 2010-08-02 12:07:50 -0700 | [diff] [blame] | 1975 | break; |
Ville Syrjälä | 57779d0 | 2012-10-31 17:50:14 +0200 | [diff] [blame] | 1976 | case DRM_FORMAT_RGB565: |
| 1977 | dspcntr |= DISPPLANE_BGRX565; |
| 1978 | break; |
| 1979 | case DRM_FORMAT_XRGB8888: |
| 1980 | case DRM_FORMAT_ARGB8888: |
| 1981 | dspcntr |= DISPPLANE_BGRX888; |
| 1982 | break; |
| 1983 | case DRM_FORMAT_XBGR8888: |
| 1984 | case DRM_FORMAT_ABGR8888: |
| 1985 | dspcntr |= DISPPLANE_RGBX888; |
| 1986 | break; |
| 1987 | case DRM_FORMAT_XRGB2101010: |
| 1988 | case DRM_FORMAT_ARGB2101010: |
| 1989 | dspcntr |= DISPPLANE_BGRX101010; |
| 1990 | break; |
| 1991 | case DRM_FORMAT_XBGR2101010: |
| 1992 | case DRM_FORMAT_ABGR2101010: |
| 1993 | dspcntr |= DISPPLANE_RGBX101010; |
Jesse Barnes | 8125556 | 2010-08-02 12:07:50 -0700 | [diff] [blame] | 1994 | break; |
| 1995 | default: |
Daniel Vetter | baba133 | 2013-03-27 00:45:00 +0100 | [diff] [blame] | 1996 | BUG(); |
Jesse Barnes | 8125556 | 2010-08-02 12:07:50 -0700 | [diff] [blame] | 1997 | } |
Ville Syrjälä | 57779d0 | 2012-10-31 17:50:14 +0200 | [diff] [blame] | 1998 | |
Chris Wilson | a6c45cf | 2010-09-17 00:32:17 +0100 | [diff] [blame] | 1999 | if (INTEL_INFO(dev)->gen >= 4) { |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 2000 | if (obj->tiling_mode != I915_TILING_NONE) |
Jesse Barnes | 8125556 | 2010-08-02 12:07:50 -0700 | [diff] [blame] | 2001 | dspcntr |= DISPPLANE_TILED; |
| 2002 | else |
| 2003 | dspcntr &= ~DISPPLANE_TILED; |
| 2004 | } |
| 2005 | |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2006 | I915_WRITE(reg, dspcntr); |
Jesse Barnes | 8125556 | 2010-08-02 12:07:50 -0700 | [diff] [blame] | 2007 | |
Daniel Vetter | e506a0c | 2012-07-05 12:17:29 +0200 | [diff] [blame] | 2008 | linear_offset = y * fb->pitches[0] + x * (fb->bits_per_pixel / 8); |
Jesse Barnes | 8125556 | 2010-08-02 12:07:50 -0700 | [diff] [blame] | 2009 | |
Daniel Vetter | c2c7513 | 2012-07-05 12:17:30 +0200 | [diff] [blame] | 2010 | if (INTEL_INFO(dev)->gen >= 4) { |
| 2011 | intel_crtc->dspaddr_offset = |
Chris Wilson | bc75286 | 2013-02-21 20:04:31 +0000 | [diff] [blame] | 2012 | intel_gen4_compute_page_offset(&x, &y, obj->tiling_mode, |
| 2013 | fb->bits_per_pixel / 8, |
| 2014 | fb->pitches[0]); |
Daniel Vetter | c2c7513 | 2012-07-05 12:17:30 +0200 | [diff] [blame] | 2015 | linear_offset -= intel_crtc->dspaddr_offset; |
| 2016 | } else { |
Daniel Vetter | e506a0c | 2012-07-05 12:17:29 +0200 | [diff] [blame] | 2017 | intel_crtc->dspaddr_offset = linear_offset; |
Daniel Vetter | c2c7513 | 2012-07-05 12:17:30 +0200 | [diff] [blame] | 2018 | } |
Daniel Vetter | e506a0c | 2012-07-05 12:17:29 +0200 | [diff] [blame] | 2019 | |
| 2020 | DRM_DEBUG_KMS("Writing base %08X %08lX %d %d %d\n", |
| 2021 | obj->gtt_offset, linear_offset, x, y, fb->pitches[0]); |
Ville Syrjälä | 01f2c77 | 2011-12-20 00:06:49 +0200 | [diff] [blame] | 2022 | I915_WRITE(DSPSTRIDE(plane), fb->pitches[0]); |
Chris Wilson | a6c45cf | 2010-09-17 00:32:17 +0100 | [diff] [blame] | 2023 | if (INTEL_INFO(dev)->gen >= 4) { |
Daniel Vetter | c2c7513 | 2012-07-05 12:17:30 +0200 | [diff] [blame] | 2024 | I915_MODIFY_DISPBASE(DSPSURF(plane), |
| 2025 | obj->gtt_offset + intel_crtc->dspaddr_offset); |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2026 | I915_WRITE(DSPTILEOFF(plane), (y << 16) | x); |
Daniel Vetter | e506a0c | 2012-07-05 12:17:29 +0200 | [diff] [blame] | 2027 | I915_WRITE(DSPLINOFF(plane), linear_offset); |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2028 | } else |
Daniel Vetter | e506a0c | 2012-07-05 12:17:29 +0200 | [diff] [blame] | 2029 | I915_WRITE(DSPADDR(plane), obj->gtt_offset + linear_offset); |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2030 | POSTING_READ(reg); |
Jesse Barnes | 8125556 | 2010-08-02 12:07:50 -0700 | [diff] [blame] | 2031 | |
Jesse Barnes | 17638cd | 2011-06-24 12:19:23 -0700 | [diff] [blame] | 2032 | return 0; |
| 2033 | } |
| 2034 | |
| 2035 | static int ironlake_update_plane(struct drm_crtc *crtc, |
| 2036 | struct drm_framebuffer *fb, int x, int y) |
| 2037 | { |
| 2038 | struct drm_device *dev = crtc->dev; |
| 2039 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 2040 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 2041 | struct intel_framebuffer *intel_fb; |
| 2042 | struct drm_i915_gem_object *obj; |
| 2043 | int plane = intel_crtc->plane; |
Daniel Vetter | e506a0c | 2012-07-05 12:17:29 +0200 | [diff] [blame] | 2044 | unsigned long linear_offset; |
Jesse Barnes | 17638cd | 2011-06-24 12:19:23 -0700 | [diff] [blame] | 2045 | u32 dspcntr; |
| 2046 | u32 reg; |
| 2047 | |
| 2048 | switch (plane) { |
| 2049 | case 0: |
| 2050 | case 1: |
Jesse Barnes | 27f8227 | 2011-09-02 12:54:37 -0700 | [diff] [blame] | 2051 | case 2: |
Jesse Barnes | 17638cd | 2011-06-24 12:19:23 -0700 | [diff] [blame] | 2052 | break; |
| 2053 | default: |
Ville Syrjälä | 84f44ce | 2013-04-17 17:48:49 +0300 | [diff] [blame] | 2054 | DRM_ERROR("Can't update plane %c in SAREA\n", plane_name(plane)); |
Jesse Barnes | 17638cd | 2011-06-24 12:19:23 -0700 | [diff] [blame] | 2055 | return -EINVAL; |
| 2056 | } |
| 2057 | |
| 2058 | intel_fb = to_intel_framebuffer(fb); |
| 2059 | obj = intel_fb->obj; |
| 2060 | |
| 2061 | reg = DSPCNTR(plane); |
| 2062 | dspcntr = I915_READ(reg); |
| 2063 | /* Mask out pixel format bits in case we change it */ |
| 2064 | dspcntr &= ~DISPPLANE_PIXFORMAT_MASK; |
Ville Syrjälä | 57779d0 | 2012-10-31 17:50:14 +0200 | [diff] [blame] | 2065 | switch (fb->pixel_format) { |
| 2066 | case DRM_FORMAT_C8: |
Jesse Barnes | 17638cd | 2011-06-24 12:19:23 -0700 | [diff] [blame] | 2067 | dspcntr |= DISPPLANE_8BPP; |
| 2068 | break; |
Ville Syrjälä | 57779d0 | 2012-10-31 17:50:14 +0200 | [diff] [blame] | 2069 | case DRM_FORMAT_RGB565: |
| 2070 | dspcntr |= DISPPLANE_BGRX565; |
Jesse Barnes | 17638cd | 2011-06-24 12:19:23 -0700 | [diff] [blame] | 2071 | break; |
Ville Syrjälä | 57779d0 | 2012-10-31 17:50:14 +0200 | [diff] [blame] | 2072 | case DRM_FORMAT_XRGB8888: |
| 2073 | case DRM_FORMAT_ARGB8888: |
| 2074 | dspcntr |= DISPPLANE_BGRX888; |
| 2075 | break; |
| 2076 | case DRM_FORMAT_XBGR8888: |
| 2077 | case DRM_FORMAT_ABGR8888: |
| 2078 | dspcntr |= DISPPLANE_RGBX888; |
| 2079 | break; |
| 2080 | case DRM_FORMAT_XRGB2101010: |
| 2081 | case DRM_FORMAT_ARGB2101010: |
| 2082 | dspcntr |= DISPPLANE_BGRX101010; |
| 2083 | break; |
| 2084 | case DRM_FORMAT_XBGR2101010: |
| 2085 | case DRM_FORMAT_ABGR2101010: |
| 2086 | dspcntr |= DISPPLANE_RGBX101010; |
Jesse Barnes | 17638cd | 2011-06-24 12:19:23 -0700 | [diff] [blame] | 2087 | break; |
| 2088 | default: |
Daniel Vetter | baba133 | 2013-03-27 00:45:00 +0100 | [diff] [blame] | 2089 | BUG(); |
Jesse Barnes | 17638cd | 2011-06-24 12:19:23 -0700 | [diff] [blame] | 2090 | } |
| 2091 | |
| 2092 | if (obj->tiling_mode != I915_TILING_NONE) |
| 2093 | dspcntr |= DISPPLANE_TILED; |
| 2094 | else |
| 2095 | dspcntr &= ~DISPPLANE_TILED; |
| 2096 | |
| 2097 | /* must disable */ |
| 2098 | dspcntr |= DISPPLANE_TRICKLE_FEED_DISABLE; |
| 2099 | |
| 2100 | I915_WRITE(reg, dspcntr); |
| 2101 | |
Daniel Vetter | e506a0c | 2012-07-05 12:17:29 +0200 | [diff] [blame] | 2102 | linear_offset = y * fb->pitches[0] + x * (fb->bits_per_pixel / 8); |
Daniel Vetter | c2c7513 | 2012-07-05 12:17:30 +0200 | [diff] [blame] | 2103 | intel_crtc->dspaddr_offset = |
Chris Wilson | bc75286 | 2013-02-21 20:04:31 +0000 | [diff] [blame] | 2104 | intel_gen4_compute_page_offset(&x, &y, obj->tiling_mode, |
| 2105 | fb->bits_per_pixel / 8, |
| 2106 | fb->pitches[0]); |
Daniel Vetter | c2c7513 | 2012-07-05 12:17:30 +0200 | [diff] [blame] | 2107 | linear_offset -= intel_crtc->dspaddr_offset; |
Jesse Barnes | 17638cd | 2011-06-24 12:19:23 -0700 | [diff] [blame] | 2108 | |
Daniel Vetter | e506a0c | 2012-07-05 12:17:29 +0200 | [diff] [blame] | 2109 | DRM_DEBUG_KMS("Writing base %08X %08lX %d %d %d\n", |
| 2110 | obj->gtt_offset, linear_offset, x, y, fb->pitches[0]); |
Ville Syrjälä | 01f2c77 | 2011-12-20 00:06:49 +0200 | [diff] [blame] | 2111 | I915_WRITE(DSPSTRIDE(plane), fb->pitches[0]); |
Daniel Vetter | c2c7513 | 2012-07-05 12:17:30 +0200 | [diff] [blame] | 2112 | I915_MODIFY_DISPBASE(DSPSURF(plane), |
| 2113 | obj->gtt_offset + intel_crtc->dspaddr_offset); |
Damien Lespiau | bc1c91e | 2012-10-29 12:14:21 +0000 | [diff] [blame] | 2114 | if (IS_HASWELL(dev)) { |
| 2115 | I915_WRITE(DSPOFFSET(plane), (y << 16) | x); |
| 2116 | } else { |
| 2117 | I915_WRITE(DSPTILEOFF(plane), (y << 16) | x); |
| 2118 | I915_WRITE(DSPLINOFF(plane), linear_offset); |
| 2119 | } |
Jesse Barnes | 17638cd | 2011-06-24 12:19:23 -0700 | [diff] [blame] | 2120 | POSTING_READ(reg); |
| 2121 | |
| 2122 | return 0; |
| 2123 | } |
| 2124 | |
| 2125 | /* Assume fb object is pinned & idle & fenced and just update base pointers */ |
| 2126 | static int |
| 2127 | intel_pipe_set_base_atomic(struct drm_crtc *crtc, struct drm_framebuffer *fb, |
| 2128 | int x, int y, enum mode_set_atomic state) |
| 2129 | { |
| 2130 | struct drm_device *dev = crtc->dev; |
| 2131 | struct drm_i915_private *dev_priv = dev->dev_private; |
Jesse Barnes | 17638cd | 2011-06-24 12:19:23 -0700 | [diff] [blame] | 2132 | |
Chris Wilson | 6b8e6ed | 2012-04-17 15:08:19 +0100 | [diff] [blame] | 2133 | if (dev_priv->display.disable_fbc) |
| 2134 | dev_priv->display.disable_fbc(dev); |
Daniel Vetter | 3dec009 | 2010-08-20 21:40:52 +0200 | [diff] [blame] | 2135 | intel_increase_pllclock(crtc); |
Jesse Barnes | 8125556 | 2010-08-02 12:07:50 -0700 | [diff] [blame] | 2136 | |
Chris Wilson | 6b8e6ed | 2012-04-17 15:08:19 +0100 | [diff] [blame] | 2137 | return dev_priv->display.update_plane(crtc, fb, x, y); |
Jesse Barnes | 8125556 | 2010-08-02 12:07:50 -0700 | [diff] [blame] | 2138 | } |
| 2139 | |
Ville Syrjälä | 96a0291 | 2013-02-18 19:08:49 +0200 | [diff] [blame] | 2140 | void intel_display_handle_reset(struct drm_device *dev) |
| 2141 | { |
| 2142 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 2143 | struct drm_crtc *crtc; |
| 2144 | |
| 2145 | /* |
| 2146 | * Flips in the rings have been nuked by the reset, |
| 2147 | * so complete all pending flips so that user space |
| 2148 | * will get its events and not get stuck. |
| 2149 | * |
| 2150 | * Also update the base address of all primary |
| 2151 | * planes to the the last fb to make sure we're |
| 2152 | * showing the correct fb after a reset. |
| 2153 | * |
| 2154 | * Need to make two loops over the crtcs so that we |
| 2155 | * don't try to grab a crtc mutex before the |
| 2156 | * pending_flip_queue really got woken up. |
| 2157 | */ |
| 2158 | |
| 2159 | list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) { |
| 2160 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 2161 | enum plane plane = intel_crtc->plane; |
| 2162 | |
| 2163 | intel_prepare_page_flip(dev, plane); |
| 2164 | intel_finish_page_flip_plane(dev, plane); |
| 2165 | } |
| 2166 | |
| 2167 | list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) { |
| 2168 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 2169 | |
| 2170 | mutex_lock(&crtc->mutex); |
| 2171 | if (intel_crtc->active) |
| 2172 | dev_priv->display.update_plane(crtc, crtc->fb, |
| 2173 | crtc->x, crtc->y); |
| 2174 | mutex_unlock(&crtc->mutex); |
| 2175 | } |
| 2176 | } |
| 2177 | |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 2178 | static int |
Chris Wilson | 14667a4 | 2012-04-03 17:58:35 +0100 | [diff] [blame] | 2179 | intel_finish_fb(struct drm_framebuffer *old_fb) |
| 2180 | { |
| 2181 | struct drm_i915_gem_object *obj = to_intel_framebuffer(old_fb)->obj; |
| 2182 | struct drm_i915_private *dev_priv = obj->base.dev->dev_private; |
| 2183 | bool was_interruptible = dev_priv->mm.interruptible; |
| 2184 | int ret; |
| 2185 | |
Chris Wilson | 14667a4 | 2012-04-03 17:58:35 +0100 | [diff] [blame] | 2186 | /* Big Hammer, we also need to ensure that any pending |
| 2187 | * MI_WAIT_FOR_EVENT inside a user batch buffer on the |
| 2188 | * current scanout is retired before unpinning the old |
| 2189 | * framebuffer. |
| 2190 | * |
| 2191 | * This should only fail upon a hung GPU, in which case we |
| 2192 | * can safely continue. |
| 2193 | */ |
| 2194 | dev_priv->mm.interruptible = false; |
| 2195 | ret = i915_gem_object_finish_gpu(obj); |
| 2196 | dev_priv->mm.interruptible = was_interruptible; |
| 2197 | |
| 2198 | return ret; |
| 2199 | } |
| 2200 | |
Ville Syrjälä | 198598d | 2012-10-31 17:50:24 +0200 | [diff] [blame] | 2201 | static void intel_crtc_update_sarea_pos(struct drm_crtc *crtc, int x, int y) |
| 2202 | { |
| 2203 | struct drm_device *dev = crtc->dev; |
| 2204 | struct drm_i915_master_private *master_priv; |
| 2205 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 2206 | |
| 2207 | if (!dev->primary->master) |
| 2208 | return; |
| 2209 | |
| 2210 | master_priv = dev->primary->master->driver_priv; |
| 2211 | if (!master_priv->sarea_priv) |
| 2212 | return; |
| 2213 | |
| 2214 | switch (intel_crtc->pipe) { |
| 2215 | case 0: |
| 2216 | master_priv->sarea_priv->pipeA_x = x; |
| 2217 | master_priv->sarea_priv->pipeA_y = y; |
| 2218 | break; |
| 2219 | case 1: |
| 2220 | master_priv->sarea_priv->pipeB_x = x; |
| 2221 | master_priv->sarea_priv->pipeB_y = y; |
| 2222 | break; |
| 2223 | default: |
| 2224 | break; |
| 2225 | } |
| 2226 | } |
| 2227 | |
Chris Wilson | 14667a4 | 2012-04-03 17:58:35 +0100 | [diff] [blame] | 2228 | static int |
Kristian Høgsberg | 3c4fdcf | 2008-12-17 22:14:46 -0500 | [diff] [blame] | 2229 | intel_pipe_set_base(struct drm_crtc *crtc, int x, int y, |
Daniel Vetter | 94352cf | 2012-07-05 22:51:56 +0200 | [diff] [blame] | 2230 | struct drm_framebuffer *fb) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 2231 | { |
| 2232 | struct drm_device *dev = crtc->dev; |
Chris Wilson | 6b8e6ed | 2012-04-17 15:08:19 +0100 | [diff] [blame] | 2233 | struct drm_i915_private *dev_priv = dev->dev_private; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 2234 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
Daniel Vetter | 94352cf | 2012-07-05 22:51:56 +0200 | [diff] [blame] | 2235 | struct drm_framebuffer *old_fb; |
Chris Wilson | 5c3b82e | 2009-02-11 13:25:09 +0000 | [diff] [blame] | 2236 | int ret; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 2237 | |
| 2238 | /* no fb bound */ |
Daniel Vetter | 94352cf | 2012-07-05 22:51:56 +0200 | [diff] [blame] | 2239 | if (!fb) { |
Jesse Barnes | a5071c2 | 2011-07-19 15:38:56 -0700 | [diff] [blame] | 2240 | DRM_ERROR("No FB bound\n"); |
Chris Wilson | 5c3b82e | 2009-02-11 13:25:09 +0000 | [diff] [blame] | 2241 | return 0; |
| 2242 | } |
| 2243 | |
Ben Widawsky | 7eb552a | 2013-03-13 14:05:41 -0700 | [diff] [blame] | 2244 | if (intel_crtc->plane > INTEL_INFO(dev)->num_pipes) { |
Ville Syrjälä | 84f44ce | 2013-04-17 17:48:49 +0300 | [diff] [blame] | 2245 | DRM_ERROR("no plane for crtc: plane %c, num_pipes %d\n", |
| 2246 | plane_name(intel_crtc->plane), |
| 2247 | INTEL_INFO(dev)->num_pipes); |
Chris Wilson | 5c3b82e | 2009-02-11 13:25:09 +0000 | [diff] [blame] | 2248 | return -EINVAL; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 2249 | } |
| 2250 | |
Chris Wilson | 5c3b82e | 2009-02-11 13:25:09 +0000 | [diff] [blame] | 2251 | mutex_lock(&dev->struct_mutex); |
Chris Wilson | 265db95 | 2010-09-20 15:41:01 +0100 | [diff] [blame] | 2252 | ret = intel_pin_and_fence_fb_obj(dev, |
Daniel Vetter | 94352cf | 2012-07-05 22:51:56 +0200 | [diff] [blame] | 2253 | to_intel_framebuffer(fb)->obj, |
Chris Wilson | 919926a | 2010-11-12 13:42:53 +0000 | [diff] [blame] | 2254 | NULL); |
Chris Wilson | 5c3b82e | 2009-02-11 13:25:09 +0000 | [diff] [blame] | 2255 | if (ret != 0) { |
| 2256 | mutex_unlock(&dev->struct_mutex); |
Jesse Barnes | a5071c2 | 2011-07-19 15:38:56 -0700 | [diff] [blame] | 2257 | DRM_ERROR("pin & fence failed\n"); |
Chris Wilson | 5c3b82e | 2009-02-11 13:25:09 +0000 | [diff] [blame] | 2258 | return ret; |
| 2259 | } |
Kristian Høgsberg | 3c4fdcf | 2008-12-17 22:14:46 -0500 | [diff] [blame] | 2260 | |
Daniel Vetter | 94352cf | 2012-07-05 22:51:56 +0200 | [diff] [blame] | 2261 | ret = dev_priv->display.update_plane(crtc, fb, x, y); |
Chris Wilson | 4e6cfef | 2010-08-08 13:20:19 +0100 | [diff] [blame] | 2262 | if (ret) { |
Daniel Vetter | 94352cf | 2012-07-05 22:51:56 +0200 | [diff] [blame] | 2263 | intel_unpin_fb_obj(to_intel_framebuffer(fb)->obj); |
Chris Wilson | 5c3b82e | 2009-02-11 13:25:09 +0000 | [diff] [blame] | 2264 | mutex_unlock(&dev->struct_mutex); |
Jesse Barnes | a5071c2 | 2011-07-19 15:38:56 -0700 | [diff] [blame] | 2265 | DRM_ERROR("failed to update base address\n"); |
Chris Wilson | 4e6cfef | 2010-08-08 13:20:19 +0100 | [diff] [blame] | 2266 | return ret; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 2267 | } |
Kristian Høgsberg | 3c4fdcf | 2008-12-17 22:14:46 -0500 | [diff] [blame] | 2268 | |
Daniel Vetter | 94352cf | 2012-07-05 22:51:56 +0200 | [diff] [blame] | 2269 | old_fb = crtc->fb; |
| 2270 | crtc->fb = fb; |
Daniel Vetter | 6c4c86f | 2012-09-10 21:58:30 +0200 | [diff] [blame] | 2271 | crtc->x = x; |
| 2272 | crtc->y = y; |
Daniel Vetter | 94352cf | 2012-07-05 22:51:56 +0200 | [diff] [blame] | 2273 | |
Chris Wilson | b7f1de2 | 2010-12-14 16:09:31 +0000 | [diff] [blame] | 2274 | if (old_fb) { |
Daniel Vetter | d7697ee | 2013-06-02 17:23:01 +0200 | [diff] [blame] | 2275 | if (intel_crtc->active && old_fb != fb) |
| 2276 | intel_wait_for_vblank(dev, intel_crtc->pipe); |
Chris Wilson | 1690e1e | 2011-12-14 13:57:08 +0100 | [diff] [blame] | 2277 | intel_unpin_fb_obj(to_intel_framebuffer(old_fb)->obj); |
Chris Wilson | b7f1de2 | 2010-12-14 16:09:31 +0000 | [diff] [blame] | 2278 | } |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 2279 | |
Chris Wilson | 6b8e6ed | 2012-04-17 15:08:19 +0100 | [diff] [blame] | 2280 | intel_update_fbc(dev); |
Chris Wilson | 5c3b82e | 2009-02-11 13:25:09 +0000 | [diff] [blame] | 2281 | mutex_unlock(&dev->struct_mutex); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 2282 | |
Ville Syrjälä | 198598d | 2012-10-31 17:50:24 +0200 | [diff] [blame] | 2283 | intel_crtc_update_sarea_pos(crtc, x, y); |
Chris Wilson | 5c3b82e | 2009-02-11 13:25:09 +0000 | [diff] [blame] | 2284 | |
| 2285 | return 0; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 2286 | } |
| 2287 | |
Zhenyu Wang | 5e84e1a | 2010-10-28 16:38:08 +0800 | [diff] [blame] | 2288 | static void intel_fdi_normal_train(struct drm_crtc *crtc) |
| 2289 | { |
| 2290 | struct drm_device *dev = crtc->dev; |
| 2291 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 2292 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 2293 | int pipe = intel_crtc->pipe; |
| 2294 | u32 reg, temp; |
| 2295 | |
| 2296 | /* enable normal train */ |
| 2297 | reg = FDI_TX_CTL(pipe); |
| 2298 | temp = I915_READ(reg); |
Keith Packard | 61e499b | 2011-05-17 16:13:52 -0700 | [diff] [blame] | 2299 | if (IS_IVYBRIDGE(dev)) { |
Jesse Barnes | 357555c | 2011-04-28 15:09:55 -0700 | [diff] [blame] | 2300 | temp &= ~FDI_LINK_TRAIN_NONE_IVB; |
| 2301 | temp |= FDI_LINK_TRAIN_NONE_IVB | FDI_TX_ENHANCE_FRAME_ENABLE; |
Keith Packard | 61e499b | 2011-05-17 16:13:52 -0700 | [diff] [blame] | 2302 | } else { |
| 2303 | temp &= ~FDI_LINK_TRAIN_NONE; |
| 2304 | temp |= FDI_LINK_TRAIN_NONE | FDI_TX_ENHANCE_FRAME_ENABLE; |
Jesse Barnes | 357555c | 2011-04-28 15:09:55 -0700 | [diff] [blame] | 2305 | } |
Zhenyu Wang | 5e84e1a | 2010-10-28 16:38:08 +0800 | [diff] [blame] | 2306 | I915_WRITE(reg, temp); |
| 2307 | |
| 2308 | reg = FDI_RX_CTL(pipe); |
| 2309 | temp = I915_READ(reg); |
| 2310 | if (HAS_PCH_CPT(dev)) { |
| 2311 | temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT; |
| 2312 | temp |= FDI_LINK_TRAIN_NORMAL_CPT; |
| 2313 | } else { |
| 2314 | temp &= ~FDI_LINK_TRAIN_NONE; |
| 2315 | temp |= FDI_LINK_TRAIN_NONE; |
| 2316 | } |
| 2317 | I915_WRITE(reg, temp | FDI_RX_ENHANCE_FRAME_ENABLE); |
| 2318 | |
| 2319 | /* wait one idle pattern time */ |
| 2320 | POSTING_READ(reg); |
| 2321 | udelay(1000); |
Jesse Barnes | 357555c | 2011-04-28 15:09:55 -0700 | [diff] [blame] | 2322 | |
| 2323 | /* IVB wants error correction enabled */ |
| 2324 | if (IS_IVYBRIDGE(dev)) |
| 2325 | I915_WRITE(reg, I915_READ(reg) | FDI_FS_ERRC_ENABLE | |
| 2326 | FDI_FE_ERRC_ENABLE); |
Zhenyu Wang | 5e84e1a | 2010-10-28 16:38:08 +0800 | [diff] [blame] | 2327 | } |
| 2328 | |
Daniel Vetter | 1e833f4 | 2013-02-19 22:31:57 +0100 | [diff] [blame] | 2329 | static bool pipe_has_enabled_pch(struct intel_crtc *intel_crtc) |
| 2330 | { |
| 2331 | return intel_crtc->base.enabled && intel_crtc->config.has_pch_encoder; |
| 2332 | } |
| 2333 | |
Daniel Vetter | 01a415f | 2012-10-27 15:58:40 +0200 | [diff] [blame] | 2334 | static void ivb_modeset_global_resources(struct drm_device *dev) |
| 2335 | { |
| 2336 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 2337 | struct intel_crtc *pipe_B_crtc = |
| 2338 | to_intel_crtc(dev_priv->pipe_to_crtc_mapping[PIPE_B]); |
| 2339 | struct intel_crtc *pipe_C_crtc = |
| 2340 | to_intel_crtc(dev_priv->pipe_to_crtc_mapping[PIPE_C]); |
| 2341 | uint32_t temp; |
| 2342 | |
Daniel Vetter | 1e833f4 | 2013-02-19 22:31:57 +0100 | [diff] [blame] | 2343 | /* |
| 2344 | * When everything is off disable fdi C so that we could enable fdi B |
| 2345 | * with all lanes. Note that we don't care about enabled pipes without |
| 2346 | * an enabled pch encoder. |
| 2347 | */ |
| 2348 | if (!pipe_has_enabled_pch(pipe_B_crtc) && |
| 2349 | !pipe_has_enabled_pch(pipe_C_crtc)) { |
Daniel Vetter | 01a415f | 2012-10-27 15:58:40 +0200 | [diff] [blame] | 2350 | WARN_ON(I915_READ(FDI_RX_CTL(PIPE_B)) & FDI_RX_ENABLE); |
| 2351 | WARN_ON(I915_READ(FDI_RX_CTL(PIPE_C)) & FDI_RX_ENABLE); |
| 2352 | |
| 2353 | temp = I915_READ(SOUTH_CHICKEN1); |
| 2354 | temp &= ~FDI_BC_BIFURCATION_SELECT; |
| 2355 | DRM_DEBUG_KMS("disabling fdi C rx\n"); |
| 2356 | I915_WRITE(SOUTH_CHICKEN1, temp); |
| 2357 | } |
| 2358 | } |
| 2359 | |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 2360 | /* The FDI link training functions for ILK/Ibexpeak. */ |
| 2361 | static void ironlake_fdi_link_train(struct drm_crtc *crtc) |
| 2362 | { |
| 2363 | struct drm_device *dev = crtc->dev; |
| 2364 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 2365 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 2366 | int pipe = intel_crtc->pipe; |
Jesse Barnes | 0fc932b | 2011-01-04 15:09:37 -0800 | [diff] [blame] | 2367 | int plane = intel_crtc->plane; |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2368 | u32 reg, temp, tries; |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 2369 | |
Jesse Barnes | 0fc932b | 2011-01-04 15:09:37 -0800 | [diff] [blame] | 2370 | /* FDI needs bits from pipe & plane first */ |
| 2371 | assert_pipe_enabled(dev_priv, pipe); |
| 2372 | assert_plane_enabled(dev_priv, plane); |
| 2373 | |
Adam Jackson | e1a4474 | 2010-06-25 15:32:14 -0400 | [diff] [blame] | 2374 | /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit |
| 2375 | for train result */ |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2376 | reg = FDI_RX_IMR(pipe); |
| 2377 | temp = I915_READ(reg); |
Adam Jackson | e1a4474 | 2010-06-25 15:32:14 -0400 | [diff] [blame] | 2378 | temp &= ~FDI_RX_SYMBOL_LOCK; |
| 2379 | temp &= ~FDI_RX_BIT_LOCK; |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2380 | I915_WRITE(reg, temp); |
| 2381 | I915_READ(reg); |
Adam Jackson | e1a4474 | 2010-06-25 15:32:14 -0400 | [diff] [blame] | 2382 | udelay(150); |
| 2383 | |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 2384 | /* enable CPU FDI TX and PCH FDI RX */ |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2385 | reg = FDI_TX_CTL(pipe); |
| 2386 | temp = I915_READ(reg); |
Daniel Vetter | 627eb5a | 2013-04-29 19:33:42 +0200 | [diff] [blame] | 2387 | temp &= ~FDI_DP_PORT_WIDTH_MASK; |
| 2388 | temp |= FDI_DP_PORT_WIDTH(intel_crtc->config.fdi_lanes); |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 2389 | temp &= ~FDI_LINK_TRAIN_NONE; |
| 2390 | temp |= FDI_LINK_TRAIN_PATTERN_1; |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2391 | I915_WRITE(reg, temp | FDI_TX_ENABLE); |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 2392 | |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2393 | reg = FDI_RX_CTL(pipe); |
| 2394 | temp = I915_READ(reg); |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 2395 | temp &= ~FDI_LINK_TRAIN_NONE; |
| 2396 | temp |= FDI_LINK_TRAIN_PATTERN_1; |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2397 | I915_WRITE(reg, temp | FDI_RX_ENABLE); |
| 2398 | |
| 2399 | POSTING_READ(reg); |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 2400 | udelay(150); |
| 2401 | |
Jesse Barnes | 5b2adf8 | 2010-10-07 16:01:15 -0700 | [diff] [blame] | 2402 | /* Ironlake workaround, enable clock pointer after FDI enable*/ |
Daniel Vetter | 8f5718a | 2012-10-31 22:52:28 +0100 | [diff] [blame] | 2403 | I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR); |
| 2404 | I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR | |
| 2405 | FDI_RX_PHASE_SYNC_POINTER_EN); |
Jesse Barnes | 5b2adf8 | 2010-10-07 16:01:15 -0700 | [diff] [blame] | 2406 | |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2407 | reg = FDI_RX_IIR(pipe); |
Adam Jackson | e1a4474 | 2010-06-25 15:32:14 -0400 | [diff] [blame] | 2408 | for (tries = 0; tries < 5; tries++) { |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2409 | temp = I915_READ(reg); |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 2410 | DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp); |
| 2411 | |
| 2412 | if ((temp & FDI_RX_BIT_LOCK)) { |
| 2413 | DRM_DEBUG_KMS("FDI train 1 done.\n"); |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2414 | I915_WRITE(reg, temp | FDI_RX_BIT_LOCK); |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 2415 | break; |
| 2416 | } |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 2417 | } |
Adam Jackson | e1a4474 | 2010-06-25 15:32:14 -0400 | [diff] [blame] | 2418 | if (tries == 5) |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2419 | DRM_ERROR("FDI train 1 fail!\n"); |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 2420 | |
| 2421 | /* Train 2 */ |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2422 | reg = FDI_TX_CTL(pipe); |
| 2423 | temp = I915_READ(reg); |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 2424 | temp &= ~FDI_LINK_TRAIN_NONE; |
| 2425 | temp |= FDI_LINK_TRAIN_PATTERN_2; |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2426 | I915_WRITE(reg, temp); |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 2427 | |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2428 | reg = FDI_RX_CTL(pipe); |
| 2429 | temp = I915_READ(reg); |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 2430 | temp &= ~FDI_LINK_TRAIN_NONE; |
| 2431 | temp |= FDI_LINK_TRAIN_PATTERN_2; |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2432 | I915_WRITE(reg, temp); |
| 2433 | |
| 2434 | POSTING_READ(reg); |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 2435 | udelay(150); |
| 2436 | |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2437 | reg = FDI_RX_IIR(pipe); |
Adam Jackson | e1a4474 | 2010-06-25 15:32:14 -0400 | [diff] [blame] | 2438 | for (tries = 0; tries < 5; tries++) { |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2439 | temp = I915_READ(reg); |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 2440 | DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp); |
| 2441 | |
| 2442 | if (temp & FDI_RX_SYMBOL_LOCK) { |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2443 | I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK); |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 2444 | DRM_DEBUG_KMS("FDI train 2 done.\n"); |
| 2445 | break; |
| 2446 | } |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 2447 | } |
Adam Jackson | e1a4474 | 2010-06-25 15:32:14 -0400 | [diff] [blame] | 2448 | if (tries == 5) |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2449 | DRM_ERROR("FDI train 2 fail!\n"); |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 2450 | |
| 2451 | DRM_DEBUG_KMS("FDI train done\n"); |
Jesse Barnes | 5c5313c | 2010-10-07 16:01:11 -0700 | [diff] [blame] | 2452 | |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 2453 | } |
| 2454 | |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 2455 | static const int snb_b_fdi_train_param[] = { |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 2456 | FDI_LINK_TRAIN_400MV_0DB_SNB_B, |
| 2457 | FDI_LINK_TRAIN_400MV_6DB_SNB_B, |
| 2458 | FDI_LINK_TRAIN_600MV_3_5DB_SNB_B, |
| 2459 | FDI_LINK_TRAIN_800MV_0DB_SNB_B, |
| 2460 | }; |
| 2461 | |
| 2462 | /* The FDI link training functions for SNB/Cougarpoint. */ |
| 2463 | static void gen6_fdi_link_train(struct drm_crtc *crtc) |
| 2464 | { |
| 2465 | struct drm_device *dev = crtc->dev; |
| 2466 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 2467 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 2468 | int pipe = intel_crtc->pipe; |
Sean Paul | fa37d39 | 2012-03-02 12:53:39 -0500 | [diff] [blame] | 2469 | u32 reg, temp, i, retry; |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 2470 | |
Adam Jackson | e1a4474 | 2010-06-25 15:32:14 -0400 | [diff] [blame] | 2471 | /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit |
| 2472 | for train result */ |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2473 | reg = FDI_RX_IMR(pipe); |
| 2474 | temp = I915_READ(reg); |
Adam Jackson | e1a4474 | 2010-06-25 15:32:14 -0400 | [diff] [blame] | 2475 | temp &= ~FDI_RX_SYMBOL_LOCK; |
| 2476 | temp &= ~FDI_RX_BIT_LOCK; |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2477 | I915_WRITE(reg, temp); |
| 2478 | |
| 2479 | POSTING_READ(reg); |
Adam Jackson | e1a4474 | 2010-06-25 15:32:14 -0400 | [diff] [blame] | 2480 | udelay(150); |
| 2481 | |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 2482 | /* enable CPU FDI TX and PCH FDI RX */ |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2483 | reg = FDI_TX_CTL(pipe); |
| 2484 | temp = I915_READ(reg); |
Daniel Vetter | 627eb5a | 2013-04-29 19:33:42 +0200 | [diff] [blame] | 2485 | temp &= ~FDI_DP_PORT_WIDTH_MASK; |
| 2486 | temp |= FDI_DP_PORT_WIDTH(intel_crtc->config.fdi_lanes); |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 2487 | temp &= ~FDI_LINK_TRAIN_NONE; |
| 2488 | temp |= FDI_LINK_TRAIN_PATTERN_1; |
| 2489 | temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK; |
| 2490 | /* SNB-B */ |
| 2491 | temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B; |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2492 | I915_WRITE(reg, temp | FDI_TX_ENABLE); |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 2493 | |
Daniel Vetter | d74cf32 | 2012-10-26 10:58:13 +0200 | [diff] [blame] | 2494 | I915_WRITE(FDI_RX_MISC(pipe), |
| 2495 | FDI_RX_TP1_TO_TP2_48 | FDI_RX_FDI_DELAY_90); |
| 2496 | |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2497 | reg = FDI_RX_CTL(pipe); |
| 2498 | temp = I915_READ(reg); |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 2499 | if (HAS_PCH_CPT(dev)) { |
| 2500 | temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT; |
| 2501 | temp |= FDI_LINK_TRAIN_PATTERN_1_CPT; |
| 2502 | } else { |
| 2503 | temp &= ~FDI_LINK_TRAIN_NONE; |
| 2504 | temp |= FDI_LINK_TRAIN_PATTERN_1; |
| 2505 | } |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2506 | I915_WRITE(reg, temp | FDI_RX_ENABLE); |
| 2507 | |
| 2508 | POSTING_READ(reg); |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 2509 | udelay(150); |
| 2510 | |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 2511 | for (i = 0; i < 4; i++) { |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2512 | reg = FDI_TX_CTL(pipe); |
| 2513 | temp = I915_READ(reg); |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 2514 | temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK; |
| 2515 | temp |= snb_b_fdi_train_param[i]; |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2516 | I915_WRITE(reg, temp); |
| 2517 | |
| 2518 | POSTING_READ(reg); |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 2519 | udelay(500); |
| 2520 | |
Sean Paul | fa37d39 | 2012-03-02 12:53:39 -0500 | [diff] [blame] | 2521 | for (retry = 0; retry < 5; retry++) { |
| 2522 | reg = FDI_RX_IIR(pipe); |
| 2523 | temp = I915_READ(reg); |
| 2524 | DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp); |
| 2525 | if (temp & FDI_RX_BIT_LOCK) { |
| 2526 | I915_WRITE(reg, temp | FDI_RX_BIT_LOCK); |
| 2527 | DRM_DEBUG_KMS("FDI train 1 done.\n"); |
| 2528 | break; |
| 2529 | } |
| 2530 | udelay(50); |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 2531 | } |
Sean Paul | fa37d39 | 2012-03-02 12:53:39 -0500 | [diff] [blame] | 2532 | if (retry < 5) |
| 2533 | break; |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 2534 | } |
| 2535 | if (i == 4) |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2536 | DRM_ERROR("FDI train 1 fail!\n"); |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 2537 | |
| 2538 | /* Train 2 */ |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2539 | reg = FDI_TX_CTL(pipe); |
| 2540 | temp = I915_READ(reg); |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 2541 | temp &= ~FDI_LINK_TRAIN_NONE; |
| 2542 | temp |= FDI_LINK_TRAIN_PATTERN_2; |
| 2543 | if (IS_GEN6(dev)) { |
| 2544 | temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK; |
| 2545 | /* SNB-B */ |
| 2546 | temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B; |
| 2547 | } |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2548 | I915_WRITE(reg, temp); |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 2549 | |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2550 | reg = FDI_RX_CTL(pipe); |
| 2551 | temp = I915_READ(reg); |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 2552 | if (HAS_PCH_CPT(dev)) { |
| 2553 | temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT; |
| 2554 | temp |= FDI_LINK_TRAIN_PATTERN_2_CPT; |
| 2555 | } else { |
| 2556 | temp &= ~FDI_LINK_TRAIN_NONE; |
| 2557 | temp |= FDI_LINK_TRAIN_PATTERN_2; |
| 2558 | } |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2559 | I915_WRITE(reg, temp); |
| 2560 | |
| 2561 | POSTING_READ(reg); |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 2562 | udelay(150); |
| 2563 | |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 2564 | for (i = 0; i < 4; i++) { |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2565 | reg = FDI_TX_CTL(pipe); |
| 2566 | temp = I915_READ(reg); |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 2567 | temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK; |
| 2568 | temp |= snb_b_fdi_train_param[i]; |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2569 | I915_WRITE(reg, temp); |
| 2570 | |
| 2571 | POSTING_READ(reg); |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 2572 | udelay(500); |
| 2573 | |
Sean Paul | fa37d39 | 2012-03-02 12:53:39 -0500 | [diff] [blame] | 2574 | for (retry = 0; retry < 5; retry++) { |
| 2575 | reg = FDI_RX_IIR(pipe); |
| 2576 | temp = I915_READ(reg); |
| 2577 | DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp); |
| 2578 | if (temp & FDI_RX_SYMBOL_LOCK) { |
| 2579 | I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK); |
| 2580 | DRM_DEBUG_KMS("FDI train 2 done.\n"); |
| 2581 | break; |
| 2582 | } |
| 2583 | udelay(50); |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 2584 | } |
Sean Paul | fa37d39 | 2012-03-02 12:53:39 -0500 | [diff] [blame] | 2585 | if (retry < 5) |
| 2586 | break; |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 2587 | } |
| 2588 | if (i == 4) |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2589 | DRM_ERROR("FDI train 2 fail!\n"); |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 2590 | |
| 2591 | DRM_DEBUG_KMS("FDI train done.\n"); |
| 2592 | } |
| 2593 | |
Jesse Barnes | 357555c | 2011-04-28 15:09:55 -0700 | [diff] [blame] | 2594 | /* Manual link training for Ivy Bridge A0 parts */ |
| 2595 | static void ivb_manual_fdi_link_train(struct drm_crtc *crtc) |
| 2596 | { |
| 2597 | struct drm_device *dev = crtc->dev; |
| 2598 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 2599 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 2600 | int pipe = intel_crtc->pipe; |
| 2601 | u32 reg, temp, i; |
| 2602 | |
| 2603 | /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit |
| 2604 | for train result */ |
| 2605 | reg = FDI_RX_IMR(pipe); |
| 2606 | temp = I915_READ(reg); |
| 2607 | temp &= ~FDI_RX_SYMBOL_LOCK; |
| 2608 | temp &= ~FDI_RX_BIT_LOCK; |
| 2609 | I915_WRITE(reg, temp); |
| 2610 | |
| 2611 | POSTING_READ(reg); |
| 2612 | udelay(150); |
| 2613 | |
Daniel Vetter | 01a415f | 2012-10-27 15:58:40 +0200 | [diff] [blame] | 2614 | DRM_DEBUG_KMS("FDI_RX_IIR before link train 0x%x\n", |
| 2615 | I915_READ(FDI_RX_IIR(pipe))); |
| 2616 | |
Jesse Barnes | 357555c | 2011-04-28 15:09:55 -0700 | [diff] [blame] | 2617 | /* enable CPU FDI TX and PCH FDI RX */ |
| 2618 | reg = FDI_TX_CTL(pipe); |
| 2619 | temp = I915_READ(reg); |
Daniel Vetter | 627eb5a | 2013-04-29 19:33:42 +0200 | [diff] [blame] | 2620 | temp &= ~FDI_DP_PORT_WIDTH_MASK; |
| 2621 | temp |= FDI_DP_PORT_WIDTH(intel_crtc->config.fdi_lanes); |
Jesse Barnes | 357555c | 2011-04-28 15:09:55 -0700 | [diff] [blame] | 2622 | temp &= ~(FDI_LINK_TRAIN_AUTO | FDI_LINK_TRAIN_NONE_IVB); |
| 2623 | temp |= FDI_LINK_TRAIN_PATTERN_1_IVB; |
| 2624 | temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK; |
| 2625 | temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B; |
Jesse Barnes | c4f9c4c | 2011-10-10 14:28:52 -0700 | [diff] [blame] | 2626 | temp |= FDI_COMPOSITE_SYNC; |
Jesse Barnes | 357555c | 2011-04-28 15:09:55 -0700 | [diff] [blame] | 2627 | I915_WRITE(reg, temp | FDI_TX_ENABLE); |
| 2628 | |
Daniel Vetter | d74cf32 | 2012-10-26 10:58:13 +0200 | [diff] [blame] | 2629 | I915_WRITE(FDI_RX_MISC(pipe), |
| 2630 | FDI_RX_TP1_TO_TP2_48 | FDI_RX_FDI_DELAY_90); |
| 2631 | |
Jesse Barnes | 357555c | 2011-04-28 15:09:55 -0700 | [diff] [blame] | 2632 | reg = FDI_RX_CTL(pipe); |
| 2633 | temp = I915_READ(reg); |
| 2634 | temp &= ~FDI_LINK_TRAIN_AUTO; |
| 2635 | temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT; |
| 2636 | temp |= FDI_LINK_TRAIN_PATTERN_1_CPT; |
Jesse Barnes | c4f9c4c | 2011-10-10 14:28:52 -0700 | [diff] [blame] | 2637 | temp |= FDI_COMPOSITE_SYNC; |
Jesse Barnes | 357555c | 2011-04-28 15:09:55 -0700 | [diff] [blame] | 2638 | I915_WRITE(reg, temp | FDI_RX_ENABLE); |
| 2639 | |
| 2640 | POSTING_READ(reg); |
| 2641 | udelay(150); |
| 2642 | |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 2643 | for (i = 0; i < 4; i++) { |
Jesse Barnes | 357555c | 2011-04-28 15:09:55 -0700 | [diff] [blame] | 2644 | reg = FDI_TX_CTL(pipe); |
| 2645 | temp = I915_READ(reg); |
| 2646 | temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK; |
| 2647 | temp |= snb_b_fdi_train_param[i]; |
| 2648 | I915_WRITE(reg, temp); |
| 2649 | |
| 2650 | POSTING_READ(reg); |
| 2651 | udelay(500); |
| 2652 | |
| 2653 | reg = FDI_RX_IIR(pipe); |
| 2654 | temp = I915_READ(reg); |
| 2655 | DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp); |
| 2656 | |
| 2657 | if (temp & FDI_RX_BIT_LOCK || |
| 2658 | (I915_READ(reg) & FDI_RX_BIT_LOCK)) { |
| 2659 | I915_WRITE(reg, temp | FDI_RX_BIT_LOCK); |
Daniel Vetter | 01a415f | 2012-10-27 15:58:40 +0200 | [diff] [blame] | 2660 | DRM_DEBUG_KMS("FDI train 1 done, level %i.\n", i); |
Jesse Barnes | 357555c | 2011-04-28 15:09:55 -0700 | [diff] [blame] | 2661 | break; |
| 2662 | } |
| 2663 | } |
| 2664 | if (i == 4) |
| 2665 | DRM_ERROR("FDI train 1 fail!\n"); |
| 2666 | |
| 2667 | /* Train 2 */ |
| 2668 | reg = FDI_TX_CTL(pipe); |
| 2669 | temp = I915_READ(reg); |
| 2670 | temp &= ~FDI_LINK_TRAIN_NONE_IVB; |
| 2671 | temp |= FDI_LINK_TRAIN_PATTERN_2_IVB; |
| 2672 | temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK; |
| 2673 | temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B; |
| 2674 | I915_WRITE(reg, temp); |
| 2675 | |
| 2676 | reg = FDI_RX_CTL(pipe); |
| 2677 | temp = I915_READ(reg); |
| 2678 | temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT; |
| 2679 | temp |= FDI_LINK_TRAIN_PATTERN_2_CPT; |
| 2680 | I915_WRITE(reg, temp); |
| 2681 | |
| 2682 | POSTING_READ(reg); |
| 2683 | udelay(150); |
| 2684 | |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 2685 | for (i = 0; i < 4; i++) { |
Jesse Barnes | 357555c | 2011-04-28 15:09:55 -0700 | [diff] [blame] | 2686 | reg = FDI_TX_CTL(pipe); |
| 2687 | temp = I915_READ(reg); |
| 2688 | temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK; |
| 2689 | temp |= snb_b_fdi_train_param[i]; |
| 2690 | I915_WRITE(reg, temp); |
| 2691 | |
| 2692 | POSTING_READ(reg); |
| 2693 | udelay(500); |
| 2694 | |
| 2695 | reg = FDI_RX_IIR(pipe); |
| 2696 | temp = I915_READ(reg); |
| 2697 | DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp); |
| 2698 | |
| 2699 | if (temp & FDI_RX_SYMBOL_LOCK) { |
| 2700 | I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK); |
Daniel Vetter | 01a415f | 2012-10-27 15:58:40 +0200 | [diff] [blame] | 2701 | DRM_DEBUG_KMS("FDI train 2 done, level %i.\n", i); |
Jesse Barnes | 357555c | 2011-04-28 15:09:55 -0700 | [diff] [blame] | 2702 | break; |
| 2703 | } |
| 2704 | } |
| 2705 | if (i == 4) |
| 2706 | DRM_ERROR("FDI train 2 fail!\n"); |
| 2707 | |
| 2708 | DRM_DEBUG_KMS("FDI train done.\n"); |
| 2709 | } |
| 2710 | |
Daniel Vetter | 88cefb6 | 2012-08-12 19:27:14 +0200 | [diff] [blame] | 2711 | static void ironlake_fdi_pll_enable(struct intel_crtc *intel_crtc) |
Jesse Barnes | 0e23b99 | 2010-09-10 11:10:00 -0700 | [diff] [blame] | 2712 | { |
Daniel Vetter | 88cefb6 | 2012-08-12 19:27:14 +0200 | [diff] [blame] | 2713 | struct drm_device *dev = intel_crtc->base.dev; |
Jesse Barnes | 0e23b99 | 2010-09-10 11:10:00 -0700 | [diff] [blame] | 2714 | struct drm_i915_private *dev_priv = dev->dev_private; |
Jesse Barnes | 0e23b99 | 2010-09-10 11:10:00 -0700 | [diff] [blame] | 2715 | int pipe = intel_crtc->pipe; |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2716 | u32 reg, temp; |
Jesse Barnes | 0e23b99 | 2010-09-10 11:10:00 -0700 | [diff] [blame] | 2717 | |
Jesse Barnes | c64e311 | 2010-09-10 11:27:03 -0700 | [diff] [blame] | 2718 | |
Jesse Barnes | 0e23b99 | 2010-09-10 11:10:00 -0700 | [diff] [blame] | 2719 | /* enable PCH FDI RX PLL, wait warmup plus DMI latency */ |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2720 | reg = FDI_RX_CTL(pipe); |
| 2721 | temp = I915_READ(reg); |
Daniel Vetter | 627eb5a | 2013-04-29 19:33:42 +0200 | [diff] [blame] | 2722 | temp &= ~(FDI_DP_PORT_WIDTH_MASK | (0x7 << 16)); |
| 2723 | temp |= FDI_DP_PORT_WIDTH(intel_crtc->config.fdi_lanes); |
Daniel Vetter | dfd07d7 | 2012-12-17 11:21:38 +0100 | [diff] [blame] | 2724 | temp |= (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) << 11; |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2725 | I915_WRITE(reg, temp | FDI_RX_PLL_ENABLE); |
| 2726 | |
| 2727 | POSTING_READ(reg); |
Jesse Barnes | 0e23b99 | 2010-09-10 11:10:00 -0700 | [diff] [blame] | 2728 | udelay(200); |
| 2729 | |
| 2730 | /* Switch from Rawclk to PCDclk */ |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2731 | temp = I915_READ(reg); |
| 2732 | I915_WRITE(reg, temp | FDI_PCDCLK); |
| 2733 | |
| 2734 | POSTING_READ(reg); |
Jesse Barnes | 0e23b99 | 2010-09-10 11:10:00 -0700 | [diff] [blame] | 2735 | udelay(200); |
| 2736 | |
Paulo Zanoni | 2074973 | 2012-11-23 15:30:38 -0200 | [diff] [blame] | 2737 | /* Enable CPU FDI TX PLL, always on for Ironlake */ |
| 2738 | reg = FDI_TX_CTL(pipe); |
| 2739 | temp = I915_READ(reg); |
| 2740 | if ((temp & FDI_TX_PLL_ENABLE) == 0) { |
| 2741 | I915_WRITE(reg, temp | FDI_TX_PLL_ENABLE); |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2742 | |
Paulo Zanoni | 2074973 | 2012-11-23 15:30:38 -0200 | [diff] [blame] | 2743 | POSTING_READ(reg); |
| 2744 | udelay(100); |
Jesse Barnes | 0e23b99 | 2010-09-10 11:10:00 -0700 | [diff] [blame] | 2745 | } |
| 2746 | } |
| 2747 | |
Daniel Vetter | 88cefb6 | 2012-08-12 19:27:14 +0200 | [diff] [blame] | 2748 | static void ironlake_fdi_pll_disable(struct intel_crtc *intel_crtc) |
| 2749 | { |
| 2750 | struct drm_device *dev = intel_crtc->base.dev; |
| 2751 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 2752 | int pipe = intel_crtc->pipe; |
| 2753 | u32 reg, temp; |
| 2754 | |
| 2755 | /* Switch from PCDclk to Rawclk */ |
| 2756 | reg = FDI_RX_CTL(pipe); |
| 2757 | temp = I915_READ(reg); |
| 2758 | I915_WRITE(reg, temp & ~FDI_PCDCLK); |
| 2759 | |
| 2760 | /* Disable CPU FDI TX PLL */ |
| 2761 | reg = FDI_TX_CTL(pipe); |
| 2762 | temp = I915_READ(reg); |
| 2763 | I915_WRITE(reg, temp & ~FDI_TX_PLL_ENABLE); |
| 2764 | |
| 2765 | POSTING_READ(reg); |
| 2766 | udelay(100); |
| 2767 | |
| 2768 | reg = FDI_RX_CTL(pipe); |
| 2769 | temp = I915_READ(reg); |
| 2770 | I915_WRITE(reg, temp & ~FDI_RX_PLL_ENABLE); |
| 2771 | |
| 2772 | /* Wait for the clocks to turn off. */ |
| 2773 | POSTING_READ(reg); |
| 2774 | udelay(100); |
| 2775 | } |
| 2776 | |
Jesse Barnes | 0fc932b | 2011-01-04 15:09:37 -0800 | [diff] [blame] | 2777 | static void ironlake_fdi_disable(struct drm_crtc *crtc) |
| 2778 | { |
| 2779 | struct drm_device *dev = crtc->dev; |
| 2780 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 2781 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 2782 | int pipe = intel_crtc->pipe; |
| 2783 | u32 reg, temp; |
| 2784 | |
| 2785 | /* disable CPU FDI tx and PCH FDI rx */ |
| 2786 | reg = FDI_TX_CTL(pipe); |
| 2787 | temp = I915_READ(reg); |
| 2788 | I915_WRITE(reg, temp & ~FDI_TX_ENABLE); |
| 2789 | POSTING_READ(reg); |
| 2790 | |
| 2791 | reg = FDI_RX_CTL(pipe); |
| 2792 | temp = I915_READ(reg); |
| 2793 | temp &= ~(0x7 << 16); |
Daniel Vetter | dfd07d7 | 2012-12-17 11:21:38 +0100 | [diff] [blame] | 2794 | temp |= (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) << 11; |
Jesse Barnes | 0fc932b | 2011-01-04 15:09:37 -0800 | [diff] [blame] | 2795 | I915_WRITE(reg, temp & ~FDI_RX_ENABLE); |
| 2796 | |
| 2797 | POSTING_READ(reg); |
| 2798 | udelay(100); |
| 2799 | |
| 2800 | /* Ironlake workaround, disable clock pointer after downing FDI */ |
Jesse Barnes | 6f06ce1 | 2011-01-04 15:09:38 -0800 | [diff] [blame] | 2801 | if (HAS_PCH_IBX(dev)) { |
| 2802 | I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR); |
Jesse Barnes | 6f06ce1 | 2011-01-04 15:09:38 -0800 | [diff] [blame] | 2803 | } |
Jesse Barnes | 0fc932b | 2011-01-04 15:09:37 -0800 | [diff] [blame] | 2804 | |
| 2805 | /* still set train pattern 1 */ |
| 2806 | reg = FDI_TX_CTL(pipe); |
| 2807 | temp = I915_READ(reg); |
| 2808 | temp &= ~FDI_LINK_TRAIN_NONE; |
| 2809 | temp |= FDI_LINK_TRAIN_PATTERN_1; |
| 2810 | I915_WRITE(reg, temp); |
| 2811 | |
| 2812 | reg = FDI_RX_CTL(pipe); |
| 2813 | temp = I915_READ(reg); |
| 2814 | if (HAS_PCH_CPT(dev)) { |
| 2815 | temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT; |
| 2816 | temp |= FDI_LINK_TRAIN_PATTERN_1_CPT; |
| 2817 | } else { |
| 2818 | temp &= ~FDI_LINK_TRAIN_NONE; |
| 2819 | temp |= FDI_LINK_TRAIN_PATTERN_1; |
| 2820 | } |
| 2821 | /* BPC in FDI rx is consistent with that in PIPECONF */ |
| 2822 | temp &= ~(0x07 << 16); |
Daniel Vetter | dfd07d7 | 2012-12-17 11:21:38 +0100 | [diff] [blame] | 2823 | temp |= (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) << 11; |
Jesse Barnes | 0fc932b | 2011-01-04 15:09:37 -0800 | [diff] [blame] | 2824 | I915_WRITE(reg, temp); |
| 2825 | |
| 2826 | POSTING_READ(reg); |
| 2827 | udelay(100); |
| 2828 | } |
| 2829 | |
Chris Wilson | 5bb6164 | 2012-09-27 21:25:58 +0100 | [diff] [blame] | 2830 | static bool intel_crtc_has_pending_flip(struct drm_crtc *crtc) |
| 2831 | { |
| 2832 | struct drm_device *dev = crtc->dev; |
| 2833 | struct drm_i915_private *dev_priv = dev->dev_private; |
Ville Syrjälä | 10d8373 | 2013-01-29 18:13:34 +0200 | [diff] [blame] | 2834 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
Chris Wilson | 5bb6164 | 2012-09-27 21:25:58 +0100 | [diff] [blame] | 2835 | unsigned long flags; |
| 2836 | bool pending; |
| 2837 | |
Ville Syrjälä | 10d8373 | 2013-01-29 18:13:34 +0200 | [diff] [blame] | 2838 | if (i915_reset_in_progress(&dev_priv->gpu_error) || |
| 2839 | intel_crtc->reset_counter != atomic_read(&dev_priv->gpu_error.reset_counter)) |
Chris Wilson | 5bb6164 | 2012-09-27 21:25:58 +0100 | [diff] [blame] | 2840 | return false; |
| 2841 | |
| 2842 | spin_lock_irqsave(&dev->event_lock, flags); |
| 2843 | pending = to_intel_crtc(crtc)->unpin_work != NULL; |
| 2844 | spin_unlock_irqrestore(&dev->event_lock, flags); |
| 2845 | |
| 2846 | return pending; |
| 2847 | } |
| 2848 | |
Chris Wilson | e6c3a2a | 2010-09-23 23:04:43 +0100 | [diff] [blame] | 2849 | static void intel_crtc_wait_for_pending_flips(struct drm_crtc *crtc) |
| 2850 | { |
Chris Wilson | 0f91128 | 2012-04-17 10:05:38 +0100 | [diff] [blame] | 2851 | struct drm_device *dev = crtc->dev; |
Chris Wilson | 5bb6164 | 2012-09-27 21:25:58 +0100 | [diff] [blame] | 2852 | struct drm_i915_private *dev_priv = dev->dev_private; |
Chris Wilson | e6c3a2a | 2010-09-23 23:04:43 +0100 | [diff] [blame] | 2853 | |
| 2854 | if (crtc->fb == NULL) |
| 2855 | return; |
| 2856 | |
Daniel Vetter | 2c10d57 | 2012-12-20 21:24:07 +0100 | [diff] [blame] | 2857 | WARN_ON(waitqueue_active(&dev_priv->pending_flip_queue)); |
| 2858 | |
Chris Wilson | 5bb6164 | 2012-09-27 21:25:58 +0100 | [diff] [blame] | 2859 | wait_event(dev_priv->pending_flip_queue, |
| 2860 | !intel_crtc_has_pending_flip(crtc)); |
| 2861 | |
Chris Wilson | 0f91128 | 2012-04-17 10:05:38 +0100 | [diff] [blame] | 2862 | mutex_lock(&dev->struct_mutex); |
| 2863 | intel_finish_fb(crtc->fb); |
| 2864 | mutex_unlock(&dev->struct_mutex); |
Chris Wilson | e6c3a2a | 2010-09-23 23:04:43 +0100 | [diff] [blame] | 2865 | } |
| 2866 | |
Eugeni Dodonov | e615efe | 2012-05-09 15:37:26 -0300 | [diff] [blame] | 2867 | /* Program iCLKIP clock to the desired frequency */ |
| 2868 | static void lpt_program_iclkip(struct drm_crtc *crtc) |
| 2869 | { |
| 2870 | struct drm_device *dev = crtc->dev; |
| 2871 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 2872 | u32 divsel, phaseinc, auxdiv, phasedir = 0; |
| 2873 | u32 temp; |
| 2874 | |
Daniel Vetter | 0915300 | 2012-12-12 14:06:44 +0100 | [diff] [blame] | 2875 | mutex_lock(&dev_priv->dpio_lock); |
| 2876 | |
Eugeni Dodonov | e615efe | 2012-05-09 15:37:26 -0300 | [diff] [blame] | 2877 | /* It is necessary to ungate the pixclk gate prior to programming |
| 2878 | * the divisors, and gate it back when it is done. |
| 2879 | */ |
| 2880 | I915_WRITE(PIXCLK_GATE, PIXCLK_GATE_GATE); |
| 2881 | |
| 2882 | /* Disable SSCCTL */ |
| 2883 | intel_sbi_write(dev_priv, SBI_SSCCTL6, |
Paulo Zanoni | 988d6ee | 2012-12-01 12:04:24 -0200 | [diff] [blame] | 2884 | intel_sbi_read(dev_priv, SBI_SSCCTL6, SBI_ICLK) | |
| 2885 | SBI_SSCCTL_DISABLE, |
| 2886 | SBI_ICLK); |
Eugeni Dodonov | e615efe | 2012-05-09 15:37:26 -0300 | [diff] [blame] | 2887 | |
| 2888 | /* 20MHz is a corner case which is out of range for the 7-bit divisor */ |
| 2889 | if (crtc->mode.clock == 20000) { |
| 2890 | auxdiv = 1; |
| 2891 | divsel = 0x41; |
| 2892 | phaseinc = 0x20; |
| 2893 | } else { |
| 2894 | /* The iCLK virtual clock root frequency is in MHz, |
| 2895 | * but the crtc->mode.clock in in KHz. To get the divisors, |
| 2896 | * it is necessary to divide one by another, so we |
| 2897 | * convert the virtual clock precision to KHz here for higher |
| 2898 | * precision. |
| 2899 | */ |
| 2900 | u32 iclk_virtual_root_freq = 172800 * 1000; |
| 2901 | u32 iclk_pi_range = 64; |
| 2902 | u32 desired_divisor, msb_divisor_value, pi_value; |
| 2903 | |
| 2904 | desired_divisor = (iclk_virtual_root_freq / crtc->mode.clock); |
| 2905 | msb_divisor_value = desired_divisor / iclk_pi_range; |
| 2906 | pi_value = desired_divisor % iclk_pi_range; |
| 2907 | |
| 2908 | auxdiv = 0; |
| 2909 | divsel = msb_divisor_value - 2; |
| 2910 | phaseinc = pi_value; |
| 2911 | } |
| 2912 | |
| 2913 | /* This should not happen with any sane values */ |
| 2914 | WARN_ON(SBI_SSCDIVINTPHASE_DIVSEL(divsel) & |
| 2915 | ~SBI_SSCDIVINTPHASE_DIVSEL_MASK); |
| 2916 | WARN_ON(SBI_SSCDIVINTPHASE_DIR(phasedir) & |
| 2917 | ~SBI_SSCDIVINTPHASE_INCVAL_MASK); |
| 2918 | |
| 2919 | DRM_DEBUG_KMS("iCLKIP clock: found settings for %dKHz refresh rate: auxdiv=%x, divsel=%x, phasedir=%x, phaseinc=%x\n", |
| 2920 | crtc->mode.clock, |
| 2921 | auxdiv, |
| 2922 | divsel, |
| 2923 | phasedir, |
| 2924 | phaseinc); |
| 2925 | |
| 2926 | /* Program SSCDIVINTPHASE6 */ |
Paulo Zanoni | 988d6ee | 2012-12-01 12:04:24 -0200 | [diff] [blame] | 2927 | temp = intel_sbi_read(dev_priv, SBI_SSCDIVINTPHASE6, SBI_ICLK); |
Eugeni Dodonov | e615efe | 2012-05-09 15:37:26 -0300 | [diff] [blame] | 2928 | temp &= ~SBI_SSCDIVINTPHASE_DIVSEL_MASK; |
| 2929 | temp |= SBI_SSCDIVINTPHASE_DIVSEL(divsel); |
| 2930 | temp &= ~SBI_SSCDIVINTPHASE_INCVAL_MASK; |
| 2931 | temp |= SBI_SSCDIVINTPHASE_INCVAL(phaseinc); |
| 2932 | temp |= SBI_SSCDIVINTPHASE_DIR(phasedir); |
| 2933 | temp |= SBI_SSCDIVINTPHASE_PROPAGATE; |
Paulo Zanoni | 988d6ee | 2012-12-01 12:04:24 -0200 | [diff] [blame] | 2934 | intel_sbi_write(dev_priv, SBI_SSCDIVINTPHASE6, temp, SBI_ICLK); |
Eugeni Dodonov | e615efe | 2012-05-09 15:37:26 -0300 | [diff] [blame] | 2935 | |
| 2936 | /* Program SSCAUXDIV */ |
Paulo Zanoni | 988d6ee | 2012-12-01 12:04:24 -0200 | [diff] [blame] | 2937 | temp = intel_sbi_read(dev_priv, SBI_SSCAUXDIV6, SBI_ICLK); |
Eugeni Dodonov | e615efe | 2012-05-09 15:37:26 -0300 | [diff] [blame] | 2938 | temp &= ~SBI_SSCAUXDIV_FINALDIV2SEL(1); |
| 2939 | temp |= SBI_SSCAUXDIV_FINALDIV2SEL(auxdiv); |
Paulo Zanoni | 988d6ee | 2012-12-01 12:04:24 -0200 | [diff] [blame] | 2940 | intel_sbi_write(dev_priv, SBI_SSCAUXDIV6, temp, SBI_ICLK); |
Eugeni Dodonov | e615efe | 2012-05-09 15:37:26 -0300 | [diff] [blame] | 2941 | |
| 2942 | /* Enable modulator and associated divider */ |
Paulo Zanoni | 988d6ee | 2012-12-01 12:04:24 -0200 | [diff] [blame] | 2943 | temp = intel_sbi_read(dev_priv, SBI_SSCCTL6, SBI_ICLK); |
Eugeni Dodonov | e615efe | 2012-05-09 15:37:26 -0300 | [diff] [blame] | 2944 | temp &= ~SBI_SSCCTL_DISABLE; |
Paulo Zanoni | 988d6ee | 2012-12-01 12:04:24 -0200 | [diff] [blame] | 2945 | intel_sbi_write(dev_priv, SBI_SSCCTL6, temp, SBI_ICLK); |
Eugeni Dodonov | e615efe | 2012-05-09 15:37:26 -0300 | [diff] [blame] | 2946 | |
| 2947 | /* Wait for initialization time */ |
| 2948 | udelay(24); |
| 2949 | |
| 2950 | I915_WRITE(PIXCLK_GATE, PIXCLK_GATE_UNGATE); |
Daniel Vetter | 0915300 | 2012-12-12 14:06:44 +0100 | [diff] [blame] | 2951 | |
| 2952 | mutex_unlock(&dev_priv->dpio_lock); |
Eugeni Dodonov | e615efe | 2012-05-09 15:37:26 -0300 | [diff] [blame] | 2953 | } |
| 2954 | |
Daniel Vetter | 275f01b2 | 2013-05-03 11:49:47 +0200 | [diff] [blame] | 2955 | static void ironlake_pch_transcoder_set_timings(struct intel_crtc *crtc, |
| 2956 | enum pipe pch_transcoder) |
| 2957 | { |
| 2958 | struct drm_device *dev = crtc->base.dev; |
| 2959 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 2960 | enum transcoder cpu_transcoder = crtc->config.cpu_transcoder; |
| 2961 | |
| 2962 | I915_WRITE(PCH_TRANS_HTOTAL(pch_transcoder), |
| 2963 | I915_READ(HTOTAL(cpu_transcoder))); |
| 2964 | I915_WRITE(PCH_TRANS_HBLANK(pch_transcoder), |
| 2965 | I915_READ(HBLANK(cpu_transcoder))); |
| 2966 | I915_WRITE(PCH_TRANS_HSYNC(pch_transcoder), |
| 2967 | I915_READ(HSYNC(cpu_transcoder))); |
| 2968 | |
| 2969 | I915_WRITE(PCH_TRANS_VTOTAL(pch_transcoder), |
| 2970 | I915_READ(VTOTAL(cpu_transcoder))); |
| 2971 | I915_WRITE(PCH_TRANS_VBLANK(pch_transcoder), |
| 2972 | I915_READ(VBLANK(cpu_transcoder))); |
| 2973 | I915_WRITE(PCH_TRANS_VSYNC(pch_transcoder), |
| 2974 | I915_READ(VSYNC(cpu_transcoder))); |
| 2975 | I915_WRITE(PCH_TRANS_VSYNCSHIFT(pch_transcoder), |
| 2976 | I915_READ(VSYNCSHIFT(cpu_transcoder))); |
| 2977 | } |
| 2978 | |
Jesse Barnes | f67a559 | 2011-01-05 10:31:48 -0800 | [diff] [blame] | 2979 | /* |
| 2980 | * Enable PCH resources required for PCH ports: |
| 2981 | * - PCH PLLs |
| 2982 | * - FDI training & RX/TX |
| 2983 | * - update transcoder timings |
| 2984 | * - DP transcoding bits |
| 2985 | * - transcoder |
| 2986 | */ |
| 2987 | static void ironlake_pch_enable(struct drm_crtc *crtc) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 2988 | { |
| 2989 | struct drm_device *dev = crtc->dev; |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 2990 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 2991 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 2992 | int pipe = intel_crtc->pipe; |
Jesse Barnes | ee7b9f9 | 2012-04-20 17:11:53 +0100 | [diff] [blame] | 2993 | u32 reg, temp; |
Jesse Barnes | 6be4a60 | 2010-09-10 10:26:01 -0700 | [diff] [blame] | 2994 | |
Daniel Vetter | ab9412b | 2013-05-03 11:49:46 +0200 | [diff] [blame] | 2995 | assert_pch_transcoder_disabled(dev_priv, pipe); |
Chris Wilson | e7e164d | 2012-05-11 09:21:25 +0100 | [diff] [blame] | 2996 | |
Daniel Vetter | cd986ab | 2012-10-26 10:58:12 +0200 | [diff] [blame] | 2997 | /* Write the TU size bits before fdi link training, so that error |
| 2998 | * detection works. */ |
| 2999 | I915_WRITE(FDI_RX_TUSIZE1(pipe), |
| 3000 | I915_READ(PIPE_DATA_M1(pipe)) & TU_SIZE_MASK); |
| 3001 | |
Jesse Barnes | c98e9dc | 2010-09-10 10:57:18 -0700 | [diff] [blame] | 3002 | /* For PCH output, training FDI link */ |
Jesse Barnes | 674cf96 | 2011-04-28 14:27:04 -0700 | [diff] [blame] | 3003 | dev_priv->display.fdi_link_train(crtc); |
Jesse Barnes | 6be4a60 | 2010-09-10 10:26:01 -0700 | [diff] [blame] | 3004 | |
Daniel Vetter | 572deb3 | 2012-10-27 18:46:14 +0200 | [diff] [blame] | 3005 | /* XXX: pch pll's can be enabled any time before we enable the PCH |
| 3006 | * transcoder, and we actually should do this to not upset any PCH |
| 3007 | * transcoder that already use the clock when we share it. |
| 3008 | * |
| 3009 | * Note that enable_pch_pll tries to do the right thing, but get_pch_pll |
| 3010 | * unconditionally resets the pll - we need that to have the right LVDS |
| 3011 | * enable sequence. */ |
Paulo Zanoni | b6b4e18 | 2012-10-31 18:12:38 -0200 | [diff] [blame] | 3012 | ironlake_enable_pch_pll(intel_crtc); |
Chris Wilson | 6f13b7b | 2012-05-13 09:54:09 +0100 | [diff] [blame] | 3013 | |
Paulo Zanoni | 303b81e | 2012-10-31 18:12:23 -0200 | [diff] [blame] | 3014 | if (HAS_PCH_CPT(dev)) { |
Jesse Barnes | ee7b9f9 | 2012-04-20 17:11:53 +0100 | [diff] [blame] | 3015 | u32 sel; |
Jesse Barnes | 4b645f1 | 2011-10-12 09:51:31 -0700 | [diff] [blame] | 3016 | |
Jesse Barnes | c98e9dc | 2010-09-10 10:57:18 -0700 | [diff] [blame] | 3017 | temp = I915_READ(PCH_DPLL_SEL); |
Jesse Barnes | ee7b9f9 | 2012-04-20 17:11:53 +0100 | [diff] [blame] | 3018 | switch (pipe) { |
| 3019 | default: |
| 3020 | case 0: |
| 3021 | temp |= TRANSA_DPLL_ENABLE; |
| 3022 | sel = TRANSA_DPLLB_SEL; |
| 3023 | break; |
| 3024 | case 1: |
| 3025 | temp |= TRANSB_DPLL_ENABLE; |
| 3026 | sel = TRANSB_DPLLB_SEL; |
| 3027 | break; |
| 3028 | case 2: |
| 3029 | temp |= TRANSC_DPLL_ENABLE; |
| 3030 | sel = TRANSC_DPLLB_SEL; |
| 3031 | break; |
Jesse Barnes | d64311a | 2011-10-12 15:01:33 -0700 | [diff] [blame] | 3032 | } |
Jesse Barnes | ee7b9f9 | 2012-04-20 17:11:53 +0100 | [diff] [blame] | 3033 | if (intel_crtc->pch_pll->pll_reg == _PCH_DPLL_B) |
| 3034 | temp |= sel; |
| 3035 | else |
| 3036 | temp &= ~sel; |
Jesse Barnes | c98e9dc | 2010-09-10 10:57:18 -0700 | [diff] [blame] | 3037 | I915_WRITE(PCH_DPLL_SEL, temp); |
Jesse Barnes | c98e9dc | 2010-09-10 10:57:18 -0700 | [diff] [blame] | 3038 | } |
Jesse Barnes | c98e9dc | 2010-09-10 10:57:18 -0700 | [diff] [blame] | 3039 | |
Jesse Barnes | d9b6cb5 | 2011-01-04 15:09:35 -0800 | [diff] [blame] | 3040 | /* set transcoder timing, panel must allow it */ |
| 3041 | assert_panel_unlocked(dev_priv, pipe); |
Daniel Vetter | 275f01b2 | 2013-05-03 11:49:47 +0200 | [diff] [blame] | 3042 | ironlake_pch_transcoder_set_timings(intel_crtc, pipe); |
Jesse Barnes | c98e9dc | 2010-09-10 10:57:18 -0700 | [diff] [blame] | 3043 | |
Paulo Zanoni | 303b81e | 2012-10-31 18:12:23 -0200 | [diff] [blame] | 3044 | intel_fdi_normal_train(crtc); |
Zhenyu Wang | 5e84e1a | 2010-10-28 16:38:08 +0800 | [diff] [blame] | 3045 | |
Jesse Barnes | c98e9dc | 2010-09-10 10:57:18 -0700 | [diff] [blame] | 3046 | /* For PCH DP, enable TRANS_DP_CTL */ |
| 3047 | if (HAS_PCH_CPT(dev) && |
Keith Packard | 417e822 | 2011-11-01 19:54:11 -0700 | [diff] [blame] | 3048 | (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT) || |
| 3049 | intel_pipe_has_type(crtc, INTEL_OUTPUT_EDP))) { |
Daniel Vetter | dfd07d7 | 2012-12-17 11:21:38 +0100 | [diff] [blame] | 3050 | u32 bpc = (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) >> 5; |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 3051 | reg = TRANS_DP_CTL(pipe); |
| 3052 | temp = I915_READ(reg); |
| 3053 | temp &= ~(TRANS_DP_PORT_SEL_MASK | |
Eric Anholt | 220cad3 | 2010-11-18 09:32:58 +0800 | [diff] [blame] | 3054 | TRANS_DP_SYNC_MASK | |
| 3055 | TRANS_DP_BPC_MASK); |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 3056 | temp |= (TRANS_DP_OUTPUT_ENABLE | |
| 3057 | TRANS_DP_ENH_FRAMING); |
Jesse Barnes | 9325c9f | 2011-06-24 12:19:21 -0700 | [diff] [blame] | 3058 | temp |= bpc << 9; /* same format but at 11:9 */ |
Jesse Barnes | c98e9dc | 2010-09-10 10:57:18 -0700 | [diff] [blame] | 3059 | |
| 3060 | if (crtc->mode.flags & DRM_MODE_FLAG_PHSYNC) |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 3061 | temp |= TRANS_DP_HSYNC_ACTIVE_HIGH; |
Jesse Barnes | c98e9dc | 2010-09-10 10:57:18 -0700 | [diff] [blame] | 3062 | if (crtc->mode.flags & DRM_MODE_FLAG_PVSYNC) |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 3063 | temp |= TRANS_DP_VSYNC_ACTIVE_HIGH; |
Jesse Barnes | c98e9dc | 2010-09-10 10:57:18 -0700 | [diff] [blame] | 3064 | |
| 3065 | switch (intel_trans_dp_port_sel(crtc)) { |
| 3066 | case PCH_DP_B: |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 3067 | temp |= TRANS_DP_PORT_SEL_B; |
Jesse Barnes | c98e9dc | 2010-09-10 10:57:18 -0700 | [diff] [blame] | 3068 | break; |
| 3069 | case PCH_DP_C: |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 3070 | temp |= TRANS_DP_PORT_SEL_C; |
Jesse Barnes | c98e9dc | 2010-09-10 10:57:18 -0700 | [diff] [blame] | 3071 | break; |
| 3072 | case PCH_DP_D: |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 3073 | temp |= TRANS_DP_PORT_SEL_D; |
Jesse Barnes | c98e9dc | 2010-09-10 10:57:18 -0700 | [diff] [blame] | 3074 | break; |
| 3075 | default: |
Daniel Vetter | e95d41e | 2012-10-26 10:58:16 +0200 | [diff] [blame] | 3076 | BUG(); |
Jesse Barnes | c98e9dc | 2010-09-10 10:57:18 -0700 | [diff] [blame] | 3077 | } |
| 3078 | |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 3079 | I915_WRITE(reg, temp); |
Jesse Barnes | c98e9dc | 2010-09-10 10:57:18 -0700 | [diff] [blame] | 3080 | } |
| 3081 | |
Paulo Zanoni | b8a4f40 | 2012-10-31 18:12:42 -0200 | [diff] [blame] | 3082 | ironlake_enable_pch_transcoder(dev_priv, pipe); |
Jesse Barnes | f67a559 | 2011-01-05 10:31:48 -0800 | [diff] [blame] | 3083 | } |
| 3084 | |
Paulo Zanoni | 1507e5b | 2012-10-31 18:12:22 -0200 | [diff] [blame] | 3085 | static void lpt_pch_enable(struct drm_crtc *crtc) |
| 3086 | { |
| 3087 | struct drm_device *dev = crtc->dev; |
| 3088 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 3089 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
Daniel Vetter | 3b117c8 | 2013-04-17 20:15:07 +0200 | [diff] [blame] | 3090 | enum transcoder cpu_transcoder = intel_crtc->config.cpu_transcoder; |
Paulo Zanoni | 1507e5b | 2012-10-31 18:12:22 -0200 | [diff] [blame] | 3091 | |
Daniel Vetter | ab9412b | 2013-05-03 11:49:46 +0200 | [diff] [blame] | 3092 | assert_pch_transcoder_disabled(dev_priv, TRANSCODER_A); |
Paulo Zanoni | 1507e5b | 2012-10-31 18:12:22 -0200 | [diff] [blame] | 3093 | |
Paulo Zanoni | 8c52b5e | 2012-10-31 18:12:24 -0200 | [diff] [blame] | 3094 | lpt_program_iclkip(crtc); |
Paulo Zanoni | 1507e5b | 2012-10-31 18:12:22 -0200 | [diff] [blame] | 3095 | |
Paulo Zanoni | 0540e48 | 2012-10-31 18:12:40 -0200 | [diff] [blame] | 3096 | /* Set transcoder timing. */ |
Daniel Vetter | 275f01b2 | 2013-05-03 11:49:47 +0200 | [diff] [blame] | 3097 | ironlake_pch_transcoder_set_timings(intel_crtc, PIPE_A); |
Paulo Zanoni | 1507e5b | 2012-10-31 18:12:22 -0200 | [diff] [blame] | 3098 | |
Paulo Zanoni | 937bb61 | 2012-10-31 18:12:47 -0200 | [diff] [blame] | 3099 | lpt_enable_pch_transcoder(dev_priv, cpu_transcoder); |
Jesse Barnes | f67a559 | 2011-01-05 10:31:48 -0800 | [diff] [blame] | 3100 | } |
| 3101 | |
Jesse Barnes | ee7b9f9 | 2012-04-20 17:11:53 +0100 | [diff] [blame] | 3102 | static void intel_put_pch_pll(struct intel_crtc *intel_crtc) |
| 3103 | { |
| 3104 | struct intel_pch_pll *pll = intel_crtc->pch_pll; |
| 3105 | |
| 3106 | if (pll == NULL) |
| 3107 | return; |
| 3108 | |
| 3109 | if (pll->refcount == 0) { |
| 3110 | WARN(1, "bad PCH PLL refcount\n"); |
| 3111 | return; |
| 3112 | } |
| 3113 | |
| 3114 | --pll->refcount; |
| 3115 | intel_crtc->pch_pll = NULL; |
| 3116 | } |
| 3117 | |
| 3118 | static struct intel_pch_pll *intel_get_pch_pll(struct intel_crtc *intel_crtc, u32 dpll, u32 fp) |
| 3119 | { |
| 3120 | struct drm_i915_private *dev_priv = intel_crtc->base.dev->dev_private; |
| 3121 | struct intel_pch_pll *pll; |
| 3122 | int i; |
| 3123 | |
| 3124 | pll = intel_crtc->pch_pll; |
| 3125 | if (pll) { |
| 3126 | DRM_DEBUG_KMS("CRTC:%d reusing existing PCH PLL %x\n", |
| 3127 | intel_crtc->base.base.id, pll->pll_reg); |
| 3128 | goto prepare; |
| 3129 | } |
| 3130 | |
Daniel Vetter | 98b6bd9 | 2012-05-20 20:00:25 +0200 | [diff] [blame] | 3131 | if (HAS_PCH_IBX(dev_priv->dev)) { |
| 3132 | /* Ironlake PCH has a fixed PLL->PCH pipe mapping. */ |
| 3133 | i = intel_crtc->pipe; |
| 3134 | pll = &dev_priv->pch_plls[i]; |
| 3135 | |
| 3136 | DRM_DEBUG_KMS("CRTC:%d using pre-allocated PCH PLL %x\n", |
| 3137 | intel_crtc->base.base.id, pll->pll_reg); |
| 3138 | |
| 3139 | goto found; |
| 3140 | } |
| 3141 | |
Jesse Barnes | ee7b9f9 | 2012-04-20 17:11:53 +0100 | [diff] [blame] | 3142 | for (i = 0; i < dev_priv->num_pch_pll; i++) { |
| 3143 | pll = &dev_priv->pch_plls[i]; |
| 3144 | |
| 3145 | /* Only want to check enabled timings first */ |
| 3146 | if (pll->refcount == 0) |
| 3147 | continue; |
| 3148 | |
| 3149 | if (dpll == (I915_READ(pll->pll_reg) & 0x7fffffff) && |
| 3150 | fp == I915_READ(pll->fp0_reg)) { |
| 3151 | DRM_DEBUG_KMS("CRTC:%d sharing existing PCH PLL %x (refcount %d, ative %d)\n", |
| 3152 | intel_crtc->base.base.id, |
| 3153 | pll->pll_reg, pll->refcount, pll->active); |
| 3154 | |
| 3155 | goto found; |
| 3156 | } |
| 3157 | } |
| 3158 | |
| 3159 | /* Ok no matching timings, maybe there's a free one? */ |
| 3160 | for (i = 0; i < dev_priv->num_pch_pll; i++) { |
| 3161 | pll = &dev_priv->pch_plls[i]; |
| 3162 | if (pll->refcount == 0) { |
| 3163 | DRM_DEBUG_KMS("CRTC:%d allocated PCH PLL %x\n", |
| 3164 | intel_crtc->base.base.id, pll->pll_reg); |
| 3165 | goto found; |
| 3166 | } |
| 3167 | } |
| 3168 | |
| 3169 | return NULL; |
| 3170 | |
| 3171 | found: |
| 3172 | intel_crtc->pch_pll = pll; |
| 3173 | pll->refcount++; |
Ville Syrjälä | 84f44ce | 2013-04-17 17:48:49 +0300 | [diff] [blame] | 3174 | DRM_DEBUG_DRIVER("using pll %d for pipe %c\n", i, pipe_name(intel_crtc->pipe)); |
Jesse Barnes | ee7b9f9 | 2012-04-20 17:11:53 +0100 | [diff] [blame] | 3175 | prepare: /* separate function? */ |
| 3176 | DRM_DEBUG_DRIVER("switching PLL %x off\n", pll->pll_reg); |
Jesse Barnes | ee7b9f9 | 2012-04-20 17:11:53 +0100 | [diff] [blame] | 3177 | |
Chris Wilson | e04c735 | 2012-05-02 20:43:56 +0100 | [diff] [blame] | 3178 | /* Wait for the clocks to stabilize before rewriting the regs */ |
| 3179 | I915_WRITE(pll->pll_reg, dpll & ~DPLL_VCO_ENABLE); |
Jesse Barnes | ee7b9f9 | 2012-04-20 17:11:53 +0100 | [diff] [blame] | 3180 | POSTING_READ(pll->pll_reg); |
| 3181 | udelay(150); |
Chris Wilson | e04c735 | 2012-05-02 20:43:56 +0100 | [diff] [blame] | 3182 | |
| 3183 | I915_WRITE(pll->fp0_reg, fp); |
| 3184 | I915_WRITE(pll->pll_reg, dpll & ~DPLL_VCO_ENABLE); |
Jesse Barnes | ee7b9f9 | 2012-04-20 17:11:53 +0100 | [diff] [blame] | 3185 | pll->on = false; |
| 3186 | return pll; |
| 3187 | } |
| 3188 | |
Daniel Vetter | a152031 | 2013-05-03 11:49:50 +0200 | [diff] [blame] | 3189 | static void cpt_verify_modeset(struct drm_device *dev, int pipe) |
Jesse Barnes | d4270e5 | 2011-10-11 10:43:02 -0700 | [diff] [blame] | 3190 | { |
| 3191 | struct drm_i915_private *dev_priv = dev->dev_private; |
Daniel Vetter | 23670b32 | 2012-11-01 09:15:30 +0100 | [diff] [blame] | 3192 | int dslreg = PIPEDSL(pipe); |
Jesse Barnes | d4270e5 | 2011-10-11 10:43:02 -0700 | [diff] [blame] | 3193 | u32 temp; |
| 3194 | |
| 3195 | temp = I915_READ(dslreg); |
| 3196 | udelay(500); |
| 3197 | if (wait_for(I915_READ(dslreg) != temp, 5)) { |
Jesse Barnes | d4270e5 | 2011-10-11 10:43:02 -0700 | [diff] [blame] | 3198 | if (wait_for(I915_READ(dslreg) != temp, 5)) |
Ville Syrjälä | 84f44ce | 2013-04-17 17:48:49 +0300 | [diff] [blame] | 3199 | DRM_ERROR("mode set failed: pipe %c stuck\n", pipe_name(pipe)); |
Jesse Barnes | d4270e5 | 2011-10-11 10:43:02 -0700 | [diff] [blame] | 3200 | } |
| 3201 | } |
| 3202 | |
Jesse Barnes | b074cec | 2013-04-25 12:55:02 -0700 | [diff] [blame] | 3203 | static void ironlake_pfit_enable(struct intel_crtc *crtc) |
| 3204 | { |
| 3205 | struct drm_device *dev = crtc->base.dev; |
| 3206 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 3207 | int pipe = crtc->pipe; |
| 3208 | |
Jesse Barnes | 0ef37f3 | 2013-05-03 13:26:37 -0700 | [diff] [blame] | 3209 | if (crtc->config.pch_pfit.size) { |
Jesse Barnes | b074cec | 2013-04-25 12:55:02 -0700 | [diff] [blame] | 3210 | /* Force use of hard-coded filter coefficients |
| 3211 | * as some pre-programmed values are broken, |
| 3212 | * e.g. x201. |
| 3213 | */ |
| 3214 | if (IS_IVYBRIDGE(dev) || IS_HASWELL(dev)) |
| 3215 | I915_WRITE(PF_CTL(pipe), PF_ENABLE | PF_FILTER_MED_3x3 | |
| 3216 | PF_PIPE_SEL_IVB(pipe)); |
| 3217 | else |
| 3218 | I915_WRITE(PF_CTL(pipe), PF_ENABLE | PF_FILTER_MED_3x3); |
| 3219 | I915_WRITE(PF_WIN_POS(pipe), crtc->config.pch_pfit.pos); |
| 3220 | I915_WRITE(PF_WIN_SZ(pipe), crtc->config.pch_pfit.size); |
| 3221 | } |
| 3222 | } |
| 3223 | |
Jesse Barnes | f67a559 | 2011-01-05 10:31:48 -0800 | [diff] [blame] | 3224 | static void ironlake_crtc_enable(struct drm_crtc *crtc) |
| 3225 | { |
| 3226 | struct drm_device *dev = crtc->dev; |
| 3227 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 3228 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
Daniel Vetter | ef9c3ae | 2012-06-29 22:40:09 +0200 | [diff] [blame] | 3229 | struct intel_encoder *encoder; |
Jesse Barnes | f67a559 | 2011-01-05 10:31:48 -0800 | [diff] [blame] | 3230 | int pipe = intel_crtc->pipe; |
| 3231 | int plane = intel_crtc->plane; |
| 3232 | u32 temp; |
Jesse Barnes | f67a559 | 2011-01-05 10:31:48 -0800 | [diff] [blame] | 3233 | |
Daniel Vetter | 08a4846 | 2012-07-02 11:43:47 +0200 | [diff] [blame] | 3234 | WARN_ON(!crtc->enabled); |
| 3235 | |
Jesse Barnes | f67a559 | 2011-01-05 10:31:48 -0800 | [diff] [blame] | 3236 | if (intel_crtc->active) |
| 3237 | return; |
| 3238 | |
| 3239 | intel_crtc->active = true; |
Paulo Zanoni | 8664281 | 2013-04-12 17:57:57 -0300 | [diff] [blame] | 3240 | |
| 3241 | intel_set_cpu_fifo_underrun_reporting(dev, pipe, true); |
| 3242 | intel_set_pch_fifo_underrun_reporting(dev, pipe, true); |
| 3243 | |
Jesse Barnes | f67a559 | 2011-01-05 10:31:48 -0800 | [diff] [blame] | 3244 | intel_update_watermarks(dev); |
| 3245 | |
| 3246 | if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) { |
| 3247 | temp = I915_READ(PCH_LVDS); |
| 3248 | if ((temp & LVDS_PORT_EN) == 0) |
| 3249 | I915_WRITE(PCH_LVDS, temp | LVDS_PORT_EN); |
| 3250 | } |
| 3251 | |
Jesse Barnes | f67a559 | 2011-01-05 10:31:48 -0800 | [diff] [blame] | 3252 | |
Daniel Vetter | 5bfe2ac | 2013-03-27 00:44:55 +0100 | [diff] [blame] | 3253 | if (intel_crtc->config.has_pch_encoder) { |
Daniel Vetter | fff367c | 2012-10-27 15:50:28 +0200 | [diff] [blame] | 3254 | /* Note: FDI PLL enabling _must_ be done before we enable the |
| 3255 | * cpu pipes, hence this is separate from all the other fdi/pch |
| 3256 | * enabling. */ |
Daniel Vetter | 88cefb6 | 2012-08-12 19:27:14 +0200 | [diff] [blame] | 3257 | ironlake_fdi_pll_enable(intel_crtc); |
Daniel Vetter | 46b6f81 | 2012-09-06 22:08:33 +0200 | [diff] [blame] | 3258 | } else { |
| 3259 | assert_fdi_tx_disabled(dev_priv, pipe); |
| 3260 | assert_fdi_rx_disabled(dev_priv, pipe); |
| 3261 | } |
Jesse Barnes | f67a559 | 2011-01-05 10:31:48 -0800 | [diff] [blame] | 3262 | |
Daniel Vetter | bf49ec8 | 2012-09-06 22:15:40 +0200 | [diff] [blame] | 3263 | for_each_encoder_on_crtc(dev, crtc, encoder) |
| 3264 | if (encoder->pre_enable) |
| 3265 | encoder->pre_enable(encoder); |
Jesse Barnes | f67a559 | 2011-01-05 10:31:48 -0800 | [diff] [blame] | 3266 | |
| 3267 | /* Enable panel fitting for LVDS */ |
Jesse Barnes | b074cec | 2013-04-25 12:55:02 -0700 | [diff] [blame] | 3268 | ironlake_pfit_enable(intel_crtc); |
Jesse Barnes | f67a559 | 2011-01-05 10:31:48 -0800 | [diff] [blame] | 3269 | |
Jesse Barnes | 9c54c0d | 2011-06-15 23:32:33 +0200 | [diff] [blame] | 3270 | /* |
| 3271 | * On ILK+ LUT must be loaded before the pipe is running but with |
| 3272 | * clocks enabled |
| 3273 | */ |
| 3274 | intel_crtc_load_lut(crtc); |
| 3275 | |
Daniel Vetter | 5bfe2ac | 2013-03-27 00:44:55 +0100 | [diff] [blame] | 3276 | intel_enable_pipe(dev_priv, pipe, |
| 3277 | intel_crtc->config.has_pch_encoder); |
Jesse Barnes | f67a559 | 2011-01-05 10:31:48 -0800 | [diff] [blame] | 3278 | intel_enable_plane(dev_priv, plane, pipe); |
| 3279 | |
Daniel Vetter | 5bfe2ac | 2013-03-27 00:44:55 +0100 | [diff] [blame] | 3280 | if (intel_crtc->config.has_pch_encoder) |
Jesse Barnes | f67a559 | 2011-01-05 10:31:48 -0800 | [diff] [blame] | 3281 | ironlake_pch_enable(crtc); |
Jesse Barnes | 6be4a60 | 2010-09-10 10:26:01 -0700 | [diff] [blame] | 3282 | |
Ben Widawsky | d1ebd816 | 2011-04-25 20:11:50 +0100 | [diff] [blame] | 3283 | mutex_lock(&dev->struct_mutex); |
Chris Wilson | bed4a67 | 2010-09-11 10:47:47 +0100 | [diff] [blame] | 3284 | intel_update_fbc(dev); |
Ben Widawsky | d1ebd816 | 2011-04-25 20:11:50 +0100 | [diff] [blame] | 3285 | mutex_unlock(&dev->struct_mutex); |
| 3286 | |
Chris Wilson | 6b383a7 | 2010-09-13 13:54:26 +0100 | [diff] [blame] | 3287 | intel_crtc_update_cursor(crtc, true); |
Daniel Vetter | ef9c3ae | 2012-06-29 22:40:09 +0200 | [diff] [blame] | 3288 | |
Daniel Vetter | fa5c73b | 2012-07-01 23:24:36 +0200 | [diff] [blame] | 3289 | for_each_encoder_on_crtc(dev, crtc, encoder) |
| 3290 | encoder->enable(encoder); |
Daniel Vetter | 61b77dd | 2012-07-02 00:16:19 +0200 | [diff] [blame] | 3291 | |
| 3292 | if (HAS_PCH_CPT(dev)) |
Daniel Vetter | a152031 | 2013-05-03 11:49:50 +0200 | [diff] [blame] | 3293 | cpt_verify_modeset(dev, intel_crtc->pipe); |
Daniel Vetter | 6ce9410 | 2012-10-04 19:20:03 +0200 | [diff] [blame] | 3294 | |
| 3295 | /* |
| 3296 | * There seems to be a race in PCH platform hw (at least on some |
| 3297 | * outputs) where an enabled pipe still completes any pageflip right |
| 3298 | * away (as if the pipe is off) instead of waiting for vblank. As soon |
| 3299 | * as the first vblank happend, everything works as expected. Hence just |
| 3300 | * wait for one vblank before returning to avoid strange things |
| 3301 | * happening. |
| 3302 | */ |
| 3303 | intel_wait_for_vblank(dev, intel_crtc->pipe); |
Jesse Barnes | 6be4a60 | 2010-09-10 10:26:01 -0700 | [diff] [blame] | 3304 | } |
| 3305 | |
Paulo Zanoni | 42db64e | 2013-05-31 16:33:22 -0300 | [diff] [blame] | 3306 | /* IPS only exists on ULT machines and is tied to pipe A. */ |
| 3307 | static bool hsw_crtc_supports_ips(struct intel_crtc *crtc) |
| 3308 | { |
| 3309 | return IS_ULT(crtc->base.dev) && crtc->pipe == PIPE_A; |
| 3310 | } |
| 3311 | |
| 3312 | static void hsw_enable_ips(struct intel_crtc *crtc) |
| 3313 | { |
| 3314 | struct drm_i915_private *dev_priv = crtc->base.dev->dev_private; |
| 3315 | |
| 3316 | if (!crtc->config.ips_enabled) |
| 3317 | return; |
| 3318 | |
| 3319 | /* We can only enable IPS after we enable a plane and wait for a vblank. |
| 3320 | * We guarantee that the plane is enabled by calling intel_enable_ips |
| 3321 | * only after intel_enable_plane. And intel_enable_plane already waits |
| 3322 | * for a vblank, so all we need to do here is to enable the IPS bit. */ |
| 3323 | assert_plane_enabled(dev_priv, crtc->plane); |
| 3324 | I915_WRITE(IPS_CTL, IPS_ENABLE); |
| 3325 | } |
| 3326 | |
| 3327 | static void hsw_disable_ips(struct intel_crtc *crtc) |
| 3328 | { |
| 3329 | struct drm_device *dev = crtc->base.dev; |
| 3330 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 3331 | |
| 3332 | if (!crtc->config.ips_enabled) |
| 3333 | return; |
| 3334 | |
| 3335 | assert_plane_enabled(dev_priv, crtc->plane); |
| 3336 | I915_WRITE(IPS_CTL, 0); |
| 3337 | |
| 3338 | /* We need to wait for a vblank before we can disable the plane. */ |
| 3339 | intel_wait_for_vblank(dev, crtc->pipe); |
| 3340 | } |
| 3341 | |
Paulo Zanoni | 4f771f1 | 2012-10-23 18:29:51 -0200 | [diff] [blame] | 3342 | static void haswell_crtc_enable(struct drm_crtc *crtc) |
| 3343 | { |
| 3344 | struct drm_device *dev = crtc->dev; |
| 3345 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 3346 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 3347 | struct intel_encoder *encoder; |
| 3348 | int pipe = intel_crtc->pipe; |
| 3349 | int plane = intel_crtc->plane; |
Paulo Zanoni | 4f771f1 | 2012-10-23 18:29:51 -0200 | [diff] [blame] | 3350 | |
| 3351 | WARN_ON(!crtc->enabled); |
| 3352 | |
| 3353 | if (intel_crtc->active) |
| 3354 | return; |
| 3355 | |
| 3356 | intel_crtc->active = true; |
Paulo Zanoni | 8664281 | 2013-04-12 17:57:57 -0300 | [diff] [blame] | 3357 | |
| 3358 | intel_set_cpu_fifo_underrun_reporting(dev, pipe, true); |
| 3359 | if (intel_crtc->config.has_pch_encoder) |
| 3360 | intel_set_pch_fifo_underrun_reporting(dev, TRANSCODER_A, true); |
| 3361 | |
Paulo Zanoni | 4f771f1 | 2012-10-23 18:29:51 -0200 | [diff] [blame] | 3362 | intel_update_watermarks(dev); |
| 3363 | |
Daniel Vetter | 5bfe2ac | 2013-03-27 00:44:55 +0100 | [diff] [blame] | 3364 | if (intel_crtc->config.has_pch_encoder) |
Paulo Zanoni | 0494564 | 2012-11-01 21:00:59 -0200 | [diff] [blame] | 3365 | dev_priv->display.fdi_link_train(crtc); |
Paulo Zanoni | 4f771f1 | 2012-10-23 18:29:51 -0200 | [diff] [blame] | 3366 | |
| 3367 | for_each_encoder_on_crtc(dev, crtc, encoder) |
| 3368 | if (encoder->pre_enable) |
| 3369 | encoder->pre_enable(encoder); |
| 3370 | |
Paulo Zanoni | 1f54438 | 2012-10-24 11:32:00 -0200 | [diff] [blame] | 3371 | intel_ddi_enable_pipe_clock(intel_crtc); |
Paulo Zanoni | 4f771f1 | 2012-10-23 18:29:51 -0200 | [diff] [blame] | 3372 | |
Paulo Zanoni | 1f54438 | 2012-10-24 11:32:00 -0200 | [diff] [blame] | 3373 | /* Enable panel fitting for eDP */ |
Jesse Barnes | b074cec | 2013-04-25 12:55:02 -0700 | [diff] [blame] | 3374 | ironlake_pfit_enable(intel_crtc); |
Paulo Zanoni | 4f771f1 | 2012-10-23 18:29:51 -0200 | [diff] [blame] | 3375 | |
| 3376 | /* |
| 3377 | * On ILK+ LUT must be loaded before the pipe is running but with |
| 3378 | * clocks enabled |
| 3379 | */ |
| 3380 | intel_crtc_load_lut(crtc); |
| 3381 | |
Paulo Zanoni | 1f54438 | 2012-10-24 11:32:00 -0200 | [diff] [blame] | 3382 | intel_ddi_set_pipe_settings(crtc); |
Damien Lespiau | 8228c25 | 2013-03-07 15:30:27 +0000 | [diff] [blame] | 3383 | intel_ddi_enable_transcoder_func(crtc); |
Paulo Zanoni | 4f771f1 | 2012-10-23 18:29:51 -0200 | [diff] [blame] | 3384 | |
Daniel Vetter | 5bfe2ac | 2013-03-27 00:44:55 +0100 | [diff] [blame] | 3385 | intel_enable_pipe(dev_priv, pipe, |
| 3386 | intel_crtc->config.has_pch_encoder); |
Paulo Zanoni | 4f771f1 | 2012-10-23 18:29:51 -0200 | [diff] [blame] | 3387 | intel_enable_plane(dev_priv, plane, pipe); |
| 3388 | |
Paulo Zanoni | 42db64e | 2013-05-31 16:33:22 -0300 | [diff] [blame] | 3389 | hsw_enable_ips(intel_crtc); |
| 3390 | |
Daniel Vetter | 5bfe2ac | 2013-03-27 00:44:55 +0100 | [diff] [blame] | 3391 | if (intel_crtc->config.has_pch_encoder) |
Paulo Zanoni | 1507e5b | 2012-10-31 18:12:22 -0200 | [diff] [blame] | 3392 | lpt_pch_enable(crtc); |
Paulo Zanoni | 4f771f1 | 2012-10-23 18:29:51 -0200 | [diff] [blame] | 3393 | |
| 3394 | mutex_lock(&dev->struct_mutex); |
| 3395 | intel_update_fbc(dev); |
| 3396 | mutex_unlock(&dev->struct_mutex); |
| 3397 | |
| 3398 | intel_crtc_update_cursor(crtc, true); |
| 3399 | |
| 3400 | for_each_encoder_on_crtc(dev, crtc, encoder) |
| 3401 | encoder->enable(encoder); |
| 3402 | |
Paulo Zanoni | 4f771f1 | 2012-10-23 18:29:51 -0200 | [diff] [blame] | 3403 | /* |
| 3404 | * There seems to be a race in PCH platform hw (at least on some |
| 3405 | * outputs) where an enabled pipe still completes any pageflip right |
| 3406 | * away (as if the pipe is off) instead of waiting for vblank. As soon |
| 3407 | * as the first vblank happend, everything works as expected. Hence just |
| 3408 | * wait for one vblank before returning to avoid strange things |
| 3409 | * happening. |
| 3410 | */ |
| 3411 | intel_wait_for_vblank(dev, intel_crtc->pipe); |
| 3412 | } |
| 3413 | |
Daniel Vetter | 3f8dce3 | 2013-05-08 10:36:30 +0200 | [diff] [blame] | 3414 | static void ironlake_pfit_disable(struct intel_crtc *crtc) |
| 3415 | { |
| 3416 | struct drm_device *dev = crtc->base.dev; |
| 3417 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 3418 | int pipe = crtc->pipe; |
| 3419 | |
| 3420 | /* To avoid upsetting the power well on haswell only disable the pfit if |
| 3421 | * it's in use. The hw state code will make sure we get this right. */ |
| 3422 | if (crtc->config.pch_pfit.size) { |
| 3423 | I915_WRITE(PF_CTL(pipe), 0); |
| 3424 | I915_WRITE(PF_WIN_POS(pipe), 0); |
| 3425 | I915_WRITE(PF_WIN_SZ(pipe), 0); |
| 3426 | } |
| 3427 | } |
| 3428 | |
Jesse Barnes | 6be4a60 | 2010-09-10 10:26:01 -0700 | [diff] [blame] | 3429 | static void ironlake_crtc_disable(struct drm_crtc *crtc) |
| 3430 | { |
| 3431 | struct drm_device *dev = crtc->dev; |
| 3432 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 3433 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
Daniel Vetter | ef9c3ae | 2012-06-29 22:40:09 +0200 | [diff] [blame] | 3434 | struct intel_encoder *encoder; |
Jesse Barnes | 6be4a60 | 2010-09-10 10:26:01 -0700 | [diff] [blame] | 3435 | int pipe = intel_crtc->pipe; |
| 3436 | int plane = intel_crtc->plane; |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 3437 | u32 reg, temp; |
Jesse Barnes | 6be4a60 | 2010-09-10 10:26:01 -0700 | [diff] [blame] | 3438 | |
Daniel Vetter | ef9c3ae | 2012-06-29 22:40:09 +0200 | [diff] [blame] | 3439 | |
Chris Wilson | f7abfe8 | 2010-09-13 14:19:16 +0100 | [diff] [blame] | 3440 | if (!intel_crtc->active) |
| 3441 | return; |
| 3442 | |
Daniel Vetter | ea9d758 | 2012-07-10 10:42:52 +0200 | [diff] [blame] | 3443 | for_each_encoder_on_crtc(dev, crtc, encoder) |
| 3444 | encoder->disable(encoder); |
| 3445 | |
Chris Wilson | e6c3a2a | 2010-09-23 23:04:43 +0100 | [diff] [blame] | 3446 | intel_crtc_wait_for_pending_flips(crtc); |
Jesse Barnes | 6be4a60 | 2010-09-10 10:26:01 -0700 | [diff] [blame] | 3447 | drm_vblank_off(dev, pipe); |
Chris Wilson | 6b383a7 | 2010-09-13 13:54:26 +0100 | [diff] [blame] | 3448 | intel_crtc_update_cursor(crtc, false); |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 3449 | |
Jesse Barnes | b24e717 | 2011-01-04 15:09:30 -0800 | [diff] [blame] | 3450 | intel_disable_plane(dev_priv, plane, pipe); |
Jesse Barnes | 6be4a60 | 2010-09-10 10:26:01 -0700 | [diff] [blame] | 3451 | |
Chris Wilson | 973d04f | 2011-07-08 12:22:37 +0100 | [diff] [blame] | 3452 | if (dev_priv->cfb_plane == plane) |
| 3453 | intel_disable_fbc(dev); |
Jesse Barnes | 6be4a60 | 2010-09-10 10:26:01 -0700 | [diff] [blame] | 3454 | |
Paulo Zanoni | 8664281 | 2013-04-12 17:57:57 -0300 | [diff] [blame] | 3455 | intel_set_pch_fifo_underrun_reporting(dev, pipe, false); |
Jesse Barnes | b24e717 | 2011-01-04 15:09:30 -0800 | [diff] [blame] | 3456 | intel_disable_pipe(dev_priv, pipe); |
Jesse Barnes | 6be4a60 | 2010-09-10 10:26:01 -0700 | [diff] [blame] | 3457 | |
Daniel Vetter | 3f8dce3 | 2013-05-08 10:36:30 +0200 | [diff] [blame] | 3458 | ironlake_pfit_disable(intel_crtc); |
Jesse Barnes | 6be4a60 | 2010-09-10 10:26:01 -0700 | [diff] [blame] | 3459 | |
Daniel Vetter | bf49ec8 | 2012-09-06 22:15:40 +0200 | [diff] [blame] | 3460 | for_each_encoder_on_crtc(dev, crtc, encoder) |
| 3461 | if (encoder->post_disable) |
| 3462 | encoder->post_disable(encoder); |
Jesse Barnes | 6be4a60 | 2010-09-10 10:26:01 -0700 | [diff] [blame] | 3463 | |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 3464 | ironlake_fdi_disable(crtc); |
Jesse Barnes | 6be4a60 | 2010-09-10 10:26:01 -0700 | [diff] [blame] | 3465 | |
Paulo Zanoni | b8a4f40 | 2012-10-31 18:12:42 -0200 | [diff] [blame] | 3466 | ironlake_disable_pch_transcoder(dev_priv, pipe); |
Paulo Zanoni | 8664281 | 2013-04-12 17:57:57 -0300 | [diff] [blame] | 3467 | intel_set_pch_fifo_underrun_reporting(dev, pipe, true); |
Jesse Barnes | 6be4a60 | 2010-09-10 10:26:01 -0700 | [diff] [blame] | 3468 | |
| 3469 | if (HAS_PCH_CPT(dev)) { |
| 3470 | /* disable TRANS_DP_CTL */ |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 3471 | reg = TRANS_DP_CTL(pipe); |
| 3472 | temp = I915_READ(reg); |
| 3473 | temp &= ~(TRANS_DP_OUTPUT_ENABLE | TRANS_DP_PORT_SEL_MASK); |
Eric Anholt | cb3543c | 2011-02-02 12:08:07 -0800 | [diff] [blame] | 3474 | temp |= TRANS_DP_PORT_SEL_NONE; |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 3475 | I915_WRITE(reg, temp); |
Jesse Barnes | 6be4a60 | 2010-09-10 10:26:01 -0700 | [diff] [blame] | 3476 | |
| 3477 | /* disable DPLL_SEL */ |
| 3478 | temp = I915_READ(PCH_DPLL_SEL); |
Jesse Barnes | 9db4a9c | 2011-02-07 12:26:52 -0800 | [diff] [blame] | 3479 | switch (pipe) { |
| 3480 | case 0: |
Jesse Barnes | d64311a | 2011-10-12 15:01:33 -0700 | [diff] [blame] | 3481 | temp &= ~(TRANSA_DPLL_ENABLE | TRANSA_DPLLB_SEL); |
Jesse Barnes | 9db4a9c | 2011-02-07 12:26:52 -0800 | [diff] [blame] | 3482 | break; |
| 3483 | case 1: |
Jesse Barnes | 6be4a60 | 2010-09-10 10:26:01 -0700 | [diff] [blame] | 3484 | temp &= ~(TRANSB_DPLL_ENABLE | TRANSB_DPLLB_SEL); |
Jesse Barnes | 9db4a9c | 2011-02-07 12:26:52 -0800 | [diff] [blame] | 3485 | break; |
| 3486 | case 2: |
Jesse Barnes | 4b645f1 | 2011-10-12 09:51:31 -0700 | [diff] [blame] | 3487 | /* C shares PLL A or B */ |
Jesse Barnes | d64311a | 2011-10-12 15:01:33 -0700 | [diff] [blame] | 3488 | temp &= ~(TRANSC_DPLL_ENABLE | TRANSC_DPLLB_SEL); |
Jesse Barnes | 9db4a9c | 2011-02-07 12:26:52 -0800 | [diff] [blame] | 3489 | break; |
| 3490 | default: |
| 3491 | BUG(); /* wtf */ |
| 3492 | } |
Jesse Barnes | 6be4a60 | 2010-09-10 10:26:01 -0700 | [diff] [blame] | 3493 | I915_WRITE(PCH_DPLL_SEL, temp); |
Jesse Barnes | 6be4a60 | 2010-09-10 10:26:01 -0700 | [diff] [blame] | 3494 | } |
| 3495 | |
| 3496 | /* disable PCH DPLL */ |
Jesse Barnes | ee7b9f9 | 2012-04-20 17:11:53 +0100 | [diff] [blame] | 3497 | intel_disable_pch_pll(intel_crtc); |
Jesse Barnes | 6be4a60 | 2010-09-10 10:26:01 -0700 | [diff] [blame] | 3498 | |
Daniel Vetter | 88cefb6 | 2012-08-12 19:27:14 +0200 | [diff] [blame] | 3499 | ironlake_fdi_pll_disable(intel_crtc); |
Chris Wilson | 6b383a7 | 2010-09-13 13:54:26 +0100 | [diff] [blame] | 3500 | |
Chris Wilson | f7abfe8 | 2010-09-13 14:19:16 +0100 | [diff] [blame] | 3501 | intel_crtc->active = false; |
Chris Wilson | 6b383a7 | 2010-09-13 13:54:26 +0100 | [diff] [blame] | 3502 | intel_update_watermarks(dev); |
Ben Widawsky | d1ebd816 | 2011-04-25 20:11:50 +0100 | [diff] [blame] | 3503 | |
| 3504 | mutex_lock(&dev->struct_mutex); |
Chris Wilson | 6b383a7 | 2010-09-13 13:54:26 +0100 | [diff] [blame] | 3505 | intel_update_fbc(dev); |
Ben Widawsky | d1ebd816 | 2011-04-25 20:11:50 +0100 | [diff] [blame] | 3506 | mutex_unlock(&dev->struct_mutex); |
Jesse Barnes | 6be4a60 | 2010-09-10 10:26:01 -0700 | [diff] [blame] | 3507 | } |
| 3508 | |
Paulo Zanoni | 4f771f1 | 2012-10-23 18:29:51 -0200 | [diff] [blame] | 3509 | static void haswell_crtc_disable(struct drm_crtc *crtc) |
| 3510 | { |
| 3511 | struct drm_device *dev = crtc->dev; |
| 3512 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 3513 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 3514 | struct intel_encoder *encoder; |
| 3515 | int pipe = intel_crtc->pipe; |
| 3516 | int plane = intel_crtc->plane; |
Daniel Vetter | 3b117c8 | 2013-04-17 20:15:07 +0200 | [diff] [blame] | 3517 | enum transcoder cpu_transcoder = intel_crtc->config.cpu_transcoder; |
Paulo Zanoni | 4f771f1 | 2012-10-23 18:29:51 -0200 | [diff] [blame] | 3518 | |
| 3519 | if (!intel_crtc->active) |
| 3520 | return; |
| 3521 | |
| 3522 | for_each_encoder_on_crtc(dev, crtc, encoder) |
| 3523 | encoder->disable(encoder); |
| 3524 | |
| 3525 | intel_crtc_wait_for_pending_flips(crtc); |
| 3526 | drm_vblank_off(dev, pipe); |
| 3527 | intel_crtc_update_cursor(crtc, false); |
| 3528 | |
Rodrigo Vivi | 891348b | 2013-05-06 19:37:36 -0300 | [diff] [blame] | 3529 | /* FBC must be disabled before disabling the plane on HSW. */ |
Paulo Zanoni | 4f771f1 | 2012-10-23 18:29:51 -0200 | [diff] [blame] | 3530 | if (dev_priv->cfb_plane == plane) |
| 3531 | intel_disable_fbc(dev); |
| 3532 | |
Paulo Zanoni | 42db64e | 2013-05-31 16:33:22 -0300 | [diff] [blame] | 3533 | hsw_disable_ips(intel_crtc); |
| 3534 | |
Rodrigo Vivi | 891348b | 2013-05-06 19:37:36 -0300 | [diff] [blame] | 3535 | intel_disable_plane(dev_priv, plane, pipe); |
| 3536 | |
Paulo Zanoni | 8664281 | 2013-04-12 17:57:57 -0300 | [diff] [blame] | 3537 | if (intel_crtc->config.has_pch_encoder) |
| 3538 | intel_set_pch_fifo_underrun_reporting(dev, TRANSCODER_A, false); |
Paulo Zanoni | 4f771f1 | 2012-10-23 18:29:51 -0200 | [diff] [blame] | 3539 | intel_disable_pipe(dev_priv, pipe); |
| 3540 | |
Paulo Zanoni | ad80a81 | 2012-10-24 16:06:19 -0200 | [diff] [blame] | 3541 | intel_ddi_disable_transcoder_func(dev_priv, cpu_transcoder); |
Paulo Zanoni | 4f771f1 | 2012-10-23 18:29:51 -0200 | [diff] [blame] | 3542 | |
Daniel Vetter | 3f8dce3 | 2013-05-08 10:36:30 +0200 | [diff] [blame] | 3543 | ironlake_pfit_disable(intel_crtc); |
Paulo Zanoni | 4f771f1 | 2012-10-23 18:29:51 -0200 | [diff] [blame] | 3544 | |
Paulo Zanoni | 1f54438 | 2012-10-24 11:32:00 -0200 | [diff] [blame] | 3545 | intel_ddi_disable_pipe_clock(intel_crtc); |
Paulo Zanoni | 4f771f1 | 2012-10-23 18:29:51 -0200 | [diff] [blame] | 3546 | |
| 3547 | for_each_encoder_on_crtc(dev, crtc, encoder) |
| 3548 | if (encoder->post_disable) |
| 3549 | encoder->post_disable(encoder); |
| 3550 | |
Daniel Vetter | 88adfff | 2013-03-28 10:42:01 +0100 | [diff] [blame] | 3551 | if (intel_crtc->config.has_pch_encoder) { |
Paulo Zanoni | ab4d966 | 2012-10-31 18:12:55 -0200 | [diff] [blame] | 3552 | lpt_disable_pch_transcoder(dev_priv); |
Paulo Zanoni | 8664281 | 2013-04-12 17:57:57 -0300 | [diff] [blame] | 3553 | intel_set_pch_fifo_underrun_reporting(dev, TRANSCODER_A, true); |
Paulo Zanoni | 1ad960f | 2012-11-01 21:05:05 -0200 | [diff] [blame] | 3554 | intel_ddi_fdi_disable(crtc); |
Paulo Zanoni | 8361663 | 2012-10-23 18:29:54 -0200 | [diff] [blame] | 3555 | } |
Paulo Zanoni | 4f771f1 | 2012-10-23 18:29:51 -0200 | [diff] [blame] | 3556 | |
| 3557 | intel_crtc->active = false; |
| 3558 | intel_update_watermarks(dev); |
| 3559 | |
| 3560 | mutex_lock(&dev->struct_mutex); |
| 3561 | intel_update_fbc(dev); |
| 3562 | mutex_unlock(&dev->struct_mutex); |
| 3563 | } |
| 3564 | |
Jesse Barnes | ee7b9f9 | 2012-04-20 17:11:53 +0100 | [diff] [blame] | 3565 | static void ironlake_crtc_off(struct drm_crtc *crtc) |
| 3566 | { |
| 3567 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 3568 | intel_put_pch_pll(intel_crtc); |
| 3569 | } |
| 3570 | |
Paulo Zanoni | 6441ab5 | 2012-10-05 12:05:58 -0300 | [diff] [blame] | 3571 | static void haswell_crtc_off(struct drm_crtc *crtc) |
| 3572 | { |
| 3573 | intel_ddi_put_crtc_pll(crtc); |
| 3574 | } |
| 3575 | |
Daniel Vetter | 02e792f | 2009-09-15 22:57:34 +0200 | [diff] [blame] | 3576 | static void intel_crtc_dpms_overlay(struct intel_crtc *intel_crtc, bool enable) |
| 3577 | { |
Daniel Vetter | 02e792f | 2009-09-15 22:57:34 +0200 | [diff] [blame] | 3578 | if (!enable && intel_crtc->overlay) { |
Chris Wilson | 23f09ce | 2010-08-12 13:53:37 +0100 | [diff] [blame] | 3579 | struct drm_device *dev = intel_crtc->base.dev; |
Chris Wilson | ce453d8 | 2011-02-21 14:43:56 +0000 | [diff] [blame] | 3580 | struct drm_i915_private *dev_priv = dev->dev_private; |
Daniel Vetter | 03f77ea | 2009-09-15 22:57:37 +0200 | [diff] [blame] | 3581 | |
Chris Wilson | 23f09ce | 2010-08-12 13:53:37 +0100 | [diff] [blame] | 3582 | mutex_lock(&dev->struct_mutex); |
Chris Wilson | ce453d8 | 2011-02-21 14:43:56 +0000 | [diff] [blame] | 3583 | dev_priv->mm.interruptible = false; |
| 3584 | (void) intel_overlay_switch_off(intel_crtc->overlay); |
| 3585 | dev_priv->mm.interruptible = true; |
Chris Wilson | 23f09ce | 2010-08-12 13:53:37 +0100 | [diff] [blame] | 3586 | mutex_unlock(&dev->struct_mutex); |
Daniel Vetter | 02e792f | 2009-09-15 22:57:34 +0200 | [diff] [blame] | 3587 | } |
Daniel Vetter | 02e792f | 2009-09-15 22:57:34 +0200 | [diff] [blame] | 3588 | |
Chris Wilson | 5dcdbcb | 2010-08-12 13:50:28 +0100 | [diff] [blame] | 3589 | /* Let userspace switch the overlay on again. In most cases userspace |
| 3590 | * has to recompute where to put it anyway. |
| 3591 | */ |
Daniel Vetter | 02e792f | 2009-09-15 22:57:34 +0200 | [diff] [blame] | 3592 | } |
| 3593 | |
Egbert Eich | 61bc95c | 2013-03-04 09:24:38 -0500 | [diff] [blame] | 3594 | /** |
| 3595 | * i9xx_fixup_plane - ugly workaround for G45 to fire up the hardware |
| 3596 | * cursor plane briefly if not already running after enabling the display |
| 3597 | * plane. |
| 3598 | * This workaround avoids occasional blank screens when self refresh is |
| 3599 | * enabled. |
| 3600 | */ |
| 3601 | static void |
| 3602 | g4x_fixup_plane(struct drm_i915_private *dev_priv, enum pipe pipe) |
| 3603 | { |
| 3604 | u32 cntl = I915_READ(CURCNTR(pipe)); |
| 3605 | |
| 3606 | if ((cntl & CURSOR_MODE) == 0) { |
| 3607 | u32 fw_bcl_self = I915_READ(FW_BLC_SELF); |
| 3608 | |
| 3609 | I915_WRITE(FW_BLC_SELF, fw_bcl_self & ~FW_BLC_SELF_EN); |
| 3610 | I915_WRITE(CURCNTR(pipe), CURSOR_MODE_64_ARGB_AX); |
| 3611 | intel_wait_for_vblank(dev_priv->dev, pipe); |
| 3612 | I915_WRITE(CURCNTR(pipe), cntl); |
| 3613 | I915_WRITE(CURBASE(pipe), I915_READ(CURBASE(pipe))); |
| 3614 | I915_WRITE(FW_BLC_SELF, fw_bcl_self); |
| 3615 | } |
| 3616 | } |
| 3617 | |
Jesse Barnes | 2dd2455 | 2013-04-25 12:55:01 -0700 | [diff] [blame] | 3618 | static void i9xx_pfit_enable(struct intel_crtc *crtc) |
| 3619 | { |
| 3620 | struct drm_device *dev = crtc->base.dev; |
| 3621 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 3622 | struct intel_crtc_config *pipe_config = &crtc->config; |
| 3623 | |
Daniel Vetter | 328d8e8 | 2013-05-08 10:36:31 +0200 | [diff] [blame] | 3624 | if (!crtc->config.gmch_pfit.control) |
Jesse Barnes | 2dd2455 | 2013-04-25 12:55:01 -0700 | [diff] [blame] | 3625 | return; |
| 3626 | |
Daniel Vetter | c0b0341 | 2013-05-28 12:05:54 +0200 | [diff] [blame] | 3627 | /* |
| 3628 | * The panel fitter should only be adjusted whilst the pipe is disabled, |
| 3629 | * according to register description and PRM. |
| 3630 | */ |
Jesse Barnes | 2dd2455 | 2013-04-25 12:55:01 -0700 | [diff] [blame] | 3631 | WARN_ON(I915_READ(PFIT_CONTROL) & PFIT_ENABLE); |
| 3632 | assert_pipe_disabled(dev_priv, crtc->pipe); |
| 3633 | |
Jesse Barnes | b074cec | 2013-04-25 12:55:02 -0700 | [diff] [blame] | 3634 | I915_WRITE(PFIT_PGM_RATIOS, pipe_config->gmch_pfit.pgm_ratios); |
| 3635 | I915_WRITE(PFIT_CONTROL, pipe_config->gmch_pfit.control); |
Daniel Vetter | 5a80c45 | 2013-04-25 22:52:18 +0200 | [diff] [blame] | 3636 | |
| 3637 | /* Border color in case we don't scale up to the full screen. Black by |
| 3638 | * default, change to something else for debugging. */ |
| 3639 | I915_WRITE(BCLRPAT(crtc->pipe), 0); |
Jesse Barnes | 2dd2455 | 2013-04-25 12:55:01 -0700 | [diff] [blame] | 3640 | } |
| 3641 | |
Jesse Barnes | 89b667f | 2013-04-18 14:51:36 -0700 | [diff] [blame] | 3642 | static void valleyview_crtc_enable(struct drm_crtc *crtc) |
| 3643 | { |
| 3644 | struct drm_device *dev = crtc->dev; |
| 3645 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 3646 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 3647 | struct intel_encoder *encoder; |
| 3648 | int pipe = intel_crtc->pipe; |
| 3649 | int plane = intel_crtc->plane; |
| 3650 | |
| 3651 | WARN_ON(!crtc->enabled); |
| 3652 | |
| 3653 | if (intel_crtc->active) |
| 3654 | return; |
| 3655 | |
| 3656 | intel_crtc->active = true; |
| 3657 | intel_update_watermarks(dev); |
| 3658 | |
| 3659 | mutex_lock(&dev_priv->dpio_lock); |
| 3660 | |
| 3661 | for_each_encoder_on_crtc(dev, crtc, encoder) |
| 3662 | if (encoder->pre_pll_enable) |
| 3663 | encoder->pre_pll_enable(encoder); |
| 3664 | |
| 3665 | intel_enable_pll(dev_priv, pipe); |
| 3666 | |
| 3667 | for_each_encoder_on_crtc(dev, crtc, encoder) |
| 3668 | if (encoder->pre_enable) |
| 3669 | encoder->pre_enable(encoder); |
| 3670 | |
| 3671 | /* VLV wants encoder enabling _before_ the pipe is up. */ |
| 3672 | for_each_encoder_on_crtc(dev, crtc, encoder) |
| 3673 | encoder->enable(encoder); |
| 3674 | |
Jesse Barnes | 2dd2455 | 2013-04-25 12:55:01 -0700 | [diff] [blame] | 3675 | /* Enable panel fitting for eDP */ |
| 3676 | i9xx_pfit_enable(intel_crtc); |
| 3677 | |
Jesse Barnes | 89b667f | 2013-04-18 14:51:36 -0700 | [diff] [blame] | 3678 | intel_enable_pipe(dev_priv, pipe, false); |
| 3679 | intel_enable_plane(dev_priv, plane, pipe); |
| 3680 | |
| 3681 | intel_crtc_load_lut(crtc); |
| 3682 | intel_update_fbc(dev); |
| 3683 | |
| 3684 | /* Give the overlay scaler a chance to enable if it's on this pipe */ |
| 3685 | intel_crtc_dpms_overlay(intel_crtc, true); |
| 3686 | intel_crtc_update_cursor(crtc, true); |
| 3687 | |
| 3688 | mutex_unlock(&dev_priv->dpio_lock); |
| 3689 | } |
| 3690 | |
Jesse Barnes | 0b8765c6 | 2010-09-10 10:31:34 -0700 | [diff] [blame] | 3691 | static void i9xx_crtc_enable(struct drm_crtc *crtc) |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 3692 | { |
| 3693 | struct drm_device *dev = crtc->dev; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 3694 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 3695 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
Daniel Vetter | ef9c3ae | 2012-06-29 22:40:09 +0200 | [diff] [blame] | 3696 | struct intel_encoder *encoder; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 3697 | int pipe = intel_crtc->pipe; |
Jesse Barnes | 8082400 | 2009-09-10 15:28:06 -0700 | [diff] [blame] | 3698 | int plane = intel_crtc->plane; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 3699 | |
Daniel Vetter | 08a4846 | 2012-07-02 11:43:47 +0200 | [diff] [blame] | 3700 | WARN_ON(!crtc->enabled); |
| 3701 | |
Chris Wilson | f7abfe8 | 2010-09-13 14:19:16 +0100 | [diff] [blame] | 3702 | if (intel_crtc->active) |
| 3703 | return; |
| 3704 | |
| 3705 | intel_crtc->active = true; |
Chris Wilson | 6b383a7 | 2010-09-13 13:54:26 +0100 | [diff] [blame] | 3706 | intel_update_watermarks(dev); |
| 3707 | |
Jesse Barnes | 63d7bbe | 2011-01-04 15:09:33 -0800 | [diff] [blame] | 3708 | intel_enable_pll(dev_priv, pipe); |
Mika Kuoppala | 9d6d9f1 | 2013-02-08 16:35:38 +0200 | [diff] [blame] | 3709 | |
| 3710 | for_each_encoder_on_crtc(dev, crtc, encoder) |
| 3711 | if (encoder->pre_enable) |
| 3712 | encoder->pre_enable(encoder); |
| 3713 | |
Jesse Barnes | 2dd2455 | 2013-04-25 12:55:01 -0700 | [diff] [blame] | 3714 | /* Enable panel fitting for LVDS */ |
| 3715 | i9xx_pfit_enable(intel_crtc); |
| 3716 | |
Jesse Barnes | 040484a | 2011-01-03 12:14:26 -0800 | [diff] [blame] | 3717 | intel_enable_pipe(dev_priv, pipe, false); |
Jesse Barnes | b24e717 | 2011-01-04 15:09:30 -0800 | [diff] [blame] | 3718 | intel_enable_plane(dev_priv, plane, pipe); |
Egbert Eich | 61bc95c | 2013-03-04 09:24:38 -0500 | [diff] [blame] | 3719 | if (IS_G4X(dev)) |
| 3720 | g4x_fixup_plane(dev_priv, pipe); |
Jesse Barnes | 0b8765c6 | 2010-09-10 10:31:34 -0700 | [diff] [blame] | 3721 | |
| 3722 | intel_crtc_load_lut(crtc); |
Chris Wilson | bed4a67 | 2010-09-11 10:47:47 +0100 | [diff] [blame] | 3723 | intel_update_fbc(dev); |
Jesse Barnes | 0b8765c6 | 2010-09-10 10:31:34 -0700 | [diff] [blame] | 3724 | |
| 3725 | /* Give the overlay scaler a chance to enable if it's on this pipe */ |
| 3726 | intel_crtc_dpms_overlay(intel_crtc, true); |
Chris Wilson | 6b383a7 | 2010-09-13 13:54:26 +0100 | [diff] [blame] | 3727 | intel_crtc_update_cursor(crtc, true); |
Daniel Vetter | ef9c3ae | 2012-06-29 22:40:09 +0200 | [diff] [blame] | 3728 | |
Daniel Vetter | fa5c73b | 2012-07-01 23:24:36 +0200 | [diff] [blame] | 3729 | for_each_encoder_on_crtc(dev, crtc, encoder) |
| 3730 | encoder->enable(encoder); |
Jesse Barnes | 0b8765c6 | 2010-09-10 10:31:34 -0700 | [diff] [blame] | 3731 | } |
| 3732 | |
Daniel Vetter | 87476d6 | 2013-04-11 16:29:06 +0200 | [diff] [blame] | 3733 | static void i9xx_pfit_disable(struct intel_crtc *crtc) |
| 3734 | { |
| 3735 | struct drm_device *dev = crtc->base.dev; |
| 3736 | struct drm_i915_private *dev_priv = dev->dev_private; |
Daniel Vetter | 328d8e8 | 2013-05-08 10:36:31 +0200 | [diff] [blame] | 3737 | |
| 3738 | if (!crtc->config.gmch_pfit.control) |
| 3739 | return; |
Daniel Vetter | 87476d6 | 2013-04-11 16:29:06 +0200 | [diff] [blame] | 3740 | |
| 3741 | assert_pipe_disabled(dev_priv, crtc->pipe); |
| 3742 | |
Daniel Vetter | 328d8e8 | 2013-05-08 10:36:31 +0200 | [diff] [blame] | 3743 | DRM_DEBUG_DRIVER("disabling pfit, current: 0x%08x\n", |
| 3744 | I915_READ(PFIT_CONTROL)); |
| 3745 | I915_WRITE(PFIT_CONTROL, 0); |
Daniel Vetter | 87476d6 | 2013-04-11 16:29:06 +0200 | [diff] [blame] | 3746 | } |
| 3747 | |
Jesse Barnes | 0b8765c6 | 2010-09-10 10:31:34 -0700 | [diff] [blame] | 3748 | static void i9xx_crtc_disable(struct drm_crtc *crtc) |
| 3749 | { |
| 3750 | struct drm_device *dev = crtc->dev; |
| 3751 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 3752 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
Daniel Vetter | ef9c3ae | 2012-06-29 22:40:09 +0200 | [diff] [blame] | 3753 | struct intel_encoder *encoder; |
Jesse Barnes | 0b8765c6 | 2010-09-10 10:31:34 -0700 | [diff] [blame] | 3754 | int pipe = intel_crtc->pipe; |
| 3755 | int plane = intel_crtc->plane; |
Daniel Vetter | ef9c3ae | 2012-06-29 22:40:09 +0200 | [diff] [blame] | 3756 | |
Chris Wilson | f7abfe8 | 2010-09-13 14:19:16 +0100 | [diff] [blame] | 3757 | if (!intel_crtc->active) |
| 3758 | return; |
| 3759 | |
Daniel Vetter | ea9d758 | 2012-07-10 10:42:52 +0200 | [diff] [blame] | 3760 | for_each_encoder_on_crtc(dev, crtc, encoder) |
| 3761 | encoder->disable(encoder); |
| 3762 | |
Jesse Barnes | 0b8765c6 | 2010-09-10 10:31:34 -0700 | [diff] [blame] | 3763 | /* Give the overlay scaler a chance to disable if it's on this pipe */ |
Chris Wilson | e6c3a2a | 2010-09-23 23:04:43 +0100 | [diff] [blame] | 3764 | intel_crtc_wait_for_pending_flips(crtc); |
| 3765 | drm_vblank_off(dev, pipe); |
Jesse Barnes | 0b8765c6 | 2010-09-10 10:31:34 -0700 | [diff] [blame] | 3766 | intel_crtc_dpms_overlay(intel_crtc, false); |
Chris Wilson | 6b383a7 | 2010-09-13 13:54:26 +0100 | [diff] [blame] | 3767 | intel_crtc_update_cursor(crtc, false); |
Jesse Barnes | 0b8765c6 | 2010-09-10 10:31:34 -0700 | [diff] [blame] | 3768 | |
Chris Wilson | 973d04f | 2011-07-08 12:22:37 +0100 | [diff] [blame] | 3769 | if (dev_priv->cfb_plane == plane) |
| 3770 | intel_disable_fbc(dev); |
Jesse Barnes | 0b8765c6 | 2010-09-10 10:31:34 -0700 | [diff] [blame] | 3771 | |
Jesse Barnes | b24e717 | 2011-01-04 15:09:30 -0800 | [diff] [blame] | 3772 | intel_disable_plane(dev_priv, plane, pipe); |
Jesse Barnes | b24e717 | 2011-01-04 15:09:30 -0800 | [diff] [blame] | 3773 | intel_disable_pipe(dev_priv, pipe); |
Mika Kuoppala | 24a1f16 | 2013-02-08 16:35:37 +0200 | [diff] [blame] | 3774 | |
Daniel Vetter | 87476d6 | 2013-04-11 16:29:06 +0200 | [diff] [blame] | 3775 | i9xx_pfit_disable(intel_crtc); |
Mika Kuoppala | 24a1f16 | 2013-02-08 16:35:37 +0200 | [diff] [blame] | 3776 | |
Jesse Barnes | 89b667f | 2013-04-18 14:51:36 -0700 | [diff] [blame] | 3777 | for_each_encoder_on_crtc(dev, crtc, encoder) |
| 3778 | if (encoder->post_disable) |
| 3779 | encoder->post_disable(encoder); |
| 3780 | |
Jesse Barnes | 63d7bbe | 2011-01-04 15:09:33 -0800 | [diff] [blame] | 3781 | intel_disable_pll(dev_priv, pipe); |
Jesse Barnes | 0b8765c6 | 2010-09-10 10:31:34 -0700 | [diff] [blame] | 3782 | |
Chris Wilson | f7abfe8 | 2010-09-13 14:19:16 +0100 | [diff] [blame] | 3783 | intel_crtc->active = false; |
Chris Wilson | 6b383a7 | 2010-09-13 13:54:26 +0100 | [diff] [blame] | 3784 | intel_update_fbc(dev); |
| 3785 | intel_update_watermarks(dev); |
Jesse Barnes | 0b8765c6 | 2010-09-10 10:31:34 -0700 | [diff] [blame] | 3786 | } |
| 3787 | |
Jesse Barnes | ee7b9f9 | 2012-04-20 17:11:53 +0100 | [diff] [blame] | 3788 | static void i9xx_crtc_off(struct drm_crtc *crtc) |
| 3789 | { |
| 3790 | } |
| 3791 | |
Daniel Vetter | 976f8a2 | 2012-07-08 22:34:21 +0200 | [diff] [blame] | 3792 | static void intel_crtc_update_sarea(struct drm_crtc *crtc, |
| 3793 | bool enabled) |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 3794 | { |
| 3795 | struct drm_device *dev = crtc->dev; |
| 3796 | struct drm_i915_master_private *master_priv; |
| 3797 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 3798 | int pipe = intel_crtc->pipe; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 3799 | |
| 3800 | if (!dev->primary->master) |
| 3801 | return; |
| 3802 | |
| 3803 | master_priv = dev->primary->master->driver_priv; |
| 3804 | if (!master_priv->sarea_priv) |
| 3805 | return; |
| 3806 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 3807 | switch (pipe) { |
| 3808 | case 0: |
| 3809 | master_priv->sarea_priv->pipeA_w = enabled ? crtc->mode.hdisplay : 0; |
| 3810 | master_priv->sarea_priv->pipeA_h = enabled ? crtc->mode.vdisplay : 0; |
| 3811 | break; |
| 3812 | case 1: |
| 3813 | master_priv->sarea_priv->pipeB_w = enabled ? crtc->mode.hdisplay : 0; |
| 3814 | master_priv->sarea_priv->pipeB_h = enabled ? crtc->mode.vdisplay : 0; |
| 3815 | break; |
| 3816 | default: |
Jesse Barnes | 9db4a9c | 2011-02-07 12:26:52 -0800 | [diff] [blame] | 3817 | DRM_ERROR("Can't update pipe %c in SAREA\n", pipe_name(pipe)); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 3818 | break; |
| 3819 | } |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 3820 | } |
| 3821 | |
Daniel Vetter | 976f8a2 | 2012-07-08 22:34:21 +0200 | [diff] [blame] | 3822 | /** |
| 3823 | * Sets the power management mode of the pipe and plane. |
| 3824 | */ |
| 3825 | void intel_crtc_update_dpms(struct drm_crtc *crtc) |
Chris Wilson | cdd5998 | 2010-09-08 16:30:16 +0100 | [diff] [blame] | 3826 | { |
Chris Wilson | cdd5998 | 2010-09-08 16:30:16 +0100 | [diff] [blame] | 3827 | struct drm_device *dev = crtc->dev; |
Jesse Barnes | ee7b9f9 | 2012-04-20 17:11:53 +0100 | [diff] [blame] | 3828 | struct drm_i915_private *dev_priv = dev->dev_private; |
Daniel Vetter | 976f8a2 | 2012-07-08 22:34:21 +0200 | [diff] [blame] | 3829 | struct intel_encoder *intel_encoder; |
| 3830 | bool enable = false; |
Chris Wilson | cdd5998 | 2010-09-08 16:30:16 +0100 | [diff] [blame] | 3831 | |
Daniel Vetter | 976f8a2 | 2012-07-08 22:34:21 +0200 | [diff] [blame] | 3832 | for_each_encoder_on_crtc(dev, crtc, intel_encoder) |
| 3833 | enable |= intel_encoder->connectors_active; |
| 3834 | |
| 3835 | if (enable) |
| 3836 | dev_priv->display.crtc_enable(crtc); |
| 3837 | else |
| 3838 | dev_priv->display.crtc_disable(crtc); |
| 3839 | |
| 3840 | intel_crtc_update_sarea(crtc, enable); |
| 3841 | } |
| 3842 | |
Daniel Vetter | 976f8a2 | 2012-07-08 22:34:21 +0200 | [diff] [blame] | 3843 | static void intel_crtc_disable(struct drm_crtc *crtc) |
| 3844 | { |
| 3845 | struct drm_device *dev = crtc->dev; |
| 3846 | struct drm_connector *connector; |
| 3847 | struct drm_i915_private *dev_priv = dev->dev_private; |
Wang Xingchao | 7b9f35a | 2013-01-22 23:25:25 +0800 | [diff] [blame] | 3848 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
Daniel Vetter | 976f8a2 | 2012-07-08 22:34:21 +0200 | [diff] [blame] | 3849 | |
| 3850 | /* crtc should still be enabled when we disable it. */ |
| 3851 | WARN_ON(!crtc->enabled); |
| 3852 | |
| 3853 | dev_priv->display.crtc_disable(crtc); |
Paulo Zanoni | c77bf56 | 2013-05-03 12:15:40 -0300 | [diff] [blame] | 3854 | intel_crtc->eld_vld = false; |
Daniel Vetter | 976f8a2 | 2012-07-08 22:34:21 +0200 | [diff] [blame] | 3855 | intel_crtc_update_sarea(crtc, false); |
Jesse Barnes | ee7b9f9 | 2012-04-20 17:11:53 +0100 | [diff] [blame] | 3856 | dev_priv->display.off(crtc); |
| 3857 | |
Chris Wilson | 931872f | 2012-01-16 23:01:13 +0000 | [diff] [blame] | 3858 | assert_plane_disabled(dev->dev_private, to_intel_crtc(crtc)->plane); |
| 3859 | assert_pipe_disabled(dev->dev_private, to_intel_crtc(crtc)->pipe); |
Chris Wilson | cdd5998 | 2010-09-08 16:30:16 +0100 | [diff] [blame] | 3860 | |
| 3861 | if (crtc->fb) { |
| 3862 | mutex_lock(&dev->struct_mutex); |
Chris Wilson | 1690e1e | 2011-12-14 13:57:08 +0100 | [diff] [blame] | 3863 | intel_unpin_fb_obj(to_intel_framebuffer(crtc->fb)->obj); |
Chris Wilson | cdd5998 | 2010-09-08 16:30:16 +0100 | [diff] [blame] | 3864 | mutex_unlock(&dev->struct_mutex); |
Daniel Vetter | 976f8a2 | 2012-07-08 22:34:21 +0200 | [diff] [blame] | 3865 | crtc->fb = NULL; |
| 3866 | } |
| 3867 | |
| 3868 | /* Update computed state. */ |
| 3869 | list_for_each_entry(connector, &dev->mode_config.connector_list, head) { |
| 3870 | if (!connector->encoder || !connector->encoder->crtc) |
| 3871 | continue; |
| 3872 | |
| 3873 | if (connector->encoder->crtc != crtc) |
| 3874 | continue; |
| 3875 | |
| 3876 | connector->dpms = DRM_MODE_DPMS_OFF; |
| 3877 | to_intel_encoder(connector->encoder)->connectors_active = false; |
Chris Wilson | cdd5998 | 2010-09-08 16:30:16 +0100 | [diff] [blame] | 3878 | } |
| 3879 | } |
| 3880 | |
Daniel Vetter | a261b24 | 2012-07-26 19:21:47 +0200 | [diff] [blame] | 3881 | void intel_modeset_disable(struct drm_device *dev) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 3882 | { |
Daniel Vetter | a261b24 | 2012-07-26 19:21:47 +0200 | [diff] [blame] | 3883 | struct drm_crtc *crtc; |
| 3884 | |
| 3885 | list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) { |
| 3886 | if (crtc->enabled) |
| 3887 | intel_crtc_disable(crtc); |
| 3888 | } |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 3889 | } |
| 3890 | |
Chris Wilson | ea5b213 | 2010-08-04 13:50:23 +0100 | [diff] [blame] | 3891 | void intel_encoder_destroy(struct drm_encoder *encoder) |
| 3892 | { |
Chris Wilson | 4ef69c7 | 2010-09-09 15:14:28 +0100 | [diff] [blame] | 3893 | struct intel_encoder *intel_encoder = to_intel_encoder(encoder); |
Chris Wilson | ea5b213 | 2010-08-04 13:50:23 +0100 | [diff] [blame] | 3894 | |
Chris Wilson | ea5b213 | 2010-08-04 13:50:23 +0100 | [diff] [blame] | 3895 | drm_encoder_cleanup(encoder); |
| 3896 | kfree(intel_encoder); |
| 3897 | } |
| 3898 | |
Daniel Vetter | 5ab432e | 2012-06-30 08:59:56 +0200 | [diff] [blame] | 3899 | /* Simple dpms helper for encodres with just one connector, no cloning and only |
| 3900 | * one kind of off state. It clamps all !ON modes to fully OFF and changes the |
| 3901 | * state of the entire output pipe. */ |
| 3902 | void intel_encoder_dpms(struct intel_encoder *encoder, int mode) |
| 3903 | { |
| 3904 | if (mode == DRM_MODE_DPMS_ON) { |
| 3905 | encoder->connectors_active = true; |
| 3906 | |
Daniel Vetter | b2cabb0 | 2012-07-01 22:42:24 +0200 | [diff] [blame] | 3907 | intel_crtc_update_dpms(encoder->base.crtc); |
Daniel Vetter | 5ab432e | 2012-06-30 08:59:56 +0200 | [diff] [blame] | 3908 | } else { |
| 3909 | encoder->connectors_active = false; |
| 3910 | |
Daniel Vetter | b2cabb0 | 2012-07-01 22:42:24 +0200 | [diff] [blame] | 3911 | intel_crtc_update_dpms(encoder->base.crtc); |
Daniel Vetter | 5ab432e | 2012-06-30 08:59:56 +0200 | [diff] [blame] | 3912 | } |
| 3913 | } |
| 3914 | |
Daniel Vetter | 0a91ca2 | 2012-07-02 21:54:27 +0200 | [diff] [blame] | 3915 | /* Cross check the actual hw state with our own modeset state tracking (and it's |
| 3916 | * internal consistency). */ |
Daniel Vetter | b980514 | 2012-08-31 17:37:33 +0200 | [diff] [blame] | 3917 | static void intel_connector_check_state(struct intel_connector *connector) |
Daniel Vetter | 0a91ca2 | 2012-07-02 21:54:27 +0200 | [diff] [blame] | 3918 | { |
| 3919 | if (connector->get_hw_state(connector)) { |
| 3920 | struct intel_encoder *encoder = connector->encoder; |
| 3921 | struct drm_crtc *crtc; |
| 3922 | bool encoder_enabled; |
| 3923 | enum pipe pipe; |
| 3924 | |
| 3925 | DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n", |
| 3926 | connector->base.base.id, |
| 3927 | drm_get_connector_name(&connector->base)); |
| 3928 | |
| 3929 | WARN(connector->base.dpms == DRM_MODE_DPMS_OFF, |
| 3930 | "wrong connector dpms state\n"); |
| 3931 | WARN(connector->base.encoder != &encoder->base, |
| 3932 | "active connector not linked to encoder\n"); |
| 3933 | WARN(!encoder->connectors_active, |
| 3934 | "encoder->connectors_active not set\n"); |
| 3935 | |
| 3936 | encoder_enabled = encoder->get_hw_state(encoder, &pipe); |
| 3937 | WARN(!encoder_enabled, "encoder not enabled\n"); |
| 3938 | if (WARN_ON(!encoder->base.crtc)) |
| 3939 | return; |
| 3940 | |
| 3941 | crtc = encoder->base.crtc; |
| 3942 | |
| 3943 | WARN(!crtc->enabled, "crtc not enabled\n"); |
| 3944 | WARN(!to_intel_crtc(crtc)->active, "crtc not active\n"); |
| 3945 | WARN(pipe != to_intel_crtc(crtc)->pipe, |
| 3946 | "encoder active on the wrong pipe\n"); |
| 3947 | } |
| 3948 | } |
| 3949 | |
Daniel Vetter | 5ab432e | 2012-06-30 08:59:56 +0200 | [diff] [blame] | 3950 | /* Even simpler default implementation, if there's really no special case to |
| 3951 | * consider. */ |
| 3952 | void intel_connector_dpms(struct drm_connector *connector, int mode) |
| 3953 | { |
| 3954 | struct intel_encoder *encoder = intel_attached_encoder(connector); |
| 3955 | |
| 3956 | /* All the simple cases only support two dpms states. */ |
| 3957 | if (mode != DRM_MODE_DPMS_ON) |
| 3958 | mode = DRM_MODE_DPMS_OFF; |
| 3959 | |
| 3960 | if (mode == connector->dpms) |
| 3961 | return; |
| 3962 | |
| 3963 | connector->dpms = mode; |
| 3964 | |
| 3965 | /* Only need to change hw state when actually enabled */ |
| 3966 | if (encoder->base.crtc) |
| 3967 | intel_encoder_dpms(encoder, mode); |
| 3968 | else |
Daniel Vetter | 8af6cf8 | 2012-07-10 09:50:11 +0200 | [diff] [blame] | 3969 | WARN_ON(encoder->connectors_active != false); |
Daniel Vetter | 0a91ca2 | 2012-07-02 21:54:27 +0200 | [diff] [blame] | 3970 | |
Daniel Vetter | b980514 | 2012-08-31 17:37:33 +0200 | [diff] [blame] | 3971 | intel_modeset_check_state(connector->dev); |
Daniel Vetter | 5ab432e | 2012-06-30 08:59:56 +0200 | [diff] [blame] | 3972 | } |
| 3973 | |
Daniel Vetter | f0947c3 | 2012-07-02 13:10:34 +0200 | [diff] [blame] | 3974 | /* Simple connector->get_hw_state implementation for encoders that support only |
| 3975 | * one connector and no cloning and hence the encoder state determines the state |
| 3976 | * of the connector. */ |
| 3977 | bool intel_connector_get_hw_state(struct intel_connector *connector) |
| 3978 | { |
Daniel Vetter | 2492935 | 2012-07-02 20:28:59 +0200 | [diff] [blame] | 3979 | enum pipe pipe = 0; |
Daniel Vetter | f0947c3 | 2012-07-02 13:10:34 +0200 | [diff] [blame] | 3980 | struct intel_encoder *encoder = connector->encoder; |
| 3981 | |
| 3982 | return encoder->get_hw_state(encoder, &pipe); |
| 3983 | } |
| 3984 | |
Daniel Vetter | 1857e1d | 2013-04-29 19:34:16 +0200 | [diff] [blame] | 3985 | static bool ironlake_check_fdi_lanes(struct drm_device *dev, enum pipe pipe, |
| 3986 | struct intel_crtc_config *pipe_config) |
| 3987 | { |
| 3988 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 3989 | struct intel_crtc *pipe_B_crtc = |
| 3990 | to_intel_crtc(dev_priv->pipe_to_crtc_mapping[PIPE_B]); |
| 3991 | |
| 3992 | DRM_DEBUG_KMS("checking fdi config on pipe %c, lanes %i\n", |
| 3993 | pipe_name(pipe), pipe_config->fdi_lanes); |
| 3994 | if (pipe_config->fdi_lanes > 4) { |
| 3995 | DRM_DEBUG_KMS("invalid fdi lane config on pipe %c: %i lanes\n", |
| 3996 | pipe_name(pipe), pipe_config->fdi_lanes); |
| 3997 | return false; |
| 3998 | } |
| 3999 | |
| 4000 | if (IS_HASWELL(dev)) { |
| 4001 | if (pipe_config->fdi_lanes > 2) { |
| 4002 | DRM_DEBUG_KMS("only 2 lanes on haswell, required: %i lanes\n", |
| 4003 | pipe_config->fdi_lanes); |
| 4004 | return false; |
| 4005 | } else { |
| 4006 | return true; |
| 4007 | } |
| 4008 | } |
| 4009 | |
| 4010 | if (INTEL_INFO(dev)->num_pipes == 2) |
| 4011 | return true; |
| 4012 | |
| 4013 | /* Ivybridge 3 pipe is really complicated */ |
| 4014 | switch (pipe) { |
| 4015 | case PIPE_A: |
| 4016 | return true; |
| 4017 | case PIPE_B: |
| 4018 | if (dev_priv->pipe_to_crtc_mapping[PIPE_C]->enabled && |
| 4019 | pipe_config->fdi_lanes > 2) { |
| 4020 | DRM_DEBUG_KMS("invalid shared fdi lane config on pipe %c: %i lanes\n", |
| 4021 | pipe_name(pipe), pipe_config->fdi_lanes); |
| 4022 | return false; |
| 4023 | } |
| 4024 | return true; |
| 4025 | case PIPE_C: |
Daniel Vetter | 1e833f4 | 2013-02-19 22:31:57 +0100 | [diff] [blame] | 4026 | if (!pipe_has_enabled_pch(pipe_B_crtc) || |
Daniel Vetter | 1857e1d | 2013-04-29 19:34:16 +0200 | [diff] [blame] | 4027 | pipe_B_crtc->config.fdi_lanes <= 2) { |
| 4028 | if (pipe_config->fdi_lanes > 2) { |
| 4029 | DRM_DEBUG_KMS("invalid shared fdi lane config on pipe %c: %i lanes\n", |
| 4030 | pipe_name(pipe), pipe_config->fdi_lanes); |
| 4031 | return false; |
| 4032 | } |
| 4033 | } else { |
| 4034 | DRM_DEBUG_KMS("fdi link B uses too many lanes to enable link C\n"); |
| 4035 | return false; |
| 4036 | } |
| 4037 | return true; |
| 4038 | default: |
| 4039 | BUG(); |
| 4040 | } |
| 4041 | } |
| 4042 | |
Daniel Vetter | e29c22c | 2013-02-21 00:00:16 +0100 | [diff] [blame] | 4043 | #define RETRY 1 |
| 4044 | static int ironlake_fdi_compute_config(struct intel_crtc *intel_crtc, |
| 4045 | struct intel_crtc_config *pipe_config) |
Daniel Vetter | 877d48d | 2013-04-19 11:24:43 +0200 | [diff] [blame] | 4046 | { |
Daniel Vetter | 1857e1d | 2013-04-29 19:34:16 +0200 | [diff] [blame] | 4047 | struct drm_device *dev = intel_crtc->base.dev; |
Daniel Vetter | 877d48d | 2013-04-19 11:24:43 +0200 | [diff] [blame] | 4048 | struct drm_display_mode *adjusted_mode = &pipe_config->adjusted_mode; |
| 4049 | int target_clock, lane, link_bw; |
Daniel Vetter | e29c22c | 2013-02-21 00:00:16 +0100 | [diff] [blame] | 4050 | bool setup_ok, needs_recompute = false; |
Daniel Vetter | 877d48d | 2013-04-19 11:24:43 +0200 | [diff] [blame] | 4051 | |
Daniel Vetter | e29c22c | 2013-02-21 00:00:16 +0100 | [diff] [blame] | 4052 | retry: |
Daniel Vetter | 877d48d | 2013-04-19 11:24:43 +0200 | [diff] [blame] | 4053 | /* FDI is a binary signal running at ~2.7GHz, encoding |
| 4054 | * each output octet as 10 bits. The actual frequency |
| 4055 | * is stored as a divider into a 100MHz clock, and the |
| 4056 | * mode pixel clock is stored in units of 1KHz. |
| 4057 | * Hence the bw of each lane in terms of the mode signal |
| 4058 | * is: |
| 4059 | */ |
| 4060 | link_bw = intel_fdi_link_freq(dev) * MHz(100)/KHz(1)/10; |
| 4061 | |
| 4062 | if (pipe_config->pixel_target_clock) |
| 4063 | target_clock = pipe_config->pixel_target_clock; |
| 4064 | else |
| 4065 | target_clock = adjusted_mode->clock; |
| 4066 | |
| 4067 | lane = ironlake_get_lanes_required(target_clock, link_bw, |
| 4068 | pipe_config->pipe_bpp); |
| 4069 | |
| 4070 | pipe_config->fdi_lanes = lane; |
| 4071 | |
| 4072 | if (pipe_config->pixel_multiplier > 1) |
| 4073 | link_bw *= pipe_config->pixel_multiplier; |
| 4074 | intel_link_compute_m_n(pipe_config->pipe_bpp, lane, target_clock, |
| 4075 | link_bw, &pipe_config->fdi_m_n); |
Daniel Vetter | 1857e1d | 2013-04-29 19:34:16 +0200 | [diff] [blame] | 4076 | |
Daniel Vetter | e29c22c | 2013-02-21 00:00:16 +0100 | [diff] [blame] | 4077 | setup_ok = ironlake_check_fdi_lanes(intel_crtc->base.dev, |
| 4078 | intel_crtc->pipe, pipe_config); |
| 4079 | if (!setup_ok && pipe_config->pipe_bpp > 6*3) { |
| 4080 | pipe_config->pipe_bpp -= 2*3; |
| 4081 | DRM_DEBUG_KMS("fdi link bw constraint, reducing pipe bpp to %i\n", |
| 4082 | pipe_config->pipe_bpp); |
| 4083 | needs_recompute = true; |
| 4084 | pipe_config->bw_constrained = true; |
| 4085 | |
| 4086 | goto retry; |
| 4087 | } |
| 4088 | |
| 4089 | if (needs_recompute) |
| 4090 | return RETRY; |
| 4091 | |
| 4092 | return setup_ok ? 0 : -EINVAL; |
Daniel Vetter | 877d48d | 2013-04-19 11:24:43 +0200 | [diff] [blame] | 4093 | } |
| 4094 | |
Paulo Zanoni | 42db64e | 2013-05-31 16:33:22 -0300 | [diff] [blame] | 4095 | static void hsw_compute_ips_config(struct intel_crtc *crtc, |
| 4096 | struct intel_crtc_config *pipe_config) |
| 4097 | { |
Paulo Zanoni | 3c4ca58 | 2013-05-31 16:33:23 -0300 | [diff] [blame] | 4098 | pipe_config->ips_enabled = i915_enable_ips && |
| 4099 | hsw_crtc_supports_ips(crtc) && |
Paulo Zanoni | 42db64e | 2013-05-31 16:33:22 -0300 | [diff] [blame] | 4100 | pipe_config->pipe_bpp == 24; |
| 4101 | } |
| 4102 | |
Daniel Vetter | e29c22c | 2013-02-21 00:00:16 +0100 | [diff] [blame] | 4103 | static int intel_crtc_compute_config(struct drm_crtc *crtc, |
| 4104 | struct intel_crtc_config *pipe_config) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4105 | { |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 4106 | struct drm_device *dev = crtc->dev; |
Daniel Vetter | b8cecdf | 2013-03-27 00:44:50 +0100 | [diff] [blame] | 4107 | struct drm_display_mode *adjusted_mode = &pipe_config->adjusted_mode; |
Paulo Zanoni | 42db64e | 2013-05-31 16:33:22 -0300 | [diff] [blame] | 4108 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
Chris Wilson | 8974935 | 2010-09-12 18:25:19 +0100 | [diff] [blame] | 4109 | |
Eric Anholt | bad720f | 2009-10-22 16:11:14 -0700 | [diff] [blame] | 4110 | if (HAS_PCH_SPLIT(dev)) { |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 4111 | /* FDI link clock is fixed at 2.7G */ |
Daniel Vetter | b8cecdf | 2013-03-27 00:44:50 +0100 | [diff] [blame] | 4112 | if (pipe_config->requested_mode.clock * 3 |
| 4113 | > IRONLAKE_FDI_FREQ * 4) |
Daniel Vetter | e29c22c | 2013-02-21 00:00:16 +0100 | [diff] [blame] | 4114 | return -EINVAL; |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 4115 | } |
Chris Wilson | 8974935 | 2010-09-12 18:25:19 +0100 | [diff] [blame] | 4116 | |
Daniel Vetter | f9bef08 | 2012-04-15 19:53:19 +0200 | [diff] [blame] | 4117 | /* All interlaced capable intel hw wants timings in frames. Note though |
| 4118 | * that intel_lvds_mode_fixup does some funny tricks with the crtc |
| 4119 | * timings, so we need to be careful not to clobber these.*/ |
Daniel Vetter | 7ae8923 | 2013-03-27 00:44:52 +0100 | [diff] [blame] | 4120 | if (!pipe_config->timings_set) |
Daniel Vetter | f9bef08 | 2012-04-15 19:53:19 +0200 | [diff] [blame] | 4121 | drm_mode_set_crtcinfo(adjusted_mode, 0); |
Chris Wilson | 8974935 | 2010-09-12 18:25:19 +0100 | [diff] [blame] | 4122 | |
Damien Lespiau | 8693a82 | 2013-05-03 18:48:11 +0100 | [diff] [blame] | 4123 | /* Cantiga+ cannot handle modes with a hsync front porch of 0. |
| 4124 | * WaPruneModeWithIncorrectHsyncOffset:ctg,elk,ilk,snb,ivb,vlv,hsw. |
Chris Wilson | 44f46b42 | 2012-06-21 13:19:59 +0300 | [diff] [blame] | 4125 | */ |
| 4126 | if ((INTEL_INFO(dev)->gen > 4 || IS_G4X(dev)) && |
| 4127 | adjusted_mode->hsync_start == adjusted_mode->hdisplay) |
Daniel Vetter | e29c22c | 2013-02-21 00:00:16 +0100 | [diff] [blame] | 4128 | return -EINVAL; |
Chris Wilson | 44f46b42 | 2012-06-21 13:19:59 +0300 | [diff] [blame] | 4129 | |
Daniel Vetter | bd080ee | 2013-04-17 20:01:39 +0200 | [diff] [blame] | 4130 | if ((IS_G4X(dev) || IS_VALLEYVIEW(dev)) && pipe_config->pipe_bpp > 10*3) { |
Daniel Vetter | 5d2d38d | 2013-03-27 00:45:01 +0100 | [diff] [blame] | 4131 | pipe_config->pipe_bpp = 10*3; /* 12bpc is gen5+ */ |
Daniel Vetter | bd080ee | 2013-04-17 20:01:39 +0200 | [diff] [blame] | 4132 | } else if (INTEL_INFO(dev)->gen <= 4 && pipe_config->pipe_bpp > 8*3) { |
Daniel Vetter | 5d2d38d | 2013-03-27 00:45:01 +0100 | [diff] [blame] | 4133 | /* only a 8bpc pipe, with 6bpc dither through the panel fitter |
| 4134 | * for lvds. */ |
| 4135 | pipe_config->pipe_bpp = 8*3; |
| 4136 | } |
| 4137 | |
Paulo Zanoni | 42db64e | 2013-05-31 16:33:22 -0300 | [diff] [blame] | 4138 | if (IS_HASWELL(dev)) |
| 4139 | hsw_compute_ips_config(intel_crtc, pipe_config); |
| 4140 | |
Daniel Vetter | 877d48d | 2013-04-19 11:24:43 +0200 | [diff] [blame] | 4141 | if (pipe_config->has_pch_encoder) |
Paulo Zanoni | 42db64e | 2013-05-31 16:33:22 -0300 | [diff] [blame] | 4142 | return ironlake_fdi_compute_config(intel_crtc, pipe_config); |
Daniel Vetter | 877d48d | 2013-04-19 11:24:43 +0200 | [diff] [blame] | 4143 | |
Daniel Vetter | e29c22c | 2013-02-21 00:00:16 +0100 | [diff] [blame] | 4144 | return 0; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4145 | } |
| 4146 | |
Jesse Barnes | 25eb05fc | 2012-03-28 13:39:23 -0700 | [diff] [blame] | 4147 | static int valleyview_get_display_clock_speed(struct drm_device *dev) |
| 4148 | { |
| 4149 | return 400000; /* FIXME */ |
| 4150 | } |
| 4151 | |
Jesse Barnes | e70236a | 2009-09-21 10:42:27 -0700 | [diff] [blame] | 4152 | static int i945_get_display_clock_speed(struct drm_device *dev) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4153 | { |
Jesse Barnes | e70236a | 2009-09-21 10:42:27 -0700 | [diff] [blame] | 4154 | return 400000; |
| 4155 | } |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4156 | |
Jesse Barnes | e70236a | 2009-09-21 10:42:27 -0700 | [diff] [blame] | 4157 | static int i915_get_display_clock_speed(struct drm_device *dev) |
| 4158 | { |
| 4159 | return 333000; |
| 4160 | } |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4161 | |
Jesse Barnes | e70236a | 2009-09-21 10:42:27 -0700 | [diff] [blame] | 4162 | static int i9xx_misc_get_display_clock_speed(struct drm_device *dev) |
| 4163 | { |
| 4164 | return 200000; |
| 4165 | } |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4166 | |
Jesse Barnes | e70236a | 2009-09-21 10:42:27 -0700 | [diff] [blame] | 4167 | static int i915gm_get_display_clock_speed(struct drm_device *dev) |
| 4168 | { |
| 4169 | u16 gcfgc = 0; |
| 4170 | |
| 4171 | pci_read_config_word(dev->pdev, GCFGC, &gcfgc); |
| 4172 | |
| 4173 | if (gcfgc & GC_LOW_FREQUENCY_ENABLE) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4174 | return 133000; |
Jesse Barnes | e70236a | 2009-09-21 10:42:27 -0700 | [diff] [blame] | 4175 | else { |
| 4176 | switch (gcfgc & GC_DISPLAY_CLOCK_MASK) { |
| 4177 | case GC_DISPLAY_CLOCK_333_MHZ: |
| 4178 | return 333000; |
| 4179 | default: |
| 4180 | case GC_DISPLAY_CLOCK_190_200_MHZ: |
| 4181 | return 190000; |
| 4182 | } |
| 4183 | } |
| 4184 | } |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4185 | |
Jesse Barnes | e70236a | 2009-09-21 10:42:27 -0700 | [diff] [blame] | 4186 | static int i865_get_display_clock_speed(struct drm_device *dev) |
| 4187 | { |
| 4188 | return 266000; |
| 4189 | } |
| 4190 | |
| 4191 | static int i855_get_display_clock_speed(struct drm_device *dev) |
| 4192 | { |
| 4193 | u16 hpllcc = 0; |
| 4194 | /* Assume that the hardware is in the high speed state. This |
| 4195 | * should be the default. |
| 4196 | */ |
| 4197 | switch (hpllcc & GC_CLOCK_CONTROL_MASK) { |
| 4198 | case GC_CLOCK_133_200: |
| 4199 | case GC_CLOCK_100_200: |
| 4200 | return 200000; |
| 4201 | case GC_CLOCK_166_250: |
| 4202 | return 250000; |
| 4203 | case GC_CLOCK_100_133: |
| 4204 | return 133000; |
| 4205 | } |
| 4206 | |
| 4207 | /* Shouldn't happen */ |
| 4208 | return 0; |
| 4209 | } |
| 4210 | |
| 4211 | static int i830_get_display_clock_speed(struct drm_device *dev) |
| 4212 | { |
| 4213 | return 133000; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4214 | } |
| 4215 | |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 4216 | static void |
Ville Syrjälä | a65851a | 2013-04-23 15:03:34 +0300 | [diff] [blame] | 4217 | intel_reduce_m_n_ratio(uint32_t *num, uint32_t *den) |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 4218 | { |
Ville Syrjälä | a65851a | 2013-04-23 15:03:34 +0300 | [diff] [blame] | 4219 | while (*num > DATA_LINK_M_N_MASK || |
| 4220 | *den > DATA_LINK_M_N_MASK) { |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 4221 | *num >>= 1; |
| 4222 | *den >>= 1; |
| 4223 | } |
| 4224 | } |
| 4225 | |
Ville Syrjälä | a65851a | 2013-04-23 15:03:34 +0300 | [diff] [blame] | 4226 | static void compute_m_n(unsigned int m, unsigned int n, |
| 4227 | uint32_t *ret_m, uint32_t *ret_n) |
| 4228 | { |
| 4229 | *ret_n = min_t(unsigned int, roundup_pow_of_two(n), DATA_LINK_N_MAX); |
| 4230 | *ret_m = div_u64((uint64_t) m * *ret_n, n); |
| 4231 | intel_reduce_m_n_ratio(ret_m, ret_n); |
| 4232 | } |
| 4233 | |
Daniel Vetter | e69d0bc | 2012-11-29 15:59:36 +0100 | [diff] [blame] | 4234 | void |
| 4235 | intel_link_compute_m_n(int bits_per_pixel, int nlanes, |
| 4236 | int pixel_clock, int link_clock, |
| 4237 | struct intel_link_m_n *m_n) |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 4238 | { |
Daniel Vetter | e69d0bc | 2012-11-29 15:59:36 +0100 | [diff] [blame] | 4239 | m_n->tu = 64; |
Ville Syrjälä | a65851a | 2013-04-23 15:03:34 +0300 | [diff] [blame] | 4240 | |
| 4241 | compute_m_n(bits_per_pixel * pixel_clock, |
| 4242 | link_clock * nlanes * 8, |
| 4243 | &m_n->gmch_m, &m_n->gmch_n); |
| 4244 | |
| 4245 | compute_m_n(pixel_clock, link_clock, |
| 4246 | &m_n->link_m, &m_n->link_n); |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 4247 | } |
| 4248 | |
Chris Wilson | a761503 | 2011-01-12 17:04:08 +0000 | [diff] [blame] | 4249 | static inline bool intel_panel_use_ssc(struct drm_i915_private *dev_priv) |
| 4250 | { |
Keith Packard | 72bbe58 | 2011-09-26 16:09:45 -0700 | [diff] [blame] | 4251 | if (i915_panel_use_ssc >= 0) |
| 4252 | return i915_panel_use_ssc != 0; |
Rodrigo Vivi | 41aa344 | 2013-05-09 20:03:18 -0300 | [diff] [blame] | 4253 | return dev_priv->vbt.lvds_use_ssc |
Keith Packard | 435793d | 2011-07-12 14:56:22 -0700 | [diff] [blame] | 4254 | && !(dev_priv->quirks & QUIRK_LVDS_SSC_DISABLE); |
Chris Wilson | a761503 | 2011-01-12 17:04:08 +0000 | [diff] [blame] | 4255 | } |
| 4256 | |
Jesse Barnes | a0c4da24 | 2012-06-15 11:55:13 -0700 | [diff] [blame] | 4257 | static int vlv_get_refclk(struct drm_crtc *crtc) |
| 4258 | { |
| 4259 | struct drm_device *dev = crtc->dev; |
| 4260 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 4261 | int refclk = 27000; /* for DP & HDMI */ |
| 4262 | |
| 4263 | return 100000; /* only one validated so far */ |
| 4264 | |
| 4265 | if (intel_pipe_has_type(crtc, INTEL_OUTPUT_ANALOG)) { |
| 4266 | refclk = 96000; |
| 4267 | } else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) { |
| 4268 | if (intel_panel_use_ssc(dev_priv)) |
| 4269 | refclk = 100000; |
| 4270 | else |
| 4271 | refclk = 96000; |
| 4272 | } else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_EDP)) { |
| 4273 | refclk = 100000; |
| 4274 | } |
| 4275 | |
| 4276 | return refclk; |
| 4277 | } |
| 4278 | |
Jesse Barnes | c65d77d | 2011-12-15 12:30:36 -0800 | [diff] [blame] | 4279 | static int i9xx_get_refclk(struct drm_crtc *crtc, int num_connectors) |
| 4280 | { |
| 4281 | struct drm_device *dev = crtc->dev; |
| 4282 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 4283 | int refclk; |
| 4284 | |
Jesse Barnes | a0c4da24 | 2012-06-15 11:55:13 -0700 | [diff] [blame] | 4285 | if (IS_VALLEYVIEW(dev)) { |
| 4286 | refclk = vlv_get_refclk(crtc); |
| 4287 | } else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS) && |
Jesse Barnes | c65d77d | 2011-12-15 12:30:36 -0800 | [diff] [blame] | 4288 | intel_panel_use_ssc(dev_priv) && num_connectors < 2) { |
Rodrigo Vivi | 41aa344 | 2013-05-09 20:03:18 -0300 | [diff] [blame] | 4289 | refclk = dev_priv->vbt.lvds_ssc_freq * 1000; |
Jesse Barnes | c65d77d | 2011-12-15 12:30:36 -0800 | [diff] [blame] | 4290 | DRM_DEBUG_KMS("using SSC reference clock of %d MHz\n", |
| 4291 | refclk / 1000); |
| 4292 | } else if (!IS_GEN2(dev)) { |
| 4293 | refclk = 96000; |
| 4294 | } else { |
| 4295 | refclk = 48000; |
| 4296 | } |
| 4297 | |
| 4298 | return refclk; |
| 4299 | } |
| 4300 | |
Daniel Vetter | 7429e9d | 2013-04-20 17:19:46 +0200 | [diff] [blame] | 4301 | static uint32_t pnv_dpll_compute_fp(struct dpll *dpll) |
| 4302 | { |
| 4303 | return (1 << dpll->n) << 16 | dpll->m1 << 8 | dpll->m2; |
| 4304 | } |
| 4305 | |
| 4306 | static uint32_t i9xx_dpll_compute_fp(struct dpll *dpll) |
| 4307 | { |
| 4308 | return dpll->n << 16 | dpll->m1 << 8 | dpll->m2; |
| 4309 | } |
| 4310 | |
Daniel Vetter | f47709a | 2013-03-28 10:42:02 +0100 | [diff] [blame] | 4311 | static void i9xx_update_pll_dividers(struct intel_crtc *crtc, |
Jesse Barnes | a7516a0 | 2011-12-15 12:30:37 -0800 | [diff] [blame] | 4312 | intel_clock_t *reduced_clock) |
| 4313 | { |
Daniel Vetter | f47709a | 2013-03-28 10:42:02 +0100 | [diff] [blame] | 4314 | struct drm_device *dev = crtc->base.dev; |
Jesse Barnes | a7516a0 | 2011-12-15 12:30:37 -0800 | [diff] [blame] | 4315 | struct drm_i915_private *dev_priv = dev->dev_private; |
Daniel Vetter | f47709a | 2013-03-28 10:42:02 +0100 | [diff] [blame] | 4316 | int pipe = crtc->pipe; |
Jesse Barnes | a7516a0 | 2011-12-15 12:30:37 -0800 | [diff] [blame] | 4317 | u32 fp, fp2 = 0; |
| 4318 | |
| 4319 | if (IS_PINEVIEW(dev)) { |
Daniel Vetter | 7429e9d | 2013-04-20 17:19:46 +0200 | [diff] [blame] | 4320 | fp = pnv_dpll_compute_fp(&crtc->config.dpll); |
Jesse Barnes | a7516a0 | 2011-12-15 12:30:37 -0800 | [diff] [blame] | 4321 | if (reduced_clock) |
Daniel Vetter | 7429e9d | 2013-04-20 17:19:46 +0200 | [diff] [blame] | 4322 | fp2 = pnv_dpll_compute_fp(reduced_clock); |
Jesse Barnes | a7516a0 | 2011-12-15 12:30:37 -0800 | [diff] [blame] | 4323 | } else { |
Daniel Vetter | 7429e9d | 2013-04-20 17:19:46 +0200 | [diff] [blame] | 4324 | fp = i9xx_dpll_compute_fp(&crtc->config.dpll); |
Jesse Barnes | a7516a0 | 2011-12-15 12:30:37 -0800 | [diff] [blame] | 4325 | if (reduced_clock) |
Daniel Vetter | 7429e9d | 2013-04-20 17:19:46 +0200 | [diff] [blame] | 4326 | fp2 = i9xx_dpll_compute_fp(reduced_clock); |
Jesse Barnes | a7516a0 | 2011-12-15 12:30:37 -0800 | [diff] [blame] | 4327 | } |
| 4328 | |
| 4329 | I915_WRITE(FP0(pipe), fp); |
| 4330 | |
Daniel Vetter | f47709a | 2013-03-28 10:42:02 +0100 | [diff] [blame] | 4331 | crtc->lowfreq_avail = false; |
| 4332 | if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_LVDS) && |
Jesse Barnes | a7516a0 | 2011-12-15 12:30:37 -0800 | [diff] [blame] | 4333 | reduced_clock && i915_powersave) { |
| 4334 | I915_WRITE(FP1(pipe), fp2); |
Daniel Vetter | f47709a | 2013-03-28 10:42:02 +0100 | [diff] [blame] | 4335 | crtc->lowfreq_avail = true; |
Jesse Barnes | a7516a0 | 2011-12-15 12:30:37 -0800 | [diff] [blame] | 4336 | } else { |
| 4337 | I915_WRITE(FP1(pipe), fp); |
| 4338 | } |
| 4339 | } |
| 4340 | |
Jesse Barnes | 89b667f | 2013-04-18 14:51:36 -0700 | [diff] [blame] | 4341 | static void vlv_pllb_recal_opamp(struct drm_i915_private *dev_priv) |
| 4342 | { |
| 4343 | u32 reg_val; |
| 4344 | |
| 4345 | /* |
| 4346 | * PLLB opamp always calibrates to max value of 0x3f, force enable it |
| 4347 | * and set it to a reasonable value instead. |
| 4348 | */ |
Jani Nikula | ae99258 | 2013-05-22 15:36:19 +0300 | [diff] [blame] | 4349 | reg_val = vlv_dpio_read(dev_priv, DPIO_IREF(1)); |
Jesse Barnes | 89b667f | 2013-04-18 14:51:36 -0700 | [diff] [blame] | 4350 | reg_val &= 0xffffff00; |
| 4351 | reg_val |= 0x00000030; |
Jani Nikula | ae99258 | 2013-05-22 15:36:19 +0300 | [diff] [blame] | 4352 | vlv_dpio_write(dev_priv, DPIO_IREF(1), reg_val); |
Jesse Barnes | 89b667f | 2013-04-18 14:51:36 -0700 | [diff] [blame] | 4353 | |
Jani Nikula | ae99258 | 2013-05-22 15:36:19 +0300 | [diff] [blame] | 4354 | reg_val = vlv_dpio_read(dev_priv, DPIO_CALIBRATION); |
Jesse Barnes | 89b667f | 2013-04-18 14:51:36 -0700 | [diff] [blame] | 4355 | reg_val &= 0x8cffffff; |
| 4356 | reg_val = 0x8c000000; |
Jani Nikula | ae99258 | 2013-05-22 15:36:19 +0300 | [diff] [blame] | 4357 | vlv_dpio_write(dev_priv, DPIO_CALIBRATION, reg_val); |
Jesse Barnes | 89b667f | 2013-04-18 14:51:36 -0700 | [diff] [blame] | 4358 | |
Jani Nikula | ae99258 | 2013-05-22 15:36:19 +0300 | [diff] [blame] | 4359 | reg_val = vlv_dpio_read(dev_priv, DPIO_IREF(1)); |
Jesse Barnes | 89b667f | 2013-04-18 14:51:36 -0700 | [diff] [blame] | 4360 | reg_val &= 0xffffff00; |
Jani Nikula | ae99258 | 2013-05-22 15:36:19 +0300 | [diff] [blame] | 4361 | vlv_dpio_write(dev_priv, DPIO_IREF(1), reg_val); |
Jesse Barnes | 89b667f | 2013-04-18 14:51:36 -0700 | [diff] [blame] | 4362 | |
Jani Nikula | ae99258 | 2013-05-22 15:36:19 +0300 | [diff] [blame] | 4363 | reg_val = vlv_dpio_read(dev_priv, DPIO_CALIBRATION); |
Jesse Barnes | 89b667f | 2013-04-18 14:51:36 -0700 | [diff] [blame] | 4364 | reg_val &= 0x00ffffff; |
| 4365 | reg_val |= 0xb0000000; |
Jani Nikula | ae99258 | 2013-05-22 15:36:19 +0300 | [diff] [blame] | 4366 | vlv_dpio_write(dev_priv, DPIO_CALIBRATION, reg_val); |
Jesse Barnes | 89b667f | 2013-04-18 14:51:36 -0700 | [diff] [blame] | 4367 | } |
| 4368 | |
Daniel Vetter | b551842 | 2013-05-03 11:49:48 +0200 | [diff] [blame] | 4369 | static void intel_pch_transcoder_set_m_n(struct intel_crtc *crtc, |
| 4370 | struct intel_link_m_n *m_n) |
| 4371 | { |
| 4372 | struct drm_device *dev = crtc->base.dev; |
| 4373 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 4374 | int pipe = crtc->pipe; |
| 4375 | |
Daniel Vetter | e3b95f1 | 2013-05-03 11:49:49 +0200 | [diff] [blame] | 4376 | I915_WRITE(PCH_TRANS_DATA_M1(pipe), TU_SIZE(m_n->tu) | m_n->gmch_m); |
| 4377 | I915_WRITE(PCH_TRANS_DATA_N1(pipe), m_n->gmch_n); |
| 4378 | I915_WRITE(PCH_TRANS_LINK_M1(pipe), m_n->link_m); |
| 4379 | I915_WRITE(PCH_TRANS_LINK_N1(pipe), m_n->link_n); |
Daniel Vetter | b551842 | 2013-05-03 11:49:48 +0200 | [diff] [blame] | 4380 | } |
| 4381 | |
| 4382 | static void intel_cpu_transcoder_set_m_n(struct intel_crtc *crtc, |
| 4383 | struct intel_link_m_n *m_n) |
| 4384 | { |
| 4385 | struct drm_device *dev = crtc->base.dev; |
| 4386 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 4387 | int pipe = crtc->pipe; |
| 4388 | enum transcoder transcoder = crtc->config.cpu_transcoder; |
| 4389 | |
| 4390 | if (INTEL_INFO(dev)->gen >= 5) { |
| 4391 | I915_WRITE(PIPE_DATA_M1(transcoder), TU_SIZE(m_n->tu) | m_n->gmch_m); |
| 4392 | I915_WRITE(PIPE_DATA_N1(transcoder), m_n->gmch_n); |
| 4393 | I915_WRITE(PIPE_LINK_M1(transcoder), m_n->link_m); |
| 4394 | I915_WRITE(PIPE_LINK_N1(transcoder), m_n->link_n); |
| 4395 | } else { |
Daniel Vetter | e3b95f1 | 2013-05-03 11:49:49 +0200 | [diff] [blame] | 4396 | I915_WRITE(PIPE_DATA_M_G4X(pipe), TU_SIZE(m_n->tu) | m_n->gmch_m); |
| 4397 | I915_WRITE(PIPE_DATA_N_G4X(pipe), m_n->gmch_n); |
| 4398 | I915_WRITE(PIPE_LINK_M_G4X(pipe), m_n->link_m); |
| 4399 | I915_WRITE(PIPE_LINK_N_G4X(pipe), m_n->link_n); |
Daniel Vetter | b551842 | 2013-05-03 11:49:48 +0200 | [diff] [blame] | 4400 | } |
| 4401 | } |
| 4402 | |
Daniel Vetter | 03afc4a | 2013-04-02 23:42:31 +0200 | [diff] [blame] | 4403 | static void intel_dp_set_m_n(struct intel_crtc *crtc) |
| 4404 | { |
| 4405 | if (crtc->config.has_pch_encoder) |
| 4406 | intel_pch_transcoder_set_m_n(crtc, &crtc->config.dp_m_n); |
| 4407 | else |
| 4408 | intel_cpu_transcoder_set_m_n(crtc, &crtc->config.dp_m_n); |
| 4409 | } |
| 4410 | |
Daniel Vetter | f47709a | 2013-03-28 10:42:02 +0100 | [diff] [blame] | 4411 | static void vlv_update_pll(struct intel_crtc *crtc) |
Jesse Barnes | a0c4da24 | 2012-06-15 11:55:13 -0700 | [diff] [blame] | 4412 | { |
Daniel Vetter | f47709a | 2013-03-28 10:42:02 +0100 | [diff] [blame] | 4413 | struct drm_device *dev = crtc->base.dev; |
Jesse Barnes | a0c4da24 | 2012-06-15 11:55:13 -0700 | [diff] [blame] | 4414 | struct drm_i915_private *dev_priv = dev->dev_private; |
Jesse Barnes | 89b667f | 2013-04-18 14:51:36 -0700 | [diff] [blame] | 4415 | struct drm_display_mode *adjusted_mode = |
| 4416 | &crtc->config.adjusted_mode; |
| 4417 | struct intel_encoder *encoder; |
Daniel Vetter | f47709a | 2013-03-28 10:42:02 +0100 | [diff] [blame] | 4418 | int pipe = crtc->pipe; |
Jesse Barnes | 89b667f | 2013-04-18 14:51:36 -0700 | [diff] [blame] | 4419 | u32 dpll, mdiv; |
Jesse Barnes | a0c4da24 | 2012-06-15 11:55:13 -0700 | [diff] [blame] | 4420 | u32 bestn, bestm1, bestm2, bestp1, bestp2; |
Jesse Barnes | 89b667f | 2013-04-18 14:51:36 -0700 | [diff] [blame] | 4421 | bool is_hdmi; |
Daniel Vetter | 198a037f | 2013-04-19 11:14:37 +0200 | [diff] [blame] | 4422 | u32 coreclk, reg_val, dpll_md; |
Jesse Barnes | a0c4da24 | 2012-06-15 11:55:13 -0700 | [diff] [blame] | 4423 | |
Daniel Vetter | 0915300 | 2012-12-12 14:06:44 +0100 | [diff] [blame] | 4424 | mutex_lock(&dev_priv->dpio_lock); |
| 4425 | |
Jesse Barnes | 89b667f | 2013-04-18 14:51:36 -0700 | [diff] [blame] | 4426 | is_hdmi = intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_HDMI); |
Jesse Barnes | a0c4da24 | 2012-06-15 11:55:13 -0700 | [diff] [blame] | 4427 | |
Daniel Vetter | f47709a | 2013-03-28 10:42:02 +0100 | [diff] [blame] | 4428 | bestn = crtc->config.dpll.n; |
| 4429 | bestm1 = crtc->config.dpll.m1; |
| 4430 | bestm2 = crtc->config.dpll.m2; |
| 4431 | bestp1 = crtc->config.dpll.p1; |
| 4432 | bestp2 = crtc->config.dpll.p2; |
Jesse Barnes | a0c4da24 | 2012-06-15 11:55:13 -0700 | [diff] [blame] | 4433 | |
Jesse Barnes | 89b667f | 2013-04-18 14:51:36 -0700 | [diff] [blame] | 4434 | /* See eDP HDMI DPIO driver vbios notes doc */ |
| 4435 | |
| 4436 | /* PLL B needs special handling */ |
| 4437 | if (pipe) |
| 4438 | vlv_pllb_recal_opamp(dev_priv); |
| 4439 | |
| 4440 | /* Set up Tx target for periodic Rcomp update */ |
Jani Nikula | ae99258 | 2013-05-22 15:36:19 +0300 | [diff] [blame] | 4441 | vlv_dpio_write(dev_priv, DPIO_IREF_BCAST, 0x0100000f); |
Jesse Barnes | 89b667f | 2013-04-18 14:51:36 -0700 | [diff] [blame] | 4442 | |
| 4443 | /* Disable target IRef on PLL */ |
Jani Nikula | ae99258 | 2013-05-22 15:36:19 +0300 | [diff] [blame] | 4444 | reg_val = vlv_dpio_read(dev_priv, DPIO_IREF_CTL(pipe)); |
Jesse Barnes | 89b667f | 2013-04-18 14:51:36 -0700 | [diff] [blame] | 4445 | reg_val &= 0x00ffffff; |
Jani Nikula | ae99258 | 2013-05-22 15:36:19 +0300 | [diff] [blame] | 4446 | vlv_dpio_write(dev_priv, DPIO_IREF_CTL(pipe), reg_val); |
Jesse Barnes | 89b667f | 2013-04-18 14:51:36 -0700 | [diff] [blame] | 4447 | |
| 4448 | /* Disable fast lock */ |
Jani Nikula | ae99258 | 2013-05-22 15:36:19 +0300 | [diff] [blame] | 4449 | vlv_dpio_write(dev_priv, DPIO_FASTCLK_DISABLE, 0x610); |
Jesse Barnes | 89b667f | 2013-04-18 14:51:36 -0700 | [diff] [blame] | 4450 | |
| 4451 | /* Set idtafcrecal before PLL is enabled */ |
Jesse Barnes | a0c4da24 | 2012-06-15 11:55:13 -0700 | [diff] [blame] | 4452 | mdiv = ((bestm1 << DPIO_M1DIV_SHIFT) | (bestm2 & DPIO_M2DIV_MASK)); |
| 4453 | mdiv |= ((bestp1 << DPIO_P1_SHIFT) | (bestp2 << DPIO_P2_SHIFT)); |
| 4454 | mdiv |= ((bestn << DPIO_N_SHIFT)); |
Jesse Barnes | a0c4da24 | 2012-06-15 11:55:13 -0700 | [diff] [blame] | 4455 | mdiv |= (1 << DPIO_K_SHIFT); |
Jesse Barnes | 7df5080 | 2013-05-02 10:48:09 -0700 | [diff] [blame] | 4456 | |
| 4457 | /* |
| 4458 | * Post divider depends on pixel clock rate, DAC vs digital (and LVDS, |
| 4459 | * but we don't support that). |
| 4460 | * Note: don't use the DAC post divider as it seems unstable. |
| 4461 | */ |
| 4462 | mdiv |= (DPIO_POST_DIV_HDMIDP << DPIO_POST_DIV_SHIFT); |
Jani Nikula | ae99258 | 2013-05-22 15:36:19 +0300 | [diff] [blame] | 4463 | vlv_dpio_write(dev_priv, DPIO_DIV(pipe), mdiv); |
Jesse Barnes | 89b667f | 2013-04-18 14:51:36 -0700 | [diff] [blame] | 4464 | |
Jesse Barnes | a0c4da24 | 2012-06-15 11:55:13 -0700 | [diff] [blame] | 4465 | mdiv |= DPIO_ENABLE_CALIBRATION; |
Jani Nikula | ae99258 | 2013-05-22 15:36:19 +0300 | [diff] [blame] | 4466 | vlv_dpio_write(dev_priv, DPIO_DIV(pipe), mdiv); |
Jesse Barnes | a0c4da24 | 2012-06-15 11:55:13 -0700 | [diff] [blame] | 4467 | |
Jesse Barnes | 89b667f | 2013-04-18 14:51:36 -0700 | [diff] [blame] | 4468 | /* Set HBR and RBR LPF coefficients */ |
| 4469 | if (adjusted_mode->clock == 162000 || |
| 4470 | intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_HDMI)) |
Jani Nikula | ae99258 | 2013-05-22 15:36:19 +0300 | [diff] [blame] | 4471 | vlv_dpio_write(dev_priv, DPIO_LFP_COEFF(pipe), |
Jesse Barnes | 89b667f | 2013-04-18 14:51:36 -0700 | [diff] [blame] | 4472 | 0x005f0021); |
| 4473 | else |
Jani Nikula | ae99258 | 2013-05-22 15:36:19 +0300 | [diff] [blame] | 4474 | vlv_dpio_write(dev_priv, DPIO_LFP_COEFF(pipe), |
Jesse Barnes | 89b667f | 2013-04-18 14:51:36 -0700 | [diff] [blame] | 4475 | 0x00d0000f); |
Jesse Barnes | a0c4da24 | 2012-06-15 11:55:13 -0700 | [diff] [blame] | 4476 | |
Jesse Barnes | 89b667f | 2013-04-18 14:51:36 -0700 | [diff] [blame] | 4477 | if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_EDP) || |
| 4478 | intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_DISPLAYPORT)) { |
| 4479 | /* Use SSC source */ |
| 4480 | if (!pipe) |
Jani Nikula | ae99258 | 2013-05-22 15:36:19 +0300 | [diff] [blame] | 4481 | vlv_dpio_write(dev_priv, DPIO_REFSFR(pipe), |
Jesse Barnes | 89b667f | 2013-04-18 14:51:36 -0700 | [diff] [blame] | 4482 | 0x0df40000); |
| 4483 | else |
Jani Nikula | ae99258 | 2013-05-22 15:36:19 +0300 | [diff] [blame] | 4484 | vlv_dpio_write(dev_priv, DPIO_REFSFR(pipe), |
Jesse Barnes | 89b667f | 2013-04-18 14:51:36 -0700 | [diff] [blame] | 4485 | 0x0df70000); |
| 4486 | } else { /* HDMI or VGA */ |
| 4487 | /* Use bend source */ |
| 4488 | if (!pipe) |
Jani Nikula | ae99258 | 2013-05-22 15:36:19 +0300 | [diff] [blame] | 4489 | vlv_dpio_write(dev_priv, DPIO_REFSFR(pipe), |
Jesse Barnes | 89b667f | 2013-04-18 14:51:36 -0700 | [diff] [blame] | 4490 | 0x0df70000); |
| 4491 | else |
Jani Nikula | ae99258 | 2013-05-22 15:36:19 +0300 | [diff] [blame] | 4492 | vlv_dpio_write(dev_priv, DPIO_REFSFR(pipe), |
Jesse Barnes | 89b667f | 2013-04-18 14:51:36 -0700 | [diff] [blame] | 4493 | 0x0df40000); |
| 4494 | } |
Jesse Barnes | a0c4da24 | 2012-06-15 11:55:13 -0700 | [diff] [blame] | 4495 | |
Jani Nikula | ae99258 | 2013-05-22 15:36:19 +0300 | [diff] [blame] | 4496 | coreclk = vlv_dpio_read(dev_priv, DPIO_CORE_CLK(pipe)); |
Jesse Barnes | 89b667f | 2013-04-18 14:51:36 -0700 | [diff] [blame] | 4497 | coreclk = (coreclk & 0x0000ff00) | 0x01c00000; |
| 4498 | if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_DISPLAYPORT) || |
| 4499 | intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_EDP)) |
| 4500 | coreclk |= 0x01000000; |
Jani Nikula | ae99258 | 2013-05-22 15:36:19 +0300 | [diff] [blame] | 4501 | vlv_dpio_write(dev_priv, DPIO_CORE_CLK(pipe), coreclk); |
Jesse Barnes | 89b667f | 2013-04-18 14:51:36 -0700 | [diff] [blame] | 4502 | |
Jani Nikula | ae99258 | 2013-05-22 15:36:19 +0300 | [diff] [blame] | 4503 | vlv_dpio_write(dev_priv, DPIO_PLL_CML(pipe), 0x87871000); |
Jesse Barnes | 89b667f | 2013-04-18 14:51:36 -0700 | [diff] [blame] | 4504 | |
| 4505 | for_each_encoder_on_crtc(dev, &crtc->base, encoder) |
| 4506 | if (encoder->pre_pll_enable) |
| 4507 | encoder->pre_pll_enable(encoder); |
| 4508 | |
| 4509 | /* Enable DPIO clock input */ |
| 4510 | dpll = DPLL_EXT_BUFFER_ENABLE_VLV | DPLL_REFA_CLK_ENABLE_VLV | |
| 4511 | DPLL_VGA_MODE_DIS | DPLL_INTEGRATED_CLOCK_VLV; |
| 4512 | if (pipe) |
| 4513 | dpll |= DPLL_INTEGRATED_CRI_CLK_VLV; |
Jesse Barnes | a0c4da24 | 2012-06-15 11:55:13 -0700 | [diff] [blame] | 4514 | |
| 4515 | dpll |= DPLL_VCO_ENABLE; |
| 4516 | I915_WRITE(DPLL(pipe), dpll); |
| 4517 | POSTING_READ(DPLL(pipe)); |
Jesse Barnes | 89b667f | 2013-04-18 14:51:36 -0700 | [diff] [blame] | 4518 | udelay(150); |
| 4519 | |
Jesse Barnes | a0c4da24 | 2012-06-15 11:55:13 -0700 | [diff] [blame] | 4520 | if (wait_for(((I915_READ(DPLL(pipe)) & DPLL_LOCK_VLV) == DPLL_LOCK_VLV), 1)) |
| 4521 | DRM_ERROR("DPLL %d failed to lock\n", pipe); |
| 4522 | |
Daniel Vetter | 198a037f | 2013-04-19 11:14:37 +0200 | [diff] [blame] | 4523 | dpll_md = 0; |
| 4524 | if (crtc->config.pixel_multiplier > 1) { |
| 4525 | dpll_md = (crtc->config.pixel_multiplier - 1) |
| 4526 | << DPLL_MD_UDI_MULTIPLIER_SHIFT; |
Vijay Purushothaman | 2a8f64c | 2012-09-27 19:13:06 +0530 | [diff] [blame] | 4527 | } |
Daniel Vetter | 198a037f | 2013-04-19 11:14:37 +0200 | [diff] [blame] | 4528 | I915_WRITE(DPLL_MD(pipe), dpll_md); |
| 4529 | POSTING_READ(DPLL_MD(pipe)); |
Daniel Vetter | f47709a | 2013-03-28 10:42:02 +0100 | [diff] [blame] | 4530 | |
Jesse Barnes | 89b667f | 2013-04-18 14:51:36 -0700 | [diff] [blame] | 4531 | if (crtc->config.has_dp_encoder) |
| 4532 | intel_dp_set_m_n(crtc); |
Daniel Vetter | 0915300 | 2012-12-12 14:06:44 +0100 | [diff] [blame] | 4533 | |
| 4534 | mutex_unlock(&dev_priv->dpio_lock); |
Jesse Barnes | a0c4da24 | 2012-06-15 11:55:13 -0700 | [diff] [blame] | 4535 | } |
| 4536 | |
Daniel Vetter | f47709a | 2013-03-28 10:42:02 +0100 | [diff] [blame] | 4537 | static void i9xx_update_pll(struct intel_crtc *crtc, |
| 4538 | intel_clock_t *reduced_clock, |
Daniel Vetter | eb1cbe4 | 2012-03-28 23:12:16 +0200 | [diff] [blame] | 4539 | int num_connectors) |
| 4540 | { |
Daniel Vetter | f47709a | 2013-03-28 10:42:02 +0100 | [diff] [blame] | 4541 | struct drm_device *dev = crtc->base.dev; |
Daniel Vetter | eb1cbe4 | 2012-03-28 23:12:16 +0200 | [diff] [blame] | 4542 | struct drm_i915_private *dev_priv = dev->dev_private; |
Daniel Vetter | dafd226 | 2012-11-26 17:22:07 +0100 | [diff] [blame] | 4543 | struct intel_encoder *encoder; |
Daniel Vetter | f47709a | 2013-03-28 10:42:02 +0100 | [diff] [blame] | 4544 | int pipe = crtc->pipe; |
Daniel Vetter | eb1cbe4 | 2012-03-28 23:12:16 +0200 | [diff] [blame] | 4545 | u32 dpll; |
| 4546 | bool is_sdvo; |
Daniel Vetter | f47709a | 2013-03-28 10:42:02 +0100 | [diff] [blame] | 4547 | struct dpll *clock = &crtc->config.dpll; |
Daniel Vetter | eb1cbe4 | 2012-03-28 23:12:16 +0200 | [diff] [blame] | 4548 | |
Daniel Vetter | f47709a | 2013-03-28 10:42:02 +0100 | [diff] [blame] | 4549 | i9xx_update_pll_dividers(crtc, reduced_clock); |
Vijay Purushothaman | 2a8f64c | 2012-09-27 19:13:06 +0530 | [diff] [blame] | 4550 | |
Daniel Vetter | f47709a | 2013-03-28 10:42:02 +0100 | [diff] [blame] | 4551 | is_sdvo = intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_SDVO) || |
| 4552 | intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_HDMI); |
Daniel Vetter | eb1cbe4 | 2012-03-28 23:12:16 +0200 | [diff] [blame] | 4553 | |
| 4554 | dpll = DPLL_VGA_MODE_DIS; |
| 4555 | |
Daniel Vetter | f47709a | 2013-03-28 10:42:02 +0100 | [diff] [blame] | 4556 | if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_LVDS)) |
Daniel Vetter | eb1cbe4 | 2012-03-28 23:12:16 +0200 | [diff] [blame] | 4557 | dpll |= DPLLB_MODE_LVDS; |
| 4558 | else |
| 4559 | dpll |= DPLLB_MODE_DAC_SERIAL; |
Daniel Vetter | 6cc5f34 | 2013-03-27 00:44:53 +0100 | [diff] [blame] | 4560 | |
Daniel Vetter | 198a037f | 2013-04-19 11:14:37 +0200 | [diff] [blame] | 4561 | if ((crtc->config.pixel_multiplier > 1) && |
| 4562 | (IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev))) { |
| 4563 | dpll |= (crtc->config.pixel_multiplier - 1) |
| 4564 | << SDVO_MULTIPLIER_SHIFT_HIRES; |
Daniel Vetter | eb1cbe4 | 2012-03-28 23:12:16 +0200 | [diff] [blame] | 4565 | } |
Daniel Vetter | 198a037f | 2013-04-19 11:14:37 +0200 | [diff] [blame] | 4566 | |
| 4567 | if (is_sdvo) |
| 4568 | dpll |= DPLL_DVO_HIGH_SPEED; |
| 4569 | |
Daniel Vetter | f47709a | 2013-03-28 10:42:02 +0100 | [diff] [blame] | 4570 | if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_DISPLAYPORT)) |
Daniel Vetter | eb1cbe4 | 2012-03-28 23:12:16 +0200 | [diff] [blame] | 4571 | dpll |= DPLL_DVO_HIGH_SPEED; |
| 4572 | |
| 4573 | /* compute bitmask from p1 value */ |
| 4574 | if (IS_PINEVIEW(dev)) |
| 4575 | dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT_PINEVIEW; |
| 4576 | else { |
| 4577 | dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT; |
| 4578 | if (IS_G4X(dev) && reduced_clock) |
| 4579 | dpll |= (1 << (reduced_clock->p1 - 1)) << DPLL_FPA1_P1_POST_DIV_SHIFT; |
| 4580 | } |
| 4581 | switch (clock->p2) { |
| 4582 | case 5: |
| 4583 | dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_5; |
| 4584 | break; |
| 4585 | case 7: |
| 4586 | dpll |= DPLLB_LVDS_P2_CLOCK_DIV_7; |
| 4587 | break; |
| 4588 | case 10: |
| 4589 | dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_10; |
| 4590 | break; |
| 4591 | case 14: |
| 4592 | dpll |= DPLLB_LVDS_P2_CLOCK_DIV_14; |
| 4593 | break; |
| 4594 | } |
| 4595 | if (INTEL_INFO(dev)->gen >= 4) |
| 4596 | dpll |= (6 << PLL_LOAD_PULSE_PHASE_SHIFT); |
| 4597 | |
Daniel Vetter | 09ede54 | 2013-04-30 14:01:45 +0200 | [diff] [blame] | 4598 | if (crtc->config.sdvo_tv_clock) |
Daniel Vetter | eb1cbe4 | 2012-03-28 23:12:16 +0200 | [diff] [blame] | 4599 | dpll |= PLL_REF_INPUT_TVCLKINBC; |
Daniel Vetter | f47709a | 2013-03-28 10:42:02 +0100 | [diff] [blame] | 4600 | else if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_LVDS) && |
Daniel Vetter | eb1cbe4 | 2012-03-28 23:12:16 +0200 | [diff] [blame] | 4601 | intel_panel_use_ssc(dev_priv) && num_connectors < 2) |
| 4602 | dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN; |
| 4603 | else |
| 4604 | dpll |= PLL_REF_INPUT_DREFCLK; |
| 4605 | |
| 4606 | dpll |= DPLL_VCO_ENABLE; |
| 4607 | I915_WRITE(DPLL(pipe), dpll & ~DPLL_VCO_ENABLE); |
| 4608 | POSTING_READ(DPLL(pipe)); |
| 4609 | udelay(150); |
| 4610 | |
Daniel Vetter | f47709a | 2013-03-28 10:42:02 +0100 | [diff] [blame] | 4611 | for_each_encoder_on_crtc(dev, &crtc->base, encoder) |
Daniel Vetter | dafd226 | 2012-11-26 17:22:07 +0100 | [diff] [blame] | 4612 | if (encoder->pre_pll_enable) |
| 4613 | encoder->pre_pll_enable(encoder); |
Daniel Vetter | eb1cbe4 | 2012-03-28 23:12:16 +0200 | [diff] [blame] | 4614 | |
Daniel Vetter | f47709a | 2013-03-28 10:42:02 +0100 | [diff] [blame] | 4615 | if (crtc->config.has_dp_encoder) |
| 4616 | intel_dp_set_m_n(crtc); |
Daniel Vetter | eb1cbe4 | 2012-03-28 23:12:16 +0200 | [diff] [blame] | 4617 | |
| 4618 | I915_WRITE(DPLL(pipe), dpll); |
| 4619 | |
| 4620 | /* Wait for the clocks to stabilize. */ |
| 4621 | POSTING_READ(DPLL(pipe)); |
| 4622 | udelay(150); |
| 4623 | |
| 4624 | if (INTEL_INFO(dev)->gen >= 4) { |
Daniel Vetter | 198a037f | 2013-04-19 11:14:37 +0200 | [diff] [blame] | 4625 | u32 dpll_md = 0; |
| 4626 | if (crtc->config.pixel_multiplier > 1) { |
| 4627 | dpll_md = (crtc->config.pixel_multiplier - 1) |
| 4628 | << DPLL_MD_UDI_MULTIPLIER_SHIFT; |
Daniel Vetter | eb1cbe4 | 2012-03-28 23:12:16 +0200 | [diff] [blame] | 4629 | } |
Daniel Vetter | 198a037f | 2013-04-19 11:14:37 +0200 | [diff] [blame] | 4630 | I915_WRITE(DPLL_MD(pipe), dpll_md); |
Daniel Vetter | eb1cbe4 | 2012-03-28 23:12:16 +0200 | [diff] [blame] | 4631 | } else { |
| 4632 | /* The pixel multiplier can only be updated once the |
| 4633 | * DPLL is enabled and the clocks are stable. |
| 4634 | * |
| 4635 | * So write it again. |
| 4636 | */ |
| 4637 | I915_WRITE(DPLL(pipe), dpll); |
| 4638 | } |
| 4639 | } |
| 4640 | |
Daniel Vetter | f47709a | 2013-03-28 10:42:02 +0100 | [diff] [blame] | 4641 | static void i8xx_update_pll(struct intel_crtc *crtc, |
Daniel Vetter | eb1cbe4 | 2012-03-28 23:12:16 +0200 | [diff] [blame] | 4642 | struct drm_display_mode *adjusted_mode, |
Daniel Vetter | f47709a | 2013-03-28 10:42:02 +0100 | [diff] [blame] | 4643 | intel_clock_t *reduced_clock, |
Daniel Vetter | eb1cbe4 | 2012-03-28 23:12:16 +0200 | [diff] [blame] | 4644 | int num_connectors) |
| 4645 | { |
Daniel Vetter | f47709a | 2013-03-28 10:42:02 +0100 | [diff] [blame] | 4646 | struct drm_device *dev = crtc->base.dev; |
Daniel Vetter | eb1cbe4 | 2012-03-28 23:12:16 +0200 | [diff] [blame] | 4647 | struct drm_i915_private *dev_priv = dev->dev_private; |
Daniel Vetter | dafd226 | 2012-11-26 17:22:07 +0100 | [diff] [blame] | 4648 | struct intel_encoder *encoder; |
Daniel Vetter | f47709a | 2013-03-28 10:42:02 +0100 | [diff] [blame] | 4649 | int pipe = crtc->pipe; |
Daniel Vetter | eb1cbe4 | 2012-03-28 23:12:16 +0200 | [diff] [blame] | 4650 | u32 dpll; |
Daniel Vetter | f47709a | 2013-03-28 10:42:02 +0100 | [diff] [blame] | 4651 | struct dpll *clock = &crtc->config.dpll; |
Daniel Vetter | eb1cbe4 | 2012-03-28 23:12:16 +0200 | [diff] [blame] | 4652 | |
Daniel Vetter | f47709a | 2013-03-28 10:42:02 +0100 | [diff] [blame] | 4653 | i9xx_update_pll_dividers(crtc, reduced_clock); |
Vijay Purushothaman | 2a8f64c | 2012-09-27 19:13:06 +0530 | [diff] [blame] | 4654 | |
Daniel Vetter | eb1cbe4 | 2012-03-28 23:12:16 +0200 | [diff] [blame] | 4655 | dpll = DPLL_VGA_MODE_DIS; |
| 4656 | |
Daniel Vetter | f47709a | 2013-03-28 10:42:02 +0100 | [diff] [blame] | 4657 | if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_LVDS)) { |
Daniel Vetter | eb1cbe4 | 2012-03-28 23:12:16 +0200 | [diff] [blame] | 4658 | dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT; |
| 4659 | } else { |
| 4660 | if (clock->p1 == 2) |
| 4661 | dpll |= PLL_P1_DIVIDE_BY_TWO; |
| 4662 | else |
| 4663 | dpll |= (clock->p1 - 2) << DPLL_FPA01_P1_POST_DIV_SHIFT; |
| 4664 | if (clock->p2 == 4) |
| 4665 | dpll |= PLL_P2_DIVIDE_BY_4; |
| 4666 | } |
| 4667 | |
Daniel Vetter | f47709a | 2013-03-28 10:42:02 +0100 | [diff] [blame] | 4668 | if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_LVDS) && |
Daniel Vetter | eb1cbe4 | 2012-03-28 23:12:16 +0200 | [diff] [blame] | 4669 | intel_panel_use_ssc(dev_priv) && num_connectors < 2) |
| 4670 | dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN; |
| 4671 | else |
| 4672 | dpll |= PLL_REF_INPUT_DREFCLK; |
| 4673 | |
| 4674 | dpll |= DPLL_VCO_ENABLE; |
| 4675 | I915_WRITE(DPLL(pipe), dpll & ~DPLL_VCO_ENABLE); |
| 4676 | POSTING_READ(DPLL(pipe)); |
| 4677 | udelay(150); |
| 4678 | |
Daniel Vetter | f47709a | 2013-03-28 10:42:02 +0100 | [diff] [blame] | 4679 | for_each_encoder_on_crtc(dev, &crtc->base, encoder) |
Daniel Vetter | dafd226 | 2012-11-26 17:22:07 +0100 | [diff] [blame] | 4680 | if (encoder->pre_pll_enable) |
| 4681 | encoder->pre_pll_enable(encoder); |
Daniel Vetter | eb1cbe4 | 2012-03-28 23:12:16 +0200 | [diff] [blame] | 4682 | |
Daniel Vetter | 5b5896e | 2012-09-11 12:37:55 +0200 | [diff] [blame] | 4683 | I915_WRITE(DPLL(pipe), dpll); |
| 4684 | |
| 4685 | /* Wait for the clocks to stabilize. */ |
| 4686 | POSTING_READ(DPLL(pipe)); |
| 4687 | udelay(150); |
| 4688 | |
Daniel Vetter | eb1cbe4 | 2012-03-28 23:12:16 +0200 | [diff] [blame] | 4689 | /* The pixel multiplier can only be updated once the |
| 4690 | * DPLL is enabled and the clocks are stable. |
| 4691 | * |
| 4692 | * So write it again. |
| 4693 | */ |
| 4694 | I915_WRITE(DPLL(pipe), dpll); |
| 4695 | } |
| 4696 | |
Paulo Zanoni | b0e77b9 | 2012-10-01 18:10:53 -0300 | [diff] [blame] | 4697 | static void intel_set_pipe_timings(struct intel_crtc *intel_crtc, |
| 4698 | struct drm_display_mode *mode, |
| 4699 | struct drm_display_mode *adjusted_mode) |
| 4700 | { |
| 4701 | struct drm_device *dev = intel_crtc->base.dev; |
| 4702 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 4703 | enum pipe pipe = intel_crtc->pipe; |
Daniel Vetter | 3b117c8 | 2013-04-17 20:15:07 +0200 | [diff] [blame] | 4704 | enum transcoder cpu_transcoder = intel_crtc->config.cpu_transcoder; |
Daniel Vetter | 4d8a62e | 2013-05-03 11:49:51 +0200 | [diff] [blame] | 4705 | uint32_t vsyncshift, crtc_vtotal, crtc_vblank_end; |
| 4706 | |
| 4707 | /* We need to be careful not to changed the adjusted mode, for otherwise |
| 4708 | * the hw state checker will get angry at the mismatch. */ |
| 4709 | crtc_vtotal = adjusted_mode->crtc_vtotal; |
| 4710 | crtc_vblank_end = adjusted_mode->crtc_vblank_end; |
Paulo Zanoni | b0e77b9 | 2012-10-01 18:10:53 -0300 | [diff] [blame] | 4711 | |
| 4712 | if (!IS_GEN2(dev) && adjusted_mode->flags & DRM_MODE_FLAG_INTERLACE) { |
| 4713 | /* the chip adds 2 halflines automatically */ |
Daniel Vetter | 4d8a62e | 2013-05-03 11:49:51 +0200 | [diff] [blame] | 4714 | crtc_vtotal -= 1; |
| 4715 | crtc_vblank_end -= 1; |
Paulo Zanoni | b0e77b9 | 2012-10-01 18:10:53 -0300 | [diff] [blame] | 4716 | vsyncshift = adjusted_mode->crtc_hsync_start |
| 4717 | - adjusted_mode->crtc_htotal / 2; |
| 4718 | } else { |
| 4719 | vsyncshift = 0; |
| 4720 | } |
| 4721 | |
| 4722 | if (INTEL_INFO(dev)->gen > 3) |
Paulo Zanoni | fe2b8f9 | 2012-10-23 18:30:02 -0200 | [diff] [blame] | 4723 | I915_WRITE(VSYNCSHIFT(cpu_transcoder), vsyncshift); |
Paulo Zanoni | b0e77b9 | 2012-10-01 18:10:53 -0300 | [diff] [blame] | 4724 | |
Paulo Zanoni | fe2b8f9 | 2012-10-23 18:30:02 -0200 | [diff] [blame] | 4725 | I915_WRITE(HTOTAL(cpu_transcoder), |
Paulo Zanoni | b0e77b9 | 2012-10-01 18:10:53 -0300 | [diff] [blame] | 4726 | (adjusted_mode->crtc_hdisplay - 1) | |
| 4727 | ((adjusted_mode->crtc_htotal - 1) << 16)); |
Paulo Zanoni | fe2b8f9 | 2012-10-23 18:30:02 -0200 | [diff] [blame] | 4728 | I915_WRITE(HBLANK(cpu_transcoder), |
Paulo Zanoni | b0e77b9 | 2012-10-01 18:10:53 -0300 | [diff] [blame] | 4729 | (adjusted_mode->crtc_hblank_start - 1) | |
| 4730 | ((adjusted_mode->crtc_hblank_end - 1) << 16)); |
Paulo Zanoni | fe2b8f9 | 2012-10-23 18:30:02 -0200 | [diff] [blame] | 4731 | I915_WRITE(HSYNC(cpu_transcoder), |
Paulo Zanoni | b0e77b9 | 2012-10-01 18:10:53 -0300 | [diff] [blame] | 4732 | (adjusted_mode->crtc_hsync_start - 1) | |
| 4733 | ((adjusted_mode->crtc_hsync_end - 1) << 16)); |
| 4734 | |
Paulo Zanoni | fe2b8f9 | 2012-10-23 18:30:02 -0200 | [diff] [blame] | 4735 | I915_WRITE(VTOTAL(cpu_transcoder), |
Paulo Zanoni | b0e77b9 | 2012-10-01 18:10:53 -0300 | [diff] [blame] | 4736 | (adjusted_mode->crtc_vdisplay - 1) | |
Daniel Vetter | 4d8a62e | 2013-05-03 11:49:51 +0200 | [diff] [blame] | 4737 | ((crtc_vtotal - 1) << 16)); |
Paulo Zanoni | fe2b8f9 | 2012-10-23 18:30:02 -0200 | [diff] [blame] | 4738 | I915_WRITE(VBLANK(cpu_transcoder), |
Paulo Zanoni | b0e77b9 | 2012-10-01 18:10:53 -0300 | [diff] [blame] | 4739 | (adjusted_mode->crtc_vblank_start - 1) | |
Daniel Vetter | 4d8a62e | 2013-05-03 11:49:51 +0200 | [diff] [blame] | 4740 | ((crtc_vblank_end - 1) << 16)); |
Paulo Zanoni | fe2b8f9 | 2012-10-23 18:30:02 -0200 | [diff] [blame] | 4741 | I915_WRITE(VSYNC(cpu_transcoder), |
Paulo Zanoni | b0e77b9 | 2012-10-01 18:10:53 -0300 | [diff] [blame] | 4742 | (adjusted_mode->crtc_vsync_start - 1) | |
| 4743 | ((adjusted_mode->crtc_vsync_end - 1) << 16)); |
| 4744 | |
Paulo Zanoni | b5e508d | 2012-10-24 11:34:43 -0200 | [diff] [blame] | 4745 | /* Workaround: when the EDP input selection is B, the VTOTAL_B must be |
| 4746 | * programmed with the VTOTAL_EDP value. Same for VTOTAL_C. This is |
| 4747 | * documented on the DDI_FUNC_CTL register description, EDP Input Select |
| 4748 | * bits. */ |
| 4749 | if (IS_HASWELL(dev) && cpu_transcoder == TRANSCODER_EDP && |
| 4750 | (pipe == PIPE_B || pipe == PIPE_C)) |
| 4751 | I915_WRITE(VTOTAL(pipe), I915_READ(VTOTAL(cpu_transcoder))); |
| 4752 | |
Paulo Zanoni | b0e77b9 | 2012-10-01 18:10:53 -0300 | [diff] [blame] | 4753 | /* pipesrc controls the size that is scaled from, which should |
| 4754 | * always be the user's requested size. |
| 4755 | */ |
| 4756 | I915_WRITE(PIPESRC(pipe), |
| 4757 | ((mode->hdisplay - 1) << 16) | (mode->vdisplay - 1)); |
| 4758 | } |
| 4759 | |
Daniel Vetter | 1bd1bd8 | 2013-04-29 21:56:12 +0200 | [diff] [blame] | 4760 | static void intel_get_pipe_timings(struct intel_crtc *crtc, |
| 4761 | struct intel_crtc_config *pipe_config) |
| 4762 | { |
| 4763 | struct drm_device *dev = crtc->base.dev; |
| 4764 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 4765 | enum transcoder cpu_transcoder = pipe_config->cpu_transcoder; |
| 4766 | uint32_t tmp; |
| 4767 | |
| 4768 | tmp = I915_READ(HTOTAL(cpu_transcoder)); |
| 4769 | pipe_config->adjusted_mode.crtc_hdisplay = (tmp & 0xffff) + 1; |
| 4770 | pipe_config->adjusted_mode.crtc_htotal = ((tmp >> 16) & 0xffff) + 1; |
| 4771 | tmp = I915_READ(HBLANK(cpu_transcoder)); |
| 4772 | pipe_config->adjusted_mode.crtc_hblank_start = (tmp & 0xffff) + 1; |
| 4773 | pipe_config->adjusted_mode.crtc_hblank_end = ((tmp >> 16) & 0xffff) + 1; |
| 4774 | tmp = I915_READ(HSYNC(cpu_transcoder)); |
| 4775 | pipe_config->adjusted_mode.crtc_hsync_start = (tmp & 0xffff) + 1; |
| 4776 | pipe_config->adjusted_mode.crtc_hsync_end = ((tmp >> 16) & 0xffff) + 1; |
| 4777 | |
| 4778 | tmp = I915_READ(VTOTAL(cpu_transcoder)); |
| 4779 | pipe_config->adjusted_mode.crtc_vdisplay = (tmp & 0xffff) + 1; |
| 4780 | pipe_config->adjusted_mode.crtc_vtotal = ((tmp >> 16) & 0xffff) + 1; |
| 4781 | tmp = I915_READ(VBLANK(cpu_transcoder)); |
| 4782 | pipe_config->adjusted_mode.crtc_vblank_start = (tmp & 0xffff) + 1; |
| 4783 | pipe_config->adjusted_mode.crtc_vblank_end = ((tmp >> 16) & 0xffff) + 1; |
| 4784 | tmp = I915_READ(VSYNC(cpu_transcoder)); |
| 4785 | pipe_config->adjusted_mode.crtc_vsync_start = (tmp & 0xffff) + 1; |
| 4786 | pipe_config->adjusted_mode.crtc_vsync_end = ((tmp >> 16) & 0xffff) + 1; |
| 4787 | |
| 4788 | if (I915_READ(PIPECONF(cpu_transcoder)) & PIPECONF_INTERLACE_MASK) { |
| 4789 | pipe_config->adjusted_mode.flags |= DRM_MODE_FLAG_INTERLACE; |
| 4790 | pipe_config->adjusted_mode.crtc_vtotal += 1; |
| 4791 | pipe_config->adjusted_mode.crtc_vblank_end += 1; |
| 4792 | } |
| 4793 | |
| 4794 | tmp = I915_READ(PIPESRC(crtc->pipe)); |
| 4795 | pipe_config->requested_mode.vdisplay = (tmp & 0xffff) + 1; |
| 4796 | pipe_config->requested_mode.hdisplay = ((tmp >> 16) & 0xffff) + 1; |
| 4797 | } |
| 4798 | |
Daniel Vetter | 84b046f | 2013-02-19 18:48:54 +0100 | [diff] [blame] | 4799 | static void i9xx_set_pipeconf(struct intel_crtc *intel_crtc) |
| 4800 | { |
| 4801 | struct drm_device *dev = intel_crtc->base.dev; |
| 4802 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 4803 | uint32_t pipeconf; |
| 4804 | |
| 4805 | pipeconf = I915_READ(PIPECONF(intel_crtc->pipe)); |
| 4806 | |
| 4807 | if (intel_crtc->pipe == 0 && INTEL_INFO(dev)->gen < 4) { |
| 4808 | /* Enable pixel doubling when the dot clock is > 90% of the (display) |
| 4809 | * core speed. |
| 4810 | * |
| 4811 | * XXX: No double-wide on 915GM pipe B. Is that the only reason for the |
| 4812 | * pipe == 0 check? |
| 4813 | */ |
| 4814 | if (intel_crtc->config.requested_mode.clock > |
| 4815 | dev_priv->display.get_display_clock_speed(dev) * 9 / 10) |
| 4816 | pipeconf |= PIPECONF_DOUBLE_WIDE; |
| 4817 | else |
| 4818 | pipeconf &= ~PIPECONF_DOUBLE_WIDE; |
| 4819 | } |
| 4820 | |
Daniel Vetter | ff9ce46 | 2013-04-24 14:57:17 +0200 | [diff] [blame] | 4821 | /* only g4x and later have fancy bpc/dither controls */ |
| 4822 | if (IS_G4X(dev) || IS_VALLEYVIEW(dev)) { |
| 4823 | pipeconf &= ~(PIPECONF_BPC_MASK | |
| 4824 | PIPECONF_DITHER_EN | PIPECONF_DITHER_TYPE_MASK); |
Daniel Vetter | 84b046f | 2013-02-19 18:48:54 +0100 | [diff] [blame] | 4825 | |
Daniel Vetter | ff9ce46 | 2013-04-24 14:57:17 +0200 | [diff] [blame] | 4826 | /* Bspec claims that we can't use dithering for 30bpp pipes. */ |
| 4827 | if (intel_crtc->config.dither && intel_crtc->config.pipe_bpp != 30) |
| 4828 | pipeconf |= PIPECONF_DITHER_EN | |
| 4829 | PIPECONF_DITHER_TYPE_SP; |
| 4830 | |
| 4831 | switch (intel_crtc->config.pipe_bpp) { |
| 4832 | case 18: |
| 4833 | pipeconf |= PIPECONF_6BPC; |
| 4834 | break; |
| 4835 | case 24: |
| 4836 | pipeconf |= PIPECONF_8BPC; |
| 4837 | break; |
| 4838 | case 30: |
| 4839 | pipeconf |= PIPECONF_10BPC; |
| 4840 | break; |
| 4841 | default: |
| 4842 | /* Case prevented by intel_choose_pipe_bpp_dither. */ |
| 4843 | BUG(); |
Daniel Vetter | 84b046f | 2013-02-19 18:48:54 +0100 | [diff] [blame] | 4844 | } |
| 4845 | } |
| 4846 | |
| 4847 | if (HAS_PIPE_CXSR(dev)) { |
| 4848 | if (intel_crtc->lowfreq_avail) { |
| 4849 | DRM_DEBUG_KMS("enabling CxSR downclocking\n"); |
| 4850 | pipeconf |= PIPECONF_CXSR_DOWNCLOCK; |
| 4851 | } else { |
| 4852 | DRM_DEBUG_KMS("disabling CxSR downclocking\n"); |
| 4853 | pipeconf &= ~PIPECONF_CXSR_DOWNCLOCK; |
| 4854 | } |
| 4855 | } |
| 4856 | |
| 4857 | pipeconf &= ~PIPECONF_INTERLACE_MASK; |
| 4858 | if (!IS_GEN2(dev) && |
| 4859 | intel_crtc->config.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE) |
| 4860 | pipeconf |= PIPECONF_INTERLACE_W_FIELD_INDICATION; |
| 4861 | else |
| 4862 | pipeconf |= PIPECONF_PROGRESSIVE; |
| 4863 | |
Ville Syrjälä | 9c8e09b | 2013-04-02 16:10:09 +0300 | [diff] [blame] | 4864 | if (IS_VALLEYVIEW(dev)) { |
| 4865 | if (intel_crtc->config.limited_color_range) |
| 4866 | pipeconf |= PIPECONF_COLOR_RANGE_SELECT; |
| 4867 | else |
| 4868 | pipeconf &= ~PIPECONF_COLOR_RANGE_SELECT; |
| 4869 | } |
| 4870 | |
Daniel Vetter | 84b046f | 2013-02-19 18:48:54 +0100 | [diff] [blame] | 4871 | I915_WRITE(PIPECONF(intel_crtc->pipe), pipeconf); |
| 4872 | POSTING_READ(PIPECONF(intel_crtc->pipe)); |
| 4873 | } |
| 4874 | |
Eric Anholt | f564048e | 2011-03-30 13:01:02 -0700 | [diff] [blame] | 4875 | static int i9xx_crtc_mode_set(struct drm_crtc *crtc, |
Eric Anholt | f564048e | 2011-03-30 13:01:02 -0700 | [diff] [blame] | 4876 | int x, int y, |
Daniel Vetter | 94352cf | 2012-07-05 22:51:56 +0200 | [diff] [blame] | 4877 | struct drm_framebuffer *fb) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4878 | { |
| 4879 | struct drm_device *dev = crtc->dev; |
| 4880 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 4881 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
Daniel Vetter | b8cecdf | 2013-03-27 00:44:50 +0100 | [diff] [blame] | 4882 | struct drm_display_mode *adjusted_mode = |
| 4883 | &intel_crtc->config.adjusted_mode; |
| 4884 | struct drm_display_mode *mode = &intel_crtc->config.requested_mode; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4885 | int pipe = intel_crtc->pipe; |
Jesse Barnes | 8082400 | 2009-09-10 15:28:06 -0700 | [diff] [blame] | 4886 | int plane = intel_crtc->plane; |
Eric Anholt | c751ce4 | 2010-03-25 11:48:48 -0700 | [diff] [blame] | 4887 | int refclk, num_connectors = 0; |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 4888 | intel_clock_t clock, reduced_clock; |
Daniel Vetter | 84b046f | 2013-02-19 18:48:54 +0100 | [diff] [blame] | 4889 | u32 dspcntr; |
Daniel Vetter | a16af72 | 2013-04-30 14:01:44 +0200 | [diff] [blame] | 4890 | bool ok, has_reduced_clock = false; |
| 4891 | bool is_lvds = false; |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 4892 | struct intel_encoder *encoder; |
Ma Ling | d490609 | 2009-03-18 20:13:27 +0800 | [diff] [blame] | 4893 | const intel_limit_t *limit; |
Chris Wilson | 5c3b82e | 2009-02-11 13:25:09 +0000 | [diff] [blame] | 4894 | int ret; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4895 | |
Daniel Vetter | 6c2b7c1 | 2012-07-05 09:50:24 +0200 | [diff] [blame] | 4896 | for_each_encoder_on_crtc(dev, crtc, encoder) { |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 4897 | switch (encoder->type) { |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4898 | case INTEL_OUTPUT_LVDS: |
| 4899 | is_lvds = true; |
| 4900 | break; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4901 | } |
Kristian Høgsberg | 43565a0 | 2009-02-13 20:56:52 -0500 | [diff] [blame] | 4902 | |
Eric Anholt | c751ce4 | 2010-03-25 11:48:48 -0700 | [diff] [blame] | 4903 | num_connectors++; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4904 | } |
| 4905 | |
Jesse Barnes | c65d77d | 2011-12-15 12:30:36 -0800 | [diff] [blame] | 4906 | refclk = i9xx_get_refclk(crtc, num_connectors); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4907 | |
Ma Ling | d490609 | 2009-03-18 20:13:27 +0800 | [diff] [blame] | 4908 | /* |
| 4909 | * Returns a set of divisors for the desired target clock with the given |
| 4910 | * refclk, or FALSE. The returned values represent the clock equation: |
| 4911 | * reflck * (5 * (m1 + 2) + (m2 + 2)) / (n + 2) / p1 / p2. |
| 4912 | */ |
Chris Wilson | 1b894b5 | 2010-12-14 20:04:54 +0000 | [diff] [blame] | 4913 | limit = intel_limit(crtc, refclk); |
Sean Paul | cec2f35 | 2012-01-10 15:09:36 -0800 | [diff] [blame] | 4914 | ok = limit->find_pll(limit, crtc, adjusted_mode->clock, refclk, NULL, |
| 4915 | &clock); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4916 | if (!ok) { |
| 4917 | DRM_ERROR("Couldn't find PLL settings for mode!\n"); |
Eric Anholt | f564048e | 2011-03-30 13:01:02 -0700 | [diff] [blame] | 4918 | return -EINVAL; |
| 4919 | } |
| 4920 | |
| 4921 | /* Ensure that the cursor is valid for the new mode before changing... */ |
| 4922 | intel_crtc_update_cursor(crtc, true); |
| 4923 | |
| 4924 | if (is_lvds && dev_priv->lvds_downclock_avail) { |
Sean Paul | cec2f35 | 2012-01-10 15:09:36 -0800 | [diff] [blame] | 4925 | /* |
| 4926 | * Ensure we match the reduced clock's P to the target clock. |
| 4927 | * If the clocks don't match, we can't switch the display clock |
| 4928 | * by using the FP0/FP1. In such case we will disable the LVDS |
| 4929 | * downclock feature. |
| 4930 | */ |
Eric Anholt | f564048e | 2011-03-30 13:01:02 -0700 | [diff] [blame] | 4931 | has_reduced_clock = limit->find_pll(limit, crtc, |
| 4932 | dev_priv->lvds_downclock, |
| 4933 | refclk, |
Sean Paul | cec2f35 | 2012-01-10 15:09:36 -0800 | [diff] [blame] | 4934 | &clock, |
Eric Anholt | f564048e | 2011-03-30 13:01:02 -0700 | [diff] [blame] | 4935 | &reduced_clock); |
Eric Anholt | f564048e | 2011-03-30 13:01:02 -0700 | [diff] [blame] | 4936 | } |
Daniel Vetter | f47709a | 2013-03-28 10:42:02 +0100 | [diff] [blame] | 4937 | /* Compat-code for transition, will disappear. */ |
| 4938 | if (!intel_crtc->config.clock_set) { |
| 4939 | intel_crtc->config.dpll.n = clock.n; |
| 4940 | intel_crtc->config.dpll.m1 = clock.m1; |
| 4941 | intel_crtc->config.dpll.m2 = clock.m2; |
| 4942 | intel_crtc->config.dpll.p1 = clock.p1; |
| 4943 | intel_crtc->config.dpll.p2 = clock.p2; |
| 4944 | } |
Eric Anholt | f564048e | 2011-03-30 13:01:02 -0700 | [diff] [blame] | 4945 | |
Daniel Vetter | eb1cbe4 | 2012-03-28 23:12:16 +0200 | [diff] [blame] | 4946 | if (IS_GEN2(dev)) |
Daniel Vetter | f47709a | 2013-03-28 10:42:02 +0100 | [diff] [blame] | 4947 | i8xx_update_pll(intel_crtc, adjusted_mode, |
Vijay Purushothaman | 2a8f64c | 2012-09-27 19:13:06 +0530 | [diff] [blame] | 4948 | has_reduced_clock ? &reduced_clock : NULL, |
| 4949 | num_connectors); |
Jesse Barnes | a0c4da24 | 2012-06-15 11:55:13 -0700 | [diff] [blame] | 4950 | else if (IS_VALLEYVIEW(dev)) |
Daniel Vetter | f47709a | 2013-03-28 10:42:02 +0100 | [diff] [blame] | 4951 | vlv_update_pll(intel_crtc); |
Eric Anholt | f564048e | 2011-03-30 13:01:02 -0700 | [diff] [blame] | 4952 | else |
Daniel Vetter | f47709a | 2013-03-28 10:42:02 +0100 | [diff] [blame] | 4953 | i9xx_update_pll(intel_crtc, |
Daniel Vetter | eb1cbe4 | 2012-03-28 23:12:16 +0200 | [diff] [blame] | 4954 | has_reduced_clock ? &reduced_clock : NULL, |
Jesse Barnes | 89b667f | 2013-04-18 14:51:36 -0700 | [diff] [blame] | 4955 | num_connectors); |
Eric Anholt | f564048e | 2011-03-30 13:01:02 -0700 | [diff] [blame] | 4956 | |
Eric Anholt | f564048e | 2011-03-30 13:01:02 -0700 | [diff] [blame] | 4957 | /* Set up the display plane register */ |
| 4958 | dspcntr = DISPPLANE_GAMMA_ENABLE; |
| 4959 | |
Jesse Barnes | da6ecc5 | 2013-03-08 10:46:00 -0800 | [diff] [blame] | 4960 | if (!IS_VALLEYVIEW(dev)) { |
| 4961 | if (pipe == 0) |
| 4962 | dspcntr &= ~DISPPLANE_SEL_PIPE_MASK; |
| 4963 | else |
| 4964 | dspcntr |= DISPPLANE_SEL_PIPE_B; |
| 4965 | } |
Eric Anholt | f564048e | 2011-03-30 13:01:02 -0700 | [diff] [blame] | 4966 | |
Paulo Zanoni | b0e77b9 | 2012-10-01 18:10:53 -0300 | [diff] [blame] | 4967 | intel_set_pipe_timings(intel_crtc, mode, adjusted_mode); |
Eric Anholt | f564048e | 2011-03-30 13:01:02 -0700 | [diff] [blame] | 4968 | |
| 4969 | /* pipesrc and dspsize control the size that is scaled from, |
| 4970 | * which should always be the user's requested size. |
| 4971 | */ |
Eric Anholt | 929c77f | 2011-03-30 13:01:04 -0700 | [diff] [blame] | 4972 | I915_WRITE(DSPSIZE(plane), |
| 4973 | ((mode->vdisplay - 1) << 16) | |
| 4974 | (mode->hdisplay - 1)); |
| 4975 | I915_WRITE(DSPPOS(plane), 0); |
Eric Anholt | f564048e | 2011-03-30 13:01:02 -0700 | [diff] [blame] | 4976 | |
Daniel Vetter | 84b046f | 2013-02-19 18:48:54 +0100 | [diff] [blame] | 4977 | i9xx_set_pipeconf(intel_crtc); |
| 4978 | |
Eric Anholt | f564048e | 2011-03-30 13:01:02 -0700 | [diff] [blame] | 4979 | I915_WRITE(DSPCNTR(plane), dspcntr); |
| 4980 | POSTING_READ(DSPCNTR(plane)); |
| 4981 | |
Daniel Vetter | 94352cf | 2012-07-05 22:51:56 +0200 | [diff] [blame] | 4982 | ret = intel_pipe_set_base(crtc, x, y, fb); |
Eric Anholt | f564048e | 2011-03-30 13:01:02 -0700 | [diff] [blame] | 4983 | |
| 4984 | intel_update_watermarks(dev); |
| 4985 | |
Eric Anholt | f564048e | 2011-03-30 13:01:02 -0700 | [diff] [blame] | 4986 | return ret; |
| 4987 | } |
| 4988 | |
Daniel Vetter | 2fa2fe9 | 2013-05-07 23:34:16 +0200 | [diff] [blame] | 4989 | static void i9xx_get_pfit_config(struct intel_crtc *crtc, |
| 4990 | struct intel_crtc_config *pipe_config) |
| 4991 | { |
| 4992 | struct drm_device *dev = crtc->base.dev; |
| 4993 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 4994 | uint32_t tmp; |
| 4995 | |
| 4996 | tmp = I915_READ(PFIT_CONTROL); |
| 4997 | |
| 4998 | if (INTEL_INFO(dev)->gen < 4) { |
| 4999 | if (crtc->pipe != PIPE_B) |
| 5000 | return; |
| 5001 | |
| 5002 | /* gen2/3 store dither state in pfit control, needs to match */ |
| 5003 | pipe_config->gmch_pfit.control = tmp & PANEL_8TO6_DITHER_ENABLE; |
| 5004 | } else { |
| 5005 | if ((tmp & PFIT_PIPE_MASK) != (crtc->pipe << PFIT_PIPE_SHIFT)) |
| 5006 | return; |
| 5007 | } |
| 5008 | |
| 5009 | if (!(tmp & PFIT_ENABLE)) |
| 5010 | return; |
| 5011 | |
| 5012 | pipe_config->gmch_pfit.control = I915_READ(PFIT_CONTROL); |
| 5013 | pipe_config->gmch_pfit.pgm_ratios = I915_READ(PFIT_PGM_RATIOS); |
| 5014 | if (INTEL_INFO(dev)->gen < 5) |
| 5015 | pipe_config->gmch_pfit.lvds_border_bits = |
| 5016 | I915_READ(LVDS) & LVDS_BORDER_ENABLE; |
| 5017 | } |
| 5018 | |
Daniel Vetter | 0e8ffe1 | 2013-03-28 10:42:00 +0100 | [diff] [blame] | 5019 | static bool i9xx_get_pipe_config(struct intel_crtc *crtc, |
| 5020 | struct intel_crtc_config *pipe_config) |
| 5021 | { |
| 5022 | struct drm_device *dev = crtc->base.dev; |
| 5023 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 5024 | uint32_t tmp; |
| 5025 | |
Daniel Vetter | eccb140 | 2013-05-22 00:50:22 +0200 | [diff] [blame] | 5026 | pipe_config->cpu_transcoder = crtc->pipe; |
| 5027 | |
Daniel Vetter | 0e8ffe1 | 2013-03-28 10:42:00 +0100 | [diff] [blame] | 5028 | tmp = I915_READ(PIPECONF(crtc->pipe)); |
| 5029 | if (!(tmp & PIPECONF_ENABLE)) |
| 5030 | return false; |
| 5031 | |
Daniel Vetter | 1bd1bd8 | 2013-04-29 21:56:12 +0200 | [diff] [blame] | 5032 | intel_get_pipe_timings(crtc, pipe_config); |
| 5033 | |
Daniel Vetter | 2fa2fe9 | 2013-05-07 23:34:16 +0200 | [diff] [blame] | 5034 | i9xx_get_pfit_config(crtc, pipe_config); |
| 5035 | |
Daniel Vetter | 0e8ffe1 | 2013-03-28 10:42:00 +0100 | [diff] [blame] | 5036 | return true; |
| 5037 | } |
| 5038 | |
Paulo Zanoni | dde86e2 | 2012-12-01 12:04:25 -0200 | [diff] [blame] | 5039 | static void ironlake_init_pch_refclk(struct drm_device *dev) |
Jesse Barnes | 13d83a6 | 2011-08-03 12:59:20 -0700 | [diff] [blame] | 5040 | { |
| 5041 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 5042 | struct drm_mode_config *mode_config = &dev->mode_config; |
Jesse Barnes | 13d83a6 | 2011-08-03 12:59:20 -0700 | [diff] [blame] | 5043 | struct intel_encoder *encoder; |
Chris Wilson | 74cfd7a | 2013-03-26 16:33:04 -0700 | [diff] [blame] | 5044 | u32 val, final; |
Jesse Barnes | 13d83a6 | 2011-08-03 12:59:20 -0700 | [diff] [blame] | 5045 | bool has_lvds = false; |
Keith Packard | 199e5d7 | 2011-09-22 12:01:57 -0700 | [diff] [blame] | 5046 | bool has_cpu_edp = false; |
Keith Packard | 199e5d7 | 2011-09-22 12:01:57 -0700 | [diff] [blame] | 5047 | bool has_panel = false; |
Keith Packard | 99eb6a0 | 2011-09-26 14:29:12 -0700 | [diff] [blame] | 5048 | bool has_ck505 = false; |
| 5049 | bool can_ssc = false; |
Jesse Barnes | 13d83a6 | 2011-08-03 12:59:20 -0700 | [diff] [blame] | 5050 | |
| 5051 | /* We need to take the global config into account */ |
Keith Packard | 199e5d7 | 2011-09-22 12:01:57 -0700 | [diff] [blame] | 5052 | list_for_each_entry(encoder, &mode_config->encoder_list, |
| 5053 | base.head) { |
| 5054 | switch (encoder->type) { |
| 5055 | case INTEL_OUTPUT_LVDS: |
| 5056 | has_panel = true; |
| 5057 | has_lvds = true; |
| 5058 | break; |
| 5059 | case INTEL_OUTPUT_EDP: |
| 5060 | has_panel = true; |
Imre Deak | 2de6905 | 2013-05-08 13:14:04 +0300 | [diff] [blame] | 5061 | if (enc_to_dig_port(&encoder->base)->port == PORT_A) |
Keith Packard | 199e5d7 | 2011-09-22 12:01:57 -0700 | [diff] [blame] | 5062 | has_cpu_edp = true; |
| 5063 | break; |
Jesse Barnes | 13d83a6 | 2011-08-03 12:59:20 -0700 | [diff] [blame] | 5064 | } |
| 5065 | } |
| 5066 | |
Keith Packard | 99eb6a0 | 2011-09-26 14:29:12 -0700 | [diff] [blame] | 5067 | if (HAS_PCH_IBX(dev)) { |
Rodrigo Vivi | 41aa344 | 2013-05-09 20:03:18 -0300 | [diff] [blame] | 5068 | has_ck505 = dev_priv->vbt.display_clock_mode; |
Keith Packard | 99eb6a0 | 2011-09-26 14:29:12 -0700 | [diff] [blame] | 5069 | can_ssc = has_ck505; |
| 5070 | } else { |
| 5071 | has_ck505 = false; |
| 5072 | can_ssc = true; |
| 5073 | } |
| 5074 | |
Imre Deak | 2de6905 | 2013-05-08 13:14:04 +0300 | [diff] [blame] | 5075 | DRM_DEBUG_KMS("has_panel %d has_lvds %d has_ck505 %d\n", |
| 5076 | has_panel, has_lvds, has_ck505); |
Jesse Barnes | 13d83a6 | 2011-08-03 12:59:20 -0700 | [diff] [blame] | 5077 | |
| 5078 | /* Ironlake: try to setup display ref clock before DPLL |
| 5079 | * enabling. This is only under driver's control after |
| 5080 | * PCH B stepping, previous chipset stepping should be |
| 5081 | * ignoring this setting. |
| 5082 | */ |
Chris Wilson | 74cfd7a | 2013-03-26 16:33:04 -0700 | [diff] [blame] | 5083 | val = I915_READ(PCH_DREF_CONTROL); |
Jesse Barnes | 13d83a6 | 2011-08-03 12:59:20 -0700 | [diff] [blame] | 5084 | |
Chris Wilson | 74cfd7a | 2013-03-26 16:33:04 -0700 | [diff] [blame] | 5085 | /* As we must carefully and slowly disable/enable each source in turn, |
| 5086 | * compute the final state we want first and check if we need to |
| 5087 | * make any changes at all. |
| 5088 | */ |
| 5089 | final = val; |
| 5090 | final &= ~DREF_NONSPREAD_SOURCE_MASK; |
Keith Packard | 99eb6a0 | 2011-09-26 14:29:12 -0700 | [diff] [blame] | 5091 | if (has_ck505) |
Chris Wilson | 74cfd7a | 2013-03-26 16:33:04 -0700 | [diff] [blame] | 5092 | final |= DREF_NONSPREAD_CK505_ENABLE; |
Keith Packard | 99eb6a0 | 2011-09-26 14:29:12 -0700 | [diff] [blame] | 5093 | else |
Chris Wilson | 74cfd7a | 2013-03-26 16:33:04 -0700 | [diff] [blame] | 5094 | final |= DREF_NONSPREAD_SOURCE_ENABLE; |
| 5095 | |
| 5096 | final &= ~DREF_SSC_SOURCE_MASK; |
| 5097 | final &= ~DREF_CPU_SOURCE_OUTPUT_MASK; |
| 5098 | final &= ~DREF_SSC1_ENABLE; |
Jesse Barnes | 13d83a6 | 2011-08-03 12:59:20 -0700 | [diff] [blame] | 5099 | |
Keith Packard | 199e5d7 | 2011-09-22 12:01:57 -0700 | [diff] [blame] | 5100 | if (has_panel) { |
Chris Wilson | 74cfd7a | 2013-03-26 16:33:04 -0700 | [diff] [blame] | 5101 | final |= DREF_SSC_SOURCE_ENABLE; |
| 5102 | |
| 5103 | if (intel_panel_use_ssc(dev_priv) && can_ssc) |
| 5104 | final |= DREF_SSC1_ENABLE; |
| 5105 | |
| 5106 | if (has_cpu_edp) { |
| 5107 | if (intel_panel_use_ssc(dev_priv) && can_ssc) |
| 5108 | final |= DREF_CPU_SOURCE_OUTPUT_DOWNSPREAD; |
| 5109 | else |
| 5110 | final |= DREF_CPU_SOURCE_OUTPUT_NONSPREAD; |
| 5111 | } else |
| 5112 | final |= DREF_CPU_SOURCE_OUTPUT_DISABLE; |
| 5113 | } else { |
| 5114 | final |= DREF_SSC_SOURCE_DISABLE; |
| 5115 | final |= DREF_CPU_SOURCE_OUTPUT_DISABLE; |
| 5116 | } |
| 5117 | |
| 5118 | if (final == val) |
| 5119 | return; |
| 5120 | |
| 5121 | /* Always enable nonspread source */ |
| 5122 | val &= ~DREF_NONSPREAD_SOURCE_MASK; |
| 5123 | |
| 5124 | if (has_ck505) |
| 5125 | val |= DREF_NONSPREAD_CK505_ENABLE; |
| 5126 | else |
| 5127 | val |= DREF_NONSPREAD_SOURCE_ENABLE; |
| 5128 | |
| 5129 | if (has_panel) { |
| 5130 | val &= ~DREF_SSC_SOURCE_MASK; |
| 5131 | val |= DREF_SSC_SOURCE_ENABLE; |
Jesse Barnes | 13d83a6 | 2011-08-03 12:59:20 -0700 | [diff] [blame] | 5132 | |
Keith Packard | 199e5d7 | 2011-09-22 12:01:57 -0700 | [diff] [blame] | 5133 | /* SSC must be turned on before enabling the CPU output */ |
Keith Packard | 99eb6a0 | 2011-09-26 14:29:12 -0700 | [diff] [blame] | 5134 | if (intel_panel_use_ssc(dev_priv) && can_ssc) { |
Keith Packard | 199e5d7 | 2011-09-22 12:01:57 -0700 | [diff] [blame] | 5135 | DRM_DEBUG_KMS("Using SSC on panel\n"); |
Chris Wilson | 74cfd7a | 2013-03-26 16:33:04 -0700 | [diff] [blame] | 5136 | val |= DREF_SSC1_ENABLE; |
Daniel Vetter | e77166b | 2012-03-30 22:14:05 +0200 | [diff] [blame] | 5137 | } else |
Chris Wilson | 74cfd7a | 2013-03-26 16:33:04 -0700 | [diff] [blame] | 5138 | val &= ~DREF_SSC1_ENABLE; |
Keith Packard | 199e5d7 | 2011-09-22 12:01:57 -0700 | [diff] [blame] | 5139 | |
| 5140 | /* Get SSC going before enabling the outputs */ |
Chris Wilson | 74cfd7a | 2013-03-26 16:33:04 -0700 | [diff] [blame] | 5141 | I915_WRITE(PCH_DREF_CONTROL, val); |
Keith Packard | 199e5d7 | 2011-09-22 12:01:57 -0700 | [diff] [blame] | 5142 | POSTING_READ(PCH_DREF_CONTROL); |
| 5143 | udelay(200); |
| 5144 | |
Chris Wilson | 74cfd7a | 2013-03-26 16:33:04 -0700 | [diff] [blame] | 5145 | val &= ~DREF_CPU_SOURCE_OUTPUT_MASK; |
Jesse Barnes | 13d83a6 | 2011-08-03 12:59:20 -0700 | [diff] [blame] | 5146 | |
| 5147 | /* Enable CPU source on CPU attached eDP */ |
Keith Packard | 199e5d7 | 2011-09-22 12:01:57 -0700 | [diff] [blame] | 5148 | if (has_cpu_edp) { |
Keith Packard | 99eb6a0 | 2011-09-26 14:29:12 -0700 | [diff] [blame] | 5149 | if (intel_panel_use_ssc(dev_priv) && can_ssc) { |
Keith Packard | 199e5d7 | 2011-09-22 12:01:57 -0700 | [diff] [blame] | 5150 | DRM_DEBUG_KMS("Using SSC on eDP\n"); |
Chris Wilson | 74cfd7a | 2013-03-26 16:33:04 -0700 | [diff] [blame] | 5151 | val |= DREF_CPU_SOURCE_OUTPUT_DOWNSPREAD; |
Keith Packard | 199e5d7 | 2011-09-22 12:01:57 -0700 | [diff] [blame] | 5152 | } |
Jesse Barnes | 13d83a6 | 2011-08-03 12:59:20 -0700 | [diff] [blame] | 5153 | else |
Chris Wilson | 74cfd7a | 2013-03-26 16:33:04 -0700 | [diff] [blame] | 5154 | val |= DREF_CPU_SOURCE_OUTPUT_NONSPREAD; |
Keith Packard | 199e5d7 | 2011-09-22 12:01:57 -0700 | [diff] [blame] | 5155 | } else |
Chris Wilson | 74cfd7a | 2013-03-26 16:33:04 -0700 | [diff] [blame] | 5156 | val |= DREF_CPU_SOURCE_OUTPUT_DISABLE; |
Keith Packard | 199e5d7 | 2011-09-22 12:01:57 -0700 | [diff] [blame] | 5157 | |
Chris Wilson | 74cfd7a | 2013-03-26 16:33:04 -0700 | [diff] [blame] | 5158 | I915_WRITE(PCH_DREF_CONTROL, val); |
Keith Packard | 199e5d7 | 2011-09-22 12:01:57 -0700 | [diff] [blame] | 5159 | POSTING_READ(PCH_DREF_CONTROL); |
| 5160 | udelay(200); |
| 5161 | } else { |
| 5162 | DRM_DEBUG_KMS("Disabling SSC entirely\n"); |
| 5163 | |
Chris Wilson | 74cfd7a | 2013-03-26 16:33:04 -0700 | [diff] [blame] | 5164 | val &= ~DREF_CPU_SOURCE_OUTPUT_MASK; |
Keith Packard | 199e5d7 | 2011-09-22 12:01:57 -0700 | [diff] [blame] | 5165 | |
| 5166 | /* Turn off CPU output */ |
Chris Wilson | 74cfd7a | 2013-03-26 16:33:04 -0700 | [diff] [blame] | 5167 | val |= DREF_CPU_SOURCE_OUTPUT_DISABLE; |
Keith Packard | 199e5d7 | 2011-09-22 12:01:57 -0700 | [diff] [blame] | 5168 | |
Chris Wilson | 74cfd7a | 2013-03-26 16:33:04 -0700 | [diff] [blame] | 5169 | I915_WRITE(PCH_DREF_CONTROL, val); |
Keith Packard | 199e5d7 | 2011-09-22 12:01:57 -0700 | [diff] [blame] | 5170 | POSTING_READ(PCH_DREF_CONTROL); |
| 5171 | udelay(200); |
| 5172 | |
| 5173 | /* Turn off the SSC source */ |
Chris Wilson | 74cfd7a | 2013-03-26 16:33:04 -0700 | [diff] [blame] | 5174 | val &= ~DREF_SSC_SOURCE_MASK; |
| 5175 | val |= DREF_SSC_SOURCE_DISABLE; |
Keith Packard | 199e5d7 | 2011-09-22 12:01:57 -0700 | [diff] [blame] | 5176 | |
| 5177 | /* Turn off SSC1 */ |
Chris Wilson | 74cfd7a | 2013-03-26 16:33:04 -0700 | [diff] [blame] | 5178 | val &= ~DREF_SSC1_ENABLE; |
Keith Packard | 199e5d7 | 2011-09-22 12:01:57 -0700 | [diff] [blame] | 5179 | |
Chris Wilson | 74cfd7a | 2013-03-26 16:33:04 -0700 | [diff] [blame] | 5180 | I915_WRITE(PCH_DREF_CONTROL, val); |
Jesse Barnes | 13d83a6 | 2011-08-03 12:59:20 -0700 | [diff] [blame] | 5181 | POSTING_READ(PCH_DREF_CONTROL); |
| 5182 | udelay(200); |
| 5183 | } |
Chris Wilson | 74cfd7a | 2013-03-26 16:33:04 -0700 | [diff] [blame] | 5184 | |
| 5185 | BUG_ON(val != final); |
Jesse Barnes | 13d83a6 | 2011-08-03 12:59:20 -0700 | [diff] [blame] | 5186 | } |
| 5187 | |
Paulo Zanoni | dde86e2 | 2012-12-01 12:04:25 -0200 | [diff] [blame] | 5188 | /* Sequence to enable CLKOUT_DP for FDI usage and configure PCH FDI I/O. */ |
| 5189 | static void lpt_init_pch_refclk(struct drm_device *dev) |
| 5190 | { |
| 5191 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 5192 | struct drm_mode_config *mode_config = &dev->mode_config; |
| 5193 | struct intel_encoder *encoder; |
| 5194 | bool has_vga = false; |
| 5195 | bool is_sdv = false; |
| 5196 | u32 tmp; |
| 5197 | |
| 5198 | list_for_each_entry(encoder, &mode_config->encoder_list, base.head) { |
| 5199 | switch (encoder->type) { |
| 5200 | case INTEL_OUTPUT_ANALOG: |
| 5201 | has_vga = true; |
| 5202 | break; |
| 5203 | } |
| 5204 | } |
| 5205 | |
| 5206 | if (!has_vga) |
| 5207 | return; |
| 5208 | |
Daniel Vetter | c00db24 | 2013-01-22 15:33:27 +0100 | [diff] [blame] | 5209 | mutex_lock(&dev_priv->dpio_lock); |
| 5210 | |
Paulo Zanoni | dde86e2 | 2012-12-01 12:04:25 -0200 | [diff] [blame] | 5211 | /* XXX: Rip out SDV support once Haswell ships for real. */ |
| 5212 | if (IS_HASWELL(dev) && (dev->pci_device & 0xFF00) == 0x0C00) |
| 5213 | is_sdv = true; |
| 5214 | |
| 5215 | tmp = intel_sbi_read(dev_priv, SBI_SSCCTL, SBI_ICLK); |
| 5216 | tmp &= ~SBI_SSCCTL_DISABLE; |
| 5217 | tmp |= SBI_SSCCTL_PATHALT; |
| 5218 | intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK); |
| 5219 | |
| 5220 | udelay(24); |
| 5221 | |
| 5222 | tmp = intel_sbi_read(dev_priv, SBI_SSCCTL, SBI_ICLK); |
| 5223 | tmp &= ~SBI_SSCCTL_PATHALT; |
| 5224 | intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK); |
| 5225 | |
| 5226 | if (!is_sdv) { |
| 5227 | tmp = I915_READ(SOUTH_CHICKEN2); |
| 5228 | tmp |= FDI_MPHY_IOSFSB_RESET_CTL; |
| 5229 | I915_WRITE(SOUTH_CHICKEN2, tmp); |
| 5230 | |
| 5231 | if (wait_for_atomic_us(I915_READ(SOUTH_CHICKEN2) & |
| 5232 | FDI_MPHY_IOSFSB_RESET_STATUS, 100)) |
| 5233 | DRM_ERROR("FDI mPHY reset assert timeout\n"); |
| 5234 | |
| 5235 | tmp = I915_READ(SOUTH_CHICKEN2); |
| 5236 | tmp &= ~FDI_MPHY_IOSFSB_RESET_CTL; |
| 5237 | I915_WRITE(SOUTH_CHICKEN2, tmp); |
| 5238 | |
| 5239 | if (wait_for_atomic_us((I915_READ(SOUTH_CHICKEN2) & |
| 5240 | FDI_MPHY_IOSFSB_RESET_STATUS) == 0, |
| 5241 | 100)) |
| 5242 | DRM_ERROR("FDI mPHY reset de-assert timeout\n"); |
| 5243 | } |
| 5244 | |
| 5245 | tmp = intel_sbi_read(dev_priv, 0x8008, SBI_MPHY); |
| 5246 | tmp &= ~(0xFF << 24); |
| 5247 | tmp |= (0x12 << 24); |
| 5248 | intel_sbi_write(dev_priv, 0x8008, tmp, SBI_MPHY); |
| 5249 | |
Paulo Zanoni | dde86e2 | 2012-12-01 12:04:25 -0200 | [diff] [blame] | 5250 | if (is_sdv) { |
| 5251 | tmp = intel_sbi_read(dev_priv, 0x800C, SBI_MPHY); |
| 5252 | tmp |= 0x7FFF; |
| 5253 | intel_sbi_write(dev_priv, 0x800C, tmp, SBI_MPHY); |
| 5254 | } |
| 5255 | |
| 5256 | tmp = intel_sbi_read(dev_priv, 0x2008, SBI_MPHY); |
| 5257 | tmp |= (1 << 11); |
| 5258 | intel_sbi_write(dev_priv, 0x2008, tmp, SBI_MPHY); |
| 5259 | |
| 5260 | tmp = intel_sbi_read(dev_priv, 0x2108, SBI_MPHY); |
| 5261 | tmp |= (1 << 11); |
| 5262 | intel_sbi_write(dev_priv, 0x2108, tmp, SBI_MPHY); |
| 5263 | |
| 5264 | if (is_sdv) { |
| 5265 | tmp = intel_sbi_read(dev_priv, 0x2038, SBI_MPHY); |
| 5266 | tmp |= (0x3F << 24) | (0xF << 20) | (0xF << 16); |
| 5267 | intel_sbi_write(dev_priv, 0x2038, tmp, SBI_MPHY); |
| 5268 | |
| 5269 | tmp = intel_sbi_read(dev_priv, 0x2138, SBI_MPHY); |
| 5270 | tmp |= (0x3F << 24) | (0xF << 20) | (0xF << 16); |
| 5271 | intel_sbi_write(dev_priv, 0x2138, tmp, SBI_MPHY); |
| 5272 | |
| 5273 | tmp = intel_sbi_read(dev_priv, 0x203C, SBI_MPHY); |
| 5274 | tmp |= (0x3F << 8); |
| 5275 | intel_sbi_write(dev_priv, 0x203C, tmp, SBI_MPHY); |
| 5276 | |
| 5277 | tmp = intel_sbi_read(dev_priv, 0x213C, SBI_MPHY); |
| 5278 | tmp |= (0x3F << 8); |
| 5279 | intel_sbi_write(dev_priv, 0x213C, tmp, SBI_MPHY); |
| 5280 | } |
| 5281 | |
| 5282 | tmp = intel_sbi_read(dev_priv, 0x206C, SBI_MPHY); |
| 5283 | tmp |= (1 << 24) | (1 << 21) | (1 << 18); |
| 5284 | intel_sbi_write(dev_priv, 0x206C, tmp, SBI_MPHY); |
| 5285 | |
| 5286 | tmp = intel_sbi_read(dev_priv, 0x216C, SBI_MPHY); |
| 5287 | tmp |= (1 << 24) | (1 << 21) | (1 << 18); |
| 5288 | intel_sbi_write(dev_priv, 0x216C, tmp, SBI_MPHY); |
| 5289 | |
| 5290 | if (!is_sdv) { |
| 5291 | tmp = intel_sbi_read(dev_priv, 0x2080, SBI_MPHY); |
| 5292 | tmp &= ~(7 << 13); |
| 5293 | tmp |= (5 << 13); |
| 5294 | intel_sbi_write(dev_priv, 0x2080, tmp, SBI_MPHY); |
| 5295 | |
| 5296 | tmp = intel_sbi_read(dev_priv, 0x2180, SBI_MPHY); |
| 5297 | tmp &= ~(7 << 13); |
| 5298 | tmp |= (5 << 13); |
| 5299 | intel_sbi_write(dev_priv, 0x2180, tmp, SBI_MPHY); |
| 5300 | } |
| 5301 | |
| 5302 | tmp = intel_sbi_read(dev_priv, 0x208C, SBI_MPHY); |
| 5303 | tmp &= ~0xFF; |
| 5304 | tmp |= 0x1C; |
| 5305 | intel_sbi_write(dev_priv, 0x208C, tmp, SBI_MPHY); |
| 5306 | |
| 5307 | tmp = intel_sbi_read(dev_priv, 0x218C, SBI_MPHY); |
| 5308 | tmp &= ~0xFF; |
| 5309 | tmp |= 0x1C; |
| 5310 | intel_sbi_write(dev_priv, 0x218C, tmp, SBI_MPHY); |
| 5311 | |
| 5312 | tmp = intel_sbi_read(dev_priv, 0x2098, SBI_MPHY); |
| 5313 | tmp &= ~(0xFF << 16); |
| 5314 | tmp |= (0x1C << 16); |
| 5315 | intel_sbi_write(dev_priv, 0x2098, tmp, SBI_MPHY); |
| 5316 | |
| 5317 | tmp = intel_sbi_read(dev_priv, 0x2198, SBI_MPHY); |
| 5318 | tmp &= ~(0xFF << 16); |
| 5319 | tmp |= (0x1C << 16); |
| 5320 | intel_sbi_write(dev_priv, 0x2198, tmp, SBI_MPHY); |
| 5321 | |
| 5322 | if (!is_sdv) { |
| 5323 | tmp = intel_sbi_read(dev_priv, 0x20C4, SBI_MPHY); |
| 5324 | tmp |= (1 << 27); |
| 5325 | intel_sbi_write(dev_priv, 0x20C4, tmp, SBI_MPHY); |
| 5326 | |
| 5327 | tmp = intel_sbi_read(dev_priv, 0x21C4, SBI_MPHY); |
| 5328 | tmp |= (1 << 27); |
| 5329 | intel_sbi_write(dev_priv, 0x21C4, tmp, SBI_MPHY); |
| 5330 | |
| 5331 | tmp = intel_sbi_read(dev_priv, 0x20EC, SBI_MPHY); |
| 5332 | tmp &= ~(0xF << 28); |
| 5333 | tmp |= (4 << 28); |
| 5334 | intel_sbi_write(dev_priv, 0x20EC, tmp, SBI_MPHY); |
| 5335 | |
| 5336 | tmp = intel_sbi_read(dev_priv, 0x21EC, SBI_MPHY); |
| 5337 | tmp &= ~(0xF << 28); |
| 5338 | tmp |= (4 << 28); |
| 5339 | intel_sbi_write(dev_priv, 0x21EC, tmp, SBI_MPHY); |
| 5340 | } |
| 5341 | |
| 5342 | /* ULT uses SBI_GEN0, but ULT doesn't have VGA, so we don't care. */ |
| 5343 | tmp = intel_sbi_read(dev_priv, SBI_DBUFF0, SBI_ICLK); |
| 5344 | tmp |= SBI_DBUFF0_ENABLE; |
| 5345 | intel_sbi_write(dev_priv, SBI_DBUFF0, tmp, SBI_ICLK); |
Daniel Vetter | c00db24 | 2013-01-22 15:33:27 +0100 | [diff] [blame] | 5346 | |
| 5347 | mutex_unlock(&dev_priv->dpio_lock); |
Paulo Zanoni | dde86e2 | 2012-12-01 12:04:25 -0200 | [diff] [blame] | 5348 | } |
| 5349 | |
| 5350 | /* |
| 5351 | * Initialize reference clocks when the driver loads |
| 5352 | */ |
| 5353 | void intel_init_pch_refclk(struct drm_device *dev) |
| 5354 | { |
| 5355 | if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev)) |
| 5356 | ironlake_init_pch_refclk(dev); |
| 5357 | else if (HAS_PCH_LPT(dev)) |
| 5358 | lpt_init_pch_refclk(dev); |
| 5359 | } |
| 5360 | |
Jesse Barnes | d9d444c | 2011-09-02 13:03:05 -0700 | [diff] [blame] | 5361 | static int ironlake_get_refclk(struct drm_crtc *crtc) |
| 5362 | { |
| 5363 | struct drm_device *dev = crtc->dev; |
| 5364 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 5365 | struct intel_encoder *encoder; |
Jesse Barnes | d9d444c | 2011-09-02 13:03:05 -0700 | [diff] [blame] | 5366 | int num_connectors = 0; |
| 5367 | bool is_lvds = false; |
| 5368 | |
Daniel Vetter | 6c2b7c1 | 2012-07-05 09:50:24 +0200 | [diff] [blame] | 5369 | for_each_encoder_on_crtc(dev, crtc, encoder) { |
Jesse Barnes | d9d444c | 2011-09-02 13:03:05 -0700 | [diff] [blame] | 5370 | switch (encoder->type) { |
| 5371 | case INTEL_OUTPUT_LVDS: |
| 5372 | is_lvds = true; |
| 5373 | break; |
Jesse Barnes | d9d444c | 2011-09-02 13:03:05 -0700 | [diff] [blame] | 5374 | } |
| 5375 | num_connectors++; |
| 5376 | } |
| 5377 | |
| 5378 | if (is_lvds && intel_panel_use_ssc(dev_priv) && num_connectors < 2) { |
| 5379 | DRM_DEBUG_KMS("using SSC reference clock of %d MHz\n", |
Rodrigo Vivi | 41aa344 | 2013-05-09 20:03:18 -0300 | [diff] [blame] | 5380 | dev_priv->vbt.lvds_ssc_freq); |
| 5381 | return dev_priv->vbt.lvds_ssc_freq * 1000; |
Jesse Barnes | d9d444c | 2011-09-02 13:03:05 -0700 | [diff] [blame] | 5382 | } |
| 5383 | |
| 5384 | return 120000; |
| 5385 | } |
| 5386 | |
Daniel Vetter | 6ff9360 | 2013-04-19 11:24:36 +0200 | [diff] [blame] | 5387 | static void ironlake_set_pipeconf(struct drm_crtc *crtc) |
Paulo Zanoni | c820356 | 2012-09-12 10:06:29 -0300 | [diff] [blame] | 5388 | { |
| 5389 | struct drm_i915_private *dev_priv = crtc->dev->dev_private; |
| 5390 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 5391 | int pipe = intel_crtc->pipe; |
| 5392 | uint32_t val; |
| 5393 | |
| 5394 | val = I915_READ(PIPECONF(pipe)); |
| 5395 | |
Daniel Vetter | dfd07d7 | 2012-12-17 11:21:38 +0100 | [diff] [blame] | 5396 | val &= ~PIPECONF_BPC_MASK; |
Daniel Vetter | 965e0c4 | 2013-03-27 00:44:57 +0100 | [diff] [blame] | 5397 | switch (intel_crtc->config.pipe_bpp) { |
Paulo Zanoni | c820356 | 2012-09-12 10:06:29 -0300 | [diff] [blame] | 5398 | case 18: |
Daniel Vetter | dfd07d7 | 2012-12-17 11:21:38 +0100 | [diff] [blame] | 5399 | val |= PIPECONF_6BPC; |
Paulo Zanoni | c820356 | 2012-09-12 10:06:29 -0300 | [diff] [blame] | 5400 | break; |
| 5401 | case 24: |
Daniel Vetter | dfd07d7 | 2012-12-17 11:21:38 +0100 | [diff] [blame] | 5402 | val |= PIPECONF_8BPC; |
Paulo Zanoni | c820356 | 2012-09-12 10:06:29 -0300 | [diff] [blame] | 5403 | break; |
| 5404 | case 30: |
Daniel Vetter | dfd07d7 | 2012-12-17 11:21:38 +0100 | [diff] [blame] | 5405 | val |= PIPECONF_10BPC; |
Paulo Zanoni | c820356 | 2012-09-12 10:06:29 -0300 | [diff] [blame] | 5406 | break; |
| 5407 | case 36: |
Daniel Vetter | dfd07d7 | 2012-12-17 11:21:38 +0100 | [diff] [blame] | 5408 | val |= PIPECONF_12BPC; |
Paulo Zanoni | c820356 | 2012-09-12 10:06:29 -0300 | [diff] [blame] | 5409 | break; |
| 5410 | default: |
Paulo Zanoni | cc769b6 | 2012-09-20 18:36:03 -0300 | [diff] [blame] | 5411 | /* Case prevented by intel_choose_pipe_bpp_dither. */ |
| 5412 | BUG(); |
Paulo Zanoni | c820356 | 2012-09-12 10:06:29 -0300 | [diff] [blame] | 5413 | } |
| 5414 | |
| 5415 | val &= ~(PIPECONF_DITHER_EN | PIPECONF_DITHER_TYPE_MASK); |
Daniel Vetter | d8b3224 | 2013-04-25 17:54:44 +0200 | [diff] [blame] | 5416 | if (intel_crtc->config.dither) |
Paulo Zanoni | c820356 | 2012-09-12 10:06:29 -0300 | [diff] [blame] | 5417 | val |= (PIPECONF_DITHER_EN | PIPECONF_DITHER_TYPE_SP); |
| 5418 | |
| 5419 | val &= ~PIPECONF_INTERLACE_MASK; |
Daniel Vetter | 6ff9360 | 2013-04-19 11:24:36 +0200 | [diff] [blame] | 5420 | if (intel_crtc->config.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE) |
Paulo Zanoni | c820356 | 2012-09-12 10:06:29 -0300 | [diff] [blame] | 5421 | val |= PIPECONF_INTERLACED_ILK; |
| 5422 | else |
| 5423 | val |= PIPECONF_PROGRESSIVE; |
| 5424 | |
Daniel Vetter | 50f3b01 | 2013-03-27 00:44:56 +0100 | [diff] [blame] | 5425 | if (intel_crtc->config.limited_color_range) |
Ville Syrjälä | 3685a8f | 2013-01-17 16:31:28 +0200 | [diff] [blame] | 5426 | val |= PIPECONF_COLOR_RANGE_SELECT; |
| 5427 | else |
| 5428 | val &= ~PIPECONF_COLOR_RANGE_SELECT; |
| 5429 | |
Paulo Zanoni | c820356 | 2012-09-12 10:06:29 -0300 | [diff] [blame] | 5430 | I915_WRITE(PIPECONF(pipe), val); |
| 5431 | POSTING_READ(PIPECONF(pipe)); |
| 5432 | } |
| 5433 | |
Ville Syrjälä | 86d3efc | 2013-01-18 19:11:38 +0200 | [diff] [blame] | 5434 | /* |
| 5435 | * Set up the pipe CSC unit. |
| 5436 | * |
| 5437 | * Currently only full range RGB to limited range RGB conversion |
| 5438 | * is supported, but eventually this should handle various |
| 5439 | * RGB<->YCbCr scenarios as well. |
| 5440 | */ |
Daniel Vetter | 50f3b01 | 2013-03-27 00:44:56 +0100 | [diff] [blame] | 5441 | static void intel_set_pipe_csc(struct drm_crtc *crtc) |
Ville Syrjälä | 86d3efc | 2013-01-18 19:11:38 +0200 | [diff] [blame] | 5442 | { |
| 5443 | struct drm_device *dev = crtc->dev; |
| 5444 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 5445 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 5446 | int pipe = intel_crtc->pipe; |
| 5447 | uint16_t coeff = 0x7800; /* 1.0 */ |
| 5448 | |
| 5449 | /* |
| 5450 | * TODO: Check what kind of values actually come out of the pipe |
| 5451 | * with these coeff/postoff values and adjust to get the best |
| 5452 | * accuracy. Perhaps we even need to take the bpc value into |
| 5453 | * consideration. |
| 5454 | */ |
| 5455 | |
Daniel Vetter | 50f3b01 | 2013-03-27 00:44:56 +0100 | [diff] [blame] | 5456 | if (intel_crtc->config.limited_color_range) |
Ville Syrjälä | 86d3efc | 2013-01-18 19:11:38 +0200 | [diff] [blame] | 5457 | coeff = ((235 - 16) * (1 << 12) / 255) & 0xff8; /* 0.xxx... */ |
| 5458 | |
| 5459 | /* |
| 5460 | * GY/GU and RY/RU should be the other way around according |
| 5461 | * to BSpec, but reality doesn't agree. Just set them up in |
| 5462 | * a way that results in the correct picture. |
| 5463 | */ |
| 5464 | I915_WRITE(PIPE_CSC_COEFF_RY_GY(pipe), coeff << 16); |
| 5465 | I915_WRITE(PIPE_CSC_COEFF_BY(pipe), 0); |
| 5466 | |
| 5467 | I915_WRITE(PIPE_CSC_COEFF_RU_GU(pipe), coeff); |
| 5468 | I915_WRITE(PIPE_CSC_COEFF_BU(pipe), 0); |
| 5469 | |
| 5470 | I915_WRITE(PIPE_CSC_COEFF_RV_GV(pipe), 0); |
| 5471 | I915_WRITE(PIPE_CSC_COEFF_BV(pipe), coeff << 16); |
| 5472 | |
| 5473 | I915_WRITE(PIPE_CSC_PREOFF_HI(pipe), 0); |
| 5474 | I915_WRITE(PIPE_CSC_PREOFF_ME(pipe), 0); |
| 5475 | I915_WRITE(PIPE_CSC_PREOFF_LO(pipe), 0); |
| 5476 | |
| 5477 | if (INTEL_INFO(dev)->gen > 6) { |
| 5478 | uint16_t postoff = 0; |
| 5479 | |
Daniel Vetter | 50f3b01 | 2013-03-27 00:44:56 +0100 | [diff] [blame] | 5480 | if (intel_crtc->config.limited_color_range) |
Ville Syrjälä | 86d3efc | 2013-01-18 19:11:38 +0200 | [diff] [blame] | 5481 | postoff = (16 * (1 << 13) / 255) & 0x1fff; |
| 5482 | |
| 5483 | I915_WRITE(PIPE_CSC_POSTOFF_HI(pipe), postoff); |
| 5484 | I915_WRITE(PIPE_CSC_POSTOFF_ME(pipe), postoff); |
| 5485 | I915_WRITE(PIPE_CSC_POSTOFF_LO(pipe), postoff); |
| 5486 | |
| 5487 | I915_WRITE(PIPE_CSC_MODE(pipe), 0); |
| 5488 | } else { |
| 5489 | uint32_t mode = CSC_MODE_YUV_TO_RGB; |
| 5490 | |
Daniel Vetter | 50f3b01 | 2013-03-27 00:44:56 +0100 | [diff] [blame] | 5491 | if (intel_crtc->config.limited_color_range) |
Ville Syrjälä | 86d3efc | 2013-01-18 19:11:38 +0200 | [diff] [blame] | 5492 | mode |= CSC_BLACK_SCREEN_OFFSET; |
| 5493 | |
| 5494 | I915_WRITE(PIPE_CSC_MODE(pipe), mode); |
| 5495 | } |
| 5496 | } |
| 5497 | |
Daniel Vetter | 6ff9360 | 2013-04-19 11:24:36 +0200 | [diff] [blame] | 5498 | static void haswell_set_pipeconf(struct drm_crtc *crtc) |
Paulo Zanoni | ee2b0b3 | 2012-10-05 12:05:57 -0300 | [diff] [blame] | 5499 | { |
| 5500 | struct drm_i915_private *dev_priv = crtc->dev->dev_private; |
| 5501 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
Daniel Vetter | 3b117c8 | 2013-04-17 20:15:07 +0200 | [diff] [blame] | 5502 | enum transcoder cpu_transcoder = intel_crtc->config.cpu_transcoder; |
Paulo Zanoni | ee2b0b3 | 2012-10-05 12:05:57 -0300 | [diff] [blame] | 5503 | uint32_t val; |
| 5504 | |
Paulo Zanoni | 702e7a5 | 2012-10-23 18:29:59 -0200 | [diff] [blame] | 5505 | val = I915_READ(PIPECONF(cpu_transcoder)); |
Paulo Zanoni | ee2b0b3 | 2012-10-05 12:05:57 -0300 | [diff] [blame] | 5506 | |
| 5507 | val &= ~(PIPECONF_DITHER_EN | PIPECONF_DITHER_TYPE_MASK); |
Daniel Vetter | d8b3224 | 2013-04-25 17:54:44 +0200 | [diff] [blame] | 5508 | if (intel_crtc->config.dither) |
Paulo Zanoni | ee2b0b3 | 2012-10-05 12:05:57 -0300 | [diff] [blame] | 5509 | val |= (PIPECONF_DITHER_EN | PIPECONF_DITHER_TYPE_SP); |
| 5510 | |
| 5511 | val &= ~PIPECONF_INTERLACE_MASK_HSW; |
Daniel Vetter | 6ff9360 | 2013-04-19 11:24:36 +0200 | [diff] [blame] | 5512 | if (intel_crtc->config.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE) |
Paulo Zanoni | ee2b0b3 | 2012-10-05 12:05:57 -0300 | [diff] [blame] | 5513 | val |= PIPECONF_INTERLACED_ILK; |
| 5514 | else |
| 5515 | val |= PIPECONF_PROGRESSIVE; |
| 5516 | |
Paulo Zanoni | 702e7a5 | 2012-10-23 18:29:59 -0200 | [diff] [blame] | 5517 | I915_WRITE(PIPECONF(cpu_transcoder), val); |
| 5518 | POSTING_READ(PIPECONF(cpu_transcoder)); |
Paulo Zanoni | ee2b0b3 | 2012-10-05 12:05:57 -0300 | [diff] [blame] | 5519 | } |
| 5520 | |
Paulo Zanoni | 6591c6e | 2012-09-12 10:06:34 -0300 | [diff] [blame] | 5521 | static bool ironlake_compute_clocks(struct drm_crtc *crtc, |
| 5522 | struct drm_display_mode *adjusted_mode, |
| 5523 | intel_clock_t *clock, |
| 5524 | bool *has_reduced_clock, |
| 5525 | intel_clock_t *reduced_clock) |
| 5526 | { |
| 5527 | struct drm_device *dev = crtc->dev; |
| 5528 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 5529 | struct intel_encoder *intel_encoder; |
| 5530 | int refclk; |
| 5531 | const intel_limit_t *limit; |
Daniel Vetter | a16af72 | 2013-04-30 14:01:44 +0200 | [diff] [blame] | 5532 | bool ret, is_lvds = false; |
Paulo Zanoni | 6591c6e | 2012-09-12 10:06:34 -0300 | [diff] [blame] | 5533 | |
| 5534 | for_each_encoder_on_crtc(dev, crtc, intel_encoder) { |
| 5535 | switch (intel_encoder->type) { |
| 5536 | case INTEL_OUTPUT_LVDS: |
| 5537 | is_lvds = true; |
| 5538 | break; |
Paulo Zanoni | 6591c6e | 2012-09-12 10:06:34 -0300 | [diff] [blame] | 5539 | } |
| 5540 | } |
| 5541 | |
| 5542 | refclk = ironlake_get_refclk(crtc); |
| 5543 | |
| 5544 | /* |
| 5545 | * Returns a set of divisors for the desired target clock with the given |
| 5546 | * refclk, or FALSE. The returned values represent the clock equation: |
| 5547 | * reflck * (5 * (m1 + 2) + (m2 + 2)) / (n + 2) / p1 / p2. |
| 5548 | */ |
| 5549 | limit = intel_limit(crtc, refclk); |
| 5550 | ret = limit->find_pll(limit, crtc, adjusted_mode->clock, refclk, NULL, |
| 5551 | clock); |
| 5552 | if (!ret) |
| 5553 | return false; |
| 5554 | |
| 5555 | if (is_lvds && dev_priv->lvds_downclock_avail) { |
| 5556 | /* |
| 5557 | * Ensure we match the reduced clock's P to the target clock. |
| 5558 | * If the clocks don't match, we can't switch the display clock |
| 5559 | * by using the FP0/FP1. In such case we will disable the LVDS |
| 5560 | * downclock feature. |
| 5561 | */ |
| 5562 | *has_reduced_clock = limit->find_pll(limit, crtc, |
| 5563 | dev_priv->lvds_downclock, |
| 5564 | refclk, |
| 5565 | clock, |
| 5566 | reduced_clock); |
| 5567 | } |
| 5568 | |
Paulo Zanoni | 6591c6e | 2012-09-12 10:06:34 -0300 | [diff] [blame] | 5569 | return true; |
| 5570 | } |
| 5571 | |
Daniel Vetter | 01a415f | 2012-10-27 15:58:40 +0200 | [diff] [blame] | 5572 | static void cpt_enable_fdi_bc_bifurcation(struct drm_device *dev) |
| 5573 | { |
| 5574 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 5575 | uint32_t temp; |
| 5576 | |
| 5577 | temp = I915_READ(SOUTH_CHICKEN1); |
| 5578 | if (temp & FDI_BC_BIFURCATION_SELECT) |
| 5579 | return; |
| 5580 | |
| 5581 | WARN_ON(I915_READ(FDI_RX_CTL(PIPE_B)) & FDI_RX_ENABLE); |
| 5582 | WARN_ON(I915_READ(FDI_RX_CTL(PIPE_C)) & FDI_RX_ENABLE); |
| 5583 | |
| 5584 | temp |= FDI_BC_BIFURCATION_SELECT; |
| 5585 | DRM_DEBUG_KMS("enabling fdi C rx\n"); |
| 5586 | I915_WRITE(SOUTH_CHICKEN1, temp); |
| 5587 | POSTING_READ(SOUTH_CHICKEN1); |
| 5588 | } |
| 5589 | |
Daniel Vetter | ebfd86f | 2013-04-19 11:24:44 +0200 | [diff] [blame] | 5590 | static void ivybridge_update_fdi_bc_bifurcation(struct intel_crtc *intel_crtc) |
| 5591 | { |
| 5592 | struct drm_device *dev = intel_crtc->base.dev; |
| 5593 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 5594 | |
| 5595 | switch (intel_crtc->pipe) { |
| 5596 | case PIPE_A: |
| 5597 | break; |
| 5598 | case PIPE_B: |
| 5599 | if (intel_crtc->config.fdi_lanes > 2) |
| 5600 | WARN_ON(I915_READ(SOUTH_CHICKEN1) & FDI_BC_BIFURCATION_SELECT); |
| 5601 | else |
| 5602 | cpt_enable_fdi_bc_bifurcation(dev); |
| 5603 | |
| 5604 | break; |
| 5605 | case PIPE_C: |
Daniel Vetter | 01a415f | 2012-10-27 15:58:40 +0200 | [diff] [blame] | 5606 | cpt_enable_fdi_bc_bifurcation(dev); |
| 5607 | |
Daniel Vetter | ebfd86f | 2013-04-19 11:24:44 +0200 | [diff] [blame] | 5608 | break; |
Daniel Vetter | 01a415f | 2012-10-27 15:58:40 +0200 | [diff] [blame] | 5609 | default: |
| 5610 | BUG(); |
| 5611 | } |
| 5612 | } |
| 5613 | |
Paulo Zanoni | d4b1931 | 2012-11-29 11:29:32 -0200 | [diff] [blame] | 5614 | int ironlake_get_lanes_required(int target_clock, int link_bw, int bpp) |
| 5615 | { |
| 5616 | /* |
| 5617 | * Account for spread spectrum to avoid |
| 5618 | * oversubscribing the link. Max center spread |
| 5619 | * is 2.5%; use 5% for safety's sake. |
| 5620 | */ |
| 5621 | u32 bps = target_clock * bpp * 21 / 20; |
| 5622 | return bps / (link_bw * 8) + 1; |
| 5623 | } |
| 5624 | |
Daniel Vetter | 7429e9d | 2013-04-20 17:19:46 +0200 | [diff] [blame] | 5625 | static bool ironlake_needs_fb_cb_tune(struct dpll *dpll, int factor) |
| 5626 | { |
| 5627 | return i9xx_dpll_compute_m(dpll) < factor * dpll->n; |
| 5628 | } |
| 5629 | |
Paulo Zanoni | de13a2e | 2012-09-20 18:36:05 -0300 | [diff] [blame] | 5630 | static uint32_t ironlake_compute_dpll(struct intel_crtc *intel_crtc, |
Daniel Vetter | 7429e9d | 2013-04-20 17:19:46 +0200 | [diff] [blame] | 5631 | u32 *fp, |
Daniel Vetter | 9a7c789 | 2013-04-04 22:20:34 +0200 | [diff] [blame] | 5632 | intel_clock_t *reduced_clock, u32 *fp2) |
Paulo Zanoni | de13a2e | 2012-09-20 18:36:05 -0300 | [diff] [blame] | 5633 | { |
| 5634 | struct drm_crtc *crtc = &intel_crtc->base; |
| 5635 | struct drm_device *dev = crtc->dev; |
| 5636 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 5637 | struct intel_encoder *intel_encoder; |
| 5638 | uint32_t dpll; |
Daniel Vetter | 6cc5f34 | 2013-03-27 00:44:53 +0100 | [diff] [blame] | 5639 | int factor, num_connectors = 0; |
Daniel Vetter | 09ede54 | 2013-04-30 14:01:45 +0200 | [diff] [blame] | 5640 | bool is_lvds = false, is_sdvo = false; |
Paulo Zanoni | de13a2e | 2012-09-20 18:36:05 -0300 | [diff] [blame] | 5641 | |
| 5642 | for_each_encoder_on_crtc(dev, crtc, intel_encoder) { |
| 5643 | switch (intel_encoder->type) { |
| 5644 | case INTEL_OUTPUT_LVDS: |
| 5645 | is_lvds = true; |
| 5646 | break; |
| 5647 | case INTEL_OUTPUT_SDVO: |
| 5648 | case INTEL_OUTPUT_HDMI: |
| 5649 | is_sdvo = true; |
Paulo Zanoni | de13a2e | 2012-09-20 18:36:05 -0300 | [diff] [blame] | 5650 | break; |
Paulo Zanoni | de13a2e | 2012-09-20 18:36:05 -0300 | [diff] [blame] | 5651 | } |
| 5652 | |
| 5653 | num_connectors++; |
| 5654 | } |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5655 | |
Chris Wilson | c185812 | 2010-12-03 21:35:48 +0000 | [diff] [blame] | 5656 | /* Enable autotuning of the PLL clock (if permissible) */ |
Eric Anholt | 8febb29 | 2011-03-30 13:01:07 -0700 | [diff] [blame] | 5657 | factor = 21; |
| 5658 | if (is_lvds) { |
| 5659 | if ((intel_panel_use_ssc(dev_priv) && |
Rodrigo Vivi | 41aa344 | 2013-05-09 20:03:18 -0300 | [diff] [blame] | 5660 | dev_priv->vbt.lvds_ssc_freq == 100) || |
Daniel Vetter | f0b4405 | 2013-04-04 22:20:33 +0200 | [diff] [blame] | 5661 | (HAS_PCH_IBX(dev) && intel_is_dual_link_lvds(dev))) |
Eric Anholt | 8febb29 | 2011-03-30 13:01:07 -0700 | [diff] [blame] | 5662 | factor = 25; |
Daniel Vetter | 09ede54 | 2013-04-30 14:01:45 +0200 | [diff] [blame] | 5663 | } else if (intel_crtc->config.sdvo_tv_clock) |
Eric Anholt | 8febb29 | 2011-03-30 13:01:07 -0700 | [diff] [blame] | 5664 | factor = 20; |
Chris Wilson | c185812 | 2010-12-03 21:35:48 +0000 | [diff] [blame] | 5665 | |
Daniel Vetter | 7429e9d | 2013-04-20 17:19:46 +0200 | [diff] [blame] | 5666 | if (ironlake_needs_fb_cb_tune(&intel_crtc->config.dpll, factor)) |
Daniel Vetter | 7d0ac5b | 2013-04-04 22:20:32 +0200 | [diff] [blame] | 5667 | *fp |= FP_CB_TUNE; |
Chris Wilson | c185812 | 2010-12-03 21:35:48 +0000 | [diff] [blame] | 5668 | |
Daniel Vetter | 9a7c789 | 2013-04-04 22:20:34 +0200 | [diff] [blame] | 5669 | if (fp2 && (reduced_clock->m < factor * reduced_clock->n)) |
| 5670 | *fp2 |= FP_CB_TUNE; |
| 5671 | |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 5672 | dpll = 0; |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 5673 | |
Eric Anholt | a07d678 | 2011-03-30 13:01:08 -0700 | [diff] [blame] | 5674 | if (is_lvds) |
| 5675 | dpll |= DPLLB_MODE_LVDS; |
| 5676 | else |
| 5677 | dpll |= DPLLB_MODE_DAC_SERIAL; |
Daniel Vetter | 198a037f | 2013-04-19 11:14:37 +0200 | [diff] [blame] | 5678 | |
| 5679 | if (intel_crtc->config.pixel_multiplier > 1) { |
| 5680 | dpll |= (intel_crtc->config.pixel_multiplier - 1) |
| 5681 | << PLL_REF_SDVO_HDMI_MULTIPLIER_SHIFT; |
Eric Anholt | a07d678 | 2011-03-30 13:01:08 -0700 | [diff] [blame] | 5682 | } |
Daniel Vetter | 198a037f | 2013-04-19 11:14:37 +0200 | [diff] [blame] | 5683 | |
| 5684 | if (is_sdvo) |
| 5685 | dpll |= DPLL_DVO_HIGH_SPEED; |
Daniel Vetter | 9566e9a | 2013-04-19 11:14:36 +0200 | [diff] [blame] | 5686 | if (intel_crtc->config.has_dp_encoder) |
Eric Anholt | a07d678 | 2011-03-30 13:01:08 -0700 | [diff] [blame] | 5687 | dpll |= DPLL_DVO_HIGH_SPEED; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5688 | |
Eric Anholt | a07d678 | 2011-03-30 13:01:08 -0700 | [diff] [blame] | 5689 | /* compute bitmask from p1 value */ |
Daniel Vetter | 7429e9d | 2013-04-20 17:19:46 +0200 | [diff] [blame] | 5690 | dpll |= (1 << (intel_crtc->config.dpll.p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT; |
Eric Anholt | a07d678 | 2011-03-30 13:01:08 -0700 | [diff] [blame] | 5691 | /* also FPA1 */ |
Daniel Vetter | 7429e9d | 2013-04-20 17:19:46 +0200 | [diff] [blame] | 5692 | dpll |= (1 << (intel_crtc->config.dpll.p1 - 1)) << DPLL_FPA1_P1_POST_DIV_SHIFT; |
Eric Anholt | a07d678 | 2011-03-30 13:01:08 -0700 | [diff] [blame] | 5693 | |
Daniel Vetter | 7429e9d | 2013-04-20 17:19:46 +0200 | [diff] [blame] | 5694 | switch (intel_crtc->config.dpll.p2) { |
Eric Anholt | a07d678 | 2011-03-30 13:01:08 -0700 | [diff] [blame] | 5695 | case 5: |
| 5696 | dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_5; |
| 5697 | break; |
| 5698 | case 7: |
| 5699 | dpll |= DPLLB_LVDS_P2_CLOCK_DIV_7; |
| 5700 | break; |
| 5701 | case 10: |
| 5702 | dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_10; |
| 5703 | break; |
| 5704 | case 14: |
| 5705 | dpll |= DPLLB_LVDS_P2_CLOCK_DIV_14; |
| 5706 | break; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5707 | } |
| 5708 | |
Daniel Vetter | b4c09f3 | 2013-04-30 14:01:42 +0200 | [diff] [blame] | 5709 | if (is_lvds && intel_panel_use_ssc(dev_priv) && num_connectors < 2) |
Kristian Høgsberg | 43565a0 | 2009-02-13 20:56:52 -0500 | [diff] [blame] | 5710 | dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5711 | else |
| 5712 | dpll |= PLL_REF_INPUT_DREFCLK; |
| 5713 | |
Paulo Zanoni | de13a2e | 2012-09-20 18:36:05 -0300 | [diff] [blame] | 5714 | return dpll; |
| 5715 | } |
| 5716 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5717 | static int ironlake_crtc_mode_set(struct drm_crtc *crtc, |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5718 | int x, int y, |
Daniel Vetter | 94352cf | 2012-07-05 22:51:56 +0200 | [diff] [blame] | 5719 | struct drm_framebuffer *fb) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5720 | { |
| 5721 | struct drm_device *dev = crtc->dev; |
| 5722 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 5723 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
Daniel Vetter | b8cecdf | 2013-03-27 00:44:50 +0100 | [diff] [blame] | 5724 | struct drm_display_mode *adjusted_mode = |
| 5725 | &intel_crtc->config.adjusted_mode; |
| 5726 | struct drm_display_mode *mode = &intel_crtc->config.requested_mode; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5727 | int pipe = intel_crtc->pipe; |
| 5728 | int plane = intel_crtc->plane; |
Paulo Zanoni | 6591c6e | 2012-09-12 10:06:34 -0300 | [diff] [blame] | 5729 | int num_connectors = 0; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5730 | intel_clock_t clock, reduced_clock; |
Daniel Vetter | cbbab5b | 2013-04-19 11:14:31 +0200 | [diff] [blame] | 5731 | u32 dpll = 0, fp = 0, fp2 = 0; |
Paulo Zanoni | e2f12b0 | 2012-09-20 18:36:06 -0300 | [diff] [blame] | 5732 | bool ok, has_reduced_clock = false; |
Daniel Vetter | 8b47047 | 2013-03-28 10:41:59 +0100 | [diff] [blame] | 5733 | bool is_lvds = false; |
Paulo Zanoni | f48d8f2 | 2012-09-20 18:36:04 -0300 | [diff] [blame] | 5734 | struct intel_encoder *encoder; |
Paulo Zanoni | de13a2e | 2012-09-20 18:36:05 -0300 | [diff] [blame] | 5735 | int ret; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5736 | |
| 5737 | for_each_encoder_on_crtc(dev, crtc, encoder) { |
| 5738 | switch (encoder->type) { |
| 5739 | case INTEL_OUTPUT_LVDS: |
| 5740 | is_lvds = true; |
| 5741 | break; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5742 | } |
| 5743 | |
| 5744 | num_connectors++; |
| 5745 | } |
| 5746 | |
Paulo Zanoni | 5dc5298 | 2012-10-05 12:05:56 -0300 | [diff] [blame] | 5747 | WARN(!(HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev)), |
| 5748 | "Unexpected PCH type %d\n", INTEL_PCH_TYPE(dev)); |
| 5749 | |
Paulo Zanoni | 6591c6e | 2012-09-12 10:06:34 -0300 | [diff] [blame] | 5750 | ok = ironlake_compute_clocks(crtc, adjusted_mode, &clock, |
| 5751 | &has_reduced_clock, &reduced_clock); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5752 | if (!ok) { |
| 5753 | DRM_ERROR("Couldn't find PLL settings for mode!\n"); |
| 5754 | return -EINVAL; |
| 5755 | } |
Daniel Vetter | f47709a | 2013-03-28 10:42:02 +0100 | [diff] [blame] | 5756 | /* Compat-code for transition, will disappear. */ |
| 5757 | if (!intel_crtc->config.clock_set) { |
| 5758 | intel_crtc->config.dpll.n = clock.n; |
| 5759 | intel_crtc->config.dpll.m1 = clock.m1; |
| 5760 | intel_crtc->config.dpll.m2 = clock.m2; |
| 5761 | intel_crtc->config.dpll.p1 = clock.p1; |
| 5762 | intel_crtc->config.dpll.p2 = clock.p2; |
| 5763 | } |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5764 | |
| 5765 | /* Ensure that the cursor is valid for the new mode before changing... */ |
| 5766 | intel_crtc_update_cursor(crtc, true); |
| 5767 | |
Paulo Zanoni | 5dc5298 | 2012-10-05 12:05:56 -0300 | [diff] [blame] | 5768 | /* CPU eDP is the only output that doesn't need a PCH PLL of its own. */ |
Daniel Vetter | 8b47047 | 2013-03-28 10:41:59 +0100 | [diff] [blame] | 5769 | if (intel_crtc->config.has_pch_encoder) { |
Jesse Barnes | ee7b9f9 | 2012-04-20 17:11:53 +0100 | [diff] [blame] | 5770 | struct intel_pch_pll *pll; |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 5771 | |
Daniel Vetter | 7429e9d | 2013-04-20 17:19:46 +0200 | [diff] [blame] | 5772 | fp = i9xx_dpll_compute_fp(&intel_crtc->config.dpll); |
Daniel Vetter | cbbab5b | 2013-04-19 11:14:31 +0200 | [diff] [blame] | 5773 | if (has_reduced_clock) |
Daniel Vetter | 7429e9d | 2013-04-20 17:19:46 +0200 | [diff] [blame] | 5774 | fp2 = i9xx_dpll_compute_fp(&reduced_clock); |
Daniel Vetter | cbbab5b | 2013-04-19 11:14:31 +0200 | [diff] [blame] | 5775 | |
Daniel Vetter | 7429e9d | 2013-04-20 17:19:46 +0200 | [diff] [blame] | 5776 | dpll = ironlake_compute_dpll(intel_crtc, |
Daniel Vetter | cbbab5b | 2013-04-19 11:14:31 +0200 | [diff] [blame] | 5777 | &fp, &reduced_clock, |
| 5778 | has_reduced_clock ? &fp2 : NULL); |
| 5779 | |
Jesse Barnes | ee7b9f9 | 2012-04-20 17:11:53 +0100 | [diff] [blame] | 5780 | pll = intel_get_pch_pll(intel_crtc, dpll, fp); |
| 5781 | if (pll == NULL) { |
Ville Syrjälä | 84f44ce | 2013-04-17 17:48:49 +0300 | [diff] [blame] | 5782 | DRM_DEBUG_DRIVER("failed to find PLL for pipe %c\n", |
| 5783 | pipe_name(pipe)); |
Jesse Barnes | 4b645f1 | 2011-10-12 09:51:31 -0700 | [diff] [blame] | 5784 | return -EINVAL; |
| 5785 | } |
Jesse Barnes | ee7b9f9 | 2012-04-20 17:11:53 +0100 | [diff] [blame] | 5786 | } else |
| 5787 | intel_put_pch_pll(intel_crtc); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5788 | |
Daniel Vetter | 03afc4a | 2013-04-02 23:42:31 +0200 | [diff] [blame] | 5789 | if (intel_crtc->config.has_dp_encoder) |
| 5790 | intel_dp_set_m_n(intel_crtc); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5791 | |
Daniel Vetter | dafd226 | 2012-11-26 17:22:07 +0100 | [diff] [blame] | 5792 | for_each_encoder_on_crtc(dev, crtc, encoder) |
| 5793 | if (encoder->pre_pll_enable) |
| 5794 | encoder->pre_pll_enable(encoder); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5795 | |
Jesse Barnes | ee7b9f9 | 2012-04-20 17:11:53 +0100 | [diff] [blame] | 5796 | if (intel_crtc->pch_pll) { |
| 5797 | I915_WRITE(intel_crtc->pch_pll->pll_reg, dpll); |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 5798 | |
Zhenyu Wang | 32f9d65 | 2009-07-24 01:00:32 +0800 | [diff] [blame] | 5799 | /* Wait for the clocks to stabilize. */ |
Jesse Barnes | ee7b9f9 | 2012-04-20 17:11:53 +0100 | [diff] [blame] | 5800 | POSTING_READ(intel_crtc->pch_pll->pll_reg); |
Zhenyu Wang | 32f9d65 | 2009-07-24 01:00:32 +0800 | [diff] [blame] | 5801 | udelay(150); |
| 5802 | |
Eric Anholt | 8febb29 | 2011-03-30 13:01:07 -0700 | [diff] [blame] | 5803 | /* The pixel multiplier can only be updated once the |
| 5804 | * DPLL is enabled and the clocks are stable. |
| 5805 | * |
| 5806 | * So write it again. |
| 5807 | */ |
Jesse Barnes | ee7b9f9 | 2012-04-20 17:11:53 +0100 | [diff] [blame] | 5808 | I915_WRITE(intel_crtc->pch_pll->pll_reg, dpll); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5809 | } |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5810 | |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 5811 | intel_crtc->lowfreq_avail = false; |
Jesse Barnes | ee7b9f9 | 2012-04-20 17:11:53 +0100 | [diff] [blame] | 5812 | if (intel_crtc->pch_pll) { |
Jesse Barnes | 4b645f1 | 2011-10-12 09:51:31 -0700 | [diff] [blame] | 5813 | if (is_lvds && has_reduced_clock && i915_powersave) { |
Jesse Barnes | ee7b9f9 | 2012-04-20 17:11:53 +0100 | [diff] [blame] | 5814 | I915_WRITE(intel_crtc->pch_pll->fp1_reg, fp2); |
Jesse Barnes | 4b645f1 | 2011-10-12 09:51:31 -0700 | [diff] [blame] | 5815 | intel_crtc->lowfreq_avail = true; |
Jesse Barnes | 4b645f1 | 2011-10-12 09:51:31 -0700 | [diff] [blame] | 5816 | } else { |
Jesse Barnes | ee7b9f9 | 2012-04-20 17:11:53 +0100 | [diff] [blame] | 5817 | I915_WRITE(intel_crtc->pch_pll->fp1_reg, fp); |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 5818 | } |
| 5819 | } |
| 5820 | |
Paulo Zanoni | b0e77b9 | 2012-10-01 18:10:53 -0300 | [diff] [blame] | 5821 | intel_set_pipe_timings(intel_crtc, mode, adjusted_mode); |
Krzysztof Halasa | 734b415 | 2010-05-25 18:41:46 +0200 | [diff] [blame] | 5822 | |
Daniel Vetter | ca3a0ff | 2013-02-14 16:54:22 +0100 | [diff] [blame] | 5823 | if (intel_crtc->config.has_pch_encoder) { |
Daniel Vetter | ca3a0ff | 2013-02-14 16:54:22 +0100 | [diff] [blame] | 5824 | intel_cpu_transcoder_set_m_n(intel_crtc, |
| 5825 | &intel_crtc->config.fdi_m_n); |
| 5826 | } |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 5827 | |
Daniel Vetter | ebfd86f | 2013-04-19 11:24:44 +0200 | [diff] [blame] | 5828 | if (IS_IVYBRIDGE(dev)) |
| 5829 | ivybridge_update_fdi_bc_bifurcation(intel_crtc); |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 5830 | |
Daniel Vetter | 6ff9360 | 2013-04-19 11:24:36 +0200 | [diff] [blame] | 5831 | ironlake_set_pipeconf(crtc); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5832 | |
Paulo Zanoni | a1f9e77 | 2012-09-12 10:06:32 -0300 | [diff] [blame] | 5833 | /* Set up the display plane register */ |
| 5834 | I915_WRITE(DSPCNTR(plane), DISPPLANE_GAMMA_ENABLE); |
Jesse Barnes | b24e717 | 2011-01-04 15:09:30 -0800 | [diff] [blame] | 5835 | POSTING_READ(DSPCNTR(plane)); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5836 | |
Daniel Vetter | 94352cf | 2012-07-05 22:51:56 +0200 | [diff] [blame] | 5837 | ret = intel_pipe_set_base(crtc, x, y, fb); |
Shaohua Li | 7662c8b | 2009-06-26 11:23:55 +0800 | [diff] [blame] | 5838 | |
| 5839 | intel_update_watermarks(dev); |
| 5840 | |
Daniel Vetter | 1857e1d | 2013-04-29 19:34:16 +0200 | [diff] [blame] | 5841 | return ret; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5842 | } |
| 5843 | |
Daniel Vetter | 7241920 | 2013-04-04 13:28:53 +0200 | [diff] [blame] | 5844 | static void ironlake_get_fdi_m_n_config(struct intel_crtc *crtc, |
| 5845 | struct intel_crtc_config *pipe_config) |
| 5846 | { |
| 5847 | struct drm_device *dev = crtc->base.dev; |
| 5848 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 5849 | enum transcoder transcoder = pipe_config->cpu_transcoder; |
| 5850 | |
| 5851 | pipe_config->fdi_m_n.link_m = I915_READ(PIPE_LINK_M1(transcoder)); |
| 5852 | pipe_config->fdi_m_n.link_n = I915_READ(PIPE_LINK_N1(transcoder)); |
| 5853 | pipe_config->fdi_m_n.gmch_m = I915_READ(PIPE_DATA_M1(transcoder)) |
| 5854 | & ~TU_SIZE_MASK; |
| 5855 | pipe_config->fdi_m_n.gmch_n = I915_READ(PIPE_DATA_N1(transcoder)); |
| 5856 | pipe_config->fdi_m_n.tu = ((I915_READ(PIPE_DATA_M1(transcoder)) |
| 5857 | & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1; |
| 5858 | } |
| 5859 | |
Daniel Vetter | 2fa2fe9 | 2013-05-07 23:34:16 +0200 | [diff] [blame] | 5860 | static void ironlake_get_pfit_config(struct intel_crtc *crtc, |
| 5861 | struct intel_crtc_config *pipe_config) |
| 5862 | { |
| 5863 | struct drm_device *dev = crtc->base.dev; |
| 5864 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 5865 | uint32_t tmp; |
| 5866 | |
| 5867 | tmp = I915_READ(PF_CTL(crtc->pipe)); |
| 5868 | |
| 5869 | if (tmp & PF_ENABLE) { |
| 5870 | pipe_config->pch_pfit.pos = I915_READ(PF_WIN_POS(crtc->pipe)); |
| 5871 | pipe_config->pch_pfit.size = I915_READ(PF_WIN_SZ(crtc->pipe)); |
| 5872 | } |
| 5873 | } |
| 5874 | |
Daniel Vetter | 0e8ffe1 | 2013-03-28 10:42:00 +0100 | [diff] [blame] | 5875 | static bool ironlake_get_pipe_config(struct intel_crtc *crtc, |
| 5876 | struct intel_crtc_config *pipe_config) |
| 5877 | { |
| 5878 | struct drm_device *dev = crtc->base.dev; |
| 5879 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 5880 | uint32_t tmp; |
| 5881 | |
Daniel Vetter | eccb140 | 2013-05-22 00:50:22 +0200 | [diff] [blame] | 5882 | pipe_config->cpu_transcoder = crtc->pipe; |
| 5883 | |
Daniel Vetter | 0e8ffe1 | 2013-03-28 10:42:00 +0100 | [diff] [blame] | 5884 | tmp = I915_READ(PIPECONF(crtc->pipe)); |
| 5885 | if (!(tmp & PIPECONF_ENABLE)) |
| 5886 | return false; |
| 5887 | |
Daniel Vetter | ab9412b | 2013-05-03 11:49:46 +0200 | [diff] [blame] | 5888 | if (I915_READ(PCH_TRANSCONF(crtc->pipe)) & TRANS_ENABLE) { |
Daniel Vetter | 88adfff | 2013-03-28 10:42:01 +0100 | [diff] [blame] | 5889 | pipe_config->has_pch_encoder = true; |
| 5890 | |
Daniel Vetter | 627eb5a | 2013-04-29 19:33:42 +0200 | [diff] [blame] | 5891 | tmp = I915_READ(FDI_RX_CTL(crtc->pipe)); |
| 5892 | pipe_config->fdi_lanes = ((FDI_DP_PORT_WIDTH_MASK & tmp) >> |
| 5893 | FDI_DP_PORT_WIDTH_SHIFT) + 1; |
Daniel Vetter | 7241920 | 2013-04-04 13:28:53 +0200 | [diff] [blame] | 5894 | |
| 5895 | ironlake_get_fdi_m_n_config(crtc, pipe_config); |
Daniel Vetter | 627eb5a | 2013-04-29 19:33:42 +0200 | [diff] [blame] | 5896 | } |
| 5897 | |
Daniel Vetter | 1bd1bd8 | 2013-04-29 21:56:12 +0200 | [diff] [blame] | 5898 | intel_get_pipe_timings(crtc, pipe_config); |
| 5899 | |
Daniel Vetter | 2fa2fe9 | 2013-05-07 23:34:16 +0200 | [diff] [blame] | 5900 | ironlake_get_pfit_config(crtc, pipe_config); |
| 5901 | |
Daniel Vetter | 0e8ffe1 | 2013-03-28 10:42:00 +0100 | [diff] [blame] | 5902 | return true; |
| 5903 | } |
| 5904 | |
Daniel Vetter | d6dd9eb | 2013-01-29 16:35:20 -0200 | [diff] [blame] | 5905 | static void haswell_modeset_global_resources(struct drm_device *dev) |
| 5906 | { |
Daniel Vetter | d6dd9eb | 2013-01-29 16:35:20 -0200 | [diff] [blame] | 5907 | bool enable = false; |
| 5908 | struct intel_crtc *crtc; |
Daniel Vetter | d6dd9eb | 2013-01-29 16:35:20 -0200 | [diff] [blame] | 5909 | |
| 5910 | list_for_each_entry(crtc, &dev->mode_config.crtc_list, base.head) { |
Daniel Vetter | e7a639c | 2013-05-31 17:49:17 +0200 | [diff] [blame] | 5911 | if (!crtc->base.enabled) |
| 5912 | continue; |
Daniel Vetter | d6dd9eb | 2013-01-29 16:35:20 -0200 | [diff] [blame] | 5913 | |
Daniel Vetter | e7a639c | 2013-05-31 17:49:17 +0200 | [diff] [blame] | 5914 | if (crtc->pipe != PIPE_A || crtc->config.pch_pfit.size || |
| 5915 | crtc->config.cpu_transcoder != TRANSCODER_EDP) |
Daniel Vetter | d6dd9eb | 2013-01-29 16:35:20 -0200 | [diff] [blame] | 5916 | enable = true; |
| 5917 | } |
| 5918 | |
Daniel Vetter | d6dd9eb | 2013-01-29 16:35:20 -0200 | [diff] [blame] | 5919 | intel_set_power_well(dev, enable); |
| 5920 | } |
| 5921 | |
Paulo Zanoni | 09b4ddf | 2012-10-05 12:05:55 -0300 | [diff] [blame] | 5922 | static int haswell_crtc_mode_set(struct drm_crtc *crtc, |
Paulo Zanoni | 09b4ddf | 2012-10-05 12:05:55 -0300 | [diff] [blame] | 5923 | int x, int y, |
| 5924 | struct drm_framebuffer *fb) |
| 5925 | { |
| 5926 | struct drm_device *dev = crtc->dev; |
| 5927 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 5928 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
Daniel Vetter | b8cecdf | 2013-03-27 00:44:50 +0100 | [diff] [blame] | 5929 | struct drm_display_mode *adjusted_mode = |
| 5930 | &intel_crtc->config.adjusted_mode; |
| 5931 | struct drm_display_mode *mode = &intel_crtc->config.requested_mode; |
Paulo Zanoni | 09b4ddf | 2012-10-05 12:05:55 -0300 | [diff] [blame] | 5932 | int pipe = intel_crtc->pipe; |
| 5933 | int plane = intel_crtc->plane; |
| 5934 | int num_connectors = 0; |
Daniel Vetter | 8b47047 | 2013-03-28 10:41:59 +0100 | [diff] [blame] | 5935 | bool is_cpu_edp = false; |
Paulo Zanoni | 09b4ddf | 2012-10-05 12:05:55 -0300 | [diff] [blame] | 5936 | struct intel_encoder *encoder; |
Paulo Zanoni | 09b4ddf | 2012-10-05 12:05:55 -0300 | [diff] [blame] | 5937 | int ret; |
Paulo Zanoni | 09b4ddf | 2012-10-05 12:05:55 -0300 | [diff] [blame] | 5938 | |
| 5939 | for_each_encoder_on_crtc(dev, crtc, encoder) { |
| 5940 | switch (encoder->type) { |
Paulo Zanoni | 09b4ddf | 2012-10-05 12:05:55 -0300 | [diff] [blame] | 5941 | case INTEL_OUTPUT_EDP: |
Imre Deak | d8e8b58 | 2013-05-08 13:14:03 +0300 | [diff] [blame] | 5942 | if (enc_to_dig_port(&encoder->base)->port == PORT_A) |
Paulo Zanoni | 09b4ddf | 2012-10-05 12:05:55 -0300 | [diff] [blame] | 5943 | is_cpu_edp = true; |
| 5944 | break; |
| 5945 | } |
| 5946 | |
| 5947 | num_connectors++; |
| 5948 | } |
| 5949 | |
Paulo Zanoni | 5dc5298 | 2012-10-05 12:05:56 -0300 | [diff] [blame] | 5950 | WARN(num_connectors != 1, "%d connectors attached to pipe %c\n", |
| 5951 | num_connectors, pipe_name(pipe)); |
| 5952 | |
Paulo Zanoni | 6441ab5 | 2012-10-05 12:05:58 -0300 | [diff] [blame] | 5953 | if (!intel_ddi_pll_mode_set(crtc, adjusted_mode->clock)) |
| 5954 | return -EINVAL; |
| 5955 | |
Paulo Zanoni | 09b4ddf | 2012-10-05 12:05:55 -0300 | [diff] [blame] | 5956 | /* Ensure that the cursor is valid for the new mode before changing... */ |
| 5957 | intel_crtc_update_cursor(crtc, true); |
| 5958 | |
Daniel Vetter | 03afc4a | 2013-04-02 23:42:31 +0200 | [diff] [blame] | 5959 | if (intel_crtc->config.has_dp_encoder) |
| 5960 | intel_dp_set_m_n(intel_crtc); |
Paulo Zanoni | 09b4ddf | 2012-10-05 12:05:55 -0300 | [diff] [blame] | 5961 | |
| 5962 | intel_crtc->lowfreq_avail = false; |
Paulo Zanoni | 09b4ddf | 2012-10-05 12:05:55 -0300 | [diff] [blame] | 5963 | |
| 5964 | intel_set_pipe_timings(intel_crtc, mode, adjusted_mode); |
| 5965 | |
Daniel Vetter | ca3a0ff | 2013-02-14 16:54:22 +0100 | [diff] [blame] | 5966 | if (intel_crtc->config.has_pch_encoder) { |
Daniel Vetter | ca3a0ff | 2013-02-14 16:54:22 +0100 | [diff] [blame] | 5967 | intel_cpu_transcoder_set_m_n(intel_crtc, |
| 5968 | &intel_crtc->config.fdi_m_n); |
| 5969 | } |
Paulo Zanoni | 09b4ddf | 2012-10-05 12:05:55 -0300 | [diff] [blame] | 5970 | |
Daniel Vetter | 6ff9360 | 2013-04-19 11:24:36 +0200 | [diff] [blame] | 5971 | haswell_set_pipeconf(crtc); |
Paulo Zanoni | 09b4ddf | 2012-10-05 12:05:55 -0300 | [diff] [blame] | 5972 | |
Daniel Vetter | 50f3b01 | 2013-03-27 00:44:56 +0100 | [diff] [blame] | 5973 | intel_set_pipe_csc(crtc); |
Ville Syrjälä | 86d3efc | 2013-01-18 19:11:38 +0200 | [diff] [blame] | 5974 | |
Paulo Zanoni | 09b4ddf | 2012-10-05 12:05:55 -0300 | [diff] [blame] | 5975 | /* Set up the display plane register */ |
Ville Syrjälä | 86d3efc | 2013-01-18 19:11:38 +0200 | [diff] [blame] | 5976 | I915_WRITE(DSPCNTR(plane), DISPPLANE_GAMMA_ENABLE | DISPPLANE_PIPE_CSC_ENABLE); |
Paulo Zanoni | 09b4ddf | 2012-10-05 12:05:55 -0300 | [diff] [blame] | 5977 | POSTING_READ(DSPCNTR(plane)); |
| 5978 | |
| 5979 | ret = intel_pipe_set_base(crtc, x, y, fb); |
| 5980 | |
| 5981 | intel_update_watermarks(dev); |
| 5982 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5983 | return ret; |
| 5984 | } |
| 5985 | |
Daniel Vetter | 0e8ffe1 | 2013-03-28 10:42:00 +0100 | [diff] [blame] | 5986 | static bool haswell_get_pipe_config(struct intel_crtc *crtc, |
| 5987 | struct intel_crtc_config *pipe_config) |
| 5988 | { |
| 5989 | struct drm_device *dev = crtc->base.dev; |
| 5990 | struct drm_i915_private *dev_priv = dev->dev_private; |
Daniel Vetter | 2fa2fe9 | 2013-05-07 23:34:16 +0200 | [diff] [blame] | 5991 | enum intel_display_power_domain pfit_domain; |
Daniel Vetter | 0e8ffe1 | 2013-03-28 10:42:00 +0100 | [diff] [blame] | 5992 | uint32_t tmp; |
| 5993 | |
Daniel Vetter | eccb140 | 2013-05-22 00:50:22 +0200 | [diff] [blame] | 5994 | pipe_config->cpu_transcoder = crtc->pipe; |
| 5995 | tmp = I915_READ(TRANS_DDI_FUNC_CTL(TRANSCODER_EDP)); |
| 5996 | if (tmp & TRANS_DDI_FUNC_ENABLE) { |
| 5997 | enum pipe trans_edp_pipe; |
| 5998 | switch (tmp & TRANS_DDI_EDP_INPUT_MASK) { |
| 5999 | default: |
| 6000 | WARN(1, "unknown pipe linked to edp transcoder\n"); |
| 6001 | case TRANS_DDI_EDP_INPUT_A_ONOFF: |
| 6002 | case TRANS_DDI_EDP_INPUT_A_ON: |
| 6003 | trans_edp_pipe = PIPE_A; |
| 6004 | break; |
| 6005 | case TRANS_DDI_EDP_INPUT_B_ONOFF: |
| 6006 | trans_edp_pipe = PIPE_B; |
| 6007 | break; |
| 6008 | case TRANS_DDI_EDP_INPUT_C_ONOFF: |
| 6009 | trans_edp_pipe = PIPE_C; |
| 6010 | break; |
| 6011 | } |
| 6012 | |
| 6013 | if (trans_edp_pipe == crtc->pipe) |
| 6014 | pipe_config->cpu_transcoder = TRANSCODER_EDP; |
| 6015 | } |
| 6016 | |
Paulo Zanoni | b97186f | 2013-05-03 12:15:36 -0300 | [diff] [blame] | 6017 | if (!intel_display_power_enabled(dev, |
Daniel Vetter | eccb140 | 2013-05-22 00:50:22 +0200 | [diff] [blame] | 6018 | POWER_DOMAIN_TRANSCODER(pipe_config->cpu_transcoder))) |
Paulo Zanoni | 2bfce95 | 2013-04-18 16:35:40 -0300 | [diff] [blame] | 6019 | return false; |
| 6020 | |
Daniel Vetter | eccb140 | 2013-05-22 00:50:22 +0200 | [diff] [blame] | 6021 | tmp = I915_READ(PIPECONF(pipe_config->cpu_transcoder)); |
Daniel Vetter | 0e8ffe1 | 2013-03-28 10:42:00 +0100 | [diff] [blame] | 6022 | if (!(tmp & PIPECONF_ENABLE)) |
| 6023 | return false; |
| 6024 | |
Daniel Vetter | 88adfff | 2013-03-28 10:42:01 +0100 | [diff] [blame] | 6025 | /* |
Paulo Zanoni | f196e6b | 2013-04-18 16:35:41 -0300 | [diff] [blame] | 6026 | * Haswell has only FDI/PCH transcoder A. It is which is connected to |
Daniel Vetter | 88adfff | 2013-03-28 10:42:01 +0100 | [diff] [blame] | 6027 | * DDI E. So just check whether this pipe is wired to DDI E and whether |
| 6028 | * the PCH transcoder is on. |
| 6029 | */ |
Daniel Vetter | eccb140 | 2013-05-22 00:50:22 +0200 | [diff] [blame] | 6030 | tmp = I915_READ(TRANS_DDI_FUNC_CTL(pipe_config->cpu_transcoder)); |
Daniel Vetter | 88adfff | 2013-03-28 10:42:01 +0100 | [diff] [blame] | 6031 | if ((tmp & TRANS_DDI_PORT_MASK) == TRANS_DDI_SELECT_PORT(PORT_E) && |
Daniel Vetter | ab9412b | 2013-05-03 11:49:46 +0200 | [diff] [blame] | 6032 | I915_READ(LPT_TRANSCONF) & TRANS_ENABLE) { |
Daniel Vetter | 88adfff | 2013-03-28 10:42:01 +0100 | [diff] [blame] | 6033 | pipe_config->has_pch_encoder = true; |
| 6034 | |
Daniel Vetter | 627eb5a | 2013-04-29 19:33:42 +0200 | [diff] [blame] | 6035 | tmp = I915_READ(FDI_RX_CTL(PIPE_A)); |
| 6036 | pipe_config->fdi_lanes = ((FDI_DP_PORT_WIDTH_MASK & tmp) >> |
| 6037 | FDI_DP_PORT_WIDTH_SHIFT) + 1; |
Daniel Vetter | 7241920 | 2013-04-04 13:28:53 +0200 | [diff] [blame] | 6038 | |
| 6039 | ironlake_get_fdi_m_n_config(crtc, pipe_config); |
Daniel Vetter | 627eb5a | 2013-04-29 19:33:42 +0200 | [diff] [blame] | 6040 | } |
| 6041 | |
Daniel Vetter | 1bd1bd8 | 2013-04-29 21:56:12 +0200 | [diff] [blame] | 6042 | intel_get_pipe_timings(crtc, pipe_config); |
| 6043 | |
Daniel Vetter | 2fa2fe9 | 2013-05-07 23:34:16 +0200 | [diff] [blame] | 6044 | pfit_domain = POWER_DOMAIN_PIPE_PANEL_FITTER(crtc->pipe); |
| 6045 | if (intel_display_power_enabled(dev, pfit_domain)) |
| 6046 | ironlake_get_pfit_config(crtc, pipe_config); |
| 6047 | |
Paulo Zanoni | 42db64e | 2013-05-31 16:33:22 -0300 | [diff] [blame] | 6048 | pipe_config->ips_enabled = hsw_crtc_supports_ips(crtc) && |
| 6049 | (I915_READ(IPS_CTL) & IPS_ENABLE); |
| 6050 | |
Daniel Vetter | 0e8ffe1 | 2013-03-28 10:42:00 +0100 | [diff] [blame] | 6051 | return true; |
| 6052 | } |
| 6053 | |
Eric Anholt | f564048e | 2011-03-30 13:01:02 -0700 | [diff] [blame] | 6054 | static int intel_crtc_mode_set(struct drm_crtc *crtc, |
Eric Anholt | f564048e | 2011-03-30 13:01:02 -0700 | [diff] [blame] | 6055 | int x, int y, |
Daniel Vetter | 94352cf | 2012-07-05 22:51:56 +0200 | [diff] [blame] | 6056 | struct drm_framebuffer *fb) |
Eric Anholt | f564048e | 2011-03-30 13:01:02 -0700 | [diff] [blame] | 6057 | { |
| 6058 | struct drm_device *dev = crtc->dev; |
| 6059 | struct drm_i915_private *dev_priv = dev->dev_private; |
Daniel Vetter | 9256aa1 | 2012-10-31 19:26:13 +0100 | [diff] [blame] | 6060 | struct drm_encoder_helper_funcs *encoder_funcs; |
| 6061 | struct intel_encoder *encoder; |
Eric Anholt | 0b701d2 | 2011-03-30 13:01:03 -0700 | [diff] [blame] | 6062 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
Daniel Vetter | b8cecdf | 2013-03-27 00:44:50 +0100 | [diff] [blame] | 6063 | struct drm_display_mode *adjusted_mode = |
| 6064 | &intel_crtc->config.adjusted_mode; |
| 6065 | struct drm_display_mode *mode = &intel_crtc->config.requested_mode; |
Eric Anholt | 0b701d2 | 2011-03-30 13:01:03 -0700 | [diff] [blame] | 6066 | int pipe = intel_crtc->pipe; |
Eric Anholt | f564048e | 2011-03-30 13:01:02 -0700 | [diff] [blame] | 6067 | int ret; |
| 6068 | |
Eric Anholt | 0b701d2 | 2011-03-30 13:01:03 -0700 | [diff] [blame] | 6069 | drm_vblank_pre_modeset(dev, pipe); |
| 6070 | |
Daniel Vetter | b8cecdf | 2013-03-27 00:44:50 +0100 | [diff] [blame] | 6071 | ret = dev_priv->display.crtc_mode_set(crtc, x, y, fb); |
| 6072 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6073 | drm_vblank_post_modeset(dev, pipe); |
| 6074 | |
Daniel Vetter | 9256aa1 | 2012-10-31 19:26:13 +0100 | [diff] [blame] | 6075 | if (ret != 0) |
| 6076 | return ret; |
| 6077 | |
| 6078 | for_each_encoder_on_crtc(dev, crtc, encoder) { |
| 6079 | DRM_DEBUG_KMS("[ENCODER:%d:%s] set [MODE:%d:%s]\n", |
| 6080 | encoder->base.base.id, |
| 6081 | drm_get_encoder_name(&encoder->base), |
| 6082 | mode->base.id, mode->name); |
Daniel Vetter | 6cc5f34 | 2013-03-27 00:44:53 +0100 | [diff] [blame] | 6083 | if (encoder->mode_set) { |
| 6084 | encoder->mode_set(encoder); |
| 6085 | } else { |
| 6086 | encoder_funcs = encoder->base.helper_private; |
| 6087 | encoder_funcs->mode_set(&encoder->base, mode, adjusted_mode); |
| 6088 | } |
Daniel Vetter | 9256aa1 | 2012-10-31 19:26:13 +0100 | [diff] [blame] | 6089 | } |
| 6090 | |
| 6091 | return 0; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6092 | } |
| 6093 | |
Wu Fengguang | 3a9627f | 2011-12-09 20:42:19 +0800 | [diff] [blame] | 6094 | static bool intel_eld_uptodate(struct drm_connector *connector, |
| 6095 | int reg_eldv, uint32_t bits_eldv, |
| 6096 | int reg_elda, uint32_t bits_elda, |
| 6097 | int reg_edid) |
| 6098 | { |
| 6099 | struct drm_i915_private *dev_priv = connector->dev->dev_private; |
| 6100 | uint8_t *eld = connector->eld; |
| 6101 | uint32_t i; |
| 6102 | |
| 6103 | i = I915_READ(reg_eldv); |
| 6104 | i &= bits_eldv; |
| 6105 | |
| 6106 | if (!eld[0]) |
| 6107 | return !i; |
| 6108 | |
| 6109 | if (!i) |
| 6110 | return false; |
| 6111 | |
| 6112 | i = I915_READ(reg_elda); |
| 6113 | i &= ~bits_elda; |
| 6114 | I915_WRITE(reg_elda, i); |
| 6115 | |
| 6116 | for (i = 0; i < eld[2]; i++) |
| 6117 | if (I915_READ(reg_edid) != *((uint32_t *)eld + i)) |
| 6118 | return false; |
| 6119 | |
| 6120 | return true; |
| 6121 | } |
| 6122 | |
Wu Fengguang | e0dac65 | 2011-09-05 14:25:34 +0800 | [diff] [blame] | 6123 | static void g4x_write_eld(struct drm_connector *connector, |
| 6124 | struct drm_crtc *crtc) |
| 6125 | { |
| 6126 | struct drm_i915_private *dev_priv = connector->dev->dev_private; |
| 6127 | uint8_t *eld = connector->eld; |
| 6128 | uint32_t eldv; |
| 6129 | uint32_t len; |
| 6130 | uint32_t i; |
| 6131 | |
| 6132 | i = I915_READ(G4X_AUD_VID_DID); |
| 6133 | |
| 6134 | if (i == INTEL_AUDIO_DEVBLC || i == INTEL_AUDIO_DEVCL) |
| 6135 | eldv = G4X_ELDV_DEVCL_DEVBLC; |
| 6136 | else |
| 6137 | eldv = G4X_ELDV_DEVCTG; |
| 6138 | |
Wu Fengguang | 3a9627f | 2011-12-09 20:42:19 +0800 | [diff] [blame] | 6139 | if (intel_eld_uptodate(connector, |
| 6140 | G4X_AUD_CNTL_ST, eldv, |
| 6141 | G4X_AUD_CNTL_ST, G4X_ELD_ADDR, |
| 6142 | G4X_HDMIW_HDMIEDID)) |
| 6143 | return; |
| 6144 | |
Wu Fengguang | e0dac65 | 2011-09-05 14:25:34 +0800 | [diff] [blame] | 6145 | i = I915_READ(G4X_AUD_CNTL_ST); |
| 6146 | i &= ~(eldv | G4X_ELD_ADDR); |
| 6147 | len = (i >> 9) & 0x1f; /* ELD buffer size */ |
| 6148 | I915_WRITE(G4X_AUD_CNTL_ST, i); |
| 6149 | |
| 6150 | if (!eld[0]) |
| 6151 | return; |
| 6152 | |
| 6153 | len = min_t(uint8_t, eld[2], len); |
| 6154 | DRM_DEBUG_DRIVER("ELD size %d\n", len); |
| 6155 | for (i = 0; i < len; i++) |
| 6156 | I915_WRITE(G4X_HDMIW_HDMIEDID, *((uint32_t *)eld + i)); |
| 6157 | |
| 6158 | i = I915_READ(G4X_AUD_CNTL_ST); |
| 6159 | i |= eldv; |
| 6160 | I915_WRITE(G4X_AUD_CNTL_ST, i); |
| 6161 | } |
| 6162 | |
Wang Xingchao | 83358c85 | 2012-08-16 22:43:37 +0800 | [diff] [blame] | 6163 | static void haswell_write_eld(struct drm_connector *connector, |
| 6164 | struct drm_crtc *crtc) |
| 6165 | { |
| 6166 | struct drm_i915_private *dev_priv = connector->dev->dev_private; |
| 6167 | uint8_t *eld = connector->eld; |
| 6168 | struct drm_device *dev = crtc->dev; |
Wang Xingchao | 7b9f35a | 2013-01-22 23:25:25 +0800 | [diff] [blame] | 6169 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
Wang Xingchao | 83358c85 | 2012-08-16 22:43:37 +0800 | [diff] [blame] | 6170 | uint32_t eldv; |
| 6171 | uint32_t i; |
| 6172 | int len; |
| 6173 | int pipe = to_intel_crtc(crtc)->pipe; |
| 6174 | int tmp; |
| 6175 | |
| 6176 | int hdmiw_hdmiedid = HSW_AUD_EDID_DATA(pipe); |
| 6177 | int aud_cntl_st = HSW_AUD_DIP_ELD_CTRL(pipe); |
| 6178 | int aud_config = HSW_AUD_CFG(pipe); |
| 6179 | int aud_cntrl_st2 = HSW_AUD_PIN_ELD_CP_VLD; |
| 6180 | |
| 6181 | |
| 6182 | DRM_DEBUG_DRIVER("HDMI: Haswell Audio initialize....\n"); |
| 6183 | |
| 6184 | /* Audio output enable */ |
| 6185 | DRM_DEBUG_DRIVER("HDMI audio: enable codec\n"); |
| 6186 | tmp = I915_READ(aud_cntrl_st2); |
| 6187 | tmp |= (AUDIO_OUTPUT_ENABLE_A << (pipe * 4)); |
| 6188 | I915_WRITE(aud_cntrl_st2, tmp); |
| 6189 | |
| 6190 | /* Wait for 1 vertical blank */ |
| 6191 | intel_wait_for_vblank(dev, pipe); |
| 6192 | |
| 6193 | /* Set ELD valid state */ |
| 6194 | tmp = I915_READ(aud_cntrl_st2); |
| 6195 | DRM_DEBUG_DRIVER("HDMI audio: pin eld vld status=0x%8x\n", tmp); |
| 6196 | tmp |= (AUDIO_ELD_VALID_A << (pipe * 4)); |
| 6197 | I915_WRITE(aud_cntrl_st2, tmp); |
| 6198 | tmp = I915_READ(aud_cntrl_st2); |
| 6199 | DRM_DEBUG_DRIVER("HDMI audio: eld vld status=0x%8x\n", tmp); |
| 6200 | |
| 6201 | /* Enable HDMI mode */ |
| 6202 | tmp = I915_READ(aud_config); |
| 6203 | DRM_DEBUG_DRIVER("HDMI audio: audio conf: 0x%8x\n", tmp); |
| 6204 | /* clear N_programing_enable and N_value_index */ |
| 6205 | tmp &= ~(AUD_CONFIG_N_VALUE_INDEX | AUD_CONFIG_N_PROG_ENABLE); |
| 6206 | I915_WRITE(aud_config, tmp); |
| 6207 | |
| 6208 | DRM_DEBUG_DRIVER("ELD on pipe %c\n", pipe_name(pipe)); |
| 6209 | |
| 6210 | eldv = AUDIO_ELD_VALID_A << (pipe * 4); |
Wang Xingchao | 7b9f35a | 2013-01-22 23:25:25 +0800 | [diff] [blame] | 6211 | intel_crtc->eld_vld = true; |
Wang Xingchao | 83358c85 | 2012-08-16 22:43:37 +0800 | [diff] [blame] | 6212 | |
| 6213 | if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT)) { |
| 6214 | DRM_DEBUG_DRIVER("ELD: DisplayPort detected\n"); |
| 6215 | eld[5] |= (1 << 2); /* Conn_Type, 0x1 = DisplayPort */ |
| 6216 | I915_WRITE(aud_config, AUD_CONFIG_N_VALUE_INDEX); /* 0x1 = DP */ |
| 6217 | } else |
| 6218 | I915_WRITE(aud_config, 0); |
| 6219 | |
| 6220 | if (intel_eld_uptodate(connector, |
| 6221 | aud_cntrl_st2, eldv, |
| 6222 | aud_cntl_st, IBX_ELD_ADDRESS, |
| 6223 | hdmiw_hdmiedid)) |
| 6224 | return; |
| 6225 | |
| 6226 | i = I915_READ(aud_cntrl_st2); |
| 6227 | i &= ~eldv; |
| 6228 | I915_WRITE(aud_cntrl_st2, i); |
| 6229 | |
| 6230 | if (!eld[0]) |
| 6231 | return; |
| 6232 | |
| 6233 | i = I915_READ(aud_cntl_st); |
| 6234 | i &= ~IBX_ELD_ADDRESS; |
| 6235 | I915_WRITE(aud_cntl_st, i); |
| 6236 | i = (i >> 29) & DIP_PORT_SEL_MASK; /* DIP_Port_Select, 0x1 = PortB */ |
| 6237 | DRM_DEBUG_DRIVER("port num:%d\n", i); |
| 6238 | |
| 6239 | len = min_t(uint8_t, eld[2], 21); /* 84 bytes of hw ELD buffer */ |
| 6240 | DRM_DEBUG_DRIVER("ELD size %d\n", len); |
| 6241 | for (i = 0; i < len; i++) |
| 6242 | I915_WRITE(hdmiw_hdmiedid, *((uint32_t *)eld + i)); |
| 6243 | |
| 6244 | i = I915_READ(aud_cntrl_st2); |
| 6245 | i |= eldv; |
| 6246 | I915_WRITE(aud_cntrl_st2, i); |
| 6247 | |
| 6248 | } |
| 6249 | |
Wu Fengguang | e0dac65 | 2011-09-05 14:25:34 +0800 | [diff] [blame] | 6250 | static void ironlake_write_eld(struct drm_connector *connector, |
| 6251 | struct drm_crtc *crtc) |
| 6252 | { |
| 6253 | struct drm_i915_private *dev_priv = connector->dev->dev_private; |
| 6254 | uint8_t *eld = connector->eld; |
| 6255 | uint32_t eldv; |
| 6256 | uint32_t i; |
| 6257 | int len; |
| 6258 | int hdmiw_hdmiedid; |
Wu Fengguang | b6daa02 | 2012-01-06 14:41:31 -0600 | [diff] [blame] | 6259 | int aud_config; |
Wu Fengguang | e0dac65 | 2011-09-05 14:25:34 +0800 | [diff] [blame] | 6260 | int aud_cntl_st; |
| 6261 | int aud_cntrl_st2; |
Wang Xingchao | 9b138a8 | 2012-08-09 16:52:18 +0800 | [diff] [blame] | 6262 | int pipe = to_intel_crtc(crtc)->pipe; |
Wu Fengguang | e0dac65 | 2011-09-05 14:25:34 +0800 | [diff] [blame] | 6263 | |
Wu Fengguang | b3f33cb | 2011-12-09 20:42:17 +0800 | [diff] [blame] | 6264 | if (HAS_PCH_IBX(connector->dev)) { |
Wang Xingchao | 9b138a8 | 2012-08-09 16:52:18 +0800 | [diff] [blame] | 6265 | hdmiw_hdmiedid = IBX_HDMIW_HDMIEDID(pipe); |
| 6266 | aud_config = IBX_AUD_CFG(pipe); |
| 6267 | aud_cntl_st = IBX_AUD_CNTL_ST(pipe); |
Wu Fengguang | 1202b4c6 | 2011-12-09 20:42:18 +0800 | [diff] [blame] | 6268 | aud_cntrl_st2 = IBX_AUD_CNTL_ST2; |
Wu Fengguang | e0dac65 | 2011-09-05 14:25:34 +0800 | [diff] [blame] | 6269 | } else { |
Wang Xingchao | 9b138a8 | 2012-08-09 16:52:18 +0800 | [diff] [blame] | 6270 | hdmiw_hdmiedid = CPT_HDMIW_HDMIEDID(pipe); |
| 6271 | aud_config = CPT_AUD_CFG(pipe); |
| 6272 | aud_cntl_st = CPT_AUD_CNTL_ST(pipe); |
Wu Fengguang | 1202b4c6 | 2011-12-09 20:42:18 +0800 | [diff] [blame] | 6273 | aud_cntrl_st2 = CPT_AUD_CNTRL_ST2; |
Wu Fengguang | e0dac65 | 2011-09-05 14:25:34 +0800 | [diff] [blame] | 6274 | } |
| 6275 | |
Wang Xingchao | 9b138a8 | 2012-08-09 16:52:18 +0800 | [diff] [blame] | 6276 | DRM_DEBUG_DRIVER("ELD on pipe %c\n", pipe_name(pipe)); |
Wu Fengguang | e0dac65 | 2011-09-05 14:25:34 +0800 | [diff] [blame] | 6277 | |
| 6278 | i = I915_READ(aud_cntl_st); |
Wang Xingchao | 9b138a8 | 2012-08-09 16:52:18 +0800 | [diff] [blame] | 6279 | i = (i >> 29) & DIP_PORT_SEL_MASK; /* DIP_Port_Select, 0x1 = PortB */ |
Wu Fengguang | e0dac65 | 2011-09-05 14:25:34 +0800 | [diff] [blame] | 6280 | if (!i) { |
| 6281 | DRM_DEBUG_DRIVER("Audio directed to unknown port\n"); |
| 6282 | /* operate blindly on all ports */ |
Wu Fengguang | 1202b4c6 | 2011-12-09 20:42:18 +0800 | [diff] [blame] | 6283 | eldv = IBX_ELD_VALIDB; |
| 6284 | eldv |= IBX_ELD_VALIDB << 4; |
| 6285 | eldv |= IBX_ELD_VALIDB << 8; |
Wu Fengguang | e0dac65 | 2011-09-05 14:25:34 +0800 | [diff] [blame] | 6286 | } else { |
Ville Syrjälä | 2582a85 | 2013-04-17 17:48:47 +0300 | [diff] [blame] | 6287 | DRM_DEBUG_DRIVER("ELD on port %c\n", port_name(i)); |
Wu Fengguang | 1202b4c6 | 2011-12-09 20:42:18 +0800 | [diff] [blame] | 6288 | eldv = IBX_ELD_VALIDB << ((i - 1) * 4); |
Wu Fengguang | e0dac65 | 2011-09-05 14:25:34 +0800 | [diff] [blame] | 6289 | } |
| 6290 | |
Wu Fengguang | 3a9627f | 2011-12-09 20:42:19 +0800 | [diff] [blame] | 6291 | if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT)) { |
| 6292 | DRM_DEBUG_DRIVER("ELD: DisplayPort detected\n"); |
| 6293 | eld[5] |= (1 << 2); /* Conn_Type, 0x1 = DisplayPort */ |
Wu Fengguang | b6daa02 | 2012-01-06 14:41:31 -0600 | [diff] [blame] | 6294 | I915_WRITE(aud_config, AUD_CONFIG_N_VALUE_INDEX); /* 0x1 = DP */ |
| 6295 | } else |
| 6296 | I915_WRITE(aud_config, 0); |
Wu Fengguang | 3a9627f | 2011-12-09 20:42:19 +0800 | [diff] [blame] | 6297 | |
| 6298 | if (intel_eld_uptodate(connector, |
| 6299 | aud_cntrl_st2, eldv, |
| 6300 | aud_cntl_st, IBX_ELD_ADDRESS, |
| 6301 | hdmiw_hdmiedid)) |
| 6302 | return; |
| 6303 | |
Wu Fengguang | e0dac65 | 2011-09-05 14:25:34 +0800 | [diff] [blame] | 6304 | i = I915_READ(aud_cntrl_st2); |
| 6305 | i &= ~eldv; |
| 6306 | I915_WRITE(aud_cntrl_st2, i); |
| 6307 | |
| 6308 | if (!eld[0]) |
| 6309 | return; |
| 6310 | |
Wu Fengguang | e0dac65 | 2011-09-05 14:25:34 +0800 | [diff] [blame] | 6311 | i = I915_READ(aud_cntl_st); |
Wu Fengguang | 1202b4c6 | 2011-12-09 20:42:18 +0800 | [diff] [blame] | 6312 | i &= ~IBX_ELD_ADDRESS; |
Wu Fengguang | e0dac65 | 2011-09-05 14:25:34 +0800 | [diff] [blame] | 6313 | I915_WRITE(aud_cntl_st, i); |
| 6314 | |
| 6315 | len = min_t(uint8_t, eld[2], 21); /* 84 bytes of hw ELD buffer */ |
| 6316 | DRM_DEBUG_DRIVER("ELD size %d\n", len); |
| 6317 | for (i = 0; i < len; i++) |
| 6318 | I915_WRITE(hdmiw_hdmiedid, *((uint32_t *)eld + i)); |
| 6319 | |
| 6320 | i = I915_READ(aud_cntrl_st2); |
| 6321 | i |= eldv; |
| 6322 | I915_WRITE(aud_cntrl_st2, i); |
| 6323 | } |
| 6324 | |
| 6325 | void intel_write_eld(struct drm_encoder *encoder, |
| 6326 | struct drm_display_mode *mode) |
| 6327 | { |
| 6328 | struct drm_crtc *crtc = encoder->crtc; |
| 6329 | struct drm_connector *connector; |
| 6330 | struct drm_device *dev = encoder->dev; |
| 6331 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 6332 | |
| 6333 | connector = drm_select_eld(encoder, mode); |
| 6334 | if (!connector) |
| 6335 | return; |
| 6336 | |
| 6337 | DRM_DEBUG_DRIVER("ELD on [CONNECTOR:%d:%s], [ENCODER:%d:%s]\n", |
| 6338 | connector->base.id, |
| 6339 | drm_get_connector_name(connector), |
| 6340 | connector->encoder->base.id, |
| 6341 | drm_get_encoder_name(connector->encoder)); |
| 6342 | |
| 6343 | connector->eld[6] = drm_av_sync_delay(connector, mode) / 2; |
| 6344 | |
| 6345 | if (dev_priv->display.write_eld) |
| 6346 | dev_priv->display.write_eld(connector, crtc); |
| 6347 | } |
| 6348 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6349 | /** Loads the palette/gamma unit for the CRTC with the prepared values */ |
| 6350 | void intel_crtc_load_lut(struct drm_crtc *crtc) |
| 6351 | { |
| 6352 | struct drm_device *dev = crtc->dev; |
| 6353 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 6354 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
Paulo Zanoni | 42db64e | 2013-05-31 16:33:22 -0300 | [diff] [blame] | 6355 | enum pipe pipe = intel_crtc->pipe; |
| 6356 | int palreg = PALETTE(pipe); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6357 | int i; |
Paulo Zanoni | 42db64e | 2013-05-31 16:33:22 -0300 | [diff] [blame] | 6358 | bool reenable_ips = false; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6359 | |
| 6360 | /* The clocks have to be on to load the palette. */ |
Alban Browaeys | aed3f09 | 2012-02-24 17:12:45 +0000 | [diff] [blame] | 6361 | if (!crtc->enabled || !intel_crtc->active) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6362 | return; |
| 6363 | |
Adam Jackson | f2b115e | 2009-12-03 17:14:42 -0500 | [diff] [blame] | 6364 | /* use legacy palette for Ironlake */ |
Eric Anholt | bad720f | 2009-10-22 16:11:14 -0700 | [diff] [blame] | 6365 | if (HAS_PCH_SPLIT(dev)) |
Paulo Zanoni | 42db64e | 2013-05-31 16:33:22 -0300 | [diff] [blame] | 6366 | palreg = LGC_PALETTE(pipe); |
| 6367 | |
| 6368 | /* Workaround : Do not read or write the pipe palette/gamma data while |
| 6369 | * GAMMA_MODE is configured for split gamma and IPS_CTL has IPS enabled. |
| 6370 | */ |
| 6371 | if (intel_crtc->config.ips_enabled && |
| 6372 | ((I915_READ(GAMMA_MODE(pipe)) & GAMMA_MODE_MODE_MASK) == |
| 6373 | GAMMA_MODE_MODE_SPLIT)) { |
| 6374 | hsw_disable_ips(intel_crtc); |
| 6375 | reenable_ips = true; |
| 6376 | } |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 6377 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6378 | for (i = 0; i < 256; i++) { |
| 6379 | I915_WRITE(palreg + 4 * i, |
| 6380 | (intel_crtc->lut_r[i] << 16) | |
| 6381 | (intel_crtc->lut_g[i] << 8) | |
| 6382 | intel_crtc->lut_b[i]); |
| 6383 | } |
Paulo Zanoni | 42db64e | 2013-05-31 16:33:22 -0300 | [diff] [blame] | 6384 | |
| 6385 | if (reenable_ips) |
| 6386 | hsw_enable_ips(intel_crtc); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6387 | } |
| 6388 | |
Chris Wilson | 560b85b | 2010-08-07 11:01:38 +0100 | [diff] [blame] | 6389 | static void i845_update_cursor(struct drm_crtc *crtc, u32 base) |
| 6390 | { |
| 6391 | struct drm_device *dev = crtc->dev; |
| 6392 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 6393 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 6394 | bool visible = base != 0; |
| 6395 | u32 cntl; |
| 6396 | |
| 6397 | if (intel_crtc->cursor_visible == visible) |
| 6398 | return; |
| 6399 | |
Jesse Barnes | 9db4a9c | 2011-02-07 12:26:52 -0800 | [diff] [blame] | 6400 | cntl = I915_READ(_CURACNTR); |
Chris Wilson | 560b85b | 2010-08-07 11:01:38 +0100 | [diff] [blame] | 6401 | if (visible) { |
| 6402 | /* On these chipsets we can only modify the base whilst |
| 6403 | * the cursor is disabled. |
| 6404 | */ |
Jesse Barnes | 9db4a9c | 2011-02-07 12:26:52 -0800 | [diff] [blame] | 6405 | I915_WRITE(_CURABASE, base); |
Chris Wilson | 560b85b | 2010-08-07 11:01:38 +0100 | [diff] [blame] | 6406 | |
| 6407 | cntl &= ~(CURSOR_FORMAT_MASK); |
| 6408 | /* XXX width must be 64, stride 256 => 0x00 << 28 */ |
| 6409 | cntl |= CURSOR_ENABLE | |
| 6410 | CURSOR_GAMMA_ENABLE | |
| 6411 | CURSOR_FORMAT_ARGB; |
| 6412 | } else |
| 6413 | cntl &= ~(CURSOR_ENABLE | CURSOR_GAMMA_ENABLE); |
Jesse Barnes | 9db4a9c | 2011-02-07 12:26:52 -0800 | [diff] [blame] | 6414 | I915_WRITE(_CURACNTR, cntl); |
Chris Wilson | 560b85b | 2010-08-07 11:01:38 +0100 | [diff] [blame] | 6415 | |
| 6416 | intel_crtc->cursor_visible = visible; |
| 6417 | } |
| 6418 | |
| 6419 | static void i9xx_update_cursor(struct drm_crtc *crtc, u32 base) |
| 6420 | { |
| 6421 | struct drm_device *dev = crtc->dev; |
| 6422 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 6423 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 6424 | int pipe = intel_crtc->pipe; |
| 6425 | bool visible = base != 0; |
| 6426 | |
| 6427 | if (intel_crtc->cursor_visible != visible) { |
Jesse Barnes | 548f245 | 2011-02-17 10:40:53 -0800 | [diff] [blame] | 6428 | uint32_t cntl = I915_READ(CURCNTR(pipe)); |
Chris Wilson | 560b85b | 2010-08-07 11:01:38 +0100 | [diff] [blame] | 6429 | if (base) { |
| 6430 | cntl &= ~(CURSOR_MODE | MCURSOR_PIPE_SELECT); |
| 6431 | cntl |= CURSOR_MODE_64_ARGB_AX | MCURSOR_GAMMA_ENABLE; |
| 6432 | cntl |= pipe << 28; /* Connect to correct pipe */ |
| 6433 | } else { |
| 6434 | cntl &= ~(CURSOR_MODE | MCURSOR_GAMMA_ENABLE); |
| 6435 | cntl |= CURSOR_MODE_DISABLE; |
| 6436 | } |
Jesse Barnes | 9db4a9c | 2011-02-07 12:26:52 -0800 | [diff] [blame] | 6437 | I915_WRITE(CURCNTR(pipe), cntl); |
Chris Wilson | 560b85b | 2010-08-07 11:01:38 +0100 | [diff] [blame] | 6438 | |
| 6439 | intel_crtc->cursor_visible = visible; |
| 6440 | } |
| 6441 | /* and commit changes on next vblank */ |
Jesse Barnes | 9db4a9c | 2011-02-07 12:26:52 -0800 | [diff] [blame] | 6442 | I915_WRITE(CURBASE(pipe), base); |
Chris Wilson | 560b85b | 2010-08-07 11:01:38 +0100 | [diff] [blame] | 6443 | } |
| 6444 | |
Jesse Barnes | 65a21cd | 2011-10-12 11:10:21 -0700 | [diff] [blame] | 6445 | static void ivb_update_cursor(struct drm_crtc *crtc, u32 base) |
| 6446 | { |
| 6447 | struct drm_device *dev = crtc->dev; |
| 6448 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 6449 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 6450 | int pipe = intel_crtc->pipe; |
| 6451 | bool visible = base != 0; |
| 6452 | |
| 6453 | if (intel_crtc->cursor_visible != visible) { |
| 6454 | uint32_t cntl = I915_READ(CURCNTR_IVB(pipe)); |
| 6455 | if (base) { |
| 6456 | cntl &= ~CURSOR_MODE; |
| 6457 | cntl |= CURSOR_MODE_64_ARGB_AX | MCURSOR_GAMMA_ENABLE; |
| 6458 | } else { |
| 6459 | cntl &= ~(CURSOR_MODE | MCURSOR_GAMMA_ENABLE); |
| 6460 | cntl |= CURSOR_MODE_DISABLE; |
| 6461 | } |
Ville Syrjälä | 86d3efc | 2013-01-18 19:11:38 +0200 | [diff] [blame] | 6462 | if (IS_HASWELL(dev)) |
| 6463 | cntl |= CURSOR_PIPE_CSC_ENABLE; |
Jesse Barnes | 65a21cd | 2011-10-12 11:10:21 -0700 | [diff] [blame] | 6464 | I915_WRITE(CURCNTR_IVB(pipe), cntl); |
| 6465 | |
| 6466 | intel_crtc->cursor_visible = visible; |
| 6467 | } |
| 6468 | /* and commit changes on next vblank */ |
| 6469 | I915_WRITE(CURBASE_IVB(pipe), base); |
| 6470 | } |
| 6471 | |
Chris Wilson | cda4b7d | 2010-07-09 08:45:04 +0100 | [diff] [blame] | 6472 | /* If no-part of the cursor is visible on the framebuffer, then the GPU may hang... */ |
Chris Wilson | 6b383a7 | 2010-09-13 13:54:26 +0100 | [diff] [blame] | 6473 | static void intel_crtc_update_cursor(struct drm_crtc *crtc, |
| 6474 | bool on) |
Chris Wilson | cda4b7d | 2010-07-09 08:45:04 +0100 | [diff] [blame] | 6475 | { |
| 6476 | struct drm_device *dev = crtc->dev; |
| 6477 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 6478 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 6479 | int pipe = intel_crtc->pipe; |
| 6480 | int x = intel_crtc->cursor_x; |
| 6481 | int y = intel_crtc->cursor_y; |
Chris Wilson | 560b85b | 2010-08-07 11:01:38 +0100 | [diff] [blame] | 6482 | u32 base, pos; |
Chris Wilson | cda4b7d | 2010-07-09 08:45:04 +0100 | [diff] [blame] | 6483 | bool visible; |
| 6484 | |
| 6485 | pos = 0; |
| 6486 | |
Chris Wilson | 6b383a7 | 2010-09-13 13:54:26 +0100 | [diff] [blame] | 6487 | if (on && crtc->enabled && crtc->fb) { |
Chris Wilson | cda4b7d | 2010-07-09 08:45:04 +0100 | [diff] [blame] | 6488 | base = intel_crtc->cursor_addr; |
| 6489 | if (x > (int) crtc->fb->width) |
| 6490 | base = 0; |
| 6491 | |
| 6492 | if (y > (int) crtc->fb->height) |
| 6493 | base = 0; |
| 6494 | } else |
| 6495 | base = 0; |
| 6496 | |
| 6497 | if (x < 0) { |
| 6498 | if (x + intel_crtc->cursor_width < 0) |
| 6499 | base = 0; |
| 6500 | |
| 6501 | pos |= CURSOR_POS_SIGN << CURSOR_X_SHIFT; |
| 6502 | x = -x; |
| 6503 | } |
| 6504 | pos |= x << CURSOR_X_SHIFT; |
| 6505 | |
| 6506 | if (y < 0) { |
| 6507 | if (y + intel_crtc->cursor_height < 0) |
| 6508 | base = 0; |
| 6509 | |
| 6510 | pos |= CURSOR_POS_SIGN << CURSOR_Y_SHIFT; |
| 6511 | y = -y; |
| 6512 | } |
| 6513 | pos |= y << CURSOR_Y_SHIFT; |
| 6514 | |
| 6515 | visible = base != 0; |
Chris Wilson | 560b85b | 2010-08-07 11:01:38 +0100 | [diff] [blame] | 6516 | if (!visible && !intel_crtc->cursor_visible) |
Chris Wilson | cda4b7d | 2010-07-09 08:45:04 +0100 | [diff] [blame] | 6517 | return; |
| 6518 | |
Eugeni Dodonov | 0cd83aa | 2012-04-13 17:08:48 -0300 | [diff] [blame] | 6519 | if (IS_IVYBRIDGE(dev) || IS_HASWELL(dev)) { |
Jesse Barnes | 65a21cd | 2011-10-12 11:10:21 -0700 | [diff] [blame] | 6520 | I915_WRITE(CURPOS_IVB(pipe), pos); |
| 6521 | ivb_update_cursor(crtc, base); |
| 6522 | } else { |
| 6523 | I915_WRITE(CURPOS(pipe), pos); |
| 6524 | if (IS_845G(dev) || IS_I865G(dev)) |
| 6525 | i845_update_cursor(crtc, base); |
| 6526 | else |
| 6527 | i9xx_update_cursor(crtc, base); |
| 6528 | } |
Chris Wilson | cda4b7d | 2010-07-09 08:45:04 +0100 | [diff] [blame] | 6529 | } |
| 6530 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6531 | static int intel_crtc_cursor_set(struct drm_crtc *crtc, |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 6532 | struct drm_file *file, |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6533 | uint32_t handle, |
| 6534 | uint32_t width, uint32_t height) |
| 6535 | { |
| 6536 | struct drm_device *dev = crtc->dev; |
| 6537 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 6538 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 6539 | struct drm_i915_gem_object *obj; |
Chris Wilson | cda4b7d | 2010-07-09 08:45:04 +0100 | [diff] [blame] | 6540 | uint32_t addr; |
Kristian Høgsberg | 3f8bc37 | 2008-12-17 22:14:59 -0500 | [diff] [blame] | 6541 | int ret; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6542 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6543 | /* if we want to turn off the cursor ignore width and height */ |
| 6544 | if (!handle) { |
Zhao Yakui | 28c9773 | 2009-10-09 11:39:41 +0800 | [diff] [blame] | 6545 | DRM_DEBUG_KMS("cursor off\n"); |
Kristian Høgsberg | 3f8bc37 | 2008-12-17 22:14:59 -0500 | [diff] [blame] | 6546 | addr = 0; |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 6547 | obj = NULL; |
Pierre Willenbrock | 5004417 | 2009-02-23 10:12:15 +1000 | [diff] [blame] | 6548 | mutex_lock(&dev->struct_mutex); |
Kristian Høgsberg | 3f8bc37 | 2008-12-17 22:14:59 -0500 | [diff] [blame] | 6549 | goto finish; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6550 | } |
| 6551 | |
| 6552 | /* Currently we only support 64x64 cursors */ |
| 6553 | if (width != 64 || height != 64) { |
| 6554 | DRM_ERROR("we currently only support 64x64 cursors\n"); |
| 6555 | return -EINVAL; |
| 6556 | } |
| 6557 | |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 6558 | obj = to_intel_bo(drm_gem_object_lookup(dev, file, handle)); |
Chris Wilson | c872522 | 2011-02-19 11:31:06 +0000 | [diff] [blame] | 6559 | if (&obj->base == NULL) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6560 | return -ENOENT; |
| 6561 | |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 6562 | if (obj->base.size < width * height * 4) { |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6563 | DRM_ERROR("buffer is to small\n"); |
Dave Airlie | 34b8686e | 2009-01-15 14:03:07 +1000 | [diff] [blame] | 6564 | ret = -ENOMEM; |
| 6565 | goto fail; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6566 | } |
| 6567 | |
Dave Airlie | 71acb5e | 2008-12-30 20:31:46 +1000 | [diff] [blame] | 6568 | /* we only need to pin inside GTT if cursor is non-phy */ |
Kristian Høgsberg | 7f9872e | 2009-02-13 20:56:49 -0500 | [diff] [blame] | 6569 | mutex_lock(&dev->struct_mutex); |
Kristian Høgsberg | b295d1b | 2009-12-16 15:16:17 -0500 | [diff] [blame] | 6570 | if (!dev_priv->info->cursor_needs_physical) { |
Chris Wilson | 693db18 | 2013-03-05 14:52:39 +0000 | [diff] [blame] | 6571 | unsigned alignment; |
| 6572 | |
Chris Wilson | d9e86c0 | 2010-11-10 16:40:20 +0000 | [diff] [blame] | 6573 | if (obj->tiling_mode) { |
| 6574 | DRM_ERROR("cursor cannot be tiled\n"); |
| 6575 | ret = -EINVAL; |
| 6576 | goto fail_locked; |
| 6577 | } |
| 6578 | |
Chris Wilson | 693db18 | 2013-03-05 14:52:39 +0000 | [diff] [blame] | 6579 | /* Note that the w/a also requires 2 PTE of padding following |
| 6580 | * the bo. We currently fill all unused PTE with the shadow |
| 6581 | * page and so we should always have valid PTE following the |
| 6582 | * cursor preventing the VT-d warning. |
| 6583 | */ |
| 6584 | alignment = 0; |
| 6585 | if (need_vtd_wa(dev)) |
| 6586 | alignment = 64*1024; |
| 6587 | |
| 6588 | ret = i915_gem_object_pin_to_display_plane(obj, alignment, NULL); |
Chris Wilson | e7b526b | 2010-06-02 08:30:48 +0100 | [diff] [blame] | 6589 | if (ret) { |
| 6590 | DRM_ERROR("failed to move cursor bo into the GTT\n"); |
Chris Wilson | 2da3b9b | 2011-04-14 09:41:17 +0100 | [diff] [blame] | 6591 | goto fail_locked; |
Chris Wilson | e7b526b | 2010-06-02 08:30:48 +0100 | [diff] [blame] | 6592 | } |
| 6593 | |
Chris Wilson | d9e86c0 | 2010-11-10 16:40:20 +0000 | [diff] [blame] | 6594 | ret = i915_gem_object_put_fence(obj); |
| 6595 | if (ret) { |
Chris Wilson | 2da3b9b | 2011-04-14 09:41:17 +0100 | [diff] [blame] | 6596 | DRM_ERROR("failed to release fence for cursor"); |
Chris Wilson | d9e86c0 | 2010-11-10 16:40:20 +0000 | [diff] [blame] | 6597 | goto fail_unpin; |
| 6598 | } |
| 6599 | |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 6600 | addr = obj->gtt_offset; |
Dave Airlie | 71acb5e | 2008-12-30 20:31:46 +1000 | [diff] [blame] | 6601 | } else { |
Chris Wilson | 6eeefaf | 2010-08-07 11:01:39 +0100 | [diff] [blame] | 6602 | int align = IS_I830(dev) ? 16 * 1024 : 256; |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 6603 | ret = i915_gem_attach_phys_object(dev, obj, |
Chris Wilson | 6eeefaf | 2010-08-07 11:01:39 +0100 | [diff] [blame] | 6604 | (intel_crtc->pipe == 0) ? I915_GEM_PHYS_CURSOR_0 : I915_GEM_PHYS_CURSOR_1, |
| 6605 | align); |
Dave Airlie | 71acb5e | 2008-12-30 20:31:46 +1000 | [diff] [blame] | 6606 | if (ret) { |
| 6607 | DRM_ERROR("failed to attach phys object\n"); |
Kristian Høgsberg | 7f9872e | 2009-02-13 20:56:49 -0500 | [diff] [blame] | 6608 | goto fail_locked; |
Dave Airlie | 71acb5e | 2008-12-30 20:31:46 +1000 | [diff] [blame] | 6609 | } |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 6610 | addr = obj->phys_obj->handle->busaddr; |
Kristian Høgsberg | 3f8bc37 | 2008-12-17 22:14:59 -0500 | [diff] [blame] | 6611 | } |
| 6612 | |
Chris Wilson | a6c45cf | 2010-09-17 00:32:17 +0100 | [diff] [blame] | 6613 | if (IS_GEN2(dev)) |
Jesse Barnes | 14b60391 | 2009-05-20 16:47:08 -0400 | [diff] [blame] | 6614 | I915_WRITE(CURSIZE, (height << 12) | width); |
| 6615 | |
Kristian Høgsberg | 3f8bc37 | 2008-12-17 22:14:59 -0500 | [diff] [blame] | 6616 | finish: |
Kristian Høgsberg | 3f8bc37 | 2008-12-17 22:14:59 -0500 | [diff] [blame] | 6617 | if (intel_crtc->cursor_bo) { |
Kristian Høgsberg | b295d1b | 2009-12-16 15:16:17 -0500 | [diff] [blame] | 6618 | if (dev_priv->info->cursor_needs_physical) { |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 6619 | if (intel_crtc->cursor_bo != obj) |
Dave Airlie | 71acb5e | 2008-12-30 20:31:46 +1000 | [diff] [blame] | 6620 | i915_gem_detach_phys_object(dev, intel_crtc->cursor_bo); |
| 6621 | } else |
| 6622 | i915_gem_object_unpin(intel_crtc->cursor_bo); |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 6623 | drm_gem_object_unreference(&intel_crtc->cursor_bo->base); |
Kristian Høgsberg | 3f8bc37 | 2008-12-17 22:14:59 -0500 | [diff] [blame] | 6624 | } |
Jesse Barnes | 8082400 | 2009-09-10 15:28:06 -0700 | [diff] [blame] | 6625 | |
Kristian Høgsberg | 7f9872e | 2009-02-13 20:56:49 -0500 | [diff] [blame] | 6626 | mutex_unlock(&dev->struct_mutex); |
Kristian Høgsberg | 3f8bc37 | 2008-12-17 22:14:59 -0500 | [diff] [blame] | 6627 | |
| 6628 | intel_crtc->cursor_addr = addr; |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 6629 | intel_crtc->cursor_bo = obj; |
Chris Wilson | cda4b7d | 2010-07-09 08:45:04 +0100 | [diff] [blame] | 6630 | intel_crtc->cursor_width = width; |
| 6631 | intel_crtc->cursor_height = height; |
| 6632 | |
Mika Kuoppala | 40ccc72 | 2013-04-23 17:27:08 +0300 | [diff] [blame] | 6633 | intel_crtc_update_cursor(crtc, intel_crtc->cursor_bo != NULL); |
Kristian Høgsberg | 3f8bc37 | 2008-12-17 22:14:59 -0500 | [diff] [blame] | 6634 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6635 | return 0; |
Chris Wilson | e7b526b | 2010-06-02 08:30:48 +0100 | [diff] [blame] | 6636 | fail_unpin: |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 6637 | i915_gem_object_unpin(obj); |
Kristian Høgsberg | 7f9872e | 2009-02-13 20:56:49 -0500 | [diff] [blame] | 6638 | fail_locked: |
Dave Airlie | 34b8686e | 2009-01-15 14:03:07 +1000 | [diff] [blame] | 6639 | mutex_unlock(&dev->struct_mutex); |
Luca Barbieri | bc9025b | 2010-02-09 05:49:12 +0000 | [diff] [blame] | 6640 | fail: |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 6641 | drm_gem_object_unreference_unlocked(&obj->base); |
Dave Airlie | 34b8686e | 2009-01-15 14:03:07 +1000 | [diff] [blame] | 6642 | return ret; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6643 | } |
| 6644 | |
| 6645 | static int intel_crtc_cursor_move(struct drm_crtc *crtc, int x, int y) |
| 6646 | { |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6647 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6648 | |
Chris Wilson | cda4b7d | 2010-07-09 08:45:04 +0100 | [diff] [blame] | 6649 | intel_crtc->cursor_x = x; |
| 6650 | intel_crtc->cursor_y = y; |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 6651 | |
Mika Kuoppala | 40ccc72 | 2013-04-23 17:27:08 +0300 | [diff] [blame] | 6652 | intel_crtc_update_cursor(crtc, intel_crtc->cursor_bo != NULL); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6653 | |
| 6654 | return 0; |
| 6655 | } |
| 6656 | |
| 6657 | /** Sets the color ramps on behalf of RandR */ |
| 6658 | void intel_crtc_fb_gamma_set(struct drm_crtc *crtc, u16 red, u16 green, |
| 6659 | u16 blue, int regno) |
| 6660 | { |
| 6661 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 6662 | |
| 6663 | intel_crtc->lut_r[regno] = red >> 8; |
| 6664 | intel_crtc->lut_g[regno] = green >> 8; |
| 6665 | intel_crtc->lut_b[regno] = blue >> 8; |
| 6666 | } |
| 6667 | |
Dave Airlie | b8c00ac | 2009-10-06 13:54:01 +1000 | [diff] [blame] | 6668 | void intel_crtc_fb_gamma_get(struct drm_crtc *crtc, u16 *red, u16 *green, |
| 6669 | u16 *blue, int regno) |
| 6670 | { |
| 6671 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 6672 | |
| 6673 | *red = intel_crtc->lut_r[regno] << 8; |
| 6674 | *green = intel_crtc->lut_g[regno] << 8; |
| 6675 | *blue = intel_crtc->lut_b[regno] << 8; |
| 6676 | } |
| 6677 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6678 | static void intel_crtc_gamma_set(struct drm_crtc *crtc, u16 *red, u16 *green, |
James Simmons | 7203425 | 2010-08-03 01:33:19 +0100 | [diff] [blame] | 6679 | u16 *blue, uint32_t start, uint32_t size) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6680 | { |
James Simmons | 7203425 | 2010-08-03 01:33:19 +0100 | [diff] [blame] | 6681 | int end = (start + size > 256) ? 256 : start + size, i; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6682 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6683 | |
James Simmons | 7203425 | 2010-08-03 01:33:19 +0100 | [diff] [blame] | 6684 | for (i = start; i < end; i++) { |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6685 | intel_crtc->lut_r[i] = red[i] >> 8; |
| 6686 | intel_crtc->lut_g[i] = green[i] >> 8; |
| 6687 | intel_crtc->lut_b[i] = blue[i] >> 8; |
| 6688 | } |
| 6689 | |
| 6690 | intel_crtc_load_lut(crtc); |
| 6691 | } |
| 6692 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6693 | /* VESA 640x480x72Hz mode to set on the pipe */ |
| 6694 | static struct drm_display_mode load_detect_mode = { |
| 6695 | DRM_MODE("640x480", DRM_MODE_TYPE_DEFAULT, 31500, 640, 664, |
| 6696 | 704, 832, 0, 480, 489, 491, 520, 0, DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC), |
| 6697 | }; |
| 6698 | |
Chris Wilson | d2dff87 | 2011-04-19 08:36:26 +0100 | [diff] [blame] | 6699 | static struct drm_framebuffer * |
| 6700 | intel_framebuffer_create(struct drm_device *dev, |
Jesse Barnes | 308e5bc | 2011-11-14 14:51:28 -0800 | [diff] [blame] | 6701 | struct drm_mode_fb_cmd2 *mode_cmd, |
Chris Wilson | d2dff87 | 2011-04-19 08:36:26 +0100 | [diff] [blame] | 6702 | struct drm_i915_gem_object *obj) |
| 6703 | { |
| 6704 | struct intel_framebuffer *intel_fb; |
| 6705 | int ret; |
| 6706 | |
| 6707 | intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL); |
| 6708 | if (!intel_fb) { |
| 6709 | drm_gem_object_unreference_unlocked(&obj->base); |
| 6710 | return ERR_PTR(-ENOMEM); |
| 6711 | } |
| 6712 | |
| 6713 | ret = intel_framebuffer_init(dev, intel_fb, mode_cmd, obj); |
| 6714 | if (ret) { |
| 6715 | drm_gem_object_unreference_unlocked(&obj->base); |
| 6716 | kfree(intel_fb); |
| 6717 | return ERR_PTR(ret); |
| 6718 | } |
| 6719 | |
| 6720 | return &intel_fb->base; |
| 6721 | } |
| 6722 | |
| 6723 | static u32 |
| 6724 | intel_framebuffer_pitch_for_width(int width, int bpp) |
| 6725 | { |
| 6726 | u32 pitch = DIV_ROUND_UP(width * bpp, 8); |
| 6727 | return ALIGN(pitch, 64); |
| 6728 | } |
| 6729 | |
| 6730 | static u32 |
| 6731 | intel_framebuffer_size_for_mode(struct drm_display_mode *mode, int bpp) |
| 6732 | { |
| 6733 | u32 pitch = intel_framebuffer_pitch_for_width(mode->hdisplay, bpp); |
| 6734 | return ALIGN(pitch * mode->vdisplay, PAGE_SIZE); |
| 6735 | } |
| 6736 | |
| 6737 | static struct drm_framebuffer * |
| 6738 | intel_framebuffer_create_for_mode(struct drm_device *dev, |
| 6739 | struct drm_display_mode *mode, |
| 6740 | int depth, int bpp) |
| 6741 | { |
| 6742 | struct drm_i915_gem_object *obj; |
Chris Wilson | 0fed39b | 2012-11-05 22:25:07 +0000 | [diff] [blame] | 6743 | struct drm_mode_fb_cmd2 mode_cmd = { 0 }; |
Chris Wilson | d2dff87 | 2011-04-19 08:36:26 +0100 | [diff] [blame] | 6744 | |
| 6745 | obj = i915_gem_alloc_object(dev, |
| 6746 | intel_framebuffer_size_for_mode(mode, bpp)); |
| 6747 | if (obj == NULL) |
| 6748 | return ERR_PTR(-ENOMEM); |
| 6749 | |
| 6750 | mode_cmd.width = mode->hdisplay; |
| 6751 | mode_cmd.height = mode->vdisplay; |
Jesse Barnes | 308e5bc | 2011-11-14 14:51:28 -0800 | [diff] [blame] | 6752 | mode_cmd.pitches[0] = intel_framebuffer_pitch_for_width(mode_cmd.width, |
| 6753 | bpp); |
Dave Airlie | 5ca0c34 | 2012-02-23 15:33:40 +0000 | [diff] [blame] | 6754 | mode_cmd.pixel_format = drm_mode_legacy_fb_format(bpp, depth); |
Chris Wilson | d2dff87 | 2011-04-19 08:36:26 +0100 | [diff] [blame] | 6755 | |
| 6756 | return intel_framebuffer_create(dev, &mode_cmd, obj); |
| 6757 | } |
| 6758 | |
| 6759 | static struct drm_framebuffer * |
| 6760 | mode_fits_in_fbdev(struct drm_device *dev, |
| 6761 | struct drm_display_mode *mode) |
| 6762 | { |
| 6763 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 6764 | struct drm_i915_gem_object *obj; |
| 6765 | struct drm_framebuffer *fb; |
| 6766 | |
| 6767 | if (dev_priv->fbdev == NULL) |
| 6768 | return NULL; |
| 6769 | |
| 6770 | obj = dev_priv->fbdev->ifb.obj; |
| 6771 | if (obj == NULL) |
| 6772 | return NULL; |
| 6773 | |
| 6774 | fb = &dev_priv->fbdev->ifb.base; |
Ville Syrjälä | 01f2c77 | 2011-12-20 00:06:49 +0200 | [diff] [blame] | 6775 | if (fb->pitches[0] < intel_framebuffer_pitch_for_width(mode->hdisplay, |
| 6776 | fb->bits_per_pixel)) |
Chris Wilson | d2dff87 | 2011-04-19 08:36:26 +0100 | [diff] [blame] | 6777 | return NULL; |
| 6778 | |
Ville Syrjälä | 01f2c77 | 2011-12-20 00:06:49 +0200 | [diff] [blame] | 6779 | if (obj->base.size < mode->vdisplay * fb->pitches[0]) |
Chris Wilson | d2dff87 | 2011-04-19 08:36:26 +0100 | [diff] [blame] | 6780 | return NULL; |
| 6781 | |
| 6782 | return fb; |
| 6783 | } |
| 6784 | |
Daniel Vetter | d2434ab | 2012-08-12 21:20:10 +0200 | [diff] [blame] | 6785 | bool intel_get_load_detect_pipe(struct drm_connector *connector, |
Chris Wilson | 7173188 | 2011-04-19 23:10:58 +0100 | [diff] [blame] | 6786 | struct drm_display_mode *mode, |
Chris Wilson | 8261b19 | 2011-04-19 23:18:09 +0100 | [diff] [blame] | 6787 | struct intel_load_detect_pipe *old) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6788 | { |
| 6789 | struct intel_crtc *intel_crtc; |
Daniel Vetter | d2434ab | 2012-08-12 21:20:10 +0200 | [diff] [blame] | 6790 | struct intel_encoder *intel_encoder = |
| 6791 | intel_attached_encoder(connector); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6792 | struct drm_crtc *possible_crtc; |
Chris Wilson | 4ef69c7 | 2010-09-09 15:14:28 +0100 | [diff] [blame] | 6793 | struct drm_encoder *encoder = &intel_encoder->base; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6794 | struct drm_crtc *crtc = NULL; |
| 6795 | struct drm_device *dev = encoder->dev; |
Daniel Vetter | 94352cf | 2012-07-05 22:51:56 +0200 | [diff] [blame] | 6796 | struct drm_framebuffer *fb; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6797 | int i = -1; |
| 6798 | |
Chris Wilson | d2dff87 | 2011-04-19 08:36:26 +0100 | [diff] [blame] | 6799 | DRM_DEBUG_KMS("[CONNECTOR:%d:%s], [ENCODER:%d:%s]\n", |
| 6800 | connector->base.id, drm_get_connector_name(connector), |
| 6801 | encoder->base.id, drm_get_encoder_name(encoder)); |
| 6802 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6803 | /* |
| 6804 | * Algorithm gets a little messy: |
Chris Wilson | 7a5e480 | 2011-04-19 23:21:12 +0100 | [diff] [blame] | 6805 | * |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6806 | * - if the connector already has an assigned crtc, use it (but make |
| 6807 | * sure it's on first) |
Chris Wilson | 7a5e480 | 2011-04-19 23:21:12 +0100 | [diff] [blame] | 6808 | * |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6809 | * - try to find the first unused crtc that can drive this connector, |
| 6810 | * and use that if we find one |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6811 | */ |
| 6812 | |
| 6813 | /* See if we already have a CRTC for this connector */ |
| 6814 | if (encoder->crtc) { |
| 6815 | crtc = encoder->crtc; |
Chris Wilson | 8261b19 | 2011-04-19 23:18:09 +0100 | [diff] [blame] | 6816 | |
Daniel Vetter | 7b24056 | 2012-12-12 00:35:33 +0100 | [diff] [blame] | 6817 | mutex_lock(&crtc->mutex); |
| 6818 | |
Daniel Vetter | 24218aa | 2012-08-12 19:27:11 +0200 | [diff] [blame] | 6819 | old->dpms_mode = connector->dpms; |
Chris Wilson | 8261b19 | 2011-04-19 23:18:09 +0100 | [diff] [blame] | 6820 | old->load_detect_temp = false; |
| 6821 | |
| 6822 | /* Make sure the crtc and connector are running */ |
Daniel Vetter | 24218aa | 2012-08-12 19:27:11 +0200 | [diff] [blame] | 6823 | if (connector->dpms != DRM_MODE_DPMS_ON) |
| 6824 | connector->funcs->dpms(connector, DRM_MODE_DPMS_ON); |
Chris Wilson | 8261b19 | 2011-04-19 23:18:09 +0100 | [diff] [blame] | 6825 | |
Chris Wilson | 7173188 | 2011-04-19 23:10:58 +0100 | [diff] [blame] | 6826 | return true; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6827 | } |
| 6828 | |
| 6829 | /* Find an unused one (if possible) */ |
| 6830 | list_for_each_entry(possible_crtc, &dev->mode_config.crtc_list, head) { |
| 6831 | i++; |
| 6832 | if (!(encoder->possible_crtcs & (1 << i))) |
| 6833 | continue; |
| 6834 | if (!possible_crtc->enabled) { |
| 6835 | crtc = possible_crtc; |
| 6836 | break; |
| 6837 | } |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6838 | } |
| 6839 | |
| 6840 | /* |
| 6841 | * If we didn't find an unused CRTC, don't use any. |
| 6842 | */ |
| 6843 | if (!crtc) { |
Chris Wilson | 7173188 | 2011-04-19 23:10:58 +0100 | [diff] [blame] | 6844 | DRM_DEBUG_KMS("no pipe available for load-detect\n"); |
| 6845 | return false; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6846 | } |
| 6847 | |
Daniel Vetter | 7b24056 | 2012-12-12 00:35:33 +0100 | [diff] [blame] | 6848 | mutex_lock(&crtc->mutex); |
Daniel Vetter | fc30310 | 2012-07-09 10:40:58 +0200 | [diff] [blame] | 6849 | intel_encoder->new_crtc = to_intel_crtc(crtc); |
| 6850 | to_intel_connector(connector)->new_encoder = intel_encoder; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6851 | |
| 6852 | intel_crtc = to_intel_crtc(crtc); |
Daniel Vetter | 24218aa | 2012-08-12 19:27:11 +0200 | [diff] [blame] | 6853 | old->dpms_mode = connector->dpms; |
Chris Wilson | 8261b19 | 2011-04-19 23:18:09 +0100 | [diff] [blame] | 6854 | old->load_detect_temp = true; |
Chris Wilson | d2dff87 | 2011-04-19 08:36:26 +0100 | [diff] [blame] | 6855 | old->release_fb = NULL; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6856 | |
Chris Wilson | 6492711 | 2011-04-20 07:25:26 +0100 | [diff] [blame] | 6857 | if (!mode) |
| 6858 | mode = &load_detect_mode; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6859 | |
Chris Wilson | d2dff87 | 2011-04-19 08:36:26 +0100 | [diff] [blame] | 6860 | /* We need a framebuffer large enough to accommodate all accesses |
| 6861 | * that the plane may generate whilst we perform load detection. |
| 6862 | * We can not rely on the fbcon either being present (we get called |
| 6863 | * during its initialisation to detect all boot displays, or it may |
| 6864 | * not even exist) or that it is large enough to satisfy the |
| 6865 | * requested mode. |
| 6866 | */ |
Daniel Vetter | 94352cf | 2012-07-05 22:51:56 +0200 | [diff] [blame] | 6867 | fb = mode_fits_in_fbdev(dev, mode); |
| 6868 | if (fb == NULL) { |
Chris Wilson | d2dff87 | 2011-04-19 08:36:26 +0100 | [diff] [blame] | 6869 | DRM_DEBUG_KMS("creating tmp fb for load-detection\n"); |
Daniel Vetter | 94352cf | 2012-07-05 22:51:56 +0200 | [diff] [blame] | 6870 | fb = intel_framebuffer_create_for_mode(dev, mode, 24, 32); |
| 6871 | old->release_fb = fb; |
Chris Wilson | d2dff87 | 2011-04-19 08:36:26 +0100 | [diff] [blame] | 6872 | } else |
| 6873 | DRM_DEBUG_KMS("reusing fbdev for load-detection framebuffer\n"); |
Daniel Vetter | 94352cf | 2012-07-05 22:51:56 +0200 | [diff] [blame] | 6874 | if (IS_ERR(fb)) { |
Chris Wilson | d2dff87 | 2011-04-19 08:36:26 +0100 | [diff] [blame] | 6875 | DRM_DEBUG_KMS("failed to allocate framebuffer for load-detection\n"); |
Daniel Vetter | 7b24056 | 2012-12-12 00:35:33 +0100 | [diff] [blame] | 6876 | mutex_unlock(&crtc->mutex); |
Chris Wilson | 0e8b3d3 | 2012-11-05 22:25:08 +0000 | [diff] [blame] | 6877 | return false; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6878 | } |
Chris Wilson | d2dff87 | 2011-04-19 08:36:26 +0100 | [diff] [blame] | 6879 | |
Chris Wilson | c0c36b94 | 2012-12-19 16:08:43 +0000 | [diff] [blame] | 6880 | if (intel_set_mode(crtc, mode, 0, 0, fb)) { |
Chris Wilson | 6492711 | 2011-04-20 07:25:26 +0100 | [diff] [blame] | 6881 | DRM_DEBUG_KMS("failed to set mode on load-detect pipe\n"); |
Chris Wilson | d2dff87 | 2011-04-19 08:36:26 +0100 | [diff] [blame] | 6882 | if (old->release_fb) |
| 6883 | old->release_fb->funcs->destroy(old->release_fb); |
Daniel Vetter | 7b24056 | 2012-12-12 00:35:33 +0100 | [diff] [blame] | 6884 | mutex_unlock(&crtc->mutex); |
Chris Wilson | 0e8b3d3 | 2012-11-05 22:25:08 +0000 | [diff] [blame] | 6885 | return false; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6886 | } |
Chris Wilson | 7173188 | 2011-04-19 23:10:58 +0100 | [diff] [blame] | 6887 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6888 | /* let the connector get through one full cycle before testing */ |
Jesse Barnes | 9d0498a | 2010-08-18 13:20:54 -0700 | [diff] [blame] | 6889 | intel_wait_for_vblank(dev, intel_crtc->pipe); |
Chris Wilson | 7173188 | 2011-04-19 23:10:58 +0100 | [diff] [blame] | 6890 | return true; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6891 | } |
| 6892 | |
Daniel Vetter | d2434ab | 2012-08-12 21:20:10 +0200 | [diff] [blame] | 6893 | void intel_release_load_detect_pipe(struct drm_connector *connector, |
Chris Wilson | 8261b19 | 2011-04-19 23:18:09 +0100 | [diff] [blame] | 6894 | struct intel_load_detect_pipe *old) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6895 | { |
Daniel Vetter | d2434ab | 2012-08-12 21:20:10 +0200 | [diff] [blame] | 6896 | struct intel_encoder *intel_encoder = |
| 6897 | intel_attached_encoder(connector); |
Chris Wilson | 4ef69c7 | 2010-09-09 15:14:28 +0100 | [diff] [blame] | 6898 | struct drm_encoder *encoder = &intel_encoder->base; |
Daniel Vetter | 7b24056 | 2012-12-12 00:35:33 +0100 | [diff] [blame] | 6899 | struct drm_crtc *crtc = encoder->crtc; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6900 | |
Chris Wilson | d2dff87 | 2011-04-19 08:36:26 +0100 | [diff] [blame] | 6901 | DRM_DEBUG_KMS("[CONNECTOR:%d:%s], [ENCODER:%d:%s]\n", |
| 6902 | connector->base.id, drm_get_connector_name(connector), |
| 6903 | encoder->base.id, drm_get_encoder_name(encoder)); |
| 6904 | |
Chris Wilson | 8261b19 | 2011-04-19 23:18:09 +0100 | [diff] [blame] | 6905 | if (old->load_detect_temp) { |
Daniel Vetter | fc30310 | 2012-07-09 10:40:58 +0200 | [diff] [blame] | 6906 | to_intel_connector(connector)->new_encoder = NULL; |
| 6907 | intel_encoder->new_crtc = NULL; |
| 6908 | intel_set_mode(crtc, NULL, 0, 0, NULL); |
Chris Wilson | d2dff87 | 2011-04-19 08:36:26 +0100 | [diff] [blame] | 6909 | |
Daniel Vetter | 3620636 | 2012-12-10 20:42:17 +0100 | [diff] [blame] | 6910 | if (old->release_fb) { |
| 6911 | drm_framebuffer_unregister_private(old->release_fb); |
| 6912 | drm_framebuffer_unreference(old->release_fb); |
| 6913 | } |
Chris Wilson | d2dff87 | 2011-04-19 08:36:26 +0100 | [diff] [blame] | 6914 | |
Daniel Vetter | 67c9640 | 2013-01-23 16:25:09 +0000 | [diff] [blame] | 6915 | mutex_unlock(&crtc->mutex); |
Chris Wilson | 0622a53 | 2011-04-21 09:32:11 +0100 | [diff] [blame] | 6916 | return; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6917 | } |
| 6918 | |
Eric Anholt | c751ce4 | 2010-03-25 11:48:48 -0700 | [diff] [blame] | 6919 | /* Switch crtc and encoder back off if necessary */ |
Daniel Vetter | 24218aa | 2012-08-12 19:27:11 +0200 | [diff] [blame] | 6920 | if (old->dpms_mode != DRM_MODE_DPMS_ON) |
| 6921 | connector->funcs->dpms(connector, old->dpms_mode); |
Daniel Vetter | 7b24056 | 2012-12-12 00:35:33 +0100 | [diff] [blame] | 6922 | |
| 6923 | mutex_unlock(&crtc->mutex); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6924 | } |
| 6925 | |
| 6926 | /* Returns the clock of the currently programmed mode of the given pipe. */ |
| 6927 | static int intel_crtc_clock_get(struct drm_device *dev, struct drm_crtc *crtc) |
| 6928 | { |
| 6929 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 6930 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 6931 | int pipe = intel_crtc->pipe; |
Jesse Barnes | 548f245 | 2011-02-17 10:40:53 -0800 | [diff] [blame] | 6932 | u32 dpll = I915_READ(DPLL(pipe)); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6933 | u32 fp; |
| 6934 | intel_clock_t clock; |
| 6935 | |
| 6936 | if ((dpll & DISPLAY_RATE_SELECT_FPA1) == 0) |
Chris Wilson | 39adb7a | 2011-04-22 22:17:21 +0100 | [diff] [blame] | 6937 | fp = I915_READ(FP0(pipe)); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6938 | else |
Chris Wilson | 39adb7a | 2011-04-22 22:17:21 +0100 | [diff] [blame] | 6939 | fp = I915_READ(FP1(pipe)); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6940 | |
| 6941 | clock.m1 = (fp & FP_M1_DIV_MASK) >> FP_M1_DIV_SHIFT; |
Adam Jackson | f2b115e | 2009-12-03 17:14:42 -0500 | [diff] [blame] | 6942 | if (IS_PINEVIEW(dev)) { |
| 6943 | clock.n = ffs((fp & FP_N_PINEVIEW_DIV_MASK) >> FP_N_DIV_SHIFT) - 1; |
| 6944 | clock.m2 = (fp & FP_M2_PINEVIEW_DIV_MASK) >> FP_M2_DIV_SHIFT; |
Shaohua Li | 2177832 | 2009-02-23 15:19:16 +0800 | [diff] [blame] | 6945 | } else { |
| 6946 | clock.n = (fp & FP_N_DIV_MASK) >> FP_N_DIV_SHIFT; |
| 6947 | clock.m2 = (fp & FP_M2_DIV_MASK) >> FP_M2_DIV_SHIFT; |
| 6948 | } |
| 6949 | |
Chris Wilson | a6c45cf | 2010-09-17 00:32:17 +0100 | [diff] [blame] | 6950 | if (!IS_GEN2(dev)) { |
Adam Jackson | f2b115e | 2009-12-03 17:14:42 -0500 | [diff] [blame] | 6951 | if (IS_PINEVIEW(dev)) |
| 6952 | clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK_PINEVIEW) >> |
| 6953 | DPLL_FPA01_P1_POST_DIV_SHIFT_PINEVIEW); |
Shaohua Li | 2177832 | 2009-02-23 15:19:16 +0800 | [diff] [blame] | 6954 | else |
| 6955 | clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK) >> |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6956 | DPLL_FPA01_P1_POST_DIV_SHIFT); |
| 6957 | |
| 6958 | switch (dpll & DPLL_MODE_MASK) { |
| 6959 | case DPLLB_MODE_DAC_SERIAL: |
| 6960 | clock.p2 = dpll & DPLL_DAC_SERIAL_P2_CLOCK_DIV_5 ? |
| 6961 | 5 : 10; |
| 6962 | break; |
| 6963 | case DPLLB_MODE_LVDS: |
| 6964 | clock.p2 = dpll & DPLLB_LVDS_P2_CLOCK_DIV_7 ? |
| 6965 | 7 : 14; |
| 6966 | break; |
| 6967 | default: |
Zhao Yakui | 28c9773 | 2009-10-09 11:39:41 +0800 | [diff] [blame] | 6968 | DRM_DEBUG_KMS("Unknown DPLL mode %08x in programmed " |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6969 | "mode\n", (int)(dpll & DPLL_MODE_MASK)); |
| 6970 | return 0; |
| 6971 | } |
| 6972 | |
Daniel Vetter | ac58c3f | 2013-06-01 17:16:17 +0200 | [diff] [blame^] | 6973 | if (IS_PINEVIEW(dev)) |
| 6974 | pineview_clock(96000, &clock); |
| 6975 | else |
| 6976 | i9xx_clock(96000, &clock); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6977 | } else { |
| 6978 | bool is_lvds = (pipe == 1) && (I915_READ(LVDS) & LVDS_PORT_EN); |
| 6979 | |
| 6980 | if (is_lvds) { |
| 6981 | clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK_I830_LVDS) >> |
| 6982 | DPLL_FPA01_P1_POST_DIV_SHIFT); |
| 6983 | clock.p2 = 14; |
| 6984 | |
| 6985 | if ((dpll & PLL_REF_INPUT_MASK) == |
| 6986 | PLLB_REF_INPUT_SPREADSPECTRUMIN) { |
| 6987 | /* XXX: might not be 66MHz */ |
Daniel Vetter | ac58c3f | 2013-06-01 17:16:17 +0200 | [diff] [blame^] | 6988 | i9xx_clock(66000, &clock); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6989 | } else |
Daniel Vetter | ac58c3f | 2013-06-01 17:16:17 +0200 | [diff] [blame^] | 6990 | i9xx_clock(48000, &clock); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6991 | } else { |
| 6992 | if (dpll & PLL_P1_DIVIDE_BY_TWO) |
| 6993 | clock.p1 = 2; |
| 6994 | else { |
| 6995 | clock.p1 = ((dpll & DPLL_FPA01_P1_POST_DIV_MASK_I830) >> |
| 6996 | DPLL_FPA01_P1_POST_DIV_SHIFT) + 2; |
| 6997 | } |
| 6998 | if (dpll & PLL_P2_DIVIDE_BY_4) |
| 6999 | clock.p2 = 4; |
| 7000 | else |
| 7001 | clock.p2 = 2; |
| 7002 | |
Daniel Vetter | ac58c3f | 2013-06-01 17:16:17 +0200 | [diff] [blame^] | 7003 | i9xx_clock(48000, &clock); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 7004 | } |
| 7005 | } |
| 7006 | |
| 7007 | /* XXX: It would be nice to validate the clocks, but we can't reuse |
| 7008 | * i830PllIsValid() because it relies on the xf86_config connector |
| 7009 | * configuration being accurate, which it isn't necessarily. |
| 7010 | */ |
| 7011 | |
| 7012 | return clock.dot; |
| 7013 | } |
| 7014 | |
| 7015 | /** Returns the currently programmed mode of the given pipe. */ |
| 7016 | struct drm_display_mode *intel_crtc_mode_get(struct drm_device *dev, |
| 7017 | struct drm_crtc *crtc) |
| 7018 | { |
Jesse Barnes | 548f245 | 2011-02-17 10:40:53 -0800 | [diff] [blame] | 7019 | struct drm_i915_private *dev_priv = dev->dev_private; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 7020 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
Daniel Vetter | 3b117c8 | 2013-04-17 20:15:07 +0200 | [diff] [blame] | 7021 | enum transcoder cpu_transcoder = intel_crtc->config.cpu_transcoder; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 7022 | struct drm_display_mode *mode; |
Paulo Zanoni | fe2b8f9 | 2012-10-23 18:30:02 -0200 | [diff] [blame] | 7023 | int htot = I915_READ(HTOTAL(cpu_transcoder)); |
| 7024 | int hsync = I915_READ(HSYNC(cpu_transcoder)); |
| 7025 | int vtot = I915_READ(VTOTAL(cpu_transcoder)); |
| 7026 | int vsync = I915_READ(VSYNC(cpu_transcoder)); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 7027 | |
| 7028 | mode = kzalloc(sizeof(*mode), GFP_KERNEL); |
| 7029 | if (!mode) |
| 7030 | return NULL; |
| 7031 | |
| 7032 | mode->clock = intel_crtc_clock_get(dev, crtc); |
| 7033 | mode->hdisplay = (htot & 0xffff) + 1; |
| 7034 | mode->htotal = ((htot & 0xffff0000) >> 16) + 1; |
| 7035 | mode->hsync_start = (hsync & 0xffff) + 1; |
| 7036 | mode->hsync_end = ((hsync & 0xffff0000) >> 16) + 1; |
| 7037 | mode->vdisplay = (vtot & 0xffff) + 1; |
| 7038 | mode->vtotal = ((vtot & 0xffff0000) >> 16) + 1; |
| 7039 | mode->vsync_start = (vsync & 0xffff) + 1; |
| 7040 | mode->vsync_end = ((vsync & 0xffff0000) >> 16) + 1; |
| 7041 | |
| 7042 | drm_mode_set_name(mode); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 7043 | |
| 7044 | return mode; |
| 7045 | } |
| 7046 | |
Daniel Vetter | 3dec009 | 2010-08-20 21:40:52 +0200 | [diff] [blame] | 7047 | static void intel_increase_pllclock(struct drm_crtc *crtc) |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 7048 | { |
| 7049 | struct drm_device *dev = crtc->dev; |
| 7050 | drm_i915_private_t *dev_priv = dev->dev_private; |
| 7051 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 7052 | int pipe = intel_crtc->pipe; |
Jesse Barnes | dbdc647 | 2010-12-30 09:36:39 -0800 | [diff] [blame] | 7053 | int dpll_reg = DPLL(pipe); |
| 7054 | int dpll; |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 7055 | |
Eric Anholt | bad720f | 2009-10-22 16:11:14 -0700 | [diff] [blame] | 7056 | if (HAS_PCH_SPLIT(dev)) |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 7057 | return; |
| 7058 | |
| 7059 | if (!dev_priv->lvds_downclock_avail) |
| 7060 | return; |
| 7061 | |
Jesse Barnes | dbdc647 | 2010-12-30 09:36:39 -0800 | [diff] [blame] | 7062 | dpll = I915_READ(dpll_reg); |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 7063 | if (!HAS_PIPE_CXSR(dev) && (dpll & DISPLAY_RATE_SELECT_FPA1)) { |
Zhao Yakui | 44d98a6 | 2009-10-09 11:39:40 +0800 | [diff] [blame] | 7064 | DRM_DEBUG_DRIVER("upclocking LVDS\n"); |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 7065 | |
Sean Paul | 8ac5a6d | 2012-02-13 13:14:51 -0500 | [diff] [blame] | 7066 | assert_panel_unlocked(dev_priv, pipe); |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 7067 | |
| 7068 | dpll &= ~DISPLAY_RATE_SELECT_FPA1; |
| 7069 | I915_WRITE(dpll_reg, dpll); |
Jesse Barnes | 9d0498a | 2010-08-18 13:20:54 -0700 | [diff] [blame] | 7070 | intel_wait_for_vblank(dev, pipe); |
Jesse Barnes | dbdc647 | 2010-12-30 09:36:39 -0800 | [diff] [blame] | 7071 | |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 7072 | dpll = I915_READ(dpll_reg); |
| 7073 | if (dpll & DISPLAY_RATE_SELECT_FPA1) |
Zhao Yakui | 44d98a6 | 2009-10-09 11:39:40 +0800 | [diff] [blame] | 7074 | DRM_DEBUG_DRIVER("failed to upclock LVDS!\n"); |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 7075 | } |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 7076 | } |
| 7077 | |
| 7078 | static void intel_decrease_pllclock(struct drm_crtc *crtc) |
| 7079 | { |
| 7080 | struct drm_device *dev = crtc->dev; |
| 7081 | drm_i915_private_t *dev_priv = dev->dev_private; |
| 7082 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 7083 | |
Eric Anholt | bad720f | 2009-10-22 16:11:14 -0700 | [diff] [blame] | 7084 | if (HAS_PCH_SPLIT(dev)) |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 7085 | return; |
| 7086 | |
| 7087 | if (!dev_priv->lvds_downclock_avail) |
| 7088 | return; |
| 7089 | |
| 7090 | /* |
| 7091 | * Since this is called by a timer, we should never get here in |
| 7092 | * the manual case. |
| 7093 | */ |
| 7094 | if (!HAS_PIPE_CXSR(dev) && intel_crtc->lowfreq_avail) { |
Chris Wilson | 074b5e1 | 2012-05-02 12:07:06 +0100 | [diff] [blame] | 7095 | int pipe = intel_crtc->pipe; |
| 7096 | int dpll_reg = DPLL(pipe); |
Daniel Vetter | dc257cf | 2012-05-07 11:30:46 +0200 | [diff] [blame] | 7097 | int dpll; |
Chris Wilson | 074b5e1 | 2012-05-02 12:07:06 +0100 | [diff] [blame] | 7098 | |
Zhao Yakui | 44d98a6 | 2009-10-09 11:39:40 +0800 | [diff] [blame] | 7099 | DRM_DEBUG_DRIVER("downclocking LVDS\n"); |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 7100 | |
Sean Paul | 8ac5a6d | 2012-02-13 13:14:51 -0500 | [diff] [blame] | 7101 | assert_panel_unlocked(dev_priv, pipe); |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 7102 | |
Chris Wilson | 074b5e1 | 2012-05-02 12:07:06 +0100 | [diff] [blame] | 7103 | dpll = I915_READ(dpll_reg); |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 7104 | dpll |= DISPLAY_RATE_SELECT_FPA1; |
| 7105 | I915_WRITE(dpll_reg, dpll); |
Jesse Barnes | 9d0498a | 2010-08-18 13:20:54 -0700 | [diff] [blame] | 7106 | intel_wait_for_vblank(dev, pipe); |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 7107 | dpll = I915_READ(dpll_reg); |
| 7108 | if (!(dpll & DISPLAY_RATE_SELECT_FPA1)) |
Zhao Yakui | 44d98a6 | 2009-10-09 11:39:40 +0800 | [diff] [blame] | 7109 | DRM_DEBUG_DRIVER("failed to downclock LVDS!\n"); |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 7110 | } |
| 7111 | |
| 7112 | } |
| 7113 | |
Chris Wilson | f047e39 | 2012-07-21 12:31:41 +0100 | [diff] [blame] | 7114 | void intel_mark_busy(struct drm_device *dev) |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 7115 | { |
Chris Wilson | f047e39 | 2012-07-21 12:31:41 +0100 | [diff] [blame] | 7116 | i915_update_gfx_val(dev->dev_private); |
| 7117 | } |
| 7118 | |
| 7119 | void intel_mark_idle(struct drm_device *dev) |
| 7120 | { |
Chris Wilson | 725a5b5 | 2013-01-08 11:02:57 +0000 | [diff] [blame] | 7121 | struct drm_crtc *crtc; |
| 7122 | |
| 7123 | if (!i915_powersave) |
| 7124 | return; |
| 7125 | |
| 7126 | list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) { |
| 7127 | if (!crtc->fb) |
| 7128 | continue; |
| 7129 | |
| 7130 | intel_decrease_pllclock(crtc); |
| 7131 | } |
Chris Wilson | f047e39 | 2012-07-21 12:31:41 +0100 | [diff] [blame] | 7132 | } |
| 7133 | |
| 7134 | void intel_mark_fb_busy(struct drm_i915_gem_object *obj) |
| 7135 | { |
| 7136 | struct drm_device *dev = obj->base.dev; |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 7137 | struct drm_crtc *crtc; |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 7138 | |
| 7139 | if (!i915_powersave) |
| 7140 | return; |
| 7141 | |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 7142 | list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) { |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 7143 | if (!crtc->fb) |
| 7144 | continue; |
| 7145 | |
Chris Wilson | f047e39 | 2012-07-21 12:31:41 +0100 | [diff] [blame] | 7146 | if (to_intel_framebuffer(crtc->fb)->obj == obj) |
| 7147 | intel_increase_pllclock(crtc); |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 7148 | } |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 7149 | } |
| 7150 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 7151 | static void intel_crtc_destroy(struct drm_crtc *crtc) |
| 7152 | { |
| 7153 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
Daniel Vetter | 67e77c5 | 2010-08-20 22:26:30 +0200 | [diff] [blame] | 7154 | struct drm_device *dev = crtc->dev; |
| 7155 | struct intel_unpin_work *work; |
| 7156 | unsigned long flags; |
| 7157 | |
| 7158 | spin_lock_irqsave(&dev->event_lock, flags); |
| 7159 | work = intel_crtc->unpin_work; |
| 7160 | intel_crtc->unpin_work = NULL; |
| 7161 | spin_unlock_irqrestore(&dev->event_lock, flags); |
| 7162 | |
| 7163 | if (work) { |
| 7164 | cancel_work_sync(&work->work); |
| 7165 | kfree(work); |
| 7166 | } |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 7167 | |
Mika Kuoppala | 40ccc72 | 2013-04-23 17:27:08 +0300 | [diff] [blame] | 7168 | intel_crtc_cursor_set(crtc, NULL, 0, 0, 0); |
| 7169 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 7170 | drm_crtc_cleanup(crtc); |
Daniel Vetter | 67e77c5 | 2010-08-20 22:26:30 +0200 | [diff] [blame] | 7171 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 7172 | kfree(intel_crtc); |
| 7173 | } |
| 7174 | |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 7175 | static void intel_unpin_work_fn(struct work_struct *__work) |
| 7176 | { |
| 7177 | struct intel_unpin_work *work = |
| 7178 | container_of(__work, struct intel_unpin_work, work); |
Chris Wilson | b4a98e5 | 2012-11-01 09:26:26 +0000 | [diff] [blame] | 7179 | struct drm_device *dev = work->crtc->dev; |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 7180 | |
Chris Wilson | b4a98e5 | 2012-11-01 09:26:26 +0000 | [diff] [blame] | 7181 | mutex_lock(&dev->struct_mutex); |
Chris Wilson | 1690e1e | 2011-12-14 13:57:08 +0100 | [diff] [blame] | 7182 | intel_unpin_fb_obj(work->old_fb_obj); |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 7183 | drm_gem_object_unreference(&work->pending_flip_obj->base); |
| 7184 | drm_gem_object_unreference(&work->old_fb_obj->base); |
Chris Wilson | d9e86c0 | 2010-11-10 16:40:20 +0000 | [diff] [blame] | 7185 | |
Chris Wilson | b4a98e5 | 2012-11-01 09:26:26 +0000 | [diff] [blame] | 7186 | intel_update_fbc(dev); |
| 7187 | mutex_unlock(&dev->struct_mutex); |
| 7188 | |
| 7189 | BUG_ON(atomic_read(&to_intel_crtc(work->crtc)->unpin_work_count) == 0); |
| 7190 | atomic_dec(&to_intel_crtc(work->crtc)->unpin_work_count); |
| 7191 | |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 7192 | kfree(work); |
| 7193 | } |
| 7194 | |
Jesse Barnes | 1afe3e9 | 2010-03-26 10:35:20 -0700 | [diff] [blame] | 7195 | static void do_intel_finish_page_flip(struct drm_device *dev, |
Mario Kleiner | 49b14a5 | 2010-12-09 07:00:07 +0100 | [diff] [blame] | 7196 | struct drm_crtc *crtc) |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 7197 | { |
| 7198 | drm_i915_private_t *dev_priv = dev->dev_private; |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 7199 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 7200 | struct intel_unpin_work *work; |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 7201 | unsigned long flags; |
| 7202 | |
| 7203 | /* Ignore early vblank irqs */ |
| 7204 | if (intel_crtc == NULL) |
| 7205 | return; |
| 7206 | |
| 7207 | spin_lock_irqsave(&dev->event_lock, flags); |
| 7208 | work = intel_crtc->unpin_work; |
Chris Wilson | e7d841c | 2012-12-03 11:36:30 +0000 | [diff] [blame] | 7209 | |
| 7210 | /* Ensure we don't miss a work->pending update ... */ |
| 7211 | smp_rmb(); |
| 7212 | |
| 7213 | if (work == NULL || atomic_read(&work->pending) < INTEL_FLIP_COMPLETE) { |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 7214 | spin_unlock_irqrestore(&dev->event_lock, flags); |
| 7215 | return; |
| 7216 | } |
| 7217 | |
Chris Wilson | e7d841c | 2012-12-03 11:36:30 +0000 | [diff] [blame] | 7218 | /* and that the unpin work is consistent wrt ->pending. */ |
| 7219 | smp_rmb(); |
| 7220 | |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 7221 | intel_crtc->unpin_work = NULL; |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 7222 | |
Rob Clark | 45a066e | 2012-10-08 14:50:40 -0500 | [diff] [blame] | 7223 | if (work->event) |
| 7224 | drm_send_vblank_event(dev, intel_crtc->pipe, work->event); |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 7225 | |
Mario Kleiner | 0af7e4d | 2010-12-08 04:07:19 +0100 | [diff] [blame] | 7226 | drm_vblank_put(dev, intel_crtc->pipe); |
| 7227 | |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 7228 | spin_unlock_irqrestore(&dev->event_lock, flags); |
| 7229 | |
Daniel Vetter | 2c10d57 | 2012-12-20 21:24:07 +0100 | [diff] [blame] | 7230 | wake_up_all(&dev_priv->pending_flip_queue); |
Chris Wilson | b4a98e5 | 2012-11-01 09:26:26 +0000 | [diff] [blame] | 7231 | |
| 7232 | queue_work(dev_priv->wq, &work->work); |
Jesse Barnes | e5510fa | 2010-07-01 16:48:37 -0700 | [diff] [blame] | 7233 | |
| 7234 | trace_i915_flip_complete(intel_crtc->plane, work->pending_flip_obj); |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 7235 | } |
| 7236 | |
Jesse Barnes | 1afe3e9 | 2010-03-26 10:35:20 -0700 | [diff] [blame] | 7237 | void intel_finish_page_flip(struct drm_device *dev, int pipe) |
| 7238 | { |
| 7239 | drm_i915_private_t *dev_priv = dev->dev_private; |
| 7240 | struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe]; |
| 7241 | |
Mario Kleiner | 49b14a5 | 2010-12-09 07:00:07 +0100 | [diff] [blame] | 7242 | do_intel_finish_page_flip(dev, crtc); |
Jesse Barnes | 1afe3e9 | 2010-03-26 10:35:20 -0700 | [diff] [blame] | 7243 | } |
| 7244 | |
| 7245 | void intel_finish_page_flip_plane(struct drm_device *dev, int plane) |
| 7246 | { |
| 7247 | drm_i915_private_t *dev_priv = dev->dev_private; |
| 7248 | struct drm_crtc *crtc = dev_priv->plane_to_crtc_mapping[plane]; |
| 7249 | |
Mario Kleiner | 49b14a5 | 2010-12-09 07:00:07 +0100 | [diff] [blame] | 7250 | do_intel_finish_page_flip(dev, crtc); |
Jesse Barnes | 1afe3e9 | 2010-03-26 10:35:20 -0700 | [diff] [blame] | 7251 | } |
| 7252 | |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 7253 | void intel_prepare_page_flip(struct drm_device *dev, int plane) |
| 7254 | { |
| 7255 | drm_i915_private_t *dev_priv = dev->dev_private; |
| 7256 | struct intel_crtc *intel_crtc = |
| 7257 | to_intel_crtc(dev_priv->plane_to_crtc_mapping[plane]); |
| 7258 | unsigned long flags; |
| 7259 | |
Chris Wilson | e7d841c | 2012-12-03 11:36:30 +0000 | [diff] [blame] | 7260 | /* NB: An MMIO update of the plane base pointer will also |
| 7261 | * generate a page-flip completion irq, i.e. every modeset |
| 7262 | * is also accompanied by a spurious intel_prepare_page_flip(). |
| 7263 | */ |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 7264 | spin_lock_irqsave(&dev->event_lock, flags); |
Chris Wilson | e7d841c | 2012-12-03 11:36:30 +0000 | [diff] [blame] | 7265 | if (intel_crtc->unpin_work) |
| 7266 | atomic_inc_not_zero(&intel_crtc->unpin_work->pending); |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 7267 | spin_unlock_irqrestore(&dev->event_lock, flags); |
| 7268 | } |
| 7269 | |
Chris Wilson | e7d841c | 2012-12-03 11:36:30 +0000 | [diff] [blame] | 7270 | inline static void intel_mark_page_flip_active(struct intel_crtc *intel_crtc) |
| 7271 | { |
| 7272 | /* Ensure that the work item is consistent when activating it ... */ |
| 7273 | smp_wmb(); |
| 7274 | atomic_set(&intel_crtc->unpin_work->pending, INTEL_FLIP_PENDING); |
| 7275 | /* and that it is marked active as soon as the irq could fire. */ |
| 7276 | smp_wmb(); |
| 7277 | } |
| 7278 | |
Jesse Barnes | 8c9f3aa | 2011-06-16 09:19:13 -0700 | [diff] [blame] | 7279 | static int intel_gen2_queue_flip(struct drm_device *dev, |
| 7280 | struct drm_crtc *crtc, |
| 7281 | struct drm_framebuffer *fb, |
| 7282 | struct drm_i915_gem_object *obj) |
| 7283 | { |
| 7284 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 7285 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
Jesse Barnes | 8c9f3aa | 2011-06-16 09:19:13 -0700 | [diff] [blame] | 7286 | u32 flip_mask; |
Daniel Vetter | 6d90c95 | 2012-04-26 23:28:05 +0200 | [diff] [blame] | 7287 | struct intel_ring_buffer *ring = &dev_priv->ring[RCS]; |
Jesse Barnes | 8c9f3aa | 2011-06-16 09:19:13 -0700 | [diff] [blame] | 7288 | int ret; |
| 7289 | |
Daniel Vetter | 6d90c95 | 2012-04-26 23:28:05 +0200 | [diff] [blame] | 7290 | ret = intel_pin_and_fence_fb_obj(dev, obj, ring); |
Jesse Barnes | 8c9f3aa | 2011-06-16 09:19:13 -0700 | [diff] [blame] | 7291 | if (ret) |
Chris Wilson | 83d4092 | 2012-04-17 19:35:53 +0100 | [diff] [blame] | 7292 | goto err; |
Jesse Barnes | 8c9f3aa | 2011-06-16 09:19:13 -0700 | [diff] [blame] | 7293 | |
Daniel Vetter | 6d90c95 | 2012-04-26 23:28:05 +0200 | [diff] [blame] | 7294 | ret = intel_ring_begin(ring, 6); |
Jesse Barnes | 8c9f3aa | 2011-06-16 09:19:13 -0700 | [diff] [blame] | 7295 | if (ret) |
Chris Wilson | 83d4092 | 2012-04-17 19:35:53 +0100 | [diff] [blame] | 7296 | goto err_unpin; |
Jesse Barnes | 8c9f3aa | 2011-06-16 09:19:13 -0700 | [diff] [blame] | 7297 | |
| 7298 | /* Can't queue multiple flips, so wait for the previous |
| 7299 | * one to finish before executing the next. |
| 7300 | */ |
| 7301 | if (intel_crtc->plane) |
| 7302 | flip_mask = MI_WAIT_FOR_PLANE_B_FLIP; |
| 7303 | else |
| 7304 | flip_mask = MI_WAIT_FOR_PLANE_A_FLIP; |
Daniel Vetter | 6d90c95 | 2012-04-26 23:28:05 +0200 | [diff] [blame] | 7305 | intel_ring_emit(ring, MI_WAIT_FOR_EVENT | flip_mask); |
| 7306 | intel_ring_emit(ring, MI_NOOP); |
| 7307 | intel_ring_emit(ring, MI_DISPLAY_FLIP | |
| 7308 | MI_DISPLAY_FLIP_PLANE(intel_crtc->plane)); |
| 7309 | intel_ring_emit(ring, fb->pitches[0]); |
Daniel Vetter | e506a0c | 2012-07-05 12:17:29 +0200 | [diff] [blame] | 7310 | intel_ring_emit(ring, obj->gtt_offset + intel_crtc->dspaddr_offset); |
Daniel Vetter | 6d90c95 | 2012-04-26 23:28:05 +0200 | [diff] [blame] | 7311 | intel_ring_emit(ring, 0); /* aux display base address, unused */ |
Chris Wilson | e7d841c | 2012-12-03 11:36:30 +0000 | [diff] [blame] | 7312 | |
| 7313 | intel_mark_page_flip_active(intel_crtc); |
Daniel Vetter | 6d90c95 | 2012-04-26 23:28:05 +0200 | [diff] [blame] | 7314 | intel_ring_advance(ring); |
Chris Wilson | 83d4092 | 2012-04-17 19:35:53 +0100 | [diff] [blame] | 7315 | return 0; |
| 7316 | |
| 7317 | err_unpin: |
| 7318 | intel_unpin_fb_obj(obj); |
| 7319 | err: |
Jesse Barnes | 8c9f3aa | 2011-06-16 09:19:13 -0700 | [diff] [blame] | 7320 | return ret; |
| 7321 | } |
| 7322 | |
| 7323 | static int intel_gen3_queue_flip(struct drm_device *dev, |
| 7324 | struct drm_crtc *crtc, |
| 7325 | struct drm_framebuffer *fb, |
| 7326 | struct drm_i915_gem_object *obj) |
| 7327 | { |
| 7328 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 7329 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
Jesse Barnes | 8c9f3aa | 2011-06-16 09:19:13 -0700 | [diff] [blame] | 7330 | u32 flip_mask; |
Daniel Vetter | 6d90c95 | 2012-04-26 23:28:05 +0200 | [diff] [blame] | 7331 | struct intel_ring_buffer *ring = &dev_priv->ring[RCS]; |
Jesse Barnes | 8c9f3aa | 2011-06-16 09:19:13 -0700 | [diff] [blame] | 7332 | int ret; |
| 7333 | |
Daniel Vetter | 6d90c95 | 2012-04-26 23:28:05 +0200 | [diff] [blame] | 7334 | ret = intel_pin_and_fence_fb_obj(dev, obj, ring); |
Jesse Barnes | 8c9f3aa | 2011-06-16 09:19:13 -0700 | [diff] [blame] | 7335 | if (ret) |
Chris Wilson | 83d4092 | 2012-04-17 19:35:53 +0100 | [diff] [blame] | 7336 | goto err; |
Jesse Barnes | 8c9f3aa | 2011-06-16 09:19:13 -0700 | [diff] [blame] | 7337 | |
Daniel Vetter | 6d90c95 | 2012-04-26 23:28:05 +0200 | [diff] [blame] | 7338 | ret = intel_ring_begin(ring, 6); |
Jesse Barnes | 8c9f3aa | 2011-06-16 09:19:13 -0700 | [diff] [blame] | 7339 | if (ret) |
Chris Wilson | 83d4092 | 2012-04-17 19:35:53 +0100 | [diff] [blame] | 7340 | goto err_unpin; |
Jesse Barnes | 8c9f3aa | 2011-06-16 09:19:13 -0700 | [diff] [blame] | 7341 | |
| 7342 | if (intel_crtc->plane) |
| 7343 | flip_mask = MI_WAIT_FOR_PLANE_B_FLIP; |
| 7344 | else |
| 7345 | flip_mask = MI_WAIT_FOR_PLANE_A_FLIP; |
Daniel Vetter | 6d90c95 | 2012-04-26 23:28:05 +0200 | [diff] [blame] | 7346 | intel_ring_emit(ring, MI_WAIT_FOR_EVENT | flip_mask); |
| 7347 | intel_ring_emit(ring, MI_NOOP); |
| 7348 | intel_ring_emit(ring, MI_DISPLAY_FLIP_I915 | |
| 7349 | MI_DISPLAY_FLIP_PLANE(intel_crtc->plane)); |
| 7350 | intel_ring_emit(ring, fb->pitches[0]); |
Daniel Vetter | e506a0c | 2012-07-05 12:17:29 +0200 | [diff] [blame] | 7351 | intel_ring_emit(ring, obj->gtt_offset + intel_crtc->dspaddr_offset); |
Daniel Vetter | 6d90c95 | 2012-04-26 23:28:05 +0200 | [diff] [blame] | 7352 | intel_ring_emit(ring, MI_NOOP); |
Jesse Barnes | 8c9f3aa | 2011-06-16 09:19:13 -0700 | [diff] [blame] | 7353 | |
Chris Wilson | e7d841c | 2012-12-03 11:36:30 +0000 | [diff] [blame] | 7354 | intel_mark_page_flip_active(intel_crtc); |
Daniel Vetter | 6d90c95 | 2012-04-26 23:28:05 +0200 | [diff] [blame] | 7355 | intel_ring_advance(ring); |
Chris Wilson | 83d4092 | 2012-04-17 19:35:53 +0100 | [diff] [blame] | 7356 | return 0; |
| 7357 | |
| 7358 | err_unpin: |
| 7359 | intel_unpin_fb_obj(obj); |
| 7360 | err: |
Jesse Barnes | 8c9f3aa | 2011-06-16 09:19:13 -0700 | [diff] [blame] | 7361 | return ret; |
| 7362 | } |
| 7363 | |
| 7364 | static int intel_gen4_queue_flip(struct drm_device *dev, |
| 7365 | struct drm_crtc *crtc, |
| 7366 | struct drm_framebuffer *fb, |
| 7367 | struct drm_i915_gem_object *obj) |
| 7368 | { |
| 7369 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 7370 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 7371 | uint32_t pf, pipesrc; |
Daniel Vetter | 6d90c95 | 2012-04-26 23:28:05 +0200 | [diff] [blame] | 7372 | struct intel_ring_buffer *ring = &dev_priv->ring[RCS]; |
Jesse Barnes | 8c9f3aa | 2011-06-16 09:19:13 -0700 | [diff] [blame] | 7373 | int ret; |
| 7374 | |
Daniel Vetter | 6d90c95 | 2012-04-26 23:28:05 +0200 | [diff] [blame] | 7375 | ret = intel_pin_and_fence_fb_obj(dev, obj, ring); |
Jesse Barnes | 8c9f3aa | 2011-06-16 09:19:13 -0700 | [diff] [blame] | 7376 | if (ret) |
Chris Wilson | 83d4092 | 2012-04-17 19:35:53 +0100 | [diff] [blame] | 7377 | goto err; |
Jesse Barnes | 8c9f3aa | 2011-06-16 09:19:13 -0700 | [diff] [blame] | 7378 | |
Daniel Vetter | 6d90c95 | 2012-04-26 23:28:05 +0200 | [diff] [blame] | 7379 | ret = intel_ring_begin(ring, 4); |
Jesse Barnes | 8c9f3aa | 2011-06-16 09:19:13 -0700 | [diff] [blame] | 7380 | if (ret) |
Chris Wilson | 83d4092 | 2012-04-17 19:35:53 +0100 | [diff] [blame] | 7381 | goto err_unpin; |
Jesse Barnes | 8c9f3aa | 2011-06-16 09:19:13 -0700 | [diff] [blame] | 7382 | |
| 7383 | /* i965+ uses the linear or tiled offsets from the |
| 7384 | * Display Registers (which do not change across a page-flip) |
| 7385 | * so we need only reprogram the base address. |
| 7386 | */ |
Daniel Vetter | 6d90c95 | 2012-04-26 23:28:05 +0200 | [diff] [blame] | 7387 | intel_ring_emit(ring, MI_DISPLAY_FLIP | |
| 7388 | MI_DISPLAY_FLIP_PLANE(intel_crtc->plane)); |
| 7389 | intel_ring_emit(ring, fb->pitches[0]); |
Daniel Vetter | c2c7513 | 2012-07-05 12:17:30 +0200 | [diff] [blame] | 7390 | intel_ring_emit(ring, |
| 7391 | (obj->gtt_offset + intel_crtc->dspaddr_offset) | |
| 7392 | obj->tiling_mode); |
Jesse Barnes | 8c9f3aa | 2011-06-16 09:19:13 -0700 | [diff] [blame] | 7393 | |
| 7394 | /* XXX Enabling the panel-fitter across page-flip is so far |
| 7395 | * untested on non-native modes, so ignore it for now. |
| 7396 | * pf = I915_READ(pipe == 0 ? PFA_CTL_1 : PFB_CTL_1) & PF_ENABLE; |
| 7397 | */ |
| 7398 | pf = 0; |
| 7399 | pipesrc = I915_READ(PIPESRC(intel_crtc->pipe)) & 0x0fff0fff; |
Daniel Vetter | 6d90c95 | 2012-04-26 23:28:05 +0200 | [diff] [blame] | 7400 | intel_ring_emit(ring, pf | pipesrc); |
Chris Wilson | e7d841c | 2012-12-03 11:36:30 +0000 | [diff] [blame] | 7401 | |
| 7402 | intel_mark_page_flip_active(intel_crtc); |
Daniel Vetter | 6d90c95 | 2012-04-26 23:28:05 +0200 | [diff] [blame] | 7403 | intel_ring_advance(ring); |
Chris Wilson | 83d4092 | 2012-04-17 19:35:53 +0100 | [diff] [blame] | 7404 | return 0; |
| 7405 | |
| 7406 | err_unpin: |
| 7407 | intel_unpin_fb_obj(obj); |
| 7408 | err: |
Jesse Barnes | 8c9f3aa | 2011-06-16 09:19:13 -0700 | [diff] [blame] | 7409 | return ret; |
| 7410 | } |
| 7411 | |
| 7412 | static int intel_gen6_queue_flip(struct drm_device *dev, |
| 7413 | struct drm_crtc *crtc, |
| 7414 | struct drm_framebuffer *fb, |
| 7415 | struct drm_i915_gem_object *obj) |
| 7416 | { |
| 7417 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 7418 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
Daniel Vetter | 6d90c95 | 2012-04-26 23:28:05 +0200 | [diff] [blame] | 7419 | struct intel_ring_buffer *ring = &dev_priv->ring[RCS]; |
Jesse Barnes | 8c9f3aa | 2011-06-16 09:19:13 -0700 | [diff] [blame] | 7420 | uint32_t pf, pipesrc; |
| 7421 | int ret; |
| 7422 | |
Daniel Vetter | 6d90c95 | 2012-04-26 23:28:05 +0200 | [diff] [blame] | 7423 | ret = intel_pin_and_fence_fb_obj(dev, obj, ring); |
Jesse Barnes | 8c9f3aa | 2011-06-16 09:19:13 -0700 | [diff] [blame] | 7424 | if (ret) |
Chris Wilson | 83d4092 | 2012-04-17 19:35:53 +0100 | [diff] [blame] | 7425 | goto err; |
Jesse Barnes | 8c9f3aa | 2011-06-16 09:19:13 -0700 | [diff] [blame] | 7426 | |
Daniel Vetter | 6d90c95 | 2012-04-26 23:28:05 +0200 | [diff] [blame] | 7427 | ret = intel_ring_begin(ring, 4); |
Jesse Barnes | 8c9f3aa | 2011-06-16 09:19:13 -0700 | [diff] [blame] | 7428 | if (ret) |
Chris Wilson | 83d4092 | 2012-04-17 19:35:53 +0100 | [diff] [blame] | 7429 | goto err_unpin; |
Jesse Barnes | 8c9f3aa | 2011-06-16 09:19:13 -0700 | [diff] [blame] | 7430 | |
Daniel Vetter | 6d90c95 | 2012-04-26 23:28:05 +0200 | [diff] [blame] | 7431 | intel_ring_emit(ring, MI_DISPLAY_FLIP | |
| 7432 | MI_DISPLAY_FLIP_PLANE(intel_crtc->plane)); |
| 7433 | intel_ring_emit(ring, fb->pitches[0] | obj->tiling_mode); |
Daniel Vetter | c2c7513 | 2012-07-05 12:17:30 +0200 | [diff] [blame] | 7434 | intel_ring_emit(ring, obj->gtt_offset + intel_crtc->dspaddr_offset); |
Jesse Barnes | 8c9f3aa | 2011-06-16 09:19:13 -0700 | [diff] [blame] | 7435 | |
Chris Wilson | 99d9acd | 2012-04-17 20:37:00 +0100 | [diff] [blame] | 7436 | /* Contrary to the suggestions in the documentation, |
| 7437 | * "Enable Panel Fitter" does not seem to be required when page |
| 7438 | * flipping with a non-native mode, and worse causes a normal |
| 7439 | * modeset to fail. |
| 7440 | * pf = I915_READ(PF_CTL(intel_crtc->pipe)) & PF_ENABLE; |
| 7441 | */ |
| 7442 | pf = 0; |
Jesse Barnes | 8c9f3aa | 2011-06-16 09:19:13 -0700 | [diff] [blame] | 7443 | pipesrc = I915_READ(PIPESRC(intel_crtc->pipe)) & 0x0fff0fff; |
Daniel Vetter | 6d90c95 | 2012-04-26 23:28:05 +0200 | [diff] [blame] | 7444 | intel_ring_emit(ring, pf | pipesrc); |
Chris Wilson | e7d841c | 2012-12-03 11:36:30 +0000 | [diff] [blame] | 7445 | |
| 7446 | intel_mark_page_flip_active(intel_crtc); |
Daniel Vetter | 6d90c95 | 2012-04-26 23:28:05 +0200 | [diff] [blame] | 7447 | intel_ring_advance(ring); |
Chris Wilson | 83d4092 | 2012-04-17 19:35:53 +0100 | [diff] [blame] | 7448 | return 0; |
| 7449 | |
| 7450 | err_unpin: |
| 7451 | intel_unpin_fb_obj(obj); |
| 7452 | err: |
Jesse Barnes | 8c9f3aa | 2011-06-16 09:19:13 -0700 | [diff] [blame] | 7453 | return ret; |
| 7454 | } |
| 7455 | |
Jesse Barnes | 7c9017e | 2011-06-16 12:18:54 -0700 | [diff] [blame] | 7456 | /* |
| 7457 | * On gen7 we currently use the blit ring because (in early silicon at least) |
| 7458 | * the render ring doesn't give us interrpts for page flip completion, which |
| 7459 | * means clients will hang after the first flip is queued. Fortunately the |
| 7460 | * blit ring generates interrupts properly, so use it instead. |
| 7461 | */ |
| 7462 | static int intel_gen7_queue_flip(struct drm_device *dev, |
| 7463 | struct drm_crtc *crtc, |
| 7464 | struct drm_framebuffer *fb, |
| 7465 | struct drm_i915_gem_object *obj) |
| 7466 | { |
| 7467 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 7468 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 7469 | struct intel_ring_buffer *ring = &dev_priv->ring[BCS]; |
Daniel Vetter | cb05d8d | 2012-05-23 14:02:00 +0200 | [diff] [blame] | 7470 | uint32_t plane_bit = 0; |
Jesse Barnes | 7c9017e | 2011-06-16 12:18:54 -0700 | [diff] [blame] | 7471 | int ret; |
| 7472 | |
| 7473 | ret = intel_pin_and_fence_fb_obj(dev, obj, ring); |
| 7474 | if (ret) |
Chris Wilson | 83d4092 | 2012-04-17 19:35:53 +0100 | [diff] [blame] | 7475 | goto err; |
Jesse Barnes | 7c9017e | 2011-06-16 12:18:54 -0700 | [diff] [blame] | 7476 | |
Daniel Vetter | cb05d8d | 2012-05-23 14:02:00 +0200 | [diff] [blame] | 7477 | switch(intel_crtc->plane) { |
| 7478 | case PLANE_A: |
| 7479 | plane_bit = MI_DISPLAY_FLIP_IVB_PLANE_A; |
| 7480 | break; |
| 7481 | case PLANE_B: |
| 7482 | plane_bit = MI_DISPLAY_FLIP_IVB_PLANE_B; |
| 7483 | break; |
| 7484 | case PLANE_C: |
| 7485 | plane_bit = MI_DISPLAY_FLIP_IVB_PLANE_C; |
| 7486 | break; |
| 7487 | default: |
| 7488 | WARN_ONCE(1, "unknown plane in flip command\n"); |
| 7489 | ret = -ENODEV; |
Eugeni Dodonov | ab3951e | 2012-06-18 19:03:38 -0300 | [diff] [blame] | 7490 | goto err_unpin; |
Daniel Vetter | cb05d8d | 2012-05-23 14:02:00 +0200 | [diff] [blame] | 7491 | } |
| 7492 | |
Jesse Barnes | 7c9017e | 2011-06-16 12:18:54 -0700 | [diff] [blame] | 7493 | ret = intel_ring_begin(ring, 4); |
| 7494 | if (ret) |
Chris Wilson | 83d4092 | 2012-04-17 19:35:53 +0100 | [diff] [blame] | 7495 | goto err_unpin; |
Jesse Barnes | 7c9017e | 2011-06-16 12:18:54 -0700 | [diff] [blame] | 7496 | |
Daniel Vetter | cb05d8d | 2012-05-23 14:02:00 +0200 | [diff] [blame] | 7497 | intel_ring_emit(ring, MI_DISPLAY_FLIP_I915 | plane_bit); |
Ville Syrjälä | 01f2c77 | 2011-12-20 00:06:49 +0200 | [diff] [blame] | 7498 | intel_ring_emit(ring, (fb->pitches[0] | obj->tiling_mode)); |
Daniel Vetter | c2c7513 | 2012-07-05 12:17:30 +0200 | [diff] [blame] | 7499 | intel_ring_emit(ring, obj->gtt_offset + intel_crtc->dspaddr_offset); |
Jesse Barnes | 7c9017e | 2011-06-16 12:18:54 -0700 | [diff] [blame] | 7500 | intel_ring_emit(ring, (MI_NOOP)); |
Chris Wilson | e7d841c | 2012-12-03 11:36:30 +0000 | [diff] [blame] | 7501 | |
| 7502 | intel_mark_page_flip_active(intel_crtc); |
Jesse Barnes | 7c9017e | 2011-06-16 12:18:54 -0700 | [diff] [blame] | 7503 | intel_ring_advance(ring); |
Chris Wilson | 83d4092 | 2012-04-17 19:35:53 +0100 | [diff] [blame] | 7504 | return 0; |
| 7505 | |
| 7506 | err_unpin: |
| 7507 | intel_unpin_fb_obj(obj); |
| 7508 | err: |
Jesse Barnes | 7c9017e | 2011-06-16 12:18:54 -0700 | [diff] [blame] | 7509 | return ret; |
| 7510 | } |
| 7511 | |
Jesse Barnes | 8c9f3aa | 2011-06-16 09:19:13 -0700 | [diff] [blame] | 7512 | static int intel_default_queue_flip(struct drm_device *dev, |
| 7513 | struct drm_crtc *crtc, |
| 7514 | struct drm_framebuffer *fb, |
| 7515 | struct drm_i915_gem_object *obj) |
| 7516 | { |
| 7517 | return -ENODEV; |
| 7518 | } |
| 7519 | |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 7520 | static int intel_crtc_page_flip(struct drm_crtc *crtc, |
| 7521 | struct drm_framebuffer *fb, |
| 7522 | struct drm_pending_vblank_event *event) |
| 7523 | { |
| 7524 | struct drm_device *dev = crtc->dev; |
| 7525 | struct drm_i915_private *dev_priv = dev->dev_private; |
Ville Syrjälä | 4a35f83 | 2013-02-22 16:53:38 +0200 | [diff] [blame] | 7526 | struct drm_framebuffer *old_fb = crtc->fb; |
| 7527 | struct drm_i915_gem_object *obj = to_intel_framebuffer(fb)->obj; |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 7528 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 7529 | struct intel_unpin_work *work; |
Jesse Barnes | 8c9f3aa | 2011-06-16 09:19:13 -0700 | [diff] [blame] | 7530 | unsigned long flags; |
Chris Wilson | 52e6863 | 2010-08-08 10:15:59 +0100 | [diff] [blame] | 7531 | int ret; |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 7532 | |
Ville Syrjälä | e6a595d | 2012-05-24 21:08:59 +0300 | [diff] [blame] | 7533 | /* Can't change pixel format via MI display flips. */ |
| 7534 | if (fb->pixel_format != crtc->fb->pixel_format) |
| 7535 | return -EINVAL; |
| 7536 | |
| 7537 | /* |
| 7538 | * TILEOFF/LINOFF registers can't be changed via MI display flips. |
| 7539 | * Note that pitch changes could also affect these register. |
| 7540 | */ |
| 7541 | if (INTEL_INFO(dev)->gen > 3 && |
| 7542 | (fb->offsets[0] != crtc->fb->offsets[0] || |
| 7543 | fb->pitches[0] != crtc->fb->pitches[0])) |
| 7544 | return -EINVAL; |
| 7545 | |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 7546 | work = kzalloc(sizeof *work, GFP_KERNEL); |
| 7547 | if (work == NULL) |
| 7548 | return -ENOMEM; |
| 7549 | |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 7550 | work->event = event; |
Chris Wilson | b4a98e5 | 2012-11-01 09:26:26 +0000 | [diff] [blame] | 7551 | work->crtc = crtc; |
Ville Syrjälä | 4a35f83 | 2013-02-22 16:53:38 +0200 | [diff] [blame] | 7552 | work->old_fb_obj = to_intel_framebuffer(old_fb)->obj; |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 7553 | INIT_WORK(&work->work, intel_unpin_work_fn); |
| 7554 | |
Jesse Barnes | 7317c75e6 | 2011-08-29 09:45:28 -0700 | [diff] [blame] | 7555 | ret = drm_vblank_get(dev, intel_crtc->pipe); |
| 7556 | if (ret) |
| 7557 | goto free_work; |
| 7558 | |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 7559 | /* We borrow the event spin lock for protecting unpin_work */ |
| 7560 | spin_lock_irqsave(&dev->event_lock, flags); |
| 7561 | if (intel_crtc->unpin_work) { |
| 7562 | spin_unlock_irqrestore(&dev->event_lock, flags); |
| 7563 | kfree(work); |
Jesse Barnes | 7317c75e6 | 2011-08-29 09:45:28 -0700 | [diff] [blame] | 7564 | drm_vblank_put(dev, intel_crtc->pipe); |
Chris Wilson | 468f0b4 | 2010-05-27 13:18:13 +0100 | [diff] [blame] | 7565 | |
| 7566 | DRM_DEBUG_DRIVER("flip queue: crtc already busy\n"); |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 7567 | return -EBUSY; |
| 7568 | } |
| 7569 | intel_crtc->unpin_work = work; |
| 7570 | spin_unlock_irqrestore(&dev->event_lock, flags); |
| 7571 | |
Chris Wilson | b4a98e5 | 2012-11-01 09:26:26 +0000 | [diff] [blame] | 7572 | if (atomic_read(&intel_crtc->unpin_work_count) >= 2) |
| 7573 | flush_workqueue(dev_priv->wq); |
| 7574 | |
Chris Wilson | 7915810 | 2012-05-23 11:13:58 +0100 | [diff] [blame] | 7575 | ret = i915_mutex_lock_interruptible(dev); |
| 7576 | if (ret) |
| 7577 | goto cleanup; |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 7578 | |
Jesse Barnes | 75dfca8 | 2010-02-10 15:09:44 -0800 | [diff] [blame] | 7579 | /* Reference the objects for the scheduled work. */ |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 7580 | drm_gem_object_reference(&work->old_fb_obj->base); |
| 7581 | drm_gem_object_reference(&obj->base); |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 7582 | |
| 7583 | crtc->fb = fb; |
Chris Wilson | 96b099f | 2010-06-07 14:03:04 +0100 | [diff] [blame] | 7584 | |
Chris Wilson | e1f99ce | 2010-10-27 12:45:26 +0100 | [diff] [blame] | 7585 | work->pending_flip_obj = obj; |
Chris Wilson | e1f99ce | 2010-10-27 12:45:26 +0100 | [diff] [blame] | 7586 | |
Simon Farnsworth | 4e5359c | 2010-09-01 17:47:52 +0100 | [diff] [blame] | 7587 | work->enable_stall_check = true; |
| 7588 | |
Chris Wilson | b4a98e5 | 2012-11-01 09:26:26 +0000 | [diff] [blame] | 7589 | atomic_inc(&intel_crtc->unpin_work_count); |
Ville Syrjälä | 10d8373 | 2013-01-29 18:13:34 +0200 | [diff] [blame] | 7590 | intel_crtc->reset_counter = atomic_read(&dev_priv->gpu_error.reset_counter); |
Chris Wilson | e1f99ce | 2010-10-27 12:45:26 +0100 | [diff] [blame] | 7591 | |
Jesse Barnes | 8c9f3aa | 2011-06-16 09:19:13 -0700 | [diff] [blame] | 7592 | ret = dev_priv->display.queue_flip(dev, crtc, fb, obj); |
| 7593 | if (ret) |
| 7594 | goto cleanup_pending; |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 7595 | |
Chris Wilson | 7782de3 | 2011-07-08 12:22:41 +0100 | [diff] [blame] | 7596 | intel_disable_fbc(dev); |
Chris Wilson | f047e39 | 2012-07-21 12:31:41 +0100 | [diff] [blame] | 7597 | intel_mark_fb_busy(obj); |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 7598 | mutex_unlock(&dev->struct_mutex); |
| 7599 | |
Jesse Barnes | e5510fa | 2010-07-01 16:48:37 -0700 | [diff] [blame] | 7600 | trace_i915_flip_request(intel_crtc->plane, obj); |
| 7601 | |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 7602 | return 0; |
Chris Wilson | 96b099f | 2010-06-07 14:03:04 +0100 | [diff] [blame] | 7603 | |
Jesse Barnes | 8c9f3aa | 2011-06-16 09:19:13 -0700 | [diff] [blame] | 7604 | cleanup_pending: |
Chris Wilson | b4a98e5 | 2012-11-01 09:26:26 +0000 | [diff] [blame] | 7605 | atomic_dec(&intel_crtc->unpin_work_count); |
Ville Syrjälä | 4a35f83 | 2013-02-22 16:53:38 +0200 | [diff] [blame] | 7606 | crtc->fb = old_fb; |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 7607 | drm_gem_object_unreference(&work->old_fb_obj->base); |
| 7608 | drm_gem_object_unreference(&obj->base); |
Chris Wilson | 96b099f | 2010-06-07 14:03:04 +0100 | [diff] [blame] | 7609 | mutex_unlock(&dev->struct_mutex); |
| 7610 | |
Chris Wilson | 7915810 | 2012-05-23 11:13:58 +0100 | [diff] [blame] | 7611 | cleanup: |
Chris Wilson | 96b099f | 2010-06-07 14:03:04 +0100 | [diff] [blame] | 7612 | spin_lock_irqsave(&dev->event_lock, flags); |
| 7613 | intel_crtc->unpin_work = NULL; |
| 7614 | spin_unlock_irqrestore(&dev->event_lock, flags); |
| 7615 | |
Jesse Barnes | 7317c75e6 | 2011-08-29 09:45:28 -0700 | [diff] [blame] | 7616 | drm_vblank_put(dev, intel_crtc->pipe); |
| 7617 | free_work: |
Chris Wilson | 96b099f | 2010-06-07 14:03:04 +0100 | [diff] [blame] | 7618 | kfree(work); |
| 7619 | |
| 7620 | return ret; |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 7621 | } |
| 7622 | |
Chris Wilson | f6e5b16 | 2011-04-12 18:06:51 +0100 | [diff] [blame] | 7623 | static struct drm_crtc_helper_funcs intel_helper_funcs = { |
Chris Wilson | f6e5b16 | 2011-04-12 18:06:51 +0100 | [diff] [blame] | 7624 | .mode_set_base_atomic = intel_pipe_set_base_atomic, |
| 7625 | .load_lut = intel_crtc_load_lut, |
Chris Wilson | f6e5b16 | 2011-04-12 18:06:51 +0100 | [diff] [blame] | 7626 | }; |
| 7627 | |
Daniel Vetter | 6ed0f79 | 2012-07-08 19:41:43 +0200 | [diff] [blame] | 7628 | bool intel_encoder_check_is_cloned(struct intel_encoder *encoder) |
| 7629 | { |
| 7630 | struct intel_encoder *other_encoder; |
| 7631 | struct drm_crtc *crtc = &encoder->new_crtc->base; |
| 7632 | |
| 7633 | if (WARN_ON(!crtc)) |
| 7634 | return false; |
| 7635 | |
| 7636 | list_for_each_entry(other_encoder, |
| 7637 | &crtc->dev->mode_config.encoder_list, |
| 7638 | base.head) { |
| 7639 | |
| 7640 | if (&other_encoder->new_crtc->base != crtc || |
| 7641 | encoder == other_encoder) |
| 7642 | continue; |
| 7643 | else |
| 7644 | return true; |
| 7645 | } |
| 7646 | |
| 7647 | return false; |
| 7648 | } |
| 7649 | |
Daniel Vetter | 50f5611 | 2012-07-02 09:35:43 +0200 | [diff] [blame] | 7650 | static bool intel_encoder_crtc_ok(struct drm_encoder *encoder, |
| 7651 | struct drm_crtc *crtc) |
| 7652 | { |
| 7653 | struct drm_device *dev; |
| 7654 | struct drm_crtc *tmp; |
| 7655 | int crtc_mask = 1; |
| 7656 | |
| 7657 | WARN(!crtc, "checking null crtc?\n"); |
| 7658 | |
| 7659 | dev = crtc->dev; |
| 7660 | |
| 7661 | list_for_each_entry(tmp, &dev->mode_config.crtc_list, head) { |
| 7662 | if (tmp == crtc) |
| 7663 | break; |
| 7664 | crtc_mask <<= 1; |
| 7665 | } |
| 7666 | |
| 7667 | if (encoder->possible_crtcs & crtc_mask) |
| 7668 | return true; |
| 7669 | return false; |
| 7670 | } |
| 7671 | |
Daniel Vetter | 9a93585 | 2012-07-05 22:34:27 +0200 | [diff] [blame] | 7672 | /** |
| 7673 | * intel_modeset_update_staged_output_state |
| 7674 | * |
| 7675 | * Updates the staged output configuration state, e.g. after we've read out the |
| 7676 | * current hw state. |
| 7677 | */ |
| 7678 | static void intel_modeset_update_staged_output_state(struct drm_device *dev) |
| 7679 | { |
| 7680 | struct intel_encoder *encoder; |
| 7681 | struct intel_connector *connector; |
| 7682 | |
| 7683 | list_for_each_entry(connector, &dev->mode_config.connector_list, |
| 7684 | base.head) { |
| 7685 | connector->new_encoder = |
| 7686 | to_intel_encoder(connector->base.encoder); |
| 7687 | } |
| 7688 | |
| 7689 | list_for_each_entry(encoder, &dev->mode_config.encoder_list, |
| 7690 | base.head) { |
| 7691 | encoder->new_crtc = |
| 7692 | to_intel_crtc(encoder->base.crtc); |
| 7693 | } |
| 7694 | } |
| 7695 | |
| 7696 | /** |
| 7697 | * intel_modeset_commit_output_state |
| 7698 | * |
| 7699 | * This function copies the stage display pipe configuration to the real one. |
| 7700 | */ |
| 7701 | static void intel_modeset_commit_output_state(struct drm_device *dev) |
| 7702 | { |
| 7703 | struct intel_encoder *encoder; |
| 7704 | struct intel_connector *connector; |
| 7705 | |
| 7706 | list_for_each_entry(connector, &dev->mode_config.connector_list, |
| 7707 | base.head) { |
| 7708 | connector->base.encoder = &connector->new_encoder->base; |
| 7709 | } |
| 7710 | |
| 7711 | list_for_each_entry(encoder, &dev->mode_config.encoder_list, |
| 7712 | base.head) { |
| 7713 | encoder->base.crtc = &encoder->new_crtc->base; |
| 7714 | } |
| 7715 | } |
| 7716 | |
Daniel Vetter | 050f7ae | 2013-06-02 13:26:23 +0200 | [diff] [blame] | 7717 | static void |
| 7718 | connected_sink_compute_bpp(struct intel_connector * connector, |
| 7719 | struct intel_crtc_config *pipe_config) |
Daniel Vetter | 4e53c2e | 2013-03-27 00:44:58 +0100 | [diff] [blame] | 7720 | { |
Daniel Vetter | 050f7ae | 2013-06-02 13:26:23 +0200 | [diff] [blame] | 7721 | int bpp = pipe_config->pipe_bpp; |
| 7722 | |
| 7723 | DRM_DEBUG_KMS("[CONNECTOR:%d:%s] checking for sink bpp constrains\n", |
| 7724 | connector->base.base.id, |
| 7725 | drm_get_connector_name(&connector->base)); |
| 7726 | |
| 7727 | /* Don't use an invalid EDID bpc value */ |
| 7728 | if (connector->base.display_info.bpc && |
| 7729 | connector->base.display_info.bpc * 3 < bpp) { |
| 7730 | DRM_DEBUG_KMS("clamping display bpp (was %d) to EDID reported max of %d\n", |
| 7731 | bpp, connector->base.display_info.bpc*3); |
| 7732 | pipe_config->pipe_bpp = connector->base.display_info.bpc*3; |
| 7733 | } |
| 7734 | |
| 7735 | /* Clamp bpp to 8 on screens without EDID 1.4 */ |
| 7736 | if (connector->base.display_info.bpc == 0 && bpp > 24) { |
| 7737 | DRM_DEBUG_KMS("clamping display bpp (was %d) to default limit of 24\n", |
| 7738 | bpp); |
| 7739 | pipe_config->pipe_bpp = 24; |
| 7740 | } |
| 7741 | } |
| 7742 | |
| 7743 | static int |
| 7744 | compute_baseline_pipe_bpp(struct intel_crtc *crtc, |
| 7745 | struct drm_framebuffer *fb, |
| 7746 | struct intel_crtc_config *pipe_config) |
| 7747 | { |
| 7748 | struct drm_device *dev = crtc->base.dev; |
| 7749 | struct intel_connector *connector; |
Daniel Vetter | 4e53c2e | 2013-03-27 00:44:58 +0100 | [diff] [blame] | 7750 | int bpp; |
| 7751 | |
Daniel Vetter | d42264b | 2013-03-28 16:38:08 +0100 | [diff] [blame] | 7752 | switch (fb->pixel_format) { |
| 7753 | case DRM_FORMAT_C8: |
Daniel Vetter | 4e53c2e | 2013-03-27 00:44:58 +0100 | [diff] [blame] | 7754 | bpp = 8*3; /* since we go through a colormap */ |
| 7755 | break; |
Daniel Vetter | d42264b | 2013-03-28 16:38:08 +0100 | [diff] [blame] | 7756 | case DRM_FORMAT_XRGB1555: |
| 7757 | case DRM_FORMAT_ARGB1555: |
| 7758 | /* checked in intel_framebuffer_init already */ |
| 7759 | if (WARN_ON(INTEL_INFO(dev)->gen > 3)) |
| 7760 | return -EINVAL; |
| 7761 | case DRM_FORMAT_RGB565: |
Daniel Vetter | 4e53c2e | 2013-03-27 00:44:58 +0100 | [diff] [blame] | 7762 | bpp = 6*3; /* min is 18bpp */ |
| 7763 | break; |
Daniel Vetter | d42264b | 2013-03-28 16:38:08 +0100 | [diff] [blame] | 7764 | case DRM_FORMAT_XBGR8888: |
| 7765 | case DRM_FORMAT_ABGR8888: |
| 7766 | /* checked in intel_framebuffer_init already */ |
| 7767 | if (WARN_ON(INTEL_INFO(dev)->gen < 4)) |
| 7768 | return -EINVAL; |
| 7769 | case DRM_FORMAT_XRGB8888: |
| 7770 | case DRM_FORMAT_ARGB8888: |
Daniel Vetter | 4e53c2e | 2013-03-27 00:44:58 +0100 | [diff] [blame] | 7771 | bpp = 8*3; |
| 7772 | break; |
Daniel Vetter | d42264b | 2013-03-28 16:38:08 +0100 | [diff] [blame] | 7773 | case DRM_FORMAT_XRGB2101010: |
| 7774 | case DRM_FORMAT_ARGB2101010: |
| 7775 | case DRM_FORMAT_XBGR2101010: |
| 7776 | case DRM_FORMAT_ABGR2101010: |
| 7777 | /* checked in intel_framebuffer_init already */ |
| 7778 | if (WARN_ON(INTEL_INFO(dev)->gen < 4)) |
Daniel Vetter | baba133 | 2013-03-27 00:45:00 +0100 | [diff] [blame] | 7779 | return -EINVAL; |
Daniel Vetter | 4e53c2e | 2013-03-27 00:44:58 +0100 | [diff] [blame] | 7780 | bpp = 10*3; |
| 7781 | break; |
Daniel Vetter | baba133 | 2013-03-27 00:45:00 +0100 | [diff] [blame] | 7782 | /* TODO: gen4+ supports 16 bpc floating point, too. */ |
Daniel Vetter | 4e53c2e | 2013-03-27 00:44:58 +0100 | [diff] [blame] | 7783 | default: |
| 7784 | DRM_DEBUG_KMS("unsupported depth\n"); |
| 7785 | return -EINVAL; |
| 7786 | } |
| 7787 | |
Daniel Vetter | 4e53c2e | 2013-03-27 00:44:58 +0100 | [diff] [blame] | 7788 | pipe_config->pipe_bpp = bpp; |
| 7789 | |
| 7790 | /* Clamp display bpp to EDID value */ |
| 7791 | list_for_each_entry(connector, &dev->mode_config.connector_list, |
Daniel Vetter | 050f7ae | 2013-06-02 13:26:23 +0200 | [diff] [blame] | 7792 | base.head) { |
Daniel Vetter | 1b829e0 | 2013-06-02 13:26:24 +0200 | [diff] [blame] | 7793 | if (!connector->new_encoder || |
| 7794 | connector->new_encoder->new_crtc != crtc) |
Daniel Vetter | 4e53c2e | 2013-03-27 00:44:58 +0100 | [diff] [blame] | 7795 | continue; |
| 7796 | |
Daniel Vetter | 050f7ae | 2013-06-02 13:26:23 +0200 | [diff] [blame] | 7797 | connected_sink_compute_bpp(connector, pipe_config); |
Daniel Vetter | 4e53c2e | 2013-03-27 00:44:58 +0100 | [diff] [blame] | 7798 | } |
| 7799 | |
| 7800 | return bpp; |
| 7801 | } |
| 7802 | |
Daniel Vetter | c0b0341 | 2013-05-28 12:05:54 +0200 | [diff] [blame] | 7803 | static void intel_dump_pipe_config(struct intel_crtc *crtc, |
| 7804 | struct intel_crtc_config *pipe_config, |
| 7805 | const char *context) |
| 7806 | { |
| 7807 | DRM_DEBUG_KMS("[CRTC:%d]%s config for pipe %c\n", crtc->base.base.id, |
| 7808 | context, pipe_name(crtc->pipe)); |
| 7809 | |
| 7810 | DRM_DEBUG_KMS("cpu_transcoder: %c\n", transcoder_name(pipe_config->cpu_transcoder)); |
| 7811 | DRM_DEBUG_KMS("pipe bpp: %i, dithering: %i\n", |
| 7812 | pipe_config->pipe_bpp, pipe_config->dither); |
| 7813 | DRM_DEBUG_KMS("fdi/pch: %i, lanes: %i, gmch_m: %u, gmch_n: %u, link_m: %u, link_n: %u, tu: %u\n", |
| 7814 | pipe_config->has_pch_encoder, |
| 7815 | pipe_config->fdi_lanes, |
| 7816 | pipe_config->fdi_m_n.gmch_m, pipe_config->fdi_m_n.gmch_n, |
| 7817 | pipe_config->fdi_m_n.link_m, pipe_config->fdi_m_n.link_n, |
| 7818 | pipe_config->fdi_m_n.tu); |
| 7819 | DRM_DEBUG_KMS("requested mode:\n"); |
| 7820 | drm_mode_debug_printmodeline(&pipe_config->requested_mode); |
| 7821 | DRM_DEBUG_KMS("adjusted mode:\n"); |
| 7822 | drm_mode_debug_printmodeline(&pipe_config->adjusted_mode); |
| 7823 | DRM_DEBUG_KMS("gmch pfit: control: 0x%08x, ratios: 0x%08x, lvds border: 0x%08x\n", |
| 7824 | pipe_config->gmch_pfit.control, |
| 7825 | pipe_config->gmch_pfit.pgm_ratios, |
| 7826 | pipe_config->gmch_pfit.lvds_border_bits); |
| 7827 | DRM_DEBUG_KMS("pch pfit: pos: 0x%08x, size: 0x%08x\n", |
| 7828 | pipe_config->pch_pfit.pos, |
| 7829 | pipe_config->pch_pfit.size); |
Paulo Zanoni | 42db64e | 2013-05-31 16:33:22 -0300 | [diff] [blame] | 7830 | DRM_DEBUG_KMS("ips: %i\n", pipe_config->ips_enabled); |
Daniel Vetter | c0b0341 | 2013-05-28 12:05:54 +0200 | [diff] [blame] | 7831 | } |
| 7832 | |
Daniel Vetter | b8cecdf | 2013-03-27 00:44:50 +0100 | [diff] [blame] | 7833 | static struct intel_crtc_config * |
| 7834 | intel_modeset_pipe_config(struct drm_crtc *crtc, |
Daniel Vetter | 4e53c2e | 2013-03-27 00:44:58 +0100 | [diff] [blame] | 7835 | struct drm_framebuffer *fb, |
Daniel Vetter | b8cecdf | 2013-03-27 00:44:50 +0100 | [diff] [blame] | 7836 | struct drm_display_mode *mode) |
Daniel Vetter | 7758a11 | 2012-07-08 19:40:39 +0200 | [diff] [blame] | 7837 | { |
| 7838 | struct drm_device *dev = crtc->dev; |
Daniel Vetter | 7758a11 | 2012-07-08 19:40:39 +0200 | [diff] [blame] | 7839 | struct drm_encoder_helper_funcs *encoder_funcs; |
| 7840 | struct intel_encoder *encoder; |
Daniel Vetter | b8cecdf | 2013-03-27 00:44:50 +0100 | [diff] [blame] | 7841 | struct intel_crtc_config *pipe_config; |
Daniel Vetter | e29c22c | 2013-02-21 00:00:16 +0100 | [diff] [blame] | 7842 | int plane_bpp, ret = -EINVAL; |
| 7843 | bool retry = true; |
Daniel Vetter | 7758a11 | 2012-07-08 19:40:39 +0200 | [diff] [blame] | 7844 | |
Daniel Vetter | b8cecdf | 2013-03-27 00:44:50 +0100 | [diff] [blame] | 7845 | pipe_config = kzalloc(sizeof(*pipe_config), GFP_KERNEL); |
| 7846 | if (!pipe_config) |
Daniel Vetter | 7758a11 | 2012-07-08 19:40:39 +0200 | [diff] [blame] | 7847 | return ERR_PTR(-ENOMEM); |
| 7848 | |
Daniel Vetter | b8cecdf | 2013-03-27 00:44:50 +0100 | [diff] [blame] | 7849 | drm_mode_copy(&pipe_config->adjusted_mode, mode); |
| 7850 | drm_mode_copy(&pipe_config->requested_mode, mode); |
Daniel Vetter | eccb140 | 2013-05-22 00:50:22 +0200 | [diff] [blame] | 7851 | pipe_config->cpu_transcoder = to_intel_crtc(crtc)->pipe; |
Daniel Vetter | b8cecdf | 2013-03-27 00:44:50 +0100 | [diff] [blame] | 7852 | |
Daniel Vetter | 050f7ae | 2013-06-02 13:26:23 +0200 | [diff] [blame] | 7853 | /* Compute a starting value for pipe_config->pipe_bpp taking the source |
| 7854 | * plane pixel format and any sink constraints into account. Returns the |
| 7855 | * source plane bpp so that dithering can be selected on mismatches |
| 7856 | * after encoders and crtc also have had their say. */ |
| 7857 | plane_bpp = compute_baseline_pipe_bpp(to_intel_crtc(crtc), |
| 7858 | fb, pipe_config); |
Daniel Vetter | 4e53c2e | 2013-03-27 00:44:58 +0100 | [diff] [blame] | 7859 | if (plane_bpp < 0) |
| 7860 | goto fail; |
| 7861 | |
Daniel Vetter | e29c22c | 2013-02-21 00:00:16 +0100 | [diff] [blame] | 7862 | encoder_retry: |
Daniel Vetter | 7758a11 | 2012-07-08 19:40:39 +0200 | [diff] [blame] | 7863 | /* Pass our mode to the connectors and the CRTC to give them a chance to |
| 7864 | * adjust it according to limitations or connector properties, and also |
| 7865 | * a chance to reject the mode entirely. |
| 7866 | */ |
| 7867 | list_for_each_entry(encoder, &dev->mode_config.encoder_list, |
| 7868 | base.head) { |
| 7869 | |
| 7870 | if (&encoder->new_crtc->base != crtc) |
| 7871 | continue; |
Daniel Vetter | 7ae8923 | 2013-03-27 00:44:52 +0100 | [diff] [blame] | 7872 | |
| 7873 | if (encoder->compute_config) { |
| 7874 | if (!(encoder->compute_config(encoder, pipe_config))) { |
| 7875 | DRM_DEBUG_KMS("Encoder config failure\n"); |
| 7876 | goto fail; |
| 7877 | } |
| 7878 | |
| 7879 | continue; |
| 7880 | } |
| 7881 | |
Daniel Vetter | 7758a11 | 2012-07-08 19:40:39 +0200 | [diff] [blame] | 7882 | encoder_funcs = encoder->base.helper_private; |
Daniel Vetter | b8cecdf | 2013-03-27 00:44:50 +0100 | [diff] [blame] | 7883 | if (!(encoder_funcs->mode_fixup(&encoder->base, |
| 7884 | &pipe_config->requested_mode, |
| 7885 | &pipe_config->adjusted_mode))) { |
Daniel Vetter | 7758a11 | 2012-07-08 19:40:39 +0200 | [diff] [blame] | 7886 | DRM_DEBUG_KMS("Encoder fixup failed\n"); |
| 7887 | goto fail; |
| 7888 | } |
| 7889 | } |
| 7890 | |
Daniel Vetter | e29c22c | 2013-02-21 00:00:16 +0100 | [diff] [blame] | 7891 | ret = intel_crtc_compute_config(crtc, pipe_config); |
| 7892 | if (ret < 0) { |
Daniel Vetter | 7758a11 | 2012-07-08 19:40:39 +0200 | [diff] [blame] | 7893 | DRM_DEBUG_KMS("CRTC fixup failed\n"); |
| 7894 | goto fail; |
| 7895 | } |
Daniel Vetter | e29c22c | 2013-02-21 00:00:16 +0100 | [diff] [blame] | 7896 | |
| 7897 | if (ret == RETRY) { |
| 7898 | if (WARN(!retry, "loop in pipe configuration computation\n")) { |
| 7899 | ret = -EINVAL; |
| 7900 | goto fail; |
| 7901 | } |
| 7902 | |
| 7903 | DRM_DEBUG_KMS("CRTC bw constrained, retrying\n"); |
| 7904 | retry = false; |
| 7905 | goto encoder_retry; |
| 7906 | } |
| 7907 | |
Daniel Vetter | 4e53c2e | 2013-03-27 00:44:58 +0100 | [diff] [blame] | 7908 | pipe_config->dither = pipe_config->pipe_bpp != plane_bpp; |
| 7909 | DRM_DEBUG_KMS("plane bpp: %i, pipe bpp: %i, dithering: %i\n", |
| 7910 | plane_bpp, pipe_config->pipe_bpp, pipe_config->dither); |
| 7911 | |
Daniel Vetter | b8cecdf | 2013-03-27 00:44:50 +0100 | [diff] [blame] | 7912 | return pipe_config; |
Daniel Vetter | 7758a11 | 2012-07-08 19:40:39 +0200 | [diff] [blame] | 7913 | fail: |
Daniel Vetter | b8cecdf | 2013-03-27 00:44:50 +0100 | [diff] [blame] | 7914 | kfree(pipe_config); |
Daniel Vetter | e29c22c | 2013-02-21 00:00:16 +0100 | [diff] [blame] | 7915 | return ERR_PTR(ret); |
Daniel Vetter | 7758a11 | 2012-07-08 19:40:39 +0200 | [diff] [blame] | 7916 | } |
| 7917 | |
Daniel Vetter | e2e1ed4 | 2012-07-08 21:14:38 +0200 | [diff] [blame] | 7918 | /* Computes which crtcs are affected and sets the relevant bits in the mask. For |
| 7919 | * simplicity we use the crtc's pipe number (because it's easier to obtain). */ |
| 7920 | static void |
| 7921 | intel_modeset_affected_pipes(struct drm_crtc *crtc, unsigned *modeset_pipes, |
| 7922 | unsigned *prepare_pipes, unsigned *disable_pipes) |
| 7923 | { |
| 7924 | struct intel_crtc *intel_crtc; |
| 7925 | struct drm_device *dev = crtc->dev; |
| 7926 | struct intel_encoder *encoder; |
| 7927 | struct intel_connector *connector; |
| 7928 | struct drm_crtc *tmp_crtc; |
| 7929 | |
| 7930 | *disable_pipes = *modeset_pipes = *prepare_pipes = 0; |
| 7931 | |
| 7932 | /* Check which crtcs have changed outputs connected to them, these need |
| 7933 | * to be part of the prepare_pipes mask. We don't (yet) support global |
| 7934 | * modeset across multiple crtcs, so modeset_pipes will only have one |
| 7935 | * bit set at most. */ |
| 7936 | list_for_each_entry(connector, &dev->mode_config.connector_list, |
| 7937 | base.head) { |
| 7938 | if (connector->base.encoder == &connector->new_encoder->base) |
| 7939 | continue; |
| 7940 | |
| 7941 | if (connector->base.encoder) { |
| 7942 | tmp_crtc = connector->base.encoder->crtc; |
| 7943 | |
| 7944 | *prepare_pipes |= 1 << to_intel_crtc(tmp_crtc)->pipe; |
| 7945 | } |
| 7946 | |
| 7947 | if (connector->new_encoder) |
| 7948 | *prepare_pipes |= |
| 7949 | 1 << connector->new_encoder->new_crtc->pipe; |
| 7950 | } |
| 7951 | |
| 7952 | list_for_each_entry(encoder, &dev->mode_config.encoder_list, |
| 7953 | base.head) { |
| 7954 | if (encoder->base.crtc == &encoder->new_crtc->base) |
| 7955 | continue; |
| 7956 | |
| 7957 | if (encoder->base.crtc) { |
| 7958 | tmp_crtc = encoder->base.crtc; |
| 7959 | |
| 7960 | *prepare_pipes |= 1 << to_intel_crtc(tmp_crtc)->pipe; |
| 7961 | } |
| 7962 | |
| 7963 | if (encoder->new_crtc) |
| 7964 | *prepare_pipes |= 1 << encoder->new_crtc->pipe; |
| 7965 | } |
| 7966 | |
| 7967 | /* Check for any pipes that will be fully disabled ... */ |
| 7968 | list_for_each_entry(intel_crtc, &dev->mode_config.crtc_list, |
| 7969 | base.head) { |
| 7970 | bool used = false; |
| 7971 | |
| 7972 | /* Don't try to disable disabled crtcs. */ |
| 7973 | if (!intel_crtc->base.enabled) |
| 7974 | continue; |
| 7975 | |
| 7976 | list_for_each_entry(encoder, &dev->mode_config.encoder_list, |
| 7977 | base.head) { |
| 7978 | if (encoder->new_crtc == intel_crtc) |
| 7979 | used = true; |
| 7980 | } |
| 7981 | |
| 7982 | if (!used) |
| 7983 | *disable_pipes |= 1 << intel_crtc->pipe; |
| 7984 | } |
| 7985 | |
| 7986 | |
| 7987 | /* set_mode is also used to update properties on life display pipes. */ |
| 7988 | intel_crtc = to_intel_crtc(crtc); |
| 7989 | if (crtc->enabled) |
| 7990 | *prepare_pipes |= 1 << intel_crtc->pipe; |
| 7991 | |
Daniel Vetter | b6c5164 | 2013-04-12 18:48:43 +0200 | [diff] [blame] | 7992 | /* |
| 7993 | * For simplicity do a full modeset on any pipe where the output routing |
| 7994 | * changed. We could be more clever, but that would require us to be |
| 7995 | * more careful with calling the relevant encoder->mode_set functions. |
| 7996 | */ |
Daniel Vetter | e2e1ed4 | 2012-07-08 21:14:38 +0200 | [diff] [blame] | 7997 | if (*prepare_pipes) |
| 7998 | *modeset_pipes = *prepare_pipes; |
| 7999 | |
| 8000 | /* ... and mask these out. */ |
| 8001 | *modeset_pipes &= ~(*disable_pipes); |
| 8002 | *prepare_pipes &= ~(*disable_pipes); |
Daniel Vetter | b6c5164 | 2013-04-12 18:48:43 +0200 | [diff] [blame] | 8003 | |
| 8004 | /* |
| 8005 | * HACK: We don't (yet) fully support global modesets. intel_set_config |
| 8006 | * obies this rule, but the modeset restore mode of |
| 8007 | * intel_modeset_setup_hw_state does not. |
| 8008 | */ |
| 8009 | *modeset_pipes &= 1 << intel_crtc->pipe; |
| 8010 | *prepare_pipes &= 1 << intel_crtc->pipe; |
Daniel Vetter | e3641d3 | 2013-04-11 19:49:07 +0200 | [diff] [blame] | 8011 | |
| 8012 | DRM_DEBUG_KMS("set mode pipe masks: modeset: %x, prepare: %x, disable: %x\n", |
| 8013 | *modeset_pipes, *prepare_pipes, *disable_pipes); |
Daniel Vetter | e2e1ed4 | 2012-07-08 21:14:38 +0200 | [diff] [blame] | 8014 | } |
| 8015 | |
Daniel Vetter | ea9d758 | 2012-07-10 10:42:52 +0200 | [diff] [blame] | 8016 | static bool intel_crtc_in_use(struct drm_crtc *crtc) |
| 8017 | { |
| 8018 | struct drm_encoder *encoder; |
| 8019 | struct drm_device *dev = crtc->dev; |
| 8020 | |
| 8021 | list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) |
| 8022 | if (encoder->crtc == crtc) |
| 8023 | return true; |
| 8024 | |
| 8025 | return false; |
| 8026 | } |
| 8027 | |
| 8028 | static void |
| 8029 | intel_modeset_update_state(struct drm_device *dev, unsigned prepare_pipes) |
| 8030 | { |
| 8031 | struct intel_encoder *intel_encoder; |
| 8032 | struct intel_crtc *intel_crtc; |
| 8033 | struct drm_connector *connector; |
| 8034 | |
| 8035 | list_for_each_entry(intel_encoder, &dev->mode_config.encoder_list, |
| 8036 | base.head) { |
| 8037 | if (!intel_encoder->base.crtc) |
| 8038 | continue; |
| 8039 | |
| 8040 | intel_crtc = to_intel_crtc(intel_encoder->base.crtc); |
| 8041 | |
| 8042 | if (prepare_pipes & (1 << intel_crtc->pipe)) |
| 8043 | intel_encoder->connectors_active = false; |
| 8044 | } |
| 8045 | |
| 8046 | intel_modeset_commit_output_state(dev); |
| 8047 | |
| 8048 | /* Update computed state. */ |
| 8049 | list_for_each_entry(intel_crtc, &dev->mode_config.crtc_list, |
| 8050 | base.head) { |
| 8051 | intel_crtc->base.enabled = intel_crtc_in_use(&intel_crtc->base); |
| 8052 | } |
| 8053 | |
| 8054 | list_for_each_entry(connector, &dev->mode_config.connector_list, head) { |
| 8055 | if (!connector->encoder || !connector->encoder->crtc) |
| 8056 | continue; |
| 8057 | |
| 8058 | intel_crtc = to_intel_crtc(connector->encoder->crtc); |
| 8059 | |
| 8060 | if (prepare_pipes & (1 << intel_crtc->pipe)) { |
Daniel Vetter | 68d3472 | 2012-09-06 22:08:35 +0200 | [diff] [blame] | 8061 | struct drm_property *dpms_property = |
| 8062 | dev->mode_config.dpms_property; |
| 8063 | |
Daniel Vetter | ea9d758 | 2012-07-10 10:42:52 +0200 | [diff] [blame] | 8064 | connector->dpms = DRM_MODE_DPMS_ON; |
Rob Clark | 662595d | 2012-10-11 20:36:04 -0500 | [diff] [blame] | 8065 | drm_object_property_set_value(&connector->base, |
Daniel Vetter | 68d3472 | 2012-09-06 22:08:35 +0200 | [diff] [blame] | 8066 | dpms_property, |
| 8067 | DRM_MODE_DPMS_ON); |
Daniel Vetter | ea9d758 | 2012-07-10 10:42:52 +0200 | [diff] [blame] | 8068 | |
| 8069 | intel_encoder = to_intel_encoder(connector->encoder); |
| 8070 | intel_encoder->connectors_active = true; |
| 8071 | } |
| 8072 | } |
| 8073 | |
| 8074 | } |
| 8075 | |
Daniel Vetter | 25c5b26 | 2012-07-08 22:08:04 +0200 | [diff] [blame] | 8076 | #define for_each_intel_crtc_masked(dev, mask, intel_crtc) \ |
| 8077 | list_for_each_entry((intel_crtc), \ |
| 8078 | &(dev)->mode_config.crtc_list, \ |
| 8079 | base.head) \ |
Daniel Vetter | 0973f18 | 2013-04-19 11:25:33 +0200 | [diff] [blame] | 8080 | if (mask & (1 <<(intel_crtc)->pipe)) |
Daniel Vetter | 25c5b26 | 2012-07-08 22:08:04 +0200 | [diff] [blame] | 8081 | |
Daniel Vetter | 0e8ffe1 | 2013-03-28 10:42:00 +0100 | [diff] [blame] | 8082 | static bool |
Daniel Vetter | 2fa2fe9 | 2013-05-07 23:34:16 +0200 | [diff] [blame] | 8083 | intel_pipe_config_compare(struct drm_device *dev, |
| 8084 | struct intel_crtc_config *current_config, |
Daniel Vetter | 0e8ffe1 | 2013-03-28 10:42:00 +0100 | [diff] [blame] | 8085 | struct intel_crtc_config *pipe_config) |
| 8086 | { |
Daniel Vetter | 08a2403 | 2013-04-19 11:25:34 +0200 | [diff] [blame] | 8087 | #define PIPE_CONF_CHECK_I(name) \ |
| 8088 | if (current_config->name != pipe_config->name) { \ |
| 8089 | DRM_ERROR("mismatch in " #name " " \ |
| 8090 | "(expected %i, found %i)\n", \ |
| 8091 | current_config->name, \ |
| 8092 | pipe_config->name); \ |
| 8093 | return false; \ |
Daniel Vetter | 88adfff | 2013-03-28 10:42:01 +0100 | [diff] [blame] | 8094 | } |
| 8095 | |
Daniel Vetter | 1bd1bd8 | 2013-04-29 21:56:12 +0200 | [diff] [blame] | 8096 | #define PIPE_CONF_CHECK_FLAGS(name, mask) \ |
| 8097 | if ((current_config->name ^ pipe_config->name) & (mask)) { \ |
| 8098 | DRM_ERROR("mismatch in " #name " " \ |
| 8099 | "(expected %i, found %i)\n", \ |
| 8100 | current_config->name & (mask), \ |
| 8101 | pipe_config->name & (mask)); \ |
| 8102 | return false; \ |
| 8103 | } |
| 8104 | |
Daniel Vetter | eccb140 | 2013-05-22 00:50:22 +0200 | [diff] [blame] | 8105 | PIPE_CONF_CHECK_I(cpu_transcoder); |
| 8106 | |
Daniel Vetter | 08a2403 | 2013-04-19 11:25:34 +0200 | [diff] [blame] | 8107 | PIPE_CONF_CHECK_I(has_pch_encoder); |
| 8108 | PIPE_CONF_CHECK_I(fdi_lanes); |
Daniel Vetter | 7241920 | 2013-04-04 13:28:53 +0200 | [diff] [blame] | 8109 | PIPE_CONF_CHECK_I(fdi_m_n.gmch_m); |
| 8110 | PIPE_CONF_CHECK_I(fdi_m_n.gmch_n); |
| 8111 | PIPE_CONF_CHECK_I(fdi_m_n.link_m); |
| 8112 | PIPE_CONF_CHECK_I(fdi_m_n.link_n); |
| 8113 | PIPE_CONF_CHECK_I(fdi_m_n.tu); |
Daniel Vetter | 08a2403 | 2013-04-19 11:25:34 +0200 | [diff] [blame] | 8114 | |
Daniel Vetter | 1bd1bd8 | 2013-04-29 21:56:12 +0200 | [diff] [blame] | 8115 | PIPE_CONF_CHECK_I(adjusted_mode.crtc_hdisplay); |
| 8116 | PIPE_CONF_CHECK_I(adjusted_mode.crtc_htotal); |
| 8117 | PIPE_CONF_CHECK_I(adjusted_mode.crtc_hblank_start); |
| 8118 | PIPE_CONF_CHECK_I(adjusted_mode.crtc_hblank_end); |
| 8119 | PIPE_CONF_CHECK_I(adjusted_mode.crtc_hsync_start); |
| 8120 | PIPE_CONF_CHECK_I(adjusted_mode.crtc_hsync_end); |
| 8121 | |
| 8122 | PIPE_CONF_CHECK_I(adjusted_mode.crtc_vdisplay); |
| 8123 | PIPE_CONF_CHECK_I(adjusted_mode.crtc_vtotal); |
| 8124 | PIPE_CONF_CHECK_I(adjusted_mode.crtc_vblank_start); |
| 8125 | PIPE_CONF_CHECK_I(adjusted_mode.crtc_vblank_end); |
| 8126 | PIPE_CONF_CHECK_I(adjusted_mode.crtc_vsync_start); |
| 8127 | PIPE_CONF_CHECK_I(adjusted_mode.crtc_vsync_end); |
| 8128 | |
| 8129 | PIPE_CONF_CHECK_FLAGS(adjusted_mode.flags, |
| 8130 | DRM_MODE_FLAG_INTERLACE); |
| 8131 | |
Jesse Barnes | 045ac3b | 2013-05-14 17:08:26 -0700 | [diff] [blame] | 8132 | PIPE_CONF_CHECK_FLAGS(adjusted_mode.flags, |
| 8133 | DRM_MODE_FLAG_PHSYNC); |
| 8134 | PIPE_CONF_CHECK_FLAGS(adjusted_mode.flags, |
| 8135 | DRM_MODE_FLAG_NHSYNC); |
| 8136 | PIPE_CONF_CHECK_FLAGS(adjusted_mode.flags, |
| 8137 | DRM_MODE_FLAG_PVSYNC); |
| 8138 | PIPE_CONF_CHECK_FLAGS(adjusted_mode.flags, |
| 8139 | DRM_MODE_FLAG_NVSYNC); |
| 8140 | |
Daniel Vetter | 1bd1bd8 | 2013-04-29 21:56:12 +0200 | [diff] [blame] | 8141 | PIPE_CONF_CHECK_I(requested_mode.hdisplay); |
| 8142 | PIPE_CONF_CHECK_I(requested_mode.vdisplay); |
| 8143 | |
Daniel Vetter | 2fa2fe9 | 2013-05-07 23:34:16 +0200 | [diff] [blame] | 8144 | PIPE_CONF_CHECK_I(gmch_pfit.control); |
| 8145 | /* pfit ratios are autocomputed by the hw on gen4+ */ |
| 8146 | if (INTEL_INFO(dev)->gen < 4) |
| 8147 | PIPE_CONF_CHECK_I(gmch_pfit.pgm_ratios); |
| 8148 | PIPE_CONF_CHECK_I(gmch_pfit.lvds_border_bits); |
| 8149 | PIPE_CONF_CHECK_I(pch_pfit.pos); |
| 8150 | PIPE_CONF_CHECK_I(pch_pfit.size); |
| 8151 | |
Paulo Zanoni | 42db64e | 2013-05-31 16:33:22 -0300 | [diff] [blame] | 8152 | PIPE_CONF_CHECK_I(ips_enabled); |
| 8153 | |
Daniel Vetter | 08a2403 | 2013-04-19 11:25:34 +0200 | [diff] [blame] | 8154 | #undef PIPE_CONF_CHECK_I |
Daniel Vetter | 1bd1bd8 | 2013-04-29 21:56:12 +0200 | [diff] [blame] | 8155 | #undef PIPE_CONF_CHECK_FLAGS |
Daniel Vetter | 627eb5a | 2013-04-29 19:33:42 +0200 | [diff] [blame] | 8156 | |
Daniel Vetter | 0e8ffe1 | 2013-03-28 10:42:00 +0100 | [diff] [blame] | 8157 | return true; |
| 8158 | } |
| 8159 | |
Daniel Vetter | b980514 | 2012-08-31 17:37:33 +0200 | [diff] [blame] | 8160 | void |
Daniel Vetter | 8af6cf8 | 2012-07-10 09:50:11 +0200 | [diff] [blame] | 8161 | intel_modeset_check_state(struct drm_device *dev) |
| 8162 | { |
Daniel Vetter | 0e8ffe1 | 2013-03-28 10:42:00 +0100 | [diff] [blame] | 8163 | drm_i915_private_t *dev_priv = dev->dev_private; |
Daniel Vetter | 8af6cf8 | 2012-07-10 09:50:11 +0200 | [diff] [blame] | 8164 | struct intel_crtc *crtc; |
| 8165 | struct intel_encoder *encoder; |
| 8166 | struct intel_connector *connector; |
Daniel Vetter | 0e8ffe1 | 2013-03-28 10:42:00 +0100 | [diff] [blame] | 8167 | struct intel_crtc_config pipe_config; |
Daniel Vetter | 8af6cf8 | 2012-07-10 09:50:11 +0200 | [diff] [blame] | 8168 | |
| 8169 | list_for_each_entry(connector, &dev->mode_config.connector_list, |
| 8170 | base.head) { |
| 8171 | /* This also checks the encoder/connector hw state with the |
| 8172 | * ->get_hw_state callbacks. */ |
| 8173 | intel_connector_check_state(connector); |
| 8174 | |
| 8175 | WARN(&connector->new_encoder->base != connector->base.encoder, |
| 8176 | "connector's staged encoder doesn't match current encoder\n"); |
| 8177 | } |
| 8178 | |
| 8179 | list_for_each_entry(encoder, &dev->mode_config.encoder_list, |
| 8180 | base.head) { |
| 8181 | bool enabled = false; |
| 8182 | bool active = false; |
| 8183 | enum pipe pipe, tracked_pipe; |
| 8184 | |
| 8185 | DRM_DEBUG_KMS("[ENCODER:%d:%s]\n", |
| 8186 | encoder->base.base.id, |
| 8187 | drm_get_encoder_name(&encoder->base)); |
| 8188 | |
| 8189 | WARN(&encoder->new_crtc->base != encoder->base.crtc, |
| 8190 | "encoder's stage crtc doesn't match current crtc\n"); |
| 8191 | WARN(encoder->connectors_active && !encoder->base.crtc, |
| 8192 | "encoder's active_connectors set, but no crtc\n"); |
| 8193 | |
| 8194 | list_for_each_entry(connector, &dev->mode_config.connector_list, |
| 8195 | base.head) { |
| 8196 | if (connector->base.encoder != &encoder->base) |
| 8197 | continue; |
| 8198 | enabled = true; |
| 8199 | if (connector->base.dpms != DRM_MODE_DPMS_OFF) |
| 8200 | active = true; |
| 8201 | } |
| 8202 | WARN(!!encoder->base.crtc != enabled, |
| 8203 | "encoder's enabled state mismatch " |
| 8204 | "(expected %i, found %i)\n", |
| 8205 | !!encoder->base.crtc, enabled); |
| 8206 | WARN(active && !encoder->base.crtc, |
| 8207 | "active encoder with no crtc\n"); |
| 8208 | |
| 8209 | WARN(encoder->connectors_active != active, |
| 8210 | "encoder's computed active state doesn't match tracked active state " |
| 8211 | "(expected %i, found %i)\n", active, encoder->connectors_active); |
| 8212 | |
| 8213 | active = encoder->get_hw_state(encoder, &pipe); |
| 8214 | WARN(active != encoder->connectors_active, |
| 8215 | "encoder's hw state doesn't match sw tracking " |
| 8216 | "(expected %i, found %i)\n", |
| 8217 | encoder->connectors_active, active); |
| 8218 | |
| 8219 | if (!encoder->base.crtc) |
| 8220 | continue; |
| 8221 | |
| 8222 | tracked_pipe = to_intel_crtc(encoder->base.crtc)->pipe; |
| 8223 | WARN(active && pipe != tracked_pipe, |
| 8224 | "active encoder's pipe doesn't match" |
| 8225 | "(expected %i, found %i)\n", |
| 8226 | tracked_pipe, pipe); |
| 8227 | |
| 8228 | } |
| 8229 | |
| 8230 | list_for_each_entry(crtc, &dev->mode_config.crtc_list, |
| 8231 | base.head) { |
| 8232 | bool enabled = false; |
| 8233 | bool active = false; |
| 8234 | |
Jesse Barnes | 045ac3b | 2013-05-14 17:08:26 -0700 | [diff] [blame] | 8235 | memset(&pipe_config, 0, sizeof(pipe_config)); |
| 8236 | |
Daniel Vetter | 8af6cf8 | 2012-07-10 09:50:11 +0200 | [diff] [blame] | 8237 | DRM_DEBUG_KMS("[CRTC:%d]\n", |
| 8238 | crtc->base.base.id); |
| 8239 | |
| 8240 | WARN(crtc->active && !crtc->base.enabled, |
| 8241 | "active crtc, but not enabled in sw tracking\n"); |
| 8242 | |
| 8243 | list_for_each_entry(encoder, &dev->mode_config.encoder_list, |
| 8244 | base.head) { |
| 8245 | if (encoder->base.crtc != &crtc->base) |
| 8246 | continue; |
| 8247 | enabled = true; |
| 8248 | if (encoder->connectors_active) |
| 8249 | active = true; |
Jesse Barnes | 045ac3b | 2013-05-14 17:08:26 -0700 | [diff] [blame] | 8250 | if (encoder->get_config) |
| 8251 | encoder->get_config(encoder, &pipe_config); |
Daniel Vetter | 8af6cf8 | 2012-07-10 09:50:11 +0200 | [diff] [blame] | 8252 | } |
| 8253 | WARN(active != crtc->active, |
| 8254 | "crtc's computed active state doesn't match tracked active state " |
| 8255 | "(expected %i, found %i)\n", active, crtc->active); |
| 8256 | WARN(enabled != crtc->base.enabled, |
| 8257 | "crtc's computed enabled state doesn't match tracked enabled state " |
| 8258 | "(expected %i, found %i)\n", enabled, crtc->base.enabled); |
| 8259 | |
Daniel Vetter | 0e8ffe1 | 2013-03-28 10:42:00 +0100 | [diff] [blame] | 8260 | active = dev_priv->display.get_pipe_config(crtc, |
| 8261 | &pipe_config); |
| 8262 | WARN(crtc->active != active, |
| 8263 | "crtc active state doesn't match with hw state " |
| 8264 | "(expected %i, found %i)\n", crtc->active, active); |
| 8265 | |
Daniel Vetter | c0b0341 | 2013-05-28 12:05:54 +0200 | [diff] [blame] | 8266 | if (active && |
| 8267 | !intel_pipe_config_compare(dev, &crtc->config, &pipe_config)) { |
| 8268 | WARN(1, "pipe state doesn't match!\n"); |
| 8269 | intel_dump_pipe_config(crtc, &pipe_config, |
| 8270 | "[hw state]"); |
| 8271 | intel_dump_pipe_config(crtc, &crtc->config, |
| 8272 | "[sw state]"); |
| 8273 | } |
Daniel Vetter | 8af6cf8 | 2012-07-10 09:50:11 +0200 | [diff] [blame] | 8274 | } |
| 8275 | } |
| 8276 | |
Daniel Vetter | f30da18 | 2013-04-11 20:22:50 +0200 | [diff] [blame] | 8277 | static int __intel_set_mode(struct drm_crtc *crtc, |
| 8278 | struct drm_display_mode *mode, |
| 8279 | int x, int y, struct drm_framebuffer *fb) |
Daniel Vetter | a6778b3 | 2012-07-02 09:56:42 +0200 | [diff] [blame] | 8280 | { |
| 8281 | struct drm_device *dev = crtc->dev; |
Daniel Vetter | dbf2b54e | 2012-07-02 11:18:29 +0200 | [diff] [blame] | 8282 | drm_i915_private_t *dev_priv = dev->dev_private; |
Daniel Vetter | b8cecdf | 2013-03-27 00:44:50 +0100 | [diff] [blame] | 8283 | struct drm_display_mode *saved_mode, *saved_hwmode; |
| 8284 | struct intel_crtc_config *pipe_config = NULL; |
Daniel Vetter | 25c5b26 | 2012-07-08 22:08:04 +0200 | [diff] [blame] | 8285 | struct intel_crtc *intel_crtc; |
| 8286 | unsigned disable_pipes, prepare_pipes, modeset_pipes; |
Chris Wilson | c0c36b94 | 2012-12-19 16:08:43 +0000 | [diff] [blame] | 8287 | int ret = 0; |
Daniel Vetter | a6778b3 | 2012-07-02 09:56:42 +0200 | [diff] [blame] | 8288 | |
Tim Gardner | 3ac1823 | 2012-12-07 07:54:26 -0700 | [diff] [blame] | 8289 | saved_mode = kmalloc(2 * sizeof(*saved_mode), GFP_KERNEL); |
Chris Wilson | c0c36b94 | 2012-12-19 16:08:43 +0000 | [diff] [blame] | 8290 | if (!saved_mode) |
| 8291 | return -ENOMEM; |
Tim Gardner | 3ac1823 | 2012-12-07 07:54:26 -0700 | [diff] [blame] | 8292 | saved_hwmode = saved_mode + 1; |
Daniel Vetter | a6778b3 | 2012-07-02 09:56:42 +0200 | [diff] [blame] | 8293 | |
Daniel Vetter | e2e1ed4 | 2012-07-08 21:14:38 +0200 | [diff] [blame] | 8294 | intel_modeset_affected_pipes(crtc, &modeset_pipes, |
Daniel Vetter | 25c5b26 | 2012-07-08 22:08:04 +0200 | [diff] [blame] | 8295 | &prepare_pipes, &disable_pipes); |
| 8296 | |
Tim Gardner | 3ac1823 | 2012-12-07 07:54:26 -0700 | [diff] [blame] | 8297 | *saved_hwmode = crtc->hwmode; |
| 8298 | *saved_mode = crtc->mode; |
Daniel Vetter | a6778b3 | 2012-07-02 09:56:42 +0200 | [diff] [blame] | 8299 | |
Daniel Vetter | 25c5b26 | 2012-07-08 22:08:04 +0200 | [diff] [blame] | 8300 | /* Hack: Because we don't (yet) support global modeset on multiple |
| 8301 | * crtcs, we don't keep track of the new mode for more than one crtc. |
| 8302 | * Hence simply check whether any bit is set in modeset_pipes in all the |
| 8303 | * pieces of code that are not yet converted to deal with mutliple crtcs |
| 8304 | * changing their mode at the same time. */ |
Daniel Vetter | 25c5b26 | 2012-07-08 22:08:04 +0200 | [diff] [blame] | 8305 | if (modeset_pipes) { |
Daniel Vetter | 4e53c2e | 2013-03-27 00:44:58 +0100 | [diff] [blame] | 8306 | pipe_config = intel_modeset_pipe_config(crtc, fb, mode); |
Daniel Vetter | b8cecdf | 2013-03-27 00:44:50 +0100 | [diff] [blame] | 8307 | if (IS_ERR(pipe_config)) { |
| 8308 | ret = PTR_ERR(pipe_config); |
| 8309 | pipe_config = NULL; |
| 8310 | |
Tim Gardner | 3ac1823 | 2012-12-07 07:54:26 -0700 | [diff] [blame] | 8311 | goto out; |
Daniel Vetter | 25c5b26 | 2012-07-08 22:08:04 +0200 | [diff] [blame] | 8312 | } |
Daniel Vetter | c0b0341 | 2013-05-28 12:05:54 +0200 | [diff] [blame] | 8313 | intel_dump_pipe_config(to_intel_crtc(crtc), pipe_config, |
| 8314 | "[modeset]"); |
Daniel Vetter | a6778b3 | 2012-07-02 09:56:42 +0200 | [diff] [blame] | 8315 | } |
| 8316 | |
Daniel Vetter | 460da916 | 2013-03-27 00:44:51 +0100 | [diff] [blame] | 8317 | for_each_intel_crtc_masked(dev, disable_pipes, intel_crtc) |
| 8318 | intel_crtc_disable(&intel_crtc->base); |
| 8319 | |
Daniel Vetter | ea9d758 | 2012-07-10 10:42:52 +0200 | [diff] [blame] | 8320 | for_each_intel_crtc_masked(dev, prepare_pipes, intel_crtc) { |
| 8321 | if (intel_crtc->base.enabled) |
| 8322 | dev_priv->display.crtc_disable(&intel_crtc->base); |
| 8323 | } |
Daniel Vetter | a6778b3 | 2012-07-02 09:56:42 +0200 | [diff] [blame] | 8324 | |
Daniel Vetter | 6c4c86f | 2012-09-10 21:58:30 +0200 | [diff] [blame] | 8325 | /* crtc->mode is already used by the ->mode_set callbacks, hence we need |
| 8326 | * to set it here already despite that we pass it down the callchain. |
| 8327 | */ |
Daniel Vetter | b8cecdf | 2013-03-27 00:44:50 +0100 | [diff] [blame] | 8328 | if (modeset_pipes) { |
Daniel Vetter | 25c5b26 | 2012-07-08 22:08:04 +0200 | [diff] [blame] | 8329 | crtc->mode = *mode; |
Daniel Vetter | b8cecdf | 2013-03-27 00:44:50 +0100 | [diff] [blame] | 8330 | /* mode_set/enable/disable functions rely on a correct pipe |
| 8331 | * config. */ |
| 8332 | to_intel_crtc(crtc)->config = *pipe_config; |
| 8333 | } |
Daniel Vetter | 7758a11 | 2012-07-08 19:40:39 +0200 | [diff] [blame] | 8334 | |
Daniel Vetter | ea9d758 | 2012-07-10 10:42:52 +0200 | [diff] [blame] | 8335 | /* Only after disabling all output pipelines that will be changed can we |
| 8336 | * update the the output configuration. */ |
| 8337 | intel_modeset_update_state(dev, prepare_pipes); |
| 8338 | |
Daniel Vetter | 47fab73 | 2012-10-26 10:58:18 +0200 | [diff] [blame] | 8339 | if (dev_priv->display.modeset_global_resources) |
| 8340 | dev_priv->display.modeset_global_resources(dev); |
| 8341 | |
Daniel Vetter | a6778b3 | 2012-07-02 09:56:42 +0200 | [diff] [blame] | 8342 | /* Set up the DPLL and any encoders state that needs to adjust or depend |
| 8343 | * on the DPLL. |
| 8344 | */ |
Daniel Vetter | 25c5b26 | 2012-07-08 22:08:04 +0200 | [diff] [blame] | 8345 | for_each_intel_crtc_masked(dev, modeset_pipes, intel_crtc) { |
Chris Wilson | c0c36b94 | 2012-12-19 16:08:43 +0000 | [diff] [blame] | 8346 | ret = intel_crtc_mode_set(&intel_crtc->base, |
Chris Wilson | c0c36b94 | 2012-12-19 16:08:43 +0000 | [diff] [blame] | 8347 | x, y, fb); |
| 8348 | if (ret) |
| 8349 | goto done; |
Daniel Vetter | a6778b3 | 2012-07-02 09:56:42 +0200 | [diff] [blame] | 8350 | } |
| 8351 | |
| 8352 | /* Now enable the clocks, plane, pipe, and connectors that we set up. */ |
Daniel Vetter | 25c5b26 | 2012-07-08 22:08:04 +0200 | [diff] [blame] | 8353 | for_each_intel_crtc_masked(dev, prepare_pipes, intel_crtc) |
| 8354 | dev_priv->display.crtc_enable(&intel_crtc->base); |
Daniel Vetter | a6778b3 | 2012-07-02 09:56:42 +0200 | [diff] [blame] | 8355 | |
Daniel Vetter | 25c5b26 | 2012-07-08 22:08:04 +0200 | [diff] [blame] | 8356 | if (modeset_pipes) { |
| 8357 | /* Store real post-adjustment hardware mode. */ |
Daniel Vetter | b8cecdf | 2013-03-27 00:44:50 +0100 | [diff] [blame] | 8358 | crtc->hwmode = pipe_config->adjusted_mode; |
Daniel Vetter | a6778b3 | 2012-07-02 09:56:42 +0200 | [diff] [blame] | 8359 | |
Daniel Vetter | 25c5b26 | 2012-07-08 22:08:04 +0200 | [diff] [blame] | 8360 | /* Calculate and store various constants which |
| 8361 | * are later needed by vblank and swap-completion |
| 8362 | * timestamping. They are derived from true hwmode. |
| 8363 | */ |
| 8364 | drm_calc_timestamping_constants(crtc); |
| 8365 | } |
Daniel Vetter | a6778b3 | 2012-07-02 09:56:42 +0200 | [diff] [blame] | 8366 | |
| 8367 | /* FIXME: add subpixel order */ |
| 8368 | done: |
Chris Wilson | c0c36b94 | 2012-12-19 16:08:43 +0000 | [diff] [blame] | 8369 | if (ret && crtc->enabled) { |
Tim Gardner | 3ac1823 | 2012-12-07 07:54:26 -0700 | [diff] [blame] | 8370 | crtc->hwmode = *saved_hwmode; |
| 8371 | crtc->mode = *saved_mode; |
Daniel Vetter | a6778b3 | 2012-07-02 09:56:42 +0200 | [diff] [blame] | 8372 | } |
| 8373 | |
Tim Gardner | 3ac1823 | 2012-12-07 07:54:26 -0700 | [diff] [blame] | 8374 | out: |
Daniel Vetter | b8cecdf | 2013-03-27 00:44:50 +0100 | [diff] [blame] | 8375 | kfree(pipe_config); |
Tim Gardner | 3ac1823 | 2012-12-07 07:54:26 -0700 | [diff] [blame] | 8376 | kfree(saved_mode); |
Daniel Vetter | a6778b3 | 2012-07-02 09:56:42 +0200 | [diff] [blame] | 8377 | return ret; |
| 8378 | } |
| 8379 | |
Daniel Vetter | f30da18 | 2013-04-11 20:22:50 +0200 | [diff] [blame] | 8380 | int intel_set_mode(struct drm_crtc *crtc, |
| 8381 | struct drm_display_mode *mode, |
| 8382 | int x, int y, struct drm_framebuffer *fb) |
| 8383 | { |
| 8384 | int ret; |
| 8385 | |
| 8386 | ret = __intel_set_mode(crtc, mode, x, y, fb); |
| 8387 | |
| 8388 | if (ret == 0) |
| 8389 | intel_modeset_check_state(crtc->dev); |
| 8390 | |
| 8391 | return ret; |
| 8392 | } |
| 8393 | |
Chris Wilson | c0c36b94 | 2012-12-19 16:08:43 +0000 | [diff] [blame] | 8394 | void intel_crtc_restore_mode(struct drm_crtc *crtc) |
| 8395 | { |
| 8396 | intel_set_mode(crtc, &crtc->mode, crtc->x, crtc->y, crtc->fb); |
| 8397 | } |
| 8398 | |
Daniel Vetter | 25c5b26 | 2012-07-08 22:08:04 +0200 | [diff] [blame] | 8399 | #undef for_each_intel_crtc_masked |
| 8400 | |
Daniel Vetter | d9e5560 | 2012-07-04 22:16:09 +0200 | [diff] [blame] | 8401 | static void intel_set_config_free(struct intel_set_config *config) |
| 8402 | { |
| 8403 | if (!config) |
| 8404 | return; |
| 8405 | |
Daniel Vetter | 1aa4b62 | 2012-07-05 16:20:48 +0200 | [diff] [blame] | 8406 | kfree(config->save_connector_encoders); |
| 8407 | kfree(config->save_encoder_crtcs); |
Daniel Vetter | d9e5560 | 2012-07-04 22:16:09 +0200 | [diff] [blame] | 8408 | kfree(config); |
| 8409 | } |
| 8410 | |
Daniel Vetter | 85f9eb7 | 2012-07-04 22:24:08 +0200 | [diff] [blame] | 8411 | static int intel_set_config_save_state(struct drm_device *dev, |
| 8412 | struct intel_set_config *config) |
| 8413 | { |
Daniel Vetter | 85f9eb7 | 2012-07-04 22:24:08 +0200 | [diff] [blame] | 8414 | struct drm_encoder *encoder; |
| 8415 | struct drm_connector *connector; |
| 8416 | int count; |
| 8417 | |
Daniel Vetter | 1aa4b62 | 2012-07-05 16:20:48 +0200 | [diff] [blame] | 8418 | config->save_encoder_crtcs = |
| 8419 | kcalloc(dev->mode_config.num_encoder, |
| 8420 | sizeof(struct drm_crtc *), GFP_KERNEL); |
| 8421 | if (!config->save_encoder_crtcs) |
Daniel Vetter | 85f9eb7 | 2012-07-04 22:24:08 +0200 | [diff] [blame] | 8422 | return -ENOMEM; |
| 8423 | |
Daniel Vetter | 1aa4b62 | 2012-07-05 16:20:48 +0200 | [diff] [blame] | 8424 | config->save_connector_encoders = |
| 8425 | kcalloc(dev->mode_config.num_connector, |
| 8426 | sizeof(struct drm_encoder *), GFP_KERNEL); |
| 8427 | if (!config->save_connector_encoders) |
Daniel Vetter | 85f9eb7 | 2012-07-04 22:24:08 +0200 | [diff] [blame] | 8428 | return -ENOMEM; |
| 8429 | |
| 8430 | /* Copy data. Note that driver private data is not affected. |
| 8431 | * Should anything bad happen only the expected state is |
| 8432 | * restored, not the drivers personal bookkeeping. |
| 8433 | */ |
| 8434 | count = 0; |
Daniel Vetter | 85f9eb7 | 2012-07-04 22:24:08 +0200 | [diff] [blame] | 8435 | list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) { |
Daniel Vetter | 1aa4b62 | 2012-07-05 16:20:48 +0200 | [diff] [blame] | 8436 | config->save_encoder_crtcs[count++] = encoder->crtc; |
Daniel Vetter | 85f9eb7 | 2012-07-04 22:24:08 +0200 | [diff] [blame] | 8437 | } |
| 8438 | |
| 8439 | count = 0; |
| 8440 | list_for_each_entry(connector, &dev->mode_config.connector_list, head) { |
Daniel Vetter | 1aa4b62 | 2012-07-05 16:20:48 +0200 | [diff] [blame] | 8441 | config->save_connector_encoders[count++] = connector->encoder; |
Daniel Vetter | 85f9eb7 | 2012-07-04 22:24:08 +0200 | [diff] [blame] | 8442 | } |
| 8443 | |
| 8444 | return 0; |
| 8445 | } |
| 8446 | |
| 8447 | static void intel_set_config_restore_state(struct drm_device *dev, |
| 8448 | struct intel_set_config *config) |
| 8449 | { |
Daniel Vetter | 9a93585 | 2012-07-05 22:34:27 +0200 | [diff] [blame] | 8450 | struct intel_encoder *encoder; |
| 8451 | struct intel_connector *connector; |
Daniel Vetter | 85f9eb7 | 2012-07-04 22:24:08 +0200 | [diff] [blame] | 8452 | int count; |
| 8453 | |
| 8454 | count = 0; |
Daniel Vetter | 9a93585 | 2012-07-05 22:34:27 +0200 | [diff] [blame] | 8455 | list_for_each_entry(encoder, &dev->mode_config.encoder_list, base.head) { |
| 8456 | encoder->new_crtc = |
| 8457 | to_intel_crtc(config->save_encoder_crtcs[count++]); |
Daniel Vetter | 85f9eb7 | 2012-07-04 22:24:08 +0200 | [diff] [blame] | 8458 | } |
| 8459 | |
| 8460 | count = 0; |
Daniel Vetter | 9a93585 | 2012-07-05 22:34:27 +0200 | [diff] [blame] | 8461 | list_for_each_entry(connector, &dev->mode_config.connector_list, base.head) { |
| 8462 | connector->new_encoder = |
| 8463 | to_intel_encoder(config->save_connector_encoders[count++]); |
Daniel Vetter | 85f9eb7 | 2012-07-04 22:24:08 +0200 | [diff] [blame] | 8464 | } |
| 8465 | } |
| 8466 | |
Daniel Vetter | 5e2b584 | 2012-07-04 22:41:29 +0200 | [diff] [blame] | 8467 | static void |
| 8468 | intel_set_config_compute_mode_changes(struct drm_mode_set *set, |
| 8469 | struct intel_set_config *config) |
| 8470 | { |
| 8471 | |
| 8472 | /* We should be able to check here if the fb has the same properties |
| 8473 | * and then just flip_or_move it */ |
| 8474 | if (set->crtc->fb != set->fb) { |
| 8475 | /* If we have no fb then treat it as a full mode set */ |
| 8476 | if (set->crtc->fb == NULL) { |
| 8477 | DRM_DEBUG_KMS("crtc has no fb, full mode set\n"); |
| 8478 | config->mode_changed = true; |
| 8479 | } else if (set->fb == NULL) { |
| 8480 | config->mode_changed = true; |
Daniel Vetter | 72f4901 | 2013-03-28 16:01:35 +0100 | [diff] [blame] | 8481 | } else if (set->fb->pixel_format != |
| 8482 | set->crtc->fb->pixel_format) { |
Daniel Vetter | 5e2b584 | 2012-07-04 22:41:29 +0200 | [diff] [blame] | 8483 | config->mode_changed = true; |
| 8484 | } else |
| 8485 | config->fb_changed = true; |
| 8486 | } |
| 8487 | |
Daniel Vetter | 835c587 | 2012-07-10 18:11:08 +0200 | [diff] [blame] | 8488 | if (set->fb && (set->x != set->crtc->x || set->y != set->crtc->y)) |
Daniel Vetter | 5e2b584 | 2012-07-04 22:41:29 +0200 | [diff] [blame] | 8489 | config->fb_changed = true; |
| 8490 | |
| 8491 | if (set->mode && !drm_mode_equal(set->mode, &set->crtc->mode)) { |
| 8492 | DRM_DEBUG_KMS("modes are different, full mode set\n"); |
| 8493 | drm_mode_debug_printmodeline(&set->crtc->mode); |
| 8494 | drm_mode_debug_printmodeline(set->mode); |
| 8495 | config->mode_changed = true; |
| 8496 | } |
| 8497 | } |
| 8498 | |
Daniel Vetter | 2e43105 | 2012-07-04 22:42:15 +0200 | [diff] [blame] | 8499 | static int |
Daniel Vetter | 9a93585 | 2012-07-05 22:34:27 +0200 | [diff] [blame] | 8500 | intel_modeset_stage_output_state(struct drm_device *dev, |
| 8501 | struct drm_mode_set *set, |
| 8502 | struct intel_set_config *config) |
Daniel Vetter | 50f5611 | 2012-07-02 09:35:43 +0200 | [diff] [blame] | 8503 | { |
Daniel Vetter | 85f9eb7 | 2012-07-04 22:24:08 +0200 | [diff] [blame] | 8504 | struct drm_crtc *new_crtc; |
Daniel Vetter | 9a93585 | 2012-07-05 22:34:27 +0200 | [diff] [blame] | 8505 | struct intel_connector *connector; |
| 8506 | struct intel_encoder *encoder; |
Daniel Vetter | 2e43105 | 2012-07-04 22:42:15 +0200 | [diff] [blame] | 8507 | int count, ro; |
Daniel Vetter | 50f5611 | 2012-07-02 09:35:43 +0200 | [diff] [blame] | 8508 | |
Damien Lespiau | 9abdda7 | 2013-02-13 13:29:23 +0000 | [diff] [blame] | 8509 | /* The upper layers ensure that we either disable a crtc or have a list |
Daniel Vetter | 9a93585 | 2012-07-05 22:34:27 +0200 | [diff] [blame] | 8510 | * of connectors. For paranoia, double-check this. */ |
| 8511 | WARN_ON(!set->fb && (set->num_connectors != 0)); |
| 8512 | WARN_ON(set->fb && (set->num_connectors == 0)); |
| 8513 | |
Daniel Vetter | 50f5611 | 2012-07-02 09:35:43 +0200 | [diff] [blame] | 8514 | count = 0; |
Daniel Vetter | 9a93585 | 2012-07-05 22:34:27 +0200 | [diff] [blame] | 8515 | list_for_each_entry(connector, &dev->mode_config.connector_list, |
| 8516 | base.head) { |
| 8517 | /* Otherwise traverse passed in connector list and get encoders |
| 8518 | * for them. */ |
Daniel Vetter | 50f5611 | 2012-07-02 09:35:43 +0200 | [diff] [blame] | 8519 | for (ro = 0; ro < set->num_connectors; ro++) { |
Daniel Vetter | 9a93585 | 2012-07-05 22:34:27 +0200 | [diff] [blame] | 8520 | if (set->connectors[ro] == &connector->base) { |
| 8521 | connector->new_encoder = connector->encoder; |
Daniel Vetter | 50f5611 | 2012-07-02 09:35:43 +0200 | [diff] [blame] | 8522 | break; |
| 8523 | } |
| 8524 | } |
| 8525 | |
Daniel Vetter | 9a93585 | 2012-07-05 22:34:27 +0200 | [diff] [blame] | 8526 | /* If we disable the crtc, disable all its connectors. Also, if |
| 8527 | * the connector is on the changing crtc but not on the new |
| 8528 | * connector list, disable it. */ |
| 8529 | if ((!set->fb || ro == set->num_connectors) && |
| 8530 | connector->base.encoder && |
| 8531 | connector->base.encoder->crtc == set->crtc) { |
| 8532 | connector->new_encoder = NULL; |
| 8533 | |
| 8534 | DRM_DEBUG_KMS("[CONNECTOR:%d:%s] to [NOCRTC]\n", |
| 8535 | connector->base.base.id, |
| 8536 | drm_get_connector_name(&connector->base)); |
| 8537 | } |
| 8538 | |
| 8539 | |
| 8540 | if (&connector->new_encoder->base != connector->base.encoder) { |
Daniel Vetter | 50f5611 | 2012-07-02 09:35:43 +0200 | [diff] [blame] | 8541 | DRM_DEBUG_KMS("encoder changed, full mode switch\n"); |
Daniel Vetter | 5e2b584 | 2012-07-04 22:41:29 +0200 | [diff] [blame] | 8542 | config->mode_changed = true; |
Daniel Vetter | 50f5611 | 2012-07-02 09:35:43 +0200 | [diff] [blame] | 8543 | } |
Daniel Vetter | 9a93585 | 2012-07-05 22:34:27 +0200 | [diff] [blame] | 8544 | } |
| 8545 | /* connector->new_encoder is now updated for all connectors. */ |
| 8546 | |
| 8547 | /* Update crtc of enabled connectors. */ |
Daniel Vetter | 50f5611 | 2012-07-02 09:35:43 +0200 | [diff] [blame] | 8548 | count = 0; |
Daniel Vetter | 9a93585 | 2012-07-05 22:34:27 +0200 | [diff] [blame] | 8549 | list_for_each_entry(connector, &dev->mode_config.connector_list, |
| 8550 | base.head) { |
| 8551 | if (!connector->new_encoder) |
Daniel Vetter | 50f5611 | 2012-07-02 09:35:43 +0200 | [diff] [blame] | 8552 | continue; |
| 8553 | |
Daniel Vetter | 9a93585 | 2012-07-05 22:34:27 +0200 | [diff] [blame] | 8554 | new_crtc = connector->new_encoder->base.crtc; |
Daniel Vetter | 50f5611 | 2012-07-02 09:35:43 +0200 | [diff] [blame] | 8555 | |
| 8556 | for (ro = 0; ro < set->num_connectors; ro++) { |
Daniel Vetter | 9a93585 | 2012-07-05 22:34:27 +0200 | [diff] [blame] | 8557 | if (set->connectors[ro] == &connector->base) |
Daniel Vetter | 50f5611 | 2012-07-02 09:35:43 +0200 | [diff] [blame] | 8558 | new_crtc = set->crtc; |
| 8559 | } |
| 8560 | |
| 8561 | /* Make sure the new CRTC will work with the encoder */ |
Daniel Vetter | 9a93585 | 2012-07-05 22:34:27 +0200 | [diff] [blame] | 8562 | if (!intel_encoder_crtc_ok(&connector->new_encoder->base, |
| 8563 | new_crtc)) { |
Daniel Vetter | 5e2b584 | 2012-07-04 22:41:29 +0200 | [diff] [blame] | 8564 | return -EINVAL; |
Daniel Vetter | 50f5611 | 2012-07-02 09:35:43 +0200 | [diff] [blame] | 8565 | } |
Daniel Vetter | 9a93585 | 2012-07-05 22:34:27 +0200 | [diff] [blame] | 8566 | connector->encoder->new_crtc = to_intel_crtc(new_crtc); |
| 8567 | |
| 8568 | DRM_DEBUG_KMS("[CONNECTOR:%d:%s] to [CRTC:%d]\n", |
| 8569 | connector->base.base.id, |
| 8570 | drm_get_connector_name(&connector->base), |
| 8571 | new_crtc->base.id); |
| 8572 | } |
| 8573 | |
| 8574 | /* Check for any encoders that needs to be disabled. */ |
| 8575 | list_for_each_entry(encoder, &dev->mode_config.encoder_list, |
| 8576 | base.head) { |
| 8577 | list_for_each_entry(connector, |
| 8578 | &dev->mode_config.connector_list, |
| 8579 | base.head) { |
| 8580 | if (connector->new_encoder == encoder) { |
| 8581 | WARN_ON(!connector->new_encoder->new_crtc); |
| 8582 | |
| 8583 | goto next_encoder; |
| 8584 | } |
| 8585 | } |
| 8586 | encoder->new_crtc = NULL; |
| 8587 | next_encoder: |
| 8588 | /* Only now check for crtc changes so we don't miss encoders |
| 8589 | * that will be disabled. */ |
| 8590 | if (&encoder->new_crtc->base != encoder->base.crtc) { |
Daniel Vetter | 50f5611 | 2012-07-02 09:35:43 +0200 | [diff] [blame] | 8591 | DRM_DEBUG_KMS("crtc changed, full mode switch\n"); |
Daniel Vetter | 5e2b584 | 2012-07-04 22:41:29 +0200 | [diff] [blame] | 8592 | config->mode_changed = true; |
Daniel Vetter | 50f5611 | 2012-07-02 09:35:43 +0200 | [diff] [blame] | 8593 | } |
| 8594 | } |
Daniel Vetter | 9a93585 | 2012-07-05 22:34:27 +0200 | [diff] [blame] | 8595 | /* Now we've also updated encoder->new_crtc for all encoders. */ |
Daniel Vetter | 50f5611 | 2012-07-02 09:35:43 +0200 | [diff] [blame] | 8596 | |
Daniel Vetter | 2e43105 | 2012-07-04 22:42:15 +0200 | [diff] [blame] | 8597 | return 0; |
| 8598 | } |
| 8599 | |
| 8600 | static int intel_crtc_set_config(struct drm_mode_set *set) |
| 8601 | { |
| 8602 | struct drm_device *dev; |
Daniel Vetter | 2e43105 | 2012-07-04 22:42:15 +0200 | [diff] [blame] | 8603 | struct drm_mode_set save_set; |
| 8604 | struct intel_set_config *config; |
| 8605 | int ret; |
Daniel Vetter | 2e43105 | 2012-07-04 22:42:15 +0200 | [diff] [blame] | 8606 | |
Daniel Vetter | 8d3e375 | 2012-07-05 16:09:09 +0200 | [diff] [blame] | 8607 | BUG_ON(!set); |
| 8608 | BUG_ON(!set->crtc); |
| 8609 | BUG_ON(!set->crtc->helper_private); |
Daniel Vetter | 2e43105 | 2012-07-04 22:42:15 +0200 | [diff] [blame] | 8610 | |
Daniel Vetter | 7e53f3a | 2013-01-21 10:52:17 +0100 | [diff] [blame] | 8611 | /* Enforce sane interface api - has been abused by the fb helper. */ |
| 8612 | BUG_ON(!set->mode && set->fb); |
| 8613 | BUG_ON(set->fb && set->num_connectors == 0); |
Daniel Vetter | 431e50f | 2012-07-10 17:53:42 +0200 | [diff] [blame] | 8614 | |
Daniel Vetter | 2e43105 | 2012-07-04 22:42:15 +0200 | [diff] [blame] | 8615 | if (set->fb) { |
| 8616 | DRM_DEBUG_KMS("[CRTC:%d] [FB:%d] #connectors=%d (x y) (%i %i)\n", |
| 8617 | set->crtc->base.id, set->fb->base.id, |
| 8618 | (int)set->num_connectors, set->x, set->y); |
| 8619 | } else { |
| 8620 | DRM_DEBUG_KMS("[CRTC:%d] [NOFB]\n", set->crtc->base.id); |
Daniel Vetter | 2e43105 | 2012-07-04 22:42:15 +0200 | [diff] [blame] | 8621 | } |
| 8622 | |
| 8623 | dev = set->crtc->dev; |
| 8624 | |
| 8625 | ret = -ENOMEM; |
| 8626 | config = kzalloc(sizeof(*config), GFP_KERNEL); |
| 8627 | if (!config) |
| 8628 | goto out_config; |
| 8629 | |
| 8630 | ret = intel_set_config_save_state(dev, config); |
| 8631 | if (ret) |
| 8632 | goto out_config; |
| 8633 | |
| 8634 | save_set.crtc = set->crtc; |
| 8635 | save_set.mode = &set->crtc->mode; |
| 8636 | save_set.x = set->crtc->x; |
| 8637 | save_set.y = set->crtc->y; |
| 8638 | save_set.fb = set->crtc->fb; |
| 8639 | |
| 8640 | /* Compute whether we need a full modeset, only an fb base update or no |
| 8641 | * change at all. In the future we might also check whether only the |
| 8642 | * mode changed, e.g. for LVDS where we only change the panel fitter in |
| 8643 | * such cases. */ |
| 8644 | intel_set_config_compute_mode_changes(set, config); |
| 8645 | |
Daniel Vetter | 9a93585 | 2012-07-05 22:34:27 +0200 | [diff] [blame] | 8646 | ret = intel_modeset_stage_output_state(dev, set, config); |
Daniel Vetter | 2e43105 | 2012-07-04 22:42:15 +0200 | [diff] [blame] | 8647 | if (ret) |
| 8648 | goto fail; |
| 8649 | |
Daniel Vetter | 5e2b584 | 2012-07-04 22:41:29 +0200 | [diff] [blame] | 8650 | if (config->mode_changed) { |
Chris Wilson | c0c36b94 | 2012-12-19 16:08:43 +0000 | [diff] [blame] | 8651 | ret = intel_set_mode(set->crtc, set->mode, |
| 8652 | set->x, set->y, set->fb); |
| 8653 | if (ret) { |
| 8654 | DRM_ERROR("failed to set mode on [CRTC:%d], err = %d\n", |
| 8655 | set->crtc->base.id, ret); |
Daniel Vetter | 87f1faa6 | 2012-07-05 23:36:17 +0200 | [diff] [blame] | 8656 | goto fail; |
| 8657 | } |
Daniel Vetter | 5e2b584 | 2012-07-04 22:41:29 +0200 | [diff] [blame] | 8658 | } else if (config->fb_changed) { |
Ville Syrjälä | 4878cae | 2013-02-18 19:08:48 +0200 | [diff] [blame] | 8659 | intel_crtc_wait_for_pending_flips(set->crtc); |
| 8660 | |
Daniel Vetter | 4f660f4 | 2012-07-02 09:47:37 +0200 | [diff] [blame] | 8661 | ret = intel_pipe_set_base(set->crtc, |
Daniel Vetter | 94352cf | 2012-07-05 22:51:56 +0200 | [diff] [blame] | 8662 | set->x, set->y, set->fb); |
Daniel Vetter | 50f5611 | 2012-07-02 09:35:43 +0200 | [diff] [blame] | 8663 | } |
| 8664 | |
Daniel Vetter | d9e5560 | 2012-07-04 22:16:09 +0200 | [diff] [blame] | 8665 | intel_set_config_free(config); |
| 8666 | |
Daniel Vetter | 50f5611 | 2012-07-02 09:35:43 +0200 | [diff] [blame] | 8667 | return 0; |
| 8668 | |
| 8669 | fail: |
Daniel Vetter | 85f9eb7 | 2012-07-04 22:24:08 +0200 | [diff] [blame] | 8670 | intel_set_config_restore_state(dev, config); |
Daniel Vetter | 50f5611 | 2012-07-02 09:35:43 +0200 | [diff] [blame] | 8671 | |
| 8672 | /* Try to restore the config */ |
Daniel Vetter | 5e2b584 | 2012-07-04 22:41:29 +0200 | [diff] [blame] | 8673 | if (config->mode_changed && |
Chris Wilson | c0c36b94 | 2012-12-19 16:08:43 +0000 | [diff] [blame] | 8674 | intel_set_mode(save_set.crtc, save_set.mode, |
| 8675 | save_set.x, save_set.y, save_set.fb)) |
Daniel Vetter | 50f5611 | 2012-07-02 09:35:43 +0200 | [diff] [blame] | 8676 | DRM_ERROR("failed to restore config after modeset failure\n"); |
| 8677 | |
Daniel Vetter | d9e5560 | 2012-07-04 22:16:09 +0200 | [diff] [blame] | 8678 | out_config: |
| 8679 | intel_set_config_free(config); |
Daniel Vetter | 50f5611 | 2012-07-02 09:35:43 +0200 | [diff] [blame] | 8680 | return ret; |
| 8681 | } |
| 8682 | |
Chris Wilson | f6e5b16 | 2011-04-12 18:06:51 +0100 | [diff] [blame] | 8683 | static const struct drm_crtc_funcs intel_crtc_funcs = { |
Chris Wilson | f6e5b16 | 2011-04-12 18:06:51 +0100 | [diff] [blame] | 8684 | .cursor_set = intel_crtc_cursor_set, |
| 8685 | .cursor_move = intel_crtc_cursor_move, |
| 8686 | .gamma_set = intel_crtc_gamma_set, |
Daniel Vetter | 50f5611 | 2012-07-02 09:35:43 +0200 | [diff] [blame] | 8687 | .set_config = intel_crtc_set_config, |
Chris Wilson | f6e5b16 | 2011-04-12 18:06:51 +0100 | [diff] [blame] | 8688 | .destroy = intel_crtc_destroy, |
| 8689 | .page_flip = intel_crtc_page_flip, |
| 8690 | }; |
| 8691 | |
Paulo Zanoni | 79f689a | 2012-10-05 12:05:52 -0300 | [diff] [blame] | 8692 | static void intel_cpu_pll_init(struct drm_device *dev) |
| 8693 | { |
Paulo Zanoni | affa935 | 2012-11-23 15:30:39 -0200 | [diff] [blame] | 8694 | if (HAS_DDI(dev)) |
Paulo Zanoni | 79f689a | 2012-10-05 12:05:52 -0300 | [diff] [blame] | 8695 | intel_ddi_pll_init(dev); |
| 8696 | } |
| 8697 | |
Jesse Barnes | ee7b9f9 | 2012-04-20 17:11:53 +0100 | [diff] [blame] | 8698 | static void intel_pch_pll_init(struct drm_device *dev) |
| 8699 | { |
| 8700 | drm_i915_private_t *dev_priv = dev->dev_private; |
| 8701 | int i; |
| 8702 | |
| 8703 | if (dev_priv->num_pch_pll == 0) { |
| 8704 | DRM_DEBUG_KMS("No PCH PLLs on this hardware, skipping initialisation\n"); |
| 8705 | return; |
| 8706 | } |
| 8707 | |
| 8708 | for (i = 0; i < dev_priv->num_pch_pll; i++) { |
| 8709 | dev_priv->pch_plls[i].pll_reg = _PCH_DPLL(i); |
| 8710 | dev_priv->pch_plls[i].fp0_reg = _PCH_FP0(i); |
| 8711 | dev_priv->pch_plls[i].fp1_reg = _PCH_FP1(i); |
| 8712 | } |
| 8713 | } |
| 8714 | |
Hannes Eder | b358d0a | 2008-12-18 21:18:47 +0100 | [diff] [blame] | 8715 | static void intel_crtc_init(struct drm_device *dev, int pipe) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 8716 | { |
Jesse Barnes | 22fd0fa | 2009-12-02 13:42:53 -0800 | [diff] [blame] | 8717 | drm_i915_private_t *dev_priv = dev->dev_private; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 8718 | struct intel_crtc *intel_crtc; |
| 8719 | int i; |
| 8720 | |
| 8721 | intel_crtc = kzalloc(sizeof(struct intel_crtc) + (INTELFB_CONN_LIMIT * sizeof(struct drm_connector *)), GFP_KERNEL); |
| 8722 | if (intel_crtc == NULL) |
| 8723 | return; |
| 8724 | |
| 8725 | drm_crtc_init(dev, &intel_crtc->base, &intel_crtc_funcs); |
| 8726 | |
| 8727 | drm_mode_crtc_set_gamma_size(&intel_crtc->base, 256); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 8728 | for (i = 0; i < 256; i++) { |
| 8729 | intel_crtc->lut_r[i] = i; |
| 8730 | intel_crtc->lut_g[i] = i; |
| 8731 | intel_crtc->lut_b[i] = i; |
| 8732 | } |
| 8733 | |
Jesse Barnes | 8082400 | 2009-09-10 15:28:06 -0700 | [diff] [blame] | 8734 | /* Swap pipes & planes for FBC on pre-965 */ |
| 8735 | intel_crtc->pipe = pipe; |
| 8736 | intel_crtc->plane = pipe; |
Chris Wilson | e2e767a | 2010-09-13 16:53:12 +0100 | [diff] [blame] | 8737 | if (IS_MOBILE(dev) && IS_GEN3(dev)) { |
Zhao Yakui | 28c9773 | 2009-10-09 11:39:41 +0800 | [diff] [blame] | 8738 | DRM_DEBUG_KMS("swapping pipes & planes for FBC\n"); |
Chris Wilson | e2e767a | 2010-09-13 16:53:12 +0100 | [diff] [blame] | 8739 | intel_crtc->plane = !pipe; |
Jesse Barnes | 8082400 | 2009-09-10 15:28:06 -0700 | [diff] [blame] | 8740 | } |
| 8741 | |
Jesse Barnes | 22fd0fa | 2009-12-02 13:42:53 -0800 | [diff] [blame] | 8742 | BUG_ON(pipe >= ARRAY_SIZE(dev_priv->plane_to_crtc_mapping) || |
| 8743 | dev_priv->plane_to_crtc_mapping[intel_crtc->plane] != NULL); |
| 8744 | dev_priv->plane_to_crtc_mapping[intel_crtc->plane] = &intel_crtc->base; |
| 8745 | dev_priv->pipe_to_crtc_mapping[intel_crtc->pipe] = &intel_crtc->base; |
| 8746 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 8747 | drm_crtc_helper_add(&intel_crtc->base, &intel_helper_funcs); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 8748 | } |
| 8749 | |
Carl Worth | 08d7b3d | 2009-04-29 14:43:54 -0700 | [diff] [blame] | 8750 | int intel_get_pipe_from_crtc_id(struct drm_device *dev, void *data, |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 8751 | struct drm_file *file) |
Carl Worth | 08d7b3d | 2009-04-29 14:43:54 -0700 | [diff] [blame] | 8752 | { |
Carl Worth | 08d7b3d | 2009-04-29 14:43:54 -0700 | [diff] [blame] | 8753 | struct drm_i915_get_pipe_from_crtc_id *pipe_from_crtc_id = data; |
Daniel Vetter | c05422d | 2009-08-11 16:05:30 +0200 | [diff] [blame] | 8754 | struct drm_mode_object *drmmode_obj; |
| 8755 | struct intel_crtc *crtc; |
Carl Worth | 08d7b3d | 2009-04-29 14:43:54 -0700 | [diff] [blame] | 8756 | |
Daniel Vetter | 1cff8f6 | 2012-04-24 09:55:08 +0200 | [diff] [blame] | 8757 | if (!drm_core_check_feature(dev, DRIVER_MODESET)) |
| 8758 | return -ENODEV; |
Carl Worth | 08d7b3d | 2009-04-29 14:43:54 -0700 | [diff] [blame] | 8759 | |
Daniel Vetter | c05422d | 2009-08-11 16:05:30 +0200 | [diff] [blame] | 8760 | drmmode_obj = drm_mode_object_find(dev, pipe_from_crtc_id->crtc_id, |
| 8761 | DRM_MODE_OBJECT_CRTC); |
Carl Worth | 08d7b3d | 2009-04-29 14:43:54 -0700 | [diff] [blame] | 8762 | |
Daniel Vetter | c05422d | 2009-08-11 16:05:30 +0200 | [diff] [blame] | 8763 | if (!drmmode_obj) { |
Carl Worth | 08d7b3d | 2009-04-29 14:43:54 -0700 | [diff] [blame] | 8764 | DRM_ERROR("no such CRTC id\n"); |
| 8765 | return -EINVAL; |
| 8766 | } |
| 8767 | |
Daniel Vetter | c05422d | 2009-08-11 16:05:30 +0200 | [diff] [blame] | 8768 | crtc = to_intel_crtc(obj_to_crtc(drmmode_obj)); |
| 8769 | pipe_from_crtc_id->pipe = crtc->pipe; |
Carl Worth | 08d7b3d | 2009-04-29 14:43:54 -0700 | [diff] [blame] | 8770 | |
Daniel Vetter | c05422d | 2009-08-11 16:05:30 +0200 | [diff] [blame] | 8771 | return 0; |
Carl Worth | 08d7b3d | 2009-04-29 14:43:54 -0700 | [diff] [blame] | 8772 | } |
| 8773 | |
Daniel Vetter | 66a9278 | 2012-07-12 20:08:18 +0200 | [diff] [blame] | 8774 | static int intel_encoder_clones(struct intel_encoder *encoder) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 8775 | { |
Daniel Vetter | 66a9278 | 2012-07-12 20:08:18 +0200 | [diff] [blame] | 8776 | struct drm_device *dev = encoder->base.dev; |
| 8777 | struct intel_encoder *source_encoder; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 8778 | int index_mask = 0; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 8779 | int entry = 0; |
| 8780 | |
Daniel Vetter | 66a9278 | 2012-07-12 20:08:18 +0200 | [diff] [blame] | 8781 | list_for_each_entry(source_encoder, |
| 8782 | &dev->mode_config.encoder_list, base.head) { |
| 8783 | |
| 8784 | if (encoder == source_encoder) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 8785 | index_mask |= (1 << entry); |
Daniel Vetter | 66a9278 | 2012-07-12 20:08:18 +0200 | [diff] [blame] | 8786 | |
| 8787 | /* Intel hw has only one MUX where enocoders could be cloned. */ |
| 8788 | if (encoder->cloneable && source_encoder->cloneable) |
| 8789 | index_mask |= (1 << entry); |
| 8790 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 8791 | entry++; |
| 8792 | } |
Chris Wilson | 4ef69c7 | 2010-09-09 15:14:28 +0100 | [diff] [blame] | 8793 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 8794 | return index_mask; |
| 8795 | } |
| 8796 | |
Chris Wilson | 4d30244 | 2010-12-14 19:21:29 +0000 | [diff] [blame] | 8797 | static bool has_edp_a(struct drm_device *dev) |
| 8798 | { |
| 8799 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 8800 | |
| 8801 | if (!IS_MOBILE(dev)) |
| 8802 | return false; |
| 8803 | |
| 8804 | if ((I915_READ(DP_A) & DP_DETECTED) == 0) |
| 8805 | return false; |
| 8806 | |
| 8807 | if (IS_GEN5(dev) && |
| 8808 | (I915_READ(ILK_DISPLAY_CHICKEN_FUSES) & ILK_eDP_A_DISABLE)) |
| 8809 | return false; |
| 8810 | |
| 8811 | return true; |
| 8812 | } |
| 8813 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 8814 | static void intel_setup_outputs(struct drm_device *dev) |
| 8815 | { |
Eric Anholt | 725e30a | 2009-01-22 13:01:02 -0800 | [diff] [blame] | 8816 | struct drm_i915_private *dev_priv = dev->dev_private; |
Chris Wilson | 4ef69c7 | 2010-09-09 15:14:28 +0100 | [diff] [blame] | 8817 | struct intel_encoder *encoder; |
Adam Jackson | cb0953d | 2010-07-16 14:46:29 -0400 | [diff] [blame] | 8818 | bool dpd_is_edp = false; |
Chris Wilson | f3cfcba | 2012-02-09 09:35:53 +0000 | [diff] [blame] | 8819 | bool has_lvds; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 8820 | |
Chris Wilson | f3cfcba | 2012-02-09 09:35:53 +0000 | [diff] [blame] | 8821 | has_lvds = intel_lvds_init(dev); |
Chris Wilson | c5d1b51 | 2010-11-29 18:00:23 +0000 | [diff] [blame] | 8822 | if (!has_lvds && !HAS_PCH_SPLIT(dev)) { |
| 8823 | /* disable the panel fitter on everything but LVDS */ |
| 8824 | I915_WRITE(PFIT_CONTROL, 0); |
| 8825 | } |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 8826 | |
Paulo Zanoni | c40c0f5 | 2013-04-12 18:16:53 -0300 | [diff] [blame] | 8827 | if (!IS_ULT(dev)) |
Paulo Zanoni | 79935fc | 2012-11-20 13:27:40 -0200 | [diff] [blame] | 8828 | intel_crt_init(dev); |
Adam Jackson | cb0953d | 2010-07-16 14:46:29 -0400 | [diff] [blame] | 8829 | |
Paulo Zanoni | affa935 | 2012-11-23 15:30:39 -0200 | [diff] [blame] | 8830 | if (HAS_DDI(dev)) { |
Eugeni Dodonov | 0e72a5b | 2012-05-09 15:37:27 -0300 | [diff] [blame] | 8831 | int found; |
| 8832 | |
| 8833 | /* Haswell uses DDI functions to detect digital outputs */ |
| 8834 | found = I915_READ(DDI_BUF_CTL_A) & DDI_INIT_DISPLAY_DETECTED; |
| 8835 | /* DDI A only supports eDP */ |
| 8836 | if (found) |
| 8837 | intel_ddi_init(dev, PORT_A); |
| 8838 | |
| 8839 | /* DDI B, C and D detection is indicated by the SFUSE_STRAP |
| 8840 | * register */ |
| 8841 | found = I915_READ(SFUSE_STRAP); |
| 8842 | |
| 8843 | if (found & SFUSE_STRAP_DDIB_DETECTED) |
| 8844 | intel_ddi_init(dev, PORT_B); |
| 8845 | if (found & SFUSE_STRAP_DDIC_DETECTED) |
| 8846 | intel_ddi_init(dev, PORT_C); |
| 8847 | if (found & SFUSE_STRAP_DDID_DETECTED) |
| 8848 | intel_ddi_init(dev, PORT_D); |
| 8849 | } else if (HAS_PCH_SPLIT(dev)) { |
Adam Jackson | cb0953d | 2010-07-16 14:46:29 -0400 | [diff] [blame] | 8850 | int found; |
Daniel Vetter | 270b304 | 2012-10-27 15:52:05 +0200 | [diff] [blame] | 8851 | dpd_is_edp = intel_dpd_is_edp(dev); |
| 8852 | |
| 8853 | if (has_edp_a(dev)) |
| 8854 | intel_dp_init(dev, DP_A, PORT_A); |
Adam Jackson | cb0953d | 2010-07-16 14:46:29 -0400 | [diff] [blame] | 8855 | |
Paulo Zanoni | dc0fa71 | 2013-02-19 16:21:46 -0300 | [diff] [blame] | 8856 | if (I915_READ(PCH_HDMIB) & SDVO_DETECTED) { |
Zhao Yakui | 461ed3c | 2010-03-30 15:11:33 +0800 | [diff] [blame] | 8857 | /* PCH SDVOB multiplex with HDMIB */ |
Daniel Vetter | eef4eac | 2012-03-23 23:43:35 +0100 | [diff] [blame] | 8858 | found = intel_sdvo_init(dev, PCH_SDVOB, true); |
Zhenyu Wang | 30ad48b | 2009-06-05 15:38:43 +0800 | [diff] [blame] | 8859 | if (!found) |
Paulo Zanoni | e2debe9 | 2013-02-18 19:00:27 -0300 | [diff] [blame] | 8860 | intel_hdmi_init(dev, PCH_HDMIB, PORT_B); |
Zhenyu Wang | 5eb08b6 | 2009-07-24 01:00:31 +0800 | [diff] [blame] | 8861 | if (!found && (I915_READ(PCH_DP_B) & DP_DETECTED)) |
Paulo Zanoni | ab9d7c3 | 2012-07-17 17:53:45 -0300 | [diff] [blame] | 8862 | intel_dp_init(dev, PCH_DP_B, PORT_B); |
Zhenyu Wang | 30ad48b | 2009-06-05 15:38:43 +0800 | [diff] [blame] | 8863 | } |
| 8864 | |
Paulo Zanoni | dc0fa71 | 2013-02-19 16:21:46 -0300 | [diff] [blame] | 8865 | if (I915_READ(PCH_HDMIC) & SDVO_DETECTED) |
Paulo Zanoni | e2debe9 | 2013-02-18 19:00:27 -0300 | [diff] [blame] | 8866 | intel_hdmi_init(dev, PCH_HDMIC, PORT_C); |
Zhenyu Wang | 30ad48b | 2009-06-05 15:38:43 +0800 | [diff] [blame] | 8867 | |
Paulo Zanoni | dc0fa71 | 2013-02-19 16:21:46 -0300 | [diff] [blame] | 8868 | if (!dpd_is_edp && I915_READ(PCH_HDMID) & SDVO_DETECTED) |
Paulo Zanoni | e2debe9 | 2013-02-18 19:00:27 -0300 | [diff] [blame] | 8869 | intel_hdmi_init(dev, PCH_HDMID, PORT_D); |
Zhenyu Wang | 30ad48b | 2009-06-05 15:38:43 +0800 | [diff] [blame] | 8870 | |
Zhenyu Wang | 5eb08b6 | 2009-07-24 01:00:31 +0800 | [diff] [blame] | 8871 | if (I915_READ(PCH_DP_C) & DP_DETECTED) |
Paulo Zanoni | ab9d7c3 | 2012-07-17 17:53:45 -0300 | [diff] [blame] | 8872 | intel_dp_init(dev, PCH_DP_C, PORT_C); |
Zhenyu Wang | 5eb08b6 | 2009-07-24 01:00:31 +0800 | [diff] [blame] | 8873 | |
Daniel Vetter | 270b304 | 2012-10-27 15:52:05 +0200 | [diff] [blame] | 8874 | if (I915_READ(PCH_DP_D) & DP_DETECTED) |
Paulo Zanoni | ab9d7c3 | 2012-07-17 17:53:45 -0300 | [diff] [blame] | 8875 | intel_dp_init(dev, PCH_DP_D, PORT_D); |
Jesse Barnes | 4a87d65 | 2012-06-15 11:55:16 -0700 | [diff] [blame] | 8876 | } else if (IS_VALLEYVIEW(dev)) { |
Gajanan Bhat | 19c0392 | 2012-09-27 19:13:07 +0530 | [diff] [blame] | 8877 | /* Check for built-in panel first. Shares lanes with HDMI on SDVOC */ |
Ville Syrjälä | 67cfc20 | 2013-01-25 21:44:44 +0200 | [diff] [blame] | 8878 | if (I915_READ(VLV_DISPLAY_BASE + DP_C) & DP_DETECTED) |
| 8879 | intel_dp_init(dev, VLV_DISPLAY_BASE + DP_C, PORT_C); |
Gajanan Bhat | 19c0392 | 2012-09-27 19:13:07 +0530 | [diff] [blame] | 8880 | |
Paulo Zanoni | dc0fa71 | 2013-02-19 16:21:46 -0300 | [diff] [blame] | 8881 | if (I915_READ(VLV_DISPLAY_BASE + GEN4_HDMIB) & SDVO_DETECTED) { |
Paulo Zanoni | e2debe9 | 2013-02-18 19:00:27 -0300 | [diff] [blame] | 8882 | intel_hdmi_init(dev, VLV_DISPLAY_BASE + GEN4_HDMIB, |
| 8883 | PORT_B); |
Ville Syrjälä | 67cfc20 | 2013-01-25 21:44:44 +0200 | [diff] [blame] | 8884 | if (I915_READ(VLV_DISPLAY_BASE + DP_B) & DP_DETECTED) |
| 8885 | intel_dp_init(dev, VLV_DISPLAY_BASE + DP_B, PORT_B); |
Jesse Barnes | 4a87d65 | 2012-06-15 11:55:16 -0700 | [diff] [blame] | 8886 | } |
Zhenyu Wang | 103a196 | 2009-11-27 11:44:36 +0800 | [diff] [blame] | 8887 | } else if (SUPPORTS_DIGITAL_OUTPUTS(dev)) { |
Ma Ling | 27185ae | 2009-08-24 13:50:23 +0800 | [diff] [blame] | 8888 | bool found = false; |
Eric Anholt | 7d57382 | 2009-01-02 13:33:00 -0800 | [diff] [blame] | 8889 | |
Paulo Zanoni | e2debe9 | 2013-02-18 19:00:27 -0300 | [diff] [blame] | 8890 | if (I915_READ(GEN3_SDVOB) & SDVO_DETECTED) { |
Jesse Barnes | b01f2c3 | 2009-12-11 11:07:17 -0800 | [diff] [blame] | 8891 | DRM_DEBUG_KMS("probing SDVOB\n"); |
Paulo Zanoni | e2debe9 | 2013-02-18 19:00:27 -0300 | [diff] [blame] | 8892 | found = intel_sdvo_init(dev, GEN3_SDVOB, true); |
Jesse Barnes | b01f2c3 | 2009-12-11 11:07:17 -0800 | [diff] [blame] | 8893 | if (!found && SUPPORTS_INTEGRATED_HDMI(dev)) { |
| 8894 | DRM_DEBUG_KMS("probing HDMI on SDVOB\n"); |
Paulo Zanoni | e2debe9 | 2013-02-18 19:00:27 -0300 | [diff] [blame] | 8895 | intel_hdmi_init(dev, GEN4_HDMIB, PORT_B); |
Jesse Barnes | b01f2c3 | 2009-12-11 11:07:17 -0800 | [diff] [blame] | 8896 | } |
Ma Ling | 27185ae | 2009-08-24 13:50:23 +0800 | [diff] [blame] | 8897 | |
Imre Deak | e7281ea | 2013-05-08 13:14:08 +0300 | [diff] [blame] | 8898 | if (!found && SUPPORTS_INTEGRATED_DP(dev)) |
Paulo Zanoni | ab9d7c3 | 2012-07-17 17:53:45 -0300 | [diff] [blame] | 8899 | intel_dp_init(dev, DP_B, PORT_B); |
Eric Anholt | 725e30a | 2009-01-22 13:01:02 -0800 | [diff] [blame] | 8900 | } |
Kristian Høgsberg | 13520b0 | 2009-03-13 15:42:14 -0400 | [diff] [blame] | 8901 | |
| 8902 | /* Before G4X SDVOC doesn't have its own detect register */ |
Kristian Høgsberg | 13520b0 | 2009-03-13 15:42:14 -0400 | [diff] [blame] | 8903 | |
Paulo Zanoni | e2debe9 | 2013-02-18 19:00:27 -0300 | [diff] [blame] | 8904 | if (I915_READ(GEN3_SDVOB) & SDVO_DETECTED) { |
Jesse Barnes | b01f2c3 | 2009-12-11 11:07:17 -0800 | [diff] [blame] | 8905 | DRM_DEBUG_KMS("probing SDVOC\n"); |
Paulo Zanoni | e2debe9 | 2013-02-18 19:00:27 -0300 | [diff] [blame] | 8906 | found = intel_sdvo_init(dev, GEN3_SDVOC, false); |
Jesse Barnes | b01f2c3 | 2009-12-11 11:07:17 -0800 | [diff] [blame] | 8907 | } |
Ma Ling | 27185ae | 2009-08-24 13:50:23 +0800 | [diff] [blame] | 8908 | |
Paulo Zanoni | e2debe9 | 2013-02-18 19:00:27 -0300 | [diff] [blame] | 8909 | if (!found && (I915_READ(GEN3_SDVOC) & SDVO_DETECTED)) { |
Ma Ling | 27185ae | 2009-08-24 13:50:23 +0800 | [diff] [blame] | 8910 | |
Jesse Barnes | b01f2c3 | 2009-12-11 11:07:17 -0800 | [diff] [blame] | 8911 | if (SUPPORTS_INTEGRATED_HDMI(dev)) { |
| 8912 | DRM_DEBUG_KMS("probing HDMI on SDVOC\n"); |
Paulo Zanoni | e2debe9 | 2013-02-18 19:00:27 -0300 | [diff] [blame] | 8913 | intel_hdmi_init(dev, GEN4_HDMIC, PORT_C); |
Jesse Barnes | b01f2c3 | 2009-12-11 11:07:17 -0800 | [diff] [blame] | 8914 | } |
Imre Deak | e7281ea | 2013-05-08 13:14:08 +0300 | [diff] [blame] | 8915 | if (SUPPORTS_INTEGRATED_DP(dev)) |
Paulo Zanoni | ab9d7c3 | 2012-07-17 17:53:45 -0300 | [diff] [blame] | 8916 | intel_dp_init(dev, DP_C, PORT_C); |
Eric Anholt | 725e30a | 2009-01-22 13:01:02 -0800 | [diff] [blame] | 8917 | } |
Ma Ling | 27185ae | 2009-08-24 13:50:23 +0800 | [diff] [blame] | 8918 | |
Jesse Barnes | b01f2c3 | 2009-12-11 11:07:17 -0800 | [diff] [blame] | 8919 | if (SUPPORTS_INTEGRATED_DP(dev) && |
Imre Deak | e7281ea | 2013-05-08 13:14:08 +0300 | [diff] [blame] | 8920 | (I915_READ(DP_D) & DP_DETECTED)) |
Paulo Zanoni | ab9d7c3 | 2012-07-17 17:53:45 -0300 | [diff] [blame] | 8921 | intel_dp_init(dev, DP_D, PORT_D); |
Eric Anholt | bad720f | 2009-10-22 16:11:14 -0700 | [diff] [blame] | 8922 | } else if (IS_GEN2(dev)) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 8923 | intel_dvo_init(dev); |
| 8924 | |
Zhenyu Wang | 103a196 | 2009-11-27 11:44:36 +0800 | [diff] [blame] | 8925 | if (SUPPORTS_TV(dev)) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 8926 | intel_tv_init(dev); |
| 8927 | |
Chris Wilson | 4ef69c7 | 2010-09-09 15:14:28 +0100 | [diff] [blame] | 8928 | list_for_each_entry(encoder, &dev->mode_config.encoder_list, base.head) { |
| 8929 | encoder->base.possible_crtcs = encoder->crtc_mask; |
| 8930 | encoder->base.possible_clones = |
Daniel Vetter | 66a9278 | 2012-07-12 20:08:18 +0200 | [diff] [blame] | 8931 | intel_encoder_clones(encoder); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 8932 | } |
Chris Wilson | 47356eb | 2011-01-11 17:06:04 +0000 | [diff] [blame] | 8933 | |
Paulo Zanoni | dde86e2 | 2012-12-01 12:04:25 -0200 | [diff] [blame] | 8934 | intel_init_pch_refclk(dev); |
Daniel Vetter | 270b304 | 2012-10-27 15:52:05 +0200 | [diff] [blame] | 8935 | |
| 8936 | drm_helper_move_panel_connectors_to_head(dev); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 8937 | } |
| 8938 | |
| 8939 | static void intel_user_framebuffer_destroy(struct drm_framebuffer *fb) |
| 8940 | { |
| 8941 | struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 8942 | |
| 8943 | drm_framebuffer_cleanup(fb); |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 8944 | drm_gem_object_unreference_unlocked(&intel_fb->obj->base); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 8945 | |
| 8946 | kfree(intel_fb); |
| 8947 | } |
| 8948 | |
| 8949 | static int intel_user_framebuffer_create_handle(struct drm_framebuffer *fb, |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 8950 | struct drm_file *file, |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 8951 | unsigned int *handle) |
| 8952 | { |
| 8953 | struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb); |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 8954 | struct drm_i915_gem_object *obj = intel_fb->obj; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 8955 | |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 8956 | return drm_gem_handle_create(file, &obj->base, handle); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 8957 | } |
| 8958 | |
| 8959 | static const struct drm_framebuffer_funcs intel_fb_funcs = { |
| 8960 | .destroy = intel_user_framebuffer_destroy, |
| 8961 | .create_handle = intel_user_framebuffer_create_handle, |
| 8962 | }; |
| 8963 | |
Dave Airlie | 3865167 | 2010-03-30 05:34:13 +0000 | [diff] [blame] | 8964 | int intel_framebuffer_init(struct drm_device *dev, |
| 8965 | struct intel_framebuffer *intel_fb, |
Jesse Barnes | 308e5bc | 2011-11-14 14:51:28 -0800 | [diff] [blame] | 8966 | struct drm_mode_fb_cmd2 *mode_cmd, |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 8967 | struct drm_i915_gem_object *obj) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 8968 | { |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 8969 | int ret; |
| 8970 | |
Chris Wilson | c16ed4b | 2012-12-18 22:13:14 +0000 | [diff] [blame] | 8971 | if (obj->tiling_mode == I915_TILING_Y) { |
| 8972 | DRM_DEBUG("hardware does not support tiling Y\n"); |
Chris Wilson | 57cd650 | 2010-08-08 12:34:44 +0100 | [diff] [blame] | 8973 | return -EINVAL; |
Chris Wilson | c16ed4b | 2012-12-18 22:13:14 +0000 | [diff] [blame] | 8974 | } |
Chris Wilson | 57cd650 | 2010-08-08 12:34:44 +0100 | [diff] [blame] | 8975 | |
Chris Wilson | c16ed4b | 2012-12-18 22:13:14 +0000 | [diff] [blame] | 8976 | if (mode_cmd->pitches[0] & 63) { |
| 8977 | DRM_DEBUG("pitch (%d) must be at least 64 byte aligned\n", |
| 8978 | mode_cmd->pitches[0]); |
Chris Wilson | 57cd650 | 2010-08-08 12:34:44 +0100 | [diff] [blame] | 8979 | return -EINVAL; |
Chris Wilson | c16ed4b | 2012-12-18 22:13:14 +0000 | [diff] [blame] | 8980 | } |
Chris Wilson | 57cd650 | 2010-08-08 12:34:44 +0100 | [diff] [blame] | 8981 | |
Ville Syrjälä | 5d7bd70 | 2012-10-31 17:50:18 +0200 | [diff] [blame] | 8982 | /* FIXME <= Gen4 stride limits are bit unclear */ |
Chris Wilson | c16ed4b | 2012-12-18 22:13:14 +0000 | [diff] [blame] | 8983 | if (mode_cmd->pitches[0] > 32768) { |
| 8984 | DRM_DEBUG("pitch (%d) must be at less than 32768\n", |
| 8985 | mode_cmd->pitches[0]); |
Ville Syrjälä | 5d7bd70 | 2012-10-31 17:50:18 +0200 | [diff] [blame] | 8986 | return -EINVAL; |
Chris Wilson | c16ed4b | 2012-12-18 22:13:14 +0000 | [diff] [blame] | 8987 | } |
Ville Syrjälä | 5d7bd70 | 2012-10-31 17:50:18 +0200 | [diff] [blame] | 8988 | |
| 8989 | if (obj->tiling_mode != I915_TILING_NONE && |
Chris Wilson | c16ed4b | 2012-12-18 22:13:14 +0000 | [diff] [blame] | 8990 | mode_cmd->pitches[0] != obj->stride) { |
| 8991 | DRM_DEBUG("pitch (%d) must match tiling stride (%d)\n", |
| 8992 | mode_cmd->pitches[0], obj->stride); |
Ville Syrjälä | 5d7bd70 | 2012-10-31 17:50:18 +0200 | [diff] [blame] | 8993 | return -EINVAL; |
Chris Wilson | c16ed4b | 2012-12-18 22:13:14 +0000 | [diff] [blame] | 8994 | } |
Ville Syrjälä | 5d7bd70 | 2012-10-31 17:50:18 +0200 | [diff] [blame] | 8995 | |
Ville Syrjälä | 57779d0 | 2012-10-31 17:50:14 +0200 | [diff] [blame] | 8996 | /* Reject formats not supported by any plane early. */ |
Jesse Barnes | 308e5bc | 2011-11-14 14:51:28 -0800 | [diff] [blame] | 8997 | switch (mode_cmd->pixel_format) { |
Ville Syrjälä | 57779d0 | 2012-10-31 17:50:14 +0200 | [diff] [blame] | 8998 | case DRM_FORMAT_C8: |
Ville Syrjälä | 04b3924 | 2011-11-17 18:05:13 +0200 | [diff] [blame] | 8999 | case DRM_FORMAT_RGB565: |
| 9000 | case DRM_FORMAT_XRGB8888: |
| 9001 | case DRM_FORMAT_ARGB8888: |
Ville Syrjälä | 57779d0 | 2012-10-31 17:50:14 +0200 | [diff] [blame] | 9002 | break; |
| 9003 | case DRM_FORMAT_XRGB1555: |
| 9004 | case DRM_FORMAT_ARGB1555: |
Chris Wilson | c16ed4b | 2012-12-18 22:13:14 +0000 | [diff] [blame] | 9005 | if (INTEL_INFO(dev)->gen > 3) { |
| 9006 | DRM_DEBUG("invalid format: 0x%08x\n", mode_cmd->pixel_format); |
Ville Syrjälä | 57779d0 | 2012-10-31 17:50:14 +0200 | [diff] [blame] | 9007 | return -EINVAL; |
Chris Wilson | c16ed4b | 2012-12-18 22:13:14 +0000 | [diff] [blame] | 9008 | } |
Ville Syrjälä | 57779d0 | 2012-10-31 17:50:14 +0200 | [diff] [blame] | 9009 | break; |
| 9010 | case DRM_FORMAT_XBGR8888: |
| 9011 | case DRM_FORMAT_ABGR8888: |
Ville Syrjälä | 04b3924 | 2011-11-17 18:05:13 +0200 | [diff] [blame] | 9012 | case DRM_FORMAT_XRGB2101010: |
| 9013 | case DRM_FORMAT_ARGB2101010: |
Ville Syrjälä | 57779d0 | 2012-10-31 17:50:14 +0200 | [diff] [blame] | 9014 | case DRM_FORMAT_XBGR2101010: |
| 9015 | case DRM_FORMAT_ABGR2101010: |
Chris Wilson | c16ed4b | 2012-12-18 22:13:14 +0000 | [diff] [blame] | 9016 | if (INTEL_INFO(dev)->gen < 4) { |
| 9017 | DRM_DEBUG("invalid format: 0x%08x\n", mode_cmd->pixel_format); |
Ville Syrjälä | 57779d0 | 2012-10-31 17:50:14 +0200 | [diff] [blame] | 9018 | return -EINVAL; |
Chris Wilson | c16ed4b | 2012-12-18 22:13:14 +0000 | [diff] [blame] | 9019 | } |
Jesse Barnes | b562674 | 2011-06-24 12:19:27 -0700 | [diff] [blame] | 9020 | break; |
Ville Syrjälä | 04b3924 | 2011-11-17 18:05:13 +0200 | [diff] [blame] | 9021 | case DRM_FORMAT_YUYV: |
| 9022 | case DRM_FORMAT_UYVY: |
| 9023 | case DRM_FORMAT_YVYU: |
| 9024 | case DRM_FORMAT_VYUY: |
Chris Wilson | c16ed4b | 2012-12-18 22:13:14 +0000 | [diff] [blame] | 9025 | if (INTEL_INFO(dev)->gen < 5) { |
| 9026 | DRM_DEBUG("invalid format: 0x%08x\n", mode_cmd->pixel_format); |
Ville Syrjälä | 57779d0 | 2012-10-31 17:50:14 +0200 | [diff] [blame] | 9027 | return -EINVAL; |
Chris Wilson | c16ed4b | 2012-12-18 22:13:14 +0000 | [diff] [blame] | 9028 | } |
Chris Wilson | 57cd650 | 2010-08-08 12:34:44 +0100 | [diff] [blame] | 9029 | break; |
| 9030 | default: |
Chris Wilson | c16ed4b | 2012-12-18 22:13:14 +0000 | [diff] [blame] | 9031 | DRM_DEBUG("unsupported pixel format 0x%08x\n", mode_cmd->pixel_format); |
Chris Wilson | 57cd650 | 2010-08-08 12:34:44 +0100 | [diff] [blame] | 9032 | return -EINVAL; |
| 9033 | } |
| 9034 | |
Ville Syrjälä | 90f9a33 | 2012-10-31 17:50:19 +0200 | [diff] [blame] | 9035 | /* FIXME need to adjust LINOFF/TILEOFF accordingly. */ |
| 9036 | if (mode_cmd->offsets[0] != 0) |
| 9037 | return -EINVAL; |
| 9038 | |
Daniel Vetter | c7d73f6 | 2012-12-13 23:38:38 +0100 | [diff] [blame] | 9039 | drm_helper_mode_fill_fb_struct(&intel_fb->base, mode_cmd); |
| 9040 | intel_fb->obj = obj; |
| 9041 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 9042 | ret = drm_framebuffer_init(dev, &intel_fb->base, &intel_fb_funcs); |
| 9043 | if (ret) { |
| 9044 | DRM_ERROR("framebuffer init failed %d\n", ret); |
| 9045 | return ret; |
| 9046 | } |
| 9047 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 9048 | return 0; |
| 9049 | } |
| 9050 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 9051 | static struct drm_framebuffer * |
| 9052 | intel_user_framebuffer_create(struct drm_device *dev, |
| 9053 | struct drm_file *filp, |
Jesse Barnes | 308e5bc | 2011-11-14 14:51:28 -0800 | [diff] [blame] | 9054 | struct drm_mode_fb_cmd2 *mode_cmd) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 9055 | { |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 9056 | struct drm_i915_gem_object *obj; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 9057 | |
Jesse Barnes | 308e5bc | 2011-11-14 14:51:28 -0800 | [diff] [blame] | 9058 | obj = to_intel_bo(drm_gem_object_lookup(dev, filp, |
| 9059 | mode_cmd->handles[0])); |
Chris Wilson | c872522 | 2011-02-19 11:31:06 +0000 | [diff] [blame] | 9060 | if (&obj->base == NULL) |
Chris Wilson | cce13ff | 2010-08-08 13:36:38 +0100 | [diff] [blame] | 9061 | return ERR_PTR(-ENOENT); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 9062 | |
Chris Wilson | d2dff87 | 2011-04-19 08:36:26 +0100 | [diff] [blame] | 9063 | return intel_framebuffer_create(dev, mode_cmd, obj); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 9064 | } |
| 9065 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 9066 | static const struct drm_mode_config_funcs intel_mode_funcs = { |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 9067 | .fb_create = intel_user_framebuffer_create, |
Dave Airlie | eb1f8e4 | 2010-05-07 06:42:51 +0000 | [diff] [blame] | 9068 | .output_poll_changed = intel_fb_output_poll_changed, |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 9069 | }; |
| 9070 | |
Jesse Barnes | e70236a | 2009-09-21 10:42:27 -0700 | [diff] [blame] | 9071 | /* Set up chip specific display functions */ |
| 9072 | static void intel_init_display(struct drm_device *dev) |
| 9073 | { |
| 9074 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 9075 | |
Paulo Zanoni | affa935 | 2012-11-23 15:30:39 -0200 | [diff] [blame] | 9076 | if (HAS_DDI(dev)) { |
Daniel Vetter | 0e8ffe1 | 2013-03-28 10:42:00 +0100 | [diff] [blame] | 9077 | dev_priv->display.get_pipe_config = haswell_get_pipe_config; |
Paulo Zanoni | 09b4ddf | 2012-10-05 12:05:55 -0300 | [diff] [blame] | 9078 | dev_priv->display.crtc_mode_set = haswell_crtc_mode_set; |
Paulo Zanoni | 4f771f1 | 2012-10-23 18:29:51 -0200 | [diff] [blame] | 9079 | dev_priv->display.crtc_enable = haswell_crtc_enable; |
| 9080 | dev_priv->display.crtc_disable = haswell_crtc_disable; |
Paulo Zanoni | 6441ab5 | 2012-10-05 12:05:58 -0300 | [diff] [blame] | 9081 | dev_priv->display.off = haswell_crtc_off; |
Paulo Zanoni | 09b4ddf | 2012-10-05 12:05:55 -0300 | [diff] [blame] | 9082 | dev_priv->display.update_plane = ironlake_update_plane; |
| 9083 | } else if (HAS_PCH_SPLIT(dev)) { |
Daniel Vetter | 0e8ffe1 | 2013-03-28 10:42:00 +0100 | [diff] [blame] | 9084 | dev_priv->display.get_pipe_config = ironlake_get_pipe_config; |
Eric Anholt | f564048e | 2011-03-30 13:01:02 -0700 | [diff] [blame] | 9085 | dev_priv->display.crtc_mode_set = ironlake_crtc_mode_set; |
Daniel Vetter | 76e5a89 | 2012-06-29 22:39:33 +0200 | [diff] [blame] | 9086 | dev_priv->display.crtc_enable = ironlake_crtc_enable; |
| 9087 | dev_priv->display.crtc_disable = ironlake_crtc_disable; |
Jesse Barnes | ee7b9f9 | 2012-04-20 17:11:53 +0100 | [diff] [blame] | 9088 | dev_priv->display.off = ironlake_crtc_off; |
Jesse Barnes | 17638cd | 2011-06-24 12:19:23 -0700 | [diff] [blame] | 9089 | dev_priv->display.update_plane = ironlake_update_plane; |
Jesse Barnes | 89b667f | 2013-04-18 14:51:36 -0700 | [diff] [blame] | 9090 | } else if (IS_VALLEYVIEW(dev)) { |
| 9091 | dev_priv->display.get_pipe_config = i9xx_get_pipe_config; |
| 9092 | dev_priv->display.crtc_mode_set = i9xx_crtc_mode_set; |
| 9093 | dev_priv->display.crtc_enable = valleyview_crtc_enable; |
| 9094 | dev_priv->display.crtc_disable = i9xx_crtc_disable; |
| 9095 | dev_priv->display.off = i9xx_crtc_off; |
| 9096 | dev_priv->display.update_plane = i9xx_update_plane; |
Eric Anholt | f564048e | 2011-03-30 13:01:02 -0700 | [diff] [blame] | 9097 | } else { |
Daniel Vetter | 0e8ffe1 | 2013-03-28 10:42:00 +0100 | [diff] [blame] | 9098 | dev_priv->display.get_pipe_config = i9xx_get_pipe_config; |
Eric Anholt | f564048e | 2011-03-30 13:01:02 -0700 | [diff] [blame] | 9099 | dev_priv->display.crtc_mode_set = i9xx_crtc_mode_set; |
Daniel Vetter | 76e5a89 | 2012-06-29 22:39:33 +0200 | [diff] [blame] | 9100 | dev_priv->display.crtc_enable = i9xx_crtc_enable; |
| 9101 | dev_priv->display.crtc_disable = i9xx_crtc_disable; |
Jesse Barnes | ee7b9f9 | 2012-04-20 17:11:53 +0100 | [diff] [blame] | 9102 | dev_priv->display.off = i9xx_crtc_off; |
Jesse Barnes | 17638cd | 2011-06-24 12:19:23 -0700 | [diff] [blame] | 9103 | dev_priv->display.update_plane = i9xx_update_plane; |
Eric Anholt | f564048e | 2011-03-30 13:01:02 -0700 | [diff] [blame] | 9104 | } |
Jesse Barnes | e70236a | 2009-09-21 10:42:27 -0700 | [diff] [blame] | 9105 | |
Jesse Barnes | e70236a | 2009-09-21 10:42:27 -0700 | [diff] [blame] | 9106 | /* Returns the core display clock speed */ |
Jesse Barnes | 25eb05fc | 2012-03-28 13:39:23 -0700 | [diff] [blame] | 9107 | if (IS_VALLEYVIEW(dev)) |
| 9108 | dev_priv->display.get_display_clock_speed = |
| 9109 | valleyview_get_display_clock_speed; |
| 9110 | else if (IS_I945G(dev) || (IS_G33(dev) && !IS_PINEVIEW_M(dev))) |
Jesse Barnes | e70236a | 2009-09-21 10:42:27 -0700 | [diff] [blame] | 9111 | dev_priv->display.get_display_clock_speed = |
| 9112 | i945_get_display_clock_speed; |
| 9113 | else if (IS_I915G(dev)) |
| 9114 | dev_priv->display.get_display_clock_speed = |
| 9115 | i915_get_display_clock_speed; |
Adam Jackson | f2b115e | 2009-12-03 17:14:42 -0500 | [diff] [blame] | 9116 | else if (IS_I945GM(dev) || IS_845G(dev) || IS_PINEVIEW_M(dev)) |
Jesse Barnes | e70236a | 2009-09-21 10:42:27 -0700 | [diff] [blame] | 9117 | dev_priv->display.get_display_clock_speed = |
| 9118 | i9xx_misc_get_display_clock_speed; |
| 9119 | else if (IS_I915GM(dev)) |
| 9120 | dev_priv->display.get_display_clock_speed = |
| 9121 | i915gm_get_display_clock_speed; |
| 9122 | else if (IS_I865G(dev)) |
| 9123 | dev_priv->display.get_display_clock_speed = |
| 9124 | i865_get_display_clock_speed; |
Daniel Vetter | f0f8a9c | 2009-09-15 22:57:33 +0200 | [diff] [blame] | 9125 | else if (IS_I85X(dev)) |
Jesse Barnes | e70236a | 2009-09-21 10:42:27 -0700 | [diff] [blame] | 9126 | dev_priv->display.get_display_clock_speed = |
| 9127 | i855_get_display_clock_speed; |
| 9128 | else /* 852, 830 */ |
| 9129 | dev_priv->display.get_display_clock_speed = |
| 9130 | i830_get_display_clock_speed; |
| 9131 | |
Zhenyu Wang | 7f8a856 | 2010-04-01 13:07:53 +0800 | [diff] [blame] | 9132 | if (HAS_PCH_SPLIT(dev)) { |
Chris Wilson | f00a3dd | 2010-10-21 14:57:17 +0100 | [diff] [blame] | 9133 | if (IS_GEN5(dev)) { |
Jesse Barnes | 674cf96 | 2011-04-28 14:27:04 -0700 | [diff] [blame] | 9134 | dev_priv->display.fdi_link_train = ironlake_fdi_link_train; |
Wu Fengguang | e0dac65 | 2011-09-05 14:25:34 +0800 | [diff] [blame] | 9135 | dev_priv->display.write_eld = ironlake_write_eld; |
Yuanhan Liu | 1398261 | 2010-12-15 15:42:31 +0800 | [diff] [blame] | 9136 | } else if (IS_GEN6(dev)) { |
Jesse Barnes | 674cf96 | 2011-04-28 14:27:04 -0700 | [diff] [blame] | 9137 | dev_priv->display.fdi_link_train = gen6_fdi_link_train; |
Wu Fengguang | e0dac65 | 2011-09-05 14:25:34 +0800 | [diff] [blame] | 9138 | dev_priv->display.write_eld = ironlake_write_eld; |
Jesse Barnes | 357555c | 2011-04-28 15:09:55 -0700 | [diff] [blame] | 9139 | } else if (IS_IVYBRIDGE(dev)) { |
| 9140 | /* FIXME: detect B0+ stepping and use auto training */ |
| 9141 | dev_priv->display.fdi_link_train = ivb_manual_fdi_link_train; |
Wu Fengguang | e0dac65 | 2011-09-05 14:25:34 +0800 | [diff] [blame] | 9142 | dev_priv->display.write_eld = ironlake_write_eld; |
Daniel Vetter | 01a415f | 2012-10-27 15:58:40 +0200 | [diff] [blame] | 9143 | dev_priv->display.modeset_global_resources = |
| 9144 | ivb_modeset_global_resources; |
Eugeni Dodonov | c82e4d2 | 2012-05-09 15:37:21 -0300 | [diff] [blame] | 9145 | } else if (IS_HASWELL(dev)) { |
| 9146 | dev_priv->display.fdi_link_train = hsw_fdi_link_train; |
Wang Xingchao | 83358c85 | 2012-08-16 22:43:37 +0800 | [diff] [blame] | 9147 | dev_priv->display.write_eld = haswell_write_eld; |
Daniel Vetter | d6dd9eb | 2013-01-29 16:35:20 -0200 | [diff] [blame] | 9148 | dev_priv->display.modeset_global_resources = |
| 9149 | haswell_modeset_global_resources; |
Paulo Zanoni | a0e63c2 | 2012-12-06 11:12:39 -0200 | [diff] [blame] | 9150 | } |
Jesse Barnes | 6067aae | 2011-04-28 15:04:31 -0700 | [diff] [blame] | 9151 | } else if (IS_G4X(dev)) { |
Wu Fengguang | e0dac65 | 2011-09-05 14:25:34 +0800 | [diff] [blame] | 9152 | dev_priv->display.write_eld = g4x_write_eld; |
Jesse Barnes | e70236a | 2009-09-21 10:42:27 -0700 | [diff] [blame] | 9153 | } |
Jesse Barnes | 8c9f3aa | 2011-06-16 09:19:13 -0700 | [diff] [blame] | 9154 | |
| 9155 | /* Default just returns -ENODEV to indicate unsupported */ |
| 9156 | dev_priv->display.queue_flip = intel_default_queue_flip; |
| 9157 | |
| 9158 | switch (INTEL_INFO(dev)->gen) { |
| 9159 | case 2: |
| 9160 | dev_priv->display.queue_flip = intel_gen2_queue_flip; |
| 9161 | break; |
| 9162 | |
| 9163 | case 3: |
| 9164 | dev_priv->display.queue_flip = intel_gen3_queue_flip; |
| 9165 | break; |
| 9166 | |
| 9167 | case 4: |
| 9168 | case 5: |
| 9169 | dev_priv->display.queue_flip = intel_gen4_queue_flip; |
| 9170 | break; |
| 9171 | |
| 9172 | case 6: |
| 9173 | dev_priv->display.queue_flip = intel_gen6_queue_flip; |
| 9174 | break; |
Jesse Barnes | 7c9017e | 2011-06-16 12:18:54 -0700 | [diff] [blame] | 9175 | case 7: |
| 9176 | dev_priv->display.queue_flip = intel_gen7_queue_flip; |
| 9177 | break; |
Jesse Barnes | 8c9f3aa | 2011-06-16 09:19:13 -0700 | [diff] [blame] | 9178 | } |
Jesse Barnes | e70236a | 2009-09-21 10:42:27 -0700 | [diff] [blame] | 9179 | } |
| 9180 | |
Jesse Barnes | b690e96 | 2010-07-19 13:53:12 -0700 | [diff] [blame] | 9181 | /* |
| 9182 | * Some BIOSes insist on assuming the GPU's pipe A is enabled at suspend, |
| 9183 | * resume, or other times. This quirk makes sure that's the case for |
| 9184 | * affected systems. |
| 9185 | */ |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 9186 | static void quirk_pipea_force(struct drm_device *dev) |
Jesse Barnes | b690e96 | 2010-07-19 13:53:12 -0700 | [diff] [blame] | 9187 | { |
| 9188 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 9189 | |
| 9190 | dev_priv->quirks |= QUIRK_PIPEA_FORCE; |
Daniel Vetter | bc0daf4 | 2012-04-01 13:16:49 +0200 | [diff] [blame] | 9191 | DRM_INFO("applying pipe a force quirk\n"); |
Jesse Barnes | b690e96 | 2010-07-19 13:53:12 -0700 | [diff] [blame] | 9192 | } |
| 9193 | |
Keith Packard | 435793d | 2011-07-12 14:56:22 -0700 | [diff] [blame] | 9194 | /* |
| 9195 | * Some machines (Lenovo U160) do not work with SSC on LVDS for some reason |
| 9196 | */ |
| 9197 | static void quirk_ssc_force_disable(struct drm_device *dev) |
| 9198 | { |
| 9199 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 9200 | dev_priv->quirks |= QUIRK_LVDS_SSC_DISABLE; |
Daniel Vetter | bc0daf4 | 2012-04-01 13:16:49 +0200 | [diff] [blame] | 9201 | DRM_INFO("applying lvds SSC disable quirk\n"); |
Keith Packard | 435793d | 2011-07-12 14:56:22 -0700 | [diff] [blame] | 9202 | } |
| 9203 | |
Carsten Emde | 4dca20e | 2012-03-15 15:56:26 +0100 | [diff] [blame] | 9204 | /* |
Carsten Emde | 5a15ab5 | 2012-03-15 15:56:27 +0100 | [diff] [blame] | 9205 | * A machine (e.g. Acer Aspire 5734Z) may need to invert the panel backlight |
| 9206 | * brightness value |
Carsten Emde | 4dca20e | 2012-03-15 15:56:26 +0100 | [diff] [blame] | 9207 | */ |
| 9208 | static void quirk_invert_brightness(struct drm_device *dev) |
| 9209 | { |
| 9210 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 9211 | dev_priv->quirks |= QUIRK_INVERT_BRIGHTNESS; |
Daniel Vetter | bc0daf4 | 2012-04-01 13:16:49 +0200 | [diff] [blame] | 9212 | DRM_INFO("applying inverted panel brightness quirk\n"); |
Jesse Barnes | b690e96 | 2010-07-19 13:53:12 -0700 | [diff] [blame] | 9213 | } |
| 9214 | |
| 9215 | struct intel_quirk { |
| 9216 | int device; |
| 9217 | int subsystem_vendor; |
| 9218 | int subsystem_device; |
| 9219 | void (*hook)(struct drm_device *dev); |
| 9220 | }; |
| 9221 | |
Egbert Eich | 5f85f17 | 2012-10-14 15:46:38 +0200 | [diff] [blame] | 9222 | /* For systems that don't have a meaningful PCI subdevice/subvendor ID */ |
| 9223 | struct intel_dmi_quirk { |
| 9224 | void (*hook)(struct drm_device *dev); |
| 9225 | const struct dmi_system_id (*dmi_id_list)[]; |
| 9226 | }; |
| 9227 | |
| 9228 | static int intel_dmi_reverse_brightness(const struct dmi_system_id *id) |
| 9229 | { |
| 9230 | DRM_INFO("Backlight polarity reversed on %s\n", id->ident); |
| 9231 | return 1; |
| 9232 | } |
| 9233 | |
| 9234 | static const struct intel_dmi_quirk intel_dmi_quirks[] = { |
| 9235 | { |
| 9236 | .dmi_id_list = &(const struct dmi_system_id[]) { |
| 9237 | { |
| 9238 | .callback = intel_dmi_reverse_brightness, |
| 9239 | .ident = "NCR Corporation", |
| 9240 | .matches = {DMI_MATCH(DMI_SYS_VENDOR, "NCR Corporation"), |
| 9241 | DMI_MATCH(DMI_PRODUCT_NAME, ""), |
| 9242 | }, |
| 9243 | }, |
| 9244 | { } /* terminating entry */ |
| 9245 | }, |
| 9246 | .hook = quirk_invert_brightness, |
| 9247 | }, |
| 9248 | }; |
| 9249 | |
Ben Widawsky | c43b563 | 2012-04-16 14:07:40 -0700 | [diff] [blame] | 9250 | static struct intel_quirk intel_quirks[] = { |
Jesse Barnes | b690e96 | 2010-07-19 13:53:12 -0700 | [diff] [blame] | 9251 | /* HP Mini needs pipe A force quirk (LP: #322104) */ |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 9252 | { 0x27ae, 0x103c, 0x361a, quirk_pipea_force }, |
Jesse Barnes | b690e96 | 2010-07-19 13:53:12 -0700 | [diff] [blame] | 9253 | |
Jesse Barnes | b690e96 | 2010-07-19 13:53:12 -0700 | [diff] [blame] | 9254 | /* Toshiba Protege R-205, S-209 needs pipe A force quirk */ |
| 9255 | { 0x2592, 0x1179, 0x0001, quirk_pipea_force }, |
| 9256 | |
Jesse Barnes | b690e96 | 2010-07-19 13:53:12 -0700 | [diff] [blame] | 9257 | /* ThinkPad T60 needs pipe A force quirk (bug #16494) */ |
| 9258 | { 0x2782, 0x17aa, 0x201a, quirk_pipea_force }, |
| 9259 | |
Daniel Vetter | ccd0d36 | 2012-10-10 23:13:59 +0200 | [diff] [blame] | 9260 | /* 830/845 need to leave pipe A & dpll A up */ |
Jesse Barnes | b690e96 | 2010-07-19 13:53:12 -0700 | [diff] [blame] | 9261 | { 0x2562, PCI_ANY_ID, PCI_ANY_ID, quirk_pipea_force }, |
Daniel Vetter | dcdaed6 | 2012-08-12 21:19:34 +0200 | [diff] [blame] | 9262 | { 0x3577, PCI_ANY_ID, PCI_ANY_ID, quirk_pipea_force }, |
Keith Packard | 435793d | 2011-07-12 14:56:22 -0700 | [diff] [blame] | 9263 | |
| 9264 | /* Lenovo U160 cannot use SSC on LVDS */ |
| 9265 | { 0x0046, 0x17aa, 0x3920, quirk_ssc_force_disable }, |
Michel Alexandre Salim | 070d329 | 2011-07-28 18:52:06 +0200 | [diff] [blame] | 9266 | |
| 9267 | /* Sony Vaio Y cannot use SSC on LVDS */ |
| 9268 | { 0x0046, 0x104d, 0x9076, quirk_ssc_force_disable }, |
Carsten Emde | 5a15ab5 | 2012-03-15 15:56:27 +0100 | [diff] [blame] | 9269 | |
| 9270 | /* Acer Aspire 5734Z must invert backlight brightness */ |
| 9271 | { 0x2a42, 0x1025, 0x0459, quirk_invert_brightness }, |
Jani Nikula | 1ffff60 | 2013-01-22 12:50:34 +0200 | [diff] [blame] | 9272 | |
| 9273 | /* Acer/eMachines G725 */ |
| 9274 | { 0x2a42, 0x1025, 0x0210, quirk_invert_brightness }, |
Jani Nikula | 01e3a8f | 2013-01-22 12:50:35 +0200 | [diff] [blame] | 9275 | |
| 9276 | /* Acer/eMachines e725 */ |
| 9277 | { 0x2a42, 0x1025, 0x0212, quirk_invert_brightness }, |
Jani Nikula | 5559eca | 2013-01-22 12:50:36 +0200 | [diff] [blame] | 9278 | |
| 9279 | /* Acer/Packard Bell NCL20 */ |
| 9280 | { 0x2a42, 0x1025, 0x034b, quirk_invert_brightness }, |
Daniel Vetter | ac4199e | 2013-02-15 18:35:30 +0100 | [diff] [blame] | 9281 | |
| 9282 | /* Acer Aspire 4736Z */ |
| 9283 | { 0x2a42, 0x1025, 0x0260, quirk_invert_brightness }, |
Jesse Barnes | b690e96 | 2010-07-19 13:53:12 -0700 | [diff] [blame] | 9284 | }; |
| 9285 | |
| 9286 | static void intel_init_quirks(struct drm_device *dev) |
| 9287 | { |
| 9288 | struct pci_dev *d = dev->pdev; |
| 9289 | int i; |
| 9290 | |
| 9291 | for (i = 0; i < ARRAY_SIZE(intel_quirks); i++) { |
| 9292 | struct intel_quirk *q = &intel_quirks[i]; |
| 9293 | |
| 9294 | if (d->device == q->device && |
| 9295 | (d->subsystem_vendor == q->subsystem_vendor || |
| 9296 | q->subsystem_vendor == PCI_ANY_ID) && |
| 9297 | (d->subsystem_device == q->subsystem_device || |
| 9298 | q->subsystem_device == PCI_ANY_ID)) |
| 9299 | q->hook(dev); |
| 9300 | } |
Egbert Eich | 5f85f17 | 2012-10-14 15:46:38 +0200 | [diff] [blame] | 9301 | for (i = 0; i < ARRAY_SIZE(intel_dmi_quirks); i++) { |
| 9302 | if (dmi_check_system(*intel_dmi_quirks[i].dmi_id_list) != 0) |
| 9303 | intel_dmi_quirks[i].hook(dev); |
| 9304 | } |
Jesse Barnes | b690e96 | 2010-07-19 13:53:12 -0700 | [diff] [blame] | 9305 | } |
| 9306 | |
Jesse Barnes | 9cce37f | 2010-08-13 15:11:26 -0700 | [diff] [blame] | 9307 | /* Disable the VGA plane that we never use */ |
| 9308 | static void i915_disable_vga(struct drm_device *dev) |
| 9309 | { |
| 9310 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 9311 | u8 sr1; |
Ville Syrjälä | 766aa1c | 2013-01-25 21:44:46 +0200 | [diff] [blame] | 9312 | u32 vga_reg = i915_vgacntrl_reg(dev); |
Jesse Barnes | 9cce37f | 2010-08-13 15:11:26 -0700 | [diff] [blame] | 9313 | |
| 9314 | vga_get_uninterruptible(dev->pdev, VGA_RSRC_LEGACY_IO); |
Jesse Barnes | 3fdcf43 | 2012-04-06 11:46:27 -0700 | [diff] [blame] | 9315 | outb(SR01, VGA_SR_INDEX); |
Jesse Barnes | 9cce37f | 2010-08-13 15:11:26 -0700 | [diff] [blame] | 9316 | sr1 = inb(VGA_SR_DATA); |
| 9317 | outb(sr1 | 1<<5, VGA_SR_DATA); |
| 9318 | vga_put(dev->pdev, VGA_RSRC_LEGACY_IO); |
| 9319 | udelay(300); |
| 9320 | |
| 9321 | I915_WRITE(vga_reg, VGA_DISP_DISABLE); |
| 9322 | POSTING_READ(vga_reg); |
| 9323 | } |
| 9324 | |
Daniel Vetter | f817586 | 2012-04-10 15:50:11 +0200 | [diff] [blame] | 9325 | void intel_modeset_init_hw(struct drm_device *dev) |
| 9326 | { |
Paulo Zanoni | fa42e23 | 2013-01-25 16:59:11 -0200 | [diff] [blame] | 9327 | intel_init_power_well(dev); |
Eugeni Dodonov | 0232e92 | 2012-07-06 15:42:36 -0300 | [diff] [blame] | 9328 | |
Eugeni Dodonov | a8f78b5 | 2012-06-28 15:55:35 -0300 | [diff] [blame] | 9329 | intel_prepare_ddi(dev); |
| 9330 | |
Daniel Vetter | f817586 | 2012-04-10 15:50:11 +0200 | [diff] [blame] | 9331 | intel_init_clock_gating(dev); |
| 9332 | |
Daniel Vetter | 79f5b2c | 2012-06-24 16:42:33 +0200 | [diff] [blame] | 9333 | mutex_lock(&dev->struct_mutex); |
Daniel Vetter | 8090c6b | 2012-06-24 16:42:32 +0200 | [diff] [blame] | 9334 | intel_enable_gt_powersave(dev); |
Daniel Vetter | 79f5b2c | 2012-06-24 16:42:33 +0200 | [diff] [blame] | 9335 | mutex_unlock(&dev->struct_mutex); |
Daniel Vetter | f817586 | 2012-04-10 15:50:11 +0200 | [diff] [blame] | 9336 | } |
| 9337 | |
Imre Deak | 7d708ee | 2013-04-17 14:04:50 +0300 | [diff] [blame] | 9338 | void intel_modeset_suspend_hw(struct drm_device *dev) |
| 9339 | { |
| 9340 | intel_suspend_hw(dev); |
| 9341 | } |
| 9342 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 9343 | void intel_modeset_init(struct drm_device *dev) |
| 9344 | { |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 9345 | struct drm_i915_private *dev_priv = dev->dev_private; |
Jesse Barnes | 7f1f385 | 2013-04-02 11:22:20 -0700 | [diff] [blame] | 9346 | int i, j, ret; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 9347 | |
| 9348 | drm_mode_config_init(dev); |
| 9349 | |
| 9350 | dev->mode_config.min_width = 0; |
| 9351 | dev->mode_config.min_height = 0; |
| 9352 | |
Dave Airlie | 019d96c | 2011-09-29 16:20:42 +0100 | [diff] [blame] | 9353 | dev->mode_config.preferred_depth = 24; |
| 9354 | dev->mode_config.prefer_shadow = 1; |
| 9355 | |
Laurent Pinchart | e6ecefa | 2012-05-17 13:27:23 +0200 | [diff] [blame] | 9356 | dev->mode_config.funcs = &intel_mode_funcs; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 9357 | |
Jesse Barnes | b690e96 | 2010-07-19 13:53:12 -0700 | [diff] [blame] | 9358 | intel_init_quirks(dev); |
| 9359 | |
Eugeni Dodonov | 1fa6110 | 2012-04-18 15:29:26 -0300 | [diff] [blame] | 9360 | intel_init_pm(dev); |
| 9361 | |
Ben Widawsky | e3c7475 | 2013-04-05 13:12:39 -0700 | [diff] [blame] | 9362 | if (INTEL_INFO(dev)->num_pipes == 0) |
| 9363 | return; |
| 9364 | |
Jesse Barnes | e70236a | 2009-09-21 10:42:27 -0700 | [diff] [blame] | 9365 | intel_init_display(dev); |
| 9366 | |
Chris Wilson | a6c45cf | 2010-09-17 00:32:17 +0100 | [diff] [blame] | 9367 | if (IS_GEN2(dev)) { |
| 9368 | dev->mode_config.max_width = 2048; |
| 9369 | dev->mode_config.max_height = 2048; |
| 9370 | } else if (IS_GEN3(dev)) { |
Keith Packard | 5e4d6fa | 2009-07-12 23:53:17 -0700 | [diff] [blame] | 9371 | dev->mode_config.max_width = 4096; |
| 9372 | dev->mode_config.max_height = 4096; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 9373 | } else { |
Chris Wilson | a6c45cf | 2010-09-17 00:32:17 +0100 | [diff] [blame] | 9374 | dev->mode_config.max_width = 8192; |
| 9375 | dev->mode_config.max_height = 8192; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 9376 | } |
Ben Widawsky | 5d4545a | 2013-01-17 12:45:15 -0800 | [diff] [blame] | 9377 | dev->mode_config.fb_base = dev_priv->gtt.mappable_base; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 9378 | |
Zhao Yakui | 28c9773 | 2009-10-09 11:39:41 +0800 | [diff] [blame] | 9379 | DRM_DEBUG_KMS("%d display pipe%s available.\n", |
Ben Widawsky | 7eb552a | 2013-03-13 14:05:41 -0700 | [diff] [blame] | 9380 | INTEL_INFO(dev)->num_pipes, |
| 9381 | INTEL_INFO(dev)->num_pipes > 1 ? "s" : ""); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 9382 | |
Ben Widawsky | 7eb552a | 2013-03-13 14:05:41 -0700 | [diff] [blame] | 9383 | for (i = 0; i < INTEL_INFO(dev)->num_pipes; i++) { |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 9384 | intel_crtc_init(dev, i); |
Jesse Barnes | 7f1f385 | 2013-04-02 11:22:20 -0700 | [diff] [blame] | 9385 | for (j = 0; j < dev_priv->num_plane; j++) { |
| 9386 | ret = intel_plane_init(dev, i, j); |
| 9387 | if (ret) |
Ville Syrjälä | 06da8da | 2013-04-17 17:48:51 +0300 | [diff] [blame] | 9388 | DRM_DEBUG_KMS("pipe %c sprite %c init failed: %d\n", |
| 9389 | pipe_name(i), sprite_name(i, j), ret); |
Jesse Barnes | 7f1f385 | 2013-04-02 11:22:20 -0700 | [diff] [blame] | 9390 | } |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 9391 | } |
| 9392 | |
Paulo Zanoni | 79f689a | 2012-10-05 12:05:52 -0300 | [diff] [blame] | 9393 | intel_cpu_pll_init(dev); |
Jesse Barnes | ee7b9f9 | 2012-04-20 17:11:53 +0100 | [diff] [blame] | 9394 | intel_pch_pll_init(dev); |
| 9395 | |
Jesse Barnes | 9cce37f | 2010-08-13 15:11:26 -0700 | [diff] [blame] | 9396 | /* Just disable it once at startup */ |
| 9397 | i915_disable_vga(dev); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 9398 | intel_setup_outputs(dev); |
Chris Wilson | 11be49e | 2012-11-15 11:32:20 +0000 | [diff] [blame] | 9399 | |
| 9400 | /* Just in case the BIOS is doing something questionable. */ |
| 9401 | intel_disable_fbc(dev); |
Chris Wilson | 2c7111d | 2011-03-29 10:40:27 +0100 | [diff] [blame] | 9402 | } |
Jesse Barnes | d5bb081 | 2011-01-05 12:01:26 -0800 | [diff] [blame] | 9403 | |
Daniel Vetter | 2492935 | 2012-07-02 20:28:59 +0200 | [diff] [blame] | 9404 | static void |
| 9405 | intel_connector_break_all_links(struct intel_connector *connector) |
| 9406 | { |
| 9407 | connector->base.dpms = DRM_MODE_DPMS_OFF; |
| 9408 | connector->base.encoder = NULL; |
| 9409 | connector->encoder->connectors_active = false; |
| 9410 | connector->encoder->base.crtc = NULL; |
| 9411 | } |
| 9412 | |
Daniel Vetter | 7fad798 | 2012-07-04 17:51:47 +0200 | [diff] [blame] | 9413 | static void intel_enable_pipe_a(struct drm_device *dev) |
| 9414 | { |
| 9415 | struct intel_connector *connector; |
| 9416 | struct drm_connector *crt = NULL; |
| 9417 | struct intel_load_detect_pipe load_detect_temp; |
| 9418 | |
| 9419 | /* We can't just switch on the pipe A, we need to set things up with a |
| 9420 | * proper mode and output configuration. As a gross hack, enable pipe A |
| 9421 | * by enabling the load detect pipe once. */ |
| 9422 | list_for_each_entry(connector, |
| 9423 | &dev->mode_config.connector_list, |
| 9424 | base.head) { |
| 9425 | if (connector->encoder->type == INTEL_OUTPUT_ANALOG) { |
| 9426 | crt = &connector->base; |
| 9427 | break; |
| 9428 | } |
| 9429 | } |
| 9430 | |
| 9431 | if (!crt) |
| 9432 | return; |
| 9433 | |
| 9434 | if (intel_get_load_detect_pipe(crt, NULL, &load_detect_temp)) |
| 9435 | intel_release_load_detect_pipe(crt, &load_detect_temp); |
| 9436 | |
| 9437 | |
| 9438 | } |
| 9439 | |
Daniel Vetter | fa55583 | 2012-10-10 23:14:00 +0200 | [diff] [blame] | 9440 | static bool |
| 9441 | intel_check_plane_mapping(struct intel_crtc *crtc) |
| 9442 | { |
Ben Widawsky | 7eb552a | 2013-03-13 14:05:41 -0700 | [diff] [blame] | 9443 | struct drm_device *dev = crtc->base.dev; |
| 9444 | struct drm_i915_private *dev_priv = dev->dev_private; |
Daniel Vetter | fa55583 | 2012-10-10 23:14:00 +0200 | [diff] [blame] | 9445 | u32 reg, val; |
| 9446 | |
Ben Widawsky | 7eb552a | 2013-03-13 14:05:41 -0700 | [diff] [blame] | 9447 | if (INTEL_INFO(dev)->num_pipes == 1) |
Daniel Vetter | fa55583 | 2012-10-10 23:14:00 +0200 | [diff] [blame] | 9448 | return true; |
| 9449 | |
| 9450 | reg = DSPCNTR(!crtc->plane); |
| 9451 | val = I915_READ(reg); |
| 9452 | |
| 9453 | if ((val & DISPLAY_PLANE_ENABLE) && |
| 9454 | (!!(val & DISPPLANE_SEL_PIPE_MASK) == crtc->pipe)) |
| 9455 | return false; |
| 9456 | |
| 9457 | return true; |
| 9458 | } |
| 9459 | |
Daniel Vetter | 2492935 | 2012-07-02 20:28:59 +0200 | [diff] [blame] | 9460 | static void intel_sanitize_crtc(struct intel_crtc *crtc) |
| 9461 | { |
| 9462 | struct drm_device *dev = crtc->base.dev; |
| 9463 | struct drm_i915_private *dev_priv = dev->dev_private; |
Daniel Vetter | fa55583 | 2012-10-10 23:14:00 +0200 | [diff] [blame] | 9464 | u32 reg; |
Daniel Vetter | 2492935 | 2012-07-02 20:28:59 +0200 | [diff] [blame] | 9465 | |
Daniel Vetter | 2492935 | 2012-07-02 20:28:59 +0200 | [diff] [blame] | 9466 | /* Clear any frame start delays used for debugging left by the BIOS */ |
Daniel Vetter | 3b117c8 | 2013-04-17 20:15:07 +0200 | [diff] [blame] | 9467 | reg = PIPECONF(crtc->config.cpu_transcoder); |
Daniel Vetter | 2492935 | 2012-07-02 20:28:59 +0200 | [diff] [blame] | 9468 | I915_WRITE(reg, I915_READ(reg) & ~PIPECONF_FRAME_START_DELAY_MASK); |
| 9469 | |
| 9470 | /* We need to sanitize the plane -> pipe mapping first because this will |
Daniel Vetter | fa55583 | 2012-10-10 23:14:00 +0200 | [diff] [blame] | 9471 | * disable the crtc (and hence change the state) if it is wrong. Note |
| 9472 | * that gen4+ has a fixed plane -> pipe mapping. */ |
| 9473 | if (INTEL_INFO(dev)->gen < 4 && !intel_check_plane_mapping(crtc)) { |
Daniel Vetter | 2492935 | 2012-07-02 20:28:59 +0200 | [diff] [blame] | 9474 | struct intel_connector *connector; |
| 9475 | bool plane; |
| 9476 | |
Daniel Vetter | 2492935 | 2012-07-02 20:28:59 +0200 | [diff] [blame] | 9477 | DRM_DEBUG_KMS("[CRTC:%d] wrong plane connection detected!\n", |
| 9478 | crtc->base.base.id); |
| 9479 | |
| 9480 | /* Pipe has the wrong plane attached and the plane is active. |
| 9481 | * Temporarily change the plane mapping and disable everything |
| 9482 | * ... */ |
| 9483 | plane = crtc->plane; |
| 9484 | crtc->plane = !plane; |
| 9485 | dev_priv->display.crtc_disable(&crtc->base); |
| 9486 | crtc->plane = plane; |
| 9487 | |
| 9488 | /* ... and break all links. */ |
| 9489 | list_for_each_entry(connector, &dev->mode_config.connector_list, |
| 9490 | base.head) { |
| 9491 | if (connector->encoder->base.crtc != &crtc->base) |
| 9492 | continue; |
| 9493 | |
| 9494 | intel_connector_break_all_links(connector); |
| 9495 | } |
| 9496 | |
| 9497 | WARN_ON(crtc->active); |
| 9498 | crtc->base.enabled = false; |
| 9499 | } |
Daniel Vetter | 2492935 | 2012-07-02 20:28:59 +0200 | [diff] [blame] | 9500 | |
Daniel Vetter | 7fad798 | 2012-07-04 17:51:47 +0200 | [diff] [blame] | 9501 | if (dev_priv->quirks & QUIRK_PIPEA_FORCE && |
| 9502 | crtc->pipe == PIPE_A && !crtc->active) { |
| 9503 | /* BIOS forgot to enable pipe A, this mostly happens after |
| 9504 | * resume. Force-enable the pipe to fix this, the update_dpms |
| 9505 | * call below we restore the pipe to the right state, but leave |
| 9506 | * the required bits on. */ |
| 9507 | intel_enable_pipe_a(dev); |
| 9508 | } |
| 9509 | |
Daniel Vetter | 2492935 | 2012-07-02 20:28:59 +0200 | [diff] [blame] | 9510 | /* Adjust the state of the output pipe according to whether we |
| 9511 | * have active connectors/encoders. */ |
| 9512 | intel_crtc_update_dpms(&crtc->base); |
| 9513 | |
| 9514 | if (crtc->active != crtc->base.enabled) { |
| 9515 | struct intel_encoder *encoder; |
| 9516 | |
| 9517 | /* This can happen either due to bugs in the get_hw_state |
| 9518 | * functions or because the pipe is force-enabled due to the |
| 9519 | * pipe A quirk. */ |
| 9520 | DRM_DEBUG_KMS("[CRTC:%d] hw state adjusted, was %s, now %s\n", |
| 9521 | crtc->base.base.id, |
| 9522 | crtc->base.enabled ? "enabled" : "disabled", |
| 9523 | crtc->active ? "enabled" : "disabled"); |
| 9524 | |
| 9525 | crtc->base.enabled = crtc->active; |
| 9526 | |
| 9527 | /* Because we only establish the connector -> encoder -> |
| 9528 | * crtc links if something is active, this means the |
| 9529 | * crtc is now deactivated. Break the links. connector |
| 9530 | * -> encoder links are only establish when things are |
| 9531 | * actually up, hence no need to break them. */ |
| 9532 | WARN_ON(crtc->active); |
| 9533 | |
| 9534 | for_each_encoder_on_crtc(dev, &crtc->base, encoder) { |
| 9535 | WARN_ON(encoder->connectors_active); |
| 9536 | encoder->base.crtc = NULL; |
| 9537 | } |
| 9538 | } |
| 9539 | } |
| 9540 | |
| 9541 | static void intel_sanitize_encoder(struct intel_encoder *encoder) |
| 9542 | { |
| 9543 | struct intel_connector *connector; |
| 9544 | struct drm_device *dev = encoder->base.dev; |
| 9545 | |
| 9546 | /* We need to check both for a crtc link (meaning that the |
| 9547 | * encoder is active and trying to read from a pipe) and the |
| 9548 | * pipe itself being active. */ |
| 9549 | bool has_active_crtc = encoder->base.crtc && |
| 9550 | to_intel_crtc(encoder->base.crtc)->active; |
| 9551 | |
| 9552 | if (encoder->connectors_active && !has_active_crtc) { |
| 9553 | DRM_DEBUG_KMS("[ENCODER:%d:%s] has active connectors but no active pipe!\n", |
| 9554 | encoder->base.base.id, |
| 9555 | drm_get_encoder_name(&encoder->base)); |
| 9556 | |
| 9557 | /* Connector is active, but has no active pipe. This is |
| 9558 | * fallout from our resume register restoring. Disable |
| 9559 | * the encoder manually again. */ |
| 9560 | if (encoder->base.crtc) { |
| 9561 | DRM_DEBUG_KMS("[ENCODER:%d:%s] manually disabled\n", |
| 9562 | encoder->base.base.id, |
| 9563 | drm_get_encoder_name(&encoder->base)); |
| 9564 | encoder->disable(encoder); |
| 9565 | } |
| 9566 | |
| 9567 | /* Inconsistent output/port/pipe state happens presumably due to |
| 9568 | * a bug in one of the get_hw_state functions. Or someplace else |
| 9569 | * in our code, like the register restore mess on resume. Clamp |
| 9570 | * things to off as a safer default. */ |
| 9571 | list_for_each_entry(connector, |
| 9572 | &dev->mode_config.connector_list, |
| 9573 | base.head) { |
| 9574 | if (connector->encoder != encoder) |
| 9575 | continue; |
| 9576 | |
| 9577 | intel_connector_break_all_links(connector); |
| 9578 | } |
| 9579 | } |
| 9580 | /* Enabled encoders without active connectors will be fixed in |
| 9581 | * the crtc fixup. */ |
| 9582 | } |
| 9583 | |
Daniel Vetter | 44cec74 | 2013-01-25 17:53:21 +0100 | [diff] [blame] | 9584 | void i915_redisable_vga(struct drm_device *dev) |
Krzysztof Mazur | 0fde901 | 2012-12-19 11:03:41 +0100 | [diff] [blame] | 9585 | { |
| 9586 | struct drm_i915_private *dev_priv = dev->dev_private; |
Ville Syrjälä | 766aa1c | 2013-01-25 21:44:46 +0200 | [diff] [blame] | 9587 | u32 vga_reg = i915_vgacntrl_reg(dev); |
Krzysztof Mazur | 0fde901 | 2012-12-19 11:03:41 +0100 | [diff] [blame] | 9588 | |
| 9589 | if (I915_READ(vga_reg) != VGA_DISP_DISABLE) { |
| 9590 | DRM_DEBUG_KMS("Something enabled VGA plane, disabling it\n"); |
Ville Syrjälä | 209d521 | 2013-01-25 21:44:48 +0200 | [diff] [blame] | 9591 | i915_disable_vga(dev); |
Krzysztof Mazur | 0fde901 | 2012-12-19 11:03:41 +0100 | [diff] [blame] | 9592 | } |
| 9593 | } |
| 9594 | |
Daniel Vetter | 2492935 | 2012-07-02 20:28:59 +0200 | [diff] [blame] | 9595 | /* Scan out the current hw modeset state, sanitizes it and maps it into the drm |
| 9596 | * and i915 state tracking structures. */ |
Daniel Vetter | 45e2b5f | 2012-11-23 18:16:34 +0100 | [diff] [blame] | 9597 | void intel_modeset_setup_hw_state(struct drm_device *dev, |
| 9598 | bool force_restore) |
Daniel Vetter | 2492935 | 2012-07-02 20:28:59 +0200 | [diff] [blame] | 9599 | { |
| 9600 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 9601 | enum pipe pipe; |
Jesse Barnes | b5644d0 | 2013-03-26 13:25:27 -0700 | [diff] [blame] | 9602 | struct drm_plane *plane; |
Daniel Vetter | 2492935 | 2012-07-02 20:28:59 +0200 | [diff] [blame] | 9603 | struct intel_crtc *crtc; |
| 9604 | struct intel_encoder *encoder; |
| 9605 | struct intel_connector *connector; |
| 9606 | |
Daniel Vetter | 0e8ffe1 | 2013-03-28 10:42:00 +0100 | [diff] [blame] | 9607 | list_for_each_entry(crtc, &dev->mode_config.crtc_list, |
| 9608 | base.head) { |
Daniel Vetter | 88adfff | 2013-03-28 10:42:01 +0100 | [diff] [blame] | 9609 | memset(&crtc->config, 0, sizeof(crtc->config)); |
Daniel Vetter | 3b117c8 | 2013-04-17 20:15:07 +0200 | [diff] [blame] | 9610 | |
Daniel Vetter | 0e8ffe1 | 2013-03-28 10:42:00 +0100 | [diff] [blame] | 9611 | crtc->active = dev_priv->display.get_pipe_config(crtc, |
| 9612 | &crtc->config); |
Daniel Vetter | 2492935 | 2012-07-02 20:28:59 +0200 | [diff] [blame] | 9613 | |
| 9614 | crtc->base.enabled = crtc->active; |
| 9615 | |
| 9616 | DRM_DEBUG_KMS("[CRTC:%d] hw state readout: %s\n", |
| 9617 | crtc->base.base.id, |
| 9618 | crtc->active ? "enabled" : "disabled"); |
| 9619 | } |
| 9620 | |
Paulo Zanoni | affa935 | 2012-11-23 15:30:39 -0200 | [diff] [blame] | 9621 | if (HAS_DDI(dev)) |
Paulo Zanoni | 6441ab5 | 2012-10-05 12:05:58 -0300 | [diff] [blame] | 9622 | intel_ddi_setup_hw_pll_state(dev); |
| 9623 | |
Daniel Vetter | 2492935 | 2012-07-02 20:28:59 +0200 | [diff] [blame] | 9624 | list_for_each_entry(encoder, &dev->mode_config.encoder_list, |
| 9625 | base.head) { |
| 9626 | pipe = 0; |
| 9627 | |
| 9628 | if (encoder->get_hw_state(encoder, &pipe)) { |
Jesse Barnes | 045ac3b | 2013-05-14 17:08:26 -0700 | [diff] [blame] | 9629 | crtc = to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]); |
| 9630 | encoder->base.crtc = &crtc->base; |
| 9631 | if (encoder->get_config) |
| 9632 | encoder->get_config(encoder, &crtc->config); |
Daniel Vetter | 2492935 | 2012-07-02 20:28:59 +0200 | [diff] [blame] | 9633 | } else { |
| 9634 | encoder->base.crtc = NULL; |
| 9635 | } |
| 9636 | |
| 9637 | encoder->connectors_active = false; |
| 9638 | DRM_DEBUG_KMS("[ENCODER:%d:%s] hw state readout: %s, pipe=%i\n", |
| 9639 | encoder->base.base.id, |
| 9640 | drm_get_encoder_name(&encoder->base), |
| 9641 | encoder->base.crtc ? "enabled" : "disabled", |
| 9642 | pipe); |
| 9643 | } |
| 9644 | |
| 9645 | list_for_each_entry(connector, &dev->mode_config.connector_list, |
| 9646 | base.head) { |
| 9647 | if (connector->get_hw_state(connector)) { |
| 9648 | connector->base.dpms = DRM_MODE_DPMS_ON; |
| 9649 | connector->encoder->connectors_active = true; |
| 9650 | connector->base.encoder = &connector->encoder->base; |
| 9651 | } else { |
| 9652 | connector->base.dpms = DRM_MODE_DPMS_OFF; |
| 9653 | connector->base.encoder = NULL; |
| 9654 | } |
| 9655 | DRM_DEBUG_KMS("[CONNECTOR:%d:%s] hw state readout: %s\n", |
| 9656 | connector->base.base.id, |
| 9657 | drm_get_connector_name(&connector->base), |
| 9658 | connector->base.encoder ? "enabled" : "disabled"); |
| 9659 | } |
| 9660 | |
| 9661 | /* HW state is read out, now we need to sanitize this mess. */ |
| 9662 | list_for_each_entry(encoder, &dev->mode_config.encoder_list, |
| 9663 | base.head) { |
| 9664 | intel_sanitize_encoder(encoder); |
| 9665 | } |
| 9666 | |
| 9667 | for_each_pipe(pipe) { |
| 9668 | crtc = to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]); |
| 9669 | intel_sanitize_crtc(crtc); |
Daniel Vetter | c0b0341 | 2013-05-28 12:05:54 +0200 | [diff] [blame] | 9670 | intel_dump_pipe_config(crtc, &crtc->config, "[setup_hw_state]"); |
Daniel Vetter | 2492935 | 2012-07-02 20:28:59 +0200 | [diff] [blame] | 9671 | } |
Daniel Vetter | 9a93585 | 2012-07-05 22:34:27 +0200 | [diff] [blame] | 9672 | |
Daniel Vetter | 45e2b5f | 2012-11-23 18:16:34 +0100 | [diff] [blame] | 9673 | if (force_restore) { |
Daniel Vetter | f30da18 | 2013-04-11 20:22:50 +0200 | [diff] [blame] | 9674 | /* |
| 9675 | * We need to use raw interfaces for restoring state to avoid |
| 9676 | * checking (bogus) intermediate states. |
| 9677 | */ |
Daniel Vetter | 45e2b5f | 2012-11-23 18:16:34 +0100 | [diff] [blame] | 9678 | for_each_pipe(pipe) { |
Jesse Barnes | b5644d0 | 2013-03-26 13:25:27 -0700 | [diff] [blame] | 9679 | struct drm_crtc *crtc = |
| 9680 | dev_priv->pipe_to_crtc_mapping[pipe]; |
Daniel Vetter | f30da18 | 2013-04-11 20:22:50 +0200 | [diff] [blame] | 9681 | |
| 9682 | __intel_set_mode(crtc, &crtc->mode, crtc->x, crtc->y, |
| 9683 | crtc->fb); |
Daniel Vetter | 45e2b5f | 2012-11-23 18:16:34 +0100 | [diff] [blame] | 9684 | } |
Jesse Barnes | b5644d0 | 2013-03-26 13:25:27 -0700 | [diff] [blame] | 9685 | list_for_each_entry(plane, &dev->mode_config.plane_list, head) |
| 9686 | intel_plane_restore(plane); |
Krzysztof Mazur | 0fde901 | 2012-12-19 11:03:41 +0100 | [diff] [blame] | 9687 | |
| 9688 | i915_redisable_vga(dev); |
Daniel Vetter | 45e2b5f | 2012-11-23 18:16:34 +0100 | [diff] [blame] | 9689 | } else { |
| 9690 | intel_modeset_update_staged_output_state(dev); |
| 9691 | } |
Daniel Vetter | 8af6cf8 | 2012-07-10 09:50:11 +0200 | [diff] [blame] | 9692 | |
| 9693 | intel_modeset_check_state(dev); |
Daniel Vetter | 2e93889 | 2012-10-11 20:08:24 +0200 | [diff] [blame] | 9694 | |
| 9695 | drm_mode_config_reset(dev); |
Chris Wilson | 2c7111d | 2011-03-29 10:40:27 +0100 | [diff] [blame] | 9696 | } |
| 9697 | |
| 9698 | void intel_modeset_gem_init(struct drm_device *dev) |
| 9699 | { |
Chris Wilson | 1833b13 | 2012-05-09 11:56:28 +0100 | [diff] [blame] | 9700 | intel_modeset_init_hw(dev); |
Daniel Vetter | 02e792f | 2009-09-15 22:57:34 +0200 | [diff] [blame] | 9701 | |
| 9702 | intel_setup_overlay(dev); |
Daniel Vetter | 2492935 | 2012-07-02 20:28:59 +0200 | [diff] [blame] | 9703 | |
Daniel Vetter | 45e2b5f | 2012-11-23 18:16:34 +0100 | [diff] [blame] | 9704 | intel_modeset_setup_hw_state(dev, false); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 9705 | } |
| 9706 | |
| 9707 | void intel_modeset_cleanup(struct drm_device *dev) |
| 9708 | { |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 9709 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 9710 | struct drm_crtc *crtc; |
| 9711 | struct intel_crtc *intel_crtc; |
| 9712 | |
Daniel Vetter | fd0c064 | 2013-04-24 11:13:35 +0200 | [diff] [blame] | 9713 | /* |
| 9714 | * Interrupts and polling as the first thing to avoid creating havoc. |
| 9715 | * Too much stuff here (turning of rps, connectors, ...) would |
| 9716 | * experience fancy races otherwise. |
| 9717 | */ |
| 9718 | drm_irq_uninstall(dev); |
| 9719 | cancel_work_sync(&dev_priv->hotplug_work); |
| 9720 | /* |
| 9721 | * Due to the hpd irq storm handling the hotplug work can re-arm the |
| 9722 | * poll handlers. Hence disable polling after hpd handling is shut down. |
| 9723 | */ |
Keith Packard | f87ea76 | 2010-10-03 19:36:26 -0700 | [diff] [blame] | 9724 | drm_kms_helper_poll_fini(dev); |
Daniel Vetter | fd0c064 | 2013-04-24 11:13:35 +0200 | [diff] [blame] | 9725 | |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 9726 | mutex_lock(&dev->struct_mutex); |
| 9727 | |
Jesse Barnes | 723bfd7 | 2010-10-07 16:01:13 -0700 | [diff] [blame] | 9728 | intel_unregister_dsm_handler(); |
| 9729 | |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 9730 | list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) { |
| 9731 | /* Skip inactive CRTCs */ |
| 9732 | if (!crtc->fb) |
| 9733 | continue; |
| 9734 | |
| 9735 | intel_crtc = to_intel_crtc(crtc); |
Daniel Vetter | 3dec009 | 2010-08-20 21:40:52 +0200 | [diff] [blame] | 9736 | intel_increase_pllclock(crtc); |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 9737 | } |
| 9738 | |
Chris Wilson | 973d04f | 2011-07-08 12:22:37 +0100 | [diff] [blame] | 9739 | intel_disable_fbc(dev); |
Jesse Barnes | e70236a | 2009-09-21 10:42:27 -0700 | [diff] [blame] | 9740 | |
Daniel Vetter | 8090c6b | 2012-06-24 16:42:32 +0200 | [diff] [blame] | 9741 | intel_disable_gt_powersave(dev); |
Chris Wilson | 0cdab21 | 2010-12-05 17:27:06 +0000 | [diff] [blame] | 9742 | |
Daniel Vetter | 930ebb4 | 2012-06-29 23:32:16 +0200 | [diff] [blame] | 9743 | ironlake_teardown_rc6(dev); |
| 9744 | |
Kristian Høgsberg | 69341a5 | 2009-11-11 12:19:17 -0500 | [diff] [blame] | 9745 | mutex_unlock(&dev->struct_mutex); |
| 9746 | |
Chris Wilson | 1630fe7 | 2011-07-08 12:22:42 +0100 | [diff] [blame] | 9747 | /* flush any delayed tasks or pending work */ |
| 9748 | flush_scheduled_work(); |
| 9749 | |
Jani Nikula | dc652f9 | 2013-04-12 15:18:38 +0300 | [diff] [blame] | 9750 | /* destroy backlight, if any, before the connectors */ |
| 9751 | intel_panel_destroy_backlight(dev); |
| 9752 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 9753 | drm_mode_config_cleanup(dev); |
Daniel Vetter | 4d7bb01 | 2012-12-18 15:24:37 +0100 | [diff] [blame] | 9754 | |
| 9755 | intel_cleanup_overlay(dev); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 9756 | } |
| 9757 | |
Dave Airlie | 28d5204 | 2009-09-21 14:33:58 +1000 | [diff] [blame] | 9758 | /* |
Zhenyu Wang | f1c79df | 2010-03-30 14:39:29 +0800 | [diff] [blame] | 9759 | * Return which encoder is currently attached for connector. |
| 9760 | */ |
Chris Wilson | df0e924 | 2010-09-09 16:20:55 +0100 | [diff] [blame] | 9761 | struct drm_encoder *intel_best_encoder(struct drm_connector *connector) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 9762 | { |
Chris Wilson | df0e924 | 2010-09-09 16:20:55 +0100 | [diff] [blame] | 9763 | return &intel_attached_encoder(connector)->base; |
| 9764 | } |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 9765 | |
Chris Wilson | df0e924 | 2010-09-09 16:20:55 +0100 | [diff] [blame] | 9766 | void intel_connector_attach_encoder(struct intel_connector *connector, |
| 9767 | struct intel_encoder *encoder) |
| 9768 | { |
| 9769 | connector->encoder = encoder; |
| 9770 | drm_mode_connector_attach_encoder(&connector->base, |
| 9771 | &encoder->base); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 9772 | } |
Dave Airlie | 28d5204 | 2009-09-21 14:33:58 +1000 | [diff] [blame] | 9773 | |
| 9774 | /* |
| 9775 | * set vga decode state - true == enable VGA decode |
| 9776 | */ |
| 9777 | int intel_modeset_vga_set_state(struct drm_device *dev, bool state) |
| 9778 | { |
| 9779 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 9780 | u16 gmch_ctrl; |
| 9781 | |
| 9782 | pci_read_config_word(dev_priv->bridge_dev, INTEL_GMCH_CTRL, &gmch_ctrl); |
| 9783 | if (state) |
| 9784 | gmch_ctrl &= ~INTEL_GMCH_VGA_DISABLE; |
| 9785 | else |
| 9786 | gmch_ctrl |= INTEL_GMCH_VGA_DISABLE; |
| 9787 | pci_write_config_word(dev_priv->bridge_dev, INTEL_GMCH_CTRL, gmch_ctrl); |
| 9788 | return 0; |
| 9789 | } |
Chris Wilson | c4a1d9e | 2010-11-21 13:12:35 +0000 | [diff] [blame] | 9790 | |
| 9791 | #ifdef CONFIG_DEBUG_FS |
| 9792 | #include <linux/seq_file.h> |
| 9793 | |
| 9794 | struct intel_display_error_state { |
Paulo Zanoni | ff57f1b | 2013-05-03 12:15:37 -0300 | [diff] [blame] | 9795 | |
| 9796 | u32 power_well_driver; |
| 9797 | |
Chris Wilson | c4a1d9e | 2010-11-21 13:12:35 +0000 | [diff] [blame] | 9798 | struct intel_cursor_error_state { |
| 9799 | u32 control; |
| 9800 | u32 position; |
| 9801 | u32 base; |
| 9802 | u32 size; |
Damien Lespiau | 5233130 | 2012-08-15 19:23:25 +0100 | [diff] [blame] | 9803 | } cursor[I915_MAX_PIPES]; |
Chris Wilson | c4a1d9e | 2010-11-21 13:12:35 +0000 | [diff] [blame] | 9804 | |
| 9805 | struct intel_pipe_error_state { |
Paulo Zanoni | ff57f1b | 2013-05-03 12:15:37 -0300 | [diff] [blame] | 9806 | enum transcoder cpu_transcoder; |
Chris Wilson | c4a1d9e | 2010-11-21 13:12:35 +0000 | [diff] [blame] | 9807 | u32 conf; |
| 9808 | u32 source; |
| 9809 | |
| 9810 | u32 htotal; |
| 9811 | u32 hblank; |
| 9812 | u32 hsync; |
| 9813 | u32 vtotal; |
| 9814 | u32 vblank; |
| 9815 | u32 vsync; |
Damien Lespiau | 5233130 | 2012-08-15 19:23:25 +0100 | [diff] [blame] | 9816 | } pipe[I915_MAX_PIPES]; |
Chris Wilson | c4a1d9e | 2010-11-21 13:12:35 +0000 | [diff] [blame] | 9817 | |
| 9818 | struct intel_plane_error_state { |
| 9819 | u32 control; |
| 9820 | u32 stride; |
| 9821 | u32 size; |
| 9822 | u32 pos; |
| 9823 | u32 addr; |
| 9824 | u32 surface; |
| 9825 | u32 tile_offset; |
Damien Lespiau | 5233130 | 2012-08-15 19:23:25 +0100 | [diff] [blame] | 9826 | } plane[I915_MAX_PIPES]; |
Chris Wilson | c4a1d9e | 2010-11-21 13:12:35 +0000 | [diff] [blame] | 9827 | }; |
| 9828 | |
| 9829 | struct intel_display_error_state * |
| 9830 | intel_display_capture_error_state(struct drm_device *dev) |
| 9831 | { |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 9832 | drm_i915_private_t *dev_priv = dev->dev_private; |
Chris Wilson | c4a1d9e | 2010-11-21 13:12:35 +0000 | [diff] [blame] | 9833 | struct intel_display_error_state *error; |
Paulo Zanoni | 702e7a5 | 2012-10-23 18:29:59 -0200 | [diff] [blame] | 9834 | enum transcoder cpu_transcoder; |
Chris Wilson | c4a1d9e | 2010-11-21 13:12:35 +0000 | [diff] [blame] | 9835 | int i; |
| 9836 | |
| 9837 | error = kmalloc(sizeof(*error), GFP_ATOMIC); |
| 9838 | if (error == NULL) |
| 9839 | return NULL; |
| 9840 | |
Paulo Zanoni | ff57f1b | 2013-05-03 12:15:37 -0300 | [diff] [blame] | 9841 | if (HAS_POWER_WELL(dev)) |
| 9842 | error->power_well_driver = I915_READ(HSW_PWR_WELL_DRIVER); |
| 9843 | |
Damien Lespiau | 5233130 | 2012-08-15 19:23:25 +0100 | [diff] [blame] | 9844 | for_each_pipe(i) { |
Paulo Zanoni | 702e7a5 | 2012-10-23 18:29:59 -0200 | [diff] [blame] | 9845 | cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv, i); |
Paulo Zanoni | ff57f1b | 2013-05-03 12:15:37 -0300 | [diff] [blame] | 9846 | error->pipe[i].cpu_transcoder = cpu_transcoder; |
Paulo Zanoni | 702e7a5 | 2012-10-23 18:29:59 -0200 | [diff] [blame] | 9847 | |
Paulo Zanoni | a18c4c3 | 2013-03-06 20:03:12 -0300 | [diff] [blame] | 9848 | if (INTEL_INFO(dev)->gen <= 6 || IS_VALLEYVIEW(dev)) { |
| 9849 | error->cursor[i].control = I915_READ(CURCNTR(i)); |
| 9850 | error->cursor[i].position = I915_READ(CURPOS(i)); |
| 9851 | error->cursor[i].base = I915_READ(CURBASE(i)); |
| 9852 | } else { |
| 9853 | error->cursor[i].control = I915_READ(CURCNTR_IVB(i)); |
| 9854 | error->cursor[i].position = I915_READ(CURPOS_IVB(i)); |
| 9855 | error->cursor[i].base = I915_READ(CURBASE_IVB(i)); |
| 9856 | } |
Chris Wilson | c4a1d9e | 2010-11-21 13:12:35 +0000 | [diff] [blame] | 9857 | |
| 9858 | error->plane[i].control = I915_READ(DSPCNTR(i)); |
| 9859 | error->plane[i].stride = I915_READ(DSPSTRIDE(i)); |
Paulo Zanoni | 80ca378 | 2013-03-22 14:20:57 -0300 | [diff] [blame] | 9860 | if (INTEL_INFO(dev)->gen <= 3) { |
Paulo Zanoni | 51889b3 | 2013-03-06 20:03:13 -0300 | [diff] [blame] | 9861 | error->plane[i].size = I915_READ(DSPSIZE(i)); |
Paulo Zanoni | 80ca378 | 2013-03-22 14:20:57 -0300 | [diff] [blame] | 9862 | error->plane[i].pos = I915_READ(DSPPOS(i)); |
| 9863 | } |
Paulo Zanoni | ca29136 | 2013-03-06 20:03:14 -0300 | [diff] [blame] | 9864 | if (INTEL_INFO(dev)->gen <= 7 && !IS_HASWELL(dev)) |
| 9865 | error->plane[i].addr = I915_READ(DSPADDR(i)); |
Chris Wilson | c4a1d9e | 2010-11-21 13:12:35 +0000 | [diff] [blame] | 9866 | if (INTEL_INFO(dev)->gen >= 4) { |
| 9867 | error->plane[i].surface = I915_READ(DSPSURF(i)); |
| 9868 | error->plane[i].tile_offset = I915_READ(DSPTILEOFF(i)); |
| 9869 | } |
| 9870 | |
Paulo Zanoni | 702e7a5 | 2012-10-23 18:29:59 -0200 | [diff] [blame] | 9871 | error->pipe[i].conf = I915_READ(PIPECONF(cpu_transcoder)); |
Chris Wilson | c4a1d9e | 2010-11-21 13:12:35 +0000 | [diff] [blame] | 9872 | error->pipe[i].source = I915_READ(PIPESRC(i)); |
Paulo Zanoni | fe2b8f9 | 2012-10-23 18:30:02 -0200 | [diff] [blame] | 9873 | error->pipe[i].htotal = I915_READ(HTOTAL(cpu_transcoder)); |
| 9874 | error->pipe[i].hblank = I915_READ(HBLANK(cpu_transcoder)); |
| 9875 | error->pipe[i].hsync = I915_READ(HSYNC(cpu_transcoder)); |
| 9876 | error->pipe[i].vtotal = I915_READ(VTOTAL(cpu_transcoder)); |
| 9877 | error->pipe[i].vblank = I915_READ(VBLANK(cpu_transcoder)); |
| 9878 | error->pipe[i].vsync = I915_READ(VSYNC(cpu_transcoder)); |
Chris Wilson | c4a1d9e | 2010-11-21 13:12:35 +0000 | [diff] [blame] | 9879 | } |
| 9880 | |
Paulo Zanoni | 12d217c | 2013-05-03 12:15:38 -0300 | [diff] [blame] | 9881 | /* In the code above we read the registers without checking if the power |
| 9882 | * well was on, so here we have to clear the FPGA_DBG_RM_NOCLAIM bit to |
| 9883 | * prevent the next I915_WRITE from detecting it and printing an error |
| 9884 | * message. */ |
| 9885 | if (HAS_POWER_WELL(dev)) |
| 9886 | I915_WRITE_NOTRACE(FPGA_DBG, FPGA_DBG_RM_NOCLAIM); |
| 9887 | |
Chris Wilson | c4a1d9e | 2010-11-21 13:12:35 +0000 | [diff] [blame] | 9888 | return error; |
| 9889 | } |
| 9890 | |
Mika Kuoppala | edc3d88 | 2013-05-23 13:55:35 +0300 | [diff] [blame] | 9891 | #define err_printf(e, ...) i915_error_printf(e, __VA_ARGS__) |
| 9892 | |
Chris Wilson | c4a1d9e | 2010-11-21 13:12:35 +0000 | [diff] [blame] | 9893 | void |
Mika Kuoppala | edc3d88 | 2013-05-23 13:55:35 +0300 | [diff] [blame] | 9894 | intel_display_print_error_state(struct drm_i915_error_state_buf *m, |
Chris Wilson | c4a1d9e | 2010-11-21 13:12:35 +0000 | [diff] [blame] | 9895 | struct drm_device *dev, |
| 9896 | struct intel_display_error_state *error) |
| 9897 | { |
| 9898 | int i; |
| 9899 | |
Mika Kuoppala | edc3d88 | 2013-05-23 13:55:35 +0300 | [diff] [blame] | 9900 | err_printf(m, "Num Pipes: %d\n", INTEL_INFO(dev)->num_pipes); |
Paulo Zanoni | ff57f1b | 2013-05-03 12:15:37 -0300 | [diff] [blame] | 9901 | if (HAS_POWER_WELL(dev)) |
Mika Kuoppala | edc3d88 | 2013-05-23 13:55:35 +0300 | [diff] [blame] | 9902 | err_printf(m, "PWR_WELL_CTL2: %08x\n", |
Paulo Zanoni | ff57f1b | 2013-05-03 12:15:37 -0300 | [diff] [blame] | 9903 | error->power_well_driver); |
Damien Lespiau | 5233130 | 2012-08-15 19:23:25 +0100 | [diff] [blame] | 9904 | for_each_pipe(i) { |
Mika Kuoppala | edc3d88 | 2013-05-23 13:55:35 +0300 | [diff] [blame] | 9905 | err_printf(m, "Pipe [%d]:\n", i); |
| 9906 | err_printf(m, " CPU transcoder: %c\n", |
Paulo Zanoni | ff57f1b | 2013-05-03 12:15:37 -0300 | [diff] [blame] | 9907 | transcoder_name(error->pipe[i].cpu_transcoder)); |
Mika Kuoppala | edc3d88 | 2013-05-23 13:55:35 +0300 | [diff] [blame] | 9908 | err_printf(m, " CONF: %08x\n", error->pipe[i].conf); |
| 9909 | err_printf(m, " SRC: %08x\n", error->pipe[i].source); |
| 9910 | err_printf(m, " HTOTAL: %08x\n", error->pipe[i].htotal); |
| 9911 | err_printf(m, " HBLANK: %08x\n", error->pipe[i].hblank); |
| 9912 | err_printf(m, " HSYNC: %08x\n", error->pipe[i].hsync); |
| 9913 | err_printf(m, " VTOTAL: %08x\n", error->pipe[i].vtotal); |
| 9914 | err_printf(m, " VBLANK: %08x\n", error->pipe[i].vblank); |
| 9915 | err_printf(m, " VSYNC: %08x\n", error->pipe[i].vsync); |
Chris Wilson | c4a1d9e | 2010-11-21 13:12:35 +0000 | [diff] [blame] | 9916 | |
Mika Kuoppala | edc3d88 | 2013-05-23 13:55:35 +0300 | [diff] [blame] | 9917 | err_printf(m, "Plane [%d]:\n", i); |
| 9918 | err_printf(m, " CNTR: %08x\n", error->plane[i].control); |
| 9919 | err_printf(m, " STRIDE: %08x\n", error->plane[i].stride); |
Paulo Zanoni | 80ca378 | 2013-03-22 14:20:57 -0300 | [diff] [blame] | 9920 | if (INTEL_INFO(dev)->gen <= 3) { |
Mika Kuoppala | edc3d88 | 2013-05-23 13:55:35 +0300 | [diff] [blame] | 9921 | err_printf(m, " SIZE: %08x\n", error->plane[i].size); |
| 9922 | err_printf(m, " POS: %08x\n", error->plane[i].pos); |
Paulo Zanoni | 80ca378 | 2013-03-22 14:20:57 -0300 | [diff] [blame] | 9923 | } |
Paulo Zanoni | 4b71a57 | 2013-03-22 14:19:21 -0300 | [diff] [blame] | 9924 | if (INTEL_INFO(dev)->gen <= 7 && !IS_HASWELL(dev)) |
Mika Kuoppala | edc3d88 | 2013-05-23 13:55:35 +0300 | [diff] [blame] | 9925 | err_printf(m, " ADDR: %08x\n", error->plane[i].addr); |
Chris Wilson | c4a1d9e | 2010-11-21 13:12:35 +0000 | [diff] [blame] | 9926 | if (INTEL_INFO(dev)->gen >= 4) { |
Mika Kuoppala | edc3d88 | 2013-05-23 13:55:35 +0300 | [diff] [blame] | 9927 | err_printf(m, " SURF: %08x\n", error->plane[i].surface); |
| 9928 | err_printf(m, " TILEOFF: %08x\n", error->plane[i].tile_offset); |
Chris Wilson | c4a1d9e | 2010-11-21 13:12:35 +0000 | [diff] [blame] | 9929 | } |
| 9930 | |
Mika Kuoppala | edc3d88 | 2013-05-23 13:55:35 +0300 | [diff] [blame] | 9931 | err_printf(m, "Cursor [%d]:\n", i); |
| 9932 | err_printf(m, " CNTR: %08x\n", error->cursor[i].control); |
| 9933 | err_printf(m, " POS: %08x\n", error->cursor[i].position); |
| 9934 | err_printf(m, " BASE: %08x\n", error->cursor[i].base); |
Chris Wilson | c4a1d9e | 2010-11-21 13:12:35 +0000 | [diff] [blame] | 9935 | } |
| 9936 | } |
| 9937 | #endif |