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> |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 35 | #include "drmP.h" |
| 36 | #include "intel_drv.h" |
| 37 | #include "i915_drm.h" |
| 38 | #include "i915_drv.h" |
Jesse Barnes | e5510fa | 2010-07-01 16:48:37 -0700 | [diff] [blame] | 39 | #include "i915_trace.h" |
Dave Airlie | ab2c067 | 2009-12-04 10:55:24 +1000 | [diff] [blame] | 40 | #include "drm_dp_helper.h" |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 41 | #include "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 | |
Zhenyu Wang | 32f9d65 | 2009-07-24 01:00:32 +0800 | [diff] [blame] | 44 | #define HAS_eDP (intel_pipe_has_type(crtc, INTEL_OUTPUT_EDP)) |
| 45 | |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 46 | bool intel_pipe_has_type(struct drm_crtc *crtc, int type); |
Daniel Vetter | 3dec009 | 2010-08-20 21:40:52 +0200 | [diff] [blame] | 47 | static void intel_increase_pllclock(struct drm_crtc *crtc); |
Chris Wilson | 6b383a7 | 2010-09-13 13:54:26 +0100 | [diff] [blame] | 48 | static void intel_crtc_update_cursor(struct drm_crtc *crtc, bool on); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 49 | |
| 50 | typedef struct { |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 51 | /* given values */ |
| 52 | int n; |
| 53 | int m1, m2; |
| 54 | int p1, p2; |
| 55 | /* derived values */ |
| 56 | int dot; |
| 57 | int vco; |
| 58 | int m; |
| 59 | int p; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 60 | } intel_clock_t; |
| 61 | |
| 62 | typedef struct { |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 63 | int min, max; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 64 | } intel_range_t; |
| 65 | |
| 66 | typedef struct { |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 67 | int dot_limit; |
| 68 | int p2_slow, p2_fast; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 69 | } intel_p2_t; |
| 70 | |
| 71 | #define INTEL_P2_NUM 2 |
Ma Ling | d490609 | 2009-03-18 20:13:27 +0800 | [diff] [blame] | 72 | typedef struct intel_limit intel_limit_t; |
| 73 | struct intel_limit { |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 74 | intel_range_t dot, vco, n, m, m1, m2, p, p1; |
| 75 | intel_p2_t p2; |
| 76 | bool (* find_pll)(const intel_limit_t *, struct drm_crtc *, |
Sean Paul | cec2f35 | 2012-01-10 15:09:36 -0800 | [diff] [blame] | 77 | int, int, intel_clock_t *, intel_clock_t *); |
Ma Ling | d490609 | 2009-03-18 20:13:27 +0800 | [diff] [blame] | 78 | }; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 79 | |
Jesse Barnes | 2377b74 | 2010-07-07 14:06:43 -0700 | [diff] [blame] | 80 | /* FDI */ |
| 81 | #define IRONLAKE_FDI_FREQ 2700000 /* in kHz for mode->clock */ |
| 82 | |
Ma Ling | d490609 | 2009-03-18 20:13:27 +0800 | [diff] [blame] | 83 | static bool |
| 84 | 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] | 85 | int target, int refclk, intel_clock_t *match_clock, |
| 86 | intel_clock_t *best_clock); |
Ma Ling | d490609 | 2009-03-18 20:13:27 +0800 | [diff] [blame] | 87 | static bool |
| 88 | 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] | 89 | int target, int refclk, intel_clock_t *match_clock, |
| 90 | intel_clock_t *best_clock); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 91 | |
Keith Packard | a4fc5ed | 2009-04-07 16:16:42 -0700 | [diff] [blame] | 92 | static bool |
| 93 | intel_find_pll_g4x_dp(const intel_limit_t *, struct drm_crtc *crtc, |
Sean Paul | cec2f35 | 2012-01-10 15:09:36 -0800 | [diff] [blame] | 94 | int target, int refclk, intel_clock_t *match_clock, |
| 95 | intel_clock_t *best_clock); |
Zhenyu Wang | 5eb08b6 | 2009-07-24 01:00:31 +0800 | [diff] [blame] | 96 | static bool |
Adam Jackson | f2b115e | 2009-12-03 17:14:42 -0500 | [diff] [blame] | 97 | intel_find_pll_ironlake_dp(const intel_limit_t *, struct drm_crtc *crtc, |
Sean Paul | cec2f35 | 2012-01-10 15:09:36 -0800 | [diff] [blame] | 98 | int target, int refclk, intel_clock_t *match_clock, |
| 99 | intel_clock_t *best_clock); |
Keith Packard | a4fc5ed | 2009-04-07 16:16:42 -0700 | [diff] [blame] | 100 | |
Chris Wilson | 021357a | 2010-09-07 20:54:59 +0100 | [diff] [blame] | 101 | static inline u32 /* units of 100MHz */ |
| 102 | intel_fdi_link_freq(struct drm_device *dev) |
| 103 | { |
Chris Wilson | 8b99e68 | 2010-10-13 09:59:17 +0100 | [diff] [blame] | 104 | if (IS_GEN5(dev)) { |
| 105 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 106 | return (I915_READ(FDI_PLL_BIOS_0) & FDI_PLL_FB_CLOCK_MASK) + 2; |
| 107 | } else |
| 108 | return 27; |
Chris Wilson | 021357a | 2010-09-07 20:54:59 +0100 | [diff] [blame] | 109 | } |
| 110 | |
Keith Packard | e4b3669 | 2009-06-05 19:22:17 -0700 | [diff] [blame] | 111 | static const intel_limit_t intel_limits_i8xx_dvo = { |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 112 | .dot = { .min = 25000, .max = 350000 }, |
| 113 | .vco = { .min = 930000, .max = 1400000 }, |
| 114 | .n = { .min = 3, .max = 16 }, |
| 115 | .m = { .min = 96, .max = 140 }, |
| 116 | .m1 = { .min = 18, .max = 26 }, |
| 117 | .m2 = { .min = 6, .max = 16 }, |
| 118 | .p = { .min = 4, .max = 128 }, |
| 119 | .p1 = { .min = 2, .max = 33 }, |
Eric Anholt | 273e27c | 2011-03-30 13:01:10 -0700 | [diff] [blame] | 120 | .p2 = { .dot_limit = 165000, |
| 121 | .p2_slow = 4, .p2_fast = 2 }, |
Ma Ling | d490609 | 2009-03-18 20:13:27 +0800 | [diff] [blame] | 122 | .find_pll = intel_find_best_PLL, |
Keith Packard | e4b3669 | 2009-06-05 19:22:17 -0700 | [diff] [blame] | 123 | }; |
| 124 | |
| 125 | static const intel_limit_t intel_limits_i8xx_lvds = { |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 126 | .dot = { .min = 25000, .max = 350000 }, |
| 127 | .vco = { .min = 930000, .max = 1400000 }, |
| 128 | .n = { .min = 3, .max = 16 }, |
| 129 | .m = { .min = 96, .max = 140 }, |
| 130 | .m1 = { .min = 18, .max = 26 }, |
| 131 | .m2 = { .min = 6, .max = 16 }, |
| 132 | .p = { .min = 4, .max = 128 }, |
| 133 | .p1 = { .min = 1, .max = 6 }, |
Eric Anholt | 273e27c | 2011-03-30 13:01:10 -0700 | [diff] [blame] | 134 | .p2 = { .dot_limit = 165000, |
| 135 | .p2_slow = 14, .p2_fast = 7 }, |
Ma Ling | d490609 | 2009-03-18 20:13:27 +0800 | [diff] [blame] | 136 | .find_pll = intel_find_best_PLL, |
Keith Packard | e4b3669 | 2009-06-05 19:22:17 -0700 | [diff] [blame] | 137 | }; |
Eric Anholt | 273e27c | 2011-03-30 13:01:10 -0700 | [diff] [blame] | 138 | |
Keith Packard | e4b3669 | 2009-06-05 19:22:17 -0700 | [diff] [blame] | 139 | static const intel_limit_t intel_limits_i9xx_sdvo = { |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 140 | .dot = { .min = 20000, .max = 400000 }, |
| 141 | .vco = { .min = 1400000, .max = 2800000 }, |
| 142 | .n = { .min = 1, .max = 6 }, |
| 143 | .m = { .min = 70, .max = 120 }, |
| 144 | .m1 = { .min = 10, .max = 22 }, |
| 145 | .m2 = { .min = 5, .max = 9 }, |
| 146 | .p = { .min = 5, .max = 80 }, |
| 147 | .p1 = { .min = 1, .max = 8 }, |
Eric Anholt | 273e27c | 2011-03-30 13:01:10 -0700 | [diff] [blame] | 148 | .p2 = { .dot_limit = 200000, |
| 149 | .p2_slow = 10, .p2_fast = 5 }, |
Ma Ling | d490609 | 2009-03-18 20:13:27 +0800 | [diff] [blame] | 150 | .find_pll = intel_find_best_PLL, |
Keith Packard | e4b3669 | 2009-06-05 19:22:17 -0700 | [diff] [blame] | 151 | }; |
| 152 | |
| 153 | static const intel_limit_t intel_limits_i9xx_lvds = { |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 154 | .dot = { .min = 20000, .max = 400000 }, |
| 155 | .vco = { .min = 1400000, .max = 2800000 }, |
| 156 | .n = { .min = 1, .max = 6 }, |
| 157 | .m = { .min = 70, .max = 120 }, |
| 158 | .m1 = { .min = 10, .max = 22 }, |
| 159 | .m2 = { .min = 5, .max = 9 }, |
| 160 | .p = { .min = 7, .max = 98 }, |
| 161 | .p1 = { .min = 1, .max = 8 }, |
Eric Anholt | 273e27c | 2011-03-30 13:01:10 -0700 | [diff] [blame] | 162 | .p2 = { .dot_limit = 112000, |
| 163 | .p2_slow = 14, .p2_fast = 7 }, |
Ma Ling | d490609 | 2009-03-18 20:13:27 +0800 | [diff] [blame] | 164 | .find_pll = intel_find_best_PLL, |
Keith Packard | e4b3669 | 2009-06-05 19:22:17 -0700 | [diff] [blame] | 165 | }; |
| 166 | |
Eric Anholt | 273e27c | 2011-03-30 13:01:10 -0700 | [diff] [blame] | 167 | |
Keith Packard | e4b3669 | 2009-06-05 19:22:17 -0700 | [diff] [blame] | 168 | static const intel_limit_t intel_limits_g4x_sdvo = { |
Eric Anholt | 273e27c | 2011-03-30 13:01:10 -0700 | [diff] [blame] | 169 | .dot = { .min = 25000, .max = 270000 }, |
| 170 | .vco = { .min = 1750000, .max = 3500000}, |
| 171 | .n = { .min = 1, .max = 4 }, |
| 172 | .m = { .min = 104, .max = 138 }, |
| 173 | .m1 = { .min = 17, .max = 23 }, |
| 174 | .m2 = { .min = 5, .max = 11 }, |
| 175 | .p = { .min = 10, .max = 30 }, |
| 176 | .p1 = { .min = 1, .max = 3}, |
| 177 | .p2 = { .dot_limit = 270000, |
| 178 | .p2_slow = 10, |
| 179 | .p2_fast = 10 |
Ma Ling | 044c7c4 | 2009-03-18 20:13:23 +0800 | [diff] [blame] | 180 | }, |
Ma Ling | d490609 | 2009-03-18 20:13:27 +0800 | [diff] [blame] | 181 | .find_pll = intel_g4x_find_best_PLL, |
Keith Packard | e4b3669 | 2009-06-05 19:22:17 -0700 | [diff] [blame] | 182 | }; |
| 183 | |
| 184 | static const intel_limit_t intel_limits_g4x_hdmi = { |
Eric Anholt | 273e27c | 2011-03-30 13:01:10 -0700 | [diff] [blame] | 185 | .dot = { .min = 22000, .max = 400000 }, |
| 186 | .vco = { .min = 1750000, .max = 3500000}, |
| 187 | .n = { .min = 1, .max = 4 }, |
| 188 | .m = { .min = 104, .max = 138 }, |
| 189 | .m1 = { .min = 16, .max = 23 }, |
| 190 | .m2 = { .min = 5, .max = 11 }, |
| 191 | .p = { .min = 5, .max = 80 }, |
| 192 | .p1 = { .min = 1, .max = 8}, |
| 193 | .p2 = { .dot_limit = 165000, |
| 194 | .p2_slow = 10, .p2_fast = 5 }, |
Ma Ling | d490609 | 2009-03-18 20:13:27 +0800 | [diff] [blame] | 195 | .find_pll = intel_g4x_find_best_PLL, |
Keith Packard | e4b3669 | 2009-06-05 19:22:17 -0700 | [diff] [blame] | 196 | }; |
| 197 | |
| 198 | static const intel_limit_t intel_limits_g4x_single_channel_lvds = { |
Eric Anholt | 273e27c | 2011-03-30 13:01:10 -0700 | [diff] [blame] | 199 | .dot = { .min = 20000, .max = 115000 }, |
| 200 | .vco = { .min = 1750000, .max = 3500000 }, |
| 201 | .n = { .min = 1, .max = 3 }, |
| 202 | .m = { .min = 104, .max = 138 }, |
| 203 | .m1 = { .min = 17, .max = 23 }, |
| 204 | .m2 = { .min = 5, .max = 11 }, |
| 205 | .p = { .min = 28, .max = 112 }, |
| 206 | .p1 = { .min = 2, .max = 8 }, |
| 207 | .p2 = { .dot_limit = 0, |
| 208 | .p2_slow = 14, .p2_fast = 14 |
Ma Ling | 044c7c4 | 2009-03-18 20:13:23 +0800 | [diff] [blame] | 209 | }, |
Ma Ling | d490609 | 2009-03-18 20:13:27 +0800 | [diff] [blame] | 210 | .find_pll = intel_g4x_find_best_PLL, |
Keith Packard | e4b3669 | 2009-06-05 19:22:17 -0700 | [diff] [blame] | 211 | }; |
| 212 | |
| 213 | static const intel_limit_t intel_limits_g4x_dual_channel_lvds = { |
Eric Anholt | 273e27c | 2011-03-30 13:01:10 -0700 | [diff] [blame] | 214 | .dot = { .min = 80000, .max = 224000 }, |
| 215 | .vco = { .min = 1750000, .max = 3500000 }, |
| 216 | .n = { .min = 1, .max = 3 }, |
| 217 | .m = { .min = 104, .max = 138 }, |
| 218 | .m1 = { .min = 17, .max = 23 }, |
| 219 | .m2 = { .min = 5, .max = 11 }, |
| 220 | .p = { .min = 14, .max = 42 }, |
| 221 | .p1 = { .min = 2, .max = 6 }, |
| 222 | .p2 = { .dot_limit = 0, |
| 223 | .p2_slow = 7, .p2_fast = 7 |
Ma Ling | 044c7c4 | 2009-03-18 20:13:23 +0800 | [diff] [blame] | 224 | }, |
Ma Ling | d490609 | 2009-03-18 20:13:27 +0800 | [diff] [blame] | 225 | .find_pll = intel_g4x_find_best_PLL, |
Keith Packard | e4b3669 | 2009-06-05 19:22:17 -0700 | [diff] [blame] | 226 | }; |
| 227 | |
| 228 | static const intel_limit_t intel_limits_g4x_display_port = { |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 229 | .dot = { .min = 161670, .max = 227000 }, |
| 230 | .vco = { .min = 1750000, .max = 3500000}, |
| 231 | .n = { .min = 1, .max = 2 }, |
| 232 | .m = { .min = 97, .max = 108 }, |
| 233 | .m1 = { .min = 0x10, .max = 0x12 }, |
| 234 | .m2 = { .min = 0x05, .max = 0x06 }, |
| 235 | .p = { .min = 10, .max = 20 }, |
| 236 | .p1 = { .min = 1, .max = 2}, |
| 237 | .p2 = { .dot_limit = 0, |
Eric Anholt | 273e27c | 2011-03-30 13:01:10 -0700 | [diff] [blame] | 238 | .p2_slow = 10, .p2_fast = 10 }, |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 239 | .find_pll = intel_find_pll_g4x_dp, |
Keith Packard | e4b3669 | 2009-06-05 19:22:17 -0700 | [diff] [blame] | 240 | }; |
| 241 | |
Adam Jackson | f2b115e | 2009-12-03 17:14:42 -0500 | [diff] [blame] | 242 | static const intel_limit_t intel_limits_pineview_sdvo = { |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 243 | .dot = { .min = 20000, .max = 400000}, |
| 244 | .vco = { .min = 1700000, .max = 3500000 }, |
Eric Anholt | 273e27c | 2011-03-30 13:01:10 -0700 | [diff] [blame] | 245 | /* Pineview's Ncounter is a ring counter */ |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 246 | .n = { .min = 3, .max = 6 }, |
| 247 | .m = { .min = 2, .max = 256 }, |
Eric Anholt | 273e27c | 2011-03-30 13:01:10 -0700 | [diff] [blame] | 248 | /* Pineview only has one combined m divider, which we treat as m2. */ |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 249 | .m1 = { .min = 0, .max = 0 }, |
| 250 | .m2 = { .min = 0, .max = 254 }, |
| 251 | .p = { .min = 5, .max = 80 }, |
| 252 | .p1 = { .min = 1, .max = 8 }, |
Eric Anholt | 273e27c | 2011-03-30 13:01:10 -0700 | [diff] [blame] | 253 | .p2 = { .dot_limit = 200000, |
| 254 | .p2_slow = 10, .p2_fast = 5 }, |
Shaohua Li | 6115707 | 2009-04-03 15:24:43 +0800 | [diff] [blame] | 255 | .find_pll = intel_find_best_PLL, |
Keith Packard | e4b3669 | 2009-06-05 19:22:17 -0700 | [diff] [blame] | 256 | }; |
| 257 | |
Adam Jackson | f2b115e | 2009-12-03 17:14:42 -0500 | [diff] [blame] | 258 | static const intel_limit_t intel_limits_pineview_lvds = { |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 259 | .dot = { .min = 20000, .max = 400000 }, |
| 260 | .vco = { .min = 1700000, .max = 3500000 }, |
| 261 | .n = { .min = 3, .max = 6 }, |
| 262 | .m = { .min = 2, .max = 256 }, |
| 263 | .m1 = { .min = 0, .max = 0 }, |
| 264 | .m2 = { .min = 0, .max = 254 }, |
| 265 | .p = { .min = 7, .max = 112 }, |
| 266 | .p1 = { .min = 1, .max = 8 }, |
Eric Anholt | 273e27c | 2011-03-30 13:01:10 -0700 | [diff] [blame] | 267 | .p2 = { .dot_limit = 112000, |
| 268 | .p2_slow = 14, .p2_fast = 14 }, |
Shaohua Li | 6115707 | 2009-04-03 15:24:43 +0800 | [diff] [blame] | 269 | .find_pll = intel_find_best_PLL, |
Keith Packard | e4b3669 | 2009-06-05 19:22:17 -0700 | [diff] [blame] | 270 | }; |
| 271 | |
Eric Anholt | 273e27c | 2011-03-30 13:01:10 -0700 | [diff] [blame] | 272 | /* Ironlake / Sandybridge |
| 273 | * |
| 274 | * We calculate clock using (register_value + 2) for N/M1/M2, so here |
| 275 | * the range value for them is (actual_value - 2). |
| 276 | */ |
Zhenyu Wang | b91ad0e | 2010-02-05 09:14:17 +0800 | [diff] [blame] | 277 | static const intel_limit_t intel_limits_ironlake_dac = { |
Eric Anholt | 273e27c | 2011-03-30 13:01:10 -0700 | [diff] [blame] | 278 | .dot = { .min = 25000, .max = 350000 }, |
| 279 | .vco = { .min = 1760000, .max = 3510000 }, |
| 280 | .n = { .min = 1, .max = 5 }, |
| 281 | .m = { .min = 79, .max = 127 }, |
| 282 | .m1 = { .min = 12, .max = 22 }, |
| 283 | .m2 = { .min = 5, .max = 9 }, |
| 284 | .p = { .min = 5, .max = 80 }, |
| 285 | .p1 = { .min = 1, .max = 8 }, |
| 286 | .p2 = { .dot_limit = 225000, |
| 287 | .p2_slow = 10, .p2_fast = 5 }, |
Zhao Yakui | 4547668 | 2009-12-31 16:06:04 +0800 | [diff] [blame] | 288 | .find_pll = intel_g4x_find_best_PLL, |
Keith Packard | e4b3669 | 2009-06-05 19:22:17 -0700 | [diff] [blame] | 289 | }; |
| 290 | |
Zhenyu Wang | b91ad0e | 2010-02-05 09:14:17 +0800 | [diff] [blame] | 291 | static const intel_limit_t intel_limits_ironlake_single_lvds = { |
Eric Anholt | 273e27c | 2011-03-30 13:01:10 -0700 | [diff] [blame] | 292 | .dot = { .min = 25000, .max = 350000 }, |
| 293 | .vco = { .min = 1760000, .max = 3510000 }, |
| 294 | .n = { .min = 1, .max = 3 }, |
| 295 | .m = { .min = 79, .max = 118 }, |
| 296 | .m1 = { .min = 12, .max = 22 }, |
| 297 | .m2 = { .min = 5, .max = 9 }, |
| 298 | .p = { .min = 28, .max = 112 }, |
| 299 | .p1 = { .min = 2, .max = 8 }, |
| 300 | .p2 = { .dot_limit = 225000, |
| 301 | .p2_slow = 14, .p2_fast = 14 }, |
Zhenyu Wang | b91ad0e | 2010-02-05 09:14:17 +0800 | [diff] [blame] | 302 | .find_pll = intel_g4x_find_best_PLL, |
| 303 | }; |
| 304 | |
| 305 | static const intel_limit_t intel_limits_ironlake_dual_lvds = { |
Eric Anholt | 273e27c | 2011-03-30 13:01:10 -0700 | [diff] [blame] | 306 | .dot = { .min = 25000, .max = 350000 }, |
| 307 | .vco = { .min = 1760000, .max = 3510000 }, |
| 308 | .n = { .min = 1, .max = 3 }, |
| 309 | .m = { .min = 79, .max = 127 }, |
| 310 | .m1 = { .min = 12, .max = 22 }, |
| 311 | .m2 = { .min = 5, .max = 9 }, |
| 312 | .p = { .min = 14, .max = 56 }, |
| 313 | .p1 = { .min = 2, .max = 8 }, |
| 314 | .p2 = { .dot_limit = 225000, |
| 315 | .p2_slow = 7, .p2_fast = 7 }, |
Zhenyu Wang | b91ad0e | 2010-02-05 09:14:17 +0800 | [diff] [blame] | 316 | .find_pll = intel_g4x_find_best_PLL, |
| 317 | }; |
| 318 | |
Eric Anholt | 273e27c | 2011-03-30 13:01:10 -0700 | [diff] [blame] | 319 | /* LVDS 100mhz refclk limits. */ |
Zhenyu Wang | b91ad0e | 2010-02-05 09:14:17 +0800 | [diff] [blame] | 320 | static const intel_limit_t intel_limits_ironlake_single_lvds_100m = { |
Eric Anholt | 273e27c | 2011-03-30 13:01:10 -0700 | [diff] [blame] | 321 | .dot = { .min = 25000, .max = 350000 }, |
| 322 | .vco = { .min = 1760000, .max = 3510000 }, |
| 323 | .n = { .min = 1, .max = 2 }, |
| 324 | .m = { .min = 79, .max = 126 }, |
| 325 | .m1 = { .min = 12, .max = 22 }, |
| 326 | .m2 = { .min = 5, .max = 9 }, |
| 327 | .p = { .min = 28, .max = 112 }, |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 328 | .p1 = { .min = 2, .max = 8 }, |
Eric Anholt | 273e27c | 2011-03-30 13:01:10 -0700 | [diff] [blame] | 329 | .p2 = { .dot_limit = 225000, |
| 330 | .p2_slow = 14, .p2_fast = 14 }, |
Zhenyu Wang | b91ad0e | 2010-02-05 09:14:17 +0800 | [diff] [blame] | 331 | .find_pll = intel_g4x_find_best_PLL, |
| 332 | }; |
| 333 | |
| 334 | static const intel_limit_t intel_limits_ironlake_dual_lvds_100m = { |
Eric Anholt | 273e27c | 2011-03-30 13:01:10 -0700 | [diff] [blame] | 335 | .dot = { .min = 25000, .max = 350000 }, |
| 336 | .vco = { .min = 1760000, .max = 3510000 }, |
| 337 | .n = { .min = 1, .max = 3 }, |
| 338 | .m = { .min = 79, .max = 126 }, |
| 339 | .m1 = { .min = 12, .max = 22 }, |
| 340 | .m2 = { .min = 5, .max = 9 }, |
| 341 | .p = { .min = 14, .max = 42 }, |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 342 | .p1 = { .min = 2, .max = 6 }, |
Eric Anholt | 273e27c | 2011-03-30 13:01:10 -0700 | [diff] [blame] | 343 | .p2 = { .dot_limit = 225000, |
| 344 | .p2_slow = 7, .p2_fast = 7 }, |
Zhao Yakui | 4547668 | 2009-12-31 16:06:04 +0800 | [diff] [blame] | 345 | .find_pll = intel_g4x_find_best_PLL, |
| 346 | }; |
| 347 | |
| 348 | static const intel_limit_t intel_limits_ironlake_display_port = { |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 349 | .dot = { .min = 25000, .max = 350000 }, |
| 350 | .vco = { .min = 1760000, .max = 3510000}, |
| 351 | .n = { .min = 1, .max = 2 }, |
| 352 | .m = { .min = 81, .max = 90 }, |
| 353 | .m1 = { .min = 12, .max = 22 }, |
| 354 | .m2 = { .min = 5, .max = 9 }, |
| 355 | .p = { .min = 10, .max = 20 }, |
| 356 | .p1 = { .min = 1, .max = 2}, |
| 357 | .p2 = { .dot_limit = 0, |
Eric Anholt | 273e27c | 2011-03-30 13:01:10 -0700 | [diff] [blame] | 358 | .p2_slow = 10, .p2_fast = 10 }, |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 359 | .find_pll = intel_find_pll_ironlake_dp, |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 360 | }; |
| 361 | |
Jesse Barnes | 57f350b | 2012-03-28 13:39:25 -0700 | [diff] [blame] | 362 | u32 intel_dpio_read(struct drm_i915_private *dev_priv, int reg) |
| 363 | { |
| 364 | unsigned long flags; |
| 365 | u32 val = 0; |
| 366 | |
| 367 | spin_lock_irqsave(&dev_priv->dpio_lock, flags); |
| 368 | if (wait_for_atomic_us((I915_READ(DPIO_PKT) & DPIO_BUSY) == 0, 100)) { |
| 369 | DRM_ERROR("DPIO idle wait timed out\n"); |
| 370 | goto out_unlock; |
| 371 | } |
| 372 | |
| 373 | I915_WRITE(DPIO_REG, reg); |
| 374 | I915_WRITE(DPIO_PKT, DPIO_RID | DPIO_OP_READ | DPIO_PORTID | |
| 375 | DPIO_BYTE); |
| 376 | if (wait_for_atomic_us((I915_READ(DPIO_PKT) & DPIO_BUSY) == 0, 100)) { |
| 377 | DRM_ERROR("DPIO read wait timed out\n"); |
| 378 | goto out_unlock; |
| 379 | } |
| 380 | val = I915_READ(DPIO_DATA); |
| 381 | |
| 382 | out_unlock: |
| 383 | spin_unlock_irqrestore(&dev_priv->dpio_lock, flags); |
| 384 | return val; |
| 385 | } |
| 386 | |
| 387 | static void intel_dpio_write(struct drm_i915_private *dev_priv, int reg, |
| 388 | u32 val) |
| 389 | { |
| 390 | unsigned long flags; |
| 391 | |
| 392 | spin_lock_irqsave(&dev_priv->dpio_lock, flags); |
| 393 | if (wait_for_atomic_us((I915_READ(DPIO_PKT) & DPIO_BUSY) == 0, 100)) { |
| 394 | DRM_ERROR("DPIO idle wait timed out\n"); |
| 395 | goto out_unlock; |
| 396 | } |
| 397 | |
| 398 | I915_WRITE(DPIO_DATA, val); |
| 399 | I915_WRITE(DPIO_REG, reg); |
| 400 | I915_WRITE(DPIO_PKT, DPIO_RID | DPIO_OP_WRITE | DPIO_PORTID | |
| 401 | DPIO_BYTE); |
| 402 | if (wait_for_atomic_us((I915_READ(DPIO_PKT) & DPIO_BUSY) == 0, 100)) |
| 403 | DRM_ERROR("DPIO write wait timed out\n"); |
| 404 | |
| 405 | out_unlock: |
| 406 | spin_unlock_irqrestore(&dev_priv->dpio_lock, flags); |
| 407 | } |
| 408 | |
| 409 | static void vlv_init_dpio(struct drm_device *dev) |
| 410 | { |
| 411 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 412 | |
| 413 | /* Reset the DPIO config */ |
| 414 | I915_WRITE(DPIO_CTL, 0); |
| 415 | POSTING_READ(DPIO_CTL); |
| 416 | I915_WRITE(DPIO_CTL, 1); |
| 417 | POSTING_READ(DPIO_CTL); |
| 418 | } |
| 419 | |
Daniel Vetter | 618563e | 2012-04-01 13:38:50 +0200 | [diff] [blame] | 420 | static int intel_dual_link_lvds_callback(const struct dmi_system_id *id) |
| 421 | { |
| 422 | DRM_INFO("Forcing lvds to dual link mode on %s\n", id->ident); |
| 423 | return 1; |
| 424 | } |
| 425 | |
| 426 | static const struct dmi_system_id intel_dual_link_lvds[] = { |
| 427 | { |
| 428 | .callback = intel_dual_link_lvds_callback, |
| 429 | .ident = "Apple MacBook Pro (Core i5/i7 Series)", |
| 430 | .matches = { |
| 431 | DMI_MATCH(DMI_SYS_VENDOR, "Apple Inc."), |
| 432 | DMI_MATCH(DMI_PRODUCT_NAME, "MacBookPro8,2"), |
| 433 | }, |
| 434 | }, |
| 435 | { } /* terminating entry */ |
| 436 | }; |
| 437 | |
Takashi Iwai | b035438 | 2012-03-20 13:07:05 +0100 | [diff] [blame] | 438 | static bool is_dual_link_lvds(struct drm_i915_private *dev_priv, |
| 439 | unsigned int reg) |
| 440 | { |
| 441 | unsigned int val; |
| 442 | |
Takashi Iwai | 121d527 | 2012-03-20 13:07:06 +0100 | [diff] [blame] | 443 | /* use the module option value if specified */ |
| 444 | if (i915_lvds_channel_mode > 0) |
| 445 | return i915_lvds_channel_mode == 2; |
| 446 | |
Daniel Vetter | 618563e | 2012-04-01 13:38:50 +0200 | [diff] [blame] | 447 | if (dmi_check_system(intel_dual_link_lvds)) |
| 448 | return true; |
| 449 | |
Takashi Iwai | b035438 | 2012-03-20 13:07:05 +0100 | [diff] [blame] | 450 | if (dev_priv->lvds_val) |
| 451 | val = dev_priv->lvds_val; |
| 452 | else { |
| 453 | /* BIOS should set the proper LVDS register value at boot, but |
| 454 | * in reality, it doesn't set the value when the lid is closed; |
| 455 | * we need to check "the value to be set" in VBT when LVDS |
| 456 | * register is uninitialized. |
| 457 | */ |
| 458 | val = I915_READ(reg); |
| 459 | if (!(val & ~LVDS_DETECTED)) |
| 460 | val = dev_priv->bios_lvds_val; |
| 461 | dev_priv->lvds_val = val; |
| 462 | } |
| 463 | return (val & LVDS_CLKB_POWER_MASK) == LVDS_CLKB_POWER_UP; |
| 464 | } |
| 465 | |
Chris Wilson | 1b894b5 | 2010-12-14 20:04:54 +0000 | [diff] [blame] | 466 | static const intel_limit_t *intel_ironlake_limit(struct drm_crtc *crtc, |
| 467 | int refclk) |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 468 | { |
Zhenyu Wang | b91ad0e | 2010-02-05 09:14:17 +0800 | [diff] [blame] | 469 | struct drm_device *dev = crtc->dev; |
| 470 | struct drm_i915_private *dev_priv = dev->dev_private; |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 471 | const intel_limit_t *limit; |
Zhenyu Wang | b91ad0e | 2010-02-05 09:14:17 +0800 | [diff] [blame] | 472 | |
| 473 | if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) { |
Takashi Iwai | b035438 | 2012-03-20 13:07:05 +0100 | [diff] [blame] | 474 | if (is_dual_link_lvds(dev_priv, PCH_LVDS)) { |
Zhenyu Wang | b91ad0e | 2010-02-05 09:14:17 +0800 | [diff] [blame] | 475 | /* LVDS dual channel */ |
Chris Wilson | 1b894b5 | 2010-12-14 20:04:54 +0000 | [diff] [blame] | 476 | if (refclk == 100000) |
Zhenyu Wang | b91ad0e | 2010-02-05 09:14:17 +0800 | [diff] [blame] | 477 | limit = &intel_limits_ironlake_dual_lvds_100m; |
| 478 | else |
| 479 | limit = &intel_limits_ironlake_dual_lvds; |
| 480 | } else { |
Chris Wilson | 1b894b5 | 2010-12-14 20:04:54 +0000 | [diff] [blame] | 481 | if (refclk == 100000) |
Zhenyu Wang | b91ad0e | 2010-02-05 09:14:17 +0800 | [diff] [blame] | 482 | limit = &intel_limits_ironlake_single_lvds_100m; |
| 483 | else |
| 484 | limit = &intel_limits_ironlake_single_lvds; |
| 485 | } |
| 486 | } else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT) || |
Zhao Yakui | 4547668 | 2009-12-31 16:06:04 +0800 | [diff] [blame] | 487 | HAS_eDP) |
| 488 | limit = &intel_limits_ironlake_display_port; |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 489 | else |
Zhenyu Wang | b91ad0e | 2010-02-05 09:14:17 +0800 | [diff] [blame] | 490 | limit = &intel_limits_ironlake_dac; |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 491 | |
| 492 | return limit; |
| 493 | } |
| 494 | |
Ma Ling | 044c7c4 | 2009-03-18 20:13:23 +0800 | [diff] [blame] | 495 | static const intel_limit_t *intel_g4x_limit(struct drm_crtc *crtc) |
| 496 | { |
| 497 | struct drm_device *dev = crtc->dev; |
| 498 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 499 | const intel_limit_t *limit; |
| 500 | |
| 501 | if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) { |
Takashi Iwai | b035438 | 2012-03-20 13:07:05 +0100 | [diff] [blame] | 502 | if (is_dual_link_lvds(dev_priv, LVDS)) |
Ma Ling | 044c7c4 | 2009-03-18 20:13:23 +0800 | [diff] [blame] | 503 | /* LVDS with dual channel */ |
Keith Packard | e4b3669 | 2009-06-05 19:22:17 -0700 | [diff] [blame] | 504 | limit = &intel_limits_g4x_dual_channel_lvds; |
Ma Ling | 044c7c4 | 2009-03-18 20:13:23 +0800 | [diff] [blame] | 505 | else |
| 506 | /* LVDS with dual channel */ |
Keith Packard | e4b3669 | 2009-06-05 19:22:17 -0700 | [diff] [blame] | 507 | limit = &intel_limits_g4x_single_channel_lvds; |
Ma Ling | 044c7c4 | 2009-03-18 20:13:23 +0800 | [diff] [blame] | 508 | } else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_HDMI) || |
| 509 | intel_pipe_has_type(crtc, INTEL_OUTPUT_ANALOG)) { |
Keith Packard | e4b3669 | 2009-06-05 19:22:17 -0700 | [diff] [blame] | 510 | limit = &intel_limits_g4x_hdmi; |
Ma Ling | 044c7c4 | 2009-03-18 20:13:23 +0800 | [diff] [blame] | 511 | } else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_SDVO)) { |
Keith Packard | e4b3669 | 2009-06-05 19:22:17 -0700 | [diff] [blame] | 512 | limit = &intel_limits_g4x_sdvo; |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 513 | } else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT)) { |
Keith Packard | e4b3669 | 2009-06-05 19:22:17 -0700 | [diff] [blame] | 514 | limit = &intel_limits_g4x_display_port; |
Ma Ling | 044c7c4 | 2009-03-18 20:13:23 +0800 | [diff] [blame] | 515 | } else /* The option is for other outputs */ |
Keith Packard | e4b3669 | 2009-06-05 19:22:17 -0700 | [diff] [blame] | 516 | limit = &intel_limits_i9xx_sdvo; |
Ma Ling | 044c7c4 | 2009-03-18 20:13:23 +0800 | [diff] [blame] | 517 | |
| 518 | return limit; |
| 519 | } |
| 520 | |
Chris Wilson | 1b894b5 | 2010-12-14 20:04:54 +0000 | [diff] [blame] | 521 | 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] | 522 | { |
| 523 | struct drm_device *dev = crtc->dev; |
| 524 | const intel_limit_t *limit; |
| 525 | |
Eric Anholt | bad720f | 2009-10-22 16:11:14 -0700 | [diff] [blame] | 526 | if (HAS_PCH_SPLIT(dev)) |
Chris Wilson | 1b894b5 | 2010-12-14 20:04:54 +0000 | [diff] [blame] | 527 | limit = intel_ironlake_limit(crtc, refclk); |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 528 | else if (IS_G4X(dev)) { |
Ma Ling | 044c7c4 | 2009-03-18 20:13:23 +0800 | [diff] [blame] | 529 | limit = intel_g4x_limit(crtc); |
Adam Jackson | f2b115e | 2009-12-03 17:14:42 -0500 | [diff] [blame] | 530 | } else if (IS_PINEVIEW(dev)) { |
Shaohua Li | 2177832 | 2009-02-23 15:19:16 +0800 | [diff] [blame] | 531 | if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) |
Adam Jackson | f2b115e | 2009-12-03 17:14:42 -0500 | [diff] [blame] | 532 | limit = &intel_limits_pineview_lvds; |
Shaohua Li | 2177832 | 2009-02-23 15:19:16 +0800 | [diff] [blame] | 533 | else |
Adam Jackson | f2b115e | 2009-12-03 17:14:42 -0500 | [diff] [blame] | 534 | limit = &intel_limits_pineview_sdvo; |
Chris Wilson | a6c45cf | 2010-09-17 00:32:17 +0100 | [diff] [blame] | 535 | } else if (!IS_GEN2(dev)) { |
| 536 | if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) |
| 537 | limit = &intel_limits_i9xx_lvds; |
| 538 | else |
| 539 | limit = &intel_limits_i9xx_sdvo; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 540 | } else { |
| 541 | if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) |
Keith Packard | e4b3669 | 2009-06-05 19:22:17 -0700 | [diff] [blame] | 542 | limit = &intel_limits_i8xx_lvds; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 543 | else |
Keith Packard | e4b3669 | 2009-06-05 19:22:17 -0700 | [diff] [blame] | 544 | limit = &intel_limits_i8xx_dvo; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 545 | } |
| 546 | return limit; |
| 547 | } |
| 548 | |
Adam Jackson | f2b115e | 2009-12-03 17:14:42 -0500 | [diff] [blame] | 549 | /* m1 is reserved as 0 in Pineview, n is a ring counter */ |
| 550 | static void pineview_clock(int refclk, intel_clock_t *clock) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 551 | { |
Shaohua Li | 2177832 | 2009-02-23 15:19:16 +0800 | [diff] [blame] | 552 | clock->m = clock->m2 + 2; |
| 553 | clock->p = clock->p1 * clock->p2; |
| 554 | clock->vco = refclk * clock->m / clock->n; |
| 555 | clock->dot = clock->vco / clock->p; |
| 556 | } |
| 557 | |
| 558 | static void intel_clock(struct drm_device *dev, int refclk, intel_clock_t *clock) |
| 559 | { |
Adam Jackson | f2b115e | 2009-12-03 17:14:42 -0500 | [diff] [blame] | 560 | if (IS_PINEVIEW(dev)) { |
| 561 | pineview_clock(refclk, clock); |
Shaohua Li | 2177832 | 2009-02-23 15:19:16 +0800 | [diff] [blame] | 562 | return; |
| 563 | } |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 564 | clock->m = 5 * (clock->m1 + 2) + (clock->m2 + 2); |
| 565 | clock->p = clock->p1 * clock->p2; |
| 566 | clock->vco = refclk * clock->m / (clock->n + 2); |
| 567 | clock->dot = clock->vco / clock->p; |
| 568 | } |
| 569 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 570 | /** |
| 571 | * Returns whether any output on the specified pipe is of the specified type |
| 572 | */ |
Chris Wilson | 4ef69c7 | 2010-09-09 15:14:28 +0100 | [diff] [blame] | 573 | bool intel_pipe_has_type(struct drm_crtc *crtc, int type) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 574 | { |
Chris Wilson | 4ef69c7 | 2010-09-09 15:14:28 +0100 | [diff] [blame] | 575 | struct drm_device *dev = crtc->dev; |
| 576 | struct drm_mode_config *mode_config = &dev->mode_config; |
| 577 | struct intel_encoder *encoder; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 578 | |
Chris Wilson | 4ef69c7 | 2010-09-09 15:14:28 +0100 | [diff] [blame] | 579 | list_for_each_entry(encoder, &mode_config->encoder_list, base.head) |
| 580 | if (encoder->base.crtc == crtc && encoder->type == type) |
| 581 | return true; |
| 582 | |
| 583 | return false; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 584 | } |
| 585 | |
Jesse Barnes | 7c04d1d | 2009-02-23 15:36:40 -0800 | [diff] [blame] | 586 | #define INTELPllInvalid(s) do { /* DRM_DEBUG(s); */ return false; } while (0) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 587 | /** |
| 588 | * Returns whether the given set of divisors are valid for a given refclk with |
| 589 | * the given connectors. |
| 590 | */ |
| 591 | |
Chris Wilson | 1b894b5 | 2010-12-14 20:04:54 +0000 | [diff] [blame] | 592 | static bool intel_PLL_is_valid(struct drm_device *dev, |
| 593 | const intel_limit_t *limit, |
| 594 | const intel_clock_t *clock) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 595 | { |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 596 | if (clock->p1 < limit->p1.min || limit->p1.max < clock->p1) |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 597 | INTELPllInvalid("p1 out of range\n"); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 598 | if (clock->p < limit->p.min || limit->p.max < clock->p) |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 599 | INTELPllInvalid("p out of range\n"); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 600 | if (clock->m2 < limit->m2.min || limit->m2.max < clock->m2) |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 601 | INTELPllInvalid("m2 out of range\n"); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 602 | if (clock->m1 < limit->m1.min || limit->m1.max < clock->m1) |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 603 | INTELPllInvalid("m1 out of range\n"); |
Adam Jackson | f2b115e | 2009-12-03 17:14:42 -0500 | [diff] [blame] | 604 | if (clock->m1 <= clock->m2 && !IS_PINEVIEW(dev)) |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 605 | INTELPllInvalid("m1 <= m2\n"); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 606 | if (clock->m < limit->m.min || limit->m.max < clock->m) |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 607 | INTELPllInvalid("m out of range\n"); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 608 | if (clock->n < limit->n.min || limit->n.max < clock->n) |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 609 | INTELPllInvalid("n out of range\n"); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 610 | if (clock->vco < limit->vco.min || limit->vco.max < clock->vco) |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 611 | INTELPllInvalid("vco out of range\n"); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 612 | /* XXX: We may need to be checking "Dot clock" depending on the multiplier, |
| 613 | * connector, etc., rather than just a single range. |
| 614 | */ |
| 615 | if (clock->dot < limit->dot.min || limit->dot.max < clock->dot) |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 616 | INTELPllInvalid("dot out of range\n"); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 617 | |
| 618 | return true; |
| 619 | } |
| 620 | |
Ma Ling | d490609 | 2009-03-18 20:13:27 +0800 | [diff] [blame] | 621 | static bool |
| 622 | 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] | 623 | int target, int refclk, intel_clock_t *match_clock, |
| 624 | intel_clock_t *best_clock) |
Ma Ling | d490609 | 2009-03-18 20:13:27 +0800 | [diff] [blame] | 625 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 626 | { |
| 627 | struct drm_device *dev = crtc->dev; |
| 628 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 629 | intel_clock_t clock; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 630 | int err = target; |
| 631 | |
Bruno Prémont | bc5e571 | 2009-08-08 13:01:17 +0200 | [diff] [blame] | 632 | if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS) && |
Florian Mickler | 832cc28 | 2009-07-13 18:40:32 +0800 | [diff] [blame] | 633 | (I915_READ(LVDS)) != 0) { |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 634 | /* |
| 635 | * For LVDS, if the panel is on, just rely on its current |
| 636 | * settings for dual-channel. We haven't figured out how to |
| 637 | * reliably set up different single/dual channel state, if we |
| 638 | * even can. |
| 639 | */ |
Takashi Iwai | b035438 | 2012-03-20 13:07:05 +0100 | [diff] [blame] | 640 | if (is_dual_link_lvds(dev_priv, LVDS)) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 641 | clock.p2 = limit->p2.p2_fast; |
| 642 | else |
| 643 | clock.p2 = limit->p2.p2_slow; |
| 644 | } else { |
| 645 | if (target < limit->p2.dot_limit) |
| 646 | clock.p2 = limit->p2.p2_slow; |
| 647 | else |
| 648 | clock.p2 = limit->p2.p2_fast; |
| 649 | } |
| 650 | |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 651 | memset(best_clock, 0, sizeof(*best_clock)); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 652 | |
Zhao Yakui | 4215866 | 2009-11-20 11:24:18 +0800 | [diff] [blame] | 653 | for (clock.m1 = limit->m1.min; clock.m1 <= limit->m1.max; |
| 654 | clock.m1++) { |
| 655 | for (clock.m2 = limit->m2.min; |
| 656 | clock.m2 <= limit->m2.max; clock.m2++) { |
Adam Jackson | f2b115e | 2009-12-03 17:14:42 -0500 | [diff] [blame] | 657 | /* m1 is always 0 in Pineview */ |
| 658 | if (clock.m2 >= clock.m1 && !IS_PINEVIEW(dev)) |
Zhao Yakui | 4215866 | 2009-11-20 11:24:18 +0800 | [diff] [blame] | 659 | break; |
| 660 | for (clock.n = limit->n.min; |
| 661 | clock.n <= limit->n.max; clock.n++) { |
| 662 | for (clock.p1 = limit->p1.min; |
| 663 | clock.p1 <= limit->p1.max; clock.p1++) { |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 664 | int this_err; |
| 665 | |
Shaohua Li | 2177832 | 2009-02-23 15:19:16 +0800 | [diff] [blame] | 666 | intel_clock(dev, refclk, &clock); |
Chris Wilson | 1b894b5 | 2010-12-14 20:04:54 +0000 | [diff] [blame] | 667 | if (!intel_PLL_is_valid(dev, limit, |
| 668 | &clock)) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 669 | continue; |
Sean Paul | cec2f35 | 2012-01-10 15:09:36 -0800 | [diff] [blame] | 670 | if (match_clock && |
| 671 | clock.p != match_clock->p) |
| 672 | continue; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 673 | |
| 674 | this_err = abs(clock.dot - target); |
| 675 | if (this_err < err) { |
| 676 | *best_clock = clock; |
| 677 | err = this_err; |
| 678 | } |
| 679 | } |
| 680 | } |
| 681 | } |
| 682 | } |
| 683 | |
| 684 | return (err != target); |
| 685 | } |
| 686 | |
Ma Ling | d490609 | 2009-03-18 20:13:27 +0800 | [diff] [blame] | 687 | static bool |
| 688 | 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] | 689 | int target, int refclk, intel_clock_t *match_clock, |
| 690 | intel_clock_t *best_clock) |
Ma Ling | d490609 | 2009-03-18 20:13:27 +0800 | [diff] [blame] | 691 | { |
| 692 | struct drm_device *dev = crtc->dev; |
| 693 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 694 | intel_clock_t clock; |
| 695 | int max_n; |
| 696 | bool found; |
Adam Jackson | 6ba770d | 2010-07-02 16:43:30 -0400 | [diff] [blame] | 697 | /* approximately equals target * 0.00585 */ |
| 698 | int err_most = (target >> 8) + (target >> 9); |
Ma Ling | d490609 | 2009-03-18 20:13:27 +0800 | [diff] [blame] | 699 | found = false; |
| 700 | |
| 701 | if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) { |
Zhao Yakui | 4547668 | 2009-12-31 16:06:04 +0800 | [diff] [blame] | 702 | int lvds_reg; |
| 703 | |
Eric Anholt | c619eed | 2010-01-28 16:45:52 -0800 | [diff] [blame] | 704 | if (HAS_PCH_SPLIT(dev)) |
Zhao Yakui | 4547668 | 2009-12-31 16:06:04 +0800 | [diff] [blame] | 705 | lvds_reg = PCH_LVDS; |
| 706 | else |
| 707 | lvds_reg = LVDS; |
| 708 | if ((I915_READ(lvds_reg) & LVDS_CLKB_POWER_MASK) == |
Ma Ling | d490609 | 2009-03-18 20:13:27 +0800 | [diff] [blame] | 709 | LVDS_CLKB_POWER_UP) |
| 710 | clock.p2 = limit->p2.p2_fast; |
| 711 | else |
| 712 | clock.p2 = limit->p2.p2_slow; |
| 713 | } else { |
| 714 | if (target < limit->p2.dot_limit) |
| 715 | clock.p2 = limit->p2.p2_slow; |
| 716 | else |
| 717 | clock.p2 = limit->p2.p2_fast; |
| 718 | } |
| 719 | |
| 720 | memset(best_clock, 0, sizeof(*best_clock)); |
| 721 | max_n = limit->n.max; |
Gilles Espinasse | f77f13e | 2010-03-29 15:41:47 +0200 | [diff] [blame] | 722 | /* based on hardware requirement, prefer smaller n to precision */ |
Ma Ling | d490609 | 2009-03-18 20:13:27 +0800 | [diff] [blame] | 723 | for (clock.n = limit->n.min; clock.n <= max_n; clock.n++) { |
Gilles Espinasse | f77f13e | 2010-03-29 15:41:47 +0200 | [diff] [blame] | 724 | /* based on hardware requirement, prefere larger m1,m2 */ |
Ma Ling | d490609 | 2009-03-18 20:13:27 +0800 | [diff] [blame] | 725 | for (clock.m1 = limit->m1.max; |
| 726 | clock.m1 >= limit->m1.min; clock.m1--) { |
| 727 | for (clock.m2 = limit->m2.max; |
| 728 | clock.m2 >= limit->m2.min; clock.m2--) { |
| 729 | for (clock.p1 = limit->p1.max; |
| 730 | clock.p1 >= limit->p1.min; clock.p1--) { |
| 731 | int this_err; |
| 732 | |
Shaohua Li | 2177832 | 2009-02-23 15:19:16 +0800 | [diff] [blame] | 733 | intel_clock(dev, refclk, &clock); |
Chris Wilson | 1b894b5 | 2010-12-14 20:04:54 +0000 | [diff] [blame] | 734 | if (!intel_PLL_is_valid(dev, limit, |
| 735 | &clock)) |
Ma Ling | d490609 | 2009-03-18 20:13:27 +0800 | [diff] [blame] | 736 | continue; |
Sean Paul | cec2f35 | 2012-01-10 15:09:36 -0800 | [diff] [blame] | 737 | if (match_clock && |
| 738 | clock.p != match_clock->p) |
| 739 | continue; |
Chris Wilson | 1b894b5 | 2010-12-14 20:04:54 +0000 | [diff] [blame] | 740 | |
| 741 | this_err = abs(clock.dot - target); |
Ma Ling | d490609 | 2009-03-18 20:13:27 +0800 | [diff] [blame] | 742 | if (this_err < err_most) { |
| 743 | *best_clock = clock; |
| 744 | err_most = this_err; |
| 745 | max_n = clock.n; |
| 746 | found = true; |
| 747 | } |
| 748 | } |
| 749 | } |
| 750 | } |
| 751 | } |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 752 | return found; |
| 753 | } |
Ma Ling | d490609 | 2009-03-18 20:13:27 +0800 | [diff] [blame] | 754 | |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 755 | static bool |
Adam Jackson | f2b115e | 2009-12-03 17:14:42 -0500 | [diff] [blame] | 756 | intel_find_pll_ironlake_dp(const intel_limit_t *limit, struct drm_crtc *crtc, |
Sean Paul | cec2f35 | 2012-01-10 15:09:36 -0800 | [diff] [blame] | 757 | int target, int refclk, intel_clock_t *match_clock, |
| 758 | intel_clock_t *best_clock) |
Zhenyu Wang | 5eb08b6 | 2009-07-24 01:00:31 +0800 | [diff] [blame] | 759 | { |
| 760 | struct drm_device *dev = crtc->dev; |
| 761 | intel_clock_t clock; |
Zhao Yakui | 4547668 | 2009-12-31 16:06:04 +0800 | [diff] [blame] | 762 | |
Zhenyu Wang | 5eb08b6 | 2009-07-24 01:00:31 +0800 | [diff] [blame] | 763 | if (target < 200000) { |
| 764 | clock.n = 1; |
| 765 | clock.p1 = 2; |
| 766 | clock.p2 = 10; |
| 767 | clock.m1 = 12; |
| 768 | clock.m2 = 9; |
| 769 | } else { |
| 770 | clock.n = 2; |
| 771 | clock.p1 = 1; |
| 772 | clock.p2 = 10; |
| 773 | clock.m1 = 14; |
| 774 | clock.m2 = 8; |
| 775 | } |
| 776 | intel_clock(dev, refclk, &clock); |
| 777 | memcpy(best_clock, &clock, sizeof(intel_clock_t)); |
| 778 | return true; |
| 779 | } |
| 780 | |
Keith Packard | a4fc5ed | 2009-04-07 16:16:42 -0700 | [diff] [blame] | 781 | /* DisplayPort has only two frequencies, 162MHz and 270MHz */ |
| 782 | static bool |
| 783 | intel_find_pll_g4x_dp(const intel_limit_t *limit, struct drm_crtc *crtc, |
Sean Paul | cec2f35 | 2012-01-10 15:09:36 -0800 | [diff] [blame] | 784 | int target, int refclk, intel_clock_t *match_clock, |
| 785 | intel_clock_t *best_clock) |
Keith Packard | a4fc5ed | 2009-04-07 16:16:42 -0700 | [diff] [blame] | 786 | { |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 787 | intel_clock_t clock; |
| 788 | if (target < 200000) { |
| 789 | clock.p1 = 2; |
| 790 | clock.p2 = 10; |
| 791 | clock.n = 2; |
| 792 | clock.m1 = 23; |
| 793 | clock.m2 = 8; |
| 794 | } else { |
| 795 | clock.p1 = 1; |
| 796 | clock.p2 = 10; |
| 797 | clock.n = 1; |
| 798 | clock.m1 = 14; |
| 799 | clock.m2 = 2; |
| 800 | } |
| 801 | clock.m = 5 * (clock.m1 + 2) + (clock.m2 + 2); |
| 802 | clock.p = (clock.p1 * clock.p2); |
| 803 | clock.dot = 96000 * clock.m / (clock.n + 2) / clock.p; |
| 804 | clock.vco = 0; |
| 805 | memcpy(best_clock, &clock, sizeof(intel_clock_t)); |
| 806 | return true; |
Keith Packard | a4fc5ed | 2009-04-07 16:16:42 -0700 | [diff] [blame] | 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 | |
Chris Wilson | 300387c | 2010-09-05 20:25:43 +0100 | [diff] [blame] | 822 | /* Clear existing vblank status. Note this will clear any other |
| 823 | * sticky status fields as well. |
| 824 | * |
| 825 | * This races with i915_driver_irq_handler() with the result |
| 826 | * that either function could miss a vblank event. Here it is not |
| 827 | * fatal, as we will either wait upon the next vblank interrupt or |
| 828 | * timeout. Generally speaking intel_wait_for_vblank() is only |
| 829 | * called during modeset at which time the GPU should be idle and |
| 830 | * should *not* be performing page flips and thus not waiting on |
| 831 | * vblanks... |
| 832 | * Currently, the result of us stealing a vblank from the irq |
| 833 | * handler is that a single frame will be skipped during swapbuffers. |
| 834 | */ |
| 835 | I915_WRITE(pipestat_reg, |
| 836 | I915_READ(pipestat_reg) | PIPE_VBLANK_INTERRUPT_STATUS); |
| 837 | |
Jesse Barnes | 9d0498a | 2010-08-18 13:20:54 -0700 | [diff] [blame] | 838 | /* Wait for vblank interrupt bit to set */ |
Chris Wilson | 481b6af | 2010-08-23 17:43:35 +0100 | [diff] [blame] | 839 | if (wait_for(I915_READ(pipestat_reg) & |
| 840 | PIPE_VBLANK_INTERRUPT_STATUS, |
| 841 | 50)) |
Jesse Barnes | 9d0498a | 2010-08-18 13:20:54 -0700 | [diff] [blame] | 842 | DRM_DEBUG_KMS("vblank wait timed out\n"); |
| 843 | } |
| 844 | |
Keith Packard | ab7ad7f | 2010-10-03 00:33:06 -0700 | [diff] [blame] | 845 | /* |
| 846 | * intel_wait_for_pipe_off - wait for pipe to turn off |
Jesse Barnes | 9d0498a | 2010-08-18 13:20:54 -0700 | [diff] [blame] | 847 | * @dev: drm device |
| 848 | * @pipe: pipe to wait for |
| 849 | * |
| 850 | * After disabling a pipe, we can't wait for vblank in the usual way, |
| 851 | * spinning on the vblank interrupt status bit, since we won't actually |
| 852 | * see an interrupt when the pipe is disabled. |
| 853 | * |
Keith Packard | ab7ad7f | 2010-10-03 00:33:06 -0700 | [diff] [blame] | 854 | * On Gen4 and above: |
| 855 | * wait for the pipe register state bit to turn off |
| 856 | * |
| 857 | * Otherwise: |
| 858 | * wait for the display line value to settle (it usually |
| 859 | * ends up stopping at the start of the next frame). |
Chris Wilson | 58e10eb | 2010-10-03 10:56:11 +0100 | [diff] [blame] | 860 | * |
Jesse Barnes | 9d0498a | 2010-08-18 13:20:54 -0700 | [diff] [blame] | 861 | */ |
Chris Wilson | 58e10eb | 2010-10-03 10:56:11 +0100 | [diff] [blame] | 862 | void intel_wait_for_pipe_off(struct drm_device *dev, int pipe) |
Jesse Barnes | 9d0498a | 2010-08-18 13:20:54 -0700 | [diff] [blame] | 863 | { |
| 864 | struct drm_i915_private *dev_priv = dev->dev_private; |
Jesse Barnes | 9d0498a | 2010-08-18 13:20:54 -0700 | [diff] [blame] | 865 | |
Keith Packard | ab7ad7f | 2010-10-03 00:33:06 -0700 | [diff] [blame] | 866 | if (INTEL_INFO(dev)->gen >= 4) { |
Chris Wilson | 58e10eb | 2010-10-03 10:56:11 +0100 | [diff] [blame] | 867 | int reg = PIPECONF(pipe); |
Jesse Barnes | 9d0498a | 2010-08-18 13:20:54 -0700 | [diff] [blame] | 868 | |
Keith Packard | ab7ad7f | 2010-10-03 00:33:06 -0700 | [diff] [blame] | 869 | /* Wait for the Pipe State to go off */ |
Chris Wilson | 58e10eb | 2010-10-03 10:56:11 +0100 | [diff] [blame] | 870 | if (wait_for((I915_READ(reg) & I965_PIPECONF_ACTIVE) == 0, |
| 871 | 100)) |
Keith Packard | ab7ad7f | 2010-10-03 00:33:06 -0700 | [diff] [blame] | 872 | DRM_DEBUG_KMS("pipe_off wait timed out\n"); |
| 873 | } else { |
| 874 | u32 last_line; |
Chris Wilson | 58e10eb | 2010-10-03 10:56:11 +0100 | [diff] [blame] | 875 | int reg = PIPEDSL(pipe); |
Keith Packard | ab7ad7f | 2010-10-03 00:33:06 -0700 | [diff] [blame] | 876 | unsigned long timeout = jiffies + msecs_to_jiffies(100); |
| 877 | |
| 878 | /* Wait for the display line to settle */ |
| 879 | do { |
Chris Wilson | 58e10eb | 2010-10-03 10:56:11 +0100 | [diff] [blame] | 880 | last_line = I915_READ(reg) & DSL_LINEMASK; |
Keith Packard | ab7ad7f | 2010-10-03 00:33:06 -0700 | [diff] [blame] | 881 | mdelay(5); |
Chris Wilson | 58e10eb | 2010-10-03 10:56:11 +0100 | [diff] [blame] | 882 | } while (((I915_READ(reg) & DSL_LINEMASK) != last_line) && |
Keith Packard | ab7ad7f | 2010-10-03 00:33:06 -0700 | [diff] [blame] | 883 | time_after(timeout, jiffies)); |
| 884 | if (time_after(jiffies, timeout)) |
| 885 | DRM_DEBUG_KMS("pipe_off wait timed out\n"); |
| 886 | } |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 887 | } |
| 888 | |
Jesse Barnes | b24e717 | 2011-01-04 15:09:30 -0800 | [diff] [blame] | 889 | static const char *state_string(bool enabled) |
| 890 | { |
| 891 | return enabled ? "on" : "off"; |
| 892 | } |
| 893 | |
| 894 | /* Only for pre-ILK configs */ |
| 895 | static void assert_pll(struct drm_i915_private *dev_priv, |
| 896 | enum pipe pipe, bool state) |
| 897 | { |
| 898 | int reg; |
| 899 | u32 val; |
| 900 | bool cur_state; |
| 901 | |
| 902 | reg = DPLL(pipe); |
| 903 | val = I915_READ(reg); |
| 904 | cur_state = !!(val & DPLL_VCO_ENABLE); |
| 905 | WARN(cur_state != state, |
| 906 | "PLL state assertion failure (expected %s, current %s)\n", |
| 907 | state_string(state), state_string(cur_state)); |
| 908 | } |
| 909 | #define assert_pll_enabled(d, p) assert_pll(d, p, true) |
| 910 | #define assert_pll_disabled(d, p) assert_pll(d, p, false) |
| 911 | |
Jesse Barnes | 040484a | 2011-01-03 12:14:26 -0800 | [diff] [blame] | 912 | /* For ILK+ */ |
| 913 | static void assert_pch_pll(struct drm_i915_private *dev_priv, |
| 914 | enum pipe pipe, bool state) |
| 915 | { |
| 916 | int reg; |
| 917 | u32 val; |
| 918 | bool cur_state; |
| 919 | |
Jesse Barnes | d3ccbe8 | 2011-10-12 09:27:42 -0700 | [diff] [blame] | 920 | if (HAS_PCH_CPT(dev_priv->dev)) { |
| 921 | u32 pch_dpll; |
| 922 | |
| 923 | pch_dpll = I915_READ(PCH_DPLL_SEL); |
| 924 | |
| 925 | /* Make sure the selected PLL is enabled to the transcoder */ |
| 926 | WARN(!((pch_dpll >> (4 * pipe)) & 8), |
| 927 | "transcoder %d PLL not enabled\n", pipe); |
| 928 | |
| 929 | /* Convert the transcoder pipe number to a pll pipe number */ |
| 930 | pipe = (pch_dpll >> (4 * pipe)) & 1; |
| 931 | } |
| 932 | |
Jesse Barnes | 040484a | 2011-01-03 12:14:26 -0800 | [diff] [blame] | 933 | reg = PCH_DPLL(pipe); |
| 934 | val = I915_READ(reg); |
| 935 | cur_state = !!(val & DPLL_VCO_ENABLE); |
| 936 | WARN(cur_state != state, |
| 937 | "PCH PLL state assertion failure (expected %s, current %s)\n", |
| 938 | state_string(state), state_string(cur_state)); |
| 939 | } |
| 940 | #define assert_pch_pll_enabled(d, p) assert_pch_pll(d, p, true) |
| 941 | #define assert_pch_pll_disabled(d, p) assert_pch_pll(d, p, false) |
| 942 | |
| 943 | static void assert_fdi_tx(struct drm_i915_private *dev_priv, |
| 944 | enum pipe pipe, bool state) |
| 945 | { |
| 946 | int reg; |
| 947 | u32 val; |
| 948 | bool cur_state; |
| 949 | |
| 950 | reg = FDI_TX_CTL(pipe); |
| 951 | val = I915_READ(reg); |
| 952 | cur_state = !!(val & FDI_TX_ENABLE); |
| 953 | WARN(cur_state != state, |
| 954 | "FDI TX state assertion failure (expected %s, current %s)\n", |
| 955 | state_string(state), state_string(cur_state)); |
| 956 | } |
| 957 | #define assert_fdi_tx_enabled(d, p) assert_fdi_tx(d, p, true) |
| 958 | #define assert_fdi_tx_disabled(d, p) assert_fdi_tx(d, p, false) |
| 959 | |
| 960 | static void assert_fdi_rx(struct drm_i915_private *dev_priv, |
| 961 | enum pipe pipe, bool state) |
| 962 | { |
| 963 | int reg; |
| 964 | u32 val; |
| 965 | bool cur_state; |
| 966 | |
| 967 | reg = FDI_RX_CTL(pipe); |
| 968 | val = I915_READ(reg); |
| 969 | cur_state = !!(val & FDI_RX_ENABLE); |
| 970 | WARN(cur_state != state, |
| 971 | "FDI RX state assertion failure (expected %s, current %s)\n", |
| 972 | state_string(state), state_string(cur_state)); |
| 973 | } |
| 974 | #define assert_fdi_rx_enabled(d, p) assert_fdi_rx(d, p, true) |
| 975 | #define assert_fdi_rx_disabled(d, p) assert_fdi_rx(d, p, false) |
| 976 | |
| 977 | static void assert_fdi_tx_pll_enabled(struct drm_i915_private *dev_priv, |
| 978 | enum pipe pipe) |
| 979 | { |
| 980 | int reg; |
| 981 | u32 val; |
| 982 | |
| 983 | /* ILK FDI PLL is always enabled */ |
| 984 | if (dev_priv->info->gen == 5) |
| 985 | return; |
| 986 | |
| 987 | reg = FDI_TX_CTL(pipe); |
| 988 | val = I915_READ(reg); |
| 989 | WARN(!(val & FDI_TX_PLL_ENABLE), "FDI TX PLL assertion failure, should be active but is disabled\n"); |
| 990 | } |
| 991 | |
| 992 | static void assert_fdi_rx_pll_enabled(struct drm_i915_private *dev_priv, |
| 993 | enum pipe pipe) |
| 994 | { |
| 995 | int reg; |
| 996 | u32 val; |
| 997 | |
| 998 | reg = FDI_RX_CTL(pipe); |
| 999 | val = I915_READ(reg); |
| 1000 | WARN(!(val & FDI_RX_PLL_ENABLE), "FDI RX PLL assertion failure, should be active but is disabled\n"); |
| 1001 | } |
| 1002 | |
Jesse Barnes | ea0760c | 2011-01-04 15:09:32 -0800 | [diff] [blame] | 1003 | static void assert_panel_unlocked(struct drm_i915_private *dev_priv, |
| 1004 | enum pipe pipe) |
| 1005 | { |
| 1006 | int pp_reg, lvds_reg; |
| 1007 | u32 val; |
| 1008 | enum pipe panel_pipe = PIPE_A; |
Thomas Jarosch | 0de3b48 | 2011-08-25 15:37:45 +0200 | [diff] [blame] | 1009 | bool locked = true; |
Jesse Barnes | ea0760c | 2011-01-04 15:09:32 -0800 | [diff] [blame] | 1010 | |
| 1011 | if (HAS_PCH_SPLIT(dev_priv->dev)) { |
| 1012 | pp_reg = PCH_PP_CONTROL; |
| 1013 | lvds_reg = PCH_LVDS; |
| 1014 | } else { |
| 1015 | pp_reg = PP_CONTROL; |
| 1016 | lvds_reg = LVDS; |
| 1017 | } |
| 1018 | |
| 1019 | val = I915_READ(pp_reg); |
| 1020 | if (!(val & PANEL_POWER_ON) || |
| 1021 | ((val & PANEL_UNLOCK_REGS) == PANEL_UNLOCK_REGS)) |
| 1022 | locked = false; |
| 1023 | |
| 1024 | if (I915_READ(lvds_reg) & LVDS_PIPEB_SELECT) |
| 1025 | panel_pipe = PIPE_B; |
| 1026 | |
| 1027 | WARN(panel_pipe == pipe && locked, |
| 1028 | "panel assertion failure, pipe %c regs locked\n", |
Jesse Barnes | 9db4a9c | 2011-02-07 12:26:52 -0800 | [diff] [blame] | 1029 | pipe_name(pipe)); |
Jesse Barnes | ea0760c | 2011-01-04 15:09:32 -0800 | [diff] [blame] | 1030 | } |
| 1031 | |
Jesse Barnes | b840d907f | 2011-12-13 13:19:38 -0800 | [diff] [blame] | 1032 | void assert_pipe(struct drm_i915_private *dev_priv, |
| 1033 | enum pipe pipe, bool state) |
Jesse Barnes | b24e717 | 2011-01-04 15:09:30 -0800 | [diff] [blame] | 1034 | { |
| 1035 | int reg; |
| 1036 | u32 val; |
Jesse Barnes | 63d7bbe | 2011-01-04 15:09:33 -0800 | [diff] [blame] | 1037 | bool cur_state; |
Jesse Barnes | b24e717 | 2011-01-04 15:09:30 -0800 | [diff] [blame] | 1038 | |
Daniel Vetter | 8e63678 | 2012-01-22 01:36:48 +0100 | [diff] [blame] | 1039 | /* if we need the pipe A quirk it must be always on */ |
| 1040 | if (pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) |
| 1041 | state = true; |
| 1042 | |
Jesse Barnes | b24e717 | 2011-01-04 15:09:30 -0800 | [diff] [blame] | 1043 | reg = PIPECONF(pipe); |
| 1044 | val = I915_READ(reg); |
Jesse Barnes | 63d7bbe | 2011-01-04 15:09:33 -0800 | [diff] [blame] | 1045 | cur_state = !!(val & PIPECONF_ENABLE); |
| 1046 | WARN(cur_state != state, |
| 1047 | "pipe %c assertion failure (expected %s, current %s)\n", |
Jesse Barnes | 9db4a9c | 2011-02-07 12:26:52 -0800 | [diff] [blame] | 1048 | pipe_name(pipe), state_string(state), state_string(cur_state)); |
Jesse Barnes | b24e717 | 2011-01-04 15:09:30 -0800 | [diff] [blame] | 1049 | } |
| 1050 | |
Chris Wilson | 931872f | 2012-01-16 23:01:13 +0000 | [diff] [blame] | 1051 | static void assert_plane(struct drm_i915_private *dev_priv, |
| 1052 | enum plane plane, bool state) |
Jesse Barnes | b24e717 | 2011-01-04 15:09:30 -0800 | [diff] [blame] | 1053 | { |
| 1054 | int reg; |
| 1055 | u32 val; |
Chris Wilson | 931872f | 2012-01-16 23:01:13 +0000 | [diff] [blame] | 1056 | bool cur_state; |
Jesse Barnes | b24e717 | 2011-01-04 15:09:30 -0800 | [diff] [blame] | 1057 | |
| 1058 | reg = DSPCNTR(plane); |
| 1059 | val = I915_READ(reg); |
Chris Wilson | 931872f | 2012-01-16 23:01:13 +0000 | [diff] [blame] | 1060 | cur_state = !!(val & DISPLAY_PLANE_ENABLE); |
| 1061 | WARN(cur_state != state, |
| 1062 | "plane %c assertion failure (expected %s, current %s)\n", |
| 1063 | plane_name(plane), state_string(state), state_string(cur_state)); |
Jesse Barnes | b24e717 | 2011-01-04 15:09:30 -0800 | [diff] [blame] | 1064 | } |
| 1065 | |
Chris Wilson | 931872f | 2012-01-16 23:01:13 +0000 | [diff] [blame] | 1066 | #define assert_plane_enabled(d, p) assert_plane(d, p, true) |
| 1067 | #define assert_plane_disabled(d, p) assert_plane(d, p, false) |
| 1068 | |
Jesse Barnes | b24e717 | 2011-01-04 15:09:30 -0800 | [diff] [blame] | 1069 | static void assert_planes_disabled(struct drm_i915_private *dev_priv, |
| 1070 | enum pipe pipe) |
| 1071 | { |
| 1072 | int reg, i; |
| 1073 | u32 val; |
| 1074 | int cur_pipe; |
| 1075 | |
Jesse Barnes | 19ec135 | 2011-02-02 12:28:02 -0800 | [diff] [blame] | 1076 | /* Planes are fixed to pipes on ILK+ */ |
Adam Jackson | 28c05794 | 2011-10-07 14:38:42 -0400 | [diff] [blame] | 1077 | if (HAS_PCH_SPLIT(dev_priv->dev)) { |
| 1078 | reg = DSPCNTR(pipe); |
| 1079 | val = I915_READ(reg); |
| 1080 | WARN((val & DISPLAY_PLANE_ENABLE), |
| 1081 | "plane %c assertion failure, should be disabled but not\n", |
| 1082 | plane_name(pipe)); |
Jesse Barnes | 19ec135 | 2011-02-02 12:28:02 -0800 | [diff] [blame] | 1083 | return; |
Adam Jackson | 28c05794 | 2011-10-07 14:38:42 -0400 | [diff] [blame] | 1084 | } |
Jesse Barnes | 19ec135 | 2011-02-02 12:28:02 -0800 | [diff] [blame] | 1085 | |
Jesse Barnes | b24e717 | 2011-01-04 15:09:30 -0800 | [diff] [blame] | 1086 | /* Need to check both planes against the pipe */ |
| 1087 | for (i = 0; i < 2; i++) { |
| 1088 | reg = DSPCNTR(i); |
| 1089 | val = I915_READ(reg); |
| 1090 | cur_pipe = (val & DISPPLANE_SEL_PIPE_MASK) >> |
| 1091 | DISPPLANE_SEL_PIPE_SHIFT; |
| 1092 | WARN((val & DISPLAY_PLANE_ENABLE) && pipe == cur_pipe, |
Jesse Barnes | 9db4a9c | 2011-02-07 12:26:52 -0800 | [diff] [blame] | 1093 | "plane %c assertion failure, should be off on pipe %c but is still active\n", |
| 1094 | plane_name(i), pipe_name(pipe)); |
Jesse Barnes | b24e717 | 2011-01-04 15:09:30 -0800 | [diff] [blame] | 1095 | } |
| 1096 | } |
| 1097 | |
Jesse Barnes | 92f2584 | 2011-01-04 15:09:34 -0800 | [diff] [blame] | 1098 | static void assert_pch_refclk_enabled(struct drm_i915_private *dev_priv) |
| 1099 | { |
| 1100 | u32 val; |
| 1101 | bool enabled; |
| 1102 | |
| 1103 | val = I915_READ(PCH_DREF_CONTROL); |
| 1104 | enabled = !!(val & (DREF_SSC_SOURCE_MASK | DREF_NONSPREAD_SOURCE_MASK | |
| 1105 | DREF_SUPERSPREAD_SOURCE_MASK)); |
| 1106 | WARN(!enabled, "PCH refclk assertion failure, should be active but is disabled\n"); |
| 1107 | } |
| 1108 | |
| 1109 | static void assert_transcoder_disabled(struct drm_i915_private *dev_priv, |
| 1110 | enum pipe pipe) |
| 1111 | { |
| 1112 | int reg; |
| 1113 | u32 val; |
| 1114 | bool enabled; |
| 1115 | |
| 1116 | reg = TRANSCONF(pipe); |
| 1117 | val = I915_READ(reg); |
| 1118 | enabled = !!(val & TRANS_ENABLE); |
Jesse Barnes | 9db4a9c | 2011-02-07 12:26:52 -0800 | [diff] [blame] | 1119 | WARN(enabled, |
| 1120 | "transcoder assertion failed, should be off on pipe %c but is still active\n", |
| 1121 | pipe_name(pipe)); |
Jesse Barnes | 92f2584 | 2011-01-04 15:09:34 -0800 | [diff] [blame] | 1122 | } |
| 1123 | |
Keith Packard | 4e63438 | 2011-08-06 10:39:45 -0700 | [diff] [blame] | 1124 | static bool dp_pipe_enabled(struct drm_i915_private *dev_priv, |
| 1125 | enum pipe pipe, u32 port_sel, u32 val) |
Keith Packard | f0575e9 | 2011-07-25 22:12:43 -0700 | [diff] [blame] | 1126 | { |
| 1127 | if ((val & DP_PORT_EN) == 0) |
| 1128 | return false; |
| 1129 | |
| 1130 | if (HAS_PCH_CPT(dev_priv->dev)) { |
| 1131 | u32 trans_dp_ctl_reg = TRANS_DP_CTL(pipe); |
| 1132 | u32 trans_dp_ctl = I915_READ(trans_dp_ctl_reg); |
| 1133 | if ((trans_dp_ctl & TRANS_DP_PORT_SEL_MASK) != port_sel) |
| 1134 | return false; |
| 1135 | } else { |
| 1136 | if ((val & DP_PIPE_MASK) != (pipe << 30)) |
| 1137 | return false; |
| 1138 | } |
| 1139 | return true; |
| 1140 | } |
| 1141 | |
Keith Packard | 1519b99 | 2011-08-06 10:35:34 -0700 | [diff] [blame] | 1142 | static bool hdmi_pipe_enabled(struct drm_i915_private *dev_priv, |
| 1143 | enum pipe pipe, u32 val) |
| 1144 | { |
| 1145 | if ((val & PORT_ENABLE) == 0) |
| 1146 | return false; |
| 1147 | |
| 1148 | if (HAS_PCH_CPT(dev_priv->dev)) { |
| 1149 | if ((val & PORT_TRANS_SEL_MASK) != PORT_TRANS_SEL_CPT(pipe)) |
| 1150 | return false; |
| 1151 | } else { |
| 1152 | if ((val & TRANSCODER_MASK) != TRANSCODER(pipe)) |
| 1153 | return false; |
| 1154 | } |
| 1155 | return true; |
| 1156 | } |
| 1157 | |
| 1158 | static bool lvds_pipe_enabled(struct drm_i915_private *dev_priv, |
| 1159 | enum pipe pipe, u32 val) |
| 1160 | { |
| 1161 | if ((val & LVDS_PORT_EN) == 0) |
| 1162 | return false; |
| 1163 | |
| 1164 | if (HAS_PCH_CPT(dev_priv->dev)) { |
| 1165 | if ((val & PORT_TRANS_SEL_MASK) != PORT_TRANS_SEL_CPT(pipe)) |
| 1166 | return false; |
| 1167 | } else { |
| 1168 | if ((val & LVDS_PIPE_MASK) != LVDS_PIPE(pipe)) |
| 1169 | return false; |
| 1170 | } |
| 1171 | return true; |
| 1172 | } |
| 1173 | |
| 1174 | static bool adpa_pipe_enabled(struct drm_i915_private *dev_priv, |
| 1175 | enum pipe pipe, u32 val) |
| 1176 | { |
| 1177 | if ((val & ADPA_DAC_ENABLE) == 0) |
| 1178 | return false; |
| 1179 | if (HAS_PCH_CPT(dev_priv->dev)) { |
| 1180 | if ((val & PORT_TRANS_SEL_MASK) != PORT_TRANS_SEL_CPT(pipe)) |
| 1181 | return false; |
| 1182 | } else { |
| 1183 | if ((val & ADPA_PIPE_SELECT_MASK) != ADPA_PIPE_SELECT(pipe)) |
| 1184 | return false; |
| 1185 | } |
| 1186 | return true; |
| 1187 | } |
| 1188 | |
Jesse Barnes | 291906f | 2011-02-02 12:28:03 -0800 | [diff] [blame] | 1189 | static void assert_pch_dp_disabled(struct drm_i915_private *dev_priv, |
Keith Packard | f0575e9 | 2011-07-25 22:12:43 -0700 | [diff] [blame] | 1190 | enum pipe pipe, int reg, u32 port_sel) |
Jesse Barnes | 291906f | 2011-02-02 12:28:03 -0800 | [diff] [blame] | 1191 | { |
Jesse Barnes | 47a05ec | 2011-02-07 13:46:40 -0800 | [diff] [blame] | 1192 | u32 val = I915_READ(reg); |
Keith Packard | 4e63438 | 2011-08-06 10:39:45 -0700 | [diff] [blame] | 1193 | WARN(dp_pipe_enabled(dev_priv, pipe, port_sel, val), |
Jesse Barnes | 291906f | 2011-02-02 12:28:03 -0800 | [diff] [blame] | 1194 | "PCH DP (0x%08x) enabled on transcoder %c, should be disabled\n", |
Jesse Barnes | 9db4a9c | 2011-02-07 12:26:52 -0800 | [diff] [blame] | 1195 | reg, pipe_name(pipe)); |
Jesse Barnes | 291906f | 2011-02-02 12:28:03 -0800 | [diff] [blame] | 1196 | } |
| 1197 | |
| 1198 | static void assert_pch_hdmi_disabled(struct drm_i915_private *dev_priv, |
| 1199 | enum pipe pipe, int reg) |
| 1200 | { |
Jesse Barnes | 47a05ec | 2011-02-07 13:46:40 -0800 | [diff] [blame] | 1201 | u32 val = I915_READ(reg); |
Keith Packard | 1519b99 | 2011-08-06 10:35:34 -0700 | [diff] [blame] | 1202 | WARN(hdmi_pipe_enabled(dev_priv, val, pipe), |
Adam Jackson | 23c99e7 | 2011-10-07 14:38:43 -0400 | [diff] [blame] | 1203 | "PCH HDMI (0x%08x) enabled on transcoder %c, should be disabled\n", |
Jesse Barnes | 9db4a9c | 2011-02-07 12:26:52 -0800 | [diff] [blame] | 1204 | reg, pipe_name(pipe)); |
Jesse Barnes | 291906f | 2011-02-02 12:28:03 -0800 | [diff] [blame] | 1205 | } |
| 1206 | |
| 1207 | static void assert_pch_ports_disabled(struct drm_i915_private *dev_priv, |
| 1208 | enum pipe pipe) |
| 1209 | { |
| 1210 | int reg; |
| 1211 | u32 val; |
Jesse Barnes | 291906f | 2011-02-02 12:28:03 -0800 | [diff] [blame] | 1212 | |
Keith Packard | f0575e9 | 2011-07-25 22:12:43 -0700 | [diff] [blame] | 1213 | assert_pch_dp_disabled(dev_priv, pipe, PCH_DP_B, TRANS_DP_PORT_SEL_B); |
| 1214 | assert_pch_dp_disabled(dev_priv, pipe, PCH_DP_C, TRANS_DP_PORT_SEL_C); |
| 1215 | 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] | 1216 | |
| 1217 | reg = PCH_ADPA; |
| 1218 | val = I915_READ(reg); |
Keith Packard | 1519b99 | 2011-08-06 10:35:34 -0700 | [diff] [blame] | 1219 | WARN(adpa_pipe_enabled(dev_priv, val, pipe), |
Jesse Barnes | 291906f | 2011-02-02 12:28:03 -0800 | [diff] [blame] | 1220 | "PCH VGA enabled on transcoder %c, should be disabled\n", |
Jesse Barnes | 9db4a9c | 2011-02-07 12:26:52 -0800 | [diff] [blame] | 1221 | pipe_name(pipe)); |
Jesse Barnes | 291906f | 2011-02-02 12:28:03 -0800 | [diff] [blame] | 1222 | |
| 1223 | reg = PCH_LVDS; |
| 1224 | val = I915_READ(reg); |
Keith Packard | 1519b99 | 2011-08-06 10:35:34 -0700 | [diff] [blame] | 1225 | WARN(lvds_pipe_enabled(dev_priv, val, pipe), |
Jesse Barnes | 291906f | 2011-02-02 12:28:03 -0800 | [diff] [blame] | 1226 | "PCH LVDS enabled on transcoder %c, should be disabled\n", |
Jesse Barnes | 9db4a9c | 2011-02-07 12:26:52 -0800 | [diff] [blame] | 1227 | pipe_name(pipe)); |
Jesse Barnes | 291906f | 2011-02-02 12:28:03 -0800 | [diff] [blame] | 1228 | |
| 1229 | assert_pch_hdmi_disabled(dev_priv, pipe, HDMIB); |
| 1230 | assert_pch_hdmi_disabled(dev_priv, pipe, HDMIC); |
| 1231 | assert_pch_hdmi_disabled(dev_priv, pipe, HDMID); |
| 1232 | } |
| 1233 | |
Jesse Barnes | b24e717 | 2011-01-04 15:09:30 -0800 | [diff] [blame] | 1234 | /** |
Jesse Barnes | 63d7bbe | 2011-01-04 15:09:33 -0800 | [diff] [blame] | 1235 | * intel_enable_pll - enable a PLL |
| 1236 | * @dev_priv: i915 private structure |
| 1237 | * @pipe: pipe PLL to enable |
| 1238 | * |
| 1239 | * Enable @pipe's PLL so we can start pumping pixels from a plane. Check to |
| 1240 | * make sure the PLL reg is writable first though, since the panel write |
| 1241 | * protect mechanism may be enabled. |
| 1242 | * |
| 1243 | * Note! This is for pre-ILK only. |
| 1244 | */ |
| 1245 | static void intel_enable_pll(struct drm_i915_private *dev_priv, enum pipe pipe) |
| 1246 | { |
| 1247 | int reg; |
| 1248 | u32 val; |
| 1249 | |
| 1250 | /* No really, not for ILK+ */ |
| 1251 | BUG_ON(dev_priv->info->gen >= 5); |
| 1252 | |
| 1253 | /* PLL is protected by panel, make sure we can write it */ |
| 1254 | if (IS_MOBILE(dev_priv->dev) && !IS_I830(dev_priv->dev)) |
| 1255 | assert_panel_unlocked(dev_priv, pipe); |
| 1256 | |
| 1257 | reg = DPLL(pipe); |
| 1258 | val = I915_READ(reg); |
| 1259 | val |= DPLL_VCO_ENABLE; |
| 1260 | |
| 1261 | /* We do this three times for luck */ |
| 1262 | I915_WRITE(reg, val); |
| 1263 | POSTING_READ(reg); |
| 1264 | udelay(150); /* wait for warmup */ |
| 1265 | I915_WRITE(reg, val); |
| 1266 | POSTING_READ(reg); |
| 1267 | udelay(150); /* wait for warmup */ |
| 1268 | I915_WRITE(reg, val); |
| 1269 | POSTING_READ(reg); |
| 1270 | udelay(150); /* wait for warmup */ |
| 1271 | } |
| 1272 | |
| 1273 | /** |
| 1274 | * intel_disable_pll - disable a PLL |
| 1275 | * @dev_priv: i915 private structure |
| 1276 | * @pipe: pipe PLL to disable |
| 1277 | * |
| 1278 | * Disable the PLL for @pipe, making sure the pipe is off first. |
| 1279 | * |
| 1280 | * Note! This is for pre-ILK only. |
| 1281 | */ |
| 1282 | static void intel_disable_pll(struct drm_i915_private *dev_priv, enum pipe pipe) |
| 1283 | { |
| 1284 | int reg; |
| 1285 | u32 val; |
| 1286 | |
| 1287 | /* Don't disable pipe A or pipe A PLLs if needed */ |
| 1288 | if (pipe == PIPE_A && (dev_priv->quirks & QUIRK_PIPEA_FORCE)) |
| 1289 | return; |
| 1290 | |
| 1291 | /* Make sure the pipe isn't still relying on us */ |
| 1292 | assert_pipe_disabled(dev_priv, pipe); |
| 1293 | |
| 1294 | reg = DPLL(pipe); |
| 1295 | val = I915_READ(reg); |
| 1296 | val &= ~DPLL_VCO_ENABLE; |
| 1297 | I915_WRITE(reg, val); |
| 1298 | POSTING_READ(reg); |
| 1299 | } |
| 1300 | |
| 1301 | /** |
Jesse Barnes | 92f2584 | 2011-01-04 15:09:34 -0800 | [diff] [blame] | 1302 | * intel_enable_pch_pll - enable PCH PLL |
| 1303 | * @dev_priv: i915 private structure |
| 1304 | * @pipe: pipe PLL to enable |
| 1305 | * |
| 1306 | * The PCH PLL needs to be enabled before the PCH transcoder, since it |
| 1307 | * drives the transcoder clock. |
| 1308 | */ |
| 1309 | static void intel_enable_pch_pll(struct drm_i915_private *dev_priv, |
| 1310 | enum pipe pipe) |
| 1311 | { |
| 1312 | int reg; |
| 1313 | u32 val; |
| 1314 | |
Jesse Barnes | 4c609cb | 2011-09-02 12:52:11 -0700 | [diff] [blame] | 1315 | if (pipe > 1) |
| 1316 | return; |
| 1317 | |
Jesse Barnes | 92f2584 | 2011-01-04 15:09:34 -0800 | [diff] [blame] | 1318 | /* PCH only available on ILK+ */ |
| 1319 | BUG_ON(dev_priv->info->gen < 5); |
| 1320 | |
| 1321 | /* PCH refclock must be enabled first */ |
| 1322 | assert_pch_refclk_enabled(dev_priv); |
| 1323 | |
| 1324 | reg = PCH_DPLL(pipe); |
| 1325 | val = I915_READ(reg); |
| 1326 | val |= DPLL_VCO_ENABLE; |
| 1327 | I915_WRITE(reg, val); |
| 1328 | POSTING_READ(reg); |
| 1329 | udelay(200); |
| 1330 | } |
| 1331 | |
| 1332 | static void intel_disable_pch_pll(struct drm_i915_private *dev_priv, |
| 1333 | enum pipe pipe) |
| 1334 | { |
| 1335 | int reg; |
Jesse Barnes | 7a41986 | 2011-11-15 10:28:53 -0800 | [diff] [blame] | 1336 | u32 val, pll_mask = TRANSC_DPLL_ENABLE | TRANSC_DPLLB_SEL, |
| 1337 | pll_sel = TRANSC_DPLL_ENABLE; |
Jesse Barnes | 92f2584 | 2011-01-04 15:09:34 -0800 | [diff] [blame] | 1338 | |
Jesse Barnes | 4c609cb | 2011-09-02 12:52:11 -0700 | [diff] [blame] | 1339 | if (pipe > 1) |
| 1340 | return; |
| 1341 | |
Jesse Barnes | 92f2584 | 2011-01-04 15:09:34 -0800 | [diff] [blame] | 1342 | /* PCH only available on ILK+ */ |
| 1343 | BUG_ON(dev_priv->info->gen < 5); |
| 1344 | |
| 1345 | /* Make sure transcoder isn't still depending on us */ |
| 1346 | assert_transcoder_disabled(dev_priv, pipe); |
| 1347 | |
Jesse Barnes | 7a41986 | 2011-11-15 10:28:53 -0800 | [diff] [blame] | 1348 | if (pipe == 0) |
| 1349 | pll_sel |= TRANSC_DPLLA_SEL; |
| 1350 | else if (pipe == 1) |
| 1351 | pll_sel |= TRANSC_DPLLB_SEL; |
| 1352 | |
| 1353 | |
| 1354 | if ((I915_READ(PCH_DPLL_SEL) & pll_mask) == pll_sel) |
| 1355 | return; |
| 1356 | |
Jesse Barnes | 92f2584 | 2011-01-04 15:09:34 -0800 | [diff] [blame] | 1357 | reg = PCH_DPLL(pipe); |
| 1358 | val = I915_READ(reg); |
| 1359 | val &= ~DPLL_VCO_ENABLE; |
| 1360 | I915_WRITE(reg, val); |
| 1361 | POSTING_READ(reg); |
| 1362 | udelay(200); |
| 1363 | } |
| 1364 | |
Jesse Barnes | 040484a | 2011-01-03 12:14:26 -0800 | [diff] [blame] | 1365 | static void intel_enable_transcoder(struct drm_i915_private *dev_priv, |
| 1366 | enum pipe pipe) |
| 1367 | { |
| 1368 | int reg; |
Paulo Zanoni | 5f7f726 | 2012-02-03 17:47:15 -0200 | [diff] [blame] | 1369 | u32 val, pipeconf_val; |
Paulo Zanoni | 7c26e5c | 2012-02-14 17:07:09 -0200 | [diff] [blame] | 1370 | struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe]; |
Jesse Barnes | 040484a | 2011-01-03 12:14:26 -0800 | [diff] [blame] | 1371 | |
| 1372 | /* PCH only available on ILK+ */ |
| 1373 | BUG_ON(dev_priv->info->gen < 5); |
| 1374 | |
| 1375 | /* Make sure PCH DPLL is enabled */ |
| 1376 | assert_pch_pll_enabled(dev_priv, pipe); |
| 1377 | |
| 1378 | /* FDI must be feeding us bits for PCH ports */ |
| 1379 | assert_fdi_tx_enabled(dev_priv, pipe); |
| 1380 | assert_fdi_rx_enabled(dev_priv, pipe); |
| 1381 | |
| 1382 | reg = TRANSCONF(pipe); |
| 1383 | val = I915_READ(reg); |
Paulo Zanoni | 5f7f726 | 2012-02-03 17:47:15 -0200 | [diff] [blame] | 1384 | pipeconf_val = I915_READ(PIPECONF(pipe)); |
Jesse Barnes | e9bcff5 | 2011-06-24 12:19:20 -0700 | [diff] [blame] | 1385 | |
| 1386 | if (HAS_PCH_IBX(dev_priv->dev)) { |
| 1387 | /* |
| 1388 | * make the BPC in transcoder be consistent with |
| 1389 | * that in pipeconf reg. |
| 1390 | */ |
| 1391 | val &= ~PIPE_BPC_MASK; |
Paulo Zanoni | 5f7f726 | 2012-02-03 17:47:15 -0200 | [diff] [blame] | 1392 | val |= pipeconf_val & PIPE_BPC_MASK; |
Jesse Barnes | e9bcff5 | 2011-06-24 12:19:20 -0700 | [diff] [blame] | 1393 | } |
Paulo Zanoni | 5f7f726 | 2012-02-03 17:47:15 -0200 | [diff] [blame] | 1394 | |
| 1395 | val &= ~TRANS_INTERLACE_MASK; |
| 1396 | if ((pipeconf_val & PIPECONF_INTERLACE_MASK) == PIPECONF_INTERLACED_ILK) |
Paulo Zanoni | 7c26e5c | 2012-02-14 17:07:09 -0200 | [diff] [blame] | 1397 | if (HAS_PCH_IBX(dev_priv->dev) && |
| 1398 | intel_pipe_has_type(crtc, INTEL_OUTPUT_SDVO)) |
| 1399 | val |= TRANS_LEGACY_INTERLACED_ILK; |
| 1400 | else |
| 1401 | val |= TRANS_INTERLACED; |
Paulo Zanoni | 5f7f726 | 2012-02-03 17:47:15 -0200 | [diff] [blame] | 1402 | else |
| 1403 | val |= TRANS_PROGRESSIVE; |
| 1404 | |
Jesse Barnes | 040484a | 2011-01-03 12:14:26 -0800 | [diff] [blame] | 1405 | I915_WRITE(reg, val | TRANS_ENABLE); |
| 1406 | if (wait_for(I915_READ(reg) & TRANS_STATE_ENABLE, 100)) |
| 1407 | DRM_ERROR("failed to enable transcoder %d\n", pipe); |
| 1408 | } |
| 1409 | |
| 1410 | static void intel_disable_transcoder(struct drm_i915_private *dev_priv, |
| 1411 | enum pipe pipe) |
| 1412 | { |
| 1413 | int reg; |
| 1414 | u32 val; |
| 1415 | |
| 1416 | /* FDI relies on the transcoder */ |
| 1417 | assert_fdi_tx_disabled(dev_priv, pipe); |
| 1418 | assert_fdi_rx_disabled(dev_priv, pipe); |
| 1419 | |
Jesse Barnes | 291906f | 2011-02-02 12:28:03 -0800 | [diff] [blame] | 1420 | /* Ports must be off as well */ |
| 1421 | assert_pch_ports_disabled(dev_priv, pipe); |
| 1422 | |
Jesse Barnes | 040484a | 2011-01-03 12:14:26 -0800 | [diff] [blame] | 1423 | reg = TRANSCONF(pipe); |
| 1424 | val = I915_READ(reg); |
| 1425 | val &= ~TRANS_ENABLE; |
| 1426 | I915_WRITE(reg, val); |
| 1427 | /* wait for PCH transcoder off, transcoder state */ |
| 1428 | if (wait_for((I915_READ(reg) & TRANS_STATE_ENABLE) == 0, 50)) |
Jesse Barnes | 4c9c18c | 2011-10-13 09:46:32 -0700 | [diff] [blame] | 1429 | DRM_ERROR("failed to disable transcoder %d\n", pipe); |
Jesse Barnes | 040484a | 2011-01-03 12:14:26 -0800 | [diff] [blame] | 1430 | } |
| 1431 | |
Jesse Barnes | 92f2584 | 2011-01-04 15:09:34 -0800 | [diff] [blame] | 1432 | /** |
Chris Wilson | 309cfea | 2011-01-28 13:54:53 +0000 | [diff] [blame] | 1433 | * intel_enable_pipe - enable a pipe, asserting requirements |
Jesse Barnes | b24e717 | 2011-01-04 15:09:30 -0800 | [diff] [blame] | 1434 | * @dev_priv: i915 private structure |
| 1435 | * @pipe: pipe to enable |
Jesse Barnes | 040484a | 2011-01-03 12:14:26 -0800 | [diff] [blame] | 1436 | * @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] | 1437 | * |
| 1438 | * Enable @pipe, making sure that various hardware specific requirements |
| 1439 | * are met, if applicable, e.g. PLL enabled, LVDS pairs enabled, etc. |
| 1440 | * |
| 1441 | * @pipe should be %PIPE_A or %PIPE_B. |
| 1442 | * |
| 1443 | * Will wait until the pipe is actually running (i.e. first vblank) before |
| 1444 | * returning. |
| 1445 | */ |
Jesse Barnes | 040484a | 2011-01-03 12:14:26 -0800 | [diff] [blame] | 1446 | static void intel_enable_pipe(struct drm_i915_private *dev_priv, enum pipe pipe, |
| 1447 | bool pch_port) |
Jesse Barnes | b24e717 | 2011-01-04 15:09:30 -0800 | [diff] [blame] | 1448 | { |
| 1449 | int reg; |
| 1450 | u32 val; |
| 1451 | |
| 1452 | /* |
| 1453 | * A pipe without a PLL won't actually be able to drive bits from |
| 1454 | * a plane. On ILK+ the pipe PLLs are integrated, so we don't |
| 1455 | * need the check. |
| 1456 | */ |
| 1457 | if (!HAS_PCH_SPLIT(dev_priv->dev)) |
| 1458 | assert_pll_enabled(dev_priv, pipe); |
Jesse Barnes | 040484a | 2011-01-03 12:14:26 -0800 | [diff] [blame] | 1459 | else { |
| 1460 | if (pch_port) { |
| 1461 | /* if driving the PCH, we need FDI enabled */ |
| 1462 | assert_fdi_rx_pll_enabled(dev_priv, pipe); |
| 1463 | assert_fdi_tx_pll_enabled(dev_priv, pipe); |
| 1464 | } |
| 1465 | /* FIXME: assert CPU port conditions for SNB+ */ |
| 1466 | } |
Jesse Barnes | b24e717 | 2011-01-04 15:09:30 -0800 | [diff] [blame] | 1467 | |
| 1468 | reg = PIPECONF(pipe); |
| 1469 | val = I915_READ(reg); |
Chris Wilson | 00d70b1 | 2011-03-17 07:18:29 +0000 | [diff] [blame] | 1470 | if (val & PIPECONF_ENABLE) |
| 1471 | return; |
| 1472 | |
| 1473 | I915_WRITE(reg, val | PIPECONF_ENABLE); |
Jesse Barnes | b24e717 | 2011-01-04 15:09:30 -0800 | [diff] [blame] | 1474 | intel_wait_for_vblank(dev_priv->dev, pipe); |
| 1475 | } |
| 1476 | |
| 1477 | /** |
Chris Wilson | 309cfea | 2011-01-28 13:54:53 +0000 | [diff] [blame] | 1478 | * intel_disable_pipe - disable a pipe, asserting requirements |
Jesse Barnes | b24e717 | 2011-01-04 15:09:30 -0800 | [diff] [blame] | 1479 | * @dev_priv: i915 private structure |
| 1480 | * @pipe: pipe to disable |
| 1481 | * |
| 1482 | * Disable @pipe, making sure that various hardware specific requirements |
| 1483 | * are met, if applicable, e.g. plane disabled, panel fitter off, etc. |
| 1484 | * |
| 1485 | * @pipe should be %PIPE_A or %PIPE_B. |
| 1486 | * |
| 1487 | * Will wait until the pipe has shut down before returning. |
| 1488 | */ |
| 1489 | static void intel_disable_pipe(struct drm_i915_private *dev_priv, |
| 1490 | enum pipe pipe) |
| 1491 | { |
| 1492 | int reg; |
| 1493 | u32 val; |
| 1494 | |
| 1495 | /* |
| 1496 | * Make sure planes won't keep trying to pump pixels to us, |
| 1497 | * or we might hang the display. |
| 1498 | */ |
| 1499 | assert_planes_disabled(dev_priv, pipe); |
| 1500 | |
| 1501 | /* Don't disable pipe A or pipe A PLLs if needed */ |
| 1502 | if (pipe == PIPE_A && (dev_priv->quirks & QUIRK_PIPEA_FORCE)) |
| 1503 | return; |
| 1504 | |
| 1505 | reg = PIPECONF(pipe); |
| 1506 | val = I915_READ(reg); |
Chris Wilson | 00d70b1 | 2011-03-17 07:18:29 +0000 | [diff] [blame] | 1507 | if ((val & PIPECONF_ENABLE) == 0) |
| 1508 | return; |
| 1509 | |
| 1510 | I915_WRITE(reg, val & ~PIPECONF_ENABLE); |
Jesse Barnes | b24e717 | 2011-01-04 15:09:30 -0800 | [diff] [blame] | 1511 | intel_wait_for_pipe_off(dev_priv->dev, pipe); |
| 1512 | } |
| 1513 | |
Keith Packard | d74362c | 2011-07-28 14:47:14 -0700 | [diff] [blame] | 1514 | /* |
| 1515 | * Plane regs are double buffered, going from enabled->disabled needs a |
| 1516 | * trigger in order to latch. The display address reg provides this. |
| 1517 | */ |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 1518 | void intel_flush_display_plane(struct drm_i915_private *dev_priv, |
Keith Packard | d74362c | 2011-07-28 14:47:14 -0700 | [diff] [blame] | 1519 | enum plane plane) |
| 1520 | { |
| 1521 | I915_WRITE(DSPADDR(plane), I915_READ(DSPADDR(plane))); |
| 1522 | I915_WRITE(DSPSURF(plane), I915_READ(DSPSURF(plane))); |
| 1523 | } |
| 1524 | |
Jesse Barnes | b24e717 | 2011-01-04 15:09:30 -0800 | [diff] [blame] | 1525 | /** |
| 1526 | * intel_enable_plane - enable a display plane on a given pipe |
| 1527 | * @dev_priv: i915 private structure |
| 1528 | * @plane: plane to enable |
| 1529 | * @pipe: pipe being fed |
| 1530 | * |
| 1531 | * Enable @plane on @pipe, making sure that @pipe is running first. |
| 1532 | */ |
| 1533 | static void intel_enable_plane(struct drm_i915_private *dev_priv, |
| 1534 | enum plane plane, enum pipe pipe) |
| 1535 | { |
| 1536 | int reg; |
| 1537 | u32 val; |
| 1538 | |
| 1539 | /* If the pipe isn't enabled, we can't pump pixels and may hang */ |
| 1540 | assert_pipe_enabled(dev_priv, pipe); |
| 1541 | |
| 1542 | reg = DSPCNTR(plane); |
| 1543 | val = I915_READ(reg); |
Chris Wilson | 00d70b1 | 2011-03-17 07:18:29 +0000 | [diff] [blame] | 1544 | if (val & DISPLAY_PLANE_ENABLE) |
| 1545 | return; |
| 1546 | |
| 1547 | I915_WRITE(reg, val | DISPLAY_PLANE_ENABLE); |
Keith Packard | d74362c | 2011-07-28 14:47:14 -0700 | [diff] [blame] | 1548 | intel_flush_display_plane(dev_priv, plane); |
Jesse Barnes | b24e717 | 2011-01-04 15:09:30 -0800 | [diff] [blame] | 1549 | intel_wait_for_vblank(dev_priv->dev, pipe); |
| 1550 | } |
| 1551 | |
Jesse Barnes | b24e717 | 2011-01-04 15:09:30 -0800 | [diff] [blame] | 1552 | /** |
| 1553 | * intel_disable_plane - disable a display plane |
| 1554 | * @dev_priv: i915 private structure |
| 1555 | * @plane: plane to disable |
| 1556 | * @pipe: pipe consuming the data |
| 1557 | * |
| 1558 | * Disable @plane; should be an independent operation. |
| 1559 | */ |
| 1560 | static void intel_disable_plane(struct drm_i915_private *dev_priv, |
| 1561 | enum plane plane, enum pipe pipe) |
| 1562 | { |
| 1563 | int reg; |
| 1564 | u32 val; |
| 1565 | |
| 1566 | reg = DSPCNTR(plane); |
| 1567 | val = I915_READ(reg); |
Chris Wilson | 00d70b1 | 2011-03-17 07:18:29 +0000 | [diff] [blame] | 1568 | if ((val & DISPLAY_PLANE_ENABLE) == 0) |
| 1569 | return; |
| 1570 | |
| 1571 | I915_WRITE(reg, val & ~DISPLAY_PLANE_ENABLE); |
Jesse Barnes | b24e717 | 2011-01-04 15:09:30 -0800 | [diff] [blame] | 1572 | intel_flush_display_plane(dev_priv, plane); |
| 1573 | intel_wait_for_vblank(dev_priv->dev, pipe); |
| 1574 | } |
| 1575 | |
Jesse Barnes | 47a05ec | 2011-02-07 13:46:40 -0800 | [diff] [blame] | 1576 | static void disable_pch_dp(struct drm_i915_private *dev_priv, |
Keith Packard | f0575e9 | 2011-07-25 22:12:43 -0700 | [diff] [blame] | 1577 | enum pipe pipe, int reg, u32 port_sel) |
Jesse Barnes | 47a05ec | 2011-02-07 13:46:40 -0800 | [diff] [blame] | 1578 | { |
| 1579 | u32 val = I915_READ(reg); |
Keith Packard | 4e63438 | 2011-08-06 10:39:45 -0700 | [diff] [blame] | 1580 | if (dp_pipe_enabled(dev_priv, pipe, port_sel, val)) { |
Keith Packard | f0575e9 | 2011-07-25 22:12:43 -0700 | [diff] [blame] | 1581 | DRM_DEBUG_KMS("Disabling pch dp %x on pipe %d\n", reg, pipe); |
Jesse Barnes | 47a05ec | 2011-02-07 13:46:40 -0800 | [diff] [blame] | 1582 | I915_WRITE(reg, val & ~DP_PORT_EN); |
Keith Packard | f0575e9 | 2011-07-25 22:12:43 -0700 | [diff] [blame] | 1583 | } |
Jesse Barnes | 47a05ec | 2011-02-07 13:46:40 -0800 | [diff] [blame] | 1584 | } |
| 1585 | |
| 1586 | static void disable_pch_hdmi(struct drm_i915_private *dev_priv, |
| 1587 | enum pipe pipe, int reg) |
| 1588 | { |
| 1589 | u32 val = I915_READ(reg); |
Keith Packard | 1519b99 | 2011-08-06 10:35:34 -0700 | [diff] [blame] | 1590 | if (hdmi_pipe_enabled(dev_priv, val, pipe)) { |
Keith Packard | f0575e9 | 2011-07-25 22:12:43 -0700 | [diff] [blame] | 1591 | DRM_DEBUG_KMS("Disabling pch HDMI %x on pipe %d\n", |
| 1592 | reg, pipe); |
Jesse Barnes | 47a05ec | 2011-02-07 13:46:40 -0800 | [diff] [blame] | 1593 | I915_WRITE(reg, val & ~PORT_ENABLE); |
Keith Packard | f0575e9 | 2011-07-25 22:12:43 -0700 | [diff] [blame] | 1594 | } |
Jesse Barnes | 47a05ec | 2011-02-07 13:46:40 -0800 | [diff] [blame] | 1595 | } |
| 1596 | |
| 1597 | /* Disable any ports connected to this transcoder */ |
| 1598 | static void intel_disable_pch_ports(struct drm_i915_private *dev_priv, |
| 1599 | enum pipe pipe) |
| 1600 | { |
| 1601 | u32 reg, val; |
| 1602 | |
| 1603 | val = I915_READ(PCH_PP_CONTROL); |
| 1604 | I915_WRITE(PCH_PP_CONTROL, val | PANEL_UNLOCK_REGS); |
| 1605 | |
Keith Packard | f0575e9 | 2011-07-25 22:12:43 -0700 | [diff] [blame] | 1606 | disable_pch_dp(dev_priv, pipe, PCH_DP_B, TRANS_DP_PORT_SEL_B); |
| 1607 | disable_pch_dp(dev_priv, pipe, PCH_DP_C, TRANS_DP_PORT_SEL_C); |
| 1608 | disable_pch_dp(dev_priv, pipe, PCH_DP_D, TRANS_DP_PORT_SEL_D); |
Jesse Barnes | 47a05ec | 2011-02-07 13:46:40 -0800 | [diff] [blame] | 1609 | |
| 1610 | reg = PCH_ADPA; |
| 1611 | val = I915_READ(reg); |
Keith Packard | 1519b99 | 2011-08-06 10:35:34 -0700 | [diff] [blame] | 1612 | if (adpa_pipe_enabled(dev_priv, val, pipe)) |
Jesse Barnes | 47a05ec | 2011-02-07 13:46:40 -0800 | [diff] [blame] | 1613 | I915_WRITE(reg, val & ~ADPA_DAC_ENABLE); |
| 1614 | |
| 1615 | reg = PCH_LVDS; |
| 1616 | val = I915_READ(reg); |
Keith Packard | 1519b99 | 2011-08-06 10:35:34 -0700 | [diff] [blame] | 1617 | if (lvds_pipe_enabled(dev_priv, val, pipe)) { |
| 1618 | DRM_DEBUG_KMS("disable lvds on pipe %d val 0x%08x\n", pipe, val); |
Jesse Barnes | 47a05ec | 2011-02-07 13:46:40 -0800 | [diff] [blame] | 1619 | I915_WRITE(reg, val & ~LVDS_PORT_EN); |
| 1620 | POSTING_READ(reg); |
| 1621 | udelay(100); |
| 1622 | } |
| 1623 | |
| 1624 | disable_pch_hdmi(dev_priv, pipe, HDMIB); |
| 1625 | disable_pch_hdmi(dev_priv, pipe, HDMIC); |
| 1626 | disable_pch_hdmi(dev_priv, pipe, HDMID); |
| 1627 | } |
| 1628 | |
Chris Wilson | 127bd2a | 2010-07-23 23:32:05 +0100 | [diff] [blame] | 1629 | int |
Chris Wilson | 48b956c | 2010-09-14 12:50:34 +0100 | [diff] [blame] | 1630 | intel_pin_and_fence_fb_obj(struct drm_device *dev, |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 1631 | struct drm_i915_gem_object *obj, |
Chris Wilson | 919926a | 2010-11-12 13:42:53 +0000 | [diff] [blame] | 1632 | struct intel_ring_buffer *pipelined) |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 1633 | { |
Chris Wilson | ce453d8 | 2011-02-21 14:43:56 +0000 | [diff] [blame] | 1634 | struct drm_i915_private *dev_priv = dev->dev_private; |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 1635 | u32 alignment; |
| 1636 | int ret; |
| 1637 | |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 1638 | switch (obj->tiling_mode) { |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 1639 | case I915_TILING_NONE: |
Chris Wilson | 534843d | 2010-07-05 18:01:46 +0100 | [diff] [blame] | 1640 | if (IS_BROADWATER(dev) || IS_CRESTLINE(dev)) |
| 1641 | alignment = 128 * 1024; |
Chris Wilson | a6c45cf | 2010-09-17 00:32:17 +0100 | [diff] [blame] | 1642 | else if (INTEL_INFO(dev)->gen >= 4) |
Chris Wilson | 534843d | 2010-07-05 18:01:46 +0100 | [diff] [blame] | 1643 | alignment = 4 * 1024; |
| 1644 | else |
| 1645 | alignment = 64 * 1024; |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 1646 | break; |
| 1647 | case I915_TILING_X: |
| 1648 | /* pin() will align the object as required by fence */ |
| 1649 | alignment = 0; |
| 1650 | break; |
| 1651 | case I915_TILING_Y: |
| 1652 | /* FIXME: Is this true? */ |
| 1653 | DRM_ERROR("Y tiled not allowed for scan out buffers\n"); |
| 1654 | return -EINVAL; |
| 1655 | default: |
| 1656 | BUG(); |
| 1657 | } |
| 1658 | |
Chris Wilson | ce453d8 | 2011-02-21 14:43:56 +0000 | [diff] [blame] | 1659 | dev_priv->mm.interruptible = false; |
Chris Wilson | 2da3b9b | 2011-04-14 09:41:17 +0100 | [diff] [blame] | 1660 | ret = i915_gem_object_pin_to_display_plane(obj, alignment, pipelined); |
Chris Wilson | 48b956c | 2010-09-14 12:50:34 +0100 | [diff] [blame] | 1661 | if (ret) |
Chris Wilson | ce453d8 | 2011-02-21 14:43:56 +0000 | [diff] [blame] | 1662 | goto err_interruptible; |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 1663 | |
| 1664 | /* Install a fence for tiled scan-out. Pre-i965 always needs a |
| 1665 | * fence, whereas 965+ only requires a fence if using |
| 1666 | * framebuffer compression. For simplicity, we always install |
| 1667 | * a fence as the cost is not that onerous. |
| 1668 | */ |
Chris Wilson | 06d9813 | 2012-04-17 15:31:24 +0100 | [diff] [blame] | 1669 | ret = i915_gem_object_get_fence(obj); |
Chris Wilson | 9a5a53b | 2012-03-22 15:10:00 +0000 | [diff] [blame] | 1670 | if (ret) |
| 1671 | goto err_unpin; |
Chris Wilson | 1690e1e | 2011-12-14 13:57:08 +0100 | [diff] [blame] | 1672 | |
Chris Wilson | 9a5a53b | 2012-03-22 15:10:00 +0000 | [diff] [blame] | 1673 | i915_gem_object_pin_fence(obj); |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 1674 | |
Chris Wilson | ce453d8 | 2011-02-21 14:43:56 +0000 | [diff] [blame] | 1675 | dev_priv->mm.interruptible = true; |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 1676 | return 0; |
Chris Wilson | 48b956c | 2010-09-14 12:50:34 +0100 | [diff] [blame] | 1677 | |
| 1678 | err_unpin: |
| 1679 | i915_gem_object_unpin(obj); |
Chris Wilson | ce453d8 | 2011-02-21 14:43:56 +0000 | [diff] [blame] | 1680 | err_interruptible: |
| 1681 | dev_priv->mm.interruptible = true; |
Chris Wilson | 48b956c | 2010-09-14 12:50:34 +0100 | [diff] [blame] | 1682 | return ret; |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 1683 | } |
| 1684 | |
Chris Wilson | 1690e1e | 2011-12-14 13:57:08 +0100 | [diff] [blame] | 1685 | void intel_unpin_fb_obj(struct drm_i915_gem_object *obj) |
| 1686 | { |
| 1687 | i915_gem_object_unpin_fence(obj); |
| 1688 | i915_gem_object_unpin(obj); |
| 1689 | } |
| 1690 | |
Jesse Barnes | 17638cd | 2011-06-24 12:19:23 -0700 | [diff] [blame] | 1691 | static int i9xx_update_plane(struct drm_crtc *crtc, struct drm_framebuffer *fb, |
| 1692 | int x, int y) |
Jesse Barnes | 8125556 | 2010-08-02 12:07:50 -0700 | [diff] [blame] | 1693 | { |
| 1694 | struct drm_device *dev = crtc->dev; |
| 1695 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 1696 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 1697 | struct intel_framebuffer *intel_fb; |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 1698 | struct drm_i915_gem_object *obj; |
Jesse Barnes | 8125556 | 2010-08-02 12:07:50 -0700 | [diff] [blame] | 1699 | int plane = intel_crtc->plane; |
| 1700 | unsigned long Start, Offset; |
Jesse Barnes | 8125556 | 2010-08-02 12:07:50 -0700 | [diff] [blame] | 1701 | u32 dspcntr; |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 1702 | u32 reg; |
Jesse Barnes | 8125556 | 2010-08-02 12:07:50 -0700 | [diff] [blame] | 1703 | |
| 1704 | switch (plane) { |
| 1705 | case 0: |
| 1706 | case 1: |
| 1707 | break; |
| 1708 | default: |
| 1709 | DRM_ERROR("Can't update plane %d in SAREA\n", plane); |
| 1710 | return -EINVAL; |
| 1711 | } |
| 1712 | |
| 1713 | intel_fb = to_intel_framebuffer(fb); |
| 1714 | obj = intel_fb->obj; |
Jesse Barnes | 8125556 | 2010-08-02 12:07:50 -0700 | [diff] [blame] | 1715 | |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 1716 | reg = DSPCNTR(plane); |
| 1717 | dspcntr = I915_READ(reg); |
Jesse Barnes | 8125556 | 2010-08-02 12:07:50 -0700 | [diff] [blame] | 1718 | /* Mask out pixel format bits in case we change it */ |
| 1719 | dspcntr &= ~DISPPLANE_PIXFORMAT_MASK; |
| 1720 | switch (fb->bits_per_pixel) { |
| 1721 | case 8: |
| 1722 | dspcntr |= DISPPLANE_8BPP; |
| 1723 | break; |
| 1724 | case 16: |
| 1725 | if (fb->depth == 15) |
| 1726 | dspcntr |= DISPPLANE_15_16BPP; |
| 1727 | else |
| 1728 | dspcntr |= DISPPLANE_16BPP; |
| 1729 | break; |
| 1730 | case 24: |
| 1731 | case 32: |
| 1732 | dspcntr |= DISPPLANE_32BPP_NO_ALPHA; |
| 1733 | break; |
| 1734 | default: |
Jesse Barnes | 17638cd | 2011-06-24 12:19:23 -0700 | [diff] [blame] | 1735 | DRM_ERROR("Unknown color depth %d\n", fb->bits_per_pixel); |
Jesse Barnes | 8125556 | 2010-08-02 12:07:50 -0700 | [diff] [blame] | 1736 | return -EINVAL; |
| 1737 | } |
Chris Wilson | a6c45cf | 2010-09-17 00:32:17 +0100 | [diff] [blame] | 1738 | if (INTEL_INFO(dev)->gen >= 4) { |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 1739 | if (obj->tiling_mode != I915_TILING_NONE) |
Jesse Barnes | 8125556 | 2010-08-02 12:07:50 -0700 | [diff] [blame] | 1740 | dspcntr |= DISPPLANE_TILED; |
| 1741 | else |
| 1742 | dspcntr &= ~DISPPLANE_TILED; |
| 1743 | } |
| 1744 | |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 1745 | I915_WRITE(reg, dspcntr); |
Jesse Barnes | 8125556 | 2010-08-02 12:07:50 -0700 | [diff] [blame] | 1746 | |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 1747 | Start = obj->gtt_offset; |
Ville Syrjälä | 01f2c77 | 2011-12-20 00:06:49 +0200 | [diff] [blame] | 1748 | Offset = y * fb->pitches[0] + x * (fb->bits_per_pixel / 8); |
Jesse Barnes | 8125556 | 2010-08-02 12:07:50 -0700 | [diff] [blame] | 1749 | |
Chris Wilson | 4e6cfef | 2010-08-08 13:20:19 +0100 | [diff] [blame] | 1750 | DRM_DEBUG_KMS("Writing base %08lX %08lX %d %d %d\n", |
Ville Syrjälä | 01f2c77 | 2011-12-20 00:06:49 +0200 | [diff] [blame] | 1751 | Start, Offset, x, y, fb->pitches[0]); |
| 1752 | I915_WRITE(DSPSTRIDE(plane), fb->pitches[0]); |
Chris Wilson | a6c45cf | 2010-09-17 00:32:17 +0100 | [diff] [blame] | 1753 | if (INTEL_INFO(dev)->gen >= 4) { |
Armin Reese | 446f254 | 2012-03-30 16:20:16 -0700 | [diff] [blame] | 1754 | I915_MODIFY_DISPBASE(DSPSURF(plane), Start); |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 1755 | I915_WRITE(DSPTILEOFF(plane), (y << 16) | x); |
| 1756 | I915_WRITE(DSPADDR(plane), Offset); |
| 1757 | } else |
| 1758 | I915_WRITE(DSPADDR(plane), Start + Offset); |
| 1759 | POSTING_READ(reg); |
Jesse Barnes | 8125556 | 2010-08-02 12:07:50 -0700 | [diff] [blame] | 1760 | |
Jesse Barnes | 17638cd | 2011-06-24 12:19:23 -0700 | [diff] [blame] | 1761 | return 0; |
| 1762 | } |
| 1763 | |
| 1764 | static int ironlake_update_plane(struct drm_crtc *crtc, |
| 1765 | struct drm_framebuffer *fb, int x, int y) |
| 1766 | { |
| 1767 | struct drm_device *dev = crtc->dev; |
| 1768 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 1769 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 1770 | struct intel_framebuffer *intel_fb; |
| 1771 | struct drm_i915_gem_object *obj; |
| 1772 | int plane = intel_crtc->plane; |
| 1773 | unsigned long Start, Offset; |
| 1774 | u32 dspcntr; |
| 1775 | u32 reg; |
| 1776 | |
| 1777 | switch (plane) { |
| 1778 | case 0: |
| 1779 | case 1: |
Jesse Barnes | 27f8227 | 2011-09-02 12:54:37 -0700 | [diff] [blame] | 1780 | case 2: |
Jesse Barnes | 17638cd | 2011-06-24 12:19:23 -0700 | [diff] [blame] | 1781 | break; |
| 1782 | default: |
| 1783 | DRM_ERROR("Can't update plane %d in SAREA\n", plane); |
| 1784 | return -EINVAL; |
| 1785 | } |
| 1786 | |
| 1787 | intel_fb = to_intel_framebuffer(fb); |
| 1788 | obj = intel_fb->obj; |
| 1789 | |
| 1790 | reg = DSPCNTR(plane); |
| 1791 | dspcntr = I915_READ(reg); |
| 1792 | /* Mask out pixel format bits in case we change it */ |
| 1793 | dspcntr &= ~DISPPLANE_PIXFORMAT_MASK; |
| 1794 | switch (fb->bits_per_pixel) { |
| 1795 | case 8: |
| 1796 | dspcntr |= DISPPLANE_8BPP; |
| 1797 | break; |
| 1798 | case 16: |
| 1799 | if (fb->depth != 16) |
| 1800 | return -EINVAL; |
| 1801 | |
| 1802 | dspcntr |= DISPPLANE_16BPP; |
| 1803 | break; |
| 1804 | case 24: |
| 1805 | case 32: |
| 1806 | if (fb->depth == 24) |
| 1807 | dspcntr |= DISPPLANE_32BPP_NO_ALPHA; |
| 1808 | else if (fb->depth == 30) |
| 1809 | dspcntr |= DISPPLANE_32BPP_30BIT_NO_ALPHA; |
| 1810 | else |
| 1811 | return -EINVAL; |
| 1812 | break; |
| 1813 | default: |
| 1814 | DRM_ERROR("Unknown color depth %d\n", fb->bits_per_pixel); |
| 1815 | return -EINVAL; |
| 1816 | } |
| 1817 | |
| 1818 | if (obj->tiling_mode != I915_TILING_NONE) |
| 1819 | dspcntr |= DISPPLANE_TILED; |
| 1820 | else |
| 1821 | dspcntr &= ~DISPPLANE_TILED; |
| 1822 | |
| 1823 | /* must disable */ |
| 1824 | dspcntr |= DISPPLANE_TRICKLE_FEED_DISABLE; |
| 1825 | |
| 1826 | I915_WRITE(reg, dspcntr); |
| 1827 | |
| 1828 | Start = obj->gtt_offset; |
Ville Syrjälä | 01f2c77 | 2011-12-20 00:06:49 +0200 | [diff] [blame] | 1829 | Offset = y * fb->pitches[0] + x * (fb->bits_per_pixel / 8); |
Jesse Barnes | 17638cd | 2011-06-24 12:19:23 -0700 | [diff] [blame] | 1830 | |
| 1831 | DRM_DEBUG_KMS("Writing base %08lX %08lX %d %d %d\n", |
Ville Syrjälä | 01f2c77 | 2011-12-20 00:06:49 +0200 | [diff] [blame] | 1832 | Start, Offset, x, y, fb->pitches[0]); |
| 1833 | I915_WRITE(DSPSTRIDE(plane), fb->pitches[0]); |
Armin Reese | 446f254 | 2012-03-30 16:20:16 -0700 | [diff] [blame] | 1834 | I915_MODIFY_DISPBASE(DSPSURF(plane), Start); |
Jesse Barnes | 17638cd | 2011-06-24 12:19:23 -0700 | [diff] [blame] | 1835 | I915_WRITE(DSPTILEOFF(plane), (y << 16) | x); |
| 1836 | I915_WRITE(DSPADDR(plane), Offset); |
| 1837 | POSTING_READ(reg); |
| 1838 | |
| 1839 | return 0; |
| 1840 | } |
| 1841 | |
| 1842 | /* Assume fb object is pinned & idle & fenced and just update base pointers */ |
| 1843 | static int |
| 1844 | intel_pipe_set_base_atomic(struct drm_crtc *crtc, struct drm_framebuffer *fb, |
| 1845 | int x, int y, enum mode_set_atomic state) |
| 1846 | { |
| 1847 | struct drm_device *dev = crtc->dev; |
| 1848 | struct drm_i915_private *dev_priv = dev->dev_private; |
Jesse Barnes | 17638cd | 2011-06-24 12:19:23 -0700 | [diff] [blame] | 1849 | |
Chris Wilson | 6b8e6ed | 2012-04-17 15:08:19 +0100 | [diff] [blame] | 1850 | if (dev_priv->display.disable_fbc) |
| 1851 | dev_priv->display.disable_fbc(dev); |
Daniel Vetter | 3dec009 | 2010-08-20 21:40:52 +0200 | [diff] [blame] | 1852 | intel_increase_pllclock(crtc); |
Jesse Barnes | 8125556 | 2010-08-02 12:07:50 -0700 | [diff] [blame] | 1853 | |
Chris Wilson | 6b8e6ed | 2012-04-17 15:08:19 +0100 | [diff] [blame] | 1854 | return dev_priv->display.update_plane(crtc, fb, x, y); |
Jesse Barnes | 8125556 | 2010-08-02 12:07:50 -0700 | [diff] [blame] | 1855 | } |
| 1856 | |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 1857 | static int |
Chris Wilson | 14667a4 | 2012-04-03 17:58:35 +0100 | [diff] [blame] | 1858 | intel_finish_fb(struct drm_framebuffer *old_fb) |
| 1859 | { |
| 1860 | struct drm_i915_gem_object *obj = to_intel_framebuffer(old_fb)->obj; |
| 1861 | struct drm_i915_private *dev_priv = obj->base.dev->dev_private; |
| 1862 | bool was_interruptible = dev_priv->mm.interruptible; |
| 1863 | int ret; |
| 1864 | |
| 1865 | wait_event(dev_priv->pending_flip_queue, |
| 1866 | atomic_read(&dev_priv->mm.wedged) || |
| 1867 | atomic_read(&obj->pending_flip) == 0); |
| 1868 | |
| 1869 | /* Big Hammer, we also need to ensure that any pending |
| 1870 | * MI_WAIT_FOR_EVENT inside a user batch buffer on the |
| 1871 | * current scanout is retired before unpinning the old |
| 1872 | * framebuffer. |
| 1873 | * |
| 1874 | * This should only fail upon a hung GPU, in which case we |
| 1875 | * can safely continue. |
| 1876 | */ |
| 1877 | dev_priv->mm.interruptible = false; |
| 1878 | ret = i915_gem_object_finish_gpu(obj); |
| 1879 | dev_priv->mm.interruptible = was_interruptible; |
| 1880 | |
| 1881 | return ret; |
| 1882 | } |
| 1883 | |
| 1884 | static int |
Kristian Høgsberg | 3c4fdcf | 2008-12-17 22:14:46 -0500 | [diff] [blame] | 1885 | intel_pipe_set_base(struct drm_crtc *crtc, int x, int y, |
| 1886 | struct drm_framebuffer *old_fb) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1887 | { |
| 1888 | struct drm_device *dev = crtc->dev; |
Chris Wilson | 6b8e6ed | 2012-04-17 15:08:19 +0100 | [diff] [blame] | 1889 | struct drm_i915_private *dev_priv = dev->dev_private; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1890 | struct drm_i915_master_private *master_priv; |
| 1891 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
Chris Wilson | 5c3b82e | 2009-02-11 13:25:09 +0000 | [diff] [blame] | 1892 | int ret; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1893 | |
| 1894 | /* no fb bound */ |
| 1895 | if (!crtc->fb) { |
Jesse Barnes | a5071c2 | 2011-07-19 15:38:56 -0700 | [diff] [blame] | 1896 | DRM_ERROR("No FB bound\n"); |
Chris Wilson | 5c3b82e | 2009-02-11 13:25:09 +0000 | [diff] [blame] | 1897 | return 0; |
| 1898 | } |
| 1899 | |
Chris Wilson | 265db95 | 2010-09-20 15:41:01 +0100 | [diff] [blame] | 1900 | switch (intel_crtc->plane) { |
Chris Wilson | 5c3b82e | 2009-02-11 13:25:09 +0000 | [diff] [blame] | 1901 | case 0: |
| 1902 | case 1: |
| 1903 | break; |
Jesse Barnes | 27f8227 | 2011-09-02 12:54:37 -0700 | [diff] [blame] | 1904 | case 2: |
| 1905 | if (IS_IVYBRIDGE(dev)) |
| 1906 | break; |
| 1907 | /* fall through otherwise */ |
Chris Wilson | 5c3b82e | 2009-02-11 13:25:09 +0000 | [diff] [blame] | 1908 | default: |
Jesse Barnes | a5071c2 | 2011-07-19 15:38:56 -0700 | [diff] [blame] | 1909 | DRM_ERROR("no plane for crtc\n"); |
Chris Wilson | 5c3b82e | 2009-02-11 13:25:09 +0000 | [diff] [blame] | 1910 | return -EINVAL; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1911 | } |
| 1912 | |
Chris Wilson | 5c3b82e | 2009-02-11 13:25:09 +0000 | [diff] [blame] | 1913 | mutex_lock(&dev->struct_mutex); |
Chris Wilson | 265db95 | 2010-09-20 15:41:01 +0100 | [diff] [blame] | 1914 | ret = intel_pin_and_fence_fb_obj(dev, |
| 1915 | to_intel_framebuffer(crtc->fb)->obj, |
Chris Wilson | 919926a | 2010-11-12 13:42:53 +0000 | [diff] [blame] | 1916 | NULL); |
Chris Wilson | 5c3b82e | 2009-02-11 13:25:09 +0000 | [diff] [blame] | 1917 | if (ret != 0) { |
| 1918 | mutex_unlock(&dev->struct_mutex); |
Jesse Barnes | a5071c2 | 2011-07-19 15:38:56 -0700 | [diff] [blame] | 1919 | DRM_ERROR("pin & fence failed\n"); |
Chris Wilson | 5c3b82e | 2009-02-11 13:25:09 +0000 | [diff] [blame] | 1920 | return ret; |
| 1921 | } |
Kristian Høgsberg | 3c4fdcf | 2008-12-17 22:14:46 -0500 | [diff] [blame] | 1922 | |
Chris Wilson | 14667a4 | 2012-04-03 17:58:35 +0100 | [diff] [blame] | 1923 | if (old_fb) |
| 1924 | intel_finish_fb(old_fb); |
Chris Wilson | 265db95 | 2010-09-20 15:41:01 +0100 | [diff] [blame] | 1925 | |
Chris Wilson | 6b8e6ed | 2012-04-17 15:08:19 +0100 | [diff] [blame] | 1926 | ret = dev_priv->display.update_plane(crtc, crtc->fb, x, y); |
Chris Wilson | 4e6cfef | 2010-08-08 13:20:19 +0100 | [diff] [blame] | 1927 | if (ret) { |
Chris Wilson | 1690e1e | 2011-12-14 13:57:08 +0100 | [diff] [blame] | 1928 | intel_unpin_fb_obj(to_intel_framebuffer(crtc->fb)->obj); |
Chris Wilson | 5c3b82e | 2009-02-11 13:25:09 +0000 | [diff] [blame] | 1929 | mutex_unlock(&dev->struct_mutex); |
Jesse Barnes | a5071c2 | 2011-07-19 15:38:56 -0700 | [diff] [blame] | 1930 | DRM_ERROR("failed to update base address\n"); |
Chris Wilson | 4e6cfef | 2010-08-08 13:20:19 +0100 | [diff] [blame] | 1931 | return ret; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1932 | } |
Kristian Høgsberg | 3c4fdcf | 2008-12-17 22:14:46 -0500 | [diff] [blame] | 1933 | |
Chris Wilson | b7f1de2 | 2010-12-14 16:09:31 +0000 | [diff] [blame] | 1934 | if (old_fb) { |
| 1935 | intel_wait_for_vblank(dev, intel_crtc->pipe); |
Chris Wilson | 1690e1e | 2011-12-14 13:57:08 +0100 | [diff] [blame] | 1936 | intel_unpin_fb_obj(to_intel_framebuffer(old_fb)->obj); |
Chris Wilson | b7f1de2 | 2010-12-14 16:09:31 +0000 | [diff] [blame] | 1937 | } |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 1938 | |
Chris Wilson | 6b8e6ed | 2012-04-17 15:08:19 +0100 | [diff] [blame] | 1939 | intel_update_fbc(dev); |
Chris Wilson | 5c3b82e | 2009-02-11 13:25:09 +0000 | [diff] [blame] | 1940 | mutex_unlock(&dev->struct_mutex); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1941 | |
| 1942 | if (!dev->primary->master) |
Chris Wilson | 5c3b82e | 2009-02-11 13:25:09 +0000 | [diff] [blame] | 1943 | return 0; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1944 | |
| 1945 | master_priv = dev->primary->master->driver_priv; |
| 1946 | if (!master_priv->sarea_priv) |
Chris Wilson | 5c3b82e | 2009-02-11 13:25:09 +0000 | [diff] [blame] | 1947 | return 0; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1948 | |
Chris Wilson | 265db95 | 2010-09-20 15:41:01 +0100 | [diff] [blame] | 1949 | if (intel_crtc->pipe) { |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1950 | master_priv->sarea_priv->pipeB_x = x; |
| 1951 | master_priv->sarea_priv->pipeB_y = y; |
Chris Wilson | 5c3b82e | 2009-02-11 13:25:09 +0000 | [diff] [blame] | 1952 | } else { |
| 1953 | master_priv->sarea_priv->pipeA_x = x; |
| 1954 | master_priv->sarea_priv->pipeA_y = y; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1955 | } |
Chris Wilson | 5c3b82e | 2009-02-11 13:25:09 +0000 | [diff] [blame] | 1956 | |
| 1957 | return 0; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1958 | } |
| 1959 | |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 1960 | static void ironlake_set_pll_edp(struct drm_crtc *crtc, int clock) |
Zhenyu Wang | 32f9d65 | 2009-07-24 01:00:32 +0800 | [diff] [blame] | 1961 | { |
| 1962 | struct drm_device *dev = crtc->dev; |
| 1963 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 1964 | u32 dpa_ctl; |
| 1965 | |
Zhao Yakui | 28c9773 | 2009-10-09 11:39:41 +0800 | [diff] [blame] | 1966 | DRM_DEBUG_KMS("eDP PLL enable for clock %d\n", clock); |
Zhenyu Wang | 32f9d65 | 2009-07-24 01:00:32 +0800 | [diff] [blame] | 1967 | dpa_ctl = I915_READ(DP_A); |
| 1968 | dpa_ctl &= ~DP_PLL_FREQ_MASK; |
| 1969 | |
| 1970 | if (clock < 200000) { |
| 1971 | u32 temp; |
| 1972 | dpa_ctl |= DP_PLL_FREQ_160MHZ; |
| 1973 | /* workaround for 160Mhz: |
| 1974 | 1) program 0x4600c bits 15:0 = 0x8124 |
| 1975 | 2) program 0x46010 bit 0 = 1 |
| 1976 | 3) program 0x46034 bit 24 = 1 |
| 1977 | 4) program 0x64000 bit 14 = 1 |
| 1978 | */ |
| 1979 | temp = I915_READ(0x4600c); |
| 1980 | temp &= 0xffff0000; |
| 1981 | I915_WRITE(0x4600c, temp | 0x8124); |
| 1982 | |
| 1983 | temp = I915_READ(0x46010); |
| 1984 | I915_WRITE(0x46010, temp | 1); |
| 1985 | |
| 1986 | temp = I915_READ(0x46034); |
| 1987 | I915_WRITE(0x46034, temp | (1 << 24)); |
| 1988 | } else { |
| 1989 | dpa_ctl |= DP_PLL_FREQ_270MHZ; |
| 1990 | } |
| 1991 | I915_WRITE(DP_A, dpa_ctl); |
| 1992 | |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 1993 | POSTING_READ(DP_A); |
Zhenyu Wang | 32f9d65 | 2009-07-24 01:00:32 +0800 | [diff] [blame] | 1994 | udelay(500); |
| 1995 | } |
| 1996 | |
Zhenyu Wang | 5e84e1a | 2010-10-28 16:38:08 +0800 | [diff] [blame] | 1997 | static void intel_fdi_normal_train(struct drm_crtc *crtc) |
| 1998 | { |
| 1999 | struct drm_device *dev = crtc->dev; |
| 2000 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 2001 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 2002 | int pipe = intel_crtc->pipe; |
| 2003 | u32 reg, temp; |
| 2004 | |
| 2005 | /* enable normal train */ |
| 2006 | reg = FDI_TX_CTL(pipe); |
| 2007 | temp = I915_READ(reg); |
Keith Packard | 61e499b | 2011-05-17 16:13:52 -0700 | [diff] [blame] | 2008 | if (IS_IVYBRIDGE(dev)) { |
Jesse Barnes | 357555c | 2011-04-28 15:09:55 -0700 | [diff] [blame] | 2009 | temp &= ~FDI_LINK_TRAIN_NONE_IVB; |
| 2010 | temp |= FDI_LINK_TRAIN_NONE_IVB | FDI_TX_ENHANCE_FRAME_ENABLE; |
Keith Packard | 61e499b | 2011-05-17 16:13:52 -0700 | [diff] [blame] | 2011 | } else { |
| 2012 | temp &= ~FDI_LINK_TRAIN_NONE; |
| 2013 | temp |= FDI_LINK_TRAIN_NONE | FDI_TX_ENHANCE_FRAME_ENABLE; |
Jesse Barnes | 357555c | 2011-04-28 15:09:55 -0700 | [diff] [blame] | 2014 | } |
Zhenyu Wang | 5e84e1a | 2010-10-28 16:38:08 +0800 | [diff] [blame] | 2015 | I915_WRITE(reg, temp); |
| 2016 | |
| 2017 | reg = FDI_RX_CTL(pipe); |
| 2018 | temp = I915_READ(reg); |
| 2019 | if (HAS_PCH_CPT(dev)) { |
| 2020 | temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT; |
| 2021 | temp |= FDI_LINK_TRAIN_NORMAL_CPT; |
| 2022 | } else { |
| 2023 | temp &= ~FDI_LINK_TRAIN_NONE; |
| 2024 | temp |= FDI_LINK_TRAIN_NONE; |
| 2025 | } |
| 2026 | I915_WRITE(reg, temp | FDI_RX_ENHANCE_FRAME_ENABLE); |
| 2027 | |
| 2028 | /* wait one idle pattern time */ |
| 2029 | POSTING_READ(reg); |
| 2030 | udelay(1000); |
Jesse Barnes | 357555c | 2011-04-28 15:09:55 -0700 | [diff] [blame] | 2031 | |
| 2032 | /* IVB wants error correction enabled */ |
| 2033 | if (IS_IVYBRIDGE(dev)) |
| 2034 | I915_WRITE(reg, I915_READ(reg) | FDI_FS_ERRC_ENABLE | |
| 2035 | FDI_FE_ERRC_ENABLE); |
Zhenyu Wang | 5e84e1a | 2010-10-28 16:38:08 +0800 | [diff] [blame] | 2036 | } |
| 2037 | |
Jesse Barnes | 291427f | 2011-07-29 12:42:37 -0700 | [diff] [blame] | 2038 | static void cpt_phase_pointer_enable(struct drm_device *dev, int pipe) |
| 2039 | { |
| 2040 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 2041 | u32 flags = I915_READ(SOUTH_CHICKEN1); |
| 2042 | |
| 2043 | flags |= FDI_PHASE_SYNC_OVR(pipe); |
| 2044 | I915_WRITE(SOUTH_CHICKEN1, flags); /* once to unlock... */ |
| 2045 | flags |= FDI_PHASE_SYNC_EN(pipe); |
| 2046 | I915_WRITE(SOUTH_CHICKEN1, flags); /* then again to enable */ |
| 2047 | POSTING_READ(SOUTH_CHICKEN1); |
| 2048 | } |
| 2049 | |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 2050 | /* The FDI link training functions for ILK/Ibexpeak. */ |
| 2051 | static void ironlake_fdi_link_train(struct drm_crtc *crtc) |
| 2052 | { |
| 2053 | struct drm_device *dev = crtc->dev; |
| 2054 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 2055 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 2056 | int pipe = intel_crtc->pipe; |
Jesse Barnes | 0fc932b | 2011-01-04 15:09:37 -0800 | [diff] [blame] | 2057 | int plane = intel_crtc->plane; |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2058 | u32 reg, temp, tries; |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 2059 | |
Jesse Barnes | 0fc932b | 2011-01-04 15:09:37 -0800 | [diff] [blame] | 2060 | /* FDI needs bits from pipe & plane first */ |
| 2061 | assert_pipe_enabled(dev_priv, pipe); |
| 2062 | assert_plane_enabled(dev_priv, plane); |
| 2063 | |
Adam Jackson | e1a4474 | 2010-06-25 15:32:14 -0400 | [diff] [blame] | 2064 | /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit |
| 2065 | for train result */ |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2066 | reg = FDI_RX_IMR(pipe); |
| 2067 | temp = I915_READ(reg); |
Adam Jackson | e1a4474 | 2010-06-25 15:32:14 -0400 | [diff] [blame] | 2068 | temp &= ~FDI_RX_SYMBOL_LOCK; |
| 2069 | temp &= ~FDI_RX_BIT_LOCK; |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2070 | I915_WRITE(reg, temp); |
| 2071 | I915_READ(reg); |
Adam Jackson | e1a4474 | 2010-06-25 15:32:14 -0400 | [diff] [blame] | 2072 | udelay(150); |
| 2073 | |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 2074 | /* enable CPU FDI TX and PCH FDI RX */ |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2075 | reg = FDI_TX_CTL(pipe); |
| 2076 | temp = I915_READ(reg); |
Adam Jackson | 77ffb59 | 2010-04-12 11:38:44 -0400 | [diff] [blame] | 2077 | temp &= ~(7 << 19); |
| 2078 | temp |= (intel_crtc->fdi_lanes - 1) << 19; |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 2079 | temp &= ~FDI_LINK_TRAIN_NONE; |
| 2080 | temp |= FDI_LINK_TRAIN_PATTERN_1; |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2081 | I915_WRITE(reg, temp | FDI_TX_ENABLE); |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 2082 | |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2083 | reg = FDI_RX_CTL(pipe); |
| 2084 | temp = I915_READ(reg); |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 2085 | temp &= ~FDI_LINK_TRAIN_NONE; |
| 2086 | temp |= FDI_LINK_TRAIN_PATTERN_1; |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2087 | I915_WRITE(reg, temp | FDI_RX_ENABLE); |
| 2088 | |
| 2089 | POSTING_READ(reg); |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 2090 | udelay(150); |
| 2091 | |
Jesse Barnes | 5b2adf8 | 2010-10-07 16:01:15 -0700 | [diff] [blame] | 2092 | /* Ironlake workaround, enable clock pointer after FDI enable*/ |
Jesse Barnes | 6f06ce1 | 2011-01-04 15:09:38 -0800 | [diff] [blame] | 2093 | if (HAS_PCH_IBX(dev)) { |
| 2094 | I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR); |
| 2095 | I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR | |
| 2096 | FDI_RX_PHASE_SYNC_POINTER_EN); |
| 2097 | } |
Jesse Barnes | 5b2adf8 | 2010-10-07 16:01:15 -0700 | [diff] [blame] | 2098 | |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2099 | reg = FDI_RX_IIR(pipe); |
Adam Jackson | e1a4474 | 2010-06-25 15:32:14 -0400 | [diff] [blame] | 2100 | for (tries = 0; tries < 5; tries++) { |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2101 | temp = I915_READ(reg); |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 2102 | DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp); |
| 2103 | |
| 2104 | if ((temp & FDI_RX_BIT_LOCK)) { |
| 2105 | DRM_DEBUG_KMS("FDI train 1 done.\n"); |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2106 | I915_WRITE(reg, temp | FDI_RX_BIT_LOCK); |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 2107 | break; |
| 2108 | } |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 2109 | } |
Adam Jackson | e1a4474 | 2010-06-25 15:32:14 -0400 | [diff] [blame] | 2110 | if (tries == 5) |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2111 | DRM_ERROR("FDI train 1 fail!\n"); |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 2112 | |
| 2113 | /* Train 2 */ |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2114 | reg = FDI_TX_CTL(pipe); |
| 2115 | temp = I915_READ(reg); |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 2116 | temp &= ~FDI_LINK_TRAIN_NONE; |
| 2117 | temp |= FDI_LINK_TRAIN_PATTERN_2; |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2118 | I915_WRITE(reg, temp); |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 2119 | |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2120 | reg = FDI_RX_CTL(pipe); |
| 2121 | temp = I915_READ(reg); |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 2122 | temp &= ~FDI_LINK_TRAIN_NONE; |
| 2123 | temp |= FDI_LINK_TRAIN_PATTERN_2; |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2124 | I915_WRITE(reg, temp); |
| 2125 | |
| 2126 | POSTING_READ(reg); |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 2127 | udelay(150); |
| 2128 | |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2129 | reg = FDI_RX_IIR(pipe); |
Adam Jackson | e1a4474 | 2010-06-25 15:32:14 -0400 | [diff] [blame] | 2130 | for (tries = 0; tries < 5; tries++) { |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2131 | temp = I915_READ(reg); |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 2132 | DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp); |
| 2133 | |
| 2134 | if (temp & FDI_RX_SYMBOL_LOCK) { |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2135 | I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK); |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 2136 | DRM_DEBUG_KMS("FDI train 2 done.\n"); |
| 2137 | break; |
| 2138 | } |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 2139 | } |
Adam Jackson | e1a4474 | 2010-06-25 15:32:14 -0400 | [diff] [blame] | 2140 | if (tries == 5) |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2141 | DRM_ERROR("FDI train 2 fail!\n"); |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 2142 | |
| 2143 | DRM_DEBUG_KMS("FDI train done\n"); |
Jesse Barnes | 5c5313c | 2010-10-07 16:01:11 -0700 | [diff] [blame] | 2144 | |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 2145 | } |
| 2146 | |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 2147 | static const int snb_b_fdi_train_param[] = { |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 2148 | FDI_LINK_TRAIN_400MV_0DB_SNB_B, |
| 2149 | FDI_LINK_TRAIN_400MV_6DB_SNB_B, |
| 2150 | FDI_LINK_TRAIN_600MV_3_5DB_SNB_B, |
| 2151 | FDI_LINK_TRAIN_800MV_0DB_SNB_B, |
| 2152 | }; |
| 2153 | |
| 2154 | /* The FDI link training functions for SNB/Cougarpoint. */ |
| 2155 | static void gen6_fdi_link_train(struct drm_crtc *crtc) |
| 2156 | { |
| 2157 | struct drm_device *dev = crtc->dev; |
| 2158 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 2159 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 2160 | int pipe = intel_crtc->pipe; |
Sean Paul | fa37d39 | 2012-03-02 12:53:39 -0500 | [diff] [blame] | 2161 | u32 reg, temp, i, retry; |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 2162 | |
Adam Jackson | e1a4474 | 2010-06-25 15:32:14 -0400 | [diff] [blame] | 2163 | /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit |
| 2164 | for train result */ |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2165 | reg = FDI_RX_IMR(pipe); |
| 2166 | temp = I915_READ(reg); |
Adam Jackson | e1a4474 | 2010-06-25 15:32:14 -0400 | [diff] [blame] | 2167 | temp &= ~FDI_RX_SYMBOL_LOCK; |
| 2168 | temp &= ~FDI_RX_BIT_LOCK; |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2169 | I915_WRITE(reg, temp); |
| 2170 | |
| 2171 | POSTING_READ(reg); |
Adam Jackson | e1a4474 | 2010-06-25 15:32:14 -0400 | [diff] [blame] | 2172 | udelay(150); |
| 2173 | |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 2174 | /* enable CPU FDI TX and PCH FDI RX */ |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2175 | reg = FDI_TX_CTL(pipe); |
| 2176 | temp = I915_READ(reg); |
Adam Jackson | 77ffb59 | 2010-04-12 11:38:44 -0400 | [diff] [blame] | 2177 | temp &= ~(7 << 19); |
| 2178 | temp |= (intel_crtc->fdi_lanes - 1) << 19; |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 2179 | temp &= ~FDI_LINK_TRAIN_NONE; |
| 2180 | temp |= FDI_LINK_TRAIN_PATTERN_1; |
| 2181 | temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK; |
| 2182 | /* SNB-B */ |
| 2183 | temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B; |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2184 | I915_WRITE(reg, temp | FDI_TX_ENABLE); |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 2185 | |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2186 | reg = FDI_RX_CTL(pipe); |
| 2187 | temp = I915_READ(reg); |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 2188 | if (HAS_PCH_CPT(dev)) { |
| 2189 | temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT; |
| 2190 | temp |= FDI_LINK_TRAIN_PATTERN_1_CPT; |
| 2191 | } else { |
| 2192 | temp &= ~FDI_LINK_TRAIN_NONE; |
| 2193 | temp |= FDI_LINK_TRAIN_PATTERN_1; |
| 2194 | } |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2195 | I915_WRITE(reg, temp | FDI_RX_ENABLE); |
| 2196 | |
| 2197 | POSTING_READ(reg); |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 2198 | udelay(150); |
| 2199 | |
Jesse Barnes | 291427f | 2011-07-29 12:42:37 -0700 | [diff] [blame] | 2200 | if (HAS_PCH_CPT(dev)) |
| 2201 | cpt_phase_pointer_enable(dev, pipe); |
| 2202 | |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 2203 | for (i = 0; i < 4; i++) { |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2204 | reg = FDI_TX_CTL(pipe); |
| 2205 | temp = I915_READ(reg); |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 2206 | temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK; |
| 2207 | temp |= snb_b_fdi_train_param[i]; |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2208 | I915_WRITE(reg, temp); |
| 2209 | |
| 2210 | POSTING_READ(reg); |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 2211 | udelay(500); |
| 2212 | |
Sean Paul | fa37d39 | 2012-03-02 12:53:39 -0500 | [diff] [blame] | 2213 | for (retry = 0; retry < 5; retry++) { |
| 2214 | reg = FDI_RX_IIR(pipe); |
| 2215 | temp = I915_READ(reg); |
| 2216 | DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp); |
| 2217 | if (temp & FDI_RX_BIT_LOCK) { |
| 2218 | I915_WRITE(reg, temp | FDI_RX_BIT_LOCK); |
| 2219 | DRM_DEBUG_KMS("FDI train 1 done.\n"); |
| 2220 | break; |
| 2221 | } |
| 2222 | udelay(50); |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 2223 | } |
Sean Paul | fa37d39 | 2012-03-02 12:53:39 -0500 | [diff] [blame] | 2224 | if (retry < 5) |
| 2225 | break; |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 2226 | } |
| 2227 | if (i == 4) |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2228 | DRM_ERROR("FDI train 1 fail!\n"); |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 2229 | |
| 2230 | /* Train 2 */ |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2231 | reg = FDI_TX_CTL(pipe); |
| 2232 | temp = I915_READ(reg); |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 2233 | temp &= ~FDI_LINK_TRAIN_NONE; |
| 2234 | temp |= FDI_LINK_TRAIN_PATTERN_2; |
| 2235 | if (IS_GEN6(dev)) { |
| 2236 | temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK; |
| 2237 | /* SNB-B */ |
| 2238 | temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B; |
| 2239 | } |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2240 | I915_WRITE(reg, temp); |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 2241 | |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2242 | reg = FDI_RX_CTL(pipe); |
| 2243 | temp = I915_READ(reg); |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 2244 | if (HAS_PCH_CPT(dev)) { |
| 2245 | temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT; |
| 2246 | temp |= FDI_LINK_TRAIN_PATTERN_2_CPT; |
| 2247 | } else { |
| 2248 | temp &= ~FDI_LINK_TRAIN_NONE; |
| 2249 | temp |= FDI_LINK_TRAIN_PATTERN_2; |
| 2250 | } |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2251 | I915_WRITE(reg, temp); |
| 2252 | |
| 2253 | POSTING_READ(reg); |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 2254 | udelay(150); |
| 2255 | |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 2256 | for (i = 0; i < 4; i++) { |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2257 | reg = FDI_TX_CTL(pipe); |
| 2258 | temp = I915_READ(reg); |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 2259 | temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK; |
| 2260 | temp |= snb_b_fdi_train_param[i]; |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2261 | I915_WRITE(reg, temp); |
| 2262 | |
| 2263 | POSTING_READ(reg); |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 2264 | udelay(500); |
| 2265 | |
Sean Paul | fa37d39 | 2012-03-02 12:53:39 -0500 | [diff] [blame] | 2266 | for (retry = 0; retry < 5; retry++) { |
| 2267 | reg = FDI_RX_IIR(pipe); |
| 2268 | temp = I915_READ(reg); |
| 2269 | DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp); |
| 2270 | if (temp & FDI_RX_SYMBOL_LOCK) { |
| 2271 | I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK); |
| 2272 | DRM_DEBUG_KMS("FDI train 2 done.\n"); |
| 2273 | break; |
| 2274 | } |
| 2275 | udelay(50); |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 2276 | } |
Sean Paul | fa37d39 | 2012-03-02 12:53:39 -0500 | [diff] [blame] | 2277 | if (retry < 5) |
| 2278 | break; |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 2279 | } |
| 2280 | if (i == 4) |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2281 | DRM_ERROR("FDI train 2 fail!\n"); |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 2282 | |
| 2283 | DRM_DEBUG_KMS("FDI train done.\n"); |
| 2284 | } |
| 2285 | |
Jesse Barnes | 357555c | 2011-04-28 15:09:55 -0700 | [diff] [blame] | 2286 | /* Manual link training for Ivy Bridge A0 parts */ |
| 2287 | static void ivb_manual_fdi_link_train(struct drm_crtc *crtc) |
| 2288 | { |
| 2289 | struct drm_device *dev = crtc->dev; |
| 2290 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 2291 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 2292 | int pipe = intel_crtc->pipe; |
| 2293 | u32 reg, temp, i; |
| 2294 | |
| 2295 | /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit |
| 2296 | for train result */ |
| 2297 | reg = FDI_RX_IMR(pipe); |
| 2298 | temp = I915_READ(reg); |
| 2299 | temp &= ~FDI_RX_SYMBOL_LOCK; |
| 2300 | temp &= ~FDI_RX_BIT_LOCK; |
| 2301 | I915_WRITE(reg, temp); |
| 2302 | |
| 2303 | POSTING_READ(reg); |
| 2304 | udelay(150); |
| 2305 | |
| 2306 | /* enable CPU FDI TX and PCH FDI RX */ |
| 2307 | reg = FDI_TX_CTL(pipe); |
| 2308 | temp = I915_READ(reg); |
| 2309 | temp &= ~(7 << 19); |
| 2310 | temp |= (intel_crtc->fdi_lanes - 1) << 19; |
| 2311 | temp &= ~(FDI_LINK_TRAIN_AUTO | FDI_LINK_TRAIN_NONE_IVB); |
| 2312 | temp |= FDI_LINK_TRAIN_PATTERN_1_IVB; |
| 2313 | temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK; |
| 2314 | temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B; |
Jesse Barnes | c4f9c4c | 2011-10-10 14:28:52 -0700 | [diff] [blame] | 2315 | temp |= FDI_COMPOSITE_SYNC; |
Jesse Barnes | 357555c | 2011-04-28 15:09:55 -0700 | [diff] [blame] | 2316 | I915_WRITE(reg, temp | FDI_TX_ENABLE); |
| 2317 | |
| 2318 | reg = FDI_RX_CTL(pipe); |
| 2319 | temp = I915_READ(reg); |
| 2320 | temp &= ~FDI_LINK_TRAIN_AUTO; |
| 2321 | temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT; |
| 2322 | temp |= FDI_LINK_TRAIN_PATTERN_1_CPT; |
Jesse Barnes | c4f9c4c | 2011-10-10 14:28:52 -0700 | [diff] [blame] | 2323 | temp |= FDI_COMPOSITE_SYNC; |
Jesse Barnes | 357555c | 2011-04-28 15:09:55 -0700 | [diff] [blame] | 2324 | I915_WRITE(reg, temp | FDI_RX_ENABLE); |
| 2325 | |
| 2326 | POSTING_READ(reg); |
| 2327 | udelay(150); |
| 2328 | |
Jesse Barnes | 291427f | 2011-07-29 12:42:37 -0700 | [diff] [blame] | 2329 | if (HAS_PCH_CPT(dev)) |
| 2330 | cpt_phase_pointer_enable(dev, pipe); |
| 2331 | |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 2332 | for (i = 0; i < 4; i++) { |
Jesse Barnes | 357555c | 2011-04-28 15:09:55 -0700 | [diff] [blame] | 2333 | reg = FDI_TX_CTL(pipe); |
| 2334 | temp = I915_READ(reg); |
| 2335 | temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK; |
| 2336 | temp |= snb_b_fdi_train_param[i]; |
| 2337 | I915_WRITE(reg, temp); |
| 2338 | |
| 2339 | POSTING_READ(reg); |
| 2340 | udelay(500); |
| 2341 | |
| 2342 | reg = FDI_RX_IIR(pipe); |
| 2343 | temp = I915_READ(reg); |
| 2344 | DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp); |
| 2345 | |
| 2346 | if (temp & FDI_RX_BIT_LOCK || |
| 2347 | (I915_READ(reg) & FDI_RX_BIT_LOCK)) { |
| 2348 | I915_WRITE(reg, temp | FDI_RX_BIT_LOCK); |
| 2349 | DRM_DEBUG_KMS("FDI train 1 done.\n"); |
| 2350 | break; |
| 2351 | } |
| 2352 | } |
| 2353 | if (i == 4) |
| 2354 | DRM_ERROR("FDI train 1 fail!\n"); |
| 2355 | |
| 2356 | /* Train 2 */ |
| 2357 | reg = FDI_TX_CTL(pipe); |
| 2358 | temp = I915_READ(reg); |
| 2359 | temp &= ~FDI_LINK_TRAIN_NONE_IVB; |
| 2360 | temp |= FDI_LINK_TRAIN_PATTERN_2_IVB; |
| 2361 | temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK; |
| 2362 | temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B; |
| 2363 | I915_WRITE(reg, temp); |
| 2364 | |
| 2365 | reg = FDI_RX_CTL(pipe); |
| 2366 | temp = I915_READ(reg); |
| 2367 | temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT; |
| 2368 | temp |= FDI_LINK_TRAIN_PATTERN_2_CPT; |
| 2369 | I915_WRITE(reg, temp); |
| 2370 | |
| 2371 | POSTING_READ(reg); |
| 2372 | udelay(150); |
| 2373 | |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 2374 | for (i = 0; i < 4; i++) { |
Jesse Barnes | 357555c | 2011-04-28 15:09:55 -0700 | [diff] [blame] | 2375 | reg = FDI_TX_CTL(pipe); |
| 2376 | temp = I915_READ(reg); |
| 2377 | temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK; |
| 2378 | temp |= snb_b_fdi_train_param[i]; |
| 2379 | I915_WRITE(reg, temp); |
| 2380 | |
| 2381 | POSTING_READ(reg); |
| 2382 | udelay(500); |
| 2383 | |
| 2384 | reg = FDI_RX_IIR(pipe); |
| 2385 | temp = I915_READ(reg); |
| 2386 | DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp); |
| 2387 | |
| 2388 | if (temp & FDI_RX_SYMBOL_LOCK) { |
| 2389 | I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK); |
| 2390 | DRM_DEBUG_KMS("FDI train 2 done.\n"); |
| 2391 | break; |
| 2392 | } |
| 2393 | } |
| 2394 | if (i == 4) |
| 2395 | DRM_ERROR("FDI train 2 fail!\n"); |
| 2396 | |
| 2397 | DRM_DEBUG_KMS("FDI train done.\n"); |
| 2398 | } |
| 2399 | |
| 2400 | static void ironlake_fdi_pll_enable(struct drm_crtc *crtc) |
Jesse Barnes | 0e23b99 | 2010-09-10 11:10:00 -0700 | [diff] [blame] | 2401 | { |
| 2402 | struct drm_device *dev = crtc->dev; |
| 2403 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 2404 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 2405 | int pipe = intel_crtc->pipe; |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2406 | u32 reg, temp; |
Jesse Barnes | 0e23b99 | 2010-09-10 11:10:00 -0700 | [diff] [blame] | 2407 | |
Jesse Barnes | c64e311 | 2010-09-10 11:27:03 -0700 | [diff] [blame] | 2408 | /* Write the TU size bits so error detection works */ |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2409 | I915_WRITE(FDI_RX_TUSIZE1(pipe), |
| 2410 | I915_READ(PIPE_DATA_M1(pipe)) & TU_SIZE_MASK); |
Jesse Barnes | c64e311 | 2010-09-10 11:27:03 -0700 | [diff] [blame] | 2411 | |
Jesse Barnes | 0e23b99 | 2010-09-10 11:10:00 -0700 | [diff] [blame] | 2412 | /* enable PCH FDI RX PLL, wait warmup plus DMI latency */ |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2413 | reg = FDI_RX_CTL(pipe); |
| 2414 | temp = I915_READ(reg); |
| 2415 | temp &= ~((0x7 << 19) | (0x7 << 16)); |
Jesse Barnes | 0e23b99 | 2010-09-10 11:10:00 -0700 | [diff] [blame] | 2416 | temp |= (intel_crtc->fdi_lanes - 1) << 19; |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2417 | temp |= (I915_READ(PIPECONF(pipe)) & PIPE_BPC_MASK) << 11; |
| 2418 | I915_WRITE(reg, temp | FDI_RX_PLL_ENABLE); |
| 2419 | |
| 2420 | POSTING_READ(reg); |
Jesse Barnes | 0e23b99 | 2010-09-10 11:10:00 -0700 | [diff] [blame] | 2421 | udelay(200); |
| 2422 | |
| 2423 | /* Switch from Rawclk to PCDclk */ |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2424 | temp = I915_READ(reg); |
| 2425 | I915_WRITE(reg, temp | FDI_PCDCLK); |
| 2426 | |
| 2427 | POSTING_READ(reg); |
Jesse Barnes | 0e23b99 | 2010-09-10 11:10:00 -0700 | [diff] [blame] | 2428 | udelay(200); |
| 2429 | |
| 2430 | /* Enable CPU FDI TX PLL, always on for Ironlake */ |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2431 | reg = FDI_TX_CTL(pipe); |
| 2432 | temp = I915_READ(reg); |
Jesse Barnes | 0e23b99 | 2010-09-10 11:10:00 -0700 | [diff] [blame] | 2433 | if ((temp & FDI_TX_PLL_ENABLE) == 0) { |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2434 | I915_WRITE(reg, temp | FDI_TX_PLL_ENABLE); |
| 2435 | |
| 2436 | POSTING_READ(reg); |
Jesse Barnes | 0e23b99 | 2010-09-10 11:10:00 -0700 | [diff] [blame] | 2437 | udelay(100); |
| 2438 | } |
| 2439 | } |
| 2440 | |
Jesse Barnes | 291427f | 2011-07-29 12:42:37 -0700 | [diff] [blame] | 2441 | static void cpt_phase_pointer_disable(struct drm_device *dev, int pipe) |
| 2442 | { |
| 2443 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 2444 | u32 flags = I915_READ(SOUTH_CHICKEN1); |
| 2445 | |
| 2446 | flags &= ~(FDI_PHASE_SYNC_EN(pipe)); |
| 2447 | I915_WRITE(SOUTH_CHICKEN1, flags); /* once to disable... */ |
| 2448 | flags &= ~(FDI_PHASE_SYNC_OVR(pipe)); |
| 2449 | I915_WRITE(SOUTH_CHICKEN1, flags); /* then again to lock */ |
| 2450 | POSTING_READ(SOUTH_CHICKEN1); |
| 2451 | } |
Jesse Barnes | 0fc932b | 2011-01-04 15:09:37 -0800 | [diff] [blame] | 2452 | static void ironlake_fdi_disable(struct drm_crtc *crtc) |
| 2453 | { |
| 2454 | struct drm_device *dev = crtc->dev; |
| 2455 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 2456 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 2457 | int pipe = intel_crtc->pipe; |
| 2458 | u32 reg, temp; |
| 2459 | |
| 2460 | /* disable CPU FDI tx and PCH FDI rx */ |
| 2461 | reg = FDI_TX_CTL(pipe); |
| 2462 | temp = I915_READ(reg); |
| 2463 | I915_WRITE(reg, temp & ~FDI_TX_ENABLE); |
| 2464 | POSTING_READ(reg); |
| 2465 | |
| 2466 | reg = FDI_RX_CTL(pipe); |
| 2467 | temp = I915_READ(reg); |
| 2468 | temp &= ~(0x7 << 16); |
| 2469 | temp |= (I915_READ(PIPECONF(pipe)) & PIPE_BPC_MASK) << 11; |
| 2470 | I915_WRITE(reg, temp & ~FDI_RX_ENABLE); |
| 2471 | |
| 2472 | POSTING_READ(reg); |
| 2473 | udelay(100); |
| 2474 | |
| 2475 | /* Ironlake workaround, disable clock pointer after downing FDI */ |
Jesse Barnes | 6f06ce1 | 2011-01-04 15:09:38 -0800 | [diff] [blame] | 2476 | if (HAS_PCH_IBX(dev)) { |
| 2477 | I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR); |
Jesse Barnes | 0fc932b | 2011-01-04 15:09:37 -0800 | [diff] [blame] | 2478 | I915_WRITE(FDI_RX_CHICKEN(pipe), |
| 2479 | I915_READ(FDI_RX_CHICKEN(pipe) & |
Jesse Barnes | 6f06ce1 | 2011-01-04 15:09:38 -0800 | [diff] [blame] | 2480 | ~FDI_RX_PHASE_SYNC_POINTER_EN)); |
Jesse Barnes | 291427f | 2011-07-29 12:42:37 -0700 | [diff] [blame] | 2481 | } else if (HAS_PCH_CPT(dev)) { |
| 2482 | cpt_phase_pointer_disable(dev, pipe); |
Jesse Barnes | 6f06ce1 | 2011-01-04 15:09:38 -0800 | [diff] [blame] | 2483 | } |
Jesse Barnes | 0fc932b | 2011-01-04 15:09:37 -0800 | [diff] [blame] | 2484 | |
| 2485 | /* still set train pattern 1 */ |
| 2486 | reg = FDI_TX_CTL(pipe); |
| 2487 | temp = I915_READ(reg); |
| 2488 | temp &= ~FDI_LINK_TRAIN_NONE; |
| 2489 | temp |= FDI_LINK_TRAIN_PATTERN_1; |
| 2490 | I915_WRITE(reg, temp); |
| 2491 | |
| 2492 | reg = FDI_RX_CTL(pipe); |
| 2493 | temp = I915_READ(reg); |
| 2494 | if (HAS_PCH_CPT(dev)) { |
| 2495 | temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT; |
| 2496 | temp |= FDI_LINK_TRAIN_PATTERN_1_CPT; |
| 2497 | } else { |
| 2498 | temp &= ~FDI_LINK_TRAIN_NONE; |
| 2499 | temp |= FDI_LINK_TRAIN_PATTERN_1; |
| 2500 | } |
| 2501 | /* BPC in FDI rx is consistent with that in PIPECONF */ |
| 2502 | temp &= ~(0x07 << 16); |
| 2503 | temp |= (I915_READ(PIPECONF(pipe)) & PIPE_BPC_MASK) << 11; |
| 2504 | I915_WRITE(reg, temp); |
| 2505 | |
| 2506 | POSTING_READ(reg); |
| 2507 | udelay(100); |
| 2508 | } |
| 2509 | |
Chris Wilson | 6b383a7 | 2010-09-13 13:54:26 +0100 | [diff] [blame] | 2510 | /* |
| 2511 | * When we disable a pipe, we need to clear any pending scanline wait events |
| 2512 | * to avoid hanging the ring, which we assume we are waiting on. |
| 2513 | */ |
| 2514 | static void intel_clear_scanline_wait(struct drm_device *dev) |
| 2515 | { |
| 2516 | struct drm_i915_private *dev_priv = dev->dev_private; |
Chris Wilson | 8168bd4 | 2010-11-11 17:54:52 +0000 | [diff] [blame] | 2517 | struct intel_ring_buffer *ring; |
Chris Wilson | 6b383a7 | 2010-09-13 13:54:26 +0100 | [diff] [blame] | 2518 | u32 tmp; |
| 2519 | |
| 2520 | if (IS_GEN2(dev)) |
| 2521 | /* Can't break the hang on i8xx */ |
| 2522 | return; |
| 2523 | |
Chris Wilson | 1ec14ad | 2010-12-04 11:30:53 +0000 | [diff] [blame] | 2524 | ring = LP_RING(dev_priv); |
Chris Wilson | 8168bd4 | 2010-11-11 17:54:52 +0000 | [diff] [blame] | 2525 | tmp = I915_READ_CTL(ring); |
| 2526 | if (tmp & RING_WAIT) |
| 2527 | I915_WRITE_CTL(ring, tmp); |
Chris Wilson | 6b383a7 | 2010-09-13 13:54:26 +0100 | [diff] [blame] | 2528 | } |
| 2529 | |
Chris Wilson | e6c3a2a | 2010-09-23 23:04:43 +0100 | [diff] [blame] | 2530 | static void intel_crtc_wait_for_pending_flips(struct drm_crtc *crtc) |
| 2531 | { |
Chris Wilson | 0f91128 | 2012-04-17 10:05:38 +0100 | [diff] [blame] | 2532 | struct drm_device *dev = crtc->dev; |
Chris Wilson | e6c3a2a | 2010-09-23 23:04:43 +0100 | [diff] [blame] | 2533 | |
| 2534 | if (crtc->fb == NULL) |
| 2535 | return; |
| 2536 | |
Chris Wilson | 0f91128 | 2012-04-17 10:05:38 +0100 | [diff] [blame] | 2537 | mutex_lock(&dev->struct_mutex); |
| 2538 | intel_finish_fb(crtc->fb); |
| 2539 | mutex_unlock(&dev->struct_mutex); |
Chris Wilson | e6c3a2a | 2010-09-23 23:04:43 +0100 | [diff] [blame] | 2540 | } |
| 2541 | |
Jesse Barnes | 040484a | 2011-01-03 12:14:26 -0800 | [diff] [blame] | 2542 | static bool intel_crtc_driving_pch(struct drm_crtc *crtc) |
| 2543 | { |
| 2544 | struct drm_device *dev = crtc->dev; |
| 2545 | struct drm_mode_config *mode_config = &dev->mode_config; |
| 2546 | struct intel_encoder *encoder; |
| 2547 | |
| 2548 | /* |
| 2549 | * If there's a non-PCH eDP on this crtc, it must be DP_A, and that |
| 2550 | * must be driven by its own crtc; no sharing is possible. |
| 2551 | */ |
| 2552 | list_for_each_entry(encoder, &mode_config->encoder_list, base.head) { |
| 2553 | if (encoder->base.crtc != crtc) |
| 2554 | continue; |
| 2555 | |
| 2556 | switch (encoder->type) { |
| 2557 | case INTEL_OUTPUT_EDP: |
| 2558 | if (!intel_encoder_is_pch_edp(&encoder->base)) |
| 2559 | return false; |
| 2560 | continue; |
| 2561 | } |
| 2562 | } |
| 2563 | |
| 2564 | return true; |
| 2565 | } |
| 2566 | |
Jesse Barnes | f67a559 | 2011-01-05 10:31:48 -0800 | [diff] [blame] | 2567 | /* |
| 2568 | * Enable PCH resources required for PCH ports: |
| 2569 | * - PCH PLLs |
| 2570 | * - FDI training & RX/TX |
| 2571 | * - update transcoder timings |
| 2572 | * - DP transcoding bits |
| 2573 | * - transcoder |
| 2574 | */ |
| 2575 | static void ironlake_pch_enable(struct drm_crtc *crtc) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 2576 | { |
| 2577 | struct drm_device *dev = crtc->dev; |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 2578 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 2579 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 2580 | int pipe = intel_crtc->pipe; |
Jesse Barnes | 4b645f1 | 2011-10-12 09:51:31 -0700 | [diff] [blame] | 2581 | u32 reg, temp, transc_sel; |
Jesse Barnes | 6be4a60 | 2010-09-10 10:26:01 -0700 | [diff] [blame] | 2582 | |
Jesse Barnes | c98e9dc | 2010-09-10 10:57:18 -0700 | [diff] [blame] | 2583 | /* For PCH output, training FDI link */ |
Jesse Barnes | 674cf96 | 2011-04-28 14:27:04 -0700 | [diff] [blame] | 2584 | dev_priv->display.fdi_link_train(crtc); |
Jesse Barnes | 6be4a60 | 2010-09-10 10:26:01 -0700 | [diff] [blame] | 2585 | |
Jesse Barnes | 92f2584 | 2011-01-04 15:09:34 -0800 | [diff] [blame] | 2586 | intel_enable_pch_pll(dev_priv, pipe); |
Jesse Barnes | c98e9dc | 2010-09-10 10:57:18 -0700 | [diff] [blame] | 2587 | |
| 2588 | if (HAS_PCH_CPT(dev)) { |
Jesse Barnes | 4b645f1 | 2011-10-12 09:51:31 -0700 | [diff] [blame] | 2589 | transc_sel = intel_crtc->use_pll_a ? TRANSC_DPLLA_SEL : |
| 2590 | TRANSC_DPLLB_SEL; |
| 2591 | |
Jesse Barnes | c98e9dc | 2010-09-10 10:57:18 -0700 | [diff] [blame] | 2592 | /* Be sure PCH DPLL SEL is set */ |
| 2593 | temp = I915_READ(PCH_DPLL_SEL); |
Jesse Barnes | d64311a | 2011-10-12 15:01:33 -0700 | [diff] [blame] | 2594 | if (pipe == 0) { |
| 2595 | temp &= ~(TRANSA_DPLLB_SEL); |
Jesse Barnes | c98e9dc | 2010-09-10 10:57:18 -0700 | [diff] [blame] | 2596 | temp |= (TRANSA_DPLL_ENABLE | TRANSA_DPLLA_SEL); |
Jesse Barnes | d64311a | 2011-10-12 15:01:33 -0700 | [diff] [blame] | 2597 | } else if (pipe == 1) { |
| 2598 | temp &= ~(TRANSB_DPLLB_SEL); |
Jesse Barnes | c98e9dc | 2010-09-10 10:57:18 -0700 | [diff] [blame] | 2599 | temp |= (TRANSB_DPLL_ENABLE | TRANSB_DPLLB_SEL); |
Jesse Barnes | d64311a | 2011-10-12 15:01:33 -0700 | [diff] [blame] | 2600 | } else if (pipe == 2) { |
| 2601 | temp &= ~(TRANSC_DPLLB_SEL); |
Jesse Barnes | 4b645f1 | 2011-10-12 09:51:31 -0700 | [diff] [blame] | 2602 | temp |= (TRANSC_DPLL_ENABLE | transc_sel); |
Jesse Barnes | d64311a | 2011-10-12 15:01:33 -0700 | [diff] [blame] | 2603 | } |
Jesse Barnes | c98e9dc | 2010-09-10 10:57:18 -0700 | [diff] [blame] | 2604 | I915_WRITE(PCH_DPLL_SEL, temp); |
Jesse Barnes | c98e9dc | 2010-09-10 10:57:18 -0700 | [diff] [blame] | 2605 | } |
Jesse Barnes | c98e9dc | 2010-09-10 10:57:18 -0700 | [diff] [blame] | 2606 | |
Jesse Barnes | d9b6cb5 | 2011-01-04 15:09:35 -0800 | [diff] [blame] | 2607 | /* set transcoder timing, panel must allow it */ |
| 2608 | assert_panel_unlocked(dev_priv, pipe); |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2609 | I915_WRITE(TRANS_HTOTAL(pipe), I915_READ(HTOTAL(pipe))); |
| 2610 | I915_WRITE(TRANS_HBLANK(pipe), I915_READ(HBLANK(pipe))); |
| 2611 | I915_WRITE(TRANS_HSYNC(pipe), I915_READ(HSYNC(pipe))); |
| 2612 | |
| 2613 | I915_WRITE(TRANS_VTOTAL(pipe), I915_READ(VTOTAL(pipe))); |
| 2614 | I915_WRITE(TRANS_VBLANK(pipe), I915_READ(VBLANK(pipe))); |
| 2615 | I915_WRITE(TRANS_VSYNC(pipe), I915_READ(VSYNC(pipe))); |
Daniel Vetter | 0529a0d | 2012-01-28 14:49:24 +0100 | [diff] [blame] | 2616 | I915_WRITE(TRANS_VSYNCSHIFT(pipe), I915_READ(VSYNCSHIFT(pipe))); |
Jesse Barnes | c98e9dc | 2010-09-10 10:57:18 -0700 | [diff] [blame] | 2617 | |
Zhenyu Wang | 5e84e1a | 2010-10-28 16:38:08 +0800 | [diff] [blame] | 2618 | intel_fdi_normal_train(crtc); |
| 2619 | |
Jesse Barnes | c98e9dc | 2010-09-10 10:57:18 -0700 | [diff] [blame] | 2620 | /* For PCH DP, enable TRANS_DP_CTL */ |
| 2621 | if (HAS_PCH_CPT(dev) && |
Keith Packard | 417e822 | 2011-11-01 19:54:11 -0700 | [diff] [blame] | 2622 | (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT) || |
| 2623 | intel_pipe_has_type(crtc, INTEL_OUTPUT_EDP))) { |
Jesse Barnes | 9325c9f | 2011-06-24 12:19:21 -0700 | [diff] [blame] | 2624 | u32 bpc = (I915_READ(PIPECONF(pipe)) & PIPE_BPC_MASK) >> 5; |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2625 | reg = TRANS_DP_CTL(pipe); |
| 2626 | temp = I915_READ(reg); |
| 2627 | temp &= ~(TRANS_DP_PORT_SEL_MASK | |
Eric Anholt | 220cad3 | 2010-11-18 09:32:58 +0800 | [diff] [blame] | 2628 | TRANS_DP_SYNC_MASK | |
| 2629 | TRANS_DP_BPC_MASK); |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2630 | temp |= (TRANS_DP_OUTPUT_ENABLE | |
| 2631 | TRANS_DP_ENH_FRAMING); |
Jesse Barnes | 9325c9f | 2011-06-24 12:19:21 -0700 | [diff] [blame] | 2632 | temp |= bpc << 9; /* same format but at 11:9 */ |
Jesse Barnes | c98e9dc | 2010-09-10 10:57:18 -0700 | [diff] [blame] | 2633 | |
| 2634 | if (crtc->mode.flags & DRM_MODE_FLAG_PHSYNC) |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2635 | temp |= TRANS_DP_HSYNC_ACTIVE_HIGH; |
Jesse Barnes | c98e9dc | 2010-09-10 10:57:18 -0700 | [diff] [blame] | 2636 | if (crtc->mode.flags & DRM_MODE_FLAG_PVSYNC) |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2637 | temp |= TRANS_DP_VSYNC_ACTIVE_HIGH; |
Jesse Barnes | c98e9dc | 2010-09-10 10:57:18 -0700 | [diff] [blame] | 2638 | |
| 2639 | switch (intel_trans_dp_port_sel(crtc)) { |
| 2640 | case PCH_DP_B: |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2641 | temp |= TRANS_DP_PORT_SEL_B; |
Jesse Barnes | c98e9dc | 2010-09-10 10:57:18 -0700 | [diff] [blame] | 2642 | break; |
| 2643 | case PCH_DP_C: |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2644 | temp |= TRANS_DP_PORT_SEL_C; |
Jesse Barnes | c98e9dc | 2010-09-10 10:57:18 -0700 | [diff] [blame] | 2645 | break; |
| 2646 | case PCH_DP_D: |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2647 | temp |= TRANS_DP_PORT_SEL_D; |
Jesse Barnes | c98e9dc | 2010-09-10 10:57:18 -0700 | [diff] [blame] | 2648 | break; |
| 2649 | default: |
| 2650 | DRM_DEBUG_KMS("Wrong PCH DP port return. Guess port B\n"); |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2651 | temp |= TRANS_DP_PORT_SEL_B; |
Jesse Barnes | c98e9dc | 2010-09-10 10:57:18 -0700 | [diff] [blame] | 2652 | break; |
| 2653 | } |
| 2654 | |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2655 | I915_WRITE(reg, temp); |
Jesse Barnes | c98e9dc | 2010-09-10 10:57:18 -0700 | [diff] [blame] | 2656 | } |
| 2657 | |
Jesse Barnes | 040484a | 2011-01-03 12:14:26 -0800 | [diff] [blame] | 2658 | intel_enable_transcoder(dev_priv, pipe); |
Jesse Barnes | f67a559 | 2011-01-05 10:31:48 -0800 | [diff] [blame] | 2659 | } |
| 2660 | |
Jesse Barnes | d4270e5 | 2011-10-11 10:43:02 -0700 | [diff] [blame] | 2661 | void intel_cpt_verify_modeset(struct drm_device *dev, int pipe) |
| 2662 | { |
| 2663 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 2664 | int dslreg = PIPEDSL(pipe), tc2reg = TRANS_CHICKEN2(pipe); |
| 2665 | u32 temp; |
| 2666 | |
| 2667 | temp = I915_READ(dslreg); |
| 2668 | udelay(500); |
| 2669 | if (wait_for(I915_READ(dslreg) != temp, 5)) { |
| 2670 | /* Without this, mode sets may fail silently on FDI */ |
| 2671 | I915_WRITE(tc2reg, TRANS_AUTOTRAIN_GEN_STALL_DIS); |
| 2672 | udelay(250); |
| 2673 | I915_WRITE(tc2reg, 0); |
| 2674 | if (wait_for(I915_READ(dslreg) != temp, 5)) |
| 2675 | DRM_ERROR("mode set failed: pipe %d stuck\n", pipe); |
| 2676 | } |
| 2677 | } |
| 2678 | |
Jesse Barnes | f67a559 | 2011-01-05 10:31:48 -0800 | [diff] [blame] | 2679 | static void ironlake_crtc_enable(struct drm_crtc *crtc) |
| 2680 | { |
| 2681 | struct drm_device *dev = crtc->dev; |
| 2682 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 2683 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 2684 | int pipe = intel_crtc->pipe; |
| 2685 | int plane = intel_crtc->plane; |
| 2686 | u32 temp; |
| 2687 | bool is_pch_port; |
| 2688 | |
| 2689 | if (intel_crtc->active) |
| 2690 | return; |
| 2691 | |
| 2692 | intel_crtc->active = true; |
| 2693 | intel_update_watermarks(dev); |
| 2694 | |
| 2695 | if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) { |
| 2696 | temp = I915_READ(PCH_LVDS); |
| 2697 | if ((temp & LVDS_PORT_EN) == 0) |
| 2698 | I915_WRITE(PCH_LVDS, temp | LVDS_PORT_EN); |
| 2699 | } |
| 2700 | |
| 2701 | is_pch_port = intel_crtc_driving_pch(crtc); |
| 2702 | |
| 2703 | if (is_pch_port) |
Jesse Barnes | 357555c | 2011-04-28 15:09:55 -0700 | [diff] [blame] | 2704 | ironlake_fdi_pll_enable(crtc); |
Jesse Barnes | f67a559 | 2011-01-05 10:31:48 -0800 | [diff] [blame] | 2705 | else |
| 2706 | ironlake_fdi_disable(crtc); |
| 2707 | |
| 2708 | /* Enable panel fitting for LVDS */ |
| 2709 | if (dev_priv->pch_pf_size && |
| 2710 | (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS) || HAS_eDP)) { |
| 2711 | /* Force use of hard-coded filter coefficients |
| 2712 | * as some pre-programmed values are broken, |
| 2713 | * e.g. x201. |
| 2714 | */ |
Jesse Barnes | 9db4a9c | 2011-02-07 12:26:52 -0800 | [diff] [blame] | 2715 | I915_WRITE(PF_CTL(pipe), PF_ENABLE | PF_FILTER_MED_3x3); |
| 2716 | I915_WRITE(PF_WIN_POS(pipe), dev_priv->pch_pf_pos); |
| 2717 | I915_WRITE(PF_WIN_SZ(pipe), dev_priv->pch_pf_size); |
Jesse Barnes | f67a559 | 2011-01-05 10:31:48 -0800 | [diff] [blame] | 2718 | } |
| 2719 | |
Jesse Barnes | 9c54c0d | 2011-06-15 23:32:33 +0200 | [diff] [blame] | 2720 | /* |
| 2721 | * On ILK+ LUT must be loaded before the pipe is running but with |
| 2722 | * clocks enabled |
| 2723 | */ |
| 2724 | intel_crtc_load_lut(crtc); |
| 2725 | |
Jesse Barnes | f67a559 | 2011-01-05 10:31:48 -0800 | [diff] [blame] | 2726 | intel_enable_pipe(dev_priv, pipe, is_pch_port); |
| 2727 | intel_enable_plane(dev_priv, plane, pipe); |
| 2728 | |
| 2729 | if (is_pch_port) |
| 2730 | ironlake_pch_enable(crtc); |
Jesse Barnes | 6be4a60 | 2010-09-10 10:26:01 -0700 | [diff] [blame] | 2731 | |
Ben Widawsky | d1ebd816 | 2011-04-25 20:11:50 +0100 | [diff] [blame] | 2732 | mutex_lock(&dev->struct_mutex); |
Chris Wilson | bed4a67 | 2010-09-11 10:47:47 +0100 | [diff] [blame] | 2733 | intel_update_fbc(dev); |
Ben Widawsky | d1ebd816 | 2011-04-25 20:11:50 +0100 | [diff] [blame] | 2734 | mutex_unlock(&dev->struct_mutex); |
| 2735 | |
Chris Wilson | 6b383a7 | 2010-09-13 13:54:26 +0100 | [diff] [blame] | 2736 | intel_crtc_update_cursor(crtc, true); |
Jesse Barnes | 6be4a60 | 2010-09-10 10:26:01 -0700 | [diff] [blame] | 2737 | } |
| 2738 | |
| 2739 | static void ironlake_crtc_disable(struct drm_crtc *crtc) |
| 2740 | { |
| 2741 | struct drm_device *dev = crtc->dev; |
| 2742 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 2743 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 2744 | int pipe = intel_crtc->pipe; |
| 2745 | int plane = intel_crtc->plane; |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2746 | u32 reg, temp; |
Jesse Barnes | 6be4a60 | 2010-09-10 10:26:01 -0700 | [diff] [blame] | 2747 | |
Chris Wilson | f7abfe8 | 2010-09-13 14:19:16 +0100 | [diff] [blame] | 2748 | if (!intel_crtc->active) |
| 2749 | return; |
| 2750 | |
Chris Wilson | e6c3a2a | 2010-09-23 23:04:43 +0100 | [diff] [blame] | 2751 | intel_crtc_wait_for_pending_flips(crtc); |
Jesse Barnes | 6be4a60 | 2010-09-10 10:26:01 -0700 | [diff] [blame] | 2752 | drm_vblank_off(dev, pipe); |
Chris Wilson | 6b383a7 | 2010-09-13 13:54:26 +0100 | [diff] [blame] | 2753 | intel_crtc_update_cursor(crtc, false); |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2754 | |
Jesse Barnes | b24e717 | 2011-01-04 15:09:30 -0800 | [diff] [blame] | 2755 | intel_disable_plane(dev_priv, plane, pipe); |
Jesse Barnes | 6be4a60 | 2010-09-10 10:26:01 -0700 | [diff] [blame] | 2756 | |
Chris Wilson | 973d04f | 2011-07-08 12:22:37 +0100 | [diff] [blame] | 2757 | if (dev_priv->cfb_plane == plane) |
| 2758 | intel_disable_fbc(dev); |
Jesse Barnes | 6be4a60 | 2010-09-10 10:26:01 -0700 | [diff] [blame] | 2759 | |
Jesse Barnes | b24e717 | 2011-01-04 15:09:30 -0800 | [diff] [blame] | 2760 | intel_disable_pipe(dev_priv, pipe); |
Jesse Barnes | 6be4a60 | 2010-09-10 10:26:01 -0700 | [diff] [blame] | 2761 | |
Jesse Barnes | 6be4a60 | 2010-09-10 10:26:01 -0700 | [diff] [blame] | 2762 | /* Disable PF */ |
Jesse Barnes | 9db4a9c | 2011-02-07 12:26:52 -0800 | [diff] [blame] | 2763 | I915_WRITE(PF_CTL(pipe), 0); |
| 2764 | I915_WRITE(PF_WIN_SZ(pipe), 0); |
Jesse Barnes | 6be4a60 | 2010-09-10 10:26:01 -0700 | [diff] [blame] | 2765 | |
Jesse Barnes | 0fc932b | 2011-01-04 15:09:37 -0800 | [diff] [blame] | 2766 | ironlake_fdi_disable(crtc); |
Jesse Barnes | 6be4a60 | 2010-09-10 10:26:01 -0700 | [diff] [blame] | 2767 | |
Jesse Barnes | 47a05ec | 2011-02-07 13:46:40 -0800 | [diff] [blame] | 2768 | /* This is a horrible layering violation; we should be doing this in |
| 2769 | * the connector/encoder ->prepare instead, but we don't always have |
| 2770 | * enough information there about the config to know whether it will |
| 2771 | * actually be necessary or just cause undesired flicker. |
| 2772 | */ |
| 2773 | intel_disable_pch_ports(dev_priv, pipe); |
Jesse Barnes | 6be4a60 | 2010-09-10 10:26:01 -0700 | [diff] [blame] | 2774 | |
Jesse Barnes | 040484a | 2011-01-03 12:14:26 -0800 | [diff] [blame] | 2775 | intel_disable_transcoder(dev_priv, pipe); |
Jesse Barnes | 6be4a60 | 2010-09-10 10:26:01 -0700 | [diff] [blame] | 2776 | |
Jesse Barnes | 6be4a60 | 2010-09-10 10:26:01 -0700 | [diff] [blame] | 2777 | if (HAS_PCH_CPT(dev)) { |
| 2778 | /* disable TRANS_DP_CTL */ |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2779 | reg = TRANS_DP_CTL(pipe); |
| 2780 | temp = I915_READ(reg); |
| 2781 | temp &= ~(TRANS_DP_OUTPUT_ENABLE | TRANS_DP_PORT_SEL_MASK); |
Eric Anholt | cb3543c | 2011-02-02 12:08:07 -0800 | [diff] [blame] | 2782 | temp |= TRANS_DP_PORT_SEL_NONE; |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2783 | I915_WRITE(reg, temp); |
Jesse Barnes | 6be4a60 | 2010-09-10 10:26:01 -0700 | [diff] [blame] | 2784 | |
| 2785 | /* disable DPLL_SEL */ |
| 2786 | temp = I915_READ(PCH_DPLL_SEL); |
Jesse Barnes | 9db4a9c | 2011-02-07 12:26:52 -0800 | [diff] [blame] | 2787 | switch (pipe) { |
| 2788 | case 0: |
Jesse Barnes | d64311a | 2011-10-12 15:01:33 -0700 | [diff] [blame] | 2789 | temp &= ~(TRANSA_DPLL_ENABLE | TRANSA_DPLLB_SEL); |
Jesse Barnes | 9db4a9c | 2011-02-07 12:26:52 -0800 | [diff] [blame] | 2790 | break; |
| 2791 | case 1: |
Jesse Barnes | 6be4a60 | 2010-09-10 10:26:01 -0700 | [diff] [blame] | 2792 | temp &= ~(TRANSB_DPLL_ENABLE | TRANSB_DPLLB_SEL); |
Jesse Barnes | 9db4a9c | 2011-02-07 12:26:52 -0800 | [diff] [blame] | 2793 | break; |
| 2794 | case 2: |
Jesse Barnes | 4b645f1 | 2011-10-12 09:51:31 -0700 | [diff] [blame] | 2795 | /* C shares PLL A or B */ |
Jesse Barnes | d64311a | 2011-10-12 15:01:33 -0700 | [diff] [blame] | 2796 | temp &= ~(TRANSC_DPLL_ENABLE | TRANSC_DPLLB_SEL); |
Jesse Barnes | 9db4a9c | 2011-02-07 12:26:52 -0800 | [diff] [blame] | 2797 | break; |
| 2798 | default: |
| 2799 | BUG(); /* wtf */ |
| 2800 | } |
Jesse Barnes | 6be4a60 | 2010-09-10 10:26:01 -0700 | [diff] [blame] | 2801 | I915_WRITE(PCH_DPLL_SEL, temp); |
Jesse Barnes | 6be4a60 | 2010-09-10 10:26:01 -0700 | [diff] [blame] | 2802 | } |
| 2803 | |
| 2804 | /* disable PCH DPLL */ |
Jesse Barnes | 4b645f1 | 2011-10-12 09:51:31 -0700 | [diff] [blame] | 2805 | if (!intel_crtc->no_pll) |
| 2806 | intel_disable_pch_pll(dev_priv, pipe); |
Jesse Barnes | 6be4a60 | 2010-09-10 10:26:01 -0700 | [diff] [blame] | 2807 | |
| 2808 | /* Switch from PCDclk to Rawclk */ |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2809 | reg = FDI_RX_CTL(pipe); |
| 2810 | temp = I915_READ(reg); |
| 2811 | I915_WRITE(reg, temp & ~FDI_PCDCLK); |
Jesse Barnes | 6be4a60 | 2010-09-10 10:26:01 -0700 | [diff] [blame] | 2812 | |
| 2813 | /* Disable CPU FDI TX PLL */ |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2814 | reg = FDI_TX_CTL(pipe); |
| 2815 | temp = I915_READ(reg); |
| 2816 | I915_WRITE(reg, temp & ~FDI_TX_PLL_ENABLE); |
| 2817 | |
| 2818 | POSTING_READ(reg); |
Jesse Barnes | 6be4a60 | 2010-09-10 10:26:01 -0700 | [diff] [blame] | 2819 | udelay(100); |
| 2820 | |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2821 | reg = FDI_RX_CTL(pipe); |
| 2822 | temp = I915_READ(reg); |
| 2823 | I915_WRITE(reg, temp & ~FDI_RX_PLL_ENABLE); |
Jesse Barnes | 6be4a60 | 2010-09-10 10:26:01 -0700 | [diff] [blame] | 2824 | |
| 2825 | /* Wait for the clocks to turn off. */ |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2826 | POSTING_READ(reg); |
Jesse Barnes | 6be4a60 | 2010-09-10 10:26:01 -0700 | [diff] [blame] | 2827 | udelay(100); |
Chris Wilson | 6b383a7 | 2010-09-13 13:54:26 +0100 | [diff] [blame] | 2828 | |
Chris Wilson | f7abfe8 | 2010-09-13 14:19:16 +0100 | [diff] [blame] | 2829 | intel_crtc->active = false; |
Chris Wilson | 6b383a7 | 2010-09-13 13:54:26 +0100 | [diff] [blame] | 2830 | intel_update_watermarks(dev); |
Ben Widawsky | d1ebd816 | 2011-04-25 20:11:50 +0100 | [diff] [blame] | 2831 | |
| 2832 | mutex_lock(&dev->struct_mutex); |
Chris Wilson | 6b383a7 | 2010-09-13 13:54:26 +0100 | [diff] [blame] | 2833 | intel_update_fbc(dev); |
| 2834 | intel_clear_scanline_wait(dev); |
Ben Widawsky | d1ebd816 | 2011-04-25 20:11:50 +0100 | [diff] [blame] | 2835 | mutex_unlock(&dev->struct_mutex); |
Jesse Barnes | 6be4a60 | 2010-09-10 10:26:01 -0700 | [diff] [blame] | 2836 | } |
| 2837 | |
| 2838 | static void ironlake_crtc_dpms(struct drm_crtc *crtc, int mode) |
| 2839 | { |
| 2840 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 2841 | int pipe = intel_crtc->pipe; |
| 2842 | int plane = intel_crtc->plane; |
| 2843 | |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 2844 | /* XXX: When our outputs are all unaware of DPMS modes other than off |
| 2845 | * and on, we should map those modes to DRM_MODE_DPMS_OFF in the CRTC. |
| 2846 | */ |
| 2847 | switch (mode) { |
| 2848 | case DRM_MODE_DPMS_ON: |
| 2849 | case DRM_MODE_DPMS_STANDBY: |
| 2850 | case DRM_MODE_DPMS_SUSPEND: |
Chris Wilson | 868dc58 | 2010-08-07 11:01:31 +0100 | [diff] [blame] | 2851 | DRM_DEBUG_KMS("crtc %d/%d dpms on\n", pipe, plane); |
Jesse Barnes | 6be4a60 | 2010-09-10 10:26:01 -0700 | [diff] [blame] | 2852 | ironlake_crtc_enable(crtc); |
Chris Wilson | 868dc58 | 2010-08-07 11:01:31 +0100 | [diff] [blame] | 2853 | break; |
Zhao Yakui | b52eb4d | 2010-06-12 14:32:27 +0800 | [diff] [blame] | 2854 | |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 2855 | case DRM_MODE_DPMS_OFF: |
Chris Wilson | 868dc58 | 2010-08-07 11:01:31 +0100 | [diff] [blame] | 2856 | DRM_DEBUG_KMS("crtc %d/%d dpms off\n", pipe, plane); |
Jesse Barnes | 6be4a60 | 2010-09-10 10:26:01 -0700 | [diff] [blame] | 2857 | ironlake_crtc_disable(crtc); |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 2858 | break; |
| 2859 | } |
| 2860 | } |
| 2861 | |
Daniel Vetter | 02e792f | 2009-09-15 22:57:34 +0200 | [diff] [blame] | 2862 | static void intel_crtc_dpms_overlay(struct intel_crtc *intel_crtc, bool enable) |
| 2863 | { |
Daniel Vetter | 02e792f | 2009-09-15 22:57:34 +0200 | [diff] [blame] | 2864 | if (!enable && intel_crtc->overlay) { |
Chris Wilson | 23f09ce | 2010-08-12 13:53:37 +0100 | [diff] [blame] | 2865 | struct drm_device *dev = intel_crtc->base.dev; |
Chris Wilson | ce453d8 | 2011-02-21 14:43:56 +0000 | [diff] [blame] | 2866 | struct drm_i915_private *dev_priv = dev->dev_private; |
Daniel Vetter | 03f77ea | 2009-09-15 22:57:37 +0200 | [diff] [blame] | 2867 | |
Chris Wilson | 23f09ce | 2010-08-12 13:53:37 +0100 | [diff] [blame] | 2868 | mutex_lock(&dev->struct_mutex); |
Chris Wilson | ce453d8 | 2011-02-21 14:43:56 +0000 | [diff] [blame] | 2869 | dev_priv->mm.interruptible = false; |
| 2870 | (void) intel_overlay_switch_off(intel_crtc->overlay); |
| 2871 | dev_priv->mm.interruptible = true; |
Chris Wilson | 23f09ce | 2010-08-12 13:53:37 +0100 | [diff] [blame] | 2872 | mutex_unlock(&dev->struct_mutex); |
Daniel Vetter | 02e792f | 2009-09-15 22:57:34 +0200 | [diff] [blame] | 2873 | } |
Daniel Vetter | 02e792f | 2009-09-15 22:57:34 +0200 | [diff] [blame] | 2874 | |
Chris Wilson | 5dcdbcb | 2010-08-12 13:50:28 +0100 | [diff] [blame] | 2875 | /* Let userspace switch the overlay on again. In most cases userspace |
| 2876 | * has to recompute where to put it anyway. |
| 2877 | */ |
Daniel Vetter | 02e792f | 2009-09-15 22:57:34 +0200 | [diff] [blame] | 2878 | } |
| 2879 | |
Jesse Barnes | 0b8765c6 | 2010-09-10 10:31:34 -0700 | [diff] [blame] | 2880 | static void i9xx_crtc_enable(struct drm_crtc *crtc) |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 2881 | { |
| 2882 | struct drm_device *dev = crtc->dev; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 2883 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 2884 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 2885 | int pipe = intel_crtc->pipe; |
Jesse Barnes | 8082400 | 2009-09-10 15:28:06 -0700 | [diff] [blame] | 2886 | int plane = intel_crtc->plane; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 2887 | |
Chris Wilson | f7abfe8 | 2010-09-13 14:19:16 +0100 | [diff] [blame] | 2888 | if (intel_crtc->active) |
| 2889 | return; |
| 2890 | |
| 2891 | intel_crtc->active = true; |
Chris Wilson | 6b383a7 | 2010-09-13 13:54:26 +0100 | [diff] [blame] | 2892 | intel_update_watermarks(dev); |
| 2893 | |
Jesse Barnes | 63d7bbe | 2011-01-04 15:09:33 -0800 | [diff] [blame] | 2894 | intel_enable_pll(dev_priv, pipe); |
Jesse Barnes | 040484a | 2011-01-03 12:14:26 -0800 | [diff] [blame] | 2895 | intel_enable_pipe(dev_priv, pipe, false); |
Jesse Barnes | b24e717 | 2011-01-04 15:09:30 -0800 | [diff] [blame] | 2896 | intel_enable_plane(dev_priv, plane, pipe); |
Jesse Barnes | 0b8765c6 | 2010-09-10 10:31:34 -0700 | [diff] [blame] | 2897 | |
| 2898 | intel_crtc_load_lut(crtc); |
Chris Wilson | bed4a67 | 2010-09-11 10:47:47 +0100 | [diff] [blame] | 2899 | intel_update_fbc(dev); |
Jesse Barnes | 0b8765c6 | 2010-09-10 10:31:34 -0700 | [diff] [blame] | 2900 | |
| 2901 | /* Give the overlay scaler a chance to enable if it's on this pipe */ |
| 2902 | intel_crtc_dpms_overlay(intel_crtc, true); |
Chris Wilson | 6b383a7 | 2010-09-13 13:54:26 +0100 | [diff] [blame] | 2903 | intel_crtc_update_cursor(crtc, true); |
Jesse Barnes | 0b8765c6 | 2010-09-10 10:31:34 -0700 | [diff] [blame] | 2904 | } |
| 2905 | |
| 2906 | static void i9xx_crtc_disable(struct drm_crtc *crtc) |
| 2907 | { |
| 2908 | struct drm_device *dev = crtc->dev; |
| 2909 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 2910 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 2911 | int pipe = intel_crtc->pipe; |
| 2912 | int plane = intel_crtc->plane; |
Jesse Barnes | 0b8765c6 | 2010-09-10 10:31:34 -0700 | [diff] [blame] | 2913 | |
Chris Wilson | f7abfe8 | 2010-09-13 14:19:16 +0100 | [diff] [blame] | 2914 | if (!intel_crtc->active) |
| 2915 | return; |
| 2916 | |
Jesse Barnes | 0b8765c6 | 2010-09-10 10:31:34 -0700 | [diff] [blame] | 2917 | /* 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] | 2918 | intel_crtc_wait_for_pending_flips(crtc); |
| 2919 | drm_vblank_off(dev, pipe); |
Jesse Barnes | 0b8765c6 | 2010-09-10 10:31:34 -0700 | [diff] [blame] | 2920 | intel_crtc_dpms_overlay(intel_crtc, false); |
Chris Wilson | 6b383a7 | 2010-09-13 13:54:26 +0100 | [diff] [blame] | 2921 | intel_crtc_update_cursor(crtc, false); |
Jesse Barnes | 0b8765c6 | 2010-09-10 10:31:34 -0700 | [diff] [blame] | 2922 | |
Chris Wilson | 973d04f | 2011-07-08 12:22:37 +0100 | [diff] [blame] | 2923 | if (dev_priv->cfb_plane == plane) |
| 2924 | intel_disable_fbc(dev); |
Jesse Barnes | 0b8765c6 | 2010-09-10 10:31:34 -0700 | [diff] [blame] | 2925 | |
Jesse Barnes | b24e717 | 2011-01-04 15:09:30 -0800 | [diff] [blame] | 2926 | intel_disable_plane(dev_priv, plane, pipe); |
Jesse Barnes | b24e717 | 2011-01-04 15:09:30 -0800 | [diff] [blame] | 2927 | intel_disable_pipe(dev_priv, pipe); |
Jesse Barnes | 63d7bbe | 2011-01-04 15:09:33 -0800 | [diff] [blame] | 2928 | intel_disable_pll(dev_priv, pipe); |
Jesse Barnes | 0b8765c6 | 2010-09-10 10:31:34 -0700 | [diff] [blame] | 2929 | |
Chris Wilson | f7abfe8 | 2010-09-13 14:19:16 +0100 | [diff] [blame] | 2930 | intel_crtc->active = false; |
Chris Wilson | 6b383a7 | 2010-09-13 13:54:26 +0100 | [diff] [blame] | 2931 | intel_update_fbc(dev); |
| 2932 | intel_update_watermarks(dev); |
| 2933 | intel_clear_scanline_wait(dev); |
Jesse Barnes | 0b8765c6 | 2010-09-10 10:31:34 -0700 | [diff] [blame] | 2934 | } |
| 2935 | |
| 2936 | static void i9xx_crtc_dpms(struct drm_crtc *crtc, int mode) |
| 2937 | { |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 2938 | /* XXX: When our outputs are all unaware of DPMS modes other than off |
| 2939 | * and on, we should map those modes to DRM_MODE_DPMS_OFF in the CRTC. |
| 2940 | */ |
| 2941 | switch (mode) { |
| 2942 | case DRM_MODE_DPMS_ON: |
| 2943 | case DRM_MODE_DPMS_STANDBY: |
| 2944 | case DRM_MODE_DPMS_SUSPEND: |
Jesse Barnes | 0b8765c6 | 2010-09-10 10:31:34 -0700 | [diff] [blame] | 2945 | i9xx_crtc_enable(crtc); |
| 2946 | break; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 2947 | case DRM_MODE_DPMS_OFF: |
Jesse Barnes | 0b8765c6 | 2010-09-10 10:31:34 -0700 | [diff] [blame] | 2948 | i9xx_crtc_disable(crtc); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 2949 | break; |
| 2950 | } |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 2951 | } |
| 2952 | |
| 2953 | /** |
| 2954 | * Sets the power management mode of the pipe and plane. |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 2955 | */ |
| 2956 | static void intel_crtc_dpms(struct drm_crtc *crtc, int mode) |
| 2957 | { |
| 2958 | struct drm_device *dev = crtc->dev; |
Jesse Barnes | e70236a | 2009-09-21 10:42:27 -0700 | [diff] [blame] | 2959 | struct drm_i915_private *dev_priv = dev->dev_private; |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 2960 | struct drm_i915_master_private *master_priv; |
| 2961 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 2962 | int pipe = intel_crtc->pipe; |
| 2963 | bool enabled; |
| 2964 | |
Chris Wilson | 032d2a0 | 2010-09-06 16:17:22 +0100 | [diff] [blame] | 2965 | if (intel_crtc->dpms_mode == mode) |
| 2966 | return; |
| 2967 | |
Chris Wilson | debcadd | 2010-08-07 11:01:33 +0100 | [diff] [blame] | 2968 | intel_crtc->dpms_mode = mode; |
Chris Wilson | debcadd | 2010-08-07 11:01:33 +0100 | [diff] [blame] | 2969 | |
Jesse Barnes | e70236a | 2009-09-21 10:42:27 -0700 | [diff] [blame] | 2970 | dev_priv->display.dpms(crtc, mode); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 2971 | |
| 2972 | if (!dev->primary->master) |
| 2973 | return; |
| 2974 | |
| 2975 | master_priv = dev->primary->master->driver_priv; |
| 2976 | if (!master_priv->sarea_priv) |
| 2977 | return; |
| 2978 | |
| 2979 | enabled = crtc->enabled && mode != DRM_MODE_DPMS_OFF; |
| 2980 | |
| 2981 | switch (pipe) { |
| 2982 | case 0: |
| 2983 | master_priv->sarea_priv->pipeA_w = enabled ? crtc->mode.hdisplay : 0; |
| 2984 | master_priv->sarea_priv->pipeA_h = enabled ? crtc->mode.vdisplay : 0; |
| 2985 | break; |
| 2986 | case 1: |
| 2987 | master_priv->sarea_priv->pipeB_w = enabled ? crtc->mode.hdisplay : 0; |
| 2988 | master_priv->sarea_priv->pipeB_h = enabled ? crtc->mode.vdisplay : 0; |
| 2989 | break; |
| 2990 | default: |
Jesse Barnes | 9db4a9c | 2011-02-07 12:26:52 -0800 | [diff] [blame] | 2991 | 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] | 2992 | break; |
| 2993 | } |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 2994 | } |
| 2995 | |
Chris Wilson | cdd5998 | 2010-09-08 16:30:16 +0100 | [diff] [blame] | 2996 | static void intel_crtc_disable(struct drm_crtc *crtc) |
| 2997 | { |
| 2998 | struct drm_crtc_helper_funcs *crtc_funcs = crtc->helper_private; |
| 2999 | struct drm_device *dev = crtc->dev; |
| 3000 | |
| 3001 | crtc_funcs->dpms(crtc, DRM_MODE_DPMS_OFF); |
Chris Wilson | 931872f | 2012-01-16 23:01:13 +0000 | [diff] [blame] | 3002 | assert_plane_disabled(dev->dev_private, to_intel_crtc(crtc)->plane); |
| 3003 | assert_pipe_disabled(dev->dev_private, to_intel_crtc(crtc)->pipe); |
Chris Wilson | cdd5998 | 2010-09-08 16:30:16 +0100 | [diff] [blame] | 3004 | |
| 3005 | if (crtc->fb) { |
| 3006 | mutex_lock(&dev->struct_mutex); |
Chris Wilson | 1690e1e | 2011-12-14 13:57:08 +0100 | [diff] [blame] | 3007 | intel_unpin_fb_obj(to_intel_framebuffer(crtc->fb)->obj); |
Chris Wilson | cdd5998 | 2010-09-08 16:30:16 +0100 | [diff] [blame] | 3008 | mutex_unlock(&dev->struct_mutex); |
| 3009 | } |
| 3010 | } |
| 3011 | |
Jesse Barnes | 7e7d76c | 2010-09-10 10:47:20 -0700 | [diff] [blame] | 3012 | /* Prepare for a mode set. |
| 3013 | * |
| 3014 | * Note we could be a lot smarter here. We need to figure out which outputs |
| 3015 | * will be enabled, which disabled (in short, how the config will changes) |
| 3016 | * and perform the minimum necessary steps to accomplish that, e.g. updating |
| 3017 | * watermarks, FBC configuration, making sure PLLs are programmed correctly, |
| 3018 | * panel fitting is in the proper state, etc. |
| 3019 | */ |
| 3020 | static void i9xx_crtc_prepare(struct drm_crtc *crtc) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 3021 | { |
Jesse Barnes | 7e7d76c | 2010-09-10 10:47:20 -0700 | [diff] [blame] | 3022 | i9xx_crtc_disable(crtc); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 3023 | } |
| 3024 | |
Jesse Barnes | 7e7d76c | 2010-09-10 10:47:20 -0700 | [diff] [blame] | 3025 | static void i9xx_crtc_commit(struct drm_crtc *crtc) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 3026 | { |
Jesse Barnes | 7e7d76c | 2010-09-10 10:47:20 -0700 | [diff] [blame] | 3027 | i9xx_crtc_enable(crtc); |
Jesse Barnes | 7e7d76c | 2010-09-10 10:47:20 -0700 | [diff] [blame] | 3028 | } |
| 3029 | |
| 3030 | static void ironlake_crtc_prepare(struct drm_crtc *crtc) |
| 3031 | { |
Jesse Barnes | 7e7d76c | 2010-09-10 10:47:20 -0700 | [diff] [blame] | 3032 | ironlake_crtc_disable(crtc); |
Jesse Barnes | 7e7d76c | 2010-09-10 10:47:20 -0700 | [diff] [blame] | 3033 | } |
| 3034 | |
| 3035 | static void ironlake_crtc_commit(struct drm_crtc *crtc) |
| 3036 | { |
Jesse Barnes | 7e7d76c | 2010-09-10 10:47:20 -0700 | [diff] [blame] | 3037 | ironlake_crtc_enable(crtc); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 3038 | } |
| 3039 | |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 3040 | void intel_encoder_prepare(struct drm_encoder *encoder) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 3041 | { |
| 3042 | struct drm_encoder_helper_funcs *encoder_funcs = encoder->helper_private; |
| 3043 | /* lvds has its own version of prepare see intel_lvds_prepare */ |
| 3044 | encoder_funcs->dpms(encoder, DRM_MODE_DPMS_OFF); |
| 3045 | } |
| 3046 | |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 3047 | void intel_encoder_commit(struct drm_encoder *encoder) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 3048 | { |
| 3049 | struct drm_encoder_helper_funcs *encoder_funcs = encoder->helper_private; |
Jesse Barnes | d4270e5 | 2011-10-11 10:43:02 -0700 | [diff] [blame] | 3050 | struct drm_device *dev = encoder->dev; |
| 3051 | struct intel_encoder *intel_encoder = to_intel_encoder(encoder); |
| 3052 | struct intel_crtc *intel_crtc = to_intel_crtc(intel_encoder->base.crtc); |
| 3053 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 3054 | /* lvds has its own version of commit see intel_lvds_commit */ |
| 3055 | encoder_funcs->dpms(encoder, DRM_MODE_DPMS_ON); |
Jesse Barnes | d4270e5 | 2011-10-11 10:43:02 -0700 | [diff] [blame] | 3056 | |
| 3057 | if (HAS_PCH_CPT(dev)) |
| 3058 | intel_cpt_verify_modeset(dev, intel_crtc->pipe); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 3059 | } |
| 3060 | |
Chris Wilson | ea5b213 | 2010-08-04 13:50:23 +0100 | [diff] [blame] | 3061 | void intel_encoder_destroy(struct drm_encoder *encoder) |
| 3062 | { |
Chris Wilson | 4ef69c7 | 2010-09-09 15:14:28 +0100 | [diff] [blame] | 3063 | struct intel_encoder *intel_encoder = to_intel_encoder(encoder); |
Chris Wilson | ea5b213 | 2010-08-04 13:50:23 +0100 | [diff] [blame] | 3064 | |
Chris Wilson | ea5b213 | 2010-08-04 13:50:23 +0100 | [diff] [blame] | 3065 | drm_encoder_cleanup(encoder); |
| 3066 | kfree(intel_encoder); |
| 3067 | } |
| 3068 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 3069 | static bool intel_crtc_mode_fixup(struct drm_crtc *crtc, |
| 3070 | struct drm_display_mode *mode, |
| 3071 | struct drm_display_mode *adjusted_mode) |
| 3072 | { |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 3073 | struct drm_device *dev = crtc->dev; |
Chris Wilson | 8974935 | 2010-09-12 18:25:19 +0100 | [diff] [blame] | 3074 | |
Eric Anholt | bad720f | 2009-10-22 16:11:14 -0700 | [diff] [blame] | 3075 | if (HAS_PCH_SPLIT(dev)) { |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 3076 | /* FDI link clock is fixed at 2.7G */ |
Jesse Barnes | 2377b74 | 2010-07-07 14:06:43 -0700 | [diff] [blame] | 3077 | if (mode->clock * 3 > IRONLAKE_FDI_FREQ * 4) |
| 3078 | return false; |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 3079 | } |
Chris Wilson | 8974935 | 2010-09-12 18:25:19 +0100 | [diff] [blame] | 3080 | |
Daniel Vetter | f9bef08 | 2012-04-15 19:53:19 +0200 | [diff] [blame] | 3081 | /* All interlaced capable intel hw wants timings in frames. Note though |
| 3082 | * that intel_lvds_mode_fixup does some funny tricks with the crtc |
| 3083 | * timings, so we need to be careful not to clobber these.*/ |
| 3084 | if (!(adjusted_mode->private_flags & INTEL_MODE_CRTC_TIMINGS_SET)) |
| 3085 | drm_mode_set_crtcinfo(adjusted_mode, 0); |
Chris Wilson | 8974935 | 2010-09-12 18:25:19 +0100 | [diff] [blame] | 3086 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 3087 | return true; |
| 3088 | } |
| 3089 | |
Jesse Barnes | 25eb05fc | 2012-03-28 13:39:23 -0700 | [diff] [blame] | 3090 | static int valleyview_get_display_clock_speed(struct drm_device *dev) |
| 3091 | { |
| 3092 | return 400000; /* FIXME */ |
| 3093 | } |
| 3094 | |
Jesse Barnes | e70236a | 2009-09-21 10:42:27 -0700 | [diff] [blame] | 3095 | static int i945_get_display_clock_speed(struct drm_device *dev) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 3096 | { |
Jesse Barnes | e70236a | 2009-09-21 10:42:27 -0700 | [diff] [blame] | 3097 | return 400000; |
| 3098 | } |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 3099 | |
Jesse Barnes | e70236a | 2009-09-21 10:42:27 -0700 | [diff] [blame] | 3100 | static int i915_get_display_clock_speed(struct drm_device *dev) |
| 3101 | { |
| 3102 | return 333000; |
| 3103 | } |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 3104 | |
Jesse Barnes | e70236a | 2009-09-21 10:42:27 -0700 | [diff] [blame] | 3105 | static int i9xx_misc_get_display_clock_speed(struct drm_device *dev) |
| 3106 | { |
| 3107 | return 200000; |
| 3108 | } |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 3109 | |
Jesse Barnes | e70236a | 2009-09-21 10:42:27 -0700 | [diff] [blame] | 3110 | static int i915gm_get_display_clock_speed(struct drm_device *dev) |
| 3111 | { |
| 3112 | u16 gcfgc = 0; |
| 3113 | |
| 3114 | pci_read_config_word(dev->pdev, GCFGC, &gcfgc); |
| 3115 | |
| 3116 | if (gcfgc & GC_LOW_FREQUENCY_ENABLE) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 3117 | return 133000; |
Jesse Barnes | e70236a | 2009-09-21 10:42:27 -0700 | [diff] [blame] | 3118 | else { |
| 3119 | switch (gcfgc & GC_DISPLAY_CLOCK_MASK) { |
| 3120 | case GC_DISPLAY_CLOCK_333_MHZ: |
| 3121 | return 333000; |
| 3122 | default: |
| 3123 | case GC_DISPLAY_CLOCK_190_200_MHZ: |
| 3124 | return 190000; |
| 3125 | } |
| 3126 | } |
| 3127 | } |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 3128 | |
Jesse Barnes | e70236a | 2009-09-21 10:42:27 -0700 | [diff] [blame] | 3129 | static int i865_get_display_clock_speed(struct drm_device *dev) |
| 3130 | { |
| 3131 | return 266000; |
| 3132 | } |
| 3133 | |
| 3134 | static int i855_get_display_clock_speed(struct drm_device *dev) |
| 3135 | { |
| 3136 | u16 hpllcc = 0; |
| 3137 | /* Assume that the hardware is in the high speed state. This |
| 3138 | * should be the default. |
| 3139 | */ |
| 3140 | switch (hpllcc & GC_CLOCK_CONTROL_MASK) { |
| 3141 | case GC_CLOCK_133_200: |
| 3142 | case GC_CLOCK_100_200: |
| 3143 | return 200000; |
| 3144 | case GC_CLOCK_166_250: |
| 3145 | return 250000; |
| 3146 | case GC_CLOCK_100_133: |
| 3147 | return 133000; |
| 3148 | } |
| 3149 | |
| 3150 | /* Shouldn't happen */ |
| 3151 | return 0; |
| 3152 | } |
| 3153 | |
| 3154 | static int i830_get_display_clock_speed(struct drm_device *dev) |
| 3155 | { |
| 3156 | return 133000; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 3157 | } |
| 3158 | |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 3159 | struct fdi_m_n { |
| 3160 | u32 tu; |
| 3161 | u32 gmch_m; |
| 3162 | u32 gmch_n; |
| 3163 | u32 link_m; |
| 3164 | u32 link_n; |
| 3165 | }; |
| 3166 | |
| 3167 | static void |
| 3168 | fdi_reduce_ratio(u32 *num, u32 *den) |
| 3169 | { |
| 3170 | while (*num > 0xffffff || *den > 0xffffff) { |
| 3171 | *num >>= 1; |
| 3172 | *den >>= 1; |
| 3173 | } |
| 3174 | } |
| 3175 | |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 3176 | static void |
Adam Jackson | f2b115e | 2009-12-03 17:14:42 -0500 | [diff] [blame] | 3177 | ironlake_compute_m_n(int bits_per_pixel, int nlanes, int pixel_clock, |
| 3178 | int link_clock, struct fdi_m_n *m_n) |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 3179 | { |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 3180 | m_n->tu = 64; /* default size */ |
| 3181 | |
Chris Wilson | 22ed111 | 2010-12-04 01:01:29 +0000 | [diff] [blame] | 3182 | /* BUG_ON(pixel_clock > INT_MAX / 36); */ |
| 3183 | m_n->gmch_m = bits_per_pixel * pixel_clock; |
| 3184 | m_n->gmch_n = link_clock * nlanes * 8; |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 3185 | fdi_reduce_ratio(&m_n->gmch_m, &m_n->gmch_n); |
| 3186 | |
Chris Wilson | 22ed111 | 2010-12-04 01:01:29 +0000 | [diff] [blame] | 3187 | m_n->link_m = pixel_clock; |
| 3188 | m_n->link_n = link_clock; |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 3189 | fdi_reduce_ratio(&m_n->link_m, &m_n->link_n); |
| 3190 | } |
| 3191 | |
Chris Wilson | a761503 | 2011-01-12 17:04:08 +0000 | [diff] [blame] | 3192 | static inline bool intel_panel_use_ssc(struct drm_i915_private *dev_priv) |
| 3193 | { |
Keith Packard | 72bbe58 | 2011-09-26 16:09:45 -0700 | [diff] [blame] | 3194 | if (i915_panel_use_ssc >= 0) |
| 3195 | return i915_panel_use_ssc != 0; |
| 3196 | return dev_priv->lvds_use_ssc |
Keith Packard | 435793d | 2011-07-12 14:56:22 -0700 | [diff] [blame] | 3197 | && !(dev_priv->quirks & QUIRK_LVDS_SSC_DISABLE); |
Chris Wilson | a761503 | 2011-01-12 17:04:08 +0000 | [diff] [blame] | 3198 | } |
| 3199 | |
Jesse Barnes | 5a35420 | 2011-06-24 12:19:22 -0700 | [diff] [blame] | 3200 | /** |
| 3201 | * intel_choose_pipe_bpp_dither - figure out what color depth the pipe should send |
| 3202 | * @crtc: CRTC structure |
Adam Jackson | 3b5c78a | 2011-12-13 15:41:00 -0800 | [diff] [blame] | 3203 | * @mode: requested mode |
Jesse Barnes | 5a35420 | 2011-06-24 12:19:22 -0700 | [diff] [blame] | 3204 | * |
| 3205 | * A pipe may be connected to one or more outputs. Based on the depth of the |
| 3206 | * attached framebuffer, choose a good color depth to use on the pipe. |
| 3207 | * |
| 3208 | * If possible, match the pipe depth to the fb depth. In some cases, this |
| 3209 | * isn't ideal, because the connected output supports a lesser or restricted |
| 3210 | * set of depths. Resolve that here: |
| 3211 | * LVDS typically supports only 6bpc, so clamp down in that case |
| 3212 | * HDMI supports only 8bpc or 12bpc, so clamp to 8bpc with dither for 10bpc |
| 3213 | * Displays may support a restricted set as well, check EDID and clamp as |
| 3214 | * appropriate. |
Adam Jackson | 3b5c78a | 2011-12-13 15:41:00 -0800 | [diff] [blame] | 3215 | * DP may want to dither down to 6bpc to fit larger modes |
Jesse Barnes | 5a35420 | 2011-06-24 12:19:22 -0700 | [diff] [blame] | 3216 | * |
| 3217 | * RETURNS: |
| 3218 | * Dithering requirement (i.e. false if display bpc and pipe bpc match, |
| 3219 | * true if they don't match). |
| 3220 | */ |
| 3221 | static bool intel_choose_pipe_bpp_dither(struct drm_crtc *crtc, |
Adam Jackson | 3b5c78a | 2011-12-13 15:41:00 -0800 | [diff] [blame] | 3222 | unsigned int *pipe_bpp, |
| 3223 | struct drm_display_mode *mode) |
Jesse Barnes | 5a35420 | 2011-06-24 12:19:22 -0700 | [diff] [blame] | 3224 | { |
| 3225 | struct drm_device *dev = crtc->dev; |
| 3226 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 3227 | struct drm_encoder *encoder; |
| 3228 | struct drm_connector *connector; |
| 3229 | unsigned int display_bpc = UINT_MAX, bpc; |
| 3230 | |
| 3231 | /* Walk the encoders & connectors on this crtc, get min bpc */ |
| 3232 | list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) { |
| 3233 | struct intel_encoder *intel_encoder = to_intel_encoder(encoder); |
| 3234 | |
| 3235 | if (encoder->crtc != crtc) |
| 3236 | continue; |
| 3237 | |
| 3238 | if (intel_encoder->type == INTEL_OUTPUT_LVDS) { |
| 3239 | unsigned int lvds_bpc; |
| 3240 | |
| 3241 | if ((I915_READ(PCH_LVDS) & LVDS_A3_POWER_MASK) == |
| 3242 | LVDS_A3_POWER_UP) |
| 3243 | lvds_bpc = 8; |
| 3244 | else |
| 3245 | lvds_bpc = 6; |
| 3246 | |
| 3247 | if (lvds_bpc < display_bpc) { |
Adam Jackson | 8282049 | 2011-10-10 16:33:34 -0400 | [diff] [blame] | 3248 | DRM_DEBUG_KMS("clamping display bpc (was %d) to LVDS (%d)\n", display_bpc, lvds_bpc); |
Jesse Barnes | 5a35420 | 2011-06-24 12:19:22 -0700 | [diff] [blame] | 3249 | display_bpc = lvds_bpc; |
| 3250 | } |
| 3251 | continue; |
| 3252 | } |
| 3253 | |
| 3254 | if (intel_encoder->type == INTEL_OUTPUT_EDP) { |
| 3255 | /* Use VBT settings if we have an eDP panel */ |
| 3256 | unsigned int edp_bpc = dev_priv->edp.bpp / 3; |
| 3257 | |
| 3258 | if (edp_bpc < display_bpc) { |
Adam Jackson | 8282049 | 2011-10-10 16:33:34 -0400 | [diff] [blame] | 3259 | DRM_DEBUG_KMS("clamping display bpc (was %d) to eDP (%d)\n", display_bpc, edp_bpc); |
Jesse Barnes | 5a35420 | 2011-06-24 12:19:22 -0700 | [diff] [blame] | 3260 | display_bpc = edp_bpc; |
| 3261 | } |
| 3262 | continue; |
| 3263 | } |
| 3264 | |
| 3265 | /* Not one of the known troublemakers, check the EDID */ |
| 3266 | list_for_each_entry(connector, &dev->mode_config.connector_list, |
| 3267 | head) { |
| 3268 | if (connector->encoder != encoder) |
| 3269 | continue; |
| 3270 | |
Jesse Barnes | 62ac41a | 2011-07-28 12:55:14 -0700 | [diff] [blame] | 3271 | /* Don't use an invalid EDID bpc value */ |
| 3272 | if (connector->display_info.bpc && |
| 3273 | connector->display_info.bpc < display_bpc) { |
Adam Jackson | 8282049 | 2011-10-10 16:33:34 -0400 | [diff] [blame] | 3274 | DRM_DEBUG_KMS("clamping display bpc (was %d) to EDID reported max of %d\n", display_bpc, connector->display_info.bpc); |
Jesse Barnes | 5a35420 | 2011-06-24 12:19:22 -0700 | [diff] [blame] | 3275 | display_bpc = connector->display_info.bpc; |
| 3276 | } |
| 3277 | } |
| 3278 | |
| 3279 | /* |
| 3280 | * HDMI is either 12 or 8, so if the display lets 10bpc sneak |
| 3281 | * through, clamp it down. (Note: >12bpc will be caught below.) |
| 3282 | */ |
| 3283 | if (intel_encoder->type == INTEL_OUTPUT_HDMI) { |
| 3284 | if (display_bpc > 8 && display_bpc < 12) { |
Adam Jackson | 8282049 | 2011-10-10 16:33:34 -0400 | [diff] [blame] | 3285 | DRM_DEBUG_KMS("forcing bpc to 12 for HDMI\n"); |
Jesse Barnes | 5a35420 | 2011-06-24 12:19:22 -0700 | [diff] [blame] | 3286 | display_bpc = 12; |
| 3287 | } else { |
Adam Jackson | 8282049 | 2011-10-10 16:33:34 -0400 | [diff] [blame] | 3288 | DRM_DEBUG_KMS("forcing bpc to 8 for HDMI\n"); |
Jesse Barnes | 5a35420 | 2011-06-24 12:19:22 -0700 | [diff] [blame] | 3289 | display_bpc = 8; |
| 3290 | } |
| 3291 | } |
| 3292 | } |
| 3293 | |
Adam Jackson | 3b5c78a | 2011-12-13 15:41:00 -0800 | [diff] [blame] | 3294 | if (mode->private_flags & INTEL_MODE_DP_FORCE_6BPC) { |
| 3295 | DRM_DEBUG_KMS("Dithering DP to 6bpc\n"); |
| 3296 | display_bpc = 6; |
| 3297 | } |
| 3298 | |
Jesse Barnes | 5a35420 | 2011-06-24 12:19:22 -0700 | [diff] [blame] | 3299 | /* |
| 3300 | * We could just drive the pipe at the highest bpc all the time and |
| 3301 | * enable dithering as needed, but that costs bandwidth. So choose |
| 3302 | * the minimum value that expresses the full color range of the fb but |
| 3303 | * also stays within the max display bpc discovered above. |
| 3304 | */ |
| 3305 | |
| 3306 | switch (crtc->fb->depth) { |
| 3307 | case 8: |
| 3308 | bpc = 8; /* since we go through a colormap */ |
| 3309 | break; |
| 3310 | case 15: |
| 3311 | case 16: |
| 3312 | bpc = 6; /* min is 18bpp */ |
| 3313 | break; |
| 3314 | case 24: |
Keith Packard | 578393c | 2011-09-05 11:53:21 -0700 | [diff] [blame] | 3315 | bpc = 8; |
Jesse Barnes | 5a35420 | 2011-06-24 12:19:22 -0700 | [diff] [blame] | 3316 | break; |
| 3317 | case 30: |
Keith Packard | 578393c | 2011-09-05 11:53:21 -0700 | [diff] [blame] | 3318 | bpc = 10; |
Jesse Barnes | 5a35420 | 2011-06-24 12:19:22 -0700 | [diff] [blame] | 3319 | break; |
| 3320 | case 48: |
Keith Packard | 578393c | 2011-09-05 11:53:21 -0700 | [diff] [blame] | 3321 | bpc = 12; |
Jesse Barnes | 5a35420 | 2011-06-24 12:19:22 -0700 | [diff] [blame] | 3322 | break; |
| 3323 | default: |
| 3324 | DRM_DEBUG("unsupported depth, assuming 24 bits\n"); |
| 3325 | bpc = min((unsigned int)8, display_bpc); |
| 3326 | break; |
| 3327 | } |
| 3328 | |
Keith Packard | 578393c | 2011-09-05 11:53:21 -0700 | [diff] [blame] | 3329 | display_bpc = min(display_bpc, bpc); |
| 3330 | |
Adam Jackson | 8282049 | 2011-10-10 16:33:34 -0400 | [diff] [blame] | 3331 | DRM_DEBUG_KMS("setting pipe bpc to %d (max display bpc %d)\n", |
| 3332 | bpc, display_bpc); |
Jesse Barnes | 5a35420 | 2011-06-24 12:19:22 -0700 | [diff] [blame] | 3333 | |
Keith Packard | 578393c | 2011-09-05 11:53:21 -0700 | [diff] [blame] | 3334 | *pipe_bpp = display_bpc * 3; |
Jesse Barnes | 5a35420 | 2011-06-24 12:19:22 -0700 | [diff] [blame] | 3335 | |
| 3336 | return display_bpc != bpc; |
| 3337 | } |
| 3338 | |
Jesse Barnes | c65d77d | 2011-12-15 12:30:36 -0800 | [diff] [blame] | 3339 | static int i9xx_get_refclk(struct drm_crtc *crtc, int num_connectors) |
| 3340 | { |
| 3341 | struct drm_device *dev = crtc->dev; |
| 3342 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 3343 | int refclk; |
| 3344 | |
| 3345 | if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS) && |
| 3346 | intel_panel_use_ssc(dev_priv) && num_connectors < 2) { |
| 3347 | refclk = dev_priv->lvds_ssc_freq * 1000; |
| 3348 | DRM_DEBUG_KMS("using SSC reference clock of %d MHz\n", |
| 3349 | refclk / 1000); |
| 3350 | } else if (!IS_GEN2(dev)) { |
| 3351 | refclk = 96000; |
| 3352 | } else { |
| 3353 | refclk = 48000; |
| 3354 | } |
| 3355 | |
| 3356 | return refclk; |
| 3357 | } |
| 3358 | |
| 3359 | static void i9xx_adjust_sdvo_tv_clock(struct drm_display_mode *adjusted_mode, |
| 3360 | intel_clock_t *clock) |
| 3361 | { |
| 3362 | /* SDVO TV has fixed PLL values depend on its clock range, |
| 3363 | this mirrors vbios setting. */ |
| 3364 | if (adjusted_mode->clock >= 100000 |
| 3365 | && adjusted_mode->clock < 140500) { |
| 3366 | clock->p1 = 2; |
| 3367 | clock->p2 = 10; |
| 3368 | clock->n = 3; |
| 3369 | clock->m1 = 16; |
| 3370 | clock->m2 = 8; |
| 3371 | } else if (adjusted_mode->clock >= 140500 |
| 3372 | && adjusted_mode->clock <= 200000) { |
| 3373 | clock->p1 = 1; |
| 3374 | clock->p2 = 10; |
| 3375 | clock->n = 6; |
| 3376 | clock->m1 = 12; |
| 3377 | clock->m2 = 8; |
| 3378 | } |
| 3379 | } |
| 3380 | |
Jesse Barnes | a7516a0 | 2011-12-15 12:30:37 -0800 | [diff] [blame] | 3381 | static void i9xx_update_pll_dividers(struct drm_crtc *crtc, |
| 3382 | intel_clock_t *clock, |
| 3383 | intel_clock_t *reduced_clock) |
| 3384 | { |
| 3385 | struct drm_device *dev = crtc->dev; |
| 3386 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 3387 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 3388 | int pipe = intel_crtc->pipe; |
| 3389 | u32 fp, fp2 = 0; |
| 3390 | |
| 3391 | if (IS_PINEVIEW(dev)) { |
| 3392 | fp = (1 << clock->n) << 16 | clock->m1 << 8 | clock->m2; |
| 3393 | if (reduced_clock) |
| 3394 | fp2 = (1 << reduced_clock->n) << 16 | |
| 3395 | reduced_clock->m1 << 8 | reduced_clock->m2; |
| 3396 | } else { |
| 3397 | fp = clock->n << 16 | clock->m1 << 8 | clock->m2; |
| 3398 | if (reduced_clock) |
| 3399 | fp2 = reduced_clock->n << 16 | reduced_clock->m1 << 8 | |
| 3400 | reduced_clock->m2; |
| 3401 | } |
| 3402 | |
| 3403 | I915_WRITE(FP0(pipe), fp); |
| 3404 | |
| 3405 | intel_crtc->lowfreq_avail = false; |
| 3406 | if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS) && |
| 3407 | reduced_clock && i915_powersave) { |
| 3408 | I915_WRITE(FP1(pipe), fp2); |
| 3409 | intel_crtc->lowfreq_avail = true; |
| 3410 | } else { |
| 3411 | I915_WRITE(FP1(pipe), fp); |
| 3412 | } |
| 3413 | } |
| 3414 | |
Daniel Vetter | 93e537a | 2012-03-28 23:11:26 +0200 | [diff] [blame] | 3415 | static void intel_update_lvds(struct drm_crtc *crtc, intel_clock_t *clock, |
| 3416 | struct drm_display_mode *adjusted_mode) |
| 3417 | { |
| 3418 | struct drm_device *dev = crtc->dev; |
| 3419 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 3420 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 3421 | int pipe = intel_crtc->pipe; |
Chris Wilson | 284d5df | 2012-04-14 17:41:59 +0100 | [diff] [blame] | 3422 | u32 temp; |
Daniel Vetter | 93e537a | 2012-03-28 23:11:26 +0200 | [diff] [blame] | 3423 | |
| 3424 | temp = I915_READ(LVDS); |
| 3425 | temp |= LVDS_PORT_EN | LVDS_A0A2_CLKA_POWER_UP; |
| 3426 | if (pipe == 1) { |
| 3427 | temp |= LVDS_PIPEB_SELECT; |
| 3428 | } else { |
| 3429 | temp &= ~LVDS_PIPEB_SELECT; |
| 3430 | } |
| 3431 | /* set the corresponsding LVDS_BORDER bit */ |
| 3432 | temp |= dev_priv->lvds_border_bits; |
| 3433 | /* Set the B0-B3 data pairs corresponding to whether we're going to |
| 3434 | * set the DPLLs for dual-channel mode or not. |
| 3435 | */ |
| 3436 | if (clock->p2 == 7) |
| 3437 | temp |= LVDS_B0B3_POWER_UP | LVDS_CLKB_POWER_UP; |
| 3438 | else |
| 3439 | temp &= ~(LVDS_B0B3_POWER_UP | LVDS_CLKB_POWER_UP); |
| 3440 | |
| 3441 | /* It would be nice to set 24 vs 18-bit mode (LVDS_A3_POWER_UP) |
| 3442 | * appropriately here, but we need to look more thoroughly into how |
| 3443 | * panels behave in the two modes. |
| 3444 | */ |
| 3445 | /* set the dithering flag on LVDS as needed */ |
| 3446 | if (INTEL_INFO(dev)->gen >= 4) { |
| 3447 | if (dev_priv->lvds_dither) |
| 3448 | temp |= LVDS_ENABLE_DITHER; |
| 3449 | else |
| 3450 | temp &= ~LVDS_ENABLE_DITHER; |
| 3451 | } |
Chris Wilson | 284d5df | 2012-04-14 17:41:59 +0100 | [diff] [blame] | 3452 | temp &= ~(LVDS_HSYNC_POLARITY | LVDS_VSYNC_POLARITY); |
Daniel Vetter | 93e537a | 2012-03-28 23:11:26 +0200 | [diff] [blame] | 3453 | if (adjusted_mode->flags & DRM_MODE_FLAG_NHSYNC) |
Chris Wilson | 284d5df | 2012-04-14 17:41:59 +0100 | [diff] [blame] | 3454 | temp |= LVDS_HSYNC_POLARITY; |
Daniel Vetter | 93e537a | 2012-03-28 23:11:26 +0200 | [diff] [blame] | 3455 | if (adjusted_mode->flags & DRM_MODE_FLAG_NVSYNC) |
Chris Wilson | 284d5df | 2012-04-14 17:41:59 +0100 | [diff] [blame] | 3456 | temp |= LVDS_VSYNC_POLARITY; |
Daniel Vetter | 93e537a | 2012-03-28 23:11:26 +0200 | [diff] [blame] | 3457 | I915_WRITE(LVDS, temp); |
| 3458 | } |
| 3459 | |
Daniel Vetter | eb1cbe4 | 2012-03-28 23:12:16 +0200 | [diff] [blame] | 3460 | static void i9xx_update_pll(struct drm_crtc *crtc, |
| 3461 | struct drm_display_mode *mode, |
| 3462 | struct drm_display_mode *adjusted_mode, |
| 3463 | intel_clock_t *clock, intel_clock_t *reduced_clock, |
| 3464 | int num_connectors) |
| 3465 | { |
| 3466 | struct drm_device *dev = crtc->dev; |
| 3467 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 3468 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 3469 | int pipe = intel_crtc->pipe; |
| 3470 | u32 dpll; |
| 3471 | bool is_sdvo; |
| 3472 | |
| 3473 | is_sdvo = intel_pipe_has_type(crtc, INTEL_OUTPUT_SDVO) || |
| 3474 | intel_pipe_has_type(crtc, INTEL_OUTPUT_HDMI); |
| 3475 | |
| 3476 | dpll = DPLL_VGA_MODE_DIS; |
| 3477 | |
| 3478 | if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) |
| 3479 | dpll |= DPLLB_MODE_LVDS; |
| 3480 | else |
| 3481 | dpll |= DPLLB_MODE_DAC_SERIAL; |
| 3482 | if (is_sdvo) { |
| 3483 | int pixel_multiplier = intel_mode_get_pixel_multiplier(adjusted_mode); |
| 3484 | if (pixel_multiplier > 1) { |
| 3485 | if (IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev)) |
| 3486 | dpll |= (pixel_multiplier - 1) << SDVO_MULTIPLIER_SHIFT_HIRES; |
| 3487 | } |
| 3488 | dpll |= DPLL_DVO_HIGH_SPEED; |
| 3489 | } |
| 3490 | if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT)) |
| 3491 | dpll |= DPLL_DVO_HIGH_SPEED; |
| 3492 | |
| 3493 | /* compute bitmask from p1 value */ |
| 3494 | if (IS_PINEVIEW(dev)) |
| 3495 | dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT_PINEVIEW; |
| 3496 | else { |
| 3497 | dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT; |
| 3498 | if (IS_G4X(dev) && reduced_clock) |
| 3499 | dpll |= (1 << (reduced_clock->p1 - 1)) << DPLL_FPA1_P1_POST_DIV_SHIFT; |
| 3500 | } |
| 3501 | switch (clock->p2) { |
| 3502 | case 5: |
| 3503 | dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_5; |
| 3504 | break; |
| 3505 | case 7: |
| 3506 | dpll |= DPLLB_LVDS_P2_CLOCK_DIV_7; |
| 3507 | break; |
| 3508 | case 10: |
| 3509 | dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_10; |
| 3510 | break; |
| 3511 | case 14: |
| 3512 | dpll |= DPLLB_LVDS_P2_CLOCK_DIV_14; |
| 3513 | break; |
| 3514 | } |
| 3515 | if (INTEL_INFO(dev)->gen >= 4) |
| 3516 | dpll |= (6 << PLL_LOAD_PULSE_PHASE_SHIFT); |
| 3517 | |
| 3518 | if (is_sdvo && intel_pipe_has_type(crtc, INTEL_OUTPUT_TVOUT)) |
| 3519 | dpll |= PLL_REF_INPUT_TVCLKINBC; |
| 3520 | else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_TVOUT)) |
| 3521 | /* XXX: just matching BIOS for now */ |
| 3522 | /* dpll |= PLL_REF_INPUT_TVCLKINBC; */ |
| 3523 | dpll |= 3; |
| 3524 | else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS) && |
| 3525 | intel_panel_use_ssc(dev_priv) && num_connectors < 2) |
| 3526 | dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN; |
| 3527 | else |
| 3528 | dpll |= PLL_REF_INPUT_DREFCLK; |
| 3529 | |
| 3530 | dpll |= DPLL_VCO_ENABLE; |
| 3531 | I915_WRITE(DPLL(pipe), dpll & ~DPLL_VCO_ENABLE); |
| 3532 | POSTING_READ(DPLL(pipe)); |
| 3533 | udelay(150); |
| 3534 | |
| 3535 | /* The LVDS pin pair needs to be on before the DPLLs are enabled. |
| 3536 | * This is an exception to the general rule that mode_set doesn't turn |
| 3537 | * things on. |
| 3538 | */ |
| 3539 | if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) |
| 3540 | intel_update_lvds(crtc, clock, adjusted_mode); |
| 3541 | |
| 3542 | if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT)) |
| 3543 | intel_dp_set_m_n(crtc, mode, adjusted_mode); |
| 3544 | |
| 3545 | I915_WRITE(DPLL(pipe), dpll); |
| 3546 | |
| 3547 | /* Wait for the clocks to stabilize. */ |
| 3548 | POSTING_READ(DPLL(pipe)); |
| 3549 | udelay(150); |
| 3550 | |
| 3551 | if (INTEL_INFO(dev)->gen >= 4) { |
| 3552 | u32 temp = 0; |
| 3553 | if (is_sdvo) { |
| 3554 | temp = intel_mode_get_pixel_multiplier(adjusted_mode); |
| 3555 | if (temp > 1) |
| 3556 | temp = (temp - 1) << DPLL_MD_UDI_MULTIPLIER_SHIFT; |
| 3557 | else |
| 3558 | temp = 0; |
| 3559 | } |
| 3560 | I915_WRITE(DPLL_MD(pipe), temp); |
| 3561 | } else { |
| 3562 | /* The pixel multiplier can only be updated once the |
| 3563 | * DPLL is enabled and the clocks are stable. |
| 3564 | * |
| 3565 | * So write it again. |
| 3566 | */ |
| 3567 | I915_WRITE(DPLL(pipe), dpll); |
| 3568 | } |
| 3569 | } |
| 3570 | |
| 3571 | static void i8xx_update_pll(struct drm_crtc *crtc, |
| 3572 | struct drm_display_mode *adjusted_mode, |
| 3573 | intel_clock_t *clock, |
| 3574 | int num_connectors) |
| 3575 | { |
| 3576 | struct drm_device *dev = crtc->dev; |
| 3577 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 3578 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 3579 | int pipe = intel_crtc->pipe; |
| 3580 | u32 dpll; |
| 3581 | |
| 3582 | dpll = DPLL_VGA_MODE_DIS; |
| 3583 | |
| 3584 | if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) { |
| 3585 | dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT; |
| 3586 | } else { |
| 3587 | if (clock->p1 == 2) |
| 3588 | dpll |= PLL_P1_DIVIDE_BY_TWO; |
| 3589 | else |
| 3590 | dpll |= (clock->p1 - 2) << DPLL_FPA01_P1_POST_DIV_SHIFT; |
| 3591 | if (clock->p2 == 4) |
| 3592 | dpll |= PLL_P2_DIVIDE_BY_4; |
| 3593 | } |
| 3594 | |
| 3595 | if (intel_pipe_has_type(crtc, INTEL_OUTPUT_TVOUT)) |
| 3596 | /* XXX: just matching BIOS for now */ |
| 3597 | /* dpll |= PLL_REF_INPUT_TVCLKINBC; */ |
| 3598 | dpll |= 3; |
| 3599 | else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS) && |
| 3600 | intel_panel_use_ssc(dev_priv) && num_connectors < 2) |
| 3601 | dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN; |
| 3602 | else |
| 3603 | dpll |= PLL_REF_INPUT_DREFCLK; |
| 3604 | |
| 3605 | dpll |= DPLL_VCO_ENABLE; |
| 3606 | I915_WRITE(DPLL(pipe), dpll & ~DPLL_VCO_ENABLE); |
| 3607 | POSTING_READ(DPLL(pipe)); |
| 3608 | udelay(150); |
| 3609 | |
| 3610 | I915_WRITE(DPLL(pipe), dpll); |
| 3611 | |
| 3612 | /* Wait for the clocks to stabilize. */ |
| 3613 | POSTING_READ(DPLL(pipe)); |
| 3614 | udelay(150); |
| 3615 | |
| 3616 | /* The LVDS pin pair needs to be on before the DPLLs are enabled. |
| 3617 | * This is an exception to the general rule that mode_set doesn't turn |
| 3618 | * things on. |
| 3619 | */ |
| 3620 | if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) |
| 3621 | intel_update_lvds(crtc, clock, adjusted_mode); |
| 3622 | |
| 3623 | /* The pixel multiplier can only be updated once the |
| 3624 | * DPLL is enabled and the clocks are stable. |
| 3625 | * |
| 3626 | * So write it again. |
| 3627 | */ |
| 3628 | I915_WRITE(DPLL(pipe), dpll); |
| 3629 | } |
| 3630 | |
Eric Anholt | f564048e | 2011-03-30 13:01:02 -0700 | [diff] [blame] | 3631 | static int i9xx_crtc_mode_set(struct drm_crtc *crtc, |
| 3632 | struct drm_display_mode *mode, |
| 3633 | struct drm_display_mode *adjusted_mode, |
| 3634 | int x, int y, |
| 3635 | struct drm_framebuffer *old_fb) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 3636 | { |
| 3637 | struct drm_device *dev = crtc->dev; |
| 3638 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 3639 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 3640 | int pipe = intel_crtc->pipe; |
Jesse Barnes | 8082400 | 2009-09-10 15:28:06 -0700 | [diff] [blame] | 3641 | int plane = intel_crtc->plane; |
Eric Anholt | c751ce4 | 2010-03-25 11:48:48 -0700 | [diff] [blame] | 3642 | int refclk, num_connectors = 0; |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 3643 | intel_clock_t clock, reduced_clock; |
Daniel Vetter | eb1cbe4 | 2012-03-28 23:12:16 +0200 | [diff] [blame] | 3644 | u32 dspcntr, pipeconf, vsyncshift; |
| 3645 | bool ok, has_reduced_clock = false, is_sdvo = false; |
| 3646 | bool is_lvds = false, is_tv = false, is_dp = false; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 3647 | struct drm_mode_config *mode_config = &dev->mode_config; |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 3648 | struct intel_encoder *encoder; |
Ma Ling | d490609 | 2009-03-18 20:13:27 +0800 | [diff] [blame] | 3649 | const intel_limit_t *limit; |
Chris Wilson | 5c3b82e | 2009-02-11 13:25:09 +0000 | [diff] [blame] | 3650 | int ret; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 3651 | |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 3652 | list_for_each_entry(encoder, &mode_config->encoder_list, base.head) { |
| 3653 | if (encoder->base.crtc != crtc) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 3654 | continue; |
| 3655 | |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 3656 | switch (encoder->type) { |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 3657 | case INTEL_OUTPUT_LVDS: |
| 3658 | is_lvds = true; |
| 3659 | break; |
| 3660 | case INTEL_OUTPUT_SDVO: |
Eric Anholt | 7d57382 | 2009-01-02 13:33:00 -0800 | [diff] [blame] | 3661 | case INTEL_OUTPUT_HDMI: |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 3662 | is_sdvo = true; |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 3663 | if (encoder->needs_tv_clock) |
Jesse Barnes | e2f0ba9 | 2009-02-02 15:11:52 -0800 | [diff] [blame] | 3664 | is_tv = true; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 3665 | break; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 3666 | case INTEL_OUTPUT_TVOUT: |
| 3667 | is_tv = true; |
| 3668 | break; |
Keith Packard | a4fc5ed | 2009-04-07 16:16:42 -0700 | [diff] [blame] | 3669 | case INTEL_OUTPUT_DISPLAYPORT: |
| 3670 | is_dp = true; |
| 3671 | break; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 3672 | } |
Kristian Høgsberg | 43565a0 | 2009-02-13 20:56:52 -0500 | [diff] [blame] | 3673 | |
Eric Anholt | c751ce4 | 2010-03-25 11:48:48 -0700 | [diff] [blame] | 3674 | num_connectors++; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 3675 | } |
| 3676 | |
Jesse Barnes | c65d77d | 2011-12-15 12:30:36 -0800 | [diff] [blame] | 3677 | refclk = i9xx_get_refclk(crtc, num_connectors); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 3678 | |
Ma Ling | d490609 | 2009-03-18 20:13:27 +0800 | [diff] [blame] | 3679 | /* |
| 3680 | * Returns a set of divisors for the desired target clock with the given |
| 3681 | * refclk, or FALSE. The returned values represent the clock equation: |
| 3682 | * reflck * (5 * (m1 + 2) + (m2 + 2)) / (n + 2) / p1 / p2. |
| 3683 | */ |
Chris Wilson | 1b894b5 | 2010-12-14 20:04:54 +0000 | [diff] [blame] | 3684 | limit = intel_limit(crtc, refclk); |
Sean Paul | cec2f35 | 2012-01-10 15:09:36 -0800 | [diff] [blame] | 3685 | ok = limit->find_pll(limit, crtc, adjusted_mode->clock, refclk, NULL, |
| 3686 | &clock); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 3687 | if (!ok) { |
| 3688 | DRM_ERROR("Couldn't find PLL settings for mode!\n"); |
Eric Anholt | f564048e | 2011-03-30 13:01:02 -0700 | [diff] [blame] | 3689 | return -EINVAL; |
| 3690 | } |
| 3691 | |
| 3692 | /* Ensure that the cursor is valid for the new mode before changing... */ |
| 3693 | intel_crtc_update_cursor(crtc, true); |
| 3694 | |
| 3695 | if (is_lvds && dev_priv->lvds_downclock_avail) { |
Sean Paul | cec2f35 | 2012-01-10 15:09:36 -0800 | [diff] [blame] | 3696 | /* |
| 3697 | * Ensure we match the reduced clock's P to the target clock. |
| 3698 | * If the clocks don't match, we can't switch the display clock |
| 3699 | * by using the FP0/FP1. In such case we will disable the LVDS |
| 3700 | * downclock feature. |
| 3701 | */ |
Eric Anholt | f564048e | 2011-03-30 13:01:02 -0700 | [diff] [blame] | 3702 | has_reduced_clock = limit->find_pll(limit, crtc, |
| 3703 | dev_priv->lvds_downclock, |
| 3704 | refclk, |
Sean Paul | cec2f35 | 2012-01-10 15:09:36 -0800 | [diff] [blame] | 3705 | &clock, |
Eric Anholt | f564048e | 2011-03-30 13:01:02 -0700 | [diff] [blame] | 3706 | &reduced_clock); |
Eric Anholt | f564048e | 2011-03-30 13:01:02 -0700 | [diff] [blame] | 3707 | } |
| 3708 | |
Jesse Barnes | c65d77d | 2011-12-15 12:30:36 -0800 | [diff] [blame] | 3709 | if (is_sdvo && is_tv) |
| 3710 | i9xx_adjust_sdvo_tv_clock(adjusted_mode, &clock); |
Eric Anholt | f564048e | 2011-03-30 13:01:02 -0700 | [diff] [blame] | 3711 | |
Jesse Barnes | a7516a0 | 2011-12-15 12:30:37 -0800 | [diff] [blame] | 3712 | i9xx_update_pll_dividers(crtc, &clock, has_reduced_clock ? |
| 3713 | &reduced_clock : NULL); |
Eric Anholt | f564048e | 2011-03-30 13:01:02 -0700 | [diff] [blame] | 3714 | |
Daniel Vetter | eb1cbe4 | 2012-03-28 23:12:16 +0200 | [diff] [blame] | 3715 | if (IS_GEN2(dev)) |
| 3716 | i8xx_update_pll(crtc, adjusted_mode, &clock, num_connectors); |
Eric Anholt | f564048e | 2011-03-30 13:01:02 -0700 | [diff] [blame] | 3717 | else |
Daniel Vetter | eb1cbe4 | 2012-03-28 23:12:16 +0200 | [diff] [blame] | 3718 | i9xx_update_pll(crtc, mode, adjusted_mode, &clock, |
| 3719 | has_reduced_clock ? &reduced_clock : NULL, |
| 3720 | num_connectors); |
Eric Anholt | f564048e | 2011-03-30 13:01:02 -0700 | [diff] [blame] | 3721 | |
| 3722 | /* setup pipeconf */ |
| 3723 | pipeconf = I915_READ(PIPECONF(pipe)); |
| 3724 | |
| 3725 | /* Set up the display plane register */ |
| 3726 | dspcntr = DISPPLANE_GAMMA_ENABLE; |
| 3727 | |
Eric Anholt | 929c77f | 2011-03-30 13:01:04 -0700 | [diff] [blame] | 3728 | if (pipe == 0) |
| 3729 | dspcntr &= ~DISPPLANE_SEL_PIPE_MASK; |
| 3730 | else |
| 3731 | dspcntr |= DISPPLANE_SEL_PIPE_B; |
Eric Anholt | f564048e | 2011-03-30 13:01:02 -0700 | [diff] [blame] | 3732 | |
| 3733 | if (pipe == 0 && INTEL_INFO(dev)->gen < 4) { |
| 3734 | /* Enable pixel doubling when the dot clock is > 90% of the (display) |
| 3735 | * core speed. |
| 3736 | * |
| 3737 | * XXX: No double-wide on 915GM pipe B. Is that the only reason for the |
| 3738 | * pipe == 0 check? |
| 3739 | */ |
| 3740 | if (mode->clock > |
| 3741 | dev_priv->display.get_display_clock_speed(dev) * 9 / 10) |
| 3742 | pipeconf |= PIPECONF_DOUBLE_WIDE; |
| 3743 | else |
| 3744 | pipeconf &= ~PIPECONF_DOUBLE_WIDE; |
| 3745 | } |
| 3746 | |
Adam Jackson | 3b5c78a | 2011-12-13 15:41:00 -0800 | [diff] [blame] | 3747 | /* default to 8bpc */ |
| 3748 | pipeconf &= ~(PIPECONF_BPP_MASK | PIPECONF_DITHER_EN); |
| 3749 | if (is_dp) { |
| 3750 | if (mode->private_flags & INTEL_MODE_DP_FORCE_6BPC) { |
| 3751 | pipeconf |= PIPECONF_BPP_6 | |
| 3752 | PIPECONF_DITHER_EN | |
| 3753 | PIPECONF_DITHER_TYPE_SP; |
| 3754 | } |
| 3755 | } |
| 3756 | |
Eric Anholt | f564048e | 2011-03-30 13:01:02 -0700 | [diff] [blame] | 3757 | DRM_DEBUG_KMS("Mode for pipe %c:\n", pipe == 0 ? 'A' : 'B'); |
| 3758 | drm_mode_debug_printmodeline(mode); |
| 3759 | |
Jesse Barnes | a7516a0 | 2011-12-15 12:30:37 -0800 | [diff] [blame] | 3760 | if (HAS_PIPE_CXSR(dev)) { |
| 3761 | if (intel_crtc->lowfreq_avail) { |
Eric Anholt | f564048e | 2011-03-30 13:01:02 -0700 | [diff] [blame] | 3762 | DRM_DEBUG_KMS("enabling CxSR downclocking\n"); |
| 3763 | pipeconf |= PIPECONF_CXSR_DOWNCLOCK; |
Jesse Barnes | a7516a0 | 2011-12-15 12:30:37 -0800 | [diff] [blame] | 3764 | } else { |
Eric Anholt | f564048e | 2011-03-30 13:01:02 -0700 | [diff] [blame] | 3765 | DRM_DEBUG_KMS("disabling CxSR downclocking\n"); |
| 3766 | pipeconf &= ~PIPECONF_CXSR_DOWNCLOCK; |
| 3767 | } |
| 3768 | } |
| 3769 | |
Keith Packard | 617cf88 | 2012-02-08 13:53:38 -0800 | [diff] [blame] | 3770 | pipeconf &= ~PIPECONF_INTERLACE_MASK; |
Daniel Vetter | dbb0257 | 2012-01-28 14:49:23 +0100 | [diff] [blame] | 3771 | if (!IS_GEN2(dev) && |
| 3772 | adjusted_mode->flags & DRM_MODE_FLAG_INTERLACE) { |
Eric Anholt | f564048e | 2011-03-30 13:01:02 -0700 | [diff] [blame] | 3773 | pipeconf |= PIPECONF_INTERLACE_W_FIELD_INDICATION; |
| 3774 | /* the chip adds 2 halflines automatically */ |
Eric Anholt | f564048e | 2011-03-30 13:01:02 -0700 | [diff] [blame] | 3775 | adjusted_mode->crtc_vtotal -= 1; |
Eric Anholt | f564048e | 2011-03-30 13:01:02 -0700 | [diff] [blame] | 3776 | adjusted_mode->crtc_vblank_end -= 1; |
Daniel Vetter | 0529a0d | 2012-01-28 14:49:24 +0100 | [diff] [blame] | 3777 | vsyncshift = adjusted_mode->crtc_hsync_start |
| 3778 | - adjusted_mode->crtc_htotal/2; |
| 3779 | } else { |
Keith Packard | 617cf88 | 2012-02-08 13:53:38 -0800 | [diff] [blame] | 3780 | pipeconf |= PIPECONF_PROGRESSIVE; |
Daniel Vetter | 0529a0d | 2012-01-28 14:49:24 +0100 | [diff] [blame] | 3781 | vsyncshift = 0; |
| 3782 | } |
| 3783 | |
| 3784 | if (!IS_GEN3(dev)) |
| 3785 | I915_WRITE(VSYNCSHIFT(pipe), vsyncshift); |
Eric Anholt | f564048e | 2011-03-30 13:01:02 -0700 | [diff] [blame] | 3786 | |
| 3787 | I915_WRITE(HTOTAL(pipe), |
| 3788 | (adjusted_mode->crtc_hdisplay - 1) | |
| 3789 | ((adjusted_mode->crtc_htotal - 1) << 16)); |
| 3790 | I915_WRITE(HBLANK(pipe), |
| 3791 | (adjusted_mode->crtc_hblank_start - 1) | |
| 3792 | ((adjusted_mode->crtc_hblank_end - 1) << 16)); |
| 3793 | I915_WRITE(HSYNC(pipe), |
| 3794 | (adjusted_mode->crtc_hsync_start - 1) | |
| 3795 | ((adjusted_mode->crtc_hsync_end - 1) << 16)); |
| 3796 | |
| 3797 | I915_WRITE(VTOTAL(pipe), |
| 3798 | (adjusted_mode->crtc_vdisplay - 1) | |
| 3799 | ((adjusted_mode->crtc_vtotal - 1) << 16)); |
| 3800 | I915_WRITE(VBLANK(pipe), |
| 3801 | (adjusted_mode->crtc_vblank_start - 1) | |
| 3802 | ((adjusted_mode->crtc_vblank_end - 1) << 16)); |
| 3803 | I915_WRITE(VSYNC(pipe), |
| 3804 | (adjusted_mode->crtc_vsync_start - 1) | |
| 3805 | ((adjusted_mode->crtc_vsync_end - 1) << 16)); |
| 3806 | |
| 3807 | /* pipesrc and dspsize control the size that is scaled from, |
| 3808 | * which should always be the user's requested size. |
| 3809 | */ |
Eric Anholt | 929c77f | 2011-03-30 13:01:04 -0700 | [diff] [blame] | 3810 | I915_WRITE(DSPSIZE(plane), |
| 3811 | ((mode->vdisplay - 1) << 16) | |
| 3812 | (mode->hdisplay - 1)); |
| 3813 | I915_WRITE(DSPPOS(plane), 0); |
Eric Anholt | f564048e | 2011-03-30 13:01:02 -0700 | [diff] [blame] | 3814 | I915_WRITE(PIPESRC(pipe), |
| 3815 | ((mode->hdisplay - 1) << 16) | (mode->vdisplay - 1)); |
| 3816 | |
Eric Anholt | f564048e | 2011-03-30 13:01:02 -0700 | [diff] [blame] | 3817 | I915_WRITE(PIPECONF(pipe), pipeconf); |
| 3818 | POSTING_READ(PIPECONF(pipe)); |
Eric Anholt | 929c77f | 2011-03-30 13:01:04 -0700 | [diff] [blame] | 3819 | intel_enable_pipe(dev_priv, pipe, false); |
Eric Anholt | f564048e | 2011-03-30 13:01:02 -0700 | [diff] [blame] | 3820 | |
| 3821 | intel_wait_for_vblank(dev, pipe); |
| 3822 | |
Eric Anholt | f564048e | 2011-03-30 13:01:02 -0700 | [diff] [blame] | 3823 | I915_WRITE(DSPCNTR(plane), dspcntr); |
| 3824 | POSTING_READ(DSPCNTR(plane)); |
Keith Packard | 284d952 | 2011-06-06 17:12:49 -0700 | [diff] [blame] | 3825 | intel_enable_plane(dev_priv, plane, pipe); |
Eric Anholt | f564048e | 2011-03-30 13:01:02 -0700 | [diff] [blame] | 3826 | |
| 3827 | ret = intel_pipe_set_base(crtc, x, y, old_fb); |
| 3828 | |
| 3829 | intel_update_watermarks(dev); |
| 3830 | |
Eric Anholt | f564048e | 2011-03-30 13:01:02 -0700 | [diff] [blame] | 3831 | return ret; |
| 3832 | } |
| 3833 | |
Keith Packard | 9fb526d | 2011-09-26 22:24:57 -0700 | [diff] [blame] | 3834 | /* |
| 3835 | * Initialize reference clocks when the driver loads |
| 3836 | */ |
| 3837 | void ironlake_init_pch_refclk(struct drm_device *dev) |
Jesse Barnes | 13d83a6 | 2011-08-03 12:59:20 -0700 | [diff] [blame] | 3838 | { |
| 3839 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 3840 | struct drm_mode_config *mode_config = &dev->mode_config; |
Jesse Barnes | 13d83a6 | 2011-08-03 12:59:20 -0700 | [diff] [blame] | 3841 | struct intel_encoder *encoder; |
Jesse Barnes | 13d83a6 | 2011-08-03 12:59:20 -0700 | [diff] [blame] | 3842 | u32 temp; |
| 3843 | bool has_lvds = false; |
Keith Packard | 199e5d7 | 2011-09-22 12:01:57 -0700 | [diff] [blame] | 3844 | bool has_cpu_edp = false; |
| 3845 | bool has_pch_edp = false; |
| 3846 | bool has_panel = false; |
Keith Packard | 99eb6a0 | 2011-09-26 14:29:12 -0700 | [diff] [blame] | 3847 | bool has_ck505 = false; |
| 3848 | bool can_ssc = false; |
Jesse Barnes | 13d83a6 | 2011-08-03 12:59:20 -0700 | [diff] [blame] | 3849 | |
| 3850 | /* We need to take the global config into account */ |
Keith Packard | 199e5d7 | 2011-09-22 12:01:57 -0700 | [diff] [blame] | 3851 | list_for_each_entry(encoder, &mode_config->encoder_list, |
| 3852 | base.head) { |
| 3853 | switch (encoder->type) { |
| 3854 | case INTEL_OUTPUT_LVDS: |
| 3855 | has_panel = true; |
| 3856 | has_lvds = true; |
| 3857 | break; |
| 3858 | case INTEL_OUTPUT_EDP: |
| 3859 | has_panel = true; |
| 3860 | if (intel_encoder_is_pch_edp(&encoder->base)) |
| 3861 | has_pch_edp = true; |
| 3862 | else |
| 3863 | has_cpu_edp = true; |
| 3864 | break; |
Jesse Barnes | 13d83a6 | 2011-08-03 12:59:20 -0700 | [diff] [blame] | 3865 | } |
| 3866 | } |
| 3867 | |
Keith Packard | 99eb6a0 | 2011-09-26 14:29:12 -0700 | [diff] [blame] | 3868 | if (HAS_PCH_IBX(dev)) { |
| 3869 | has_ck505 = dev_priv->display_clock_mode; |
| 3870 | can_ssc = has_ck505; |
| 3871 | } else { |
| 3872 | has_ck505 = false; |
| 3873 | can_ssc = true; |
| 3874 | } |
| 3875 | |
| 3876 | DRM_DEBUG_KMS("has_panel %d has_lvds %d has_pch_edp %d has_cpu_edp %d has_ck505 %d\n", |
| 3877 | has_panel, has_lvds, has_pch_edp, has_cpu_edp, |
| 3878 | has_ck505); |
Jesse Barnes | 13d83a6 | 2011-08-03 12:59:20 -0700 | [diff] [blame] | 3879 | |
| 3880 | /* Ironlake: try to setup display ref clock before DPLL |
| 3881 | * enabling. This is only under driver's control after |
| 3882 | * PCH B stepping, previous chipset stepping should be |
| 3883 | * ignoring this setting. |
| 3884 | */ |
| 3885 | temp = I915_READ(PCH_DREF_CONTROL); |
| 3886 | /* Always enable nonspread source */ |
| 3887 | temp &= ~DREF_NONSPREAD_SOURCE_MASK; |
Jesse Barnes | 13d83a6 | 2011-08-03 12:59:20 -0700 | [diff] [blame] | 3888 | |
Keith Packard | 99eb6a0 | 2011-09-26 14:29:12 -0700 | [diff] [blame] | 3889 | if (has_ck505) |
| 3890 | temp |= DREF_NONSPREAD_CK505_ENABLE; |
| 3891 | else |
| 3892 | temp |= DREF_NONSPREAD_SOURCE_ENABLE; |
Jesse Barnes | 13d83a6 | 2011-08-03 12:59:20 -0700 | [diff] [blame] | 3893 | |
Keith Packard | 199e5d7 | 2011-09-22 12:01:57 -0700 | [diff] [blame] | 3894 | if (has_panel) { |
| 3895 | temp &= ~DREF_SSC_SOURCE_MASK; |
| 3896 | temp |= DREF_SSC_SOURCE_ENABLE; |
Jesse Barnes | 13d83a6 | 2011-08-03 12:59:20 -0700 | [diff] [blame] | 3897 | |
Keith Packard | 199e5d7 | 2011-09-22 12:01:57 -0700 | [diff] [blame] | 3898 | /* SSC must be turned on before enabling the CPU output */ |
Keith Packard | 99eb6a0 | 2011-09-26 14:29:12 -0700 | [diff] [blame] | 3899 | if (intel_panel_use_ssc(dev_priv) && can_ssc) { |
Keith Packard | 199e5d7 | 2011-09-22 12:01:57 -0700 | [diff] [blame] | 3900 | DRM_DEBUG_KMS("Using SSC on panel\n"); |
Jesse Barnes | 13d83a6 | 2011-08-03 12:59:20 -0700 | [diff] [blame] | 3901 | temp |= DREF_SSC1_ENABLE; |
Daniel Vetter | e77166b | 2012-03-30 22:14:05 +0200 | [diff] [blame] | 3902 | } else |
| 3903 | temp &= ~DREF_SSC1_ENABLE; |
Keith Packard | 199e5d7 | 2011-09-22 12:01:57 -0700 | [diff] [blame] | 3904 | |
| 3905 | /* Get SSC going before enabling the outputs */ |
| 3906 | I915_WRITE(PCH_DREF_CONTROL, temp); |
| 3907 | POSTING_READ(PCH_DREF_CONTROL); |
| 3908 | udelay(200); |
| 3909 | |
Jesse Barnes | 13d83a6 | 2011-08-03 12:59:20 -0700 | [diff] [blame] | 3910 | temp &= ~DREF_CPU_SOURCE_OUTPUT_MASK; |
| 3911 | |
| 3912 | /* Enable CPU source on CPU attached eDP */ |
Keith Packard | 199e5d7 | 2011-09-22 12:01:57 -0700 | [diff] [blame] | 3913 | if (has_cpu_edp) { |
Keith Packard | 99eb6a0 | 2011-09-26 14:29:12 -0700 | [diff] [blame] | 3914 | if (intel_panel_use_ssc(dev_priv) && can_ssc) { |
Keith Packard | 199e5d7 | 2011-09-22 12:01:57 -0700 | [diff] [blame] | 3915 | DRM_DEBUG_KMS("Using SSC on eDP\n"); |
Jesse Barnes | 13d83a6 | 2011-08-03 12:59:20 -0700 | [diff] [blame] | 3916 | temp |= DREF_CPU_SOURCE_OUTPUT_DOWNSPREAD; |
Keith Packard | 199e5d7 | 2011-09-22 12:01:57 -0700 | [diff] [blame] | 3917 | } |
Jesse Barnes | 13d83a6 | 2011-08-03 12:59:20 -0700 | [diff] [blame] | 3918 | else |
| 3919 | temp |= DREF_CPU_SOURCE_OUTPUT_NONSPREAD; |
Keith Packard | 199e5d7 | 2011-09-22 12:01:57 -0700 | [diff] [blame] | 3920 | } else |
| 3921 | temp |= DREF_CPU_SOURCE_OUTPUT_DISABLE; |
| 3922 | |
| 3923 | I915_WRITE(PCH_DREF_CONTROL, temp); |
| 3924 | POSTING_READ(PCH_DREF_CONTROL); |
| 3925 | udelay(200); |
| 3926 | } else { |
| 3927 | DRM_DEBUG_KMS("Disabling SSC entirely\n"); |
| 3928 | |
| 3929 | temp &= ~DREF_CPU_SOURCE_OUTPUT_MASK; |
| 3930 | |
| 3931 | /* Turn off CPU output */ |
| 3932 | temp |= DREF_CPU_SOURCE_OUTPUT_DISABLE; |
| 3933 | |
| 3934 | I915_WRITE(PCH_DREF_CONTROL, temp); |
| 3935 | POSTING_READ(PCH_DREF_CONTROL); |
| 3936 | udelay(200); |
| 3937 | |
| 3938 | /* Turn off the SSC source */ |
| 3939 | temp &= ~DREF_SSC_SOURCE_MASK; |
| 3940 | temp |= DREF_SSC_SOURCE_DISABLE; |
| 3941 | |
| 3942 | /* Turn off SSC1 */ |
| 3943 | temp &= ~ DREF_SSC1_ENABLE; |
| 3944 | |
Jesse Barnes | 13d83a6 | 2011-08-03 12:59:20 -0700 | [diff] [blame] | 3945 | I915_WRITE(PCH_DREF_CONTROL, temp); |
| 3946 | POSTING_READ(PCH_DREF_CONTROL); |
| 3947 | udelay(200); |
| 3948 | } |
| 3949 | } |
| 3950 | |
Jesse Barnes | d9d444c | 2011-09-02 13:03:05 -0700 | [diff] [blame] | 3951 | static int ironlake_get_refclk(struct drm_crtc *crtc) |
| 3952 | { |
| 3953 | struct drm_device *dev = crtc->dev; |
| 3954 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 3955 | struct intel_encoder *encoder; |
| 3956 | struct drm_mode_config *mode_config = &dev->mode_config; |
| 3957 | struct intel_encoder *edp_encoder = NULL; |
| 3958 | int num_connectors = 0; |
| 3959 | bool is_lvds = false; |
| 3960 | |
| 3961 | list_for_each_entry(encoder, &mode_config->encoder_list, base.head) { |
| 3962 | if (encoder->base.crtc != crtc) |
| 3963 | continue; |
| 3964 | |
| 3965 | switch (encoder->type) { |
| 3966 | case INTEL_OUTPUT_LVDS: |
| 3967 | is_lvds = true; |
| 3968 | break; |
| 3969 | case INTEL_OUTPUT_EDP: |
| 3970 | edp_encoder = encoder; |
| 3971 | break; |
| 3972 | } |
| 3973 | num_connectors++; |
| 3974 | } |
| 3975 | |
| 3976 | if (is_lvds && intel_panel_use_ssc(dev_priv) && num_connectors < 2) { |
| 3977 | DRM_DEBUG_KMS("using SSC reference clock of %d MHz\n", |
| 3978 | dev_priv->lvds_ssc_freq); |
| 3979 | return dev_priv->lvds_ssc_freq * 1000; |
| 3980 | } |
| 3981 | |
| 3982 | return 120000; |
| 3983 | } |
| 3984 | |
Eric Anholt | f564048e | 2011-03-30 13:01:02 -0700 | [diff] [blame] | 3985 | static int ironlake_crtc_mode_set(struct drm_crtc *crtc, |
| 3986 | struct drm_display_mode *mode, |
| 3987 | struct drm_display_mode *adjusted_mode, |
| 3988 | int x, int y, |
| 3989 | struct drm_framebuffer *old_fb) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 3990 | { |
| 3991 | struct drm_device *dev = crtc->dev; |
| 3992 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 3993 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 3994 | int pipe = intel_crtc->pipe; |
Chris Wilson | 5c3b82e | 2009-02-11 13:25:09 +0000 | [diff] [blame] | 3995 | int plane = intel_crtc->plane; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 3996 | int refclk, num_connectors = 0; |
| 3997 | intel_clock_t clock, reduced_clock; |
| 3998 | u32 dpll, fp = 0, fp2 = 0, dspcntr, pipeconf; |
Eric Anholt | a07d678 | 2011-03-30 13:01:08 -0700 | [diff] [blame] | 3999 | bool ok, has_reduced_clock = false, is_sdvo = false; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4000 | bool is_crt = false, is_lvds = false, is_tv = false, is_dp = false; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4001 | struct drm_mode_config *mode_config = &dev->mode_config; |
Jesse Barnes | e3aef17 | 2012-04-10 11:58:03 -0700 | [diff] [blame] | 4002 | struct intel_encoder *encoder, *edp_encoder = NULL; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4003 | const intel_limit_t *limit; |
| 4004 | int ret; |
| 4005 | struct fdi_m_n m_n = {0}; |
Eric Anholt | fae1498 | 2011-03-30 13:01:09 -0700 | [diff] [blame] | 4006 | u32 temp; |
Jesse Barnes | 5a35420 | 2011-06-24 12:19:22 -0700 | [diff] [blame] | 4007 | int target_clock, pixel_multiplier, lane, link_bw, factor; |
| 4008 | unsigned int pipe_bpp; |
| 4009 | bool dither; |
Jesse Barnes | e3aef17 | 2012-04-10 11:58:03 -0700 | [diff] [blame] | 4010 | bool is_cpu_edp = false, is_pch_edp = false; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4011 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4012 | list_for_each_entry(encoder, &mode_config->encoder_list, base.head) { |
| 4013 | if (encoder->base.crtc != crtc) |
| 4014 | continue; |
| 4015 | |
| 4016 | switch (encoder->type) { |
| 4017 | case INTEL_OUTPUT_LVDS: |
| 4018 | is_lvds = true; |
| 4019 | break; |
| 4020 | case INTEL_OUTPUT_SDVO: |
| 4021 | case INTEL_OUTPUT_HDMI: |
| 4022 | is_sdvo = true; |
| 4023 | if (encoder->needs_tv_clock) |
| 4024 | is_tv = true; |
| 4025 | break; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4026 | case INTEL_OUTPUT_TVOUT: |
| 4027 | is_tv = true; |
| 4028 | break; |
| 4029 | case INTEL_OUTPUT_ANALOG: |
| 4030 | is_crt = true; |
| 4031 | break; |
| 4032 | case INTEL_OUTPUT_DISPLAYPORT: |
| 4033 | is_dp = true; |
| 4034 | break; |
| 4035 | case INTEL_OUTPUT_EDP: |
Jesse Barnes | e3aef17 | 2012-04-10 11:58:03 -0700 | [diff] [blame] | 4036 | is_dp = true; |
| 4037 | if (intel_encoder_is_pch_edp(&encoder->base)) |
| 4038 | is_pch_edp = true; |
| 4039 | else |
| 4040 | is_cpu_edp = true; |
| 4041 | edp_encoder = encoder; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4042 | break; |
| 4043 | } |
| 4044 | |
Kristian Høgsberg | 43565a0 | 2009-02-13 20:56:52 -0500 | [diff] [blame] | 4045 | num_connectors++; |
| 4046 | } |
| 4047 | |
Jesse Barnes | d9d444c | 2011-09-02 13:03:05 -0700 | [diff] [blame] | 4048 | refclk = ironlake_get_refclk(crtc); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4049 | |
| 4050 | /* |
| 4051 | * Returns a set of divisors for the desired target clock with the given |
| 4052 | * refclk, or FALSE. The returned values represent the clock equation: |
| 4053 | * reflck * (5 * (m1 + 2) + (m2 + 2)) / (n + 2) / p1 / p2. |
| 4054 | */ |
| 4055 | limit = intel_limit(crtc, refclk); |
Sean Paul | cec2f35 | 2012-01-10 15:09:36 -0800 | [diff] [blame] | 4056 | ok = limit->find_pll(limit, crtc, adjusted_mode->clock, refclk, NULL, |
| 4057 | &clock); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4058 | if (!ok) { |
| 4059 | DRM_ERROR("Couldn't find PLL settings for mode!\n"); |
| 4060 | return -EINVAL; |
| 4061 | } |
| 4062 | |
Chris Wilson | cda4b7d | 2010-07-09 08:45:04 +0100 | [diff] [blame] | 4063 | /* Ensure that the cursor is valid for the new mode before changing... */ |
Chris Wilson | 6b383a7 | 2010-09-13 13:54:26 +0100 | [diff] [blame] | 4064 | intel_crtc_update_cursor(crtc, true); |
Chris Wilson | cda4b7d | 2010-07-09 08:45:04 +0100 | [diff] [blame] | 4065 | |
Zhao Yakui | ddc9003 | 2010-01-06 22:05:56 +0800 | [diff] [blame] | 4066 | if (is_lvds && dev_priv->lvds_downclock_avail) { |
Sean Paul | cec2f35 | 2012-01-10 15:09:36 -0800 | [diff] [blame] | 4067 | /* |
| 4068 | * Ensure we match the reduced clock's P to the target clock. |
| 4069 | * If the clocks don't match, we can't switch the display clock |
| 4070 | * by using the FP0/FP1. In such case we will disable the LVDS |
| 4071 | * downclock feature. |
| 4072 | */ |
Zhao Yakui | ddc9003 | 2010-01-06 22:05:56 +0800 | [diff] [blame] | 4073 | has_reduced_clock = limit->find_pll(limit, crtc, |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 4074 | dev_priv->lvds_downclock, |
| 4075 | refclk, |
Sean Paul | cec2f35 | 2012-01-10 15:09:36 -0800 | [diff] [blame] | 4076 | &clock, |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 4077 | &reduced_clock); |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 4078 | } |
Zhenyu Wang | 7026d4a | 2009-03-24 14:02:43 +0800 | [diff] [blame] | 4079 | /* SDVO TV has fixed PLL values depend on its clock range, |
| 4080 | this mirrors vbios setting. */ |
| 4081 | if (is_sdvo && is_tv) { |
| 4082 | if (adjusted_mode->clock >= 100000 |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 4083 | && adjusted_mode->clock < 140500) { |
Zhenyu Wang | 7026d4a | 2009-03-24 14:02:43 +0800 | [diff] [blame] | 4084 | clock.p1 = 2; |
| 4085 | clock.p2 = 10; |
| 4086 | clock.n = 3; |
| 4087 | clock.m1 = 16; |
| 4088 | clock.m2 = 8; |
| 4089 | } else if (adjusted_mode->clock >= 140500 |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 4090 | && adjusted_mode->clock <= 200000) { |
Zhenyu Wang | 7026d4a | 2009-03-24 14:02:43 +0800 | [diff] [blame] | 4091 | clock.p1 = 1; |
| 4092 | clock.p2 = 10; |
| 4093 | clock.n = 6; |
| 4094 | clock.m1 = 12; |
| 4095 | clock.m2 = 8; |
| 4096 | } |
| 4097 | } |
| 4098 | |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 4099 | /* FDI link */ |
Eric Anholt | 8febb29 | 2011-03-30 13:01:07 -0700 | [diff] [blame] | 4100 | pixel_multiplier = intel_mode_get_pixel_multiplier(adjusted_mode); |
| 4101 | lane = 0; |
| 4102 | /* CPU eDP doesn't require FDI link, so just set DP M/N |
| 4103 | according to current link config */ |
Jesse Barnes | e3aef17 | 2012-04-10 11:58:03 -0700 | [diff] [blame] | 4104 | if (is_cpu_edp) { |
Eric Anholt | 8febb29 | 2011-03-30 13:01:07 -0700 | [diff] [blame] | 4105 | target_clock = mode->clock; |
Jesse Barnes | e3aef17 | 2012-04-10 11:58:03 -0700 | [diff] [blame] | 4106 | intel_edp_link_config(edp_encoder, &lane, &link_bw); |
Eric Anholt | 8febb29 | 2011-03-30 13:01:07 -0700 | [diff] [blame] | 4107 | } else { |
| 4108 | /* [e]DP over FDI requires target mode clock |
| 4109 | instead of link clock */ |
Jesse Barnes | e3aef17 | 2012-04-10 11:58:03 -0700 | [diff] [blame] | 4110 | if (is_dp) |
Zhenyu Wang | 5eb08b6 | 2009-07-24 01:00:31 +0800 | [diff] [blame] | 4111 | target_clock = mode->clock; |
Eric Anholt | 8febb29 | 2011-03-30 13:01:07 -0700 | [diff] [blame] | 4112 | else |
| 4113 | target_clock = adjusted_mode->clock; |
Chris Wilson | 021357a | 2010-09-07 20:54:59 +0100 | [diff] [blame] | 4114 | |
Eric Anholt | 8febb29 | 2011-03-30 13:01:07 -0700 | [diff] [blame] | 4115 | /* FDI is a binary signal running at ~2.7GHz, encoding |
| 4116 | * each output octet as 10 bits. The actual frequency |
| 4117 | * is stored as a divider into a 100MHz clock, and the |
| 4118 | * mode pixel clock is stored in units of 1KHz. |
| 4119 | * Hence the bw of each lane in terms of the mode signal |
| 4120 | * is: |
| 4121 | */ |
| 4122 | link_bw = intel_fdi_link_freq(dev) * MHz(100)/KHz(1)/10; |
Zhenyu Wang | 5eb08b6 | 2009-07-24 01:00:31 +0800 | [diff] [blame] | 4123 | } |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 4124 | |
Eric Anholt | 8febb29 | 2011-03-30 13:01:07 -0700 | [diff] [blame] | 4125 | /* determine panel color depth */ |
| 4126 | temp = I915_READ(PIPECONF(pipe)); |
| 4127 | temp &= ~PIPE_BPC_MASK; |
Adam Jackson | 3b5c78a | 2011-12-13 15:41:00 -0800 | [diff] [blame] | 4128 | dither = intel_choose_pipe_bpp_dither(crtc, &pipe_bpp, mode); |
Jesse Barnes | 5a35420 | 2011-06-24 12:19:22 -0700 | [diff] [blame] | 4129 | switch (pipe_bpp) { |
| 4130 | case 18: |
| 4131 | temp |= PIPE_6BPC; |
| 4132 | break; |
| 4133 | case 24: |
Eric Anholt | 8febb29 | 2011-03-30 13:01:07 -0700 | [diff] [blame] | 4134 | temp |= PIPE_8BPC; |
Eric Anholt | 8febb29 | 2011-03-30 13:01:07 -0700 | [diff] [blame] | 4135 | break; |
Jesse Barnes | 5a35420 | 2011-06-24 12:19:22 -0700 | [diff] [blame] | 4136 | case 30: |
| 4137 | temp |= PIPE_10BPC; |
Eric Anholt | 8febb29 | 2011-03-30 13:01:07 -0700 | [diff] [blame] | 4138 | break; |
Jesse Barnes | 5a35420 | 2011-06-24 12:19:22 -0700 | [diff] [blame] | 4139 | case 36: |
| 4140 | temp |= PIPE_12BPC; |
Eric Anholt | 8febb29 | 2011-03-30 13:01:07 -0700 | [diff] [blame] | 4141 | break; |
| 4142 | default: |
Jesse Barnes | 62ac41a | 2011-07-28 12:55:14 -0700 | [diff] [blame] | 4143 | WARN(1, "intel_choose_pipe_bpp returned invalid value %d\n", |
| 4144 | pipe_bpp); |
Jesse Barnes | 5a35420 | 2011-06-24 12:19:22 -0700 | [diff] [blame] | 4145 | temp |= PIPE_8BPC; |
| 4146 | pipe_bpp = 24; |
| 4147 | break; |
Eric Anholt | 8febb29 | 2011-03-30 13:01:07 -0700 | [diff] [blame] | 4148 | } |
| 4149 | |
Jesse Barnes | 5a35420 | 2011-06-24 12:19:22 -0700 | [diff] [blame] | 4150 | intel_crtc->bpp = pipe_bpp; |
| 4151 | I915_WRITE(PIPECONF(pipe), temp); |
| 4152 | |
Eric Anholt | 8febb29 | 2011-03-30 13:01:07 -0700 | [diff] [blame] | 4153 | if (!lane) { |
| 4154 | /* |
| 4155 | * Account for spread spectrum to avoid |
| 4156 | * oversubscribing the link. Max center spread |
| 4157 | * is 2.5%; use 5% for safety's sake. |
| 4158 | */ |
Jesse Barnes | 5a35420 | 2011-06-24 12:19:22 -0700 | [diff] [blame] | 4159 | u32 bps = target_clock * intel_crtc->bpp * 21 / 20; |
Eric Anholt | 8febb29 | 2011-03-30 13:01:07 -0700 | [diff] [blame] | 4160 | lane = bps / (link_bw * 8) + 1; |
| 4161 | } |
| 4162 | |
| 4163 | intel_crtc->fdi_lanes = lane; |
| 4164 | |
| 4165 | if (pixel_multiplier > 1) |
| 4166 | link_bw *= pixel_multiplier; |
Jesse Barnes | 5a35420 | 2011-06-24 12:19:22 -0700 | [diff] [blame] | 4167 | ironlake_compute_m_n(intel_crtc->bpp, lane, target_clock, link_bw, |
| 4168 | &m_n); |
Eric Anholt | 8febb29 | 2011-03-30 13:01:07 -0700 | [diff] [blame] | 4169 | |
Eric Anholt | a07d678 | 2011-03-30 13:01:08 -0700 | [diff] [blame] | 4170 | fp = clock.n << 16 | clock.m1 << 8 | clock.m2; |
| 4171 | if (has_reduced_clock) |
| 4172 | fp2 = reduced_clock.n << 16 | reduced_clock.m1 << 8 | |
| 4173 | reduced_clock.m2; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4174 | |
Chris Wilson | c185812 | 2010-12-03 21:35:48 +0000 | [diff] [blame] | 4175 | /* Enable autotuning of the PLL clock (if permissible) */ |
Eric Anholt | 8febb29 | 2011-03-30 13:01:07 -0700 | [diff] [blame] | 4176 | factor = 21; |
| 4177 | if (is_lvds) { |
| 4178 | if ((intel_panel_use_ssc(dev_priv) && |
| 4179 | dev_priv->lvds_ssc_freq == 100) || |
| 4180 | (I915_READ(PCH_LVDS) & LVDS_CLKB_POWER_MASK) == LVDS_CLKB_POWER_UP) |
| 4181 | factor = 25; |
| 4182 | } else if (is_sdvo && is_tv) |
| 4183 | factor = 20; |
Chris Wilson | c185812 | 2010-12-03 21:35:48 +0000 | [diff] [blame] | 4184 | |
Jesse Barnes | cb0e093 | 2011-07-28 14:50:30 -0700 | [diff] [blame] | 4185 | if (clock.m < factor * clock.n) |
Eric Anholt | 8febb29 | 2011-03-30 13:01:07 -0700 | [diff] [blame] | 4186 | fp |= FP_CB_TUNE; |
Chris Wilson | c185812 | 2010-12-03 21:35:48 +0000 | [diff] [blame] | 4187 | |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 4188 | dpll = 0; |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 4189 | |
Eric Anholt | a07d678 | 2011-03-30 13:01:08 -0700 | [diff] [blame] | 4190 | if (is_lvds) |
| 4191 | dpll |= DPLLB_MODE_LVDS; |
| 4192 | else |
| 4193 | dpll |= DPLLB_MODE_DAC_SERIAL; |
| 4194 | if (is_sdvo) { |
| 4195 | int pixel_multiplier = intel_mode_get_pixel_multiplier(adjusted_mode); |
| 4196 | if (pixel_multiplier > 1) { |
| 4197 | dpll |= (pixel_multiplier - 1) << PLL_REF_SDVO_HDMI_MULTIPLIER_SHIFT; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4198 | } |
Eric Anholt | a07d678 | 2011-03-30 13:01:08 -0700 | [diff] [blame] | 4199 | dpll |= DPLL_DVO_HIGH_SPEED; |
| 4200 | } |
Jesse Barnes | e3aef17 | 2012-04-10 11:58:03 -0700 | [diff] [blame] | 4201 | if (is_dp && !is_cpu_edp) |
Eric Anholt | a07d678 | 2011-03-30 13:01:08 -0700 | [diff] [blame] | 4202 | dpll |= DPLL_DVO_HIGH_SPEED; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4203 | |
Eric Anholt | a07d678 | 2011-03-30 13:01:08 -0700 | [diff] [blame] | 4204 | /* compute bitmask from p1 value */ |
| 4205 | dpll |= (1 << (clock.p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT; |
| 4206 | /* also FPA1 */ |
| 4207 | dpll |= (1 << (clock.p1 - 1)) << DPLL_FPA1_P1_POST_DIV_SHIFT; |
| 4208 | |
| 4209 | switch (clock.p2) { |
| 4210 | case 5: |
| 4211 | dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_5; |
| 4212 | break; |
| 4213 | case 7: |
| 4214 | dpll |= DPLLB_LVDS_P2_CLOCK_DIV_7; |
| 4215 | break; |
| 4216 | case 10: |
| 4217 | dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_10; |
| 4218 | break; |
| 4219 | case 14: |
| 4220 | dpll |= DPLLB_LVDS_P2_CLOCK_DIV_14; |
| 4221 | break; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4222 | } |
| 4223 | |
| 4224 | if (is_sdvo && is_tv) |
| 4225 | dpll |= PLL_REF_INPUT_TVCLKINBC; |
| 4226 | else if (is_tv) |
| 4227 | /* XXX: just matching BIOS for now */ |
| 4228 | /* dpll |= PLL_REF_INPUT_TVCLKINBC; */ |
| 4229 | dpll |= 3; |
Chris Wilson | a761503 | 2011-01-12 17:04:08 +0000 | [diff] [blame] | 4230 | else if (is_lvds && intel_panel_use_ssc(dev_priv) && num_connectors < 2) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4231 | dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN; |
| 4232 | else |
| 4233 | dpll |= PLL_REF_INPUT_DREFCLK; |
| 4234 | |
| 4235 | /* setup pipeconf */ |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 4236 | pipeconf = I915_READ(PIPECONF(pipe)); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4237 | |
| 4238 | /* Set up the display plane register */ |
| 4239 | dspcntr = DISPPLANE_GAMMA_ENABLE; |
| 4240 | |
Jesse Barnes | f7cb34d | 2011-10-12 10:49:14 -0700 | [diff] [blame] | 4241 | DRM_DEBUG_KMS("Mode for pipe %d:\n", pipe); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4242 | drm_mode_debug_printmodeline(mode); |
| 4243 | |
Jesse Barnes | 5c5313c | 2010-10-07 16:01:11 -0700 | [diff] [blame] | 4244 | /* PCH eDP needs FDI, but CPU eDP does not */ |
Jesse Barnes | 4b645f1 | 2011-10-12 09:51:31 -0700 | [diff] [blame] | 4245 | if (!intel_crtc->no_pll) { |
Jesse Barnes | e3aef17 | 2012-04-10 11:58:03 -0700 | [diff] [blame] | 4246 | if (!is_cpu_edp) { |
Jesse Barnes | 4b645f1 | 2011-10-12 09:51:31 -0700 | [diff] [blame] | 4247 | I915_WRITE(PCH_FP0(pipe), fp); |
| 4248 | I915_WRITE(PCH_DPLL(pipe), dpll & ~DPLL_VCO_ENABLE); |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 4249 | |
Jesse Barnes | 4b645f1 | 2011-10-12 09:51:31 -0700 | [diff] [blame] | 4250 | POSTING_READ(PCH_DPLL(pipe)); |
| 4251 | udelay(150); |
| 4252 | } |
| 4253 | } else { |
| 4254 | if (dpll == (I915_READ(PCH_DPLL(0)) & 0x7fffffff) && |
| 4255 | fp == I915_READ(PCH_FP0(0))) { |
| 4256 | intel_crtc->use_pll_a = true; |
| 4257 | DRM_DEBUG_KMS("using pipe a dpll\n"); |
| 4258 | } else if (dpll == (I915_READ(PCH_DPLL(1)) & 0x7fffffff) && |
| 4259 | fp == I915_READ(PCH_FP0(1))) { |
| 4260 | intel_crtc->use_pll_a = false; |
| 4261 | DRM_DEBUG_KMS("using pipe b dpll\n"); |
| 4262 | } else { |
| 4263 | DRM_DEBUG_KMS("no matching PLL configuration for pipe 2\n"); |
| 4264 | return -EINVAL; |
| 4265 | } |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4266 | } |
| 4267 | |
| 4268 | /* The LVDS pin pair needs to be on before the DPLLs are enabled. |
| 4269 | * This is an exception to the general rule that mode_set doesn't turn |
| 4270 | * things on. |
| 4271 | */ |
| 4272 | if (is_lvds) { |
Eric Anholt | fae1498 | 2011-03-30 13:01:09 -0700 | [diff] [blame] | 4273 | temp = I915_READ(PCH_LVDS); |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 4274 | temp |= LVDS_PORT_EN | LVDS_A0A2_CLKA_POWER_UP; |
Jesse Barnes | 7885d20 | 2012-01-12 14:51:17 -0800 | [diff] [blame] | 4275 | if (HAS_PCH_CPT(dev)) { |
| 4276 | temp &= ~PORT_TRANS_SEL_MASK; |
Jesse Barnes | 4b645f1 | 2011-10-12 09:51:31 -0700 | [diff] [blame] | 4277 | temp |= PORT_TRANS_SEL_CPT(pipe); |
Jesse Barnes | 7885d20 | 2012-01-12 14:51:17 -0800 | [diff] [blame] | 4278 | } else { |
| 4279 | if (pipe == 1) |
| 4280 | temp |= LVDS_PIPEB_SELECT; |
| 4281 | else |
| 4282 | temp &= ~LVDS_PIPEB_SELECT; |
| 4283 | } |
Jesse Barnes | 4b645f1 | 2011-10-12 09:51:31 -0700 | [diff] [blame] | 4284 | |
Zhao Yakui | a3e17eb | 2009-10-10 10:42:37 +0800 | [diff] [blame] | 4285 | /* set the corresponsding LVDS_BORDER bit */ |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 4286 | temp |= dev_priv->lvds_border_bits; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4287 | /* Set the B0-B3 data pairs corresponding to whether we're going to |
| 4288 | * set the DPLLs for dual-channel mode or not. |
| 4289 | */ |
| 4290 | if (clock.p2 == 7) |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 4291 | temp |= LVDS_B0B3_POWER_UP | LVDS_CLKB_POWER_UP; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4292 | else |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 4293 | temp &= ~(LVDS_B0B3_POWER_UP | LVDS_CLKB_POWER_UP); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4294 | |
| 4295 | /* It would be nice to set 24 vs 18-bit mode (LVDS_A3_POWER_UP) |
| 4296 | * appropriately here, but we need to look more thoroughly into how |
| 4297 | * panels behave in the two modes. |
| 4298 | */ |
Chris Wilson | 284d5df | 2012-04-14 17:41:59 +0100 | [diff] [blame] | 4299 | temp &= ~(LVDS_HSYNC_POLARITY | LVDS_VSYNC_POLARITY); |
Bryan Freed | aa9b500 | 2011-01-12 13:43:19 -0800 | [diff] [blame] | 4300 | if (adjusted_mode->flags & DRM_MODE_FLAG_NHSYNC) |
Chris Wilson | 284d5df | 2012-04-14 17:41:59 +0100 | [diff] [blame] | 4301 | temp |= LVDS_HSYNC_POLARITY; |
Bryan Freed | aa9b500 | 2011-01-12 13:43:19 -0800 | [diff] [blame] | 4302 | if (adjusted_mode->flags & DRM_MODE_FLAG_NVSYNC) |
Chris Wilson | 284d5df | 2012-04-14 17:41:59 +0100 | [diff] [blame] | 4303 | temp |= LVDS_VSYNC_POLARITY; |
Eric Anholt | fae1498 | 2011-03-30 13:01:09 -0700 | [diff] [blame] | 4304 | I915_WRITE(PCH_LVDS, temp); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4305 | } |
Jesse Barnes | 434ed09 | 2010-09-07 14:48:06 -0700 | [diff] [blame] | 4306 | |
Eric Anholt | 8febb29 | 2011-03-30 13:01:07 -0700 | [diff] [blame] | 4307 | pipeconf &= ~PIPECONF_DITHER_EN; |
| 4308 | pipeconf &= ~PIPECONF_DITHER_TYPE_MASK; |
Jesse Barnes | 5a35420 | 2011-06-24 12:19:22 -0700 | [diff] [blame] | 4309 | if ((is_lvds && dev_priv->lvds_dither) || dither) { |
Eric Anholt | 8febb29 | 2011-03-30 13:01:07 -0700 | [diff] [blame] | 4310 | pipeconf |= PIPECONF_DITHER_EN; |
Daniel Vetter | f74974c | 2011-10-11 17:27:51 +0200 | [diff] [blame] | 4311 | pipeconf |= PIPECONF_DITHER_TYPE_SP; |
Jesse Barnes | 434ed09 | 2010-09-07 14:48:06 -0700 | [diff] [blame] | 4312 | } |
Jesse Barnes | e3aef17 | 2012-04-10 11:58:03 -0700 | [diff] [blame] | 4313 | if (is_dp && !is_cpu_edp) { |
Keith Packard | a4fc5ed | 2009-04-07 16:16:42 -0700 | [diff] [blame] | 4314 | intel_dp_set_m_n(crtc, mode, adjusted_mode); |
Eric Anholt | 8febb29 | 2011-03-30 13:01:07 -0700 | [diff] [blame] | 4315 | } else { |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 4316 | /* For non-DP output, clear any trans DP clock recovery setting.*/ |
Jesse Barnes | 9db4a9c | 2011-02-07 12:26:52 -0800 | [diff] [blame] | 4317 | I915_WRITE(TRANSDATA_M1(pipe), 0); |
| 4318 | I915_WRITE(TRANSDATA_N1(pipe), 0); |
| 4319 | I915_WRITE(TRANSDPLINK_M1(pipe), 0); |
| 4320 | I915_WRITE(TRANSDPLINK_N1(pipe), 0); |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 4321 | } |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4322 | |
Jesse Barnes | e3aef17 | 2012-04-10 11:58:03 -0700 | [diff] [blame] | 4323 | if (!intel_crtc->no_pll && (!edp_encoder || is_pch_edp)) { |
Eric Anholt | fae1498 | 2011-03-30 13:01:09 -0700 | [diff] [blame] | 4324 | I915_WRITE(PCH_DPLL(pipe), dpll); |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 4325 | |
Zhenyu Wang | 32f9d65 | 2009-07-24 01:00:32 +0800 | [diff] [blame] | 4326 | /* Wait for the clocks to stabilize. */ |
Eric Anholt | fae1498 | 2011-03-30 13:01:09 -0700 | [diff] [blame] | 4327 | POSTING_READ(PCH_DPLL(pipe)); |
Zhenyu Wang | 32f9d65 | 2009-07-24 01:00:32 +0800 | [diff] [blame] | 4328 | udelay(150); |
| 4329 | |
Eric Anholt | 8febb29 | 2011-03-30 13:01:07 -0700 | [diff] [blame] | 4330 | /* The pixel multiplier can only be updated once the |
| 4331 | * DPLL is enabled and the clocks are stable. |
| 4332 | * |
| 4333 | * So write it again. |
| 4334 | */ |
Eric Anholt | fae1498 | 2011-03-30 13:01:09 -0700 | [diff] [blame] | 4335 | I915_WRITE(PCH_DPLL(pipe), dpll); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4336 | } |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4337 | |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 4338 | intel_crtc->lowfreq_avail = false; |
Jesse Barnes | 4b645f1 | 2011-10-12 09:51:31 -0700 | [diff] [blame] | 4339 | if (!intel_crtc->no_pll) { |
| 4340 | if (is_lvds && has_reduced_clock && i915_powersave) { |
| 4341 | I915_WRITE(PCH_FP1(pipe), fp2); |
| 4342 | intel_crtc->lowfreq_avail = true; |
| 4343 | if (HAS_PIPE_CXSR(dev)) { |
| 4344 | DRM_DEBUG_KMS("enabling CxSR downclocking\n"); |
| 4345 | pipeconf |= PIPECONF_CXSR_DOWNCLOCK; |
| 4346 | } |
| 4347 | } else { |
| 4348 | I915_WRITE(PCH_FP1(pipe), fp); |
| 4349 | if (HAS_PIPE_CXSR(dev)) { |
| 4350 | DRM_DEBUG_KMS("disabling CxSR downclocking\n"); |
| 4351 | pipeconf &= ~PIPECONF_CXSR_DOWNCLOCK; |
| 4352 | } |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 4353 | } |
| 4354 | } |
| 4355 | |
Keith Packard | 617cf88 | 2012-02-08 13:53:38 -0800 | [diff] [blame] | 4356 | pipeconf &= ~PIPECONF_INTERLACE_MASK; |
Krzysztof Halasa | 734b415 | 2010-05-25 18:41:46 +0200 | [diff] [blame] | 4357 | if (adjusted_mode->flags & DRM_MODE_FLAG_INTERLACE) { |
Daniel Vetter | 5def474 | 2012-01-28 14:49:22 +0100 | [diff] [blame] | 4358 | pipeconf |= PIPECONF_INTERLACED_ILK; |
Krzysztof Halasa | 734b415 | 2010-05-25 18:41:46 +0200 | [diff] [blame] | 4359 | /* the chip adds 2 halflines automatically */ |
Krzysztof Halasa | 734b415 | 2010-05-25 18:41:46 +0200 | [diff] [blame] | 4360 | adjusted_mode->crtc_vtotal -= 1; |
Krzysztof Halasa | 734b415 | 2010-05-25 18:41:46 +0200 | [diff] [blame] | 4361 | adjusted_mode->crtc_vblank_end -= 1; |
Daniel Vetter | 0529a0d | 2012-01-28 14:49:24 +0100 | [diff] [blame] | 4362 | I915_WRITE(VSYNCSHIFT(pipe), |
| 4363 | adjusted_mode->crtc_hsync_start |
| 4364 | - adjusted_mode->crtc_htotal/2); |
| 4365 | } else { |
Keith Packard | 617cf88 | 2012-02-08 13:53:38 -0800 | [diff] [blame] | 4366 | pipeconf |= PIPECONF_PROGRESSIVE; |
Daniel Vetter | 0529a0d | 2012-01-28 14:49:24 +0100 | [diff] [blame] | 4367 | I915_WRITE(VSYNCSHIFT(pipe), 0); |
| 4368 | } |
Krzysztof Halasa | 734b415 | 2010-05-25 18:41:46 +0200 | [diff] [blame] | 4369 | |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 4370 | I915_WRITE(HTOTAL(pipe), |
| 4371 | (adjusted_mode->crtc_hdisplay - 1) | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4372 | ((adjusted_mode->crtc_htotal - 1) << 16)); |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 4373 | I915_WRITE(HBLANK(pipe), |
| 4374 | (adjusted_mode->crtc_hblank_start - 1) | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4375 | ((adjusted_mode->crtc_hblank_end - 1) << 16)); |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 4376 | I915_WRITE(HSYNC(pipe), |
| 4377 | (adjusted_mode->crtc_hsync_start - 1) | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4378 | ((adjusted_mode->crtc_hsync_end - 1) << 16)); |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 4379 | |
| 4380 | I915_WRITE(VTOTAL(pipe), |
| 4381 | (adjusted_mode->crtc_vdisplay - 1) | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4382 | ((adjusted_mode->crtc_vtotal - 1) << 16)); |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 4383 | I915_WRITE(VBLANK(pipe), |
| 4384 | (adjusted_mode->crtc_vblank_start - 1) | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4385 | ((adjusted_mode->crtc_vblank_end - 1) << 16)); |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 4386 | I915_WRITE(VSYNC(pipe), |
| 4387 | (adjusted_mode->crtc_vsync_start - 1) | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4388 | ((adjusted_mode->crtc_vsync_end - 1) << 16)); |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 4389 | |
Eric Anholt | 8febb29 | 2011-03-30 13:01:07 -0700 | [diff] [blame] | 4390 | /* pipesrc controls the size that is scaled from, which should |
| 4391 | * always be the user's requested size. |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4392 | */ |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 4393 | I915_WRITE(PIPESRC(pipe), |
| 4394 | ((mode->hdisplay - 1) << 16) | (mode->vdisplay - 1)); |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 4395 | |
Eric Anholt | 8febb29 | 2011-03-30 13:01:07 -0700 | [diff] [blame] | 4396 | I915_WRITE(PIPE_DATA_M1(pipe), TU_SIZE(m_n.tu) | m_n.gmch_m); |
| 4397 | I915_WRITE(PIPE_DATA_N1(pipe), m_n.gmch_n); |
| 4398 | I915_WRITE(PIPE_LINK_M1(pipe), m_n.link_m); |
| 4399 | I915_WRITE(PIPE_LINK_N1(pipe), m_n.link_n); |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 4400 | |
Jesse Barnes | e3aef17 | 2012-04-10 11:58:03 -0700 | [diff] [blame] | 4401 | if (is_cpu_edp) |
Eric Anholt | 8febb29 | 2011-03-30 13:01:07 -0700 | [diff] [blame] | 4402 | ironlake_set_pll_edp(crtc, adjusted_mode->clock); |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 4403 | |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 4404 | I915_WRITE(PIPECONF(pipe), pipeconf); |
| 4405 | POSTING_READ(PIPECONF(pipe)); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4406 | |
Jesse Barnes | 9d0498a | 2010-08-18 13:20:54 -0700 | [diff] [blame] | 4407 | intel_wait_for_vblank(dev, pipe); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4408 | |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 4409 | I915_WRITE(DSPCNTR(plane), dspcntr); |
Jesse Barnes | b24e717 | 2011-01-04 15:09:30 -0800 | [diff] [blame] | 4410 | POSTING_READ(DSPCNTR(plane)); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4411 | |
Chris Wilson | 5c3b82e | 2009-02-11 13:25:09 +0000 | [diff] [blame] | 4412 | ret = intel_pipe_set_base(crtc, x, y, old_fb); |
Shaohua Li | 7662c8b | 2009-06-26 11:23:55 +0800 | [diff] [blame] | 4413 | |
| 4414 | intel_update_watermarks(dev); |
| 4415 | |
Chris Wilson | 1f803ee | 2009-06-06 09:45:59 +0100 | [diff] [blame] | 4416 | return ret; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4417 | } |
| 4418 | |
Eric Anholt | f564048e | 2011-03-30 13:01:02 -0700 | [diff] [blame] | 4419 | static int intel_crtc_mode_set(struct drm_crtc *crtc, |
| 4420 | struct drm_display_mode *mode, |
| 4421 | struct drm_display_mode *adjusted_mode, |
| 4422 | int x, int y, |
| 4423 | struct drm_framebuffer *old_fb) |
| 4424 | { |
| 4425 | struct drm_device *dev = crtc->dev; |
| 4426 | struct drm_i915_private *dev_priv = dev->dev_private; |
Eric Anholt | 0b701d2 | 2011-03-30 13:01:03 -0700 | [diff] [blame] | 4427 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 4428 | int pipe = intel_crtc->pipe; |
Eric Anholt | f564048e | 2011-03-30 13:01:02 -0700 | [diff] [blame] | 4429 | int ret; |
| 4430 | |
Eric Anholt | 0b701d2 | 2011-03-30 13:01:03 -0700 | [diff] [blame] | 4431 | drm_vblank_pre_modeset(dev, pipe); |
| 4432 | |
Eric Anholt | f564048e | 2011-03-30 13:01:02 -0700 | [diff] [blame] | 4433 | ret = dev_priv->display.crtc_mode_set(crtc, mode, adjusted_mode, |
| 4434 | x, y, old_fb); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4435 | drm_vblank_post_modeset(dev, pipe); |
| 4436 | |
Jesse Barnes | d8e70a2 | 2011-11-15 10:28:54 -0800 | [diff] [blame] | 4437 | if (ret) |
| 4438 | intel_crtc->dpms_mode = DRM_MODE_DPMS_OFF; |
| 4439 | else |
| 4440 | intel_crtc->dpms_mode = DRM_MODE_DPMS_ON; |
Keith Packard | 120eced | 2011-07-27 01:21:40 -0700 | [diff] [blame] | 4441 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4442 | return ret; |
| 4443 | } |
| 4444 | |
Wu Fengguang | 3a9627f | 2011-12-09 20:42:19 +0800 | [diff] [blame] | 4445 | static bool intel_eld_uptodate(struct drm_connector *connector, |
| 4446 | int reg_eldv, uint32_t bits_eldv, |
| 4447 | int reg_elda, uint32_t bits_elda, |
| 4448 | int reg_edid) |
| 4449 | { |
| 4450 | struct drm_i915_private *dev_priv = connector->dev->dev_private; |
| 4451 | uint8_t *eld = connector->eld; |
| 4452 | uint32_t i; |
| 4453 | |
| 4454 | i = I915_READ(reg_eldv); |
| 4455 | i &= bits_eldv; |
| 4456 | |
| 4457 | if (!eld[0]) |
| 4458 | return !i; |
| 4459 | |
| 4460 | if (!i) |
| 4461 | return false; |
| 4462 | |
| 4463 | i = I915_READ(reg_elda); |
| 4464 | i &= ~bits_elda; |
| 4465 | I915_WRITE(reg_elda, i); |
| 4466 | |
| 4467 | for (i = 0; i < eld[2]; i++) |
| 4468 | if (I915_READ(reg_edid) != *((uint32_t *)eld + i)) |
| 4469 | return false; |
| 4470 | |
| 4471 | return true; |
| 4472 | } |
| 4473 | |
Wu Fengguang | e0dac65 | 2011-09-05 14:25:34 +0800 | [diff] [blame] | 4474 | static void g4x_write_eld(struct drm_connector *connector, |
| 4475 | struct drm_crtc *crtc) |
| 4476 | { |
| 4477 | struct drm_i915_private *dev_priv = connector->dev->dev_private; |
| 4478 | uint8_t *eld = connector->eld; |
| 4479 | uint32_t eldv; |
| 4480 | uint32_t len; |
| 4481 | uint32_t i; |
| 4482 | |
| 4483 | i = I915_READ(G4X_AUD_VID_DID); |
| 4484 | |
| 4485 | if (i == INTEL_AUDIO_DEVBLC || i == INTEL_AUDIO_DEVCL) |
| 4486 | eldv = G4X_ELDV_DEVCL_DEVBLC; |
| 4487 | else |
| 4488 | eldv = G4X_ELDV_DEVCTG; |
| 4489 | |
Wu Fengguang | 3a9627f | 2011-12-09 20:42:19 +0800 | [diff] [blame] | 4490 | if (intel_eld_uptodate(connector, |
| 4491 | G4X_AUD_CNTL_ST, eldv, |
| 4492 | G4X_AUD_CNTL_ST, G4X_ELD_ADDR, |
| 4493 | G4X_HDMIW_HDMIEDID)) |
| 4494 | return; |
| 4495 | |
Wu Fengguang | e0dac65 | 2011-09-05 14:25:34 +0800 | [diff] [blame] | 4496 | i = I915_READ(G4X_AUD_CNTL_ST); |
| 4497 | i &= ~(eldv | G4X_ELD_ADDR); |
| 4498 | len = (i >> 9) & 0x1f; /* ELD buffer size */ |
| 4499 | I915_WRITE(G4X_AUD_CNTL_ST, i); |
| 4500 | |
| 4501 | if (!eld[0]) |
| 4502 | return; |
| 4503 | |
| 4504 | len = min_t(uint8_t, eld[2], len); |
| 4505 | DRM_DEBUG_DRIVER("ELD size %d\n", len); |
| 4506 | for (i = 0; i < len; i++) |
| 4507 | I915_WRITE(G4X_HDMIW_HDMIEDID, *((uint32_t *)eld + i)); |
| 4508 | |
| 4509 | i = I915_READ(G4X_AUD_CNTL_ST); |
| 4510 | i |= eldv; |
| 4511 | I915_WRITE(G4X_AUD_CNTL_ST, i); |
| 4512 | } |
| 4513 | |
| 4514 | static void ironlake_write_eld(struct drm_connector *connector, |
| 4515 | struct drm_crtc *crtc) |
| 4516 | { |
| 4517 | struct drm_i915_private *dev_priv = connector->dev->dev_private; |
| 4518 | uint8_t *eld = connector->eld; |
| 4519 | uint32_t eldv; |
| 4520 | uint32_t i; |
| 4521 | int len; |
| 4522 | int hdmiw_hdmiedid; |
Wu Fengguang | b6daa02 | 2012-01-06 14:41:31 -0600 | [diff] [blame] | 4523 | int aud_config; |
Wu Fengguang | e0dac65 | 2011-09-05 14:25:34 +0800 | [diff] [blame] | 4524 | int aud_cntl_st; |
| 4525 | int aud_cntrl_st2; |
| 4526 | |
Wu Fengguang | b3f33cb | 2011-12-09 20:42:17 +0800 | [diff] [blame] | 4527 | if (HAS_PCH_IBX(connector->dev)) { |
Wu Fengguang | 1202b4c6 | 2011-12-09 20:42:18 +0800 | [diff] [blame] | 4528 | hdmiw_hdmiedid = IBX_HDMIW_HDMIEDID_A; |
Wu Fengguang | b6daa02 | 2012-01-06 14:41:31 -0600 | [diff] [blame] | 4529 | aud_config = IBX_AUD_CONFIG_A; |
Wu Fengguang | 1202b4c6 | 2011-12-09 20:42:18 +0800 | [diff] [blame] | 4530 | aud_cntl_st = IBX_AUD_CNTL_ST_A; |
| 4531 | aud_cntrl_st2 = IBX_AUD_CNTL_ST2; |
Wu Fengguang | e0dac65 | 2011-09-05 14:25:34 +0800 | [diff] [blame] | 4532 | } else { |
Wu Fengguang | 1202b4c6 | 2011-12-09 20:42:18 +0800 | [diff] [blame] | 4533 | hdmiw_hdmiedid = CPT_HDMIW_HDMIEDID_A; |
Wu Fengguang | b6daa02 | 2012-01-06 14:41:31 -0600 | [diff] [blame] | 4534 | aud_config = CPT_AUD_CONFIG_A; |
Wu Fengguang | 1202b4c6 | 2011-12-09 20:42:18 +0800 | [diff] [blame] | 4535 | aud_cntl_st = CPT_AUD_CNTL_ST_A; |
| 4536 | aud_cntrl_st2 = CPT_AUD_CNTRL_ST2; |
Wu Fengguang | e0dac65 | 2011-09-05 14:25:34 +0800 | [diff] [blame] | 4537 | } |
| 4538 | |
| 4539 | i = to_intel_crtc(crtc)->pipe; |
| 4540 | hdmiw_hdmiedid += i * 0x100; |
| 4541 | aud_cntl_st += i * 0x100; |
Wu Fengguang | b6daa02 | 2012-01-06 14:41:31 -0600 | [diff] [blame] | 4542 | aud_config += i * 0x100; |
Wu Fengguang | e0dac65 | 2011-09-05 14:25:34 +0800 | [diff] [blame] | 4543 | |
| 4544 | DRM_DEBUG_DRIVER("ELD on pipe %c\n", pipe_name(i)); |
| 4545 | |
| 4546 | i = I915_READ(aud_cntl_st); |
| 4547 | i = (i >> 29) & 0x3; /* DIP_Port_Select, 0x1 = PortB */ |
| 4548 | if (!i) { |
| 4549 | DRM_DEBUG_DRIVER("Audio directed to unknown port\n"); |
| 4550 | /* operate blindly on all ports */ |
Wu Fengguang | 1202b4c6 | 2011-12-09 20:42:18 +0800 | [diff] [blame] | 4551 | eldv = IBX_ELD_VALIDB; |
| 4552 | eldv |= IBX_ELD_VALIDB << 4; |
| 4553 | eldv |= IBX_ELD_VALIDB << 8; |
Wu Fengguang | e0dac65 | 2011-09-05 14:25:34 +0800 | [diff] [blame] | 4554 | } else { |
| 4555 | DRM_DEBUG_DRIVER("ELD on port %c\n", 'A' + i); |
Wu Fengguang | 1202b4c6 | 2011-12-09 20:42:18 +0800 | [diff] [blame] | 4556 | eldv = IBX_ELD_VALIDB << ((i - 1) * 4); |
Wu Fengguang | e0dac65 | 2011-09-05 14:25:34 +0800 | [diff] [blame] | 4557 | } |
| 4558 | |
Wu Fengguang | 3a9627f | 2011-12-09 20:42:19 +0800 | [diff] [blame] | 4559 | if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT)) { |
| 4560 | DRM_DEBUG_DRIVER("ELD: DisplayPort detected\n"); |
| 4561 | eld[5] |= (1 << 2); /* Conn_Type, 0x1 = DisplayPort */ |
Wu Fengguang | b6daa02 | 2012-01-06 14:41:31 -0600 | [diff] [blame] | 4562 | I915_WRITE(aud_config, AUD_CONFIG_N_VALUE_INDEX); /* 0x1 = DP */ |
| 4563 | } else |
| 4564 | I915_WRITE(aud_config, 0); |
Wu Fengguang | 3a9627f | 2011-12-09 20:42:19 +0800 | [diff] [blame] | 4565 | |
| 4566 | if (intel_eld_uptodate(connector, |
| 4567 | aud_cntrl_st2, eldv, |
| 4568 | aud_cntl_st, IBX_ELD_ADDRESS, |
| 4569 | hdmiw_hdmiedid)) |
| 4570 | return; |
| 4571 | |
Wu Fengguang | e0dac65 | 2011-09-05 14:25:34 +0800 | [diff] [blame] | 4572 | i = I915_READ(aud_cntrl_st2); |
| 4573 | i &= ~eldv; |
| 4574 | I915_WRITE(aud_cntrl_st2, i); |
| 4575 | |
| 4576 | if (!eld[0]) |
| 4577 | return; |
| 4578 | |
Wu Fengguang | e0dac65 | 2011-09-05 14:25:34 +0800 | [diff] [blame] | 4579 | i = I915_READ(aud_cntl_st); |
Wu Fengguang | 1202b4c6 | 2011-12-09 20:42:18 +0800 | [diff] [blame] | 4580 | i &= ~IBX_ELD_ADDRESS; |
Wu Fengguang | e0dac65 | 2011-09-05 14:25:34 +0800 | [diff] [blame] | 4581 | I915_WRITE(aud_cntl_st, i); |
| 4582 | |
| 4583 | len = min_t(uint8_t, eld[2], 21); /* 84 bytes of hw ELD buffer */ |
| 4584 | DRM_DEBUG_DRIVER("ELD size %d\n", len); |
| 4585 | for (i = 0; i < len; i++) |
| 4586 | I915_WRITE(hdmiw_hdmiedid, *((uint32_t *)eld + i)); |
| 4587 | |
| 4588 | i = I915_READ(aud_cntrl_st2); |
| 4589 | i |= eldv; |
| 4590 | I915_WRITE(aud_cntrl_st2, i); |
| 4591 | } |
| 4592 | |
| 4593 | void intel_write_eld(struct drm_encoder *encoder, |
| 4594 | struct drm_display_mode *mode) |
| 4595 | { |
| 4596 | struct drm_crtc *crtc = encoder->crtc; |
| 4597 | struct drm_connector *connector; |
| 4598 | struct drm_device *dev = encoder->dev; |
| 4599 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 4600 | |
| 4601 | connector = drm_select_eld(encoder, mode); |
| 4602 | if (!connector) |
| 4603 | return; |
| 4604 | |
| 4605 | DRM_DEBUG_DRIVER("ELD on [CONNECTOR:%d:%s], [ENCODER:%d:%s]\n", |
| 4606 | connector->base.id, |
| 4607 | drm_get_connector_name(connector), |
| 4608 | connector->encoder->base.id, |
| 4609 | drm_get_encoder_name(connector->encoder)); |
| 4610 | |
| 4611 | connector->eld[6] = drm_av_sync_delay(connector, mode) / 2; |
| 4612 | |
| 4613 | if (dev_priv->display.write_eld) |
| 4614 | dev_priv->display.write_eld(connector, crtc); |
| 4615 | } |
| 4616 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4617 | /** Loads the palette/gamma unit for the CRTC with the prepared values */ |
| 4618 | void intel_crtc_load_lut(struct drm_crtc *crtc) |
| 4619 | { |
| 4620 | struct drm_device *dev = crtc->dev; |
| 4621 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 4622 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
Jesse Barnes | 9db4a9c | 2011-02-07 12:26:52 -0800 | [diff] [blame] | 4623 | int palreg = PALETTE(intel_crtc->pipe); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4624 | int i; |
| 4625 | |
| 4626 | /* The clocks have to be on to load the palette. */ |
Alban Browaeys | aed3f09 | 2012-02-24 17:12:45 +0000 | [diff] [blame] | 4627 | if (!crtc->enabled || !intel_crtc->active) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4628 | return; |
| 4629 | |
Adam Jackson | f2b115e | 2009-12-03 17:14:42 -0500 | [diff] [blame] | 4630 | /* use legacy palette for Ironlake */ |
Eric Anholt | bad720f | 2009-10-22 16:11:14 -0700 | [diff] [blame] | 4631 | if (HAS_PCH_SPLIT(dev)) |
Jesse Barnes | 9db4a9c | 2011-02-07 12:26:52 -0800 | [diff] [blame] | 4632 | palreg = LGC_PALETTE(intel_crtc->pipe); |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 4633 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4634 | for (i = 0; i < 256; i++) { |
| 4635 | I915_WRITE(palreg + 4 * i, |
| 4636 | (intel_crtc->lut_r[i] << 16) | |
| 4637 | (intel_crtc->lut_g[i] << 8) | |
| 4638 | intel_crtc->lut_b[i]); |
| 4639 | } |
| 4640 | } |
| 4641 | |
Chris Wilson | 560b85b | 2010-08-07 11:01:38 +0100 | [diff] [blame] | 4642 | static void i845_update_cursor(struct drm_crtc *crtc, u32 base) |
| 4643 | { |
| 4644 | struct drm_device *dev = crtc->dev; |
| 4645 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 4646 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 4647 | bool visible = base != 0; |
| 4648 | u32 cntl; |
| 4649 | |
| 4650 | if (intel_crtc->cursor_visible == visible) |
| 4651 | return; |
| 4652 | |
Jesse Barnes | 9db4a9c | 2011-02-07 12:26:52 -0800 | [diff] [blame] | 4653 | cntl = I915_READ(_CURACNTR); |
Chris Wilson | 560b85b | 2010-08-07 11:01:38 +0100 | [diff] [blame] | 4654 | if (visible) { |
| 4655 | /* On these chipsets we can only modify the base whilst |
| 4656 | * the cursor is disabled. |
| 4657 | */ |
Jesse Barnes | 9db4a9c | 2011-02-07 12:26:52 -0800 | [diff] [blame] | 4658 | I915_WRITE(_CURABASE, base); |
Chris Wilson | 560b85b | 2010-08-07 11:01:38 +0100 | [diff] [blame] | 4659 | |
| 4660 | cntl &= ~(CURSOR_FORMAT_MASK); |
| 4661 | /* XXX width must be 64, stride 256 => 0x00 << 28 */ |
| 4662 | cntl |= CURSOR_ENABLE | |
| 4663 | CURSOR_GAMMA_ENABLE | |
| 4664 | CURSOR_FORMAT_ARGB; |
| 4665 | } else |
| 4666 | cntl &= ~(CURSOR_ENABLE | CURSOR_GAMMA_ENABLE); |
Jesse Barnes | 9db4a9c | 2011-02-07 12:26:52 -0800 | [diff] [blame] | 4667 | I915_WRITE(_CURACNTR, cntl); |
Chris Wilson | 560b85b | 2010-08-07 11:01:38 +0100 | [diff] [blame] | 4668 | |
| 4669 | intel_crtc->cursor_visible = visible; |
| 4670 | } |
| 4671 | |
| 4672 | static void i9xx_update_cursor(struct drm_crtc *crtc, u32 base) |
| 4673 | { |
| 4674 | struct drm_device *dev = crtc->dev; |
| 4675 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 4676 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 4677 | int pipe = intel_crtc->pipe; |
| 4678 | bool visible = base != 0; |
| 4679 | |
| 4680 | if (intel_crtc->cursor_visible != visible) { |
Jesse Barnes | 548f245 | 2011-02-17 10:40:53 -0800 | [diff] [blame] | 4681 | uint32_t cntl = I915_READ(CURCNTR(pipe)); |
Chris Wilson | 560b85b | 2010-08-07 11:01:38 +0100 | [diff] [blame] | 4682 | if (base) { |
| 4683 | cntl &= ~(CURSOR_MODE | MCURSOR_PIPE_SELECT); |
| 4684 | cntl |= CURSOR_MODE_64_ARGB_AX | MCURSOR_GAMMA_ENABLE; |
| 4685 | cntl |= pipe << 28; /* Connect to correct pipe */ |
| 4686 | } else { |
| 4687 | cntl &= ~(CURSOR_MODE | MCURSOR_GAMMA_ENABLE); |
| 4688 | cntl |= CURSOR_MODE_DISABLE; |
| 4689 | } |
Jesse Barnes | 9db4a9c | 2011-02-07 12:26:52 -0800 | [diff] [blame] | 4690 | I915_WRITE(CURCNTR(pipe), cntl); |
Chris Wilson | 560b85b | 2010-08-07 11:01:38 +0100 | [diff] [blame] | 4691 | |
| 4692 | intel_crtc->cursor_visible = visible; |
| 4693 | } |
| 4694 | /* and commit changes on next vblank */ |
Jesse Barnes | 9db4a9c | 2011-02-07 12:26:52 -0800 | [diff] [blame] | 4695 | I915_WRITE(CURBASE(pipe), base); |
Chris Wilson | 560b85b | 2010-08-07 11:01:38 +0100 | [diff] [blame] | 4696 | } |
| 4697 | |
Jesse Barnes | 65a21cd | 2011-10-12 11:10:21 -0700 | [diff] [blame] | 4698 | static void ivb_update_cursor(struct drm_crtc *crtc, u32 base) |
| 4699 | { |
| 4700 | struct drm_device *dev = crtc->dev; |
| 4701 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 4702 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 4703 | int pipe = intel_crtc->pipe; |
| 4704 | bool visible = base != 0; |
| 4705 | |
| 4706 | if (intel_crtc->cursor_visible != visible) { |
| 4707 | uint32_t cntl = I915_READ(CURCNTR_IVB(pipe)); |
| 4708 | if (base) { |
| 4709 | cntl &= ~CURSOR_MODE; |
| 4710 | cntl |= CURSOR_MODE_64_ARGB_AX | MCURSOR_GAMMA_ENABLE; |
| 4711 | } else { |
| 4712 | cntl &= ~(CURSOR_MODE | MCURSOR_GAMMA_ENABLE); |
| 4713 | cntl |= CURSOR_MODE_DISABLE; |
| 4714 | } |
| 4715 | I915_WRITE(CURCNTR_IVB(pipe), cntl); |
| 4716 | |
| 4717 | intel_crtc->cursor_visible = visible; |
| 4718 | } |
| 4719 | /* and commit changes on next vblank */ |
| 4720 | I915_WRITE(CURBASE_IVB(pipe), base); |
| 4721 | } |
| 4722 | |
Chris Wilson | cda4b7d | 2010-07-09 08:45:04 +0100 | [diff] [blame] | 4723 | /* 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] | 4724 | static void intel_crtc_update_cursor(struct drm_crtc *crtc, |
| 4725 | bool on) |
Chris Wilson | cda4b7d | 2010-07-09 08:45:04 +0100 | [diff] [blame] | 4726 | { |
| 4727 | struct drm_device *dev = crtc->dev; |
| 4728 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 4729 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 4730 | int pipe = intel_crtc->pipe; |
| 4731 | int x = intel_crtc->cursor_x; |
| 4732 | int y = intel_crtc->cursor_y; |
Chris Wilson | 560b85b | 2010-08-07 11:01:38 +0100 | [diff] [blame] | 4733 | u32 base, pos; |
Chris Wilson | cda4b7d | 2010-07-09 08:45:04 +0100 | [diff] [blame] | 4734 | bool visible; |
| 4735 | |
| 4736 | pos = 0; |
| 4737 | |
Chris Wilson | 6b383a7 | 2010-09-13 13:54:26 +0100 | [diff] [blame] | 4738 | if (on && crtc->enabled && crtc->fb) { |
Chris Wilson | cda4b7d | 2010-07-09 08:45:04 +0100 | [diff] [blame] | 4739 | base = intel_crtc->cursor_addr; |
| 4740 | if (x > (int) crtc->fb->width) |
| 4741 | base = 0; |
| 4742 | |
| 4743 | if (y > (int) crtc->fb->height) |
| 4744 | base = 0; |
| 4745 | } else |
| 4746 | base = 0; |
| 4747 | |
| 4748 | if (x < 0) { |
| 4749 | if (x + intel_crtc->cursor_width < 0) |
| 4750 | base = 0; |
| 4751 | |
| 4752 | pos |= CURSOR_POS_SIGN << CURSOR_X_SHIFT; |
| 4753 | x = -x; |
| 4754 | } |
| 4755 | pos |= x << CURSOR_X_SHIFT; |
| 4756 | |
| 4757 | if (y < 0) { |
| 4758 | if (y + intel_crtc->cursor_height < 0) |
| 4759 | base = 0; |
| 4760 | |
| 4761 | pos |= CURSOR_POS_SIGN << CURSOR_Y_SHIFT; |
| 4762 | y = -y; |
| 4763 | } |
| 4764 | pos |= y << CURSOR_Y_SHIFT; |
| 4765 | |
| 4766 | visible = base != 0; |
Chris Wilson | 560b85b | 2010-08-07 11:01:38 +0100 | [diff] [blame] | 4767 | if (!visible && !intel_crtc->cursor_visible) |
Chris Wilson | cda4b7d | 2010-07-09 08:45:04 +0100 | [diff] [blame] | 4768 | return; |
| 4769 | |
Eugeni Dodonov | 0cd83aa | 2012-04-13 17:08:48 -0300 | [diff] [blame] | 4770 | if (IS_IVYBRIDGE(dev) || IS_HASWELL(dev)) { |
Jesse Barnes | 65a21cd | 2011-10-12 11:10:21 -0700 | [diff] [blame] | 4771 | I915_WRITE(CURPOS_IVB(pipe), pos); |
| 4772 | ivb_update_cursor(crtc, base); |
| 4773 | } else { |
| 4774 | I915_WRITE(CURPOS(pipe), pos); |
| 4775 | if (IS_845G(dev) || IS_I865G(dev)) |
| 4776 | i845_update_cursor(crtc, base); |
| 4777 | else |
| 4778 | i9xx_update_cursor(crtc, base); |
| 4779 | } |
Chris Wilson | cda4b7d | 2010-07-09 08:45:04 +0100 | [diff] [blame] | 4780 | |
| 4781 | if (visible) |
| 4782 | intel_mark_busy(dev, to_intel_framebuffer(crtc->fb)->obj); |
| 4783 | } |
| 4784 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4785 | static int intel_crtc_cursor_set(struct drm_crtc *crtc, |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 4786 | struct drm_file *file, |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4787 | uint32_t handle, |
| 4788 | uint32_t width, uint32_t height) |
| 4789 | { |
| 4790 | struct drm_device *dev = crtc->dev; |
| 4791 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 4792 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 4793 | struct drm_i915_gem_object *obj; |
Chris Wilson | cda4b7d | 2010-07-09 08:45:04 +0100 | [diff] [blame] | 4794 | uint32_t addr; |
Kristian Høgsberg | 3f8bc37 | 2008-12-17 22:14:59 -0500 | [diff] [blame] | 4795 | int ret; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4796 | |
Zhao Yakui | 28c9773 | 2009-10-09 11:39:41 +0800 | [diff] [blame] | 4797 | DRM_DEBUG_KMS("\n"); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4798 | |
| 4799 | /* if we want to turn off the cursor ignore width and height */ |
| 4800 | if (!handle) { |
Zhao Yakui | 28c9773 | 2009-10-09 11:39:41 +0800 | [diff] [blame] | 4801 | DRM_DEBUG_KMS("cursor off\n"); |
Kristian Høgsberg | 3f8bc37 | 2008-12-17 22:14:59 -0500 | [diff] [blame] | 4802 | addr = 0; |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 4803 | obj = NULL; |
Pierre Willenbrock | 5004417 | 2009-02-23 10:12:15 +1000 | [diff] [blame] | 4804 | mutex_lock(&dev->struct_mutex); |
Kristian Høgsberg | 3f8bc37 | 2008-12-17 22:14:59 -0500 | [diff] [blame] | 4805 | goto finish; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4806 | } |
| 4807 | |
| 4808 | /* Currently we only support 64x64 cursors */ |
| 4809 | if (width != 64 || height != 64) { |
| 4810 | DRM_ERROR("we currently only support 64x64 cursors\n"); |
| 4811 | return -EINVAL; |
| 4812 | } |
| 4813 | |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 4814 | obj = to_intel_bo(drm_gem_object_lookup(dev, file, handle)); |
Chris Wilson | c872522 | 2011-02-19 11:31:06 +0000 | [diff] [blame] | 4815 | if (&obj->base == NULL) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4816 | return -ENOENT; |
| 4817 | |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 4818 | if (obj->base.size < width * height * 4) { |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4819 | DRM_ERROR("buffer is to small\n"); |
Dave Airlie | 34b8686e | 2009-01-15 14:03:07 +1000 | [diff] [blame] | 4820 | ret = -ENOMEM; |
| 4821 | goto fail; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4822 | } |
| 4823 | |
Dave Airlie | 71acb5e | 2008-12-30 20:31:46 +1000 | [diff] [blame] | 4824 | /* 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] | 4825 | mutex_lock(&dev->struct_mutex); |
Kristian Høgsberg | b295d1b | 2009-12-16 15:16:17 -0500 | [diff] [blame] | 4826 | if (!dev_priv->info->cursor_needs_physical) { |
Chris Wilson | d9e86c0 | 2010-11-10 16:40:20 +0000 | [diff] [blame] | 4827 | if (obj->tiling_mode) { |
| 4828 | DRM_ERROR("cursor cannot be tiled\n"); |
| 4829 | ret = -EINVAL; |
| 4830 | goto fail_locked; |
| 4831 | } |
| 4832 | |
Chris Wilson | 2da3b9b | 2011-04-14 09:41:17 +0100 | [diff] [blame] | 4833 | ret = i915_gem_object_pin_to_display_plane(obj, 0, NULL); |
Chris Wilson | e7b526b | 2010-06-02 08:30:48 +0100 | [diff] [blame] | 4834 | if (ret) { |
| 4835 | DRM_ERROR("failed to move cursor bo into the GTT\n"); |
Chris Wilson | 2da3b9b | 2011-04-14 09:41:17 +0100 | [diff] [blame] | 4836 | goto fail_locked; |
Chris Wilson | e7b526b | 2010-06-02 08:30:48 +0100 | [diff] [blame] | 4837 | } |
| 4838 | |
Chris Wilson | d9e86c0 | 2010-11-10 16:40:20 +0000 | [diff] [blame] | 4839 | ret = i915_gem_object_put_fence(obj); |
| 4840 | if (ret) { |
Chris Wilson | 2da3b9b | 2011-04-14 09:41:17 +0100 | [diff] [blame] | 4841 | DRM_ERROR("failed to release fence for cursor"); |
Chris Wilson | d9e86c0 | 2010-11-10 16:40:20 +0000 | [diff] [blame] | 4842 | goto fail_unpin; |
| 4843 | } |
| 4844 | |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 4845 | addr = obj->gtt_offset; |
Dave Airlie | 71acb5e | 2008-12-30 20:31:46 +1000 | [diff] [blame] | 4846 | } else { |
Chris Wilson | 6eeefaf | 2010-08-07 11:01:39 +0100 | [diff] [blame] | 4847 | int align = IS_I830(dev) ? 16 * 1024 : 256; |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 4848 | ret = i915_gem_attach_phys_object(dev, obj, |
Chris Wilson | 6eeefaf | 2010-08-07 11:01:39 +0100 | [diff] [blame] | 4849 | (intel_crtc->pipe == 0) ? I915_GEM_PHYS_CURSOR_0 : I915_GEM_PHYS_CURSOR_1, |
| 4850 | align); |
Dave Airlie | 71acb5e | 2008-12-30 20:31:46 +1000 | [diff] [blame] | 4851 | if (ret) { |
| 4852 | DRM_ERROR("failed to attach phys object\n"); |
Kristian Høgsberg | 7f9872e | 2009-02-13 20:56:49 -0500 | [diff] [blame] | 4853 | goto fail_locked; |
Dave Airlie | 71acb5e | 2008-12-30 20:31:46 +1000 | [diff] [blame] | 4854 | } |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 4855 | addr = obj->phys_obj->handle->busaddr; |
Kristian Høgsberg | 3f8bc37 | 2008-12-17 22:14:59 -0500 | [diff] [blame] | 4856 | } |
| 4857 | |
Chris Wilson | a6c45cf | 2010-09-17 00:32:17 +0100 | [diff] [blame] | 4858 | if (IS_GEN2(dev)) |
Jesse Barnes | 14b6039 | 2009-05-20 16:47:08 -0400 | [diff] [blame] | 4859 | I915_WRITE(CURSIZE, (height << 12) | width); |
| 4860 | |
Kristian Høgsberg | 3f8bc37 | 2008-12-17 22:14:59 -0500 | [diff] [blame] | 4861 | finish: |
Kristian Høgsberg | 3f8bc37 | 2008-12-17 22:14:59 -0500 | [diff] [blame] | 4862 | if (intel_crtc->cursor_bo) { |
Kristian Høgsberg | b295d1b | 2009-12-16 15:16:17 -0500 | [diff] [blame] | 4863 | if (dev_priv->info->cursor_needs_physical) { |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 4864 | if (intel_crtc->cursor_bo != obj) |
Dave Airlie | 71acb5e | 2008-12-30 20:31:46 +1000 | [diff] [blame] | 4865 | i915_gem_detach_phys_object(dev, intel_crtc->cursor_bo); |
| 4866 | } else |
| 4867 | i915_gem_object_unpin(intel_crtc->cursor_bo); |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 4868 | drm_gem_object_unreference(&intel_crtc->cursor_bo->base); |
Kristian Høgsberg | 3f8bc37 | 2008-12-17 22:14:59 -0500 | [diff] [blame] | 4869 | } |
Jesse Barnes | 8082400 | 2009-09-10 15:28:06 -0700 | [diff] [blame] | 4870 | |
Kristian Høgsberg | 7f9872e | 2009-02-13 20:56:49 -0500 | [diff] [blame] | 4871 | mutex_unlock(&dev->struct_mutex); |
Kristian Høgsberg | 3f8bc37 | 2008-12-17 22:14:59 -0500 | [diff] [blame] | 4872 | |
| 4873 | intel_crtc->cursor_addr = addr; |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 4874 | intel_crtc->cursor_bo = obj; |
Chris Wilson | cda4b7d | 2010-07-09 08:45:04 +0100 | [diff] [blame] | 4875 | intel_crtc->cursor_width = width; |
| 4876 | intel_crtc->cursor_height = height; |
| 4877 | |
Chris Wilson | 6b383a7 | 2010-09-13 13:54:26 +0100 | [diff] [blame] | 4878 | intel_crtc_update_cursor(crtc, true); |
Kristian Høgsberg | 3f8bc37 | 2008-12-17 22:14:59 -0500 | [diff] [blame] | 4879 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4880 | return 0; |
Chris Wilson | e7b526b | 2010-06-02 08:30:48 +0100 | [diff] [blame] | 4881 | fail_unpin: |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 4882 | i915_gem_object_unpin(obj); |
Kristian Høgsberg | 7f9872e | 2009-02-13 20:56:49 -0500 | [diff] [blame] | 4883 | fail_locked: |
Dave Airlie | 34b8686e | 2009-01-15 14:03:07 +1000 | [diff] [blame] | 4884 | mutex_unlock(&dev->struct_mutex); |
Luca Barbieri | bc9025b | 2010-02-09 05:49:12 +0000 | [diff] [blame] | 4885 | fail: |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 4886 | drm_gem_object_unreference_unlocked(&obj->base); |
Dave Airlie | 34b8686e | 2009-01-15 14:03:07 +1000 | [diff] [blame] | 4887 | return ret; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4888 | } |
| 4889 | |
| 4890 | static int intel_crtc_cursor_move(struct drm_crtc *crtc, int x, int y) |
| 4891 | { |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4892 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4893 | |
Chris Wilson | cda4b7d | 2010-07-09 08:45:04 +0100 | [diff] [blame] | 4894 | intel_crtc->cursor_x = x; |
| 4895 | intel_crtc->cursor_y = y; |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 4896 | |
Chris Wilson | 6b383a7 | 2010-09-13 13:54:26 +0100 | [diff] [blame] | 4897 | intel_crtc_update_cursor(crtc, true); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4898 | |
| 4899 | return 0; |
| 4900 | } |
| 4901 | |
| 4902 | /** Sets the color ramps on behalf of RandR */ |
| 4903 | void intel_crtc_fb_gamma_set(struct drm_crtc *crtc, u16 red, u16 green, |
| 4904 | u16 blue, int regno) |
| 4905 | { |
| 4906 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 4907 | |
| 4908 | intel_crtc->lut_r[regno] = red >> 8; |
| 4909 | intel_crtc->lut_g[regno] = green >> 8; |
| 4910 | intel_crtc->lut_b[regno] = blue >> 8; |
| 4911 | } |
| 4912 | |
Dave Airlie | b8c00ac | 2009-10-06 13:54:01 +1000 | [diff] [blame] | 4913 | void intel_crtc_fb_gamma_get(struct drm_crtc *crtc, u16 *red, u16 *green, |
| 4914 | u16 *blue, int regno) |
| 4915 | { |
| 4916 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 4917 | |
| 4918 | *red = intel_crtc->lut_r[regno] << 8; |
| 4919 | *green = intel_crtc->lut_g[regno] << 8; |
| 4920 | *blue = intel_crtc->lut_b[regno] << 8; |
| 4921 | } |
| 4922 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4923 | 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] | 4924 | u16 *blue, uint32_t start, uint32_t size) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4925 | { |
James Simmons | 7203425 | 2010-08-03 01:33:19 +0100 | [diff] [blame] | 4926 | int end = (start + size > 256) ? 256 : start + size, i; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4927 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4928 | |
James Simmons | 7203425 | 2010-08-03 01:33:19 +0100 | [diff] [blame] | 4929 | for (i = start; i < end; i++) { |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4930 | intel_crtc->lut_r[i] = red[i] >> 8; |
| 4931 | intel_crtc->lut_g[i] = green[i] >> 8; |
| 4932 | intel_crtc->lut_b[i] = blue[i] >> 8; |
| 4933 | } |
| 4934 | |
| 4935 | intel_crtc_load_lut(crtc); |
| 4936 | } |
| 4937 | |
| 4938 | /** |
| 4939 | * Get a pipe with a simple mode set on it for doing load-based monitor |
| 4940 | * detection. |
| 4941 | * |
| 4942 | * It will be up to the load-detect code to adjust the pipe as appropriate for |
Eric Anholt | c751ce4 | 2010-03-25 11:48:48 -0700 | [diff] [blame] | 4943 | * its requirements. The pipe will be connected to no other encoders. |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4944 | * |
Eric Anholt | c751ce4 | 2010-03-25 11:48:48 -0700 | [diff] [blame] | 4945 | * Currently this code will only succeed if there is a pipe with no encoders |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4946 | * configured for it. In the future, it could choose to temporarily disable |
| 4947 | * some outputs to free up a pipe for its use. |
| 4948 | * |
| 4949 | * \return crtc, or NULL if no pipes are available. |
| 4950 | */ |
| 4951 | |
| 4952 | /* VESA 640x480x72Hz mode to set on the pipe */ |
| 4953 | static struct drm_display_mode load_detect_mode = { |
| 4954 | DRM_MODE("640x480", DRM_MODE_TYPE_DEFAULT, 31500, 640, 664, |
| 4955 | 704, 832, 0, 480, 489, 491, 520, 0, DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC), |
| 4956 | }; |
| 4957 | |
Chris Wilson | d2dff87 | 2011-04-19 08:36:26 +0100 | [diff] [blame] | 4958 | static struct drm_framebuffer * |
| 4959 | intel_framebuffer_create(struct drm_device *dev, |
Jesse Barnes | 308e5bc | 2011-11-14 14:51:28 -0800 | [diff] [blame] | 4960 | struct drm_mode_fb_cmd2 *mode_cmd, |
Chris Wilson | d2dff87 | 2011-04-19 08:36:26 +0100 | [diff] [blame] | 4961 | struct drm_i915_gem_object *obj) |
| 4962 | { |
| 4963 | struct intel_framebuffer *intel_fb; |
| 4964 | int ret; |
| 4965 | |
| 4966 | intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL); |
| 4967 | if (!intel_fb) { |
| 4968 | drm_gem_object_unreference_unlocked(&obj->base); |
| 4969 | return ERR_PTR(-ENOMEM); |
| 4970 | } |
| 4971 | |
| 4972 | ret = intel_framebuffer_init(dev, intel_fb, mode_cmd, obj); |
| 4973 | if (ret) { |
| 4974 | drm_gem_object_unreference_unlocked(&obj->base); |
| 4975 | kfree(intel_fb); |
| 4976 | return ERR_PTR(ret); |
| 4977 | } |
| 4978 | |
| 4979 | return &intel_fb->base; |
| 4980 | } |
| 4981 | |
| 4982 | static u32 |
| 4983 | intel_framebuffer_pitch_for_width(int width, int bpp) |
| 4984 | { |
| 4985 | u32 pitch = DIV_ROUND_UP(width * bpp, 8); |
| 4986 | return ALIGN(pitch, 64); |
| 4987 | } |
| 4988 | |
| 4989 | static u32 |
| 4990 | intel_framebuffer_size_for_mode(struct drm_display_mode *mode, int bpp) |
| 4991 | { |
| 4992 | u32 pitch = intel_framebuffer_pitch_for_width(mode->hdisplay, bpp); |
| 4993 | return ALIGN(pitch * mode->vdisplay, PAGE_SIZE); |
| 4994 | } |
| 4995 | |
| 4996 | static struct drm_framebuffer * |
| 4997 | intel_framebuffer_create_for_mode(struct drm_device *dev, |
| 4998 | struct drm_display_mode *mode, |
| 4999 | int depth, int bpp) |
| 5000 | { |
| 5001 | struct drm_i915_gem_object *obj; |
Jesse Barnes | 308e5bc | 2011-11-14 14:51:28 -0800 | [diff] [blame] | 5002 | struct drm_mode_fb_cmd2 mode_cmd; |
Chris Wilson | d2dff87 | 2011-04-19 08:36:26 +0100 | [diff] [blame] | 5003 | |
| 5004 | obj = i915_gem_alloc_object(dev, |
| 5005 | intel_framebuffer_size_for_mode(mode, bpp)); |
| 5006 | if (obj == NULL) |
| 5007 | return ERR_PTR(-ENOMEM); |
| 5008 | |
| 5009 | mode_cmd.width = mode->hdisplay; |
| 5010 | mode_cmd.height = mode->vdisplay; |
Jesse Barnes | 308e5bc | 2011-11-14 14:51:28 -0800 | [diff] [blame] | 5011 | mode_cmd.pitches[0] = intel_framebuffer_pitch_for_width(mode_cmd.width, |
| 5012 | bpp); |
Dave Airlie | 5ca0c34 | 2012-02-23 15:33:40 +0000 | [diff] [blame] | 5013 | mode_cmd.pixel_format = drm_mode_legacy_fb_format(bpp, depth); |
Chris Wilson | d2dff87 | 2011-04-19 08:36:26 +0100 | [diff] [blame] | 5014 | |
| 5015 | return intel_framebuffer_create(dev, &mode_cmd, obj); |
| 5016 | } |
| 5017 | |
| 5018 | static struct drm_framebuffer * |
| 5019 | mode_fits_in_fbdev(struct drm_device *dev, |
| 5020 | struct drm_display_mode *mode) |
| 5021 | { |
| 5022 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 5023 | struct drm_i915_gem_object *obj; |
| 5024 | struct drm_framebuffer *fb; |
| 5025 | |
| 5026 | if (dev_priv->fbdev == NULL) |
| 5027 | return NULL; |
| 5028 | |
| 5029 | obj = dev_priv->fbdev->ifb.obj; |
| 5030 | if (obj == NULL) |
| 5031 | return NULL; |
| 5032 | |
| 5033 | fb = &dev_priv->fbdev->ifb.base; |
Ville Syrjälä | 01f2c77 | 2011-12-20 00:06:49 +0200 | [diff] [blame] | 5034 | if (fb->pitches[0] < intel_framebuffer_pitch_for_width(mode->hdisplay, |
| 5035 | fb->bits_per_pixel)) |
Chris Wilson | d2dff87 | 2011-04-19 08:36:26 +0100 | [diff] [blame] | 5036 | return NULL; |
| 5037 | |
Ville Syrjälä | 01f2c77 | 2011-12-20 00:06:49 +0200 | [diff] [blame] | 5038 | if (obj->base.size < mode->vdisplay * fb->pitches[0]) |
Chris Wilson | d2dff87 | 2011-04-19 08:36:26 +0100 | [diff] [blame] | 5039 | return NULL; |
| 5040 | |
| 5041 | return fb; |
| 5042 | } |
| 5043 | |
Chris Wilson | 7173188 | 2011-04-19 23:10:58 +0100 | [diff] [blame] | 5044 | bool intel_get_load_detect_pipe(struct intel_encoder *intel_encoder, |
| 5045 | struct drm_connector *connector, |
| 5046 | struct drm_display_mode *mode, |
Chris Wilson | 8261b19 | 2011-04-19 23:18:09 +0100 | [diff] [blame] | 5047 | struct intel_load_detect_pipe *old) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5048 | { |
| 5049 | struct intel_crtc *intel_crtc; |
| 5050 | struct drm_crtc *possible_crtc; |
Chris Wilson | 4ef69c7 | 2010-09-09 15:14:28 +0100 | [diff] [blame] | 5051 | struct drm_encoder *encoder = &intel_encoder->base; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5052 | struct drm_crtc *crtc = NULL; |
| 5053 | struct drm_device *dev = encoder->dev; |
Chris Wilson | d2dff87 | 2011-04-19 08:36:26 +0100 | [diff] [blame] | 5054 | struct drm_framebuffer *old_fb; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5055 | int i = -1; |
| 5056 | |
Chris Wilson | d2dff87 | 2011-04-19 08:36:26 +0100 | [diff] [blame] | 5057 | DRM_DEBUG_KMS("[CONNECTOR:%d:%s], [ENCODER:%d:%s]\n", |
| 5058 | connector->base.id, drm_get_connector_name(connector), |
| 5059 | encoder->base.id, drm_get_encoder_name(encoder)); |
| 5060 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5061 | /* |
| 5062 | * Algorithm gets a little messy: |
Chris Wilson | 7a5e480 | 2011-04-19 23:21:12 +0100 | [diff] [blame] | 5063 | * |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5064 | * - if the connector already has an assigned crtc, use it (but make |
| 5065 | * sure it's on first) |
Chris Wilson | 7a5e480 | 2011-04-19 23:21:12 +0100 | [diff] [blame] | 5066 | * |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5067 | * - try to find the first unused crtc that can drive this connector, |
| 5068 | * and use that if we find one |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5069 | */ |
| 5070 | |
| 5071 | /* See if we already have a CRTC for this connector */ |
| 5072 | if (encoder->crtc) { |
| 5073 | crtc = encoder->crtc; |
Chris Wilson | 8261b19 | 2011-04-19 23:18:09 +0100 | [diff] [blame] | 5074 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5075 | intel_crtc = to_intel_crtc(crtc); |
Chris Wilson | 8261b19 | 2011-04-19 23:18:09 +0100 | [diff] [blame] | 5076 | old->dpms_mode = intel_crtc->dpms_mode; |
| 5077 | old->load_detect_temp = false; |
| 5078 | |
| 5079 | /* Make sure the crtc and connector are running */ |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5080 | if (intel_crtc->dpms_mode != DRM_MODE_DPMS_ON) { |
Chris Wilson | 6492711 | 2011-04-20 07:25:26 +0100 | [diff] [blame] | 5081 | struct drm_encoder_helper_funcs *encoder_funcs; |
| 5082 | struct drm_crtc_helper_funcs *crtc_funcs; |
| 5083 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5084 | crtc_funcs = crtc->helper_private; |
| 5085 | crtc_funcs->dpms(crtc, DRM_MODE_DPMS_ON); |
Chris Wilson | 6492711 | 2011-04-20 07:25:26 +0100 | [diff] [blame] | 5086 | |
| 5087 | encoder_funcs = encoder->helper_private; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5088 | encoder_funcs->dpms(encoder, DRM_MODE_DPMS_ON); |
| 5089 | } |
Chris Wilson | 8261b19 | 2011-04-19 23:18:09 +0100 | [diff] [blame] | 5090 | |
Chris Wilson | 7173188 | 2011-04-19 23:10:58 +0100 | [diff] [blame] | 5091 | return true; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5092 | } |
| 5093 | |
| 5094 | /* Find an unused one (if possible) */ |
| 5095 | list_for_each_entry(possible_crtc, &dev->mode_config.crtc_list, head) { |
| 5096 | i++; |
| 5097 | if (!(encoder->possible_crtcs & (1 << i))) |
| 5098 | continue; |
| 5099 | if (!possible_crtc->enabled) { |
| 5100 | crtc = possible_crtc; |
| 5101 | break; |
| 5102 | } |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5103 | } |
| 5104 | |
| 5105 | /* |
| 5106 | * If we didn't find an unused CRTC, don't use any. |
| 5107 | */ |
| 5108 | if (!crtc) { |
Chris Wilson | 7173188 | 2011-04-19 23:10:58 +0100 | [diff] [blame] | 5109 | DRM_DEBUG_KMS("no pipe available for load-detect\n"); |
| 5110 | return false; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5111 | } |
| 5112 | |
| 5113 | encoder->crtc = crtc; |
Zhenyu Wang | c1c4397 | 2010-03-30 14:39:30 +0800 | [diff] [blame] | 5114 | connector->encoder = encoder; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5115 | |
| 5116 | intel_crtc = to_intel_crtc(crtc); |
Chris Wilson | 8261b19 | 2011-04-19 23:18:09 +0100 | [diff] [blame] | 5117 | old->dpms_mode = intel_crtc->dpms_mode; |
| 5118 | old->load_detect_temp = true; |
Chris Wilson | d2dff87 | 2011-04-19 08:36:26 +0100 | [diff] [blame] | 5119 | old->release_fb = NULL; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5120 | |
Chris Wilson | 6492711 | 2011-04-20 07:25:26 +0100 | [diff] [blame] | 5121 | if (!mode) |
| 5122 | mode = &load_detect_mode; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5123 | |
Chris Wilson | d2dff87 | 2011-04-19 08:36:26 +0100 | [diff] [blame] | 5124 | old_fb = crtc->fb; |
| 5125 | |
| 5126 | /* We need a framebuffer large enough to accommodate all accesses |
| 5127 | * that the plane may generate whilst we perform load detection. |
| 5128 | * We can not rely on the fbcon either being present (we get called |
| 5129 | * during its initialisation to detect all boot displays, or it may |
| 5130 | * not even exist) or that it is large enough to satisfy the |
| 5131 | * requested mode. |
| 5132 | */ |
| 5133 | crtc->fb = mode_fits_in_fbdev(dev, mode); |
| 5134 | if (crtc->fb == NULL) { |
| 5135 | DRM_DEBUG_KMS("creating tmp fb for load-detection\n"); |
| 5136 | crtc->fb = intel_framebuffer_create_for_mode(dev, mode, 24, 32); |
| 5137 | old->release_fb = crtc->fb; |
| 5138 | } else |
| 5139 | DRM_DEBUG_KMS("reusing fbdev for load-detection framebuffer\n"); |
| 5140 | if (IS_ERR(crtc->fb)) { |
| 5141 | DRM_DEBUG_KMS("failed to allocate framebuffer for load-detection\n"); |
| 5142 | crtc->fb = old_fb; |
| 5143 | return false; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5144 | } |
Chris Wilson | d2dff87 | 2011-04-19 08:36:26 +0100 | [diff] [blame] | 5145 | |
| 5146 | if (!drm_crtc_helper_set_mode(crtc, mode, 0, 0, old_fb)) { |
Chris Wilson | 6492711 | 2011-04-20 07:25:26 +0100 | [diff] [blame] | 5147 | DRM_DEBUG_KMS("failed to set mode on load-detect pipe\n"); |
Chris Wilson | d2dff87 | 2011-04-19 08:36:26 +0100 | [diff] [blame] | 5148 | if (old->release_fb) |
| 5149 | old->release_fb->funcs->destroy(old->release_fb); |
| 5150 | crtc->fb = old_fb; |
Chris Wilson | 6492711 | 2011-04-20 07:25:26 +0100 | [diff] [blame] | 5151 | return false; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5152 | } |
Chris Wilson | 7173188 | 2011-04-19 23:10:58 +0100 | [diff] [blame] | 5153 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5154 | /* let the connector get through one full cycle before testing */ |
Jesse Barnes | 9d0498a | 2010-08-18 13:20:54 -0700 | [diff] [blame] | 5155 | intel_wait_for_vblank(dev, intel_crtc->pipe); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5156 | |
Chris Wilson | 7173188 | 2011-04-19 23:10:58 +0100 | [diff] [blame] | 5157 | return true; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5158 | } |
| 5159 | |
Zhenyu Wang | c1c4397 | 2010-03-30 14:39:30 +0800 | [diff] [blame] | 5160 | void intel_release_load_detect_pipe(struct intel_encoder *intel_encoder, |
Chris Wilson | 8261b19 | 2011-04-19 23:18:09 +0100 | [diff] [blame] | 5161 | struct drm_connector *connector, |
| 5162 | struct intel_load_detect_pipe *old) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5163 | { |
Chris Wilson | 4ef69c7 | 2010-09-09 15:14:28 +0100 | [diff] [blame] | 5164 | struct drm_encoder *encoder = &intel_encoder->base; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5165 | struct drm_device *dev = encoder->dev; |
| 5166 | struct drm_crtc *crtc = encoder->crtc; |
| 5167 | struct drm_encoder_helper_funcs *encoder_funcs = encoder->helper_private; |
| 5168 | struct drm_crtc_helper_funcs *crtc_funcs = crtc->helper_private; |
| 5169 | |
Chris Wilson | d2dff87 | 2011-04-19 08:36:26 +0100 | [diff] [blame] | 5170 | DRM_DEBUG_KMS("[CONNECTOR:%d:%s], [ENCODER:%d:%s]\n", |
| 5171 | connector->base.id, drm_get_connector_name(connector), |
| 5172 | encoder->base.id, drm_get_encoder_name(encoder)); |
| 5173 | |
Chris Wilson | 8261b19 | 2011-04-19 23:18:09 +0100 | [diff] [blame] | 5174 | if (old->load_detect_temp) { |
Zhenyu Wang | c1c4397 | 2010-03-30 14:39:30 +0800 | [diff] [blame] | 5175 | connector->encoder = NULL; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5176 | drm_helper_disable_unused_functions(dev); |
Chris Wilson | d2dff87 | 2011-04-19 08:36:26 +0100 | [diff] [blame] | 5177 | |
| 5178 | if (old->release_fb) |
| 5179 | old->release_fb->funcs->destroy(old->release_fb); |
| 5180 | |
Chris Wilson | 0622a53 | 2011-04-21 09:32:11 +0100 | [diff] [blame] | 5181 | return; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5182 | } |
| 5183 | |
Eric Anholt | c751ce4 | 2010-03-25 11:48:48 -0700 | [diff] [blame] | 5184 | /* Switch crtc and encoder back off if necessary */ |
Chris Wilson | 0622a53 | 2011-04-21 09:32:11 +0100 | [diff] [blame] | 5185 | if (old->dpms_mode != DRM_MODE_DPMS_ON) { |
| 5186 | encoder_funcs->dpms(encoder, old->dpms_mode); |
Chris Wilson | 8261b19 | 2011-04-19 23:18:09 +0100 | [diff] [blame] | 5187 | crtc_funcs->dpms(crtc, old->dpms_mode); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5188 | } |
| 5189 | } |
| 5190 | |
| 5191 | /* Returns the clock of the currently programmed mode of the given pipe. */ |
| 5192 | static int intel_crtc_clock_get(struct drm_device *dev, struct drm_crtc *crtc) |
| 5193 | { |
| 5194 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 5195 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 5196 | int pipe = intel_crtc->pipe; |
Jesse Barnes | 548f245 | 2011-02-17 10:40:53 -0800 | [diff] [blame] | 5197 | u32 dpll = I915_READ(DPLL(pipe)); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5198 | u32 fp; |
| 5199 | intel_clock_t clock; |
| 5200 | |
| 5201 | if ((dpll & DISPLAY_RATE_SELECT_FPA1) == 0) |
Chris Wilson | 39adb7a | 2011-04-22 22:17:21 +0100 | [diff] [blame] | 5202 | fp = I915_READ(FP0(pipe)); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5203 | else |
Chris Wilson | 39adb7a | 2011-04-22 22:17:21 +0100 | [diff] [blame] | 5204 | fp = I915_READ(FP1(pipe)); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5205 | |
| 5206 | clock.m1 = (fp & FP_M1_DIV_MASK) >> FP_M1_DIV_SHIFT; |
Adam Jackson | f2b115e | 2009-12-03 17:14:42 -0500 | [diff] [blame] | 5207 | if (IS_PINEVIEW(dev)) { |
| 5208 | clock.n = ffs((fp & FP_N_PINEVIEW_DIV_MASK) >> FP_N_DIV_SHIFT) - 1; |
| 5209 | clock.m2 = (fp & FP_M2_PINEVIEW_DIV_MASK) >> FP_M2_DIV_SHIFT; |
Shaohua Li | 2177832 | 2009-02-23 15:19:16 +0800 | [diff] [blame] | 5210 | } else { |
| 5211 | clock.n = (fp & FP_N_DIV_MASK) >> FP_N_DIV_SHIFT; |
| 5212 | clock.m2 = (fp & FP_M2_DIV_MASK) >> FP_M2_DIV_SHIFT; |
| 5213 | } |
| 5214 | |
Chris Wilson | a6c45cf | 2010-09-17 00:32:17 +0100 | [diff] [blame] | 5215 | if (!IS_GEN2(dev)) { |
Adam Jackson | f2b115e | 2009-12-03 17:14:42 -0500 | [diff] [blame] | 5216 | if (IS_PINEVIEW(dev)) |
| 5217 | clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK_PINEVIEW) >> |
| 5218 | DPLL_FPA01_P1_POST_DIV_SHIFT_PINEVIEW); |
Shaohua Li | 2177832 | 2009-02-23 15:19:16 +0800 | [diff] [blame] | 5219 | else |
| 5220 | clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK) >> |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5221 | DPLL_FPA01_P1_POST_DIV_SHIFT); |
| 5222 | |
| 5223 | switch (dpll & DPLL_MODE_MASK) { |
| 5224 | case DPLLB_MODE_DAC_SERIAL: |
| 5225 | clock.p2 = dpll & DPLL_DAC_SERIAL_P2_CLOCK_DIV_5 ? |
| 5226 | 5 : 10; |
| 5227 | break; |
| 5228 | case DPLLB_MODE_LVDS: |
| 5229 | clock.p2 = dpll & DPLLB_LVDS_P2_CLOCK_DIV_7 ? |
| 5230 | 7 : 14; |
| 5231 | break; |
| 5232 | default: |
Zhao Yakui | 28c9773 | 2009-10-09 11:39:41 +0800 | [diff] [blame] | 5233 | DRM_DEBUG_KMS("Unknown DPLL mode %08x in programmed " |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5234 | "mode\n", (int)(dpll & DPLL_MODE_MASK)); |
| 5235 | return 0; |
| 5236 | } |
| 5237 | |
| 5238 | /* XXX: Handle the 100Mhz refclk */ |
Shaohua Li | 2177832 | 2009-02-23 15:19:16 +0800 | [diff] [blame] | 5239 | intel_clock(dev, 96000, &clock); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5240 | } else { |
| 5241 | bool is_lvds = (pipe == 1) && (I915_READ(LVDS) & LVDS_PORT_EN); |
| 5242 | |
| 5243 | if (is_lvds) { |
| 5244 | clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK_I830_LVDS) >> |
| 5245 | DPLL_FPA01_P1_POST_DIV_SHIFT); |
| 5246 | clock.p2 = 14; |
| 5247 | |
| 5248 | if ((dpll & PLL_REF_INPUT_MASK) == |
| 5249 | PLLB_REF_INPUT_SPREADSPECTRUMIN) { |
| 5250 | /* XXX: might not be 66MHz */ |
Shaohua Li | 2177832 | 2009-02-23 15:19:16 +0800 | [diff] [blame] | 5251 | intel_clock(dev, 66000, &clock); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5252 | } else |
Shaohua Li | 2177832 | 2009-02-23 15:19:16 +0800 | [diff] [blame] | 5253 | intel_clock(dev, 48000, &clock); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5254 | } else { |
| 5255 | if (dpll & PLL_P1_DIVIDE_BY_TWO) |
| 5256 | clock.p1 = 2; |
| 5257 | else { |
| 5258 | clock.p1 = ((dpll & DPLL_FPA01_P1_POST_DIV_MASK_I830) >> |
| 5259 | DPLL_FPA01_P1_POST_DIV_SHIFT) + 2; |
| 5260 | } |
| 5261 | if (dpll & PLL_P2_DIVIDE_BY_4) |
| 5262 | clock.p2 = 4; |
| 5263 | else |
| 5264 | clock.p2 = 2; |
| 5265 | |
Shaohua Li | 2177832 | 2009-02-23 15:19:16 +0800 | [diff] [blame] | 5266 | intel_clock(dev, 48000, &clock); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5267 | } |
| 5268 | } |
| 5269 | |
| 5270 | /* XXX: It would be nice to validate the clocks, but we can't reuse |
| 5271 | * i830PllIsValid() because it relies on the xf86_config connector |
| 5272 | * configuration being accurate, which it isn't necessarily. |
| 5273 | */ |
| 5274 | |
| 5275 | return clock.dot; |
| 5276 | } |
| 5277 | |
| 5278 | /** Returns the currently programmed mode of the given pipe. */ |
| 5279 | struct drm_display_mode *intel_crtc_mode_get(struct drm_device *dev, |
| 5280 | struct drm_crtc *crtc) |
| 5281 | { |
Jesse Barnes | 548f245 | 2011-02-17 10:40:53 -0800 | [diff] [blame] | 5282 | struct drm_i915_private *dev_priv = dev->dev_private; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5283 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 5284 | int pipe = intel_crtc->pipe; |
| 5285 | struct drm_display_mode *mode; |
Jesse Barnes | 548f245 | 2011-02-17 10:40:53 -0800 | [diff] [blame] | 5286 | int htot = I915_READ(HTOTAL(pipe)); |
| 5287 | int hsync = I915_READ(HSYNC(pipe)); |
| 5288 | int vtot = I915_READ(VTOTAL(pipe)); |
| 5289 | int vsync = I915_READ(VSYNC(pipe)); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5290 | |
| 5291 | mode = kzalloc(sizeof(*mode), GFP_KERNEL); |
| 5292 | if (!mode) |
| 5293 | return NULL; |
| 5294 | |
| 5295 | mode->clock = intel_crtc_clock_get(dev, crtc); |
| 5296 | mode->hdisplay = (htot & 0xffff) + 1; |
| 5297 | mode->htotal = ((htot & 0xffff0000) >> 16) + 1; |
| 5298 | mode->hsync_start = (hsync & 0xffff) + 1; |
| 5299 | mode->hsync_end = ((hsync & 0xffff0000) >> 16) + 1; |
| 5300 | mode->vdisplay = (vtot & 0xffff) + 1; |
| 5301 | mode->vtotal = ((vtot & 0xffff0000) >> 16) + 1; |
| 5302 | mode->vsync_start = (vsync & 0xffff) + 1; |
| 5303 | mode->vsync_end = ((vsync & 0xffff0000) >> 16) + 1; |
| 5304 | |
| 5305 | drm_mode_set_name(mode); |
| 5306 | drm_mode_set_crtcinfo(mode, 0); |
| 5307 | |
| 5308 | return mode; |
| 5309 | } |
| 5310 | |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 5311 | #define GPU_IDLE_TIMEOUT 500 /* ms */ |
| 5312 | |
| 5313 | /* When this timer fires, we've been idle for awhile */ |
| 5314 | static void intel_gpu_idle_timer(unsigned long arg) |
| 5315 | { |
| 5316 | struct drm_device *dev = (struct drm_device *)arg; |
| 5317 | drm_i915_private_t *dev_priv = dev->dev_private; |
| 5318 | |
Chris Wilson | ff7ea4c | 2010-12-08 09:43:41 +0000 | [diff] [blame] | 5319 | if (!list_empty(&dev_priv->mm.active_list)) { |
| 5320 | /* Still processing requests, so just re-arm the timer. */ |
| 5321 | mod_timer(&dev_priv->idle_timer, jiffies + |
| 5322 | msecs_to_jiffies(GPU_IDLE_TIMEOUT)); |
| 5323 | return; |
| 5324 | } |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 5325 | |
Chris Wilson | ff7ea4c | 2010-12-08 09:43:41 +0000 | [diff] [blame] | 5326 | dev_priv->busy = false; |
Eric Anholt | 01dfba9 | 2009-09-06 15:18:53 -0700 | [diff] [blame] | 5327 | queue_work(dev_priv->wq, &dev_priv->idle_work); |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 5328 | } |
| 5329 | |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 5330 | #define CRTC_IDLE_TIMEOUT 1000 /* ms */ |
| 5331 | |
| 5332 | static void intel_crtc_idle_timer(unsigned long arg) |
| 5333 | { |
| 5334 | struct intel_crtc *intel_crtc = (struct intel_crtc *)arg; |
| 5335 | struct drm_crtc *crtc = &intel_crtc->base; |
| 5336 | drm_i915_private_t *dev_priv = crtc->dev->dev_private; |
Chris Wilson | ff7ea4c | 2010-12-08 09:43:41 +0000 | [diff] [blame] | 5337 | struct intel_framebuffer *intel_fb; |
| 5338 | |
| 5339 | intel_fb = to_intel_framebuffer(crtc->fb); |
| 5340 | if (intel_fb && intel_fb->obj->active) { |
| 5341 | /* The framebuffer is still being accessed by the GPU. */ |
| 5342 | mod_timer(&intel_crtc->idle_timer, jiffies + |
| 5343 | msecs_to_jiffies(CRTC_IDLE_TIMEOUT)); |
| 5344 | return; |
| 5345 | } |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 5346 | |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 5347 | intel_crtc->busy = false; |
Eric Anholt | 01dfba9 | 2009-09-06 15:18:53 -0700 | [diff] [blame] | 5348 | queue_work(dev_priv->wq, &dev_priv->idle_work); |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 5349 | } |
| 5350 | |
Daniel Vetter | 3dec009 | 2010-08-20 21:40:52 +0200 | [diff] [blame] | 5351 | static void intel_increase_pllclock(struct drm_crtc *crtc) |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 5352 | { |
| 5353 | struct drm_device *dev = crtc->dev; |
| 5354 | drm_i915_private_t *dev_priv = dev->dev_private; |
| 5355 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 5356 | int pipe = intel_crtc->pipe; |
Jesse Barnes | dbdc647 | 2010-12-30 09:36:39 -0800 | [diff] [blame] | 5357 | int dpll_reg = DPLL(pipe); |
| 5358 | int dpll; |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 5359 | |
Eric Anholt | bad720f | 2009-10-22 16:11:14 -0700 | [diff] [blame] | 5360 | if (HAS_PCH_SPLIT(dev)) |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 5361 | return; |
| 5362 | |
| 5363 | if (!dev_priv->lvds_downclock_avail) |
| 5364 | return; |
| 5365 | |
Jesse Barnes | dbdc647 | 2010-12-30 09:36:39 -0800 | [diff] [blame] | 5366 | dpll = I915_READ(dpll_reg); |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 5367 | if (!HAS_PIPE_CXSR(dev) && (dpll & DISPLAY_RATE_SELECT_FPA1)) { |
Zhao Yakui | 44d98a6 | 2009-10-09 11:39:40 +0800 | [diff] [blame] | 5368 | DRM_DEBUG_DRIVER("upclocking LVDS\n"); |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 5369 | |
Sean Paul | 8ac5a6d | 2012-02-13 13:14:51 -0500 | [diff] [blame] | 5370 | assert_panel_unlocked(dev_priv, pipe); |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 5371 | |
| 5372 | dpll &= ~DISPLAY_RATE_SELECT_FPA1; |
| 5373 | I915_WRITE(dpll_reg, dpll); |
Jesse Barnes | 9d0498a | 2010-08-18 13:20:54 -0700 | [diff] [blame] | 5374 | intel_wait_for_vblank(dev, pipe); |
Jesse Barnes | dbdc647 | 2010-12-30 09:36:39 -0800 | [diff] [blame] | 5375 | |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 5376 | dpll = I915_READ(dpll_reg); |
| 5377 | if (dpll & DISPLAY_RATE_SELECT_FPA1) |
Zhao Yakui | 44d98a6 | 2009-10-09 11:39:40 +0800 | [diff] [blame] | 5378 | DRM_DEBUG_DRIVER("failed to upclock LVDS!\n"); |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 5379 | } |
| 5380 | |
| 5381 | /* Schedule downclock */ |
Daniel Vetter | 3dec009 | 2010-08-20 21:40:52 +0200 | [diff] [blame] | 5382 | mod_timer(&intel_crtc->idle_timer, jiffies + |
| 5383 | msecs_to_jiffies(CRTC_IDLE_TIMEOUT)); |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 5384 | } |
| 5385 | |
| 5386 | static void intel_decrease_pllclock(struct drm_crtc *crtc) |
| 5387 | { |
| 5388 | struct drm_device *dev = crtc->dev; |
| 5389 | drm_i915_private_t *dev_priv = dev->dev_private; |
| 5390 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 5391 | |
Eric Anholt | bad720f | 2009-10-22 16:11:14 -0700 | [diff] [blame] | 5392 | if (HAS_PCH_SPLIT(dev)) |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 5393 | return; |
| 5394 | |
| 5395 | if (!dev_priv->lvds_downclock_avail) |
| 5396 | return; |
| 5397 | |
| 5398 | /* |
| 5399 | * Since this is called by a timer, we should never get here in |
| 5400 | * the manual case. |
| 5401 | */ |
| 5402 | if (!HAS_PIPE_CXSR(dev) && intel_crtc->lowfreq_avail) { |
Chris Wilson | 074b5e1 | 2012-05-02 12:07:06 +0100 | [diff] [blame] | 5403 | int pipe = intel_crtc->pipe; |
| 5404 | int dpll_reg = DPLL(pipe); |
Daniel Vetter | dc257cf | 2012-05-07 11:30:46 +0200 | [diff] [blame^] | 5405 | int dpll; |
Chris Wilson | 074b5e1 | 2012-05-02 12:07:06 +0100 | [diff] [blame] | 5406 | |
Zhao Yakui | 44d98a6 | 2009-10-09 11:39:40 +0800 | [diff] [blame] | 5407 | DRM_DEBUG_DRIVER("downclocking LVDS\n"); |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 5408 | |
Sean Paul | 8ac5a6d | 2012-02-13 13:14:51 -0500 | [diff] [blame] | 5409 | assert_panel_unlocked(dev_priv, pipe); |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 5410 | |
Chris Wilson | 074b5e1 | 2012-05-02 12:07:06 +0100 | [diff] [blame] | 5411 | dpll = I915_READ(dpll_reg); |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 5412 | dpll |= DISPLAY_RATE_SELECT_FPA1; |
| 5413 | I915_WRITE(dpll_reg, dpll); |
Jesse Barnes | 9d0498a | 2010-08-18 13:20:54 -0700 | [diff] [blame] | 5414 | intel_wait_for_vblank(dev, pipe); |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 5415 | dpll = I915_READ(dpll_reg); |
| 5416 | if (!(dpll & DISPLAY_RATE_SELECT_FPA1)) |
Zhao Yakui | 44d98a6 | 2009-10-09 11:39:40 +0800 | [diff] [blame] | 5417 | DRM_DEBUG_DRIVER("failed to downclock LVDS!\n"); |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 5418 | } |
| 5419 | |
| 5420 | } |
| 5421 | |
| 5422 | /** |
| 5423 | * intel_idle_update - adjust clocks for idleness |
| 5424 | * @work: work struct |
| 5425 | * |
| 5426 | * Either the GPU or display (or both) went idle. Check the busy status |
| 5427 | * here and adjust the CRTC and GPU clocks as necessary. |
| 5428 | */ |
| 5429 | static void intel_idle_update(struct work_struct *work) |
| 5430 | { |
| 5431 | drm_i915_private_t *dev_priv = container_of(work, drm_i915_private_t, |
| 5432 | idle_work); |
| 5433 | struct drm_device *dev = dev_priv->dev; |
| 5434 | struct drm_crtc *crtc; |
| 5435 | struct intel_crtc *intel_crtc; |
| 5436 | |
| 5437 | if (!i915_powersave) |
| 5438 | return; |
| 5439 | |
| 5440 | mutex_lock(&dev->struct_mutex); |
| 5441 | |
Jesse Barnes | 7648fa9 | 2010-05-20 14:28:11 -0700 | [diff] [blame] | 5442 | i915_update_gfx_val(dev_priv); |
| 5443 | |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 5444 | list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) { |
| 5445 | /* Skip inactive CRTCs */ |
| 5446 | if (!crtc->fb) |
| 5447 | continue; |
| 5448 | |
| 5449 | intel_crtc = to_intel_crtc(crtc); |
| 5450 | if (!intel_crtc->busy) |
| 5451 | intel_decrease_pllclock(crtc); |
| 5452 | } |
| 5453 | |
Li Peng | 45ac22c | 2010-06-12 23:38:35 +0800 | [diff] [blame] | 5454 | |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 5455 | mutex_unlock(&dev->struct_mutex); |
| 5456 | } |
| 5457 | |
| 5458 | /** |
| 5459 | * intel_mark_busy - mark the GPU and possibly the display busy |
| 5460 | * @dev: drm device |
| 5461 | * @obj: object we're operating on |
| 5462 | * |
| 5463 | * Callers can use this function to indicate that the GPU is busy processing |
| 5464 | * commands. If @obj matches one of the CRTC objects (i.e. it's a scanout |
| 5465 | * buffer), we'll also mark the display as busy, so we know to increase its |
| 5466 | * clock frequency. |
| 5467 | */ |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 5468 | void intel_mark_busy(struct drm_device *dev, struct drm_i915_gem_object *obj) |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 5469 | { |
| 5470 | drm_i915_private_t *dev_priv = dev->dev_private; |
| 5471 | struct drm_crtc *crtc = NULL; |
| 5472 | struct intel_framebuffer *intel_fb; |
| 5473 | struct intel_crtc *intel_crtc; |
| 5474 | |
Zhenyu Wang | 5e17ee7 | 2009-09-03 09:30:06 +0800 | [diff] [blame] | 5475 | if (!drm_core_check_feature(dev, DRIVER_MODESET)) |
| 5476 | return; |
| 5477 | |
Alexander Lam | 18b2190 | 2011-01-03 13:28:56 -0500 | [diff] [blame] | 5478 | if (!dev_priv->busy) |
Chris Wilson | 28cf798 | 2009-11-30 01:08:56 +0000 | [diff] [blame] | 5479 | dev_priv->busy = true; |
Alexander Lam | 18b2190 | 2011-01-03 13:28:56 -0500 | [diff] [blame] | 5480 | else |
Chris Wilson | 28cf798 | 2009-11-30 01:08:56 +0000 | [diff] [blame] | 5481 | mod_timer(&dev_priv->idle_timer, jiffies + |
| 5482 | msecs_to_jiffies(GPU_IDLE_TIMEOUT)); |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 5483 | |
| 5484 | list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) { |
| 5485 | if (!crtc->fb) |
| 5486 | continue; |
| 5487 | |
| 5488 | intel_crtc = to_intel_crtc(crtc); |
| 5489 | intel_fb = to_intel_framebuffer(crtc->fb); |
| 5490 | if (intel_fb->obj == obj) { |
| 5491 | if (!intel_crtc->busy) { |
| 5492 | /* Non-busy -> busy, upclock */ |
Daniel Vetter | 3dec009 | 2010-08-20 21:40:52 +0200 | [diff] [blame] | 5493 | intel_increase_pllclock(crtc); |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 5494 | intel_crtc->busy = true; |
| 5495 | } else { |
| 5496 | /* Busy -> busy, put off timer */ |
| 5497 | mod_timer(&intel_crtc->idle_timer, jiffies + |
| 5498 | msecs_to_jiffies(CRTC_IDLE_TIMEOUT)); |
| 5499 | } |
| 5500 | } |
| 5501 | } |
| 5502 | } |
| 5503 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5504 | static void intel_crtc_destroy(struct drm_crtc *crtc) |
| 5505 | { |
| 5506 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
Daniel Vetter | 67e77c5 | 2010-08-20 22:26:30 +0200 | [diff] [blame] | 5507 | struct drm_device *dev = crtc->dev; |
| 5508 | struct intel_unpin_work *work; |
| 5509 | unsigned long flags; |
| 5510 | |
| 5511 | spin_lock_irqsave(&dev->event_lock, flags); |
| 5512 | work = intel_crtc->unpin_work; |
| 5513 | intel_crtc->unpin_work = NULL; |
| 5514 | spin_unlock_irqrestore(&dev->event_lock, flags); |
| 5515 | |
| 5516 | if (work) { |
| 5517 | cancel_work_sync(&work->work); |
| 5518 | kfree(work); |
| 5519 | } |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5520 | |
| 5521 | drm_crtc_cleanup(crtc); |
Daniel Vetter | 67e77c5 | 2010-08-20 22:26:30 +0200 | [diff] [blame] | 5522 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5523 | kfree(intel_crtc); |
| 5524 | } |
| 5525 | |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 5526 | static void intel_unpin_work_fn(struct work_struct *__work) |
| 5527 | { |
| 5528 | struct intel_unpin_work *work = |
| 5529 | container_of(__work, struct intel_unpin_work, work); |
| 5530 | |
| 5531 | mutex_lock(&work->dev->struct_mutex); |
Chris Wilson | 1690e1e | 2011-12-14 13:57:08 +0100 | [diff] [blame] | 5532 | intel_unpin_fb_obj(work->old_fb_obj); |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 5533 | drm_gem_object_unreference(&work->pending_flip_obj->base); |
| 5534 | drm_gem_object_unreference(&work->old_fb_obj->base); |
Chris Wilson | d9e86c0 | 2010-11-10 16:40:20 +0000 | [diff] [blame] | 5535 | |
Chris Wilson | 7782de3 | 2011-07-08 12:22:41 +0100 | [diff] [blame] | 5536 | intel_update_fbc(work->dev); |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 5537 | mutex_unlock(&work->dev->struct_mutex); |
| 5538 | kfree(work); |
| 5539 | } |
| 5540 | |
Jesse Barnes | 1afe3e9 | 2010-03-26 10:35:20 -0700 | [diff] [blame] | 5541 | static void do_intel_finish_page_flip(struct drm_device *dev, |
Mario Kleiner | 49b14a5 | 2010-12-09 07:00:07 +0100 | [diff] [blame] | 5542 | struct drm_crtc *crtc) |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 5543 | { |
| 5544 | drm_i915_private_t *dev_priv = dev->dev_private; |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 5545 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 5546 | struct intel_unpin_work *work; |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 5547 | struct drm_i915_gem_object *obj; |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 5548 | struct drm_pending_vblank_event *e; |
Mario Kleiner | 49b14a5 | 2010-12-09 07:00:07 +0100 | [diff] [blame] | 5549 | struct timeval tnow, tvbl; |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 5550 | unsigned long flags; |
| 5551 | |
| 5552 | /* Ignore early vblank irqs */ |
| 5553 | if (intel_crtc == NULL) |
| 5554 | return; |
| 5555 | |
Mario Kleiner | 49b14a5 | 2010-12-09 07:00:07 +0100 | [diff] [blame] | 5556 | do_gettimeofday(&tnow); |
| 5557 | |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 5558 | spin_lock_irqsave(&dev->event_lock, flags); |
| 5559 | work = intel_crtc->unpin_work; |
| 5560 | if (work == NULL || !work->pending) { |
| 5561 | spin_unlock_irqrestore(&dev->event_lock, flags); |
| 5562 | return; |
| 5563 | } |
| 5564 | |
| 5565 | intel_crtc->unpin_work = NULL; |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 5566 | |
| 5567 | if (work->event) { |
| 5568 | e = work->event; |
Mario Kleiner | 49b14a5 | 2010-12-09 07:00:07 +0100 | [diff] [blame] | 5569 | e->event.sequence = drm_vblank_count_and_time(dev, intel_crtc->pipe, &tvbl); |
Mario Kleiner | 0af7e4d | 2010-12-08 04:07:19 +0100 | [diff] [blame] | 5570 | |
| 5571 | /* Called before vblank count and timestamps have |
| 5572 | * been updated for the vblank interval of flip |
| 5573 | * completion? Need to increment vblank count and |
| 5574 | * add one videorefresh duration to returned timestamp |
Mario Kleiner | 49b14a5 | 2010-12-09 07:00:07 +0100 | [diff] [blame] | 5575 | * to account for this. We assume this happened if we |
| 5576 | * get called over 0.9 frame durations after the last |
| 5577 | * timestamped vblank. |
| 5578 | * |
| 5579 | * This calculation can not be used with vrefresh rates |
| 5580 | * below 5Hz (10Hz to be on the safe side) without |
| 5581 | * promoting to 64 integers. |
Mario Kleiner | 0af7e4d | 2010-12-08 04:07:19 +0100 | [diff] [blame] | 5582 | */ |
Mario Kleiner | 49b14a5 | 2010-12-09 07:00:07 +0100 | [diff] [blame] | 5583 | if (10 * (timeval_to_ns(&tnow) - timeval_to_ns(&tvbl)) > |
| 5584 | 9 * crtc->framedur_ns) { |
Mario Kleiner | 0af7e4d | 2010-12-08 04:07:19 +0100 | [diff] [blame] | 5585 | e->event.sequence++; |
Mario Kleiner | 49b14a5 | 2010-12-09 07:00:07 +0100 | [diff] [blame] | 5586 | tvbl = ns_to_timeval(timeval_to_ns(&tvbl) + |
| 5587 | crtc->framedur_ns); |
Mario Kleiner | 0af7e4d | 2010-12-08 04:07:19 +0100 | [diff] [blame] | 5588 | } |
| 5589 | |
Mario Kleiner | 49b14a5 | 2010-12-09 07:00:07 +0100 | [diff] [blame] | 5590 | e->event.tv_sec = tvbl.tv_sec; |
| 5591 | e->event.tv_usec = tvbl.tv_usec; |
Mario Kleiner | 0af7e4d | 2010-12-08 04:07:19 +0100 | [diff] [blame] | 5592 | |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 5593 | list_add_tail(&e->base.link, |
| 5594 | &e->base.file_priv->event_list); |
| 5595 | wake_up_interruptible(&e->base.file_priv->event_wait); |
| 5596 | } |
| 5597 | |
Mario Kleiner | 0af7e4d | 2010-12-08 04:07:19 +0100 | [diff] [blame] | 5598 | drm_vblank_put(dev, intel_crtc->pipe); |
| 5599 | |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 5600 | spin_unlock_irqrestore(&dev->event_lock, flags); |
| 5601 | |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 5602 | obj = work->old_fb_obj; |
Chris Wilson | d9e86c0 | 2010-11-10 16:40:20 +0000 | [diff] [blame] | 5603 | |
Chris Wilson | e59f2ba | 2010-10-07 17:28:15 +0100 | [diff] [blame] | 5604 | atomic_clear_mask(1 << intel_crtc->plane, |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 5605 | &obj->pending_flip.counter); |
| 5606 | if (atomic_read(&obj->pending_flip) == 0) |
Chris Wilson | f787a5f | 2010-09-24 16:02:42 +0100 | [diff] [blame] | 5607 | wake_up(&dev_priv->pending_flip_queue); |
Chris Wilson | d9e86c0 | 2010-11-10 16:40:20 +0000 | [diff] [blame] | 5608 | |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 5609 | schedule_work(&work->work); |
Jesse Barnes | e5510fa | 2010-07-01 16:48:37 -0700 | [diff] [blame] | 5610 | |
| 5611 | trace_i915_flip_complete(intel_crtc->plane, work->pending_flip_obj); |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 5612 | } |
| 5613 | |
Jesse Barnes | 1afe3e9 | 2010-03-26 10:35:20 -0700 | [diff] [blame] | 5614 | void intel_finish_page_flip(struct drm_device *dev, int pipe) |
| 5615 | { |
| 5616 | drm_i915_private_t *dev_priv = dev->dev_private; |
| 5617 | struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe]; |
| 5618 | |
Mario Kleiner | 49b14a5 | 2010-12-09 07:00:07 +0100 | [diff] [blame] | 5619 | do_intel_finish_page_flip(dev, crtc); |
Jesse Barnes | 1afe3e9 | 2010-03-26 10:35:20 -0700 | [diff] [blame] | 5620 | } |
| 5621 | |
| 5622 | void intel_finish_page_flip_plane(struct drm_device *dev, int plane) |
| 5623 | { |
| 5624 | drm_i915_private_t *dev_priv = dev->dev_private; |
| 5625 | struct drm_crtc *crtc = dev_priv->plane_to_crtc_mapping[plane]; |
| 5626 | |
Mario Kleiner | 49b14a5 | 2010-12-09 07:00:07 +0100 | [diff] [blame] | 5627 | do_intel_finish_page_flip(dev, crtc); |
Jesse Barnes | 1afe3e9 | 2010-03-26 10:35:20 -0700 | [diff] [blame] | 5628 | } |
| 5629 | |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 5630 | void intel_prepare_page_flip(struct drm_device *dev, int plane) |
| 5631 | { |
| 5632 | drm_i915_private_t *dev_priv = dev->dev_private; |
| 5633 | struct intel_crtc *intel_crtc = |
| 5634 | to_intel_crtc(dev_priv->plane_to_crtc_mapping[plane]); |
| 5635 | unsigned long flags; |
| 5636 | |
| 5637 | spin_lock_irqsave(&dev->event_lock, flags); |
Jesse Barnes | de3f440 | 2010-01-14 13:18:02 -0800 | [diff] [blame] | 5638 | if (intel_crtc->unpin_work) { |
Simon Farnsworth | 4e5359c | 2010-09-01 17:47:52 +0100 | [diff] [blame] | 5639 | if ((++intel_crtc->unpin_work->pending) > 1) |
| 5640 | DRM_ERROR("Prepared flip multiple times\n"); |
Jesse Barnes | de3f440 | 2010-01-14 13:18:02 -0800 | [diff] [blame] | 5641 | } else { |
| 5642 | DRM_DEBUG_DRIVER("preparing flip with no unpin work?\n"); |
| 5643 | } |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 5644 | spin_unlock_irqrestore(&dev->event_lock, flags); |
| 5645 | } |
| 5646 | |
Jesse Barnes | 8c9f3aa | 2011-06-16 09:19:13 -0700 | [diff] [blame] | 5647 | static int intel_gen2_queue_flip(struct drm_device *dev, |
| 5648 | struct drm_crtc *crtc, |
| 5649 | struct drm_framebuffer *fb, |
| 5650 | struct drm_i915_gem_object *obj) |
| 5651 | { |
| 5652 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 5653 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 5654 | unsigned long offset; |
| 5655 | u32 flip_mask; |
| 5656 | int ret; |
| 5657 | |
| 5658 | ret = intel_pin_and_fence_fb_obj(dev, obj, LP_RING(dev_priv)); |
| 5659 | if (ret) |
Chris Wilson | 83d4092 | 2012-04-17 19:35:53 +0100 | [diff] [blame] | 5660 | goto err; |
Jesse Barnes | 8c9f3aa | 2011-06-16 09:19:13 -0700 | [diff] [blame] | 5661 | |
| 5662 | /* Offset into the new buffer for cases of shared fbs between CRTCs */ |
Ville Syrjälä | 01f2c77 | 2011-12-20 00:06:49 +0200 | [diff] [blame] | 5663 | offset = crtc->y * fb->pitches[0] + crtc->x * fb->bits_per_pixel/8; |
Jesse Barnes | 8c9f3aa | 2011-06-16 09:19:13 -0700 | [diff] [blame] | 5664 | |
| 5665 | ret = BEGIN_LP_RING(6); |
| 5666 | if (ret) |
Chris Wilson | 83d4092 | 2012-04-17 19:35:53 +0100 | [diff] [blame] | 5667 | goto err_unpin; |
Jesse Barnes | 8c9f3aa | 2011-06-16 09:19:13 -0700 | [diff] [blame] | 5668 | |
| 5669 | /* Can't queue multiple flips, so wait for the previous |
| 5670 | * one to finish before executing the next. |
| 5671 | */ |
| 5672 | if (intel_crtc->plane) |
| 5673 | flip_mask = MI_WAIT_FOR_PLANE_B_FLIP; |
| 5674 | else |
| 5675 | flip_mask = MI_WAIT_FOR_PLANE_A_FLIP; |
| 5676 | OUT_RING(MI_WAIT_FOR_EVENT | flip_mask); |
| 5677 | OUT_RING(MI_NOOP); |
| 5678 | OUT_RING(MI_DISPLAY_FLIP | |
| 5679 | MI_DISPLAY_FLIP_PLANE(intel_crtc->plane)); |
Ville Syrjälä | 01f2c77 | 2011-12-20 00:06:49 +0200 | [diff] [blame] | 5680 | OUT_RING(fb->pitches[0]); |
Jesse Barnes | 8c9f3aa | 2011-06-16 09:19:13 -0700 | [diff] [blame] | 5681 | OUT_RING(obj->gtt_offset + offset); |
Daniel Vetter | c6a32fc | 2012-01-20 10:43:44 +0100 | [diff] [blame] | 5682 | OUT_RING(0); /* aux display base address, unused */ |
Jesse Barnes | 8c9f3aa | 2011-06-16 09:19:13 -0700 | [diff] [blame] | 5683 | ADVANCE_LP_RING(); |
Chris Wilson | 83d4092 | 2012-04-17 19:35:53 +0100 | [diff] [blame] | 5684 | return 0; |
| 5685 | |
| 5686 | err_unpin: |
| 5687 | intel_unpin_fb_obj(obj); |
| 5688 | err: |
Jesse Barnes | 8c9f3aa | 2011-06-16 09:19:13 -0700 | [diff] [blame] | 5689 | return ret; |
| 5690 | } |
| 5691 | |
| 5692 | static int intel_gen3_queue_flip(struct drm_device *dev, |
| 5693 | struct drm_crtc *crtc, |
| 5694 | struct drm_framebuffer *fb, |
| 5695 | struct drm_i915_gem_object *obj) |
| 5696 | { |
| 5697 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 5698 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 5699 | unsigned long offset; |
| 5700 | u32 flip_mask; |
| 5701 | int ret; |
| 5702 | |
| 5703 | ret = intel_pin_and_fence_fb_obj(dev, obj, LP_RING(dev_priv)); |
| 5704 | if (ret) |
Chris Wilson | 83d4092 | 2012-04-17 19:35:53 +0100 | [diff] [blame] | 5705 | goto err; |
Jesse Barnes | 8c9f3aa | 2011-06-16 09:19:13 -0700 | [diff] [blame] | 5706 | |
| 5707 | /* Offset into the new buffer for cases of shared fbs between CRTCs */ |
Ville Syrjälä | 01f2c77 | 2011-12-20 00:06:49 +0200 | [diff] [blame] | 5708 | offset = crtc->y * fb->pitches[0] + crtc->x * fb->bits_per_pixel/8; |
Jesse Barnes | 8c9f3aa | 2011-06-16 09:19:13 -0700 | [diff] [blame] | 5709 | |
| 5710 | ret = BEGIN_LP_RING(6); |
| 5711 | if (ret) |
Chris Wilson | 83d4092 | 2012-04-17 19:35:53 +0100 | [diff] [blame] | 5712 | goto err_unpin; |
Jesse Barnes | 8c9f3aa | 2011-06-16 09:19:13 -0700 | [diff] [blame] | 5713 | |
| 5714 | if (intel_crtc->plane) |
| 5715 | flip_mask = MI_WAIT_FOR_PLANE_B_FLIP; |
| 5716 | else |
| 5717 | flip_mask = MI_WAIT_FOR_PLANE_A_FLIP; |
| 5718 | OUT_RING(MI_WAIT_FOR_EVENT | flip_mask); |
| 5719 | OUT_RING(MI_NOOP); |
| 5720 | OUT_RING(MI_DISPLAY_FLIP_I915 | |
| 5721 | MI_DISPLAY_FLIP_PLANE(intel_crtc->plane)); |
Ville Syrjälä | 01f2c77 | 2011-12-20 00:06:49 +0200 | [diff] [blame] | 5722 | OUT_RING(fb->pitches[0]); |
Jesse Barnes | 8c9f3aa | 2011-06-16 09:19:13 -0700 | [diff] [blame] | 5723 | OUT_RING(obj->gtt_offset + offset); |
| 5724 | OUT_RING(MI_NOOP); |
| 5725 | |
| 5726 | ADVANCE_LP_RING(); |
Chris Wilson | 83d4092 | 2012-04-17 19:35:53 +0100 | [diff] [blame] | 5727 | return 0; |
| 5728 | |
| 5729 | err_unpin: |
| 5730 | intel_unpin_fb_obj(obj); |
| 5731 | err: |
Jesse Barnes | 8c9f3aa | 2011-06-16 09:19:13 -0700 | [diff] [blame] | 5732 | return ret; |
| 5733 | } |
| 5734 | |
| 5735 | static int intel_gen4_queue_flip(struct drm_device *dev, |
| 5736 | struct drm_crtc *crtc, |
| 5737 | struct drm_framebuffer *fb, |
| 5738 | struct drm_i915_gem_object *obj) |
| 5739 | { |
| 5740 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 5741 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 5742 | uint32_t pf, pipesrc; |
| 5743 | int ret; |
| 5744 | |
| 5745 | ret = intel_pin_and_fence_fb_obj(dev, obj, LP_RING(dev_priv)); |
| 5746 | if (ret) |
Chris Wilson | 83d4092 | 2012-04-17 19:35:53 +0100 | [diff] [blame] | 5747 | goto err; |
Jesse Barnes | 8c9f3aa | 2011-06-16 09:19:13 -0700 | [diff] [blame] | 5748 | |
| 5749 | ret = BEGIN_LP_RING(4); |
| 5750 | if (ret) |
Chris Wilson | 83d4092 | 2012-04-17 19:35:53 +0100 | [diff] [blame] | 5751 | goto err_unpin; |
Jesse Barnes | 8c9f3aa | 2011-06-16 09:19:13 -0700 | [diff] [blame] | 5752 | |
| 5753 | /* i965+ uses the linear or tiled offsets from the |
| 5754 | * Display Registers (which do not change across a page-flip) |
| 5755 | * so we need only reprogram the base address. |
| 5756 | */ |
| 5757 | OUT_RING(MI_DISPLAY_FLIP | |
| 5758 | MI_DISPLAY_FLIP_PLANE(intel_crtc->plane)); |
Ville Syrjälä | 01f2c77 | 2011-12-20 00:06:49 +0200 | [diff] [blame] | 5759 | OUT_RING(fb->pitches[0]); |
Jesse Barnes | 8c9f3aa | 2011-06-16 09:19:13 -0700 | [diff] [blame] | 5760 | OUT_RING(obj->gtt_offset | obj->tiling_mode); |
| 5761 | |
| 5762 | /* XXX Enabling the panel-fitter across page-flip is so far |
| 5763 | * untested on non-native modes, so ignore it for now. |
| 5764 | * pf = I915_READ(pipe == 0 ? PFA_CTL_1 : PFB_CTL_1) & PF_ENABLE; |
| 5765 | */ |
| 5766 | pf = 0; |
| 5767 | pipesrc = I915_READ(PIPESRC(intel_crtc->pipe)) & 0x0fff0fff; |
| 5768 | OUT_RING(pf | pipesrc); |
| 5769 | ADVANCE_LP_RING(); |
Chris Wilson | 83d4092 | 2012-04-17 19:35:53 +0100 | [diff] [blame] | 5770 | return 0; |
| 5771 | |
| 5772 | err_unpin: |
| 5773 | intel_unpin_fb_obj(obj); |
| 5774 | err: |
Jesse Barnes | 8c9f3aa | 2011-06-16 09:19:13 -0700 | [diff] [blame] | 5775 | return ret; |
| 5776 | } |
| 5777 | |
| 5778 | static int intel_gen6_queue_flip(struct drm_device *dev, |
| 5779 | struct drm_crtc *crtc, |
| 5780 | struct drm_framebuffer *fb, |
| 5781 | struct drm_i915_gem_object *obj) |
| 5782 | { |
| 5783 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 5784 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 5785 | uint32_t pf, pipesrc; |
| 5786 | int ret; |
| 5787 | |
| 5788 | ret = intel_pin_and_fence_fb_obj(dev, obj, LP_RING(dev_priv)); |
| 5789 | if (ret) |
Chris Wilson | 83d4092 | 2012-04-17 19:35:53 +0100 | [diff] [blame] | 5790 | goto err; |
Jesse Barnes | 8c9f3aa | 2011-06-16 09:19:13 -0700 | [diff] [blame] | 5791 | |
| 5792 | ret = BEGIN_LP_RING(4); |
| 5793 | if (ret) |
Chris Wilson | 83d4092 | 2012-04-17 19:35:53 +0100 | [diff] [blame] | 5794 | goto err_unpin; |
Jesse Barnes | 8c9f3aa | 2011-06-16 09:19:13 -0700 | [diff] [blame] | 5795 | |
| 5796 | OUT_RING(MI_DISPLAY_FLIP | |
| 5797 | MI_DISPLAY_FLIP_PLANE(intel_crtc->plane)); |
Ville Syrjälä | 01f2c77 | 2011-12-20 00:06:49 +0200 | [diff] [blame] | 5798 | OUT_RING(fb->pitches[0] | obj->tiling_mode); |
Jesse Barnes | 8c9f3aa | 2011-06-16 09:19:13 -0700 | [diff] [blame] | 5799 | OUT_RING(obj->gtt_offset); |
| 5800 | |
Chris Wilson | 99d9acd | 2012-04-17 20:37:00 +0100 | [diff] [blame] | 5801 | /* Contrary to the suggestions in the documentation, |
| 5802 | * "Enable Panel Fitter" does not seem to be required when page |
| 5803 | * flipping with a non-native mode, and worse causes a normal |
| 5804 | * modeset to fail. |
| 5805 | * pf = I915_READ(PF_CTL(intel_crtc->pipe)) & PF_ENABLE; |
| 5806 | */ |
| 5807 | pf = 0; |
Jesse Barnes | 8c9f3aa | 2011-06-16 09:19:13 -0700 | [diff] [blame] | 5808 | pipesrc = I915_READ(PIPESRC(intel_crtc->pipe)) & 0x0fff0fff; |
| 5809 | OUT_RING(pf | pipesrc); |
| 5810 | ADVANCE_LP_RING(); |
Chris Wilson | 83d4092 | 2012-04-17 19:35:53 +0100 | [diff] [blame] | 5811 | return 0; |
| 5812 | |
| 5813 | err_unpin: |
| 5814 | intel_unpin_fb_obj(obj); |
| 5815 | err: |
Jesse Barnes | 8c9f3aa | 2011-06-16 09:19:13 -0700 | [diff] [blame] | 5816 | return ret; |
| 5817 | } |
| 5818 | |
Jesse Barnes | 7c9017e | 2011-06-16 12:18:54 -0700 | [diff] [blame] | 5819 | /* |
| 5820 | * On gen7 we currently use the blit ring because (in early silicon at least) |
| 5821 | * the render ring doesn't give us interrpts for page flip completion, which |
| 5822 | * means clients will hang after the first flip is queued. Fortunately the |
| 5823 | * blit ring generates interrupts properly, so use it instead. |
| 5824 | */ |
| 5825 | static int intel_gen7_queue_flip(struct drm_device *dev, |
| 5826 | struct drm_crtc *crtc, |
| 5827 | struct drm_framebuffer *fb, |
| 5828 | struct drm_i915_gem_object *obj) |
| 5829 | { |
| 5830 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 5831 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 5832 | struct intel_ring_buffer *ring = &dev_priv->ring[BCS]; |
| 5833 | int ret; |
| 5834 | |
| 5835 | ret = intel_pin_and_fence_fb_obj(dev, obj, ring); |
| 5836 | if (ret) |
Chris Wilson | 83d4092 | 2012-04-17 19:35:53 +0100 | [diff] [blame] | 5837 | goto err; |
Jesse Barnes | 7c9017e | 2011-06-16 12:18:54 -0700 | [diff] [blame] | 5838 | |
| 5839 | ret = intel_ring_begin(ring, 4); |
| 5840 | if (ret) |
Chris Wilson | 83d4092 | 2012-04-17 19:35:53 +0100 | [diff] [blame] | 5841 | goto err_unpin; |
Jesse Barnes | 7c9017e | 2011-06-16 12:18:54 -0700 | [diff] [blame] | 5842 | |
| 5843 | intel_ring_emit(ring, MI_DISPLAY_FLIP_I915 | (intel_crtc->plane << 19)); |
Ville Syrjälä | 01f2c77 | 2011-12-20 00:06:49 +0200 | [diff] [blame] | 5844 | intel_ring_emit(ring, (fb->pitches[0] | obj->tiling_mode)); |
Jesse Barnes | 7c9017e | 2011-06-16 12:18:54 -0700 | [diff] [blame] | 5845 | intel_ring_emit(ring, (obj->gtt_offset)); |
| 5846 | intel_ring_emit(ring, (MI_NOOP)); |
| 5847 | intel_ring_advance(ring); |
Chris Wilson | 83d4092 | 2012-04-17 19:35:53 +0100 | [diff] [blame] | 5848 | return 0; |
| 5849 | |
| 5850 | err_unpin: |
| 5851 | intel_unpin_fb_obj(obj); |
| 5852 | err: |
Jesse Barnes | 7c9017e | 2011-06-16 12:18:54 -0700 | [diff] [blame] | 5853 | return ret; |
| 5854 | } |
| 5855 | |
Jesse Barnes | 8c9f3aa | 2011-06-16 09:19:13 -0700 | [diff] [blame] | 5856 | static int intel_default_queue_flip(struct drm_device *dev, |
| 5857 | struct drm_crtc *crtc, |
| 5858 | struct drm_framebuffer *fb, |
| 5859 | struct drm_i915_gem_object *obj) |
| 5860 | { |
| 5861 | return -ENODEV; |
| 5862 | } |
| 5863 | |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 5864 | static int intel_crtc_page_flip(struct drm_crtc *crtc, |
| 5865 | struct drm_framebuffer *fb, |
| 5866 | struct drm_pending_vblank_event *event) |
| 5867 | { |
| 5868 | struct drm_device *dev = crtc->dev; |
| 5869 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 5870 | struct intel_framebuffer *intel_fb; |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 5871 | struct drm_i915_gem_object *obj; |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 5872 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 5873 | struct intel_unpin_work *work; |
Jesse Barnes | 8c9f3aa | 2011-06-16 09:19:13 -0700 | [diff] [blame] | 5874 | unsigned long flags; |
Chris Wilson | 52e6863 | 2010-08-08 10:15:59 +0100 | [diff] [blame] | 5875 | int ret; |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 5876 | |
| 5877 | work = kzalloc(sizeof *work, GFP_KERNEL); |
| 5878 | if (work == NULL) |
| 5879 | return -ENOMEM; |
| 5880 | |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 5881 | work->event = event; |
| 5882 | work->dev = crtc->dev; |
| 5883 | intel_fb = to_intel_framebuffer(crtc->fb); |
Jesse Barnes | b1b87f6 | 2010-01-26 14:40:05 -0800 | [diff] [blame] | 5884 | work->old_fb_obj = intel_fb->obj; |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 5885 | INIT_WORK(&work->work, intel_unpin_work_fn); |
| 5886 | |
Jesse Barnes | 7317c75e6 | 2011-08-29 09:45:28 -0700 | [diff] [blame] | 5887 | ret = drm_vblank_get(dev, intel_crtc->pipe); |
| 5888 | if (ret) |
| 5889 | goto free_work; |
| 5890 | |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 5891 | /* We borrow the event spin lock for protecting unpin_work */ |
| 5892 | spin_lock_irqsave(&dev->event_lock, flags); |
| 5893 | if (intel_crtc->unpin_work) { |
| 5894 | spin_unlock_irqrestore(&dev->event_lock, flags); |
| 5895 | kfree(work); |
Jesse Barnes | 7317c75e6 | 2011-08-29 09:45:28 -0700 | [diff] [blame] | 5896 | drm_vblank_put(dev, intel_crtc->pipe); |
Chris Wilson | 468f0b4 | 2010-05-27 13:18:13 +0100 | [diff] [blame] | 5897 | |
| 5898 | DRM_DEBUG_DRIVER("flip queue: crtc already busy\n"); |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 5899 | return -EBUSY; |
| 5900 | } |
| 5901 | intel_crtc->unpin_work = work; |
| 5902 | spin_unlock_irqrestore(&dev->event_lock, flags); |
| 5903 | |
| 5904 | intel_fb = to_intel_framebuffer(fb); |
| 5905 | obj = intel_fb->obj; |
| 5906 | |
Chris Wilson | 468f0b4 | 2010-05-27 13:18:13 +0100 | [diff] [blame] | 5907 | mutex_lock(&dev->struct_mutex); |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 5908 | |
Jesse Barnes | 75dfca8 | 2010-02-10 15:09:44 -0800 | [diff] [blame] | 5909 | /* Reference the objects for the scheduled work. */ |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 5910 | drm_gem_object_reference(&work->old_fb_obj->base); |
| 5911 | drm_gem_object_reference(&obj->base); |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 5912 | |
| 5913 | crtc->fb = fb; |
Chris Wilson | 96b099f | 2010-06-07 14:03:04 +0100 | [diff] [blame] | 5914 | |
Chris Wilson | e1f99ce | 2010-10-27 12:45:26 +0100 | [diff] [blame] | 5915 | work->pending_flip_obj = obj; |
Chris Wilson | e1f99ce | 2010-10-27 12:45:26 +0100 | [diff] [blame] | 5916 | |
Simon Farnsworth | 4e5359c | 2010-09-01 17:47:52 +0100 | [diff] [blame] | 5917 | work->enable_stall_check = true; |
| 5918 | |
Chris Wilson | e1f99ce | 2010-10-27 12:45:26 +0100 | [diff] [blame] | 5919 | /* Block clients from rendering to the new back buffer until |
| 5920 | * the flip occurs and the object is no longer visible. |
| 5921 | */ |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 5922 | atomic_add(1 << intel_crtc->plane, &work->old_fb_obj->pending_flip); |
Chris Wilson | e1f99ce | 2010-10-27 12:45:26 +0100 | [diff] [blame] | 5923 | |
Jesse Barnes | 8c9f3aa | 2011-06-16 09:19:13 -0700 | [diff] [blame] | 5924 | ret = dev_priv->display.queue_flip(dev, crtc, fb, obj); |
| 5925 | if (ret) |
| 5926 | goto cleanup_pending; |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 5927 | |
Chris Wilson | 7782de3 | 2011-07-08 12:22:41 +0100 | [diff] [blame] | 5928 | intel_disable_fbc(dev); |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 5929 | mutex_unlock(&dev->struct_mutex); |
| 5930 | |
Jesse Barnes | e5510fa | 2010-07-01 16:48:37 -0700 | [diff] [blame] | 5931 | trace_i915_flip_request(intel_crtc->plane, obj); |
| 5932 | |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 5933 | return 0; |
Chris Wilson | 96b099f | 2010-06-07 14:03:04 +0100 | [diff] [blame] | 5934 | |
Jesse Barnes | 8c9f3aa | 2011-06-16 09:19:13 -0700 | [diff] [blame] | 5935 | cleanup_pending: |
| 5936 | atomic_sub(1 << intel_crtc->plane, &work->old_fb_obj->pending_flip); |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 5937 | drm_gem_object_unreference(&work->old_fb_obj->base); |
| 5938 | drm_gem_object_unreference(&obj->base); |
Chris Wilson | 96b099f | 2010-06-07 14:03:04 +0100 | [diff] [blame] | 5939 | mutex_unlock(&dev->struct_mutex); |
| 5940 | |
| 5941 | spin_lock_irqsave(&dev->event_lock, flags); |
| 5942 | intel_crtc->unpin_work = NULL; |
| 5943 | spin_unlock_irqrestore(&dev->event_lock, flags); |
| 5944 | |
Jesse Barnes | 7317c75e6 | 2011-08-29 09:45:28 -0700 | [diff] [blame] | 5945 | drm_vblank_put(dev, intel_crtc->pipe); |
| 5946 | free_work: |
Chris Wilson | 96b099f | 2010-06-07 14:03:04 +0100 | [diff] [blame] | 5947 | kfree(work); |
| 5948 | |
| 5949 | return ret; |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 5950 | } |
| 5951 | |
Chris Wilson | 47f1c6c | 2010-12-03 15:37:31 +0000 | [diff] [blame] | 5952 | static void intel_sanitize_modesetting(struct drm_device *dev, |
| 5953 | int pipe, int plane) |
| 5954 | { |
| 5955 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 5956 | u32 reg, val; |
| 5957 | |
Chris Wilson | f47166d | 2012-03-22 15:00:50 +0000 | [diff] [blame] | 5958 | /* Clear any frame start delays used for debugging left by the BIOS */ |
| 5959 | for_each_pipe(pipe) { |
| 5960 | reg = PIPECONF(pipe); |
| 5961 | I915_WRITE(reg, I915_READ(reg) & ~PIPECONF_FRAME_START_DELAY_MASK); |
| 5962 | } |
| 5963 | |
Chris Wilson | 47f1c6c | 2010-12-03 15:37:31 +0000 | [diff] [blame] | 5964 | if (HAS_PCH_SPLIT(dev)) |
| 5965 | return; |
| 5966 | |
| 5967 | /* Who knows what state these registers were left in by the BIOS or |
| 5968 | * grub? |
| 5969 | * |
| 5970 | * If we leave the registers in a conflicting state (e.g. with the |
| 5971 | * display plane reading from the other pipe than the one we intend |
| 5972 | * to use) then when we attempt to teardown the active mode, we will |
| 5973 | * not disable the pipes and planes in the correct order -- leaving |
| 5974 | * a plane reading from a disabled pipe and possibly leading to |
| 5975 | * undefined behaviour. |
| 5976 | */ |
| 5977 | |
| 5978 | reg = DSPCNTR(plane); |
| 5979 | val = I915_READ(reg); |
| 5980 | |
| 5981 | if ((val & DISPLAY_PLANE_ENABLE) == 0) |
| 5982 | return; |
| 5983 | if (!!(val & DISPPLANE_SEL_PIPE_MASK) == pipe) |
| 5984 | return; |
| 5985 | |
| 5986 | /* This display plane is active and attached to the other CPU pipe. */ |
| 5987 | pipe = !pipe; |
| 5988 | |
| 5989 | /* Disable the plane and wait for it to stop reading from the pipe. */ |
Jesse Barnes | b24e717 | 2011-01-04 15:09:30 -0800 | [diff] [blame] | 5990 | intel_disable_plane(dev_priv, plane, pipe); |
| 5991 | intel_disable_pipe(dev_priv, pipe); |
Chris Wilson | 47f1c6c | 2010-12-03 15:37:31 +0000 | [diff] [blame] | 5992 | } |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5993 | |
Chris Wilson | f6e5b16 | 2011-04-12 18:06:51 +0100 | [diff] [blame] | 5994 | static void intel_crtc_reset(struct drm_crtc *crtc) |
| 5995 | { |
| 5996 | struct drm_device *dev = crtc->dev; |
| 5997 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 5998 | |
| 5999 | /* Reset flags back to the 'unknown' status so that they |
| 6000 | * will be correctly set on the initial modeset. |
| 6001 | */ |
| 6002 | intel_crtc->dpms_mode = -1; |
| 6003 | |
| 6004 | /* We need to fix up any BIOS configuration that conflicts with |
| 6005 | * our expectations. |
| 6006 | */ |
| 6007 | intel_sanitize_modesetting(dev, intel_crtc->pipe, intel_crtc->plane); |
| 6008 | } |
| 6009 | |
| 6010 | static struct drm_crtc_helper_funcs intel_helper_funcs = { |
| 6011 | .dpms = intel_crtc_dpms, |
| 6012 | .mode_fixup = intel_crtc_mode_fixup, |
| 6013 | .mode_set = intel_crtc_mode_set, |
| 6014 | .mode_set_base = intel_pipe_set_base, |
| 6015 | .mode_set_base_atomic = intel_pipe_set_base_atomic, |
| 6016 | .load_lut = intel_crtc_load_lut, |
| 6017 | .disable = intel_crtc_disable, |
| 6018 | }; |
| 6019 | |
| 6020 | static const struct drm_crtc_funcs intel_crtc_funcs = { |
| 6021 | .reset = intel_crtc_reset, |
| 6022 | .cursor_set = intel_crtc_cursor_set, |
| 6023 | .cursor_move = intel_crtc_cursor_move, |
| 6024 | .gamma_set = intel_crtc_gamma_set, |
| 6025 | .set_config = drm_crtc_helper_set_config, |
| 6026 | .destroy = intel_crtc_destroy, |
| 6027 | .page_flip = intel_crtc_page_flip, |
| 6028 | }; |
| 6029 | |
Hannes Eder | b358d0a | 2008-12-18 21:18:47 +0100 | [diff] [blame] | 6030 | static void intel_crtc_init(struct drm_device *dev, int pipe) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6031 | { |
Jesse Barnes | 22fd0fa | 2009-12-02 13:42:53 -0800 | [diff] [blame] | 6032 | drm_i915_private_t *dev_priv = dev->dev_private; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6033 | struct intel_crtc *intel_crtc; |
| 6034 | int i; |
| 6035 | |
| 6036 | intel_crtc = kzalloc(sizeof(struct intel_crtc) + (INTELFB_CONN_LIMIT * sizeof(struct drm_connector *)), GFP_KERNEL); |
| 6037 | if (intel_crtc == NULL) |
| 6038 | return; |
| 6039 | |
| 6040 | drm_crtc_init(dev, &intel_crtc->base, &intel_crtc_funcs); |
| 6041 | |
| 6042 | drm_mode_crtc_set_gamma_size(&intel_crtc->base, 256); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6043 | for (i = 0; i < 256; i++) { |
| 6044 | intel_crtc->lut_r[i] = i; |
| 6045 | intel_crtc->lut_g[i] = i; |
| 6046 | intel_crtc->lut_b[i] = i; |
| 6047 | } |
| 6048 | |
Jesse Barnes | 8082400 | 2009-09-10 15:28:06 -0700 | [diff] [blame] | 6049 | /* Swap pipes & planes for FBC on pre-965 */ |
| 6050 | intel_crtc->pipe = pipe; |
| 6051 | intel_crtc->plane = pipe; |
Chris Wilson | e2e767a | 2010-09-13 16:53:12 +0100 | [diff] [blame] | 6052 | if (IS_MOBILE(dev) && IS_GEN3(dev)) { |
Zhao Yakui | 28c9773 | 2009-10-09 11:39:41 +0800 | [diff] [blame] | 6053 | DRM_DEBUG_KMS("swapping pipes & planes for FBC\n"); |
Chris Wilson | e2e767a | 2010-09-13 16:53:12 +0100 | [diff] [blame] | 6054 | intel_crtc->plane = !pipe; |
Jesse Barnes | 8082400 | 2009-09-10 15:28:06 -0700 | [diff] [blame] | 6055 | } |
| 6056 | |
Jesse Barnes | 22fd0fa | 2009-12-02 13:42:53 -0800 | [diff] [blame] | 6057 | BUG_ON(pipe >= ARRAY_SIZE(dev_priv->plane_to_crtc_mapping) || |
| 6058 | dev_priv->plane_to_crtc_mapping[intel_crtc->plane] != NULL); |
| 6059 | dev_priv->plane_to_crtc_mapping[intel_crtc->plane] = &intel_crtc->base; |
| 6060 | dev_priv->pipe_to_crtc_mapping[intel_crtc->pipe] = &intel_crtc->base; |
| 6061 | |
Chris Wilson | 5d1d0cc | 2011-01-24 15:02:15 +0000 | [diff] [blame] | 6062 | intel_crtc_reset(&intel_crtc->base); |
Chris Wilson | 04dbff5 | 2011-02-10 17:38:35 +0000 | [diff] [blame] | 6063 | intel_crtc->active = true; /* force the pipe off on setup_init_config */ |
Jesse Barnes | 5a35420 | 2011-06-24 12:19:22 -0700 | [diff] [blame] | 6064 | intel_crtc->bpp = 24; /* default for pre-Ironlake */ |
Jesse Barnes | 7e7d76c | 2010-09-10 10:47:20 -0700 | [diff] [blame] | 6065 | |
| 6066 | if (HAS_PCH_SPLIT(dev)) { |
Jesse Barnes | 4b645f1 | 2011-10-12 09:51:31 -0700 | [diff] [blame] | 6067 | if (pipe == 2 && IS_IVYBRIDGE(dev)) |
| 6068 | intel_crtc->no_pll = true; |
Jesse Barnes | 7e7d76c | 2010-09-10 10:47:20 -0700 | [diff] [blame] | 6069 | intel_helper_funcs.prepare = ironlake_crtc_prepare; |
| 6070 | intel_helper_funcs.commit = ironlake_crtc_commit; |
| 6071 | } else { |
| 6072 | intel_helper_funcs.prepare = i9xx_crtc_prepare; |
| 6073 | intel_helper_funcs.commit = i9xx_crtc_commit; |
| 6074 | } |
| 6075 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6076 | drm_crtc_helper_add(&intel_crtc->base, &intel_helper_funcs); |
| 6077 | |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 6078 | intel_crtc->busy = false; |
| 6079 | |
| 6080 | setup_timer(&intel_crtc->idle_timer, intel_crtc_idle_timer, |
| 6081 | (unsigned long)intel_crtc); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6082 | } |
| 6083 | |
Carl Worth | 08d7b3d | 2009-04-29 14:43:54 -0700 | [diff] [blame] | 6084 | 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] | 6085 | struct drm_file *file) |
Carl Worth | 08d7b3d | 2009-04-29 14:43:54 -0700 | [diff] [blame] | 6086 | { |
| 6087 | drm_i915_private_t *dev_priv = dev->dev_private; |
| 6088 | 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] | 6089 | struct drm_mode_object *drmmode_obj; |
| 6090 | struct intel_crtc *crtc; |
Carl Worth | 08d7b3d | 2009-04-29 14:43:54 -0700 | [diff] [blame] | 6091 | |
| 6092 | if (!dev_priv) { |
| 6093 | DRM_ERROR("called with no initialization\n"); |
| 6094 | return -EINVAL; |
| 6095 | } |
| 6096 | |
Daniel Vetter | c05422d | 2009-08-11 16:05:30 +0200 | [diff] [blame] | 6097 | drmmode_obj = drm_mode_object_find(dev, pipe_from_crtc_id->crtc_id, |
| 6098 | DRM_MODE_OBJECT_CRTC); |
Carl Worth | 08d7b3d | 2009-04-29 14:43:54 -0700 | [diff] [blame] | 6099 | |
Daniel Vetter | c05422d | 2009-08-11 16:05:30 +0200 | [diff] [blame] | 6100 | if (!drmmode_obj) { |
Carl Worth | 08d7b3d | 2009-04-29 14:43:54 -0700 | [diff] [blame] | 6101 | DRM_ERROR("no such CRTC id\n"); |
| 6102 | return -EINVAL; |
| 6103 | } |
| 6104 | |
Daniel Vetter | c05422d | 2009-08-11 16:05:30 +0200 | [diff] [blame] | 6105 | crtc = to_intel_crtc(obj_to_crtc(drmmode_obj)); |
| 6106 | pipe_from_crtc_id->pipe = crtc->pipe; |
Carl Worth | 08d7b3d | 2009-04-29 14:43:54 -0700 | [diff] [blame] | 6107 | |
Daniel Vetter | c05422d | 2009-08-11 16:05:30 +0200 | [diff] [blame] | 6108 | return 0; |
Carl Worth | 08d7b3d | 2009-04-29 14:43:54 -0700 | [diff] [blame] | 6109 | } |
| 6110 | |
Zhenyu Wang | c5e4df3 | 2010-03-30 14:39:27 +0800 | [diff] [blame] | 6111 | static int intel_encoder_clones(struct drm_device *dev, int type_mask) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6112 | { |
Chris Wilson | 4ef69c7 | 2010-09-09 15:14:28 +0100 | [diff] [blame] | 6113 | struct intel_encoder *encoder; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6114 | int index_mask = 0; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6115 | int entry = 0; |
| 6116 | |
Chris Wilson | 4ef69c7 | 2010-09-09 15:14:28 +0100 | [diff] [blame] | 6117 | list_for_each_entry(encoder, &dev->mode_config.encoder_list, base.head) { |
| 6118 | if (type_mask & encoder->clone_mask) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6119 | index_mask |= (1 << entry); |
| 6120 | entry++; |
| 6121 | } |
Chris Wilson | 4ef69c7 | 2010-09-09 15:14:28 +0100 | [diff] [blame] | 6122 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6123 | return index_mask; |
| 6124 | } |
| 6125 | |
Chris Wilson | 4d30244 | 2010-12-14 19:21:29 +0000 | [diff] [blame] | 6126 | static bool has_edp_a(struct drm_device *dev) |
| 6127 | { |
| 6128 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 6129 | |
| 6130 | if (!IS_MOBILE(dev)) |
| 6131 | return false; |
| 6132 | |
| 6133 | if ((I915_READ(DP_A) & DP_DETECTED) == 0) |
| 6134 | return false; |
| 6135 | |
| 6136 | if (IS_GEN5(dev) && |
| 6137 | (I915_READ(ILK_DISPLAY_CHICKEN_FUSES) & ILK_eDP_A_DISABLE)) |
| 6138 | return false; |
| 6139 | |
| 6140 | return true; |
| 6141 | } |
| 6142 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6143 | static void intel_setup_outputs(struct drm_device *dev) |
| 6144 | { |
Eric Anholt | 725e30a | 2009-01-22 13:01:02 -0800 | [diff] [blame] | 6145 | struct drm_i915_private *dev_priv = dev->dev_private; |
Chris Wilson | 4ef69c7 | 2010-09-09 15:14:28 +0100 | [diff] [blame] | 6146 | struct intel_encoder *encoder; |
Adam Jackson | cb0953d | 2010-07-16 14:46:29 -0400 | [diff] [blame] | 6147 | bool dpd_is_edp = false; |
Chris Wilson | f3cfcba | 2012-02-09 09:35:53 +0000 | [diff] [blame] | 6148 | bool has_lvds; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6149 | |
Chris Wilson | f3cfcba | 2012-02-09 09:35:53 +0000 | [diff] [blame] | 6150 | has_lvds = intel_lvds_init(dev); |
Chris Wilson | c5d1b51 | 2010-11-29 18:00:23 +0000 | [diff] [blame] | 6151 | if (!has_lvds && !HAS_PCH_SPLIT(dev)) { |
| 6152 | /* disable the panel fitter on everything but LVDS */ |
| 6153 | I915_WRITE(PFIT_CONTROL, 0); |
| 6154 | } |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6155 | |
Eric Anholt | bad720f | 2009-10-22 16:11:14 -0700 | [diff] [blame] | 6156 | if (HAS_PCH_SPLIT(dev)) { |
Adam Jackson | cb0953d | 2010-07-16 14:46:29 -0400 | [diff] [blame] | 6157 | dpd_is_edp = intel_dpd_is_edp(dev); |
Zhenyu Wang | 30ad48b | 2009-06-05 15:38:43 +0800 | [diff] [blame] | 6158 | |
Chris Wilson | 4d30244 | 2010-12-14 19:21:29 +0000 | [diff] [blame] | 6159 | if (has_edp_a(dev)) |
Zhenyu Wang | 32f9d65 | 2009-07-24 01:00:32 +0800 | [diff] [blame] | 6160 | intel_dp_init(dev, DP_A); |
| 6161 | |
Adam Jackson | cb0953d | 2010-07-16 14:46:29 -0400 | [diff] [blame] | 6162 | if (dpd_is_edp && (I915_READ(PCH_DP_D) & DP_DETECTED)) |
| 6163 | intel_dp_init(dev, PCH_DP_D); |
| 6164 | } |
| 6165 | |
| 6166 | intel_crt_init(dev); |
| 6167 | |
| 6168 | if (HAS_PCH_SPLIT(dev)) { |
| 6169 | int found; |
| 6170 | |
Zhenyu Wang | 30ad48b | 2009-06-05 15:38:43 +0800 | [diff] [blame] | 6171 | if (I915_READ(HDMIB) & PORT_DETECTED) { |
Zhao Yakui | 461ed3c | 2010-03-30 15:11:33 +0800 | [diff] [blame] | 6172 | /* PCH SDVOB multiplex with HDMIB */ |
Daniel Vetter | eef4eac | 2012-03-23 23:43:35 +0100 | [diff] [blame] | 6173 | found = intel_sdvo_init(dev, PCH_SDVOB, true); |
Zhenyu Wang | 30ad48b | 2009-06-05 15:38:43 +0800 | [diff] [blame] | 6174 | if (!found) |
| 6175 | intel_hdmi_init(dev, HDMIB); |
Zhenyu Wang | 5eb08b6 | 2009-07-24 01:00:31 +0800 | [diff] [blame] | 6176 | if (!found && (I915_READ(PCH_DP_B) & DP_DETECTED)) |
| 6177 | intel_dp_init(dev, PCH_DP_B); |
Zhenyu Wang | 30ad48b | 2009-06-05 15:38:43 +0800 | [diff] [blame] | 6178 | } |
| 6179 | |
| 6180 | if (I915_READ(HDMIC) & PORT_DETECTED) |
| 6181 | intel_hdmi_init(dev, HDMIC); |
| 6182 | |
| 6183 | if (I915_READ(HDMID) & PORT_DETECTED) |
| 6184 | intel_hdmi_init(dev, HDMID); |
| 6185 | |
Zhenyu Wang | 5eb08b6 | 2009-07-24 01:00:31 +0800 | [diff] [blame] | 6186 | if (I915_READ(PCH_DP_C) & DP_DETECTED) |
| 6187 | intel_dp_init(dev, PCH_DP_C); |
| 6188 | |
Adam Jackson | cb0953d | 2010-07-16 14:46:29 -0400 | [diff] [blame] | 6189 | if (!dpd_is_edp && (I915_READ(PCH_DP_D) & DP_DETECTED)) |
Zhenyu Wang | 5eb08b6 | 2009-07-24 01:00:31 +0800 | [diff] [blame] | 6190 | intel_dp_init(dev, PCH_DP_D); |
| 6191 | |
Zhenyu Wang | 103a196 | 2009-11-27 11:44:36 +0800 | [diff] [blame] | 6192 | } else if (SUPPORTS_DIGITAL_OUTPUTS(dev)) { |
Ma Ling | 27185ae | 2009-08-24 13:50:23 +0800 | [diff] [blame] | 6193 | bool found = false; |
Eric Anholt | 7d57382 | 2009-01-02 13:33:00 -0800 | [diff] [blame] | 6194 | |
Eric Anholt | 725e30a | 2009-01-22 13:01:02 -0800 | [diff] [blame] | 6195 | if (I915_READ(SDVOB) & SDVO_DETECTED) { |
Jesse Barnes | b01f2c3 | 2009-12-11 11:07:17 -0800 | [diff] [blame] | 6196 | DRM_DEBUG_KMS("probing SDVOB\n"); |
Daniel Vetter | eef4eac | 2012-03-23 23:43:35 +0100 | [diff] [blame] | 6197 | found = intel_sdvo_init(dev, SDVOB, true); |
Jesse Barnes | b01f2c3 | 2009-12-11 11:07:17 -0800 | [diff] [blame] | 6198 | if (!found && SUPPORTS_INTEGRATED_HDMI(dev)) { |
| 6199 | DRM_DEBUG_KMS("probing HDMI on SDVOB\n"); |
Eric Anholt | 725e30a | 2009-01-22 13:01:02 -0800 | [diff] [blame] | 6200 | intel_hdmi_init(dev, SDVOB); |
Jesse Barnes | b01f2c3 | 2009-12-11 11:07:17 -0800 | [diff] [blame] | 6201 | } |
Ma Ling | 27185ae | 2009-08-24 13:50:23 +0800 | [diff] [blame] | 6202 | |
Jesse Barnes | b01f2c3 | 2009-12-11 11:07:17 -0800 | [diff] [blame] | 6203 | if (!found && SUPPORTS_INTEGRATED_DP(dev)) { |
| 6204 | DRM_DEBUG_KMS("probing DP_B\n"); |
Keith Packard | a4fc5ed | 2009-04-07 16:16:42 -0700 | [diff] [blame] | 6205 | intel_dp_init(dev, DP_B); |
Jesse Barnes | b01f2c3 | 2009-12-11 11:07:17 -0800 | [diff] [blame] | 6206 | } |
Eric Anholt | 725e30a | 2009-01-22 13:01:02 -0800 | [diff] [blame] | 6207 | } |
Kristian Høgsberg | 13520b0 | 2009-03-13 15:42:14 -0400 | [diff] [blame] | 6208 | |
| 6209 | /* Before G4X SDVOC doesn't have its own detect register */ |
Kristian Høgsberg | 13520b0 | 2009-03-13 15:42:14 -0400 | [diff] [blame] | 6210 | |
Jesse Barnes | b01f2c3 | 2009-12-11 11:07:17 -0800 | [diff] [blame] | 6211 | if (I915_READ(SDVOB) & SDVO_DETECTED) { |
| 6212 | DRM_DEBUG_KMS("probing SDVOC\n"); |
Daniel Vetter | eef4eac | 2012-03-23 23:43:35 +0100 | [diff] [blame] | 6213 | found = intel_sdvo_init(dev, SDVOC, false); |
Jesse Barnes | b01f2c3 | 2009-12-11 11:07:17 -0800 | [diff] [blame] | 6214 | } |
Ma Ling | 27185ae | 2009-08-24 13:50:23 +0800 | [diff] [blame] | 6215 | |
| 6216 | if (!found && (I915_READ(SDVOC) & SDVO_DETECTED)) { |
| 6217 | |
Jesse Barnes | b01f2c3 | 2009-12-11 11:07:17 -0800 | [diff] [blame] | 6218 | if (SUPPORTS_INTEGRATED_HDMI(dev)) { |
| 6219 | DRM_DEBUG_KMS("probing HDMI on SDVOC\n"); |
Eric Anholt | 725e30a | 2009-01-22 13:01:02 -0800 | [diff] [blame] | 6220 | intel_hdmi_init(dev, SDVOC); |
Jesse Barnes | b01f2c3 | 2009-12-11 11:07:17 -0800 | [diff] [blame] | 6221 | } |
| 6222 | if (SUPPORTS_INTEGRATED_DP(dev)) { |
| 6223 | DRM_DEBUG_KMS("probing DP_C\n"); |
Keith Packard | a4fc5ed | 2009-04-07 16:16:42 -0700 | [diff] [blame] | 6224 | intel_dp_init(dev, DP_C); |
Jesse Barnes | b01f2c3 | 2009-12-11 11:07:17 -0800 | [diff] [blame] | 6225 | } |
Eric Anholt | 725e30a | 2009-01-22 13:01:02 -0800 | [diff] [blame] | 6226 | } |
Ma Ling | 27185ae | 2009-08-24 13:50:23 +0800 | [diff] [blame] | 6227 | |
Jesse Barnes | b01f2c3 | 2009-12-11 11:07:17 -0800 | [diff] [blame] | 6228 | if (SUPPORTS_INTEGRATED_DP(dev) && |
| 6229 | (I915_READ(DP_D) & DP_DETECTED)) { |
| 6230 | DRM_DEBUG_KMS("probing DP_D\n"); |
Keith Packard | a4fc5ed | 2009-04-07 16:16:42 -0700 | [diff] [blame] | 6231 | intel_dp_init(dev, DP_D); |
Jesse Barnes | b01f2c3 | 2009-12-11 11:07:17 -0800 | [diff] [blame] | 6232 | } |
Eric Anholt | bad720f | 2009-10-22 16:11:14 -0700 | [diff] [blame] | 6233 | } else if (IS_GEN2(dev)) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6234 | intel_dvo_init(dev); |
| 6235 | |
Zhenyu Wang | 103a196 | 2009-11-27 11:44:36 +0800 | [diff] [blame] | 6236 | if (SUPPORTS_TV(dev)) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6237 | intel_tv_init(dev); |
| 6238 | |
Chris Wilson | 4ef69c7 | 2010-09-09 15:14:28 +0100 | [diff] [blame] | 6239 | list_for_each_entry(encoder, &dev->mode_config.encoder_list, base.head) { |
| 6240 | encoder->base.possible_crtcs = encoder->crtc_mask; |
| 6241 | encoder->base.possible_clones = |
| 6242 | intel_encoder_clones(dev, encoder->clone_mask); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6243 | } |
Chris Wilson | 47356eb | 2011-01-11 17:06:04 +0000 | [diff] [blame] | 6244 | |
Chris Wilson | 2c7111d | 2011-03-29 10:40:27 +0100 | [diff] [blame] | 6245 | /* disable all the possible outputs/crtcs before entering KMS mode */ |
| 6246 | drm_helper_disable_unused_functions(dev); |
Keith Packard | 9fb526d | 2011-09-26 22:24:57 -0700 | [diff] [blame] | 6247 | |
| 6248 | if (HAS_PCH_SPLIT(dev)) |
| 6249 | ironlake_init_pch_refclk(dev); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6250 | } |
| 6251 | |
| 6252 | static void intel_user_framebuffer_destroy(struct drm_framebuffer *fb) |
| 6253 | { |
| 6254 | struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6255 | |
| 6256 | drm_framebuffer_cleanup(fb); |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 6257 | drm_gem_object_unreference_unlocked(&intel_fb->obj->base); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6258 | |
| 6259 | kfree(intel_fb); |
| 6260 | } |
| 6261 | |
| 6262 | static int intel_user_framebuffer_create_handle(struct drm_framebuffer *fb, |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 6263 | struct drm_file *file, |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6264 | unsigned int *handle) |
| 6265 | { |
| 6266 | struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb); |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 6267 | struct drm_i915_gem_object *obj = intel_fb->obj; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6268 | |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 6269 | return drm_gem_handle_create(file, &obj->base, handle); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6270 | } |
| 6271 | |
| 6272 | static const struct drm_framebuffer_funcs intel_fb_funcs = { |
| 6273 | .destroy = intel_user_framebuffer_destroy, |
| 6274 | .create_handle = intel_user_framebuffer_create_handle, |
| 6275 | }; |
| 6276 | |
Dave Airlie | 3865167 | 2010-03-30 05:34:13 +0000 | [diff] [blame] | 6277 | int intel_framebuffer_init(struct drm_device *dev, |
| 6278 | struct intel_framebuffer *intel_fb, |
Jesse Barnes | 308e5bc | 2011-11-14 14:51:28 -0800 | [diff] [blame] | 6279 | struct drm_mode_fb_cmd2 *mode_cmd, |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 6280 | struct drm_i915_gem_object *obj) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6281 | { |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6282 | int ret; |
| 6283 | |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 6284 | if (obj->tiling_mode == I915_TILING_Y) |
Chris Wilson | 57cd650 | 2010-08-08 12:34:44 +0100 | [diff] [blame] | 6285 | return -EINVAL; |
| 6286 | |
Jesse Barnes | 308e5bc | 2011-11-14 14:51:28 -0800 | [diff] [blame] | 6287 | if (mode_cmd->pitches[0] & 63) |
Chris Wilson | 57cd650 | 2010-08-08 12:34:44 +0100 | [diff] [blame] | 6288 | return -EINVAL; |
| 6289 | |
Jesse Barnes | 308e5bc | 2011-11-14 14:51:28 -0800 | [diff] [blame] | 6290 | switch (mode_cmd->pixel_format) { |
Ville Syrjälä | 04b3924 | 2011-11-17 18:05:13 +0200 | [diff] [blame] | 6291 | case DRM_FORMAT_RGB332: |
| 6292 | case DRM_FORMAT_RGB565: |
| 6293 | case DRM_FORMAT_XRGB8888: |
Jesse Barnes | b250da7 | 2012-03-07 08:49:29 -0800 | [diff] [blame] | 6294 | case DRM_FORMAT_XBGR8888: |
Ville Syrjälä | 04b3924 | 2011-11-17 18:05:13 +0200 | [diff] [blame] | 6295 | case DRM_FORMAT_ARGB8888: |
| 6296 | case DRM_FORMAT_XRGB2101010: |
| 6297 | case DRM_FORMAT_ARGB2101010: |
Jesse Barnes | 308e5bc | 2011-11-14 14:51:28 -0800 | [diff] [blame] | 6298 | /* RGB formats are common across chipsets */ |
Jesse Barnes | b562674 | 2011-06-24 12:19:27 -0700 | [diff] [blame] | 6299 | break; |
Ville Syrjälä | 04b3924 | 2011-11-17 18:05:13 +0200 | [diff] [blame] | 6300 | case DRM_FORMAT_YUYV: |
| 6301 | case DRM_FORMAT_UYVY: |
| 6302 | case DRM_FORMAT_YVYU: |
| 6303 | case DRM_FORMAT_VYUY: |
Chris Wilson | 57cd650 | 2010-08-08 12:34:44 +0100 | [diff] [blame] | 6304 | break; |
| 6305 | default: |
Eugeni Dodonov | aca2584 | 2012-01-17 15:25:45 -0200 | [diff] [blame] | 6306 | DRM_DEBUG_KMS("unsupported pixel format %u\n", |
| 6307 | mode_cmd->pixel_format); |
Chris Wilson | 57cd650 | 2010-08-08 12:34:44 +0100 | [diff] [blame] | 6308 | return -EINVAL; |
| 6309 | } |
| 6310 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6311 | ret = drm_framebuffer_init(dev, &intel_fb->base, &intel_fb_funcs); |
| 6312 | if (ret) { |
| 6313 | DRM_ERROR("framebuffer init failed %d\n", ret); |
| 6314 | return ret; |
| 6315 | } |
| 6316 | |
| 6317 | drm_helper_mode_fill_fb_struct(&intel_fb->base, mode_cmd); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6318 | intel_fb->obj = obj; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6319 | return 0; |
| 6320 | } |
| 6321 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6322 | static struct drm_framebuffer * |
| 6323 | intel_user_framebuffer_create(struct drm_device *dev, |
| 6324 | struct drm_file *filp, |
Jesse Barnes | 308e5bc | 2011-11-14 14:51:28 -0800 | [diff] [blame] | 6325 | struct drm_mode_fb_cmd2 *mode_cmd) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6326 | { |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 6327 | struct drm_i915_gem_object *obj; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6328 | |
Jesse Barnes | 308e5bc | 2011-11-14 14:51:28 -0800 | [diff] [blame] | 6329 | obj = to_intel_bo(drm_gem_object_lookup(dev, filp, |
| 6330 | mode_cmd->handles[0])); |
Chris Wilson | c872522 | 2011-02-19 11:31:06 +0000 | [diff] [blame] | 6331 | if (&obj->base == NULL) |
Chris Wilson | cce13ff | 2010-08-08 13:36:38 +0100 | [diff] [blame] | 6332 | return ERR_PTR(-ENOENT); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6333 | |
Chris Wilson | d2dff87 | 2011-04-19 08:36:26 +0100 | [diff] [blame] | 6334 | return intel_framebuffer_create(dev, mode_cmd, obj); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6335 | } |
| 6336 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6337 | static const struct drm_mode_config_funcs intel_mode_funcs = { |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6338 | .fb_create = intel_user_framebuffer_create, |
Dave Airlie | eb1f8e4 | 2010-05-07 06:42:51 +0000 | [diff] [blame] | 6339 | .output_poll_changed = intel_fb_output_poll_changed, |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6340 | }; |
| 6341 | |
Jesse Barnes | e70236a | 2009-09-21 10:42:27 -0700 | [diff] [blame] | 6342 | /* Set up chip specific display functions */ |
| 6343 | static void intel_init_display(struct drm_device *dev) |
| 6344 | { |
| 6345 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 6346 | |
| 6347 | /* We always want a DPMS function */ |
Eric Anholt | f564048e | 2011-03-30 13:01:02 -0700 | [diff] [blame] | 6348 | if (HAS_PCH_SPLIT(dev)) { |
Adam Jackson | f2b115e | 2009-12-03 17:14:42 -0500 | [diff] [blame] | 6349 | dev_priv->display.dpms = ironlake_crtc_dpms; |
Eric Anholt | f564048e | 2011-03-30 13:01:02 -0700 | [diff] [blame] | 6350 | dev_priv->display.crtc_mode_set = ironlake_crtc_mode_set; |
Jesse Barnes | 17638cd | 2011-06-24 12:19:23 -0700 | [diff] [blame] | 6351 | dev_priv->display.update_plane = ironlake_update_plane; |
Eric Anholt | f564048e | 2011-03-30 13:01:02 -0700 | [diff] [blame] | 6352 | } else { |
Jesse Barnes | e70236a | 2009-09-21 10:42:27 -0700 | [diff] [blame] | 6353 | dev_priv->display.dpms = i9xx_crtc_dpms; |
Eric Anholt | f564048e | 2011-03-30 13:01:02 -0700 | [diff] [blame] | 6354 | dev_priv->display.crtc_mode_set = i9xx_crtc_mode_set; |
Jesse Barnes | 17638cd | 2011-06-24 12:19:23 -0700 | [diff] [blame] | 6355 | dev_priv->display.update_plane = i9xx_update_plane; |
Eric Anholt | f564048e | 2011-03-30 13:01:02 -0700 | [diff] [blame] | 6356 | } |
Jesse Barnes | e70236a | 2009-09-21 10:42:27 -0700 | [diff] [blame] | 6357 | |
Jesse Barnes | e70236a | 2009-09-21 10:42:27 -0700 | [diff] [blame] | 6358 | /* Returns the core display clock speed */ |
Jesse Barnes | 25eb05fc | 2012-03-28 13:39:23 -0700 | [diff] [blame] | 6359 | if (IS_VALLEYVIEW(dev)) |
| 6360 | dev_priv->display.get_display_clock_speed = |
| 6361 | valleyview_get_display_clock_speed; |
| 6362 | else if (IS_I945G(dev) || (IS_G33(dev) && !IS_PINEVIEW_M(dev))) |
Jesse Barnes | e70236a | 2009-09-21 10:42:27 -0700 | [diff] [blame] | 6363 | dev_priv->display.get_display_clock_speed = |
| 6364 | i945_get_display_clock_speed; |
| 6365 | else if (IS_I915G(dev)) |
| 6366 | dev_priv->display.get_display_clock_speed = |
| 6367 | i915_get_display_clock_speed; |
Adam Jackson | f2b115e | 2009-12-03 17:14:42 -0500 | [diff] [blame] | 6368 | else if (IS_I945GM(dev) || IS_845G(dev) || IS_PINEVIEW_M(dev)) |
Jesse Barnes | e70236a | 2009-09-21 10:42:27 -0700 | [diff] [blame] | 6369 | dev_priv->display.get_display_clock_speed = |
| 6370 | i9xx_misc_get_display_clock_speed; |
| 6371 | else if (IS_I915GM(dev)) |
| 6372 | dev_priv->display.get_display_clock_speed = |
| 6373 | i915gm_get_display_clock_speed; |
| 6374 | else if (IS_I865G(dev)) |
| 6375 | dev_priv->display.get_display_clock_speed = |
| 6376 | i865_get_display_clock_speed; |
Daniel Vetter | f0f8a9c | 2009-09-15 22:57:33 +0200 | [diff] [blame] | 6377 | else if (IS_I85X(dev)) |
Jesse Barnes | e70236a | 2009-09-21 10:42:27 -0700 | [diff] [blame] | 6378 | dev_priv->display.get_display_clock_speed = |
| 6379 | i855_get_display_clock_speed; |
| 6380 | else /* 852, 830 */ |
| 6381 | dev_priv->display.get_display_clock_speed = |
| 6382 | i830_get_display_clock_speed; |
| 6383 | |
Zhenyu Wang | 7f8a856 | 2010-04-01 13:07:53 +0800 | [diff] [blame] | 6384 | if (HAS_PCH_SPLIT(dev)) { |
Chris Wilson | f00a3dd | 2010-10-21 14:57:17 +0100 | [diff] [blame] | 6385 | if (IS_GEN5(dev)) { |
Jesse Barnes | 674cf96 | 2011-04-28 14:27:04 -0700 | [diff] [blame] | 6386 | dev_priv->display.fdi_link_train = ironlake_fdi_link_train; |
Wu Fengguang | e0dac65 | 2011-09-05 14:25:34 +0800 | [diff] [blame] | 6387 | dev_priv->display.write_eld = ironlake_write_eld; |
Yuanhan Liu | 1398261 | 2010-12-15 15:42:31 +0800 | [diff] [blame] | 6388 | } else if (IS_GEN6(dev)) { |
Jesse Barnes | 674cf96 | 2011-04-28 14:27:04 -0700 | [diff] [blame] | 6389 | dev_priv->display.fdi_link_train = gen6_fdi_link_train; |
Wu Fengguang | e0dac65 | 2011-09-05 14:25:34 +0800 | [diff] [blame] | 6390 | dev_priv->display.write_eld = ironlake_write_eld; |
Jesse Barnes | 357555c | 2011-04-28 15:09:55 -0700 | [diff] [blame] | 6391 | } else if (IS_IVYBRIDGE(dev)) { |
| 6392 | /* FIXME: detect B0+ stepping and use auto training */ |
| 6393 | dev_priv->display.fdi_link_train = ivb_manual_fdi_link_train; |
Wu Fengguang | e0dac65 | 2011-09-05 14:25:34 +0800 | [diff] [blame] | 6394 | dev_priv->display.write_eld = ironlake_write_eld; |
Zhenyu Wang | 7f8a856 | 2010-04-01 13:07:53 +0800 | [diff] [blame] | 6395 | } else |
| 6396 | dev_priv->display.update_wm = NULL; |
Jesse Barnes | ceb0424 | 2012-03-28 13:39:22 -0700 | [diff] [blame] | 6397 | } else if (IS_VALLEYVIEW(dev)) { |
Jesse Barnes | 575155a | 2012-03-28 13:39:37 -0700 | [diff] [blame] | 6398 | dev_priv->display.force_wake_get = vlv_force_wake_get; |
| 6399 | dev_priv->display.force_wake_put = vlv_force_wake_put; |
Jesse Barnes | 6067aae | 2011-04-28 15:04:31 -0700 | [diff] [blame] | 6400 | } else if (IS_G4X(dev)) { |
Wu Fengguang | e0dac65 | 2011-09-05 14:25:34 +0800 | [diff] [blame] | 6401 | dev_priv->display.write_eld = g4x_write_eld; |
Jesse Barnes | e70236a | 2009-09-21 10:42:27 -0700 | [diff] [blame] | 6402 | } |
Jesse Barnes | 8c9f3aa | 2011-06-16 09:19:13 -0700 | [diff] [blame] | 6403 | |
| 6404 | /* Default just returns -ENODEV to indicate unsupported */ |
| 6405 | dev_priv->display.queue_flip = intel_default_queue_flip; |
| 6406 | |
| 6407 | switch (INTEL_INFO(dev)->gen) { |
| 6408 | case 2: |
| 6409 | dev_priv->display.queue_flip = intel_gen2_queue_flip; |
| 6410 | break; |
| 6411 | |
| 6412 | case 3: |
| 6413 | dev_priv->display.queue_flip = intel_gen3_queue_flip; |
| 6414 | break; |
| 6415 | |
| 6416 | case 4: |
| 6417 | case 5: |
| 6418 | dev_priv->display.queue_flip = intel_gen4_queue_flip; |
| 6419 | break; |
| 6420 | |
| 6421 | case 6: |
| 6422 | dev_priv->display.queue_flip = intel_gen6_queue_flip; |
| 6423 | break; |
Jesse Barnes | 7c9017e | 2011-06-16 12:18:54 -0700 | [diff] [blame] | 6424 | case 7: |
| 6425 | dev_priv->display.queue_flip = intel_gen7_queue_flip; |
| 6426 | break; |
Jesse Barnes | 8c9f3aa | 2011-06-16 09:19:13 -0700 | [diff] [blame] | 6427 | } |
Jesse Barnes | e70236a | 2009-09-21 10:42:27 -0700 | [diff] [blame] | 6428 | } |
| 6429 | |
Jesse Barnes | b690e96 | 2010-07-19 13:53:12 -0700 | [diff] [blame] | 6430 | /* |
| 6431 | * Some BIOSes insist on assuming the GPU's pipe A is enabled at suspend, |
| 6432 | * resume, or other times. This quirk makes sure that's the case for |
| 6433 | * affected systems. |
| 6434 | */ |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 6435 | static void quirk_pipea_force(struct drm_device *dev) |
Jesse Barnes | b690e96 | 2010-07-19 13:53:12 -0700 | [diff] [blame] | 6436 | { |
| 6437 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 6438 | |
| 6439 | dev_priv->quirks |= QUIRK_PIPEA_FORCE; |
Daniel Vetter | bc0daf4 | 2012-04-01 13:16:49 +0200 | [diff] [blame] | 6440 | DRM_INFO("applying pipe a force quirk\n"); |
Jesse Barnes | b690e96 | 2010-07-19 13:53:12 -0700 | [diff] [blame] | 6441 | } |
| 6442 | |
Keith Packard | 435793d | 2011-07-12 14:56:22 -0700 | [diff] [blame] | 6443 | /* |
| 6444 | * Some machines (Lenovo U160) do not work with SSC on LVDS for some reason |
| 6445 | */ |
| 6446 | static void quirk_ssc_force_disable(struct drm_device *dev) |
| 6447 | { |
| 6448 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 6449 | dev_priv->quirks |= QUIRK_LVDS_SSC_DISABLE; |
Daniel Vetter | bc0daf4 | 2012-04-01 13:16:49 +0200 | [diff] [blame] | 6450 | DRM_INFO("applying lvds SSC disable quirk\n"); |
Keith Packard | 435793d | 2011-07-12 14:56:22 -0700 | [diff] [blame] | 6451 | } |
| 6452 | |
Carsten Emde | 4dca20e | 2012-03-15 15:56:26 +0100 | [diff] [blame] | 6453 | /* |
Carsten Emde | 5a15ab5 | 2012-03-15 15:56:27 +0100 | [diff] [blame] | 6454 | * A machine (e.g. Acer Aspire 5734Z) may need to invert the panel backlight |
| 6455 | * brightness value |
Carsten Emde | 4dca20e | 2012-03-15 15:56:26 +0100 | [diff] [blame] | 6456 | */ |
| 6457 | static void quirk_invert_brightness(struct drm_device *dev) |
| 6458 | { |
| 6459 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 6460 | dev_priv->quirks |= QUIRK_INVERT_BRIGHTNESS; |
Daniel Vetter | bc0daf4 | 2012-04-01 13:16:49 +0200 | [diff] [blame] | 6461 | DRM_INFO("applying inverted panel brightness quirk\n"); |
Jesse Barnes | b690e96 | 2010-07-19 13:53:12 -0700 | [diff] [blame] | 6462 | } |
| 6463 | |
| 6464 | struct intel_quirk { |
| 6465 | int device; |
| 6466 | int subsystem_vendor; |
| 6467 | int subsystem_device; |
| 6468 | void (*hook)(struct drm_device *dev); |
| 6469 | }; |
| 6470 | |
Ben Widawsky | c43b563 | 2012-04-16 14:07:40 -0700 | [diff] [blame] | 6471 | static struct intel_quirk intel_quirks[] = { |
Jesse Barnes | b690e96 | 2010-07-19 13:53:12 -0700 | [diff] [blame] | 6472 | /* HP Mini needs pipe A force quirk (LP: #322104) */ |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 6473 | { 0x27ae, 0x103c, 0x361a, quirk_pipea_force }, |
Jesse Barnes | b690e96 | 2010-07-19 13:53:12 -0700 | [diff] [blame] | 6474 | |
| 6475 | /* Thinkpad R31 needs pipe A force quirk */ |
| 6476 | { 0x3577, 0x1014, 0x0505, quirk_pipea_force }, |
| 6477 | /* Toshiba Protege R-205, S-209 needs pipe A force quirk */ |
| 6478 | { 0x2592, 0x1179, 0x0001, quirk_pipea_force }, |
| 6479 | |
| 6480 | /* ThinkPad X30 needs pipe A force quirk (LP: #304614) */ |
| 6481 | { 0x3577, 0x1014, 0x0513, quirk_pipea_force }, |
| 6482 | /* ThinkPad X40 needs pipe A force quirk */ |
| 6483 | |
| 6484 | /* ThinkPad T60 needs pipe A force quirk (bug #16494) */ |
| 6485 | { 0x2782, 0x17aa, 0x201a, quirk_pipea_force }, |
| 6486 | |
| 6487 | /* 855 & before need to leave pipe A & dpll A up */ |
| 6488 | { 0x3582, PCI_ANY_ID, PCI_ANY_ID, quirk_pipea_force }, |
| 6489 | { 0x2562, PCI_ANY_ID, PCI_ANY_ID, quirk_pipea_force }, |
Keith Packard | 435793d | 2011-07-12 14:56:22 -0700 | [diff] [blame] | 6490 | |
| 6491 | /* Lenovo U160 cannot use SSC on LVDS */ |
| 6492 | { 0x0046, 0x17aa, 0x3920, quirk_ssc_force_disable }, |
Michel Alexandre Salim | 070d329 | 2011-07-28 18:52:06 +0200 | [diff] [blame] | 6493 | |
| 6494 | /* Sony Vaio Y cannot use SSC on LVDS */ |
| 6495 | { 0x0046, 0x104d, 0x9076, quirk_ssc_force_disable }, |
Carsten Emde | 5a15ab5 | 2012-03-15 15:56:27 +0100 | [diff] [blame] | 6496 | |
| 6497 | /* Acer Aspire 5734Z must invert backlight brightness */ |
| 6498 | { 0x2a42, 0x1025, 0x0459, quirk_invert_brightness }, |
Jesse Barnes | b690e96 | 2010-07-19 13:53:12 -0700 | [diff] [blame] | 6499 | }; |
| 6500 | |
| 6501 | static void intel_init_quirks(struct drm_device *dev) |
| 6502 | { |
| 6503 | struct pci_dev *d = dev->pdev; |
| 6504 | int i; |
| 6505 | |
| 6506 | for (i = 0; i < ARRAY_SIZE(intel_quirks); i++) { |
| 6507 | struct intel_quirk *q = &intel_quirks[i]; |
| 6508 | |
| 6509 | if (d->device == q->device && |
| 6510 | (d->subsystem_vendor == q->subsystem_vendor || |
| 6511 | q->subsystem_vendor == PCI_ANY_ID) && |
| 6512 | (d->subsystem_device == q->subsystem_device || |
| 6513 | q->subsystem_device == PCI_ANY_ID)) |
| 6514 | q->hook(dev); |
| 6515 | } |
| 6516 | } |
| 6517 | |
Jesse Barnes | 9cce37f | 2010-08-13 15:11:26 -0700 | [diff] [blame] | 6518 | /* Disable the VGA plane that we never use */ |
| 6519 | static void i915_disable_vga(struct drm_device *dev) |
| 6520 | { |
| 6521 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 6522 | u8 sr1; |
| 6523 | u32 vga_reg; |
| 6524 | |
| 6525 | if (HAS_PCH_SPLIT(dev)) |
| 6526 | vga_reg = CPU_VGACNTRL; |
| 6527 | else |
| 6528 | vga_reg = VGACNTRL; |
| 6529 | |
| 6530 | vga_get_uninterruptible(dev->pdev, VGA_RSRC_LEGACY_IO); |
Jesse Barnes | 3fdcf43 | 2012-04-06 11:46:27 -0700 | [diff] [blame] | 6531 | outb(SR01, VGA_SR_INDEX); |
Jesse Barnes | 9cce37f | 2010-08-13 15:11:26 -0700 | [diff] [blame] | 6532 | sr1 = inb(VGA_SR_DATA); |
| 6533 | outb(sr1 | 1<<5, VGA_SR_DATA); |
| 6534 | vga_put(dev->pdev, VGA_RSRC_LEGACY_IO); |
| 6535 | udelay(300); |
| 6536 | |
| 6537 | I915_WRITE(vga_reg, VGA_DISP_DISABLE); |
| 6538 | POSTING_READ(vga_reg); |
| 6539 | } |
| 6540 | |
Jesse Barnes | f82cfb6 | 2012-04-11 09:23:35 -0700 | [diff] [blame] | 6541 | static void ivb_pch_pwm_override(struct drm_device *dev) |
| 6542 | { |
| 6543 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 6544 | |
| 6545 | /* |
| 6546 | * IVB has CPU eDP backlight regs too, set things up to let the |
| 6547 | * PCH regs control the backlight |
| 6548 | */ |
| 6549 | I915_WRITE(BLC_PWM_CPU_CTL2, PWM_ENABLE); |
| 6550 | I915_WRITE(BLC_PWM_CPU_CTL, 0); |
| 6551 | I915_WRITE(BLC_PWM_PCH_CTL1, PWM_ENABLE | (1<<30)); |
| 6552 | } |
| 6553 | |
Daniel Vetter | f817586 | 2012-04-10 15:50:11 +0200 | [diff] [blame] | 6554 | void intel_modeset_init_hw(struct drm_device *dev) |
| 6555 | { |
| 6556 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 6557 | |
| 6558 | intel_init_clock_gating(dev); |
| 6559 | |
| 6560 | if (IS_IRONLAKE_M(dev)) { |
| 6561 | ironlake_enable_drps(dev); |
| 6562 | intel_init_emon(dev); |
| 6563 | } |
| 6564 | |
Jesse Barnes | b6834bd | 2012-04-11 09:23:33 -0700 | [diff] [blame] | 6565 | if ((IS_GEN6(dev) || IS_GEN7(dev)) && !IS_VALLEYVIEW(dev)) { |
Daniel Vetter | f817586 | 2012-04-10 15:50:11 +0200 | [diff] [blame] | 6566 | gen6_enable_rps(dev_priv); |
| 6567 | gen6_update_ring_freq(dev_priv); |
| 6568 | } |
Jesse Barnes | f82cfb6 | 2012-04-11 09:23:35 -0700 | [diff] [blame] | 6569 | |
| 6570 | if (IS_IVYBRIDGE(dev)) |
| 6571 | ivb_pch_pwm_override(dev); |
Daniel Vetter | f817586 | 2012-04-10 15:50:11 +0200 | [diff] [blame] | 6572 | } |
| 6573 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6574 | void intel_modeset_init(struct drm_device *dev) |
| 6575 | { |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 6576 | struct drm_i915_private *dev_priv = dev->dev_private; |
Jesse Barnes | b840d907f | 2011-12-13 13:19:38 -0800 | [diff] [blame] | 6577 | int i, ret; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6578 | |
| 6579 | drm_mode_config_init(dev); |
| 6580 | |
| 6581 | dev->mode_config.min_width = 0; |
| 6582 | dev->mode_config.min_height = 0; |
| 6583 | |
Dave Airlie | 019d96c | 2011-09-29 16:20:42 +0100 | [diff] [blame] | 6584 | dev->mode_config.preferred_depth = 24; |
| 6585 | dev->mode_config.prefer_shadow = 1; |
| 6586 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6587 | dev->mode_config.funcs = (void *)&intel_mode_funcs; |
| 6588 | |
Jesse Barnes | b690e96 | 2010-07-19 13:53:12 -0700 | [diff] [blame] | 6589 | intel_init_quirks(dev); |
| 6590 | |
Eugeni Dodonov | 1fa6110 | 2012-04-18 15:29:26 -0300 | [diff] [blame] | 6591 | intel_init_pm(dev); |
| 6592 | |
Jesse Barnes | e70236a | 2009-09-21 10:42:27 -0700 | [diff] [blame] | 6593 | intel_init_display(dev); |
| 6594 | |
Chris Wilson | a6c45cf | 2010-09-17 00:32:17 +0100 | [diff] [blame] | 6595 | if (IS_GEN2(dev)) { |
| 6596 | dev->mode_config.max_width = 2048; |
| 6597 | dev->mode_config.max_height = 2048; |
| 6598 | } else if (IS_GEN3(dev)) { |
Keith Packard | 5e4d6fa | 2009-07-12 23:53:17 -0700 | [diff] [blame] | 6599 | dev->mode_config.max_width = 4096; |
| 6600 | dev->mode_config.max_height = 4096; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6601 | } else { |
Chris Wilson | a6c45cf | 2010-09-17 00:32:17 +0100 | [diff] [blame] | 6602 | dev->mode_config.max_width = 8192; |
| 6603 | dev->mode_config.max_height = 8192; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6604 | } |
Chris Wilson | 35c3047 | 2010-12-22 14:07:12 +0000 | [diff] [blame] | 6605 | dev->mode_config.fb_base = dev->agp->base; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6606 | |
Zhao Yakui | 28c9773 | 2009-10-09 11:39:41 +0800 | [diff] [blame] | 6607 | DRM_DEBUG_KMS("%d display pipe%s available.\n", |
Dave Airlie | a3524f1 | 2010-06-06 18:59:41 +1000 | [diff] [blame] | 6608 | dev_priv->num_pipe, dev_priv->num_pipe > 1 ? "s" : ""); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6609 | |
Dave Airlie | a3524f1 | 2010-06-06 18:59:41 +1000 | [diff] [blame] | 6610 | for (i = 0; i < dev_priv->num_pipe; i++) { |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6611 | intel_crtc_init(dev, i); |
Jesse Barnes | 00c2064b | 2012-01-13 15:48:39 -0800 | [diff] [blame] | 6612 | ret = intel_plane_init(dev, i); |
| 6613 | if (ret) |
| 6614 | DRM_DEBUG_KMS("plane %d init failed: %d\n", i, ret); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6615 | } |
| 6616 | |
Jesse Barnes | 9cce37f | 2010-08-13 15:11:26 -0700 | [diff] [blame] | 6617 | /* Just disable it once at startup */ |
| 6618 | i915_disable_vga(dev); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6619 | intel_setup_outputs(dev); |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 6620 | |
Daniel Vetter | f817586 | 2012-04-10 15:50:11 +0200 | [diff] [blame] | 6621 | intel_modeset_init_hw(dev); |
Jesse Barnes | 3b8d8d9 | 2010-12-17 14:19:02 -0800 | [diff] [blame] | 6622 | |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 6623 | INIT_WORK(&dev_priv->idle_work, intel_idle_update); |
| 6624 | setup_timer(&dev_priv->idle_timer, intel_gpu_idle_timer, |
| 6625 | (unsigned long)dev); |
Chris Wilson | 2c7111d | 2011-03-29 10:40:27 +0100 | [diff] [blame] | 6626 | } |
| 6627 | |
| 6628 | void intel_modeset_gem_init(struct drm_device *dev) |
| 6629 | { |
| 6630 | if (IS_IRONLAKE_M(dev)) |
| 6631 | ironlake_enable_rc6(dev); |
Daniel Vetter | 02e792f | 2009-09-15 22:57:34 +0200 | [diff] [blame] | 6632 | |
| 6633 | intel_setup_overlay(dev); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6634 | } |
| 6635 | |
| 6636 | void intel_modeset_cleanup(struct drm_device *dev) |
| 6637 | { |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 6638 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 6639 | struct drm_crtc *crtc; |
| 6640 | struct intel_crtc *intel_crtc; |
| 6641 | |
Keith Packard | f87ea76 | 2010-10-03 19:36:26 -0700 | [diff] [blame] | 6642 | drm_kms_helper_poll_fini(dev); |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 6643 | mutex_lock(&dev->struct_mutex); |
| 6644 | |
Jesse Barnes | 723bfd7 | 2010-10-07 16:01:13 -0700 | [diff] [blame] | 6645 | intel_unregister_dsm_handler(); |
| 6646 | |
| 6647 | |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 6648 | list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) { |
| 6649 | /* Skip inactive CRTCs */ |
| 6650 | if (!crtc->fb) |
| 6651 | continue; |
| 6652 | |
| 6653 | intel_crtc = to_intel_crtc(crtc); |
Daniel Vetter | 3dec009 | 2010-08-20 21:40:52 +0200 | [diff] [blame] | 6654 | intel_increase_pllclock(crtc); |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 6655 | } |
| 6656 | |
Chris Wilson | 973d04f | 2011-07-08 12:22:37 +0100 | [diff] [blame] | 6657 | intel_disable_fbc(dev); |
Jesse Barnes | e70236a | 2009-09-21 10:42:27 -0700 | [diff] [blame] | 6658 | |
Jesse Barnes | f97108d | 2010-01-29 11:27:07 -0800 | [diff] [blame] | 6659 | if (IS_IRONLAKE_M(dev)) |
| 6660 | ironlake_disable_drps(dev); |
Jesse Barnes | b6834bd | 2012-04-11 09:23:33 -0700 | [diff] [blame] | 6661 | if ((IS_GEN6(dev) || IS_GEN7(dev)) && !IS_VALLEYVIEW(dev)) |
Jesse Barnes | 3b8d8d9 | 2010-12-17 14:19:02 -0800 | [diff] [blame] | 6662 | gen6_disable_rps(dev); |
Jesse Barnes | f97108d | 2010-01-29 11:27:07 -0800 | [diff] [blame] | 6663 | |
Jesse Barnes | d5bb081 | 2011-01-05 12:01:26 -0800 | [diff] [blame] | 6664 | if (IS_IRONLAKE_M(dev)) |
| 6665 | ironlake_disable_rc6(dev); |
Chris Wilson | 0cdab21 | 2010-12-05 17:27:06 +0000 | [diff] [blame] | 6666 | |
Jesse Barnes | 57f350b | 2012-03-28 13:39:25 -0700 | [diff] [blame] | 6667 | if (IS_VALLEYVIEW(dev)) |
| 6668 | vlv_init_dpio(dev); |
| 6669 | |
Kristian Høgsberg | 69341a5 | 2009-11-11 12:19:17 -0500 | [diff] [blame] | 6670 | mutex_unlock(&dev->struct_mutex); |
| 6671 | |
Daniel Vetter | 6c0d9350 | 2010-08-20 18:26:46 +0200 | [diff] [blame] | 6672 | /* Disable the irq before mode object teardown, for the irq might |
| 6673 | * enqueue unpin/hotplug work. */ |
| 6674 | drm_irq_uninstall(dev); |
| 6675 | cancel_work_sync(&dev_priv->hotplug_work); |
Daniel Vetter | 6fdd4d9 | 2011-09-08 14:00:22 +0200 | [diff] [blame] | 6676 | cancel_work_sync(&dev_priv->rps_work); |
Daniel Vetter | 6c0d9350 | 2010-08-20 18:26:46 +0200 | [diff] [blame] | 6677 | |
Chris Wilson | 1630fe7 | 2011-07-08 12:22:42 +0100 | [diff] [blame] | 6678 | /* flush any delayed tasks or pending work */ |
| 6679 | flush_scheduled_work(); |
| 6680 | |
Daniel Vetter | 3dec009 | 2010-08-20 21:40:52 +0200 | [diff] [blame] | 6681 | /* Shut off idle work before the crtcs get freed. */ |
| 6682 | list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) { |
| 6683 | intel_crtc = to_intel_crtc(crtc); |
| 6684 | del_timer_sync(&intel_crtc->idle_timer); |
| 6685 | } |
| 6686 | del_timer_sync(&dev_priv->idle_timer); |
| 6687 | cancel_work_sync(&dev_priv->idle_work); |
| 6688 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6689 | drm_mode_config_cleanup(dev); |
| 6690 | } |
| 6691 | |
Dave Airlie | 28d5204 | 2009-09-21 14:33:58 +1000 | [diff] [blame] | 6692 | /* |
Zhenyu Wang | f1c79df | 2010-03-30 14:39:29 +0800 | [diff] [blame] | 6693 | * Return which encoder is currently attached for connector. |
| 6694 | */ |
Chris Wilson | df0e924 | 2010-09-09 16:20:55 +0100 | [diff] [blame] | 6695 | struct drm_encoder *intel_best_encoder(struct drm_connector *connector) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6696 | { |
Chris Wilson | df0e924 | 2010-09-09 16:20:55 +0100 | [diff] [blame] | 6697 | return &intel_attached_encoder(connector)->base; |
| 6698 | } |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6699 | |
Chris Wilson | df0e924 | 2010-09-09 16:20:55 +0100 | [diff] [blame] | 6700 | void intel_connector_attach_encoder(struct intel_connector *connector, |
| 6701 | struct intel_encoder *encoder) |
| 6702 | { |
| 6703 | connector->encoder = encoder; |
| 6704 | drm_mode_connector_attach_encoder(&connector->base, |
| 6705 | &encoder->base); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6706 | } |
Dave Airlie | 28d5204 | 2009-09-21 14:33:58 +1000 | [diff] [blame] | 6707 | |
| 6708 | /* |
| 6709 | * set vga decode state - true == enable VGA decode |
| 6710 | */ |
| 6711 | int intel_modeset_vga_set_state(struct drm_device *dev, bool state) |
| 6712 | { |
| 6713 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 6714 | u16 gmch_ctrl; |
| 6715 | |
| 6716 | pci_read_config_word(dev_priv->bridge_dev, INTEL_GMCH_CTRL, &gmch_ctrl); |
| 6717 | if (state) |
| 6718 | gmch_ctrl &= ~INTEL_GMCH_VGA_DISABLE; |
| 6719 | else |
| 6720 | gmch_ctrl |= INTEL_GMCH_VGA_DISABLE; |
| 6721 | pci_write_config_word(dev_priv->bridge_dev, INTEL_GMCH_CTRL, gmch_ctrl); |
| 6722 | return 0; |
| 6723 | } |
Chris Wilson | c4a1d9e | 2010-11-21 13:12:35 +0000 | [diff] [blame] | 6724 | |
| 6725 | #ifdef CONFIG_DEBUG_FS |
| 6726 | #include <linux/seq_file.h> |
| 6727 | |
| 6728 | struct intel_display_error_state { |
| 6729 | struct intel_cursor_error_state { |
| 6730 | u32 control; |
| 6731 | u32 position; |
| 6732 | u32 base; |
| 6733 | u32 size; |
| 6734 | } cursor[2]; |
| 6735 | |
| 6736 | struct intel_pipe_error_state { |
| 6737 | u32 conf; |
| 6738 | u32 source; |
| 6739 | |
| 6740 | u32 htotal; |
| 6741 | u32 hblank; |
| 6742 | u32 hsync; |
| 6743 | u32 vtotal; |
| 6744 | u32 vblank; |
| 6745 | u32 vsync; |
| 6746 | } pipe[2]; |
| 6747 | |
| 6748 | struct intel_plane_error_state { |
| 6749 | u32 control; |
| 6750 | u32 stride; |
| 6751 | u32 size; |
| 6752 | u32 pos; |
| 6753 | u32 addr; |
| 6754 | u32 surface; |
| 6755 | u32 tile_offset; |
| 6756 | } plane[2]; |
| 6757 | }; |
| 6758 | |
| 6759 | struct intel_display_error_state * |
| 6760 | intel_display_capture_error_state(struct drm_device *dev) |
| 6761 | { |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 6762 | drm_i915_private_t *dev_priv = dev->dev_private; |
Chris Wilson | c4a1d9e | 2010-11-21 13:12:35 +0000 | [diff] [blame] | 6763 | struct intel_display_error_state *error; |
| 6764 | int i; |
| 6765 | |
| 6766 | error = kmalloc(sizeof(*error), GFP_ATOMIC); |
| 6767 | if (error == NULL) |
| 6768 | return NULL; |
| 6769 | |
| 6770 | for (i = 0; i < 2; i++) { |
| 6771 | error->cursor[i].control = I915_READ(CURCNTR(i)); |
| 6772 | error->cursor[i].position = I915_READ(CURPOS(i)); |
| 6773 | error->cursor[i].base = I915_READ(CURBASE(i)); |
| 6774 | |
| 6775 | error->plane[i].control = I915_READ(DSPCNTR(i)); |
| 6776 | error->plane[i].stride = I915_READ(DSPSTRIDE(i)); |
| 6777 | error->plane[i].size = I915_READ(DSPSIZE(i)); |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 6778 | error->plane[i].pos = I915_READ(DSPPOS(i)); |
Chris Wilson | c4a1d9e | 2010-11-21 13:12:35 +0000 | [diff] [blame] | 6779 | error->plane[i].addr = I915_READ(DSPADDR(i)); |
| 6780 | if (INTEL_INFO(dev)->gen >= 4) { |
| 6781 | error->plane[i].surface = I915_READ(DSPSURF(i)); |
| 6782 | error->plane[i].tile_offset = I915_READ(DSPTILEOFF(i)); |
| 6783 | } |
| 6784 | |
| 6785 | error->pipe[i].conf = I915_READ(PIPECONF(i)); |
| 6786 | error->pipe[i].source = I915_READ(PIPESRC(i)); |
| 6787 | error->pipe[i].htotal = I915_READ(HTOTAL(i)); |
| 6788 | error->pipe[i].hblank = I915_READ(HBLANK(i)); |
| 6789 | error->pipe[i].hsync = I915_READ(HSYNC(i)); |
| 6790 | error->pipe[i].vtotal = I915_READ(VTOTAL(i)); |
| 6791 | error->pipe[i].vblank = I915_READ(VBLANK(i)); |
| 6792 | error->pipe[i].vsync = I915_READ(VSYNC(i)); |
| 6793 | } |
| 6794 | |
| 6795 | return error; |
| 6796 | } |
| 6797 | |
| 6798 | void |
| 6799 | intel_display_print_error_state(struct seq_file *m, |
| 6800 | struct drm_device *dev, |
| 6801 | struct intel_display_error_state *error) |
| 6802 | { |
| 6803 | int i; |
| 6804 | |
| 6805 | for (i = 0; i < 2; i++) { |
| 6806 | seq_printf(m, "Pipe [%d]:\n", i); |
| 6807 | seq_printf(m, " CONF: %08x\n", error->pipe[i].conf); |
| 6808 | seq_printf(m, " SRC: %08x\n", error->pipe[i].source); |
| 6809 | seq_printf(m, " HTOTAL: %08x\n", error->pipe[i].htotal); |
| 6810 | seq_printf(m, " HBLANK: %08x\n", error->pipe[i].hblank); |
| 6811 | seq_printf(m, " HSYNC: %08x\n", error->pipe[i].hsync); |
| 6812 | seq_printf(m, " VTOTAL: %08x\n", error->pipe[i].vtotal); |
| 6813 | seq_printf(m, " VBLANK: %08x\n", error->pipe[i].vblank); |
| 6814 | seq_printf(m, " VSYNC: %08x\n", error->pipe[i].vsync); |
| 6815 | |
| 6816 | seq_printf(m, "Plane [%d]:\n", i); |
| 6817 | seq_printf(m, " CNTR: %08x\n", error->plane[i].control); |
| 6818 | seq_printf(m, " STRIDE: %08x\n", error->plane[i].stride); |
| 6819 | seq_printf(m, " SIZE: %08x\n", error->plane[i].size); |
| 6820 | seq_printf(m, " POS: %08x\n", error->plane[i].pos); |
| 6821 | seq_printf(m, " ADDR: %08x\n", error->plane[i].addr); |
| 6822 | if (INTEL_INFO(dev)->gen >= 4) { |
| 6823 | seq_printf(m, " SURF: %08x\n", error->plane[i].surface); |
| 6824 | seq_printf(m, " TILEOFF: %08x\n", error->plane[i].tile_offset); |
| 6825 | } |
| 6826 | |
| 6827 | seq_printf(m, "Cursor [%d]:\n", i); |
| 6828 | seq_printf(m, " CNTR: %08x\n", error->cursor[i].control); |
| 6829 | seq_printf(m, " POS: %08x\n", error->cursor[i].position); |
| 6830 | seq_printf(m, " BASE: %08x\n", error->cursor[i].base); |
| 6831 | } |
| 6832 | } |
| 6833 | #endif |