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, |
Jesse Barnes | ee7b9f9 | 2012-04-20 17:11:53 +0100 | [diff] [blame^] | 914 | struct intel_crtc *intel_crtc, bool state) |
Jesse Barnes | 040484a | 2011-01-03 12:14:26 -0800 | [diff] [blame] | 915 | { |
| 916 | int reg; |
| 917 | u32 val; |
| 918 | bool cur_state; |
| 919 | |
Jesse Barnes | ee7b9f9 | 2012-04-20 17:11:53 +0100 | [diff] [blame^] | 920 | if (!intel_crtc->pch_pll) { |
| 921 | WARN(1, "asserting PCH PLL enabled with no PLL\n"); |
| 922 | return; |
| 923 | } |
| 924 | |
Jesse Barnes | d3ccbe8 | 2011-10-12 09:27:42 -0700 | [diff] [blame] | 925 | if (HAS_PCH_CPT(dev_priv->dev)) { |
| 926 | u32 pch_dpll; |
| 927 | |
| 928 | pch_dpll = I915_READ(PCH_DPLL_SEL); |
| 929 | |
| 930 | /* Make sure the selected PLL is enabled to the transcoder */ |
Jesse Barnes | ee7b9f9 | 2012-04-20 17:11:53 +0100 | [diff] [blame^] | 931 | WARN(!((pch_dpll >> (4 * intel_crtc->pipe)) & 8), |
| 932 | "transcoder %d PLL not enabled\n", intel_crtc->pipe); |
Jesse Barnes | d3ccbe8 | 2011-10-12 09:27:42 -0700 | [diff] [blame] | 933 | } |
| 934 | |
Jesse Barnes | ee7b9f9 | 2012-04-20 17:11:53 +0100 | [diff] [blame^] | 935 | reg = intel_crtc->pch_pll->pll_reg; |
Jesse Barnes | 040484a | 2011-01-03 12:14:26 -0800 | [diff] [blame] | 936 | val = I915_READ(reg); |
| 937 | cur_state = !!(val & DPLL_VCO_ENABLE); |
| 938 | WARN(cur_state != state, |
| 939 | "PCH PLL state assertion failure (expected %s, current %s)\n", |
| 940 | state_string(state), state_string(cur_state)); |
| 941 | } |
| 942 | #define assert_pch_pll_enabled(d, p) assert_pch_pll(d, p, true) |
| 943 | #define assert_pch_pll_disabled(d, p) assert_pch_pll(d, p, false) |
| 944 | |
| 945 | static void assert_fdi_tx(struct drm_i915_private *dev_priv, |
| 946 | enum pipe pipe, bool state) |
| 947 | { |
| 948 | int reg; |
| 949 | u32 val; |
| 950 | bool cur_state; |
| 951 | |
| 952 | reg = FDI_TX_CTL(pipe); |
| 953 | val = I915_READ(reg); |
| 954 | cur_state = !!(val & FDI_TX_ENABLE); |
| 955 | WARN(cur_state != state, |
| 956 | "FDI TX state assertion failure (expected %s, current %s)\n", |
| 957 | state_string(state), state_string(cur_state)); |
| 958 | } |
| 959 | #define assert_fdi_tx_enabled(d, p) assert_fdi_tx(d, p, true) |
| 960 | #define assert_fdi_tx_disabled(d, p) assert_fdi_tx(d, p, false) |
| 961 | |
| 962 | static void assert_fdi_rx(struct drm_i915_private *dev_priv, |
| 963 | enum pipe pipe, bool state) |
| 964 | { |
| 965 | int reg; |
| 966 | u32 val; |
| 967 | bool cur_state; |
| 968 | |
| 969 | reg = FDI_RX_CTL(pipe); |
| 970 | val = I915_READ(reg); |
| 971 | cur_state = !!(val & FDI_RX_ENABLE); |
| 972 | WARN(cur_state != state, |
| 973 | "FDI RX state assertion failure (expected %s, current %s)\n", |
| 974 | state_string(state), state_string(cur_state)); |
| 975 | } |
| 976 | #define assert_fdi_rx_enabled(d, p) assert_fdi_rx(d, p, true) |
| 977 | #define assert_fdi_rx_disabled(d, p) assert_fdi_rx(d, p, false) |
| 978 | |
| 979 | static void assert_fdi_tx_pll_enabled(struct drm_i915_private *dev_priv, |
| 980 | enum pipe pipe) |
| 981 | { |
| 982 | int reg; |
| 983 | u32 val; |
| 984 | |
| 985 | /* ILK FDI PLL is always enabled */ |
| 986 | if (dev_priv->info->gen == 5) |
| 987 | return; |
| 988 | |
| 989 | reg = FDI_TX_CTL(pipe); |
| 990 | val = I915_READ(reg); |
| 991 | WARN(!(val & FDI_TX_PLL_ENABLE), "FDI TX PLL assertion failure, should be active but is disabled\n"); |
| 992 | } |
| 993 | |
| 994 | static void assert_fdi_rx_pll_enabled(struct drm_i915_private *dev_priv, |
| 995 | enum pipe pipe) |
| 996 | { |
| 997 | int reg; |
| 998 | u32 val; |
| 999 | |
| 1000 | reg = FDI_RX_CTL(pipe); |
| 1001 | val = I915_READ(reg); |
| 1002 | WARN(!(val & FDI_RX_PLL_ENABLE), "FDI RX PLL assertion failure, should be active but is disabled\n"); |
| 1003 | } |
| 1004 | |
Jesse Barnes | ea0760c | 2011-01-04 15:09:32 -0800 | [diff] [blame] | 1005 | static void assert_panel_unlocked(struct drm_i915_private *dev_priv, |
| 1006 | enum pipe pipe) |
| 1007 | { |
| 1008 | int pp_reg, lvds_reg; |
| 1009 | u32 val; |
| 1010 | enum pipe panel_pipe = PIPE_A; |
Thomas Jarosch | 0de3b48 | 2011-08-25 15:37:45 +0200 | [diff] [blame] | 1011 | bool locked = true; |
Jesse Barnes | ea0760c | 2011-01-04 15:09:32 -0800 | [diff] [blame] | 1012 | |
| 1013 | if (HAS_PCH_SPLIT(dev_priv->dev)) { |
| 1014 | pp_reg = PCH_PP_CONTROL; |
| 1015 | lvds_reg = PCH_LVDS; |
| 1016 | } else { |
| 1017 | pp_reg = PP_CONTROL; |
| 1018 | lvds_reg = LVDS; |
| 1019 | } |
| 1020 | |
| 1021 | val = I915_READ(pp_reg); |
| 1022 | if (!(val & PANEL_POWER_ON) || |
| 1023 | ((val & PANEL_UNLOCK_REGS) == PANEL_UNLOCK_REGS)) |
| 1024 | locked = false; |
| 1025 | |
| 1026 | if (I915_READ(lvds_reg) & LVDS_PIPEB_SELECT) |
| 1027 | panel_pipe = PIPE_B; |
| 1028 | |
| 1029 | WARN(panel_pipe == pipe && locked, |
| 1030 | "panel assertion failure, pipe %c regs locked\n", |
Jesse Barnes | 9db4a9c | 2011-02-07 12:26:52 -0800 | [diff] [blame] | 1031 | pipe_name(pipe)); |
Jesse Barnes | ea0760c | 2011-01-04 15:09:32 -0800 | [diff] [blame] | 1032 | } |
| 1033 | |
Jesse Barnes | b840d907f | 2011-12-13 13:19:38 -0800 | [diff] [blame] | 1034 | void assert_pipe(struct drm_i915_private *dev_priv, |
| 1035 | enum pipe pipe, bool state) |
Jesse Barnes | b24e717 | 2011-01-04 15:09:30 -0800 | [diff] [blame] | 1036 | { |
| 1037 | int reg; |
| 1038 | u32 val; |
Jesse Barnes | 63d7bbe | 2011-01-04 15:09:33 -0800 | [diff] [blame] | 1039 | bool cur_state; |
Jesse Barnes | b24e717 | 2011-01-04 15:09:30 -0800 | [diff] [blame] | 1040 | |
Daniel Vetter | 8e63678 | 2012-01-22 01:36:48 +0100 | [diff] [blame] | 1041 | /* if we need the pipe A quirk it must be always on */ |
| 1042 | if (pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) |
| 1043 | state = true; |
| 1044 | |
Jesse Barnes | b24e717 | 2011-01-04 15:09:30 -0800 | [diff] [blame] | 1045 | reg = PIPECONF(pipe); |
| 1046 | val = I915_READ(reg); |
Jesse Barnes | 63d7bbe | 2011-01-04 15:09:33 -0800 | [diff] [blame] | 1047 | cur_state = !!(val & PIPECONF_ENABLE); |
| 1048 | WARN(cur_state != state, |
| 1049 | "pipe %c assertion failure (expected %s, current %s)\n", |
Jesse Barnes | 9db4a9c | 2011-02-07 12:26:52 -0800 | [diff] [blame] | 1050 | pipe_name(pipe), state_string(state), state_string(cur_state)); |
Jesse Barnes | b24e717 | 2011-01-04 15:09:30 -0800 | [diff] [blame] | 1051 | } |
| 1052 | |
Chris Wilson | 931872f | 2012-01-16 23:01:13 +0000 | [diff] [blame] | 1053 | static void assert_plane(struct drm_i915_private *dev_priv, |
| 1054 | enum plane plane, bool state) |
Jesse Barnes | b24e717 | 2011-01-04 15:09:30 -0800 | [diff] [blame] | 1055 | { |
| 1056 | int reg; |
| 1057 | u32 val; |
Chris Wilson | 931872f | 2012-01-16 23:01:13 +0000 | [diff] [blame] | 1058 | bool cur_state; |
Jesse Barnes | b24e717 | 2011-01-04 15:09:30 -0800 | [diff] [blame] | 1059 | |
| 1060 | reg = DSPCNTR(plane); |
| 1061 | val = I915_READ(reg); |
Chris Wilson | 931872f | 2012-01-16 23:01:13 +0000 | [diff] [blame] | 1062 | cur_state = !!(val & DISPLAY_PLANE_ENABLE); |
| 1063 | WARN(cur_state != state, |
| 1064 | "plane %c assertion failure (expected %s, current %s)\n", |
| 1065 | plane_name(plane), state_string(state), state_string(cur_state)); |
Jesse Barnes | b24e717 | 2011-01-04 15:09:30 -0800 | [diff] [blame] | 1066 | } |
| 1067 | |
Chris Wilson | 931872f | 2012-01-16 23:01:13 +0000 | [diff] [blame] | 1068 | #define assert_plane_enabled(d, p) assert_plane(d, p, true) |
| 1069 | #define assert_plane_disabled(d, p) assert_plane(d, p, false) |
| 1070 | |
Jesse Barnes | b24e717 | 2011-01-04 15:09:30 -0800 | [diff] [blame] | 1071 | static void assert_planes_disabled(struct drm_i915_private *dev_priv, |
| 1072 | enum pipe pipe) |
| 1073 | { |
| 1074 | int reg, i; |
| 1075 | u32 val; |
| 1076 | int cur_pipe; |
| 1077 | |
Jesse Barnes | 19ec135 | 2011-02-02 12:28:02 -0800 | [diff] [blame] | 1078 | /* Planes are fixed to pipes on ILK+ */ |
Adam Jackson | 28c05794 | 2011-10-07 14:38:42 -0400 | [diff] [blame] | 1079 | if (HAS_PCH_SPLIT(dev_priv->dev)) { |
| 1080 | reg = DSPCNTR(pipe); |
| 1081 | val = I915_READ(reg); |
| 1082 | WARN((val & DISPLAY_PLANE_ENABLE), |
| 1083 | "plane %c assertion failure, should be disabled but not\n", |
| 1084 | plane_name(pipe)); |
Jesse Barnes | 19ec135 | 2011-02-02 12:28:02 -0800 | [diff] [blame] | 1085 | return; |
Adam Jackson | 28c05794 | 2011-10-07 14:38:42 -0400 | [diff] [blame] | 1086 | } |
Jesse Barnes | 19ec135 | 2011-02-02 12:28:02 -0800 | [diff] [blame] | 1087 | |
Jesse Barnes | b24e717 | 2011-01-04 15:09:30 -0800 | [diff] [blame] | 1088 | /* Need to check both planes against the pipe */ |
| 1089 | for (i = 0; i < 2; i++) { |
| 1090 | reg = DSPCNTR(i); |
| 1091 | val = I915_READ(reg); |
| 1092 | cur_pipe = (val & DISPPLANE_SEL_PIPE_MASK) >> |
| 1093 | DISPPLANE_SEL_PIPE_SHIFT; |
| 1094 | WARN((val & DISPLAY_PLANE_ENABLE) && pipe == cur_pipe, |
Jesse Barnes | 9db4a9c | 2011-02-07 12:26:52 -0800 | [diff] [blame] | 1095 | "plane %c assertion failure, should be off on pipe %c but is still active\n", |
| 1096 | plane_name(i), pipe_name(pipe)); |
Jesse Barnes | b24e717 | 2011-01-04 15:09:30 -0800 | [diff] [blame] | 1097 | } |
| 1098 | } |
| 1099 | |
Jesse Barnes | 92f2584 | 2011-01-04 15:09:34 -0800 | [diff] [blame] | 1100 | static void assert_pch_refclk_enabled(struct drm_i915_private *dev_priv) |
| 1101 | { |
| 1102 | u32 val; |
| 1103 | bool enabled; |
| 1104 | |
| 1105 | val = I915_READ(PCH_DREF_CONTROL); |
| 1106 | enabled = !!(val & (DREF_SSC_SOURCE_MASK | DREF_NONSPREAD_SOURCE_MASK | |
| 1107 | DREF_SUPERSPREAD_SOURCE_MASK)); |
| 1108 | WARN(!enabled, "PCH refclk assertion failure, should be active but is disabled\n"); |
| 1109 | } |
| 1110 | |
| 1111 | static void assert_transcoder_disabled(struct drm_i915_private *dev_priv, |
| 1112 | enum pipe pipe) |
| 1113 | { |
| 1114 | int reg; |
| 1115 | u32 val; |
| 1116 | bool enabled; |
| 1117 | |
| 1118 | reg = TRANSCONF(pipe); |
| 1119 | val = I915_READ(reg); |
| 1120 | enabled = !!(val & TRANS_ENABLE); |
Jesse Barnes | 9db4a9c | 2011-02-07 12:26:52 -0800 | [diff] [blame] | 1121 | WARN(enabled, |
| 1122 | "transcoder assertion failed, should be off on pipe %c but is still active\n", |
| 1123 | pipe_name(pipe)); |
Jesse Barnes | 92f2584 | 2011-01-04 15:09:34 -0800 | [diff] [blame] | 1124 | } |
| 1125 | |
Keith Packard | 4e63438 | 2011-08-06 10:39:45 -0700 | [diff] [blame] | 1126 | static bool dp_pipe_enabled(struct drm_i915_private *dev_priv, |
| 1127 | enum pipe pipe, u32 port_sel, u32 val) |
Keith Packard | f0575e9 | 2011-07-25 22:12:43 -0700 | [diff] [blame] | 1128 | { |
| 1129 | if ((val & DP_PORT_EN) == 0) |
| 1130 | return false; |
| 1131 | |
| 1132 | if (HAS_PCH_CPT(dev_priv->dev)) { |
| 1133 | u32 trans_dp_ctl_reg = TRANS_DP_CTL(pipe); |
| 1134 | u32 trans_dp_ctl = I915_READ(trans_dp_ctl_reg); |
| 1135 | if ((trans_dp_ctl & TRANS_DP_PORT_SEL_MASK) != port_sel) |
| 1136 | return false; |
| 1137 | } else { |
| 1138 | if ((val & DP_PIPE_MASK) != (pipe << 30)) |
| 1139 | return false; |
| 1140 | } |
| 1141 | return true; |
| 1142 | } |
| 1143 | |
Keith Packard | 1519b99 | 2011-08-06 10:35:34 -0700 | [diff] [blame] | 1144 | static bool hdmi_pipe_enabled(struct drm_i915_private *dev_priv, |
| 1145 | enum pipe pipe, u32 val) |
| 1146 | { |
| 1147 | if ((val & PORT_ENABLE) == 0) |
| 1148 | return false; |
| 1149 | |
| 1150 | if (HAS_PCH_CPT(dev_priv->dev)) { |
| 1151 | if ((val & PORT_TRANS_SEL_MASK) != PORT_TRANS_SEL_CPT(pipe)) |
| 1152 | return false; |
| 1153 | } else { |
| 1154 | if ((val & TRANSCODER_MASK) != TRANSCODER(pipe)) |
| 1155 | return false; |
| 1156 | } |
| 1157 | return true; |
| 1158 | } |
| 1159 | |
| 1160 | static bool lvds_pipe_enabled(struct drm_i915_private *dev_priv, |
| 1161 | enum pipe pipe, u32 val) |
| 1162 | { |
| 1163 | if ((val & LVDS_PORT_EN) == 0) |
| 1164 | return false; |
| 1165 | |
| 1166 | if (HAS_PCH_CPT(dev_priv->dev)) { |
| 1167 | if ((val & PORT_TRANS_SEL_MASK) != PORT_TRANS_SEL_CPT(pipe)) |
| 1168 | return false; |
| 1169 | } else { |
| 1170 | if ((val & LVDS_PIPE_MASK) != LVDS_PIPE(pipe)) |
| 1171 | return false; |
| 1172 | } |
| 1173 | return true; |
| 1174 | } |
| 1175 | |
| 1176 | static bool adpa_pipe_enabled(struct drm_i915_private *dev_priv, |
| 1177 | enum pipe pipe, u32 val) |
| 1178 | { |
| 1179 | if ((val & ADPA_DAC_ENABLE) == 0) |
| 1180 | return false; |
| 1181 | if (HAS_PCH_CPT(dev_priv->dev)) { |
| 1182 | if ((val & PORT_TRANS_SEL_MASK) != PORT_TRANS_SEL_CPT(pipe)) |
| 1183 | return false; |
| 1184 | } else { |
| 1185 | if ((val & ADPA_PIPE_SELECT_MASK) != ADPA_PIPE_SELECT(pipe)) |
| 1186 | return false; |
| 1187 | } |
| 1188 | return true; |
| 1189 | } |
| 1190 | |
Jesse Barnes | 291906f | 2011-02-02 12:28:03 -0800 | [diff] [blame] | 1191 | static void assert_pch_dp_disabled(struct drm_i915_private *dev_priv, |
Keith Packard | f0575e9 | 2011-07-25 22:12:43 -0700 | [diff] [blame] | 1192 | enum pipe pipe, int reg, u32 port_sel) |
Jesse Barnes | 291906f | 2011-02-02 12:28:03 -0800 | [diff] [blame] | 1193 | { |
Jesse Barnes | 47a05ec | 2011-02-07 13:46:40 -0800 | [diff] [blame] | 1194 | u32 val = I915_READ(reg); |
Keith Packard | 4e63438 | 2011-08-06 10:39:45 -0700 | [diff] [blame] | 1195 | WARN(dp_pipe_enabled(dev_priv, pipe, port_sel, val), |
Jesse Barnes | 291906f | 2011-02-02 12:28:03 -0800 | [diff] [blame] | 1196 | "PCH DP (0x%08x) enabled on transcoder %c, should be disabled\n", |
Jesse Barnes | 9db4a9c | 2011-02-07 12:26:52 -0800 | [diff] [blame] | 1197 | reg, pipe_name(pipe)); |
Jesse Barnes | 291906f | 2011-02-02 12:28:03 -0800 | [diff] [blame] | 1198 | } |
| 1199 | |
| 1200 | static void assert_pch_hdmi_disabled(struct drm_i915_private *dev_priv, |
| 1201 | enum pipe pipe, int reg) |
| 1202 | { |
Jesse Barnes | 47a05ec | 2011-02-07 13:46:40 -0800 | [diff] [blame] | 1203 | u32 val = I915_READ(reg); |
Keith Packard | 1519b99 | 2011-08-06 10:35:34 -0700 | [diff] [blame] | 1204 | WARN(hdmi_pipe_enabled(dev_priv, val, pipe), |
Adam Jackson | 23c99e7 | 2011-10-07 14:38:43 -0400 | [diff] [blame] | 1205 | "PCH HDMI (0x%08x) enabled on transcoder %c, should be disabled\n", |
Jesse Barnes | 9db4a9c | 2011-02-07 12:26:52 -0800 | [diff] [blame] | 1206 | reg, pipe_name(pipe)); |
Jesse Barnes | 291906f | 2011-02-02 12:28:03 -0800 | [diff] [blame] | 1207 | } |
| 1208 | |
| 1209 | static void assert_pch_ports_disabled(struct drm_i915_private *dev_priv, |
| 1210 | enum pipe pipe) |
| 1211 | { |
| 1212 | int reg; |
| 1213 | u32 val; |
Jesse Barnes | 291906f | 2011-02-02 12:28:03 -0800 | [diff] [blame] | 1214 | |
Keith Packard | f0575e9 | 2011-07-25 22:12:43 -0700 | [diff] [blame] | 1215 | assert_pch_dp_disabled(dev_priv, pipe, PCH_DP_B, TRANS_DP_PORT_SEL_B); |
| 1216 | assert_pch_dp_disabled(dev_priv, pipe, PCH_DP_C, TRANS_DP_PORT_SEL_C); |
| 1217 | 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] | 1218 | |
| 1219 | reg = PCH_ADPA; |
| 1220 | val = I915_READ(reg); |
Keith Packard | 1519b99 | 2011-08-06 10:35:34 -0700 | [diff] [blame] | 1221 | WARN(adpa_pipe_enabled(dev_priv, val, pipe), |
Jesse Barnes | 291906f | 2011-02-02 12:28:03 -0800 | [diff] [blame] | 1222 | "PCH VGA enabled on transcoder %c, should be disabled\n", |
Jesse Barnes | 9db4a9c | 2011-02-07 12:26:52 -0800 | [diff] [blame] | 1223 | pipe_name(pipe)); |
Jesse Barnes | 291906f | 2011-02-02 12:28:03 -0800 | [diff] [blame] | 1224 | |
| 1225 | reg = PCH_LVDS; |
| 1226 | val = I915_READ(reg); |
Keith Packard | 1519b99 | 2011-08-06 10:35:34 -0700 | [diff] [blame] | 1227 | WARN(lvds_pipe_enabled(dev_priv, val, pipe), |
Jesse Barnes | 291906f | 2011-02-02 12:28:03 -0800 | [diff] [blame] | 1228 | "PCH LVDS enabled on transcoder %c, should be disabled\n", |
Jesse Barnes | 9db4a9c | 2011-02-07 12:26:52 -0800 | [diff] [blame] | 1229 | pipe_name(pipe)); |
Jesse Barnes | 291906f | 2011-02-02 12:28:03 -0800 | [diff] [blame] | 1230 | |
| 1231 | assert_pch_hdmi_disabled(dev_priv, pipe, HDMIB); |
| 1232 | assert_pch_hdmi_disabled(dev_priv, pipe, HDMIC); |
| 1233 | assert_pch_hdmi_disabled(dev_priv, pipe, HDMID); |
| 1234 | } |
| 1235 | |
Jesse Barnes | b24e717 | 2011-01-04 15:09:30 -0800 | [diff] [blame] | 1236 | /** |
Jesse Barnes | 63d7bbe | 2011-01-04 15:09:33 -0800 | [diff] [blame] | 1237 | * intel_enable_pll - enable a PLL |
| 1238 | * @dev_priv: i915 private structure |
| 1239 | * @pipe: pipe PLL to enable |
| 1240 | * |
| 1241 | * Enable @pipe's PLL so we can start pumping pixels from a plane. Check to |
| 1242 | * make sure the PLL reg is writable first though, since the panel write |
| 1243 | * protect mechanism may be enabled. |
| 1244 | * |
| 1245 | * Note! This is for pre-ILK only. |
| 1246 | */ |
| 1247 | static void intel_enable_pll(struct drm_i915_private *dev_priv, enum pipe pipe) |
| 1248 | { |
| 1249 | int reg; |
| 1250 | u32 val; |
| 1251 | |
| 1252 | /* No really, not for ILK+ */ |
| 1253 | BUG_ON(dev_priv->info->gen >= 5); |
| 1254 | |
| 1255 | /* PLL is protected by panel, make sure we can write it */ |
| 1256 | if (IS_MOBILE(dev_priv->dev) && !IS_I830(dev_priv->dev)) |
| 1257 | assert_panel_unlocked(dev_priv, pipe); |
| 1258 | |
| 1259 | reg = DPLL(pipe); |
| 1260 | val = I915_READ(reg); |
| 1261 | val |= DPLL_VCO_ENABLE; |
| 1262 | |
| 1263 | /* We do this three times for luck */ |
| 1264 | I915_WRITE(reg, val); |
| 1265 | POSTING_READ(reg); |
| 1266 | udelay(150); /* wait for warmup */ |
| 1267 | I915_WRITE(reg, val); |
| 1268 | POSTING_READ(reg); |
| 1269 | udelay(150); /* wait for warmup */ |
| 1270 | I915_WRITE(reg, val); |
| 1271 | POSTING_READ(reg); |
| 1272 | udelay(150); /* wait for warmup */ |
| 1273 | } |
| 1274 | |
| 1275 | /** |
| 1276 | * intel_disable_pll - disable a PLL |
| 1277 | * @dev_priv: i915 private structure |
| 1278 | * @pipe: pipe PLL to disable |
| 1279 | * |
| 1280 | * Disable the PLL for @pipe, making sure the pipe is off first. |
| 1281 | * |
| 1282 | * Note! This is for pre-ILK only. |
| 1283 | */ |
| 1284 | static void intel_disable_pll(struct drm_i915_private *dev_priv, enum pipe pipe) |
| 1285 | { |
| 1286 | int reg; |
| 1287 | u32 val; |
| 1288 | |
| 1289 | /* Don't disable pipe A or pipe A PLLs if needed */ |
| 1290 | if (pipe == PIPE_A && (dev_priv->quirks & QUIRK_PIPEA_FORCE)) |
| 1291 | return; |
| 1292 | |
| 1293 | /* Make sure the pipe isn't still relying on us */ |
| 1294 | assert_pipe_disabled(dev_priv, pipe); |
| 1295 | |
| 1296 | reg = DPLL(pipe); |
| 1297 | val = I915_READ(reg); |
| 1298 | val &= ~DPLL_VCO_ENABLE; |
| 1299 | I915_WRITE(reg, val); |
| 1300 | POSTING_READ(reg); |
| 1301 | } |
| 1302 | |
| 1303 | /** |
Jesse Barnes | 92f2584 | 2011-01-04 15:09:34 -0800 | [diff] [blame] | 1304 | * intel_enable_pch_pll - enable PCH PLL |
| 1305 | * @dev_priv: i915 private structure |
| 1306 | * @pipe: pipe PLL to enable |
| 1307 | * |
| 1308 | * The PCH PLL needs to be enabled before the PCH transcoder, since it |
| 1309 | * drives the transcoder clock. |
| 1310 | */ |
Jesse Barnes | ee7b9f9 | 2012-04-20 17:11:53 +0100 | [diff] [blame^] | 1311 | static void intel_enable_pch_pll(struct intel_crtc *intel_crtc) |
Jesse Barnes | 92f2584 | 2011-01-04 15:09:34 -0800 | [diff] [blame] | 1312 | { |
Jesse Barnes | ee7b9f9 | 2012-04-20 17:11:53 +0100 | [diff] [blame^] | 1313 | struct drm_i915_private *dev_priv = intel_crtc->base.dev->dev_private; |
| 1314 | struct intel_pch_pll *pll = intel_crtc->pch_pll; |
Jesse Barnes | 92f2584 | 2011-01-04 15:09:34 -0800 | [diff] [blame] | 1315 | int reg; |
| 1316 | u32 val; |
| 1317 | |
| 1318 | /* PCH only available on ILK+ */ |
| 1319 | BUG_ON(dev_priv->info->gen < 5); |
Jesse Barnes | ee7b9f9 | 2012-04-20 17:11:53 +0100 | [diff] [blame^] | 1320 | BUG_ON(pll == NULL); |
| 1321 | BUG_ON(pll->refcount == 0); |
| 1322 | |
| 1323 | DRM_DEBUG_KMS("enable PCH PLL %x (active %d, on? %d)for crtc %d\n", |
| 1324 | pll->pll_reg, pll->active, pll->on, |
| 1325 | intel_crtc->base.base.id); |
Jesse Barnes | 92f2584 | 2011-01-04 15:09:34 -0800 | [diff] [blame] | 1326 | |
| 1327 | /* PCH refclock must be enabled first */ |
| 1328 | assert_pch_refclk_enabled(dev_priv); |
| 1329 | |
Jesse Barnes | ee7b9f9 | 2012-04-20 17:11:53 +0100 | [diff] [blame^] | 1330 | if (pll->active++ && pll->on) { |
| 1331 | assert_pch_pll_enabled(dev_priv, intel_crtc); |
| 1332 | return; |
| 1333 | } |
| 1334 | |
| 1335 | DRM_DEBUG_KMS("enabling PCH PLL %x\n", pll->pll_reg); |
| 1336 | |
| 1337 | reg = pll->pll_reg; |
Jesse Barnes | 92f2584 | 2011-01-04 15:09:34 -0800 | [diff] [blame] | 1338 | val = I915_READ(reg); |
| 1339 | val |= DPLL_VCO_ENABLE; |
| 1340 | I915_WRITE(reg, val); |
| 1341 | POSTING_READ(reg); |
| 1342 | udelay(200); |
Jesse Barnes | ee7b9f9 | 2012-04-20 17:11:53 +0100 | [diff] [blame^] | 1343 | |
| 1344 | pll->on = true; |
Jesse Barnes | 92f2584 | 2011-01-04 15:09:34 -0800 | [diff] [blame] | 1345 | } |
| 1346 | |
Jesse Barnes | ee7b9f9 | 2012-04-20 17:11:53 +0100 | [diff] [blame^] | 1347 | static void intel_disable_pch_pll(struct intel_crtc *intel_crtc) |
Jesse Barnes | 92f2584 | 2011-01-04 15:09:34 -0800 | [diff] [blame] | 1348 | { |
Jesse Barnes | ee7b9f9 | 2012-04-20 17:11:53 +0100 | [diff] [blame^] | 1349 | struct drm_i915_private *dev_priv = intel_crtc->base.dev->dev_private; |
| 1350 | struct intel_pch_pll *pll = intel_crtc->pch_pll; |
Jesse Barnes | 92f2584 | 2011-01-04 15:09:34 -0800 | [diff] [blame] | 1351 | int reg; |
Jesse Barnes | ee7b9f9 | 2012-04-20 17:11:53 +0100 | [diff] [blame^] | 1352 | u32 val; |
Jesse Barnes | 4c609cb | 2011-09-02 12:52:11 -0700 | [diff] [blame] | 1353 | |
Jesse Barnes | 92f2584 | 2011-01-04 15:09:34 -0800 | [diff] [blame] | 1354 | /* PCH only available on ILK+ */ |
| 1355 | BUG_ON(dev_priv->info->gen < 5); |
Jesse Barnes | ee7b9f9 | 2012-04-20 17:11:53 +0100 | [diff] [blame^] | 1356 | if (pll == NULL) |
| 1357 | return; |
| 1358 | |
| 1359 | BUG_ON(pll->refcount == 0); |
| 1360 | |
| 1361 | DRM_DEBUG_KMS("disable PCH PLL %x (active %d, on? %d) for crtc %d\n", |
| 1362 | pll->pll_reg, pll->active, pll->on, |
| 1363 | intel_crtc->base.base.id); |
| 1364 | |
| 1365 | BUG_ON(pll->active == 0); |
| 1366 | if (--pll->active) { |
| 1367 | assert_pch_pll_enabled(dev_priv, intel_crtc); |
| 1368 | return; |
| 1369 | } |
| 1370 | |
| 1371 | DRM_DEBUG_KMS("disabling PCH PLL %x\n", pll->pll_reg); |
Jesse Barnes | 92f2584 | 2011-01-04 15:09:34 -0800 | [diff] [blame] | 1372 | |
| 1373 | /* Make sure transcoder isn't still depending on us */ |
Jesse Barnes | ee7b9f9 | 2012-04-20 17:11:53 +0100 | [diff] [blame^] | 1374 | assert_transcoder_disabled(dev_priv, intel_crtc->pipe); |
Jesse Barnes | 92f2584 | 2011-01-04 15:09:34 -0800 | [diff] [blame] | 1375 | |
Jesse Barnes | ee7b9f9 | 2012-04-20 17:11:53 +0100 | [diff] [blame^] | 1376 | reg = pll->pll_reg; |
Jesse Barnes | 92f2584 | 2011-01-04 15:09:34 -0800 | [diff] [blame] | 1377 | val = I915_READ(reg); |
| 1378 | val &= ~DPLL_VCO_ENABLE; |
| 1379 | I915_WRITE(reg, val); |
| 1380 | POSTING_READ(reg); |
| 1381 | udelay(200); |
Jesse Barnes | ee7b9f9 | 2012-04-20 17:11:53 +0100 | [diff] [blame^] | 1382 | |
| 1383 | pll->on = false; |
Jesse Barnes | 92f2584 | 2011-01-04 15:09:34 -0800 | [diff] [blame] | 1384 | } |
| 1385 | |
Jesse Barnes | 040484a | 2011-01-03 12:14:26 -0800 | [diff] [blame] | 1386 | static void intel_enable_transcoder(struct drm_i915_private *dev_priv, |
| 1387 | enum pipe pipe) |
| 1388 | { |
| 1389 | int reg; |
Paulo Zanoni | 5f7f726 | 2012-02-03 17:47:15 -0200 | [diff] [blame] | 1390 | u32 val, pipeconf_val; |
Paulo Zanoni | 7c26e5c | 2012-02-14 17:07:09 -0200 | [diff] [blame] | 1391 | struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe]; |
Jesse Barnes | 040484a | 2011-01-03 12:14:26 -0800 | [diff] [blame] | 1392 | |
| 1393 | /* PCH only available on ILK+ */ |
| 1394 | BUG_ON(dev_priv->info->gen < 5); |
| 1395 | |
| 1396 | /* Make sure PCH DPLL is enabled */ |
Jesse Barnes | ee7b9f9 | 2012-04-20 17:11:53 +0100 | [diff] [blame^] | 1397 | assert_pch_pll_enabled(dev_priv, to_intel_crtc(crtc)); |
Jesse Barnes | 040484a | 2011-01-03 12:14:26 -0800 | [diff] [blame] | 1398 | |
| 1399 | /* FDI must be feeding us bits for PCH ports */ |
| 1400 | assert_fdi_tx_enabled(dev_priv, pipe); |
| 1401 | assert_fdi_rx_enabled(dev_priv, pipe); |
| 1402 | |
| 1403 | reg = TRANSCONF(pipe); |
| 1404 | val = I915_READ(reg); |
Paulo Zanoni | 5f7f726 | 2012-02-03 17:47:15 -0200 | [diff] [blame] | 1405 | pipeconf_val = I915_READ(PIPECONF(pipe)); |
Jesse Barnes | e9bcff5 | 2011-06-24 12:19:20 -0700 | [diff] [blame] | 1406 | |
| 1407 | if (HAS_PCH_IBX(dev_priv->dev)) { |
| 1408 | /* |
| 1409 | * make the BPC in transcoder be consistent with |
| 1410 | * that in pipeconf reg. |
| 1411 | */ |
| 1412 | val &= ~PIPE_BPC_MASK; |
Paulo Zanoni | 5f7f726 | 2012-02-03 17:47:15 -0200 | [diff] [blame] | 1413 | val |= pipeconf_val & PIPE_BPC_MASK; |
Jesse Barnes | e9bcff5 | 2011-06-24 12:19:20 -0700 | [diff] [blame] | 1414 | } |
Paulo Zanoni | 5f7f726 | 2012-02-03 17:47:15 -0200 | [diff] [blame] | 1415 | |
| 1416 | val &= ~TRANS_INTERLACE_MASK; |
| 1417 | if ((pipeconf_val & PIPECONF_INTERLACE_MASK) == PIPECONF_INTERLACED_ILK) |
Paulo Zanoni | 7c26e5c | 2012-02-14 17:07:09 -0200 | [diff] [blame] | 1418 | if (HAS_PCH_IBX(dev_priv->dev) && |
| 1419 | intel_pipe_has_type(crtc, INTEL_OUTPUT_SDVO)) |
| 1420 | val |= TRANS_LEGACY_INTERLACED_ILK; |
| 1421 | else |
| 1422 | val |= TRANS_INTERLACED; |
Paulo Zanoni | 5f7f726 | 2012-02-03 17:47:15 -0200 | [diff] [blame] | 1423 | else |
| 1424 | val |= TRANS_PROGRESSIVE; |
| 1425 | |
Jesse Barnes | 040484a | 2011-01-03 12:14:26 -0800 | [diff] [blame] | 1426 | I915_WRITE(reg, val | TRANS_ENABLE); |
| 1427 | if (wait_for(I915_READ(reg) & TRANS_STATE_ENABLE, 100)) |
| 1428 | DRM_ERROR("failed to enable transcoder %d\n", pipe); |
| 1429 | } |
| 1430 | |
| 1431 | static void intel_disable_transcoder(struct drm_i915_private *dev_priv, |
| 1432 | enum pipe pipe) |
| 1433 | { |
| 1434 | int reg; |
| 1435 | u32 val; |
| 1436 | |
| 1437 | /* FDI relies on the transcoder */ |
| 1438 | assert_fdi_tx_disabled(dev_priv, pipe); |
| 1439 | assert_fdi_rx_disabled(dev_priv, pipe); |
| 1440 | |
Jesse Barnes | 291906f | 2011-02-02 12:28:03 -0800 | [diff] [blame] | 1441 | /* Ports must be off as well */ |
| 1442 | assert_pch_ports_disabled(dev_priv, pipe); |
| 1443 | |
Jesse Barnes | 040484a | 2011-01-03 12:14:26 -0800 | [diff] [blame] | 1444 | reg = TRANSCONF(pipe); |
| 1445 | val = I915_READ(reg); |
| 1446 | val &= ~TRANS_ENABLE; |
| 1447 | I915_WRITE(reg, val); |
| 1448 | /* wait for PCH transcoder off, transcoder state */ |
| 1449 | if (wait_for((I915_READ(reg) & TRANS_STATE_ENABLE) == 0, 50)) |
Jesse Barnes | 4c9c18c | 2011-10-13 09:46:32 -0700 | [diff] [blame] | 1450 | DRM_ERROR("failed to disable transcoder %d\n", pipe); |
Jesse Barnes | 040484a | 2011-01-03 12:14:26 -0800 | [diff] [blame] | 1451 | } |
| 1452 | |
Jesse Barnes | 92f2584 | 2011-01-04 15:09:34 -0800 | [diff] [blame] | 1453 | /** |
Chris Wilson | 309cfea | 2011-01-28 13:54:53 +0000 | [diff] [blame] | 1454 | * intel_enable_pipe - enable a pipe, asserting requirements |
Jesse Barnes | b24e717 | 2011-01-04 15:09:30 -0800 | [diff] [blame] | 1455 | * @dev_priv: i915 private structure |
| 1456 | * @pipe: pipe to enable |
Jesse Barnes | 040484a | 2011-01-03 12:14:26 -0800 | [diff] [blame] | 1457 | * @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] | 1458 | * |
| 1459 | * Enable @pipe, making sure that various hardware specific requirements |
| 1460 | * are met, if applicable, e.g. PLL enabled, LVDS pairs enabled, etc. |
| 1461 | * |
| 1462 | * @pipe should be %PIPE_A or %PIPE_B. |
| 1463 | * |
| 1464 | * Will wait until the pipe is actually running (i.e. first vblank) before |
| 1465 | * returning. |
| 1466 | */ |
Jesse Barnes | 040484a | 2011-01-03 12:14:26 -0800 | [diff] [blame] | 1467 | static void intel_enable_pipe(struct drm_i915_private *dev_priv, enum pipe pipe, |
| 1468 | bool pch_port) |
Jesse Barnes | b24e717 | 2011-01-04 15:09:30 -0800 | [diff] [blame] | 1469 | { |
| 1470 | int reg; |
| 1471 | u32 val; |
| 1472 | |
| 1473 | /* |
| 1474 | * A pipe without a PLL won't actually be able to drive bits from |
| 1475 | * a plane. On ILK+ the pipe PLLs are integrated, so we don't |
| 1476 | * need the check. |
| 1477 | */ |
| 1478 | if (!HAS_PCH_SPLIT(dev_priv->dev)) |
| 1479 | assert_pll_enabled(dev_priv, pipe); |
Jesse Barnes | 040484a | 2011-01-03 12:14:26 -0800 | [diff] [blame] | 1480 | else { |
| 1481 | if (pch_port) { |
| 1482 | /* if driving the PCH, we need FDI enabled */ |
| 1483 | assert_fdi_rx_pll_enabled(dev_priv, pipe); |
| 1484 | assert_fdi_tx_pll_enabled(dev_priv, pipe); |
| 1485 | } |
| 1486 | /* FIXME: assert CPU port conditions for SNB+ */ |
| 1487 | } |
Jesse Barnes | b24e717 | 2011-01-04 15:09:30 -0800 | [diff] [blame] | 1488 | |
| 1489 | reg = PIPECONF(pipe); |
| 1490 | val = I915_READ(reg); |
Chris Wilson | 00d70b1 | 2011-03-17 07:18:29 +0000 | [diff] [blame] | 1491 | if (val & PIPECONF_ENABLE) |
| 1492 | return; |
| 1493 | |
| 1494 | I915_WRITE(reg, val | PIPECONF_ENABLE); |
Jesse Barnes | b24e717 | 2011-01-04 15:09:30 -0800 | [diff] [blame] | 1495 | intel_wait_for_vblank(dev_priv->dev, pipe); |
| 1496 | } |
| 1497 | |
| 1498 | /** |
Chris Wilson | 309cfea | 2011-01-28 13:54:53 +0000 | [diff] [blame] | 1499 | * intel_disable_pipe - disable a pipe, asserting requirements |
Jesse Barnes | b24e717 | 2011-01-04 15:09:30 -0800 | [diff] [blame] | 1500 | * @dev_priv: i915 private structure |
| 1501 | * @pipe: pipe to disable |
| 1502 | * |
| 1503 | * Disable @pipe, making sure that various hardware specific requirements |
| 1504 | * are met, if applicable, e.g. plane disabled, panel fitter off, etc. |
| 1505 | * |
| 1506 | * @pipe should be %PIPE_A or %PIPE_B. |
| 1507 | * |
| 1508 | * Will wait until the pipe has shut down before returning. |
| 1509 | */ |
| 1510 | static void intel_disable_pipe(struct drm_i915_private *dev_priv, |
| 1511 | enum pipe pipe) |
| 1512 | { |
| 1513 | int reg; |
| 1514 | u32 val; |
| 1515 | |
| 1516 | /* |
| 1517 | * Make sure planes won't keep trying to pump pixels to us, |
| 1518 | * or we might hang the display. |
| 1519 | */ |
| 1520 | assert_planes_disabled(dev_priv, pipe); |
| 1521 | |
| 1522 | /* Don't disable pipe A or pipe A PLLs if needed */ |
| 1523 | if (pipe == PIPE_A && (dev_priv->quirks & QUIRK_PIPEA_FORCE)) |
| 1524 | return; |
| 1525 | |
| 1526 | reg = PIPECONF(pipe); |
| 1527 | val = I915_READ(reg); |
Chris Wilson | 00d70b1 | 2011-03-17 07:18:29 +0000 | [diff] [blame] | 1528 | if ((val & PIPECONF_ENABLE) == 0) |
| 1529 | return; |
| 1530 | |
| 1531 | I915_WRITE(reg, val & ~PIPECONF_ENABLE); |
Jesse Barnes | b24e717 | 2011-01-04 15:09:30 -0800 | [diff] [blame] | 1532 | intel_wait_for_pipe_off(dev_priv->dev, pipe); |
| 1533 | } |
| 1534 | |
Keith Packard | d74362c | 2011-07-28 14:47:14 -0700 | [diff] [blame] | 1535 | /* |
| 1536 | * Plane regs are double buffered, going from enabled->disabled needs a |
| 1537 | * trigger in order to latch. The display address reg provides this. |
| 1538 | */ |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 1539 | void intel_flush_display_plane(struct drm_i915_private *dev_priv, |
Keith Packard | d74362c | 2011-07-28 14:47:14 -0700 | [diff] [blame] | 1540 | enum plane plane) |
| 1541 | { |
| 1542 | I915_WRITE(DSPADDR(plane), I915_READ(DSPADDR(plane))); |
| 1543 | I915_WRITE(DSPSURF(plane), I915_READ(DSPSURF(plane))); |
| 1544 | } |
| 1545 | |
Jesse Barnes | b24e717 | 2011-01-04 15:09:30 -0800 | [diff] [blame] | 1546 | /** |
| 1547 | * intel_enable_plane - enable a display plane on a given pipe |
| 1548 | * @dev_priv: i915 private structure |
| 1549 | * @plane: plane to enable |
| 1550 | * @pipe: pipe being fed |
| 1551 | * |
| 1552 | * Enable @plane on @pipe, making sure that @pipe is running first. |
| 1553 | */ |
| 1554 | static void intel_enable_plane(struct drm_i915_private *dev_priv, |
| 1555 | enum plane plane, enum pipe pipe) |
| 1556 | { |
| 1557 | int reg; |
| 1558 | u32 val; |
| 1559 | |
| 1560 | /* If the pipe isn't enabled, we can't pump pixels and may hang */ |
| 1561 | assert_pipe_enabled(dev_priv, pipe); |
| 1562 | |
| 1563 | reg = DSPCNTR(plane); |
| 1564 | val = I915_READ(reg); |
Chris Wilson | 00d70b1 | 2011-03-17 07:18:29 +0000 | [diff] [blame] | 1565 | if (val & DISPLAY_PLANE_ENABLE) |
| 1566 | return; |
| 1567 | |
| 1568 | I915_WRITE(reg, val | DISPLAY_PLANE_ENABLE); |
Keith Packard | d74362c | 2011-07-28 14:47:14 -0700 | [diff] [blame] | 1569 | intel_flush_display_plane(dev_priv, plane); |
Jesse Barnes | b24e717 | 2011-01-04 15:09:30 -0800 | [diff] [blame] | 1570 | intel_wait_for_vblank(dev_priv->dev, pipe); |
| 1571 | } |
| 1572 | |
Jesse Barnes | b24e717 | 2011-01-04 15:09:30 -0800 | [diff] [blame] | 1573 | /** |
| 1574 | * intel_disable_plane - disable a display plane |
| 1575 | * @dev_priv: i915 private structure |
| 1576 | * @plane: plane to disable |
| 1577 | * @pipe: pipe consuming the data |
| 1578 | * |
| 1579 | * Disable @plane; should be an independent operation. |
| 1580 | */ |
| 1581 | static void intel_disable_plane(struct drm_i915_private *dev_priv, |
| 1582 | enum plane plane, enum pipe pipe) |
| 1583 | { |
| 1584 | int reg; |
| 1585 | u32 val; |
| 1586 | |
| 1587 | reg = DSPCNTR(plane); |
| 1588 | val = I915_READ(reg); |
Chris Wilson | 00d70b1 | 2011-03-17 07:18:29 +0000 | [diff] [blame] | 1589 | if ((val & DISPLAY_PLANE_ENABLE) == 0) |
| 1590 | return; |
| 1591 | |
| 1592 | I915_WRITE(reg, val & ~DISPLAY_PLANE_ENABLE); |
Jesse Barnes | b24e717 | 2011-01-04 15:09:30 -0800 | [diff] [blame] | 1593 | intel_flush_display_plane(dev_priv, plane); |
| 1594 | intel_wait_for_vblank(dev_priv->dev, pipe); |
| 1595 | } |
| 1596 | |
Jesse Barnes | 47a05ec | 2011-02-07 13:46:40 -0800 | [diff] [blame] | 1597 | static void disable_pch_dp(struct drm_i915_private *dev_priv, |
Keith Packard | f0575e9 | 2011-07-25 22:12:43 -0700 | [diff] [blame] | 1598 | enum pipe pipe, int reg, u32 port_sel) |
Jesse Barnes | 47a05ec | 2011-02-07 13:46:40 -0800 | [diff] [blame] | 1599 | { |
| 1600 | u32 val = I915_READ(reg); |
Keith Packard | 4e63438 | 2011-08-06 10:39:45 -0700 | [diff] [blame] | 1601 | if (dp_pipe_enabled(dev_priv, pipe, port_sel, val)) { |
Keith Packard | f0575e9 | 2011-07-25 22:12:43 -0700 | [diff] [blame] | 1602 | 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] | 1603 | I915_WRITE(reg, val & ~DP_PORT_EN); |
Keith Packard | f0575e9 | 2011-07-25 22:12:43 -0700 | [diff] [blame] | 1604 | } |
Jesse Barnes | 47a05ec | 2011-02-07 13:46:40 -0800 | [diff] [blame] | 1605 | } |
| 1606 | |
| 1607 | static void disable_pch_hdmi(struct drm_i915_private *dev_priv, |
| 1608 | enum pipe pipe, int reg) |
| 1609 | { |
| 1610 | u32 val = I915_READ(reg); |
Keith Packard | 1519b99 | 2011-08-06 10:35:34 -0700 | [diff] [blame] | 1611 | if (hdmi_pipe_enabled(dev_priv, val, pipe)) { |
Keith Packard | f0575e9 | 2011-07-25 22:12:43 -0700 | [diff] [blame] | 1612 | DRM_DEBUG_KMS("Disabling pch HDMI %x on pipe %d\n", |
| 1613 | reg, pipe); |
Jesse Barnes | 47a05ec | 2011-02-07 13:46:40 -0800 | [diff] [blame] | 1614 | I915_WRITE(reg, val & ~PORT_ENABLE); |
Keith Packard | f0575e9 | 2011-07-25 22:12:43 -0700 | [diff] [blame] | 1615 | } |
Jesse Barnes | 47a05ec | 2011-02-07 13:46:40 -0800 | [diff] [blame] | 1616 | } |
| 1617 | |
| 1618 | /* Disable any ports connected to this transcoder */ |
| 1619 | static void intel_disable_pch_ports(struct drm_i915_private *dev_priv, |
| 1620 | enum pipe pipe) |
| 1621 | { |
| 1622 | u32 reg, val; |
| 1623 | |
| 1624 | val = I915_READ(PCH_PP_CONTROL); |
| 1625 | I915_WRITE(PCH_PP_CONTROL, val | PANEL_UNLOCK_REGS); |
| 1626 | |
Keith Packard | f0575e9 | 2011-07-25 22:12:43 -0700 | [diff] [blame] | 1627 | disable_pch_dp(dev_priv, pipe, PCH_DP_B, TRANS_DP_PORT_SEL_B); |
| 1628 | disable_pch_dp(dev_priv, pipe, PCH_DP_C, TRANS_DP_PORT_SEL_C); |
| 1629 | 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] | 1630 | |
| 1631 | reg = PCH_ADPA; |
| 1632 | val = I915_READ(reg); |
Keith Packard | 1519b99 | 2011-08-06 10:35:34 -0700 | [diff] [blame] | 1633 | if (adpa_pipe_enabled(dev_priv, val, pipe)) |
Jesse Barnes | 47a05ec | 2011-02-07 13:46:40 -0800 | [diff] [blame] | 1634 | I915_WRITE(reg, val & ~ADPA_DAC_ENABLE); |
| 1635 | |
| 1636 | reg = PCH_LVDS; |
| 1637 | val = I915_READ(reg); |
Keith Packard | 1519b99 | 2011-08-06 10:35:34 -0700 | [diff] [blame] | 1638 | if (lvds_pipe_enabled(dev_priv, val, pipe)) { |
| 1639 | 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] | 1640 | I915_WRITE(reg, val & ~LVDS_PORT_EN); |
| 1641 | POSTING_READ(reg); |
| 1642 | udelay(100); |
| 1643 | } |
| 1644 | |
| 1645 | disable_pch_hdmi(dev_priv, pipe, HDMIB); |
| 1646 | disable_pch_hdmi(dev_priv, pipe, HDMIC); |
| 1647 | disable_pch_hdmi(dev_priv, pipe, HDMID); |
| 1648 | } |
| 1649 | |
Chris Wilson | 127bd2a | 2010-07-23 23:32:05 +0100 | [diff] [blame] | 1650 | int |
Chris Wilson | 48b956c | 2010-09-14 12:50:34 +0100 | [diff] [blame] | 1651 | intel_pin_and_fence_fb_obj(struct drm_device *dev, |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 1652 | struct drm_i915_gem_object *obj, |
Chris Wilson | 919926a | 2010-11-12 13:42:53 +0000 | [diff] [blame] | 1653 | struct intel_ring_buffer *pipelined) |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 1654 | { |
Chris Wilson | ce453d8 | 2011-02-21 14:43:56 +0000 | [diff] [blame] | 1655 | struct drm_i915_private *dev_priv = dev->dev_private; |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 1656 | u32 alignment; |
| 1657 | int ret; |
| 1658 | |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 1659 | switch (obj->tiling_mode) { |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 1660 | case I915_TILING_NONE: |
Chris Wilson | 534843d | 2010-07-05 18:01:46 +0100 | [diff] [blame] | 1661 | if (IS_BROADWATER(dev) || IS_CRESTLINE(dev)) |
| 1662 | alignment = 128 * 1024; |
Chris Wilson | a6c45cf | 2010-09-17 00:32:17 +0100 | [diff] [blame] | 1663 | else if (INTEL_INFO(dev)->gen >= 4) |
Chris Wilson | 534843d | 2010-07-05 18:01:46 +0100 | [diff] [blame] | 1664 | alignment = 4 * 1024; |
| 1665 | else |
| 1666 | alignment = 64 * 1024; |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 1667 | break; |
| 1668 | case I915_TILING_X: |
| 1669 | /* pin() will align the object as required by fence */ |
| 1670 | alignment = 0; |
| 1671 | break; |
| 1672 | case I915_TILING_Y: |
| 1673 | /* FIXME: Is this true? */ |
| 1674 | DRM_ERROR("Y tiled not allowed for scan out buffers\n"); |
| 1675 | return -EINVAL; |
| 1676 | default: |
| 1677 | BUG(); |
| 1678 | } |
| 1679 | |
Chris Wilson | ce453d8 | 2011-02-21 14:43:56 +0000 | [diff] [blame] | 1680 | dev_priv->mm.interruptible = false; |
Chris Wilson | 2da3b9b | 2011-04-14 09:41:17 +0100 | [diff] [blame] | 1681 | ret = i915_gem_object_pin_to_display_plane(obj, alignment, pipelined); |
Chris Wilson | 48b956c | 2010-09-14 12:50:34 +0100 | [diff] [blame] | 1682 | if (ret) |
Chris Wilson | ce453d8 | 2011-02-21 14:43:56 +0000 | [diff] [blame] | 1683 | goto err_interruptible; |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 1684 | |
| 1685 | /* Install a fence for tiled scan-out. Pre-i965 always needs a |
| 1686 | * fence, whereas 965+ only requires a fence if using |
| 1687 | * framebuffer compression. For simplicity, we always install |
| 1688 | * a fence as the cost is not that onerous. |
| 1689 | */ |
Chris Wilson | 06d9813 | 2012-04-17 15:31:24 +0100 | [diff] [blame] | 1690 | ret = i915_gem_object_get_fence(obj); |
Chris Wilson | 9a5a53b | 2012-03-22 15:10:00 +0000 | [diff] [blame] | 1691 | if (ret) |
| 1692 | goto err_unpin; |
Chris Wilson | 1690e1e | 2011-12-14 13:57:08 +0100 | [diff] [blame] | 1693 | |
Chris Wilson | 9a5a53b | 2012-03-22 15:10:00 +0000 | [diff] [blame] | 1694 | i915_gem_object_pin_fence(obj); |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 1695 | |
Chris Wilson | ce453d8 | 2011-02-21 14:43:56 +0000 | [diff] [blame] | 1696 | dev_priv->mm.interruptible = true; |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 1697 | return 0; |
Chris Wilson | 48b956c | 2010-09-14 12:50:34 +0100 | [diff] [blame] | 1698 | |
| 1699 | err_unpin: |
| 1700 | i915_gem_object_unpin(obj); |
Chris Wilson | ce453d8 | 2011-02-21 14:43:56 +0000 | [diff] [blame] | 1701 | err_interruptible: |
| 1702 | dev_priv->mm.interruptible = true; |
Chris Wilson | 48b956c | 2010-09-14 12:50:34 +0100 | [diff] [blame] | 1703 | return ret; |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 1704 | } |
| 1705 | |
Chris Wilson | 1690e1e | 2011-12-14 13:57:08 +0100 | [diff] [blame] | 1706 | void intel_unpin_fb_obj(struct drm_i915_gem_object *obj) |
| 1707 | { |
| 1708 | i915_gem_object_unpin_fence(obj); |
| 1709 | i915_gem_object_unpin(obj); |
| 1710 | } |
| 1711 | |
Jesse Barnes | 17638cd | 2011-06-24 12:19:23 -0700 | [diff] [blame] | 1712 | static int i9xx_update_plane(struct drm_crtc *crtc, struct drm_framebuffer *fb, |
| 1713 | int x, int y) |
Jesse Barnes | 8125556 | 2010-08-02 12:07:50 -0700 | [diff] [blame] | 1714 | { |
| 1715 | struct drm_device *dev = crtc->dev; |
| 1716 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 1717 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 1718 | struct intel_framebuffer *intel_fb; |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 1719 | struct drm_i915_gem_object *obj; |
Jesse Barnes | 8125556 | 2010-08-02 12:07:50 -0700 | [diff] [blame] | 1720 | int plane = intel_crtc->plane; |
| 1721 | unsigned long Start, Offset; |
Jesse Barnes | 8125556 | 2010-08-02 12:07:50 -0700 | [diff] [blame] | 1722 | u32 dspcntr; |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 1723 | u32 reg; |
Jesse Barnes | 8125556 | 2010-08-02 12:07:50 -0700 | [diff] [blame] | 1724 | |
| 1725 | switch (plane) { |
| 1726 | case 0: |
| 1727 | case 1: |
| 1728 | break; |
| 1729 | default: |
| 1730 | DRM_ERROR("Can't update plane %d in SAREA\n", plane); |
| 1731 | return -EINVAL; |
| 1732 | } |
| 1733 | |
| 1734 | intel_fb = to_intel_framebuffer(fb); |
| 1735 | obj = intel_fb->obj; |
Jesse Barnes | 8125556 | 2010-08-02 12:07:50 -0700 | [diff] [blame] | 1736 | |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 1737 | reg = DSPCNTR(plane); |
| 1738 | dspcntr = I915_READ(reg); |
Jesse Barnes | 8125556 | 2010-08-02 12:07:50 -0700 | [diff] [blame] | 1739 | /* Mask out pixel format bits in case we change it */ |
| 1740 | dspcntr &= ~DISPPLANE_PIXFORMAT_MASK; |
| 1741 | switch (fb->bits_per_pixel) { |
| 1742 | case 8: |
| 1743 | dspcntr |= DISPPLANE_8BPP; |
| 1744 | break; |
| 1745 | case 16: |
| 1746 | if (fb->depth == 15) |
| 1747 | dspcntr |= DISPPLANE_15_16BPP; |
| 1748 | else |
| 1749 | dspcntr |= DISPPLANE_16BPP; |
| 1750 | break; |
| 1751 | case 24: |
| 1752 | case 32: |
| 1753 | dspcntr |= DISPPLANE_32BPP_NO_ALPHA; |
| 1754 | break; |
| 1755 | default: |
Jesse Barnes | 17638cd | 2011-06-24 12:19:23 -0700 | [diff] [blame] | 1756 | DRM_ERROR("Unknown color depth %d\n", fb->bits_per_pixel); |
Jesse Barnes | 8125556 | 2010-08-02 12:07:50 -0700 | [diff] [blame] | 1757 | return -EINVAL; |
| 1758 | } |
Chris Wilson | a6c45cf | 2010-09-17 00:32:17 +0100 | [diff] [blame] | 1759 | if (INTEL_INFO(dev)->gen >= 4) { |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 1760 | if (obj->tiling_mode != I915_TILING_NONE) |
Jesse Barnes | 8125556 | 2010-08-02 12:07:50 -0700 | [diff] [blame] | 1761 | dspcntr |= DISPPLANE_TILED; |
| 1762 | else |
| 1763 | dspcntr &= ~DISPPLANE_TILED; |
| 1764 | } |
| 1765 | |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 1766 | I915_WRITE(reg, dspcntr); |
Jesse Barnes | 8125556 | 2010-08-02 12:07:50 -0700 | [diff] [blame] | 1767 | |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 1768 | Start = obj->gtt_offset; |
Ville Syrjälä | 01f2c77 | 2011-12-20 00:06:49 +0200 | [diff] [blame] | 1769 | Offset = y * fb->pitches[0] + x * (fb->bits_per_pixel / 8); |
Jesse Barnes | 8125556 | 2010-08-02 12:07:50 -0700 | [diff] [blame] | 1770 | |
Chris Wilson | 4e6cfef | 2010-08-08 13:20:19 +0100 | [diff] [blame] | 1771 | DRM_DEBUG_KMS("Writing base %08lX %08lX %d %d %d\n", |
Ville Syrjälä | 01f2c77 | 2011-12-20 00:06:49 +0200 | [diff] [blame] | 1772 | Start, Offset, x, y, fb->pitches[0]); |
| 1773 | I915_WRITE(DSPSTRIDE(plane), fb->pitches[0]); |
Chris Wilson | a6c45cf | 2010-09-17 00:32:17 +0100 | [diff] [blame] | 1774 | if (INTEL_INFO(dev)->gen >= 4) { |
Armin Reese | 446f254 | 2012-03-30 16:20:16 -0700 | [diff] [blame] | 1775 | I915_MODIFY_DISPBASE(DSPSURF(plane), Start); |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 1776 | I915_WRITE(DSPTILEOFF(plane), (y << 16) | x); |
| 1777 | I915_WRITE(DSPADDR(plane), Offset); |
| 1778 | } else |
| 1779 | I915_WRITE(DSPADDR(plane), Start + Offset); |
| 1780 | POSTING_READ(reg); |
Jesse Barnes | 8125556 | 2010-08-02 12:07:50 -0700 | [diff] [blame] | 1781 | |
Jesse Barnes | 17638cd | 2011-06-24 12:19:23 -0700 | [diff] [blame] | 1782 | return 0; |
| 1783 | } |
| 1784 | |
| 1785 | static int ironlake_update_plane(struct drm_crtc *crtc, |
| 1786 | struct drm_framebuffer *fb, int x, int y) |
| 1787 | { |
| 1788 | struct drm_device *dev = crtc->dev; |
| 1789 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 1790 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 1791 | struct intel_framebuffer *intel_fb; |
| 1792 | struct drm_i915_gem_object *obj; |
| 1793 | int plane = intel_crtc->plane; |
| 1794 | unsigned long Start, Offset; |
| 1795 | u32 dspcntr; |
| 1796 | u32 reg; |
| 1797 | |
| 1798 | switch (plane) { |
| 1799 | case 0: |
| 1800 | case 1: |
Jesse Barnes | 27f8227 | 2011-09-02 12:54:37 -0700 | [diff] [blame] | 1801 | case 2: |
Jesse Barnes | 17638cd | 2011-06-24 12:19:23 -0700 | [diff] [blame] | 1802 | break; |
| 1803 | default: |
| 1804 | DRM_ERROR("Can't update plane %d in SAREA\n", plane); |
| 1805 | return -EINVAL; |
| 1806 | } |
| 1807 | |
| 1808 | intel_fb = to_intel_framebuffer(fb); |
| 1809 | obj = intel_fb->obj; |
| 1810 | |
| 1811 | reg = DSPCNTR(plane); |
| 1812 | dspcntr = I915_READ(reg); |
| 1813 | /* Mask out pixel format bits in case we change it */ |
| 1814 | dspcntr &= ~DISPPLANE_PIXFORMAT_MASK; |
| 1815 | switch (fb->bits_per_pixel) { |
| 1816 | case 8: |
| 1817 | dspcntr |= DISPPLANE_8BPP; |
| 1818 | break; |
| 1819 | case 16: |
| 1820 | if (fb->depth != 16) |
| 1821 | return -EINVAL; |
| 1822 | |
| 1823 | dspcntr |= DISPPLANE_16BPP; |
| 1824 | break; |
| 1825 | case 24: |
| 1826 | case 32: |
| 1827 | if (fb->depth == 24) |
| 1828 | dspcntr |= DISPPLANE_32BPP_NO_ALPHA; |
| 1829 | else if (fb->depth == 30) |
| 1830 | dspcntr |= DISPPLANE_32BPP_30BIT_NO_ALPHA; |
| 1831 | else |
| 1832 | return -EINVAL; |
| 1833 | break; |
| 1834 | default: |
| 1835 | DRM_ERROR("Unknown color depth %d\n", fb->bits_per_pixel); |
| 1836 | return -EINVAL; |
| 1837 | } |
| 1838 | |
| 1839 | if (obj->tiling_mode != I915_TILING_NONE) |
| 1840 | dspcntr |= DISPPLANE_TILED; |
| 1841 | else |
| 1842 | dspcntr &= ~DISPPLANE_TILED; |
| 1843 | |
| 1844 | /* must disable */ |
| 1845 | dspcntr |= DISPPLANE_TRICKLE_FEED_DISABLE; |
| 1846 | |
| 1847 | I915_WRITE(reg, dspcntr); |
| 1848 | |
| 1849 | Start = obj->gtt_offset; |
Ville Syrjälä | 01f2c77 | 2011-12-20 00:06:49 +0200 | [diff] [blame] | 1850 | Offset = y * fb->pitches[0] + x * (fb->bits_per_pixel / 8); |
Jesse Barnes | 17638cd | 2011-06-24 12:19:23 -0700 | [diff] [blame] | 1851 | |
| 1852 | DRM_DEBUG_KMS("Writing base %08lX %08lX %d %d %d\n", |
Ville Syrjälä | 01f2c77 | 2011-12-20 00:06:49 +0200 | [diff] [blame] | 1853 | Start, Offset, x, y, fb->pitches[0]); |
| 1854 | I915_WRITE(DSPSTRIDE(plane), fb->pitches[0]); |
Armin Reese | 446f254 | 2012-03-30 16:20:16 -0700 | [diff] [blame] | 1855 | I915_MODIFY_DISPBASE(DSPSURF(plane), Start); |
Jesse Barnes | 17638cd | 2011-06-24 12:19:23 -0700 | [diff] [blame] | 1856 | I915_WRITE(DSPTILEOFF(plane), (y << 16) | x); |
| 1857 | I915_WRITE(DSPADDR(plane), Offset); |
| 1858 | POSTING_READ(reg); |
| 1859 | |
| 1860 | return 0; |
| 1861 | } |
| 1862 | |
| 1863 | /* Assume fb object is pinned & idle & fenced and just update base pointers */ |
| 1864 | static int |
| 1865 | intel_pipe_set_base_atomic(struct drm_crtc *crtc, struct drm_framebuffer *fb, |
| 1866 | int x, int y, enum mode_set_atomic state) |
| 1867 | { |
| 1868 | struct drm_device *dev = crtc->dev; |
| 1869 | struct drm_i915_private *dev_priv = dev->dev_private; |
Jesse Barnes | 17638cd | 2011-06-24 12:19:23 -0700 | [diff] [blame] | 1870 | |
Chris Wilson | 6b8e6ed | 2012-04-17 15:08:19 +0100 | [diff] [blame] | 1871 | if (dev_priv->display.disable_fbc) |
| 1872 | dev_priv->display.disable_fbc(dev); |
Daniel Vetter | 3dec009 | 2010-08-20 21:40:52 +0200 | [diff] [blame] | 1873 | intel_increase_pllclock(crtc); |
Jesse Barnes | 8125556 | 2010-08-02 12:07:50 -0700 | [diff] [blame] | 1874 | |
Chris Wilson | 6b8e6ed | 2012-04-17 15:08:19 +0100 | [diff] [blame] | 1875 | return dev_priv->display.update_plane(crtc, fb, x, y); |
Jesse Barnes | 8125556 | 2010-08-02 12:07:50 -0700 | [diff] [blame] | 1876 | } |
| 1877 | |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 1878 | static int |
Chris Wilson | 14667a4 | 2012-04-03 17:58:35 +0100 | [diff] [blame] | 1879 | intel_finish_fb(struct drm_framebuffer *old_fb) |
| 1880 | { |
| 1881 | struct drm_i915_gem_object *obj = to_intel_framebuffer(old_fb)->obj; |
| 1882 | struct drm_i915_private *dev_priv = obj->base.dev->dev_private; |
| 1883 | bool was_interruptible = dev_priv->mm.interruptible; |
| 1884 | int ret; |
| 1885 | |
| 1886 | wait_event(dev_priv->pending_flip_queue, |
| 1887 | atomic_read(&dev_priv->mm.wedged) || |
| 1888 | atomic_read(&obj->pending_flip) == 0); |
| 1889 | |
| 1890 | /* Big Hammer, we also need to ensure that any pending |
| 1891 | * MI_WAIT_FOR_EVENT inside a user batch buffer on the |
| 1892 | * current scanout is retired before unpinning the old |
| 1893 | * framebuffer. |
| 1894 | * |
| 1895 | * This should only fail upon a hung GPU, in which case we |
| 1896 | * can safely continue. |
| 1897 | */ |
| 1898 | dev_priv->mm.interruptible = false; |
| 1899 | ret = i915_gem_object_finish_gpu(obj); |
| 1900 | dev_priv->mm.interruptible = was_interruptible; |
| 1901 | |
| 1902 | return ret; |
| 1903 | } |
| 1904 | |
| 1905 | static int |
Kristian Høgsberg | 3c4fdcf | 2008-12-17 22:14:46 -0500 | [diff] [blame] | 1906 | intel_pipe_set_base(struct drm_crtc *crtc, int x, int y, |
| 1907 | struct drm_framebuffer *old_fb) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1908 | { |
| 1909 | struct drm_device *dev = crtc->dev; |
Chris Wilson | 6b8e6ed | 2012-04-17 15:08:19 +0100 | [diff] [blame] | 1910 | struct drm_i915_private *dev_priv = dev->dev_private; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1911 | struct drm_i915_master_private *master_priv; |
| 1912 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
Chris Wilson | 5c3b82e | 2009-02-11 13:25:09 +0000 | [diff] [blame] | 1913 | int ret; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1914 | |
| 1915 | /* no fb bound */ |
| 1916 | if (!crtc->fb) { |
Jesse Barnes | a5071c2 | 2011-07-19 15:38:56 -0700 | [diff] [blame] | 1917 | DRM_ERROR("No FB bound\n"); |
Chris Wilson | 5c3b82e | 2009-02-11 13:25:09 +0000 | [diff] [blame] | 1918 | return 0; |
| 1919 | } |
| 1920 | |
Chris Wilson | 265db95 | 2010-09-20 15:41:01 +0100 | [diff] [blame] | 1921 | switch (intel_crtc->plane) { |
Chris Wilson | 5c3b82e | 2009-02-11 13:25:09 +0000 | [diff] [blame] | 1922 | case 0: |
| 1923 | case 1: |
| 1924 | break; |
Jesse Barnes | 27f8227 | 2011-09-02 12:54:37 -0700 | [diff] [blame] | 1925 | case 2: |
| 1926 | if (IS_IVYBRIDGE(dev)) |
| 1927 | break; |
| 1928 | /* fall through otherwise */ |
Chris Wilson | 5c3b82e | 2009-02-11 13:25:09 +0000 | [diff] [blame] | 1929 | default: |
Jesse Barnes | a5071c2 | 2011-07-19 15:38:56 -0700 | [diff] [blame] | 1930 | DRM_ERROR("no plane for crtc\n"); |
Chris Wilson | 5c3b82e | 2009-02-11 13:25:09 +0000 | [diff] [blame] | 1931 | return -EINVAL; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1932 | } |
| 1933 | |
Chris Wilson | 5c3b82e | 2009-02-11 13:25:09 +0000 | [diff] [blame] | 1934 | mutex_lock(&dev->struct_mutex); |
Chris Wilson | 265db95 | 2010-09-20 15:41:01 +0100 | [diff] [blame] | 1935 | ret = intel_pin_and_fence_fb_obj(dev, |
| 1936 | to_intel_framebuffer(crtc->fb)->obj, |
Chris Wilson | 919926a | 2010-11-12 13:42:53 +0000 | [diff] [blame] | 1937 | NULL); |
Chris Wilson | 5c3b82e | 2009-02-11 13:25:09 +0000 | [diff] [blame] | 1938 | if (ret != 0) { |
| 1939 | mutex_unlock(&dev->struct_mutex); |
Jesse Barnes | a5071c2 | 2011-07-19 15:38:56 -0700 | [diff] [blame] | 1940 | DRM_ERROR("pin & fence failed\n"); |
Chris Wilson | 5c3b82e | 2009-02-11 13:25:09 +0000 | [diff] [blame] | 1941 | return ret; |
| 1942 | } |
Kristian Høgsberg | 3c4fdcf | 2008-12-17 22:14:46 -0500 | [diff] [blame] | 1943 | |
Chris Wilson | 14667a4 | 2012-04-03 17:58:35 +0100 | [diff] [blame] | 1944 | if (old_fb) |
| 1945 | intel_finish_fb(old_fb); |
Chris Wilson | 265db95 | 2010-09-20 15:41:01 +0100 | [diff] [blame] | 1946 | |
Chris Wilson | 6b8e6ed | 2012-04-17 15:08:19 +0100 | [diff] [blame] | 1947 | ret = dev_priv->display.update_plane(crtc, crtc->fb, x, y); |
Chris Wilson | 4e6cfef | 2010-08-08 13:20:19 +0100 | [diff] [blame] | 1948 | if (ret) { |
Chris Wilson | 1690e1e | 2011-12-14 13:57:08 +0100 | [diff] [blame] | 1949 | intel_unpin_fb_obj(to_intel_framebuffer(crtc->fb)->obj); |
Chris Wilson | 5c3b82e | 2009-02-11 13:25:09 +0000 | [diff] [blame] | 1950 | mutex_unlock(&dev->struct_mutex); |
Jesse Barnes | a5071c2 | 2011-07-19 15:38:56 -0700 | [diff] [blame] | 1951 | DRM_ERROR("failed to update base address\n"); |
Chris Wilson | 4e6cfef | 2010-08-08 13:20:19 +0100 | [diff] [blame] | 1952 | return ret; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1953 | } |
Kristian Høgsberg | 3c4fdcf | 2008-12-17 22:14:46 -0500 | [diff] [blame] | 1954 | |
Chris Wilson | b7f1de2 | 2010-12-14 16:09:31 +0000 | [diff] [blame] | 1955 | if (old_fb) { |
| 1956 | intel_wait_for_vblank(dev, intel_crtc->pipe); |
Chris Wilson | 1690e1e | 2011-12-14 13:57:08 +0100 | [diff] [blame] | 1957 | intel_unpin_fb_obj(to_intel_framebuffer(old_fb)->obj); |
Chris Wilson | b7f1de2 | 2010-12-14 16:09:31 +0000 | [diff] [blame] | 1958 | } |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 1959 | |
Chris Wilson | 6b8e6ed | 2012-04-17 15:08:19 +0100 | [diff] [blame] | 1960 | intel_update_fbc(dev); |
Chris Wilson | 5c3b82e | 2009-02-11 13:25:09 +0000 | [diff] [blame] | 1961 | mutex_unlock(&dev->struct_mutex); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1962 | |
| 1963 | if (!dev->primary->master) |
Chris Wilson | 5c3b82e | 2009-02-11 13:25:09 +0000 | [diff] [blame] | 1964 | return 0; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1965 | |
| 1966 | master_priv = dev->primary->master->driver_priv; |
| 1967 | if (!master_priv->sarea_priv) |
Chris Wilson | 5c3b82e | 2009-02-11 13:25:09 +0000 | [diff] [blame] | 1968 | return 0; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1969 | |
Chris Wilson | 265db95 | 2010-09-20 15:41:01 +0100 | [diff] [blame] | 1970 | if (intel_crtc->pipe) { |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1971 | master_priv->sarea_priv->pipeB_x = x; |
| 1972 | master_priv->sarea_priv->pipeB_y = y; |
Chris Wilson | 5c3b82e | 2009-02-11 13:25:09 +0000 | [diff] [blame] | 1973 | } else { |
| 1974 | master_priv->sarea_priv->pipeA_x = x; |
| 1975 | master_priv->sarea_priv->pipeA_y = y; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1976 | } |
Chris Wilson | 5c3b82e | 2009-02-11 13:25:09 +0000 | [diff] [blame] | 1977 | |
| 1978 | return 0; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1979 | } |
| 1980 | |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 1981 | static void ironlake_set_pll_edp(struct drm_crtc *crtc, int clock) |
Zhenyu Wang | 32f9d65 | 2009-07-24 01:00:32 +0800 | [diff] [blame] | 1982 | { |
| 1983 | struct drm_device *dev = crtc->dev; |
| 1984 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 1985 | u32 dpa_ctl; |
| 1986 | |
Zhao Yakui | 28c9773 | 2009-10-09 11:39:41 +0800 | [diff] [blame] | 1987 | DRM_DEBUG_KMS("eDP PLL enable for clock %d\n", clock); |
Zhenyu Wang | 32f9d65 | 2009-07-24 01:00:32 +0800 | [diff] [blame] | 1988 | dpa_ctl = I915_READ(DP_A); |
| 1989 | dpa_ctl &= ~DP_PLL_FREQ_MASK; |
| 1990 | |
| 1991 | if (clock < 200000) { |
| 1992 | u32 temp; |
| 1993 | dpa_ctl |= DP_PLL_FREQ_160MHZ; |
| 1994 | /* workaround for 160Mhz: |
| 1995 | 1) program 0x4600c bits 15:0 = 0x8124 |
| 1996 | 2) program 0x46010 bit 0 = 1 |
| 1997 | 3) program 0x46034 bit 24 = 1 |
| 1998 | 4) program 0x64000 bit 14 = 1 |
| 1999 | */ |
| 2000 | temp = I915_READ(0x4600c); |
| 2001 | temp &= 0xffff0000; |
| 2002 | I915_WRITE(0x4600c, temp | 0x8124); |
| 2003 | |
| 2004 | temp = I915_READ(0x46010); |
| 2005 | I915_WRITE(0x46010, temp | 1); |
| 2006 | |
| 2007 | temp = I915_READ(0x46034); |
| 2008 | I915_WRITE(0x46034, temp | (1 << 24)); |
| 2009 | } else { |
| 2010 | dpa_ctl |= DP_PLL_FREQ_270MHZ; |
| 2011 | } |
| 2012 | I915_WRITE(DP_A, dpa_ctl); |
| 2013 | |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2014 | POSTING_READ(DP_A); |
Zhenyu Wang | 32f9d65 | 2009-07-24 01:00:32 +0800 | [diff] [blame] | 2015 | udelay(500); |
| 2016 | } |
| 2017 | |
Zhenyu Wang | 5e84e1a | 2010-10-28 16:38:08 +0800 | [diff] [blame] | 2018 | static void intel_fdi_normal_train(struct drm_crtc *crtc) |
| 2019 | { |
| 2020 | struct drm_device *dev = crtc->dev; |
| 2021 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 2022 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 2023 | int pipe = intel_crtc->pipe; |
| 2024 | u32 reg, temp; |
| 2025 | |
| 2026 | /* enable normal train */ |
| 2027 | reg = FDI_TX_CTL(pipe); |
| 2028 | temp = I915_READ(reg); |
Keith Packard | 61e499b | 2011-05-17 16:13:52 -0700 | [diff] [blame] | 2029 | if (IS_IVYBRIDGE(dev)) { |
Jesse Barnes | 357555c | 2011-04-28 15:09:55 -0700 | [diff] [blame] | 2030 | temp &= ~FDI_LINK_TRAIN_NONE_IVB; |
| 2031 | temp |= FDI_LINK_TRAIN_NONE_IVB | FDI_TX_ENHANCE_FRAME_ENABLE; |
Keith Packard | 61e499b | 2011-05-17 16:13:52 -0700 | [diff] [blame] | 2032 | } else { |
| 2033 | temp &= ~FDI_LINK_TRAIN_NONE; |
| 2034 | temp |= FDI_LINK_TRAIN_NONE | FDI_TX_ENHANCE_FRAME_ENABLE; |
Jesse Barnes | 357555c | 2011-04-28 15:09:55 -0700 | [diff] [blame] | 2035 | } |
Zhenyu Wang | 5e84e1a | 2010-10-28 16:38:08 +0800 | [diff] [blame] | 2036 | I915_WRITE(reg, temp); |
| 2037 | |
| 2038 | reg = FDI_RX_CTL(pipe); |
| 2039 | temp = I915_READ(reg); |
| 2040 | if (HAS_PCH_CPT(dev)) { |
| 2041 | temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT; |
| 2042 | temp |= FDI_LINK_TRAIN_NORMAL_CPT; |
| 2043 | } else { |
| 2044 | temp &= ~FDI_LINK_TRAIN_NONE; |
| 2045 | temp |= FDI_LINK_TRAIN_NONE; |
| 2046 | } |
| 2047 | I915_WRITE(reg, temp | FDI_RX_ENHANCE_FRAME_ENABLE); |
| 2048 | |
| 2049 | /* wait one idle pattern time */ |
| 2050 | POSTING_READ(reg); |
| 2051 | udelay(1000); |
Jesse Barnes | 357555c | 2011-04-28 15:09:55 -0700 | [diff] [blame] | 2052 | |
| 2053 | /* IVB wants error correction enabled */ |
| 2054 | if (IS_IVYBRIDGE(dev)) |
| 2055 | I915_WRITE(reg, I915_READ(reg) | FDI_FS_ERRC_ENABLE | |
| 2056 | FDI_FE_ERRC_ENABLE); |
Zhenyu Wang | 5e84e1a | 2010-10-28 16:38:08 +0800 | [diff] [blame] | 2057 | } |
| 2058 | |
Jesse Barnes | 291427f | 2011-07-29 12:42:37 -0700 | [diff] [blame] | 2059 | static void cpt_phase_pointer_enable(struct drm_device *dev, int pipe) |
| 2060 | { |
| 2061 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 2062 | u32 flags = I915_READ(SOUTH_CHICKEN1); |
| 2063 | |
| 2064 | flags |= FDI_PHASE_SYNC_OVR(pipe); |
| 2065 | I915_WRITE(SOUTH_CHICKEN1, flags); /* once to unlock... */ |
| 2066 | flags |= FDI_PHASE_SYNC_EN(pipe); |
| 2067 | I915_WRITE(SOUTH_CHICKEN1, flags); /* then again to enable */ |
| 2068 | POSTING_READ(SOUTH_CHICKEN1); |
| 2069 | } |
| 2070 | |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 2071 | /* The FDI link training functions for ILK/Ibexpeak. */ |
| 2072 | static void ironlake_fdi_link_train(struct drm_crtc *crtc) |
| 2073 | { |
| 2074 | struct drm_device *dev = crtc->dev; |
| 2075 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 2076 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 2077 | int pipe = intel_crtc->pipe; |
Jesse Barnes | 0fc932b | 2011-01-04 15:09:37 -0800 | [diff] [blame] | 2078 | int plane = intel_crtc->plane; |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2079 | u32 reg, temp, tries; |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 2080 | |
Jesse Barnes | 0fc932b | 2011-01-04 15:09:37 -0800 | [diff] [blame] | 2081 | /* FDI needs bits from pipe & plane first */ |
| 2082 | assert_pipe_enabled(dev_priv, pipe); |
| 2083 | assert_plane_enabled(dev_priv, plane); |
| 2084 | |
Adam Jackson | e1a4474 | 2010-06-25 15:32:14 -0400 | [diff] [blame] | 2085 | /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit |
| 2086 | for train result */ |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2087 | reg = FDI_RX_IMR(pipe); |
| 2088 | temp = I915_READ(reg); |
Adam Jackson | e1a4474 | 2010-06-25 15:32:14 -0400 | [diff] [blame] | 2089 | temp &= ~FDI_RX_SYMBOL_LOCK; |
| 2090 | temp &= ~FDI_RX_BIT_LOCK; |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2091 | I915_WRITE(reg, temp); |
| 2092 | I915_READ(reg); |
Adam Jackson | e1a4474 | 2010-06-25 15:32:14 -0400 | [diff] [blame] | 2093 | udelay(150); |
| 2094 | |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 2095 | /* enable CPU FDI TX and PCH FDI RX */ |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2096 | reg = FDI_TX_CTL(pipe); |
| 2097 | temp = I915_READ(reg); |
Adam Jackson | 77ffb59 | 2010-04-12 11:38:44 -0400 | [diff] [blame] | 2098 | temp &= ~(7 << 19); |
| 2099 | temp |= (intel_crtc->fdi_lanes - 1) << 19; |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 2100 | temp &= ~FDI_LINK_TRAIN_NONE; |
| 2101 | temp |= FDI_LINK_TRAIN_PATTERN_1; |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2102 | I915_WRITE(reg, temp | FDI_TX_ENABLE); |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 2103 | |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2104 | reg = FDI_RX_CTL(pipe); |
| 2105 | temp = I915_READ(reg); |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 2106 | temp &= ~FDI_LINK_TRAIN_NONE; |
| 2107 | temp |= FDI_LINK_TRAIN_PATTERN_1; |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2108 | I915_WRITE(reg, temp | FDI_RX_ENABLE); |
| 2109 | |
| 2110 | POSTING_READ(reg); |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 2111 | udelay(150); |
| 2112 | |
Jesse Barnes | 5b2adf8 | 2010-10-07 16:01:15 -0700 | [diff] [blame] | 2113 | /* Ironlake workaround, enable clock pointer after FDI enable*/ |
Jesse Barnes | 6f06ce1 | 2011-01-04 15:09:38 -0800 | [diff] [blame] | 2114 | if (HAS_PCH_IBX(dev)) { |
| 2115 | I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR); |
| 2116 | I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR | |
| 2117 | FDI_RX_PHASE_SYNC_POINTER_EN); |
| 2118 | } |
Jesse Barnes | 5b2adf8 | 2010-10-07 16:01:15 -0700 | [diff] [blame] | 2119 | |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2120 | reg = FDI_RX_IIR(pipe); |
Adam Jackson | e1a4474 | 2010-06-25 15:32:14 -0400 | [diff] [blame] | 2121 | for (tries = 0; tries < 5; tries++) { |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2122 | temp = I915_READ(reg); |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 2123 | DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp); |
| 2124 | |
| 2125 | if ((temp & FDI_RX_BIT_LOCK)) { |
| 2126 | DRM_DEBUG_KMS("FDI train 1 done.\n"); |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2127 | I915_WRITE(reg, temp | FDI_RX_BIT_LOCK); |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 2128 | break; |
| 2129 | } |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 2130 | } |
Adam Jackson | e1a4474 | 2010-06-25 15:32:14 -0400 | [diff] [blame] | 2131 | if (tries == 5) |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2132 | DRM_ERROR("FDI train 1 fail!\n"); |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 2133 | |
| 2134 | /* Train 2 */ |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2135 | reg = FDI_TX_CTL(pipe); |
| 2136 | temp = I915_READ(reg); |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 2137 | temp &= ~FDI_LINK_TRAIN_NONE; |
| 2138 | temp |= FDI_LINK_TRAIN_PATTERN_2; |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2139 | I915_WRITE(reg, temp); |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 2140 | |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2141 | reg = FDI_RX_CTL(pipe); |
| 2142 | temp = I915_READ(reg); |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 2143 | temp &= ~FDI_LINK_TRAIN_NONE; |
| 2144 | temp |= FDI_LINK_TRAIN_PATTERN_2; |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2145 | I915_WRITE(reg, temp); |
| 2146 | |
| 2147 | POSTING_READ(reg); |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 2148 | udelay(150); |
| 2149 | |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2150 | reg = FDI_RX_IIR(pipe); |
Adam Jackson | e1a4474 | 2010-06-25 15:32:14 -0400 | [diff] [blame] | 2151 | for (tries = 0; tries < 5; tries++) { |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2152 | temp = I915_READ(reg); |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 2153 | DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp); |
| 2154 | |
| 2155 | if (temp & FDI_RX_SYMBOL_LOCK) { |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2156 | I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK); |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 2157 | DRM_DEBUG_KMS("FDI train 2 done.\n"); |
| 2158 | break; |
| 2159 | } |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 2160 | } |
Adam Jackson | e1a4474 | 2010-06-25 15:32:14 -0400 | [diff] [blame] | 2161 | if (tries == 5) |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2162 | DRM_ERROR("FDI train 2 fail!\n"); |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 2163 | |
| 2164 | DRM_DEBUG_KMS("FDI train done\n"); |
Jesse Barnes | 5c5313c | 2010-10-07 16:01:11 -0700 | [diff] [blame] | 2165 | |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 2166 | } |
| 2167 | |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 2168 | static const int snb_b_fdi_train_param[] = { |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 2169 | FDI_LINK_TRAIN_400MV_0DB_SNB_B, |
| 2170 | FDI_LINK_TRAIN_400MV_6DB_SNB_B, |
| 2171 | FDI_LINK_TRAIN_600MV_3_5DB_SNB_B, |
| 2172 | FDI_LINK_TRAIN_800MV_0DB_SNB_B, |
| 2173 | }; |
| 2174 | |
| 2175 | /* The FDI link training functions for SNB/Cougarpoint. */ |
| 2176 | static void gen6_fdi_link_train(struct drm_crtc *crtc) |
| 2177 | { |
| 2178 | struct drm_device *dev = crtc->dev; |
| 2179 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 2180 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 2181 | int pipe = intel_crtc->pipe; |
Sean Paul | fa37d39 | 2012-03-02 12:53:39 -0500 | [diff] [blame] | 2182 | u32 reg, temp, i, retry; |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 2183 | |
Adam Jackson | e1a4474 | 2010-06-25 15:32:14 -0400 | [diff] [blame] | 2184 | /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit |
| 2185 | for train result */ |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2186 | reg = FDI_RX_IMR(pipe); |
| 2187 | temp = I915_READ(reg); |
Adam Jackson | e1a4474 | 2010-06-25 15:32:14 -0400 | [diff] [blame] | 2188 | temp &= ~FDI_RX_SYMBOL_LOCK; |
| 2189 | temp &= ~FDI_RX_BIT_LOCK; |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2190 | I915_WRITE(reg, temp); |
| 2191 | |
| 2192 | POSTING_READ(reg); |
Adam Jackson | e1a4474 | 2010-06-25 15:32:14 -0400 | [diff] [blame] | 2193 | udelay(150); |
| 2194 | |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 2195 | /* enable CPU FDI TX and PCH FDI RX */ |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2196 | reg = FDI_TX_CTL(pipe); |
| 2197 | temp = I915_READ(reg); |
Adam Jackson | 77ffb59 | 2010-04-12 11:38:44 -0400 | [diff] [blame] | 2198 | temp &= ~(7 << 19); |
| 2199 | temp |= (intel_crtc->fdi_lanes - 1) << 19; |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 2200 | temp &= ~FDI_LINK_TRAIN_NONE; |
| 2201 | temp |= FDI_LINK_TRAIN_PATTERN_1; |
| 2202 | temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK; |
| 2203 | /* SNB-B */ |
| 2204 | temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B; |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2205 | I915_WRITE(reg, temp | FDI_TX_ENABLE); |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 2206 | |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2207 | reg = FDI_RX_CTL(pipe); |
| 2208 | temp = I915_READ(reg); |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 2209 | if (HAS_PCH_CPT(dev)) { |
| 2210 | temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT; |
| 2211 | temp |= FDI_LINK_TRAIN_PATTERN_1_CPT; |
| 2212 | } else { |
| 2213 | temp &= ~FDI_LINK_TRAIN_NONE; |
| 2214 | temp |= FDI_LINK_TRAIN_PATTERN_1; |
| 2215 | } |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2216 | I915_WRITE(reg, temp | FDI_RX_ENABLE); |
| 2217 | |
| 2218 | POSTING_READ(reg); |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 2219 | udelay(150); |
| 2220 | |
Jesse Barnes | 291427f | 2011-07-29 12:42:37 -0700 | [diff] [blame] | 2221 | if (HAS_PCH_CPT(dev)) |
| 2222 | cpt_phase_pointer_enable(dev, pipe); |
| 2223 | |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 2224 | for (i = 0; i < 4; i++) { |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2225 | reg = FDI_TX_CTL(pipe); |
| 2226 | temp = I915_READ(reg); |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 2227 | temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK; |
| 2228 | temp |= snb_b_fdi_train_param[i]; |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2229 | I915_WRITE(reg, temp); |
| 2230 | |
| 2231 | POSTING_READ(reg); |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 2232 | udelay(500); |
| 2233 | |
Sean Paul | fa37d39 | 2012-03-02 12:53:39 -0500 | [diff] [blame] | 2234 | for (retry = 0; retry < 5; retry++) { |
| 2235 | reg = FDI_RX_IIR(pipe); |
| 2236 | temp = I915_READ(reg); |
| 2237 | DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp); |
| 2238 | if (temp & FDI_RX_BIT_LOCK) { |
| 2239 | I915_WRITE(reg, temp | FDI_RX_BIT_LOCK); |
| 2240 | DRM_DEBUG_KMS("FDI train 1 done.\n"); |
| 2241 | break; |
| 2242 | } |
| 2243 | udelay(50); |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 2244 | } |
Sean Paul | fa37d39 | 2012-03-02 12:53:39 -0500 | [diff] [blame] | 2245 | if (retry < 5) |
| 2246 | break; |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 2247 | } |
| 2248 | if (i == 4) |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2249 | DRM_ERROR("FDI train 1 fail!\n"); |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 2250 | |
| 2251 | /* Train 2 */ |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2252 | reg = FDI_TX_CTL(pipe); |
| 2253 | temp = I915_READ(reg); |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 2254 | temp &= ~FDI_LINK_TRAIN_NONE; |
| 2255 | temp |= FDI_LINK_TRAIN_PATTERN_2; |
| 2256 | if (IS_GEN6(dev)) { |
| 2257 | temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK; |
| 2258 | /* SNB-B */ |
| 2259 | temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B; |
| 2260 | } |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2261 | I915_WRITE(reg, temp); |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 2262 | |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2263 | reg = FDI_RX_CTL(pipe); |
| 2264 | temp = I915_READ(reg); |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 2265 | if (HAS_PCH_CPT(dev)) { |
| 2266 | temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT; |
| 2267 | temp |= FDI_LINK_TRAIN_PATTERN_2_CPT; |
| 2268 | } else { |
| 2269 | temp &= ~FDI_LINK_TRAIN_NONE; |
| 2270 | temp |= FDI_LINK_TRAIN_PATTERN_2; |
| 2271 | } |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2272 | I915_WRITE(reg, temp); |
| 2273 | |
| 2274 | POSTING_READ(reg); |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 2275 | udelay(150); |
| 2276 | |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 2277 | for (i = 0; i < 4; i++) { |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2278 | reg = FDI_TX_CTL(pipe); |
| 2279 | temp = I915_READ(reg); |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 2280 | temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK; |
| 2281 | temp |= snb_b_fdi_train_param[i]; |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2282 | I915_WRITE(reg, temp); |
| 2283 | |
| 2284 | POSTING_READ(reg); |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 2285 | udelay(500); |
| 2286 | |
Sean Paul | fa37d39 | 2012-03-02 12:53:39 -0500 | [diff] [blame] | 2287 | for (retry = 0; retry < 5; retry++) { |
| 2288 | reg = FDI_RX_IIR(pipe); |
| 2289 | temp = I915_READ(reg); |
| 2290 | DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp); |
| 2291 | if (temp & FDI_RX_SYMBOL_LOCK) { |
| 2292 | I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK); |
| 2293 | DRM_DEBUG_KMS("FDI train 2 done.\n"); |
| 2294 | break; |
| 2295 | } |
| 2296 | udelay(50); |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 2297 | } |
Sean Paul | fa37d39 | 2012-03-02 12:53:39 -0500 | [diff] [blame] | 2298 | if (retry < 5) |
| 2299 | break; |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 2300 | } |
| 2301 | if (i == 4) |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2302 | DRM_ERROR("FDI train 2 fail!\n"); |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 2303 | |
| 2304 | DRM_DEBUG_KMS("FDI train done.\n"); |
| 2305 | } |
| 2306 | |
Jesse Barnes | 357555c | 2011-04-28 15:09:55 -0700 | [diff] [blame] | 2307 | /* Manual link training for Ivy Bridge A0 parts */ |
| 2308 | static void ivb_manual_fdi_link_train(struct drm_crtc *crtc) |
| 2309 | { |
| 2310 | struct drm_device *dev = crtc->dev; |
| 2311 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 2312 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 2313 | int pipe = intel_crtc->pipe; |
| 2314 | u32 reg, temp, i; |
| 2315 | |
| 2316 | /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit |
| 2317 | for train result */ |
| 2318 | reg = FDI_RX_IMR(pipe); |
| 2319 | temp = I915_READ(reg); |
| 2320 | temp &= ~FDI_RX_SYMBOL_LOCK; |
| 2321 | temp &= ~FDI_RX_BIT_LOCK; |
| 2322 | I915_WRITE(reg, temp); |
| 2323 | |
| 2324 | POSTING_READ(reg); |
| 2325 | udelay(150); |
| 2326 | |
| 2327 | /* enable CPU FDI TX and PCH FDI RX */ |
| 2328 | reg = FDI_TX_CTL(pipe); |
| 2329 | temp = I915_READ(reg); |
| 2330 | temp &= ~(7 << 19); |
| 2331 | temp |= (intel_crtc->fdi_lanes - 1) << 19; |
| 2332 | temp &= ~(FDI_LINK_TRAIN_AUTO | FDI_LINK_TRAIN_NONE_IVB); |
| 2333 | temp |= FDI_LINK_TRAIN_PATTERN_1_IVB; |
| 2334 | temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK; |
| 2335 | temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B; |
Jesse Barnes | c4f9c4c | 2011-10-10 14:28:52 -0700 | [diff] [blame] | 2336 | temp |= FDI_COMPOSITE_SYNC; |
Jesse Barnes | 357555c | 2011-04-28 15:09:55 -0700 | [diff] [blame] | 2337 | I915_WRITE(reg, temp | FDI_TX_ENABLE); |
| 2338 | |
| 2339 | reg = FDI_RX_CTL(pipe); |
| 2340 | temp = I915_READ(reg); |
| 2341 | temp &= ~FDI_LINK_TRAIN_AUTO; |
| 2342 | temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT; |
| 2343 | temp |= FDI_LINK_TRAIN_PATTERN_1_CPT; |
Jesse Barnes | c4f9c4c | 2011-10-10 14:28:52 -0700 | [diff] [blame] | 2344 | temp |= FDI_COMPOSITE_SYNC; |
Jesse Barnes | 357555c | 2011-04-28 15:09:55 -0700 | [diff] [blame] | 2345 | I915_WRITE(reg, temp | FDI_RX_ENABLE); |
| 2346 | |
| 2347 | POSTING_READ(reg); |
| 2348 | udelay(150); |
| 2349 | |
Jesse Barnes | 291427f | 2011-07-29 12:42:37 -0700 | [diff] [blame] | 2350 | if (HAS_PCH_CPT(dev)) |
| 2351 | cpt_phase_pointer_enable(dev, pipe); |
| 2352 | |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 2353 | for (i = 0; i < 4; i++) { |
Jesse Barnes | 357555c | 2011-04-28 15:09:55 -0700 | [diff] [blame] | 2354 | reg = FDI_TX_CTL(pipe); |
| 2355 | temp = I915_READ(reg); |
| 2356 | temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK; |
| 2357 | temp |= snb_b_fdi_train_param[i]; |
| 2358 | I915_WRITE(reg, temp); |
| 2359 | |
| 2360 | POSTING_READ(reg); |
| 2361 | udelay(500); |
| 2362 | |
| 2363 | reg = FDI_RX_IIR(pipe); |
| 2364 | temp = I915_READ(reg); |
| 2365 | DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp); |
| 2366 | |
| 2367 | if (temp & FDI_RX_BIT_LOCK || |
| 2368 | (I915_READ(reg) & FDI_RX_BIT_LOCK)) { |
| 2369 | I915_WRITE(reg, temp | FDI_RX_BIT_LOCK); |
| 2370 | DRM_DEBUG_KMS("FDI train 1 done.\n"); |
| 2371 | break; |
| 2372 | } |
| 2373 | } |
| 2374 | if (i == 4) |
| 2375 | DRM_ERROR("FDI train 1 fail!\n"); |
| 2376 | |
| 2377 | /* Train 2 */ |
| 2378 | reg = FDI_TX_CTL(pipe); |
| 2379 | temp = I915_READ(reg); |
| 2380 | temp &= ~FDI_LINK_TRAIN_NONE_IVB; |
| 2381 | temp |= FDI_LINK_TRAIN_PATTERN_2_IVB; |
| 2382 | temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK; |
| 2383 | temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B; |
| 2384 | I915_WRITE(reg, temp); |
| 2385 | |
| 2386 | reg = FDI_RX_CTL(pipe); |
| 2387 | temp = I915_READ(reg); |
| 2388 | temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT; |
| 2389 | temp |= FDI_LINK_TRAIN_PATTERN_2_CPT; |
| 2390 | I915_WRITE(reg, temp); |
| 2391 | |
| 2392 | POSTING_READ(reg); |
| 2393 | udelay(150); |
| 2394 | |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 2395 | for (i = 0; i < 4; i++) { |
Jesse Barnes | 357555c | 2011-04-28 15:09:55 -0700 | [diff] [blame] | 2396 | reg = FDI_TX_CTL(pipe); |
| 2397 | temp = I915_READ(reg); |
| 2398 | temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK; |
| 2399 | temp |= snb_b_fdi_train_param[i]; |
| 2400 | I915_WRITE(reg, temp); |
| 2401 | |
| 2402 | POSTING_READ(reg); |
| 2403 | udelay(500); |
| 2404 | |
| 2405 | reg = FDI_RX_IIR(pipe); |
| 2406 | temp = I915_READ(reg); |
| 2407 | DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp); |
| 2408 | |
| 2409 | if (temp & FDI_RX_SYMBOL_LOCK) { |
| 2410 | I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK); |
| 2411 | DRM_DEBUG_KMS("FDI train 2 done.\n"); |
| 2412 | break; |
| 2413 | } |
| 2414 | } |
| 2415 | if (i == 4) |
| 2416 | DRM_ERROR("FDI train 2 fail!\n"); |
| 2417 | |
| 2418 | DRM_DEBUG_KMS("FDI train done.\n"); |
| 2419 | } |
| 2420 | |
| 2421 | static void ironlake_fdi_pll_enable(struct drm_crtc *crtc) |
Jesse Barnes | 0e23b99 | 2010-09-10 11:10:00 -0700 | [diff] [blame] | 2422 | { |
| 2423 | struct drm_device *dev = crtc->dev; |
| 2424 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 2425 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 2426 | int pipe = intel_crtc->pipe; |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2427 | u32 reg, temp; |
Jesse Barnes | 0e23b99 | 2010-09-10 11:10:00 -0700 | [diff] [blame] | 2428 | |
Jesse Barnes | c64e311 | 2010-09-10 11:27:03 -0700 | [diff] [blame] | 2429 | /* Write the TU size bits so error detection works */ |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2430 | I915_WRITE(FDI_RX_TUSIZE1(pipe), |
| 2431 | I915_READ(PIPE_DATA_M1(pipe)) & TU_SIZE_MASK); |
Jesse Barnes | c64e311 | 2010-09-10 11:27:03 -0700 | [diff] [blame] | 2432 | |
Jesse Barnes | 0e23b99 | 2010-09-10 11:10:00 -0700 | [diff] [blame] | 2433 | /* enable PCH FDI RX PLL, wait warmup plus DMI latency */ |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2434 | reg = FDI_RX_CTL(pipe); |
| 2435 | temp = I915_READ(reg); |
| 2436 | temp &= ~((0x7 << 19) | (0x7 << 16)); |
Jesse Barnes | 0e23b99 | 2010-09-10 11:10:00 -0700 | [diff] [blame] | 2437 | temp |= (intel_crtc->fdi_lanes - 1) << 19; |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2438 | temp |= (I915_READ(PIPECONF(pipe)) & PIPE_BPC_MASK) << 11; |
| 2439 | I915_WRITE(reg, temp | FDI_RX_PLL_ENABLE); |
| 2440 | |
| 2441 | POSTING_READ(reg); |
Jesse Barnes | 0e23b99 | 2010-09-10 11:10:00 -0700 | [diff] [blame] | 2442 | udelay(200); |
| 2443 | |
| 2444 | /* Switch from Rawclk to PCDclk */ |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2445 | temp = I915_READ(reg); |
| 2446 | I915_WRITE(reg, temp | FDI_PCDCLK); |
| 2447 | |
| 2448 | POSTING_READ(reg); |
Jesse Barnes | 0e23b99 | 2010-09-10 11:10:00 -0700 | [diff] [blame] | 2449 | udelay(200); |
| 2450 | |
| 2451 | /* Enable CPU FDI TX PLL, always on for Ironlake */ |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2452 | reg = FDI_TX_CTL(pipe); |
| 2453 | temp = I915_READ(reg); |
Jesse Barnes | 0e23b99 | 2010-09-10 11:10:00 -0700 | [diff] [blame] | 2454 | if ((temp & FDI_TX_PLL_ENABLE) == 0) { |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2455 | I915_WRITE(reg, temp | FDI_TX_PLL_ENABLE); |
| 2456 | |
| 2457 | POSTING_READ(reg); |
Jesse Barnes | 0e23b99 | 2010-09-10 11:10:00 -0700 | [diff] [blame] | 2458 | udelay(100); |
| 2459 | } |
| 2460 | } |
| 2461 | |
Jesse Barnes | 291427f | 2011-07-29 12:42:37 -0700 | [diff] [blame] | 2462 | static void cpt_phase_pointer_disable(struct drm_device *dev, int pipe) |
| 2463 | { |
| 2464 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 2465 | u32 flags = I915_READ(SOUTH_CHICKEN1); |
| 2466 | |
| 2467 | flags &= ~(FDI_PHASE_SYNC_EN(pipe)); |
| 2468 | I915_WRITE(SOUTH_CHICKEN1, flags); /* once to disable... */ |
| 2469 | flags &= ~(FDI_PHASE_SYNC_OVR(pipe)); |
| 2470 | I915_WRITE(SOUTH_CHICKEN1, flags); /* then again to lock */ |
| 2471 | POSTING_READ(SOUTH_CHICKEN1); |
| 2472 | } |
Jesse Barnes | 0fc932b | 2011-01-04 15:09:37 -0800 | [diff] [blame] | 2473 | static void ironlake_fdi_disable(struct drm_crtc *crtc) |
| 2474 | { |
| 2475 | struct drm_device *dev = crtc->dev; |
| 2476 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 2477 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 2478 | int pipe = intel_crtc->pipe; |
| 2479 | u32 reg, temp; |
| 2480 | |
| 2481 | /* disable CPU FDI tx and PCH FDI rx */ |
| 2482 | reg = FDI_TX_CTL(pipe); |
| 2483 | temp = I915_READ(reg); |
| 2484 | I915_WRITE(reg, temp & ~FDI_TX_ENABLE); |
| 2485 | POSTING_READ(reg); |
| 2486 | |
| 2487 | reg = FDI_RX_CTL(pipe); |
| 2488 | temp = I915_READ(reg); |
| 2489 | temp &= ~(0x7 << 16); |
| 2490 | temp |= (I915_READ(PIPECONF(pipe)) & PIPE_BPC_MASK) << 11; |
| 2491 | I915_WRITE(reg, temp & ~FDI_RX_ENABLE); |
| 2492 | |
| 2493 | POSTING_READ(reg); |
| 2494 | udelay(100); |
| 2495 | |
| 2496 | /* Ironlake workaround, disable clock pointer after downing FDI */ |
Jesse Barnes | 6f06ce1 | 2011-01-04 15:09:38 -0800 | [diff] [blame] | 2497 | if (HAS_PCH_IBX(dev)) { |
| 2498 | I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR); |
Jesse Barnes | 0fc932b | 2011-01-04 15:09:37 -0800 | [diff] [blame] | 2499 | I915_WRITE(FDI_RX_CHICKEN(pipe), |
| 2500 | I915_READ(FDI_RX_CHICKEN(pipe) & |
Jesse Barnes | 6f06ce1 | 2011-01-04 15:09:38 -0800 | [diff] [blame] | 2501 | ~FDI_RX_PHASE_SYNC_POINTER_EN)); |
Jesse Barnes | 291427f | 2011-07-29 12:42:37 -0700 | [diff] [blame] | 2502 | } else if (HAS_PCH_CPT(dev)) { |
| 2503 | cpt_phase_pointer_disable(dev, pipe); |
Jesse Barnes | 6f06ce1 | 2011-01-04 15:09:38 -0800 | [diff] [blame] | 2504 | } |
Jesse Barnes | 0fc932b | 2011-01-04 15:09:37 -0800 | [diff] [blame] | 2505 | |
| 2506 | /* still set train pattern 1 */ |
| 2507 | reg = FDI_TX_CTL(pipe); |
| 2508 | temp = I915_READ(reg); |
| 2509 | temp &= ~FDI_LINK_TRAIN_NONE; |
| 2510 | temp |= FDI_LINK_TRAIN_PATTERN_1; |
| 2511 | I915_WRITE(reg, temp); |
| 2512 | |
| 2513 | reg = FDI_RX_CTL(pipe); |
| 2514 | temp = I915_READ(reg); |
| 2515 | if (HAS_PCH_CPT(dev)) { |
| 2516 | temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT; |
| 2517 | temp |= FDI_LINK_TRAIN_PATTERN_1_CPT; |
| 2518 | } else { |
| 2519 | temp &= ~FDI_LINK_TRAIN_NONE; |
| 2520 | temp |= FDI_LINK_TRAIN_PATTERN_1; |
| 2521 | } |
| 2522 | /* BPC in FDI rx is consistent with that in PIPECONF */ |
| 2523 | temp &= ~(0x07 << 16); |
| 2524 | temp |= (I915_READ(PIPECONF(pipe)) & PIPE_BPC_MASK) << 11; |
| 2525 | I915_WRITE(reg, temp); |
| 2526 | |
| 2527 | POSTING_READ(reg); |
| 2528 | udelay(100); |
| 2529 | } |
| 2530 | |
Chris Wilson | 6b383a7 | 2010-09-13 13:54:26 +0100 | [diff] [blame] | 2531 | /* |
| 2532 | * When we disable a pipe, we need to clear any pending scanline wait events |
| 2533 | * to avoid hanging the ring, which we assume we are waiting on. |
| 2534 | */ |
| 2535 | static void intel_clear_scanline_wait(struct drm_device *dev) |
| 2536 | { |
| 2537 | struct drm_i915_private *dev_priv = dev->dev_private; |
Chris Wilson | 8168bd4 | 2010-11-11 17:54:52 +0000 | [diff] [blame] | 2538 | struct intel_ring_buffer *ring; |
Chris Wilson | 6b383a7 | 2010-09-13 13:54:26 +0100 | [diff] [blame] | 2539 | u32 tmp; |
| 2540 | |
| 2541 | if (IS_GEN2(dev)) |
| 2542 | /* Can't break the hang on i8xx */ |
| 2543 | return; |
| 2544 | |
Chris Wilson | 1ec14ad | 2010-12-04 11:30:53 +0000 | [diff] [blame] | 2545 | ring = LP_RING(dev_priv); |
Chris Wilson | 8168bd4 | 2010-11-11 17:54:52 +0000 | [diff] [blame] | 2546 | tmp = I915_READ_CTL(ring); |
| 2547 | if (tmp & RING_WAIT) |
| 2548 | I915_WRITE_CTL(ring, tmp); |
Chris Wilson | 6b383a7 | 2010-09-13 13:54:26 +0100 | [diff] [blame] | 2549 | } |
| 2550 | |
Chris Wilson | e6c3a2a | 2010-09-23 23:04:43 +0100 | [diff] [blame] | 2551 | static void intel_crtc_wait_for_pending_flips(struct drm_crtc *crtc) |
| 2552 | { |
Chris Wilson | 0f91128 | 2012-04-17 10:05:38 +0100 | [diff] [blame] | 2553 | struct drm_device *dev = crtc->dev; |
Chris Wilson | e6c3a2a | 2010-09-23 23:04:43 +0100 | [diff] [blame] | 2554 | |
| 2555 | if (crtc->fb == NULL) |
| 2556 | return; |
| 2557 | |
Chris Wilson | 0f91128 | 2012-04-17 10:05:38 +0100 | [diff] [blame] | 2558 | mutex_lock(&dev->struct_mutex); |
| 2559 | intel_finish_fb(crtc->fb); |
| 2560 | mutex_unlock(&dev->struct_mutex); |
Chris Wilson | e6c3a2a | 2010-09-23 23:04:43 +0100 | [diff] [blame] | 2561 | } |
| 2562 | |
Jesse Barnes | 040484a | 2011-01-03 12:14:26 -0800 | [diff] [blame] | 2563 | static bool intel_crtc_driving_pch(struct drm_crtc *crtc) |
| 2564 | { |
| 2565 | struct drm_device *dev = crtc->dev; |
| 2566 | struct drm_mode_config *mode_config = &dev->mode_config; |
| 2567 | struct intel_encoder *encoder; |
| 2568 | |
| 2569 | /* |
| 2570 | * If there's a non-PCH eDP on this crtc, it must be DP_A, and that |
| 2571 | * must be driven by its own crtc; no sharing is possible. |
| 2572 | */ |
| 2573 | list_for_each_entry(encoder, &mode_config->encoder_list, base.head) { |
| 2574 | if (encoder->base.crtc != crtc) |
| 2575 | continue; |
| 2576 | |
| 2577 | switch (encoder->type) { |
| 2578 | case INTEL_OUTPUT_EDP: |
| 2579 | if (!intel_encoder_is_pch_edp(&encoder->base)) |
| 2580 | return false; |
| 2581 | continue; |
| 2582 | } |
| 2583 | } |
| 2584 | |
| 2585 | return true; |
| 2586 | } |
| 2587 | |
Jesse Barnes | f67a559 | 2011-01-05 10:31:48 -0800 | [diff] [blame] | 2588 | /* |
| 2589 | * Enable PCH resources required for PCH ports: |
| 2590 | * - PCH PLLs |
| 2591 | * - FDI training & RX/TX |
| 2592 | * - update transcoder timings |
| 2593 | * - DP transcoding bits |
| 2594 | * - transcoder |
| 2595 | */ |
| 2596 | static void ironlake_pch_enable(struct drm_crtc *crtc) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 2597 | { |
| 2598 | struct drm_device *dev = crtc->dev; |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 2599 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 2600 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 2601 | int pipe = intel_crtc->pipe; |
Jesse Barnes | ee7b9f9 | 2012-04-20 17:11:53 +0100 | [diff] [blame^] | 2602 | u32 reg, temp; |
Jesse Barnes | 6be4a60 | 2010-09-10 10:26:01 -0700 | [diff] [blame] | 2603 | |
Jesse Barnes | c98e9dc | 2010-09-10 10:57:18 -0700 | [diff] [blame] | 2604 | /* For PCH output, training FDI link */ |
Jesse Barnes | 674cf96 | 2011-04-28 14:27:04 -0700 | [diff] [blame] | 2605 | dev_priv->display.fdi_link_train(crtc); |
Jesse Barnes | 6be4a60 | 2010-09-10 10:26:01 -0700 | [diff] [blame] | 2606 | |
Jesse Barnes | ee7b9f9 | 2012-04-20 17:11:53 +0100 | [diff] [blame^] | 2607 | intel_enable_pch_pll(intel_crtc); |
Jesse Barnes | c98e9dc | 2010-09-10 10:57:18 -0700 | [diff] [blame] | 2608 | |
| 2609 | if (HAS_PCH_CPT(dev)) { |
Jesse Barnes | ee7b9f9 | 2012-04-20 17:11:53 +0100 | [diff] [blame^] | 2610 | u32 sel; |
Jesse Barnes | 4b645f1 | 2011-10-12 09:51:31 -0700 | [diff] [blame] | 2611 | |
Jesse Barnes | c98e9dc | 2010-09-10 10:57:18 -0700 | [diff] [blame] | 2612 | temp = I915_READ(PCH_DPLL_SEL); |
Jesse Barnes | ee7b9f9 | 2012-04-20 17:11:53 +0100 | [diff] [blame^] | 2613 | switch (pipe) { |
| 2614 | default: |
| 2615 | case 0: |
| 2616 | temp |= TRANSA_DPLL_ENABLE; |
| 2617 | sel = TRANSA_DPLLB_SEL; |
| 2618 | break; |
| 2619 | case 1: |
| 2620 | temp |= TRANSB_DPLL_ENABLE; |
| 2621 | sel = TRANSB_DPLLB_SEL; |
| 2622 | break; |
| 2623 | case 2: |
| 2624 | temp |= TRANSC_DPLL_ENABLE; |
| 2625 | sel = TRANSC_DPLLB_SEL; |
| 2626 | break; |
Jesse Barnes | d64311a | 2011-10-12 15:01:33 -0700 | [diff] [blame] | 2627 | } |
Jesse Barnes | ee7b9f9 | 2012-04-20 17:11:53 +0100 | [diff] [blame^] | 2628 | if (intel_crtc->pch_pll->pll_reg == _PCH_DPLL_B) |
| 2629 | temp |= sel; |
| 2630 | else |
| 2631 | temp &= ~sel; |
Jesse Barnes | c98e9dc | 2010-09-10 10:57:18 -0700 | [diff] [blame] | 2632 | I915_WRITE(PCH_DPLL_SEL, temp); |
Jesse Barnes | c98e9dc | 2010-09-10 10:57:18 -0700 | [diff] [blame] | 2633 | } |
Jesse Barnes | c98e9dc | 2010-09-10 10:57:18 -0700 | [diff] [blame] | 2634 | |
Jesse Barnes | d9b6cb5 | 2011-01-04 15:09:35 -0800 | [diff] [blame] | 2635 | /* set transcoder timing, panel must allow it */ |
| 2636 | assert_panel_unlocked(dev_priv, pipe); |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2637 | I915_WRITE(TRANS_HTOTAL(pipe), I915_READ(HTOTAL(pipe))); |
| 2638 | I915_WRITE(TRANS_HBLANK(pipe), I915_READ(HBLANK(pipe))); |
| 2639 | I915_WRITE(TRANS_HSYNC(pipe), I915_READ(HSYNC(pipe))); |
| 2640 | |
| 2641 | I915_WRITE(TRANS_VTOTAL(pipe), I915_READ(VTOTAL(pipe))); |
| 2642 | I915_WRITE(TRANS_VBLANK(pipe), I915_READ(VBLANK(pipe))); |
| 2643 | I915_WRITE(TRANS_VSYNC(pipe), I915_READ(VSYNC(pipe))); |
Daniel Vetter | 0529a0d | 2012-01-28 14:49:24 +0100 | [diff] [blame] | 2644 | I915_WRITE(TRANS_VSYNCSHIFT(pipe), I915_READ(VSYNCSHIFT(pipe))); |
Jesse Barnes | c98e9dc | 2010-09-10 10:57:18 -0700 | [diff] [blame] | 2645 | |
Zhenyu Wang | 5e84e1a | 2010-10-28 16:38:08 +0800 | [diff] [blame] | 2646 | intel_fdi_normal_train(crtc); |
| 2647 | |
Jesse Barnes | c98e9dc | 2010-09-10 10:57:18 -0700 | [diff] [blame] | 2648 | /* For PCH DP, enable TRANS_DP_CTL */ |
| 2649 | if (HAS_PCH_CPT(dev) && |
Keith Packard | 417e822 | 2011-11-01 19:54:11 -0700 | [diff] [blame] | 2650 | (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT) || |
| 2651 | intel_pipe_has_type(crtc, INTEL_OUTPUT_EDP))) { |
Jesse Barnes | 9325c9f | 2011-06-24 12:19:21 -0700 | [diff] [blame] | 2652 | u32 bpc = (I915_READ(PIPECONF(pipe)) & PIPE_BPC_MASK) >> 5; |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2653 | reg = TRANS_DP_CTL(pipe); |
| 2654 | temp = I915_READ(reg); |
| 2655 | temp &= ~(TRANS_DP_PORT_SEL_MASK | |
Eric Anholt | 220cad3 | 2010-11-18 09:32:58 +0800 | [diff] [blame] | 2656 | TRANS_DP_SYNC_MASK | |
| 2657 | TRANS_DP_BPC_MASK); |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2658 | temp |= (TRANS_DP_OUTPUT_ENABLE | |
| 2659 | TRANS_DP_ENH_FRAMING); |
Jesse Barnes | 9325c9f | 2011-06-24 12:19:21 -0700 | [diff] [blame] | 2660 | temp |= bpc << 9; /* same format but at 11:9 */ |
Jesse Barnes | c98e9dc | 2010-09-10 10:57:18 -0700 | [diff] [blame] | 2661 | |
| 2662 | if (crtc->mode.flags & DRM_MODE_FLAG_PHSYNC) |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2663 | temp |= TRANS_DP_HSYNC_ACTIVE_HIGH; |
Jesse Barnes | c98e9dc | 2010-09-10 10:57:18 -0700 | [diff] [blame] | 2664 | if (crtc->mode.flags & DRM_MODE_FLAG_PVSYNC) |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2665 | temp |= TRANS_DP_VSYNC_ACTIVE_HIGH; |
Jesse Barnes | c98e9dc | 2010-09-10 10:57:18 -0700 | [diff] [blame] | 2666 | |
| 2667 | switch (intel_trans_dp_port_sel(crtc)) { |
| 2668 | case PCH_DP_B: |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2669 | temp |= TRANS_DP_PORT_SEL_B; |
Jesse Barnes | c98e9dc | 2010-09-10 10:57:18 -0700 | [diff] [blame] | 2670 | break; |
| 2671 | case PCH_DP_C: |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2672 | temp |= TRANS_DP_PORT_SEL_C; |
Jesse Barnes | c98e9dc | 2010-09-10 10:57:18 -0700 | [diff] [blame] | 2673 | break; |
| 2674 | case PCH_DP_D: |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2675 | temp |= TRANS_DP_PORT_SEL_D; |
Jesse Barnes | c98e9dc | 2010-09-10 10:57:18 -0700 | [diff] [blame] | 2676 | break; |
| 2677 | default: |
| 2678 | DRM_DEBUG_KMS("Wrong PCH DP port return. Guess port B\n"); |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2679 | temp |= TRANS_DP_PORT_SEL_B; |
Jesse Barnes | c98e9dc | 2010-09-10 10:57:18 -0700 | [diff] [blame] | 2680 | break; |
| 2681 | } |
| 2682 | |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2683 | I915_WRITE(reg, temp); |
Jesse Barnes | c98e9dc | 2010-09-10 10:57:18 -0700 | [diff] [blame] | 2684 | } |
| 2685 | |
Jesse Barnes | 040484a | 2011-01-03 12:14:26 -0800 | [diff] [blame] | 2686 | intel_enable_transcoder(dev_priv, pipe); |
Jesse Barnes | f67a559 | 2011-01-05 10:31:48 -0800 | [diff] [blame] | 2687 | } |
| 2688 | |
Jesse Barnes | ee7b9f9 | 2012-04-20 17:11:53 +0100 | [diff] [blame^] | 2689 | static void intel_put_pch_pll(struct intel_crtc *intel_crtc) |
| 2690 | { |
| 2691 | struct intel_pch_pll *pll = intel_crtc->pch_pll; |
| 2692 | |
| 2693 | if (pll == NULL) |
| 2694 | return; |
| 2695 | |
| 2696 | if (pll->refcount == 0) { |
| 2697 | WARN(1, "bad PCH PLL refcount\n"); |
| 2698 | return; |
| 2699 | } |
| 2700 | |
| 2701 | --pll->refcount; |
| 2702 | intel_crtc->pch_pll = NULL; |
| 2703 | } |
| 2704 | |
| 2705 | static struct intel_pch_pll *intel_get_pch_pll(struct intel_crtc *intel_crtc, u32 dpll, u32 fp) |
| 2706 | { |
| 2707 | struct drm_i915_private *dev_priv = intel_crtc->base.dev->dev_private; |
| 2708 | struct intel_pch_pll *pll; |
| 2709 | int i; |
| 2710 | |
| 2711 | pll = intel_crtc->pch_pll; |
| 2712 | if (pll) { |
| 2713 | DRM_DEBUG_KMS("CRTC:%d reusing existing PCH PLL %x\n", |
| 2714 | intel_crtc->base.base.id, pll->pll_reg); |
| 2715 | goto prepare; |
| 2716 | } |
| 2717 | |
| 2718 | for (i = 0; i < dev_priv->num_pch_pll; i++) { |
| 2719 | pll = &dev_priv->pch_plls[i]; |
| 2720 | |
| 2721 | /* Only want to check enabled timings first */ |
| 2722 | if (pll->refcount == 0) |
| 2723 | continue; |
| 2724 | |
| 2725 | if (dpll == (I915_READ(pll->pll_reg) & 0x7fffffff) && |
| 2726 | fp == I915_READ(pll->fp0_reg)) { |
| 2727 | DRM_DEBUG_KMS("CRTC:%d sharing existing PCH PLL %x (refcount %d, ative %d)\n", |
| 2728 | intel_crtc->base.base.id, |
| 2729 | pll->pll_reg, pll->refcount, pll->active); |
| 2730 | |
| 2731 | goto found; |
| 2732 | } |
| 2733 | } |
| 2734 | |
| 2735 | /* Ok no matching timings, maybe there's a free one? */ |
| 2736 | for (i = 0; i < dev_priv->num_pch_pll; i++) { |
| 2737 | pll = &dev_priv->pch_plls[i]; |
| 2738 | if (pll->refcount == 0) { |
| 2739 | DRM_DEBUG_KMS("CRTC:%d allocated PCH PLL %x\n", |
| 2740 | intel_crtc->base.base.id, pll->pll_reg); |
| 2741 | goto found; |
| 2742 | } |
| 2743 | } |
| 2744 | |
| 2745 | return NULL; |
| 2746 | |
| 2747 | found: |
| 2748 | intel_crtc->pch_pll = pll; |
| 2749 | pll->refcount++; |
| 2750 | DRM_DEBUG_DRIVER("using pll %d for pipe %d\n", i, intel_crtc->pipe); |
| 2751 | prepare: /* separate function? */ |
| 2752 | DRM_DEBUG_DRIVER("switching PLL %x off\n", pll->pll_reg); |
| 2753 | I915_WRITE(pll->fp0_reg, fp); |
| 2754 | I915_WRITE(pll->pll_reg, dpll & ~DPLL_VCO_ENABLE); |
| 2755 | |
| 2756 | POSTING_READ(pll->pll_reg); |
| 2757 | udelay(150); |
| 2758 | pll->on = false; |
| 2759 | return pll; |
| 2760 | } |
| 2761 | |
Jesse Barnes | d4270e5 | 2011-10-11 10:43:02 -0700 | [diff] [blame] | 2762 | void intel_cpt_verify_modeset(struct drm_device *dev, int pipe) |
| 2763 | { |
| 2764 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 2765 | int dslreg = PIPEDSL(pipe), tc2reg = TRANS_CHICKEN2(pipe); |
| 2766 | u32 temp; |
| 2767 | |
| 2768 | temp = I915_READ(dslreg); |
| 2769 | udelay(500); |
| 2770 | if (wait_for(I915_READ(dslreg) != temp, 5)) { |
| 2771 | /* Without this, mode sets may fail silently on FDI */ |
| 2772 | I915_WRITE(tc2reg, TRANS_AUTOTRAIN_GEN_STALL_DIS); |
| 2773 | udelay(250); |
| 2774 | I915_WRITE(tc2reg, 0); |
| 2775 | if (wait_for(I915_READ(dslreg) != temp, 5)) |
| 2776 | DRM_ERROR("mode set failed: pipe %d stuck\n", pipe); |
| 2777 | } |
| 2778 | } |
| 2779 | |
Jesse Barnes | f67a559 | 2011-01-05 10:31:48 -0800 | [diff] [blame] | 2780 | static void ironlake_crtc_enable(struct drm_crtc *crtc) |
| 2781 | { |
| 2782 | struct drm_device *dev = crtc->dev; |
| 2783 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 2784 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 2785 | int pipe = intel_crtc->pipe; |
| 2786 | int plane = intel_crtc->plane; |
| 2787 | u32 temp; |
| 2788 | bool is_pch_port; |
| 2789 | |
| 2790 | if (intel_crtc->active) |
| 2791 | return; |
| 2792 | |
| 2793 | intel_crtc->active = true; |
| 2794 | intel_update_watermarks(dev); |
| 2795 | |
| 2796 | if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) { |
| 2797 | temp = I915_READ(PCH_LVDS); |
| 2798 | if ((temp & LVDS_PORT_EN) == 0) |
| 2799 | I915_WRITE(PCH_LVDS, temp | LVDS_PORT_EN); |
| 2800 | } |
| 2801 | |
| 2802 | is_pch_port = intel_crtc_driving_pch(crtc); |
| 2803 | |
| 2804 | if (is_pch_port) |
Jesse Barnes | 357555c | 2011-04-28 15:09:55 -0700 | [diff] [blame] | 2805 | ironlake_fdi_pll_enable(crtc); |
Jesse Barnes | f67a559 | 2011-01-05 10:31:48 -0800 | [diff] [blame] | 2806 | else |
| 2807 | ironlake_fdi_disable(crtc); |
| 2808 | |
| 2809 | /* Enable panel fitting for LVDS */ |
| 2810 | if (dev_priv->pch_pf_size && |
| 2811 | (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS) || HAS_eDP)) { |
| 2812 | /* Force use of hard-coded filter coefficients |
| 2813 | * as some pre-programmed values are broken, |
| 2814 | * e.g. x201. |
| 2815 | */ |
Jesse Barnes | 9db4a9c | 2011-02-07 12:26:52 -0800 | [diff] [blame] | 2816 | I915_WRITE(PF_CTL(pipe), PF_ENABLE | PF_FILTER_MED_3x3); |
| 2817 | I915_WRITE(PF_WIN_POS(pipe), dev_priv->pch_pf_pos); |
| 2818 | I915_WRITE(PF_WIN_SZ(pipe), dev_priv->pch_pf_size); |
Jesse Barnes | f67a559 | 2011-01-05 10:31:48 -0800 | [diff] [blame] | 2819 | } |
| 2820 | |
Jesse Barnes | 9c54c0d | 2011-06-15 23:32:33 +0200 | [diff] [blame] | 2821 | /* |
| 2822 | * On ILK+ LUT must be loaded before the pipe is running but with |
| 2823 | * clocks enabled |
| 2824 | */ |
| 2825 | intel_crtc_load_lut(crtc); |
| 2826 | |
Jesse Barnes | f67a559 | 2011-01-05 10:31:48 -0800 | [diff] [blame] | 2827 | intel_enable_pipe(dev_priv, pipe, is_pch_port); |
| 2828 | intel_enable_plane(dev_priv, plane, pipe); |
| 2829 | |
| 2830 | if (is_pch_port) |
| 2831 | ironlake_pch_enable(crtc); |
Jesse Barnes | 6be4a60 | 2010-09-10 10:26:01 -0700 | [diff] [blame] | 2832 | |
Ben Widawsky | d1ebd816 | 2011-04-25 20:11:50 +0100 | [diff] [blame] | 2833 | mutex_lock(&dev->struct_mutex); |
Chris Wilson | bed4a67 | 2010-09-11 10:47:47 +0100 | [diff] [blame] | 2834 | intel_update_fbc(dev); |
Ben Widawsky | d1ebd816 | 2011-04-25 20:11:50 +0100 | [diff] [blame] | 2835 | mutex_unlock(&dev->struct_mutex); |
| 2836 | |
Chris Wilson | 6b383a7 | 2010-09-13 13:54:26 +0100 | [diff] [blame] | 2837 | intel_crtc_update_cursor(crtc, true); |
Jesse Barnes | 6be4a60 | 2010-09-10 10:26:01 -0700 | [diff] [blame] | 2838 | } |
| 2839 | |
| 2840 | static void ironlake_crtc_disable(struct drm_crtc *crtc) |
| 2841 | { |
| 2842 | struct drm_device *dev = crtc->dev; |
| 2843 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 2844 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 2845 | int pipe = intel_crtc->pipe; |
| 2846 | int plane = intel_crtc->plane; |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2847 | u32 reg, temp; |
Jesse Barnes | 6be4a60 | 2010-09-10 10:26:01 -0700 | [diff] [blame] | 2848 | |
Chris Wilson | f7abfe8 | 2010-09-13 14:19:16 +0100 | [diff] [blame] | 2849 | if (!intel_crtc->active) |
| 2850 | return; |
| 2851 | |
Chris Wilson | e6c3a2a | 2010-09-23 23:04:43 +0100 | [diff] [blame] | 2852 | intel_crtc_wait_for_pending_flips(crtc); |
Jesse Barnes | 6be4a60 | 2010-09-10 10:26:01 -0700 | [diff] [blame] | 2853 | drm_vblank_off(dev, pipe); |
Chris Wilson | 6b383a7 | 2010-09-13 13:54:26 +0100 | [diff] [blame] | 2854 | intel_crtc_update_cursor(crtc, false); |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2855 | |
Jesse Barnes | b24e717 | 2011-01-04 15:09:30 -0800 | [diff] [blame] | 2856 | intel_disable_plane(dev_priv, plane, pipe); |
Jesse Barnes | 6be4a60 | 2010-09-10 10:26:01 -0700 | [diff] [blame] | 2857 | |
Chris Wilson | 973d04f | 2011-07-08 12:22:37 +0100 | [diff] [blame] | 2858 | if (dev_priv->cfb_plane == plane) |
| 2859 | intel_disable_fbc(dev); |
Jesse Barnes | 6be4a60 | 2010-09-10 10:26:01 -0700 | [diff] [blame] | 2860 | |
Jesse Barnes | b24e717 | 2011-01-04 15:09:30 -0800 | [diff] [blame] | 2861 | intel_disable_pipe(dev_priv, pipe); |
Jesse Barnes | 6be4a60 | 2010-09-10 10:26:01 -0700 | [diff] [blame] | 2862 | |
Jesse Barnes | 6be4a60 | 2010-09-10 10:26:01 -0700 | [diff] [blame] | 2863 | /* Disable PF */ |
Jesse Barnes | 9db4a9c | 2011-02-07 12:26:52 -0800 | [diff] [blame] | 2864 | I915_WRITE(PF_CTL(pipe), 0); |
| 2865 | I915_WRITE(PF_WIN_SZ(pipe), 0); |
Jesse Barnes | 6be4a60 | 2010-09-10 10:26:01 -0700 | [diff] [blame] | 2866 | |
Jesse Barnes | 0fc932b | 2011-01-04 15:09:37 -0800 | [diff] [blame] | 2867 | ironlake_fdi_disable(crtc); |
Jesse Barnes | 6be4a60 | 2010-09-10 10:26:01 -0700 | [diff] [blame] | 2868 | |
Jesse Barnes | 47a05ec | 2011-02-07 13:46:40 -0800 | [diff] [blame] | 2869 | /* This is a horrible layering violation; we should be doing this in |
| 2870 | * the connector/encoder ->prepare instead, but we don't always have |
| 2871 | * enough information there about the config to know whether it will |
| 2872 | * actually be necessary or just cause undesired flicker. |
| 2873 | */ |
| 2874 | intel_disable_pch_ports(dev_priv, pipe); |
Jesse Barnes | 6be4a60 | 2010-09-10 10:26:01 -0700 | [diff] [blame] | 2875 | |
Jesse Barnes | 040484a | 2011-01-03 12:14:26 -0800 | [diff] [blame] | 2876 | intel_disable_transcoder(dev_priv, pipe); |
Jesse Barnes | 6be4a60 | 2010-09-10 10:26:01 -0700 | [diff] [blame] | 2877 | |
Jesse Barnes | 6be4a60 | 2010-09-10 10:26:01 -0700 | [diff] [blame] | 2878 | if (HAS_PCH_CPT(dev)) { |
| 2879 | /* disable TRANS_DP_CTL */ |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2880 | reg = TRANS_DP_CTL(pipe); |
| 2881 | temp = I915_READ(reg); |
| 2882 | temp &= ~(TRANS_DP_OUTPUT_ENABLE | TRANS_DP_PORT_SEL_MASK); |
Eric Anholt | cb3543c | 2011-02-02 12:08:07 -0800 | [diff] [blame] | 2883 | temp |= TRANS_DP_PORT_SEL_NONE; |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2884 | I915_WRITE(reg, temp); |
Jesse Barnes | 6be4a60 | 2010-09-10 10:26:01 -0700 | [diff] [blame] | 2885 | |
| 2886 | /* disable DPLL_SEL */ |
| 2887 | temp = I915_READ(PCH_DPLL_SEL); |
Jesse Barnes | 9db4a9c | 2011-02-07 12:26:52 -0800 | [diff] [blame] | 2888 | switch (pipe) { |
| 2889 | case 0: |
Jesse Barnes | d64311a | 2011-10-12 15:01:33 -0700 | [diff] [blame] | 2890 | temp &= ~(TRANSA_DPLL_ENABLE | TRANSA_DPLLB_SEL); |
Jesse Barnes | 9db4a9c | 2011-02-07 12:26:52 -0800 | [diff] [blame] | 2891 | break; |
| 2892 | case 1: |
Jesse Barnes | 6be4a60 | 2010-09-10 10:26:01 -0700 | [diff] [blame] | 2893 | temp &= ~(TRANSB_DPLL_ENABLE | TRANSB_DPLLB_SEL); |
Jesse Barnes | 9db4a9c | 2011-02-07 12:26:52 -0800 | [diff] [blame] | 2894 | break; |
| 2895 | case 2: |
Jesse Barnes | 4b645f1 | 2011-10-12 09:51:31 -0700 | [diff] [blame] | 2896 | /* C shares PLL A or B */ |
Jesse Barnes | d64311a | 2011-10-12 15:01:33 -0700 | [diff] [blame] | 2897 | temp &= ~(TRANSC_DPLL_ENABLE | TRANSC_DPLLB_SEL); |
Jesse Barnes | 9db4a9c | 2011-02-07 12:26:52 -0800 | [diff] [blame] | 2898 | break; |
| 2899 | default: |
| 2900 | BUG(); /* wtf */ |
| 2901 | } |
Jesse Barnes | 6be4a60 | 2010-09-10 10:26:01 -0700 | [diff] [blame] | 2902 | I915_WRITE(PCH_DPLL_SEL, temp); |
Jesse Barnes | 6be4a60 | 2010-09-10 10:26:01 -0700 | [diff] [blame] | 2903 | } |
| 2904 | |
| 2905 | /* disable PCH DPLL */ |
Jesse Barnes | ee7b9f9 | 2012-04-20 17:11:53 +0100 | [diff] [blame^] | 2906 | intel_disable_pch_pll(intel_crtc); |
Jesse Barnes | 6be4a60 | 2010-09-10 10:26:01 -0700 | [diff] [blame] | 2907 | |
| 2908 | /* Switch from PCDclk to Rawclk */ |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2909 | reg = FDI_RX_CTL(pipe); |
| 2910 | temp = I915_READ(reg); |
| 2911 | I915_WRITE(reg, temp & ~FDI_PCDCLK); |
Jesse Barnes | 6be4a60 | 2010-09-10 10:26:01 -0700 | [diff] [blame] | 2912 | |
| 2913 | /* Disable CPU FDI TX PLL */ |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2914 | reg = FDI_TX_CTL(pipe); |
| 2915 | temp = I915_READ(reg); |
| 2916 | I915_WRITE(reg, temp & ~FDI_TX_PLL_ENABLE); |
| 2917 | |
| 2918 | POSTING_READ(reg); |
Jesse Barnes | 6be4a60 | 2010-09-10 10:26:01 -0700 | [diff] [blame] | 2919 | udelay(100); |
| 2920 | |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2921 | reg = FDI_RX_CTL(pipe); |
| 2922 | temp = I915_READ(reg); |
| 2923 | I915_WRITE(reg, temp & ~FDI_RX_PLL_ENABLE); |
Jesse Barnes | 6be4a60 | 2010-09-10 10:26:01 -0700 | [diff] [blame] | 2924 | |
| 2925 | /* Wait for the clocks to turn off. */ |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2926 | POSTING_READ(reg); |
Jesse Barnes | 6be4a60 | 2010-09-10 10:26:01 -0700 | [diff] [blame] | 2927 | udelay(100); |
Chris Wilson | 6b383a7 | 2010-09-13 13:54:26 +0100 | [diff] [blame] | 2928 | |
Chris Wilson | f7abfe8 | 2010-09-13 14:19:16 +0100 | [diff] [blame] | 2929 | intel_crtc->active = false; |
Chris Wilson | 6b383a7 | 2010-09-13 13:54:26 +0100 | [diff] [blame] | 2930 | intel_update_watermarks(dev); |
Ben Widawsky | d1ebd816 | 2011-04-25 20:11:50 +0100 | [diff] [blame] | 2931 | |
| 2932 | mutex_lock(&dev->struct_mutex); |
Chris Wilson | 6b383a7 | 2010-09-13 13:54:26 +0100 | [diff] [blame] | 2933 | intel_update_fbc(dev); |
| 2934 | intel_clear_scanline_wait(dev); |
Ben Widawsky | d1ebd816 | 2011-04-25 20:11:50 +0100 | [diff] [blame] | 2935 | mutex_unlock(&dev->struct_mutex); |
Jesse Barnes | 6be4a60 | 2010-09-10 10:26:01 -0700 | [diff] [blame] | 2936 | } |
| 2937 | |
| 2938 | static void ironlake_crtc_dpms(struct drm_crtc *crtc, int mode) |
| 2939 | { |
| 2940 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 2941 | int pipe = intel_crtc->pipe; |
| 2942 | int plane = intel_crtc->plane; |
| 2943 | |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 2944 | /* XXX: When our outputs are all unaware of DPMS modes other than off |
| 2945 | * and on, we should map those modes to DRM_MODE_DPMS_OFF in the CRTC. |
| 2946 | */ |
| 2947 | switch (mode) { |
| 2948 | case DRM_MODE_DPMS_ON: |
| 2949 | case DRM_MODE_DPMS_STANDBY: |
| 2950 | case DRM_MODE_DPMS_SUSPEND: |
Chris Wilson | 868dc58 | 2010-08-07 11:01:31 +0100 | [diff] [blame] | 2951 | DRM_DEBUG_KMS("crtc %d/%d dpms on\n", pipe, plane); |
Jesse Barnes | 6be4a60 | 2010-09-10 10:26:01 -0700 | [diff] [blame] | 2952 | ironlake_crtc_enable(crtc); |
Chris Wilson | 868dc58 | 2010-08-07 11:01:31 +0100 | [diff] [blame] | 2953 | break; |
Zhao Yakui | b52eb4d | 2010-06-12 14:32:27 +0800 | [diff] [blame] | 2954 | |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 2955 | case DRM_MODE_DPMS_OFF: |
Chris Wilson | 868dc58 | 2010-08-07 11:01:31 +0100 | [diff] [blame] | 2956 | DRM_DEBUG_KMS("crtc %d/%d dpms off\n", pipe, plane); |
Jesse Barnes | 6be4a60 | 2010-09-10 10:26:01 -0700 | [diff] [blame] | 2957 | ironlake_crtc_disable(crtc); |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 2958 | break; |
| 2959 | } |
| 2960 | } |
| 2961 | |
Jesse Barnes | ee7b9f9 | 2012-04-20 17:11:53 +0100 | [diff] [blame^] | 2962 | static void ironlake_crtc_off(struct drm_crtc *crtc) |
| 2963 | { |
| 2964 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 2965 | intel_put_pch_pll(intel_crtc); |
| 2966 | } |
| 2967 | |
Daniel Vetter | 02e792f | 2009-09-15 22:57:34 +0200 | [diff] [blame] | 2968 | static void intel_crtc_dpms_overlay(struct intel_crtc *intel_crtc, bool enable) |
| 2969 | { |
Daniel Vetter | 02e792f | 2009-09-15 22:57:34 +0200 | [diff] [blame] | 2970 | if (!enable && intel_crtc->overlay) { |
Chris Wilson | 23f09ce | 2010-08-12 13:53:37 +0100 | [diff] [blame] | 2971 | struct drm_device *dev = intel_crtc->base.dev; |
Chris Wilson | ce453d8 | 2011-02-21 14:43:56 +0000 | [diff] [blame] | 2972 | struct drm_i915_private *dev_priv = dev->dev_private; |
Daniel Vetter | 03f77ea | 2009-09-15 22:57:37 +0200 | [diff] [blame] | 2973 | |
Chris Wilson | 23f09ce | 2010-08-12 13:53:37 +0100 | [diff] [blame] | 2974 | mutex_lock(&dev->struct_mutex); |
Chris Wilson | ce453d8 | 2011-02-21 14:43:56 +0000 | [diff] [blame] | 2975 | dev_priv->mm.interruptible = false; |
| 2976 | (void) intel_overlay_switch_off(intel_crtc->overlay); |
| 2977 | dev_priv->mm.interruptible = true; |
Chris Wilson | 23f09ce | 2010-08-12 13:53:37 +0100 | [diff] [blame] | 2978 | mutex_unlock(&dev->struct_mutex); |
Daniel Vetter | 02e792f | 2009-09-15 22:57:34 +0200 | [diff] [blame] | 2979 | } |
Daniel Vetter | 02e792f | 2009-09-15 22:57:34 +0200 | [diff] [blame] | 2980 | |
Chris Wilson | 5dcdbcb | 2010-08-12 13:50:28 +0100 | [diff] [blame] | 2981 | /* Let userspace switch the overlay on again. In most cases userspace |
| 2982 | * has to recompute where to put it anyway. |
| 2983 | */ |
Daniel Vetter | 02e792f | 2009-09-15 22:57:34 +0200 | [diff] [blame] | 2984 | } |
| 2985 | |
Jesse Barnes | 0b8765c6 | 2010-09-10 10:31:34 -0700 | [diff] [blame] | 2986 | static void i9xx_crtc_enable(struct drm_crtc *crtc) |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 2987 | { |
| 2988 | struct drm_device *dev = crtc->dev; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 2989 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 2990 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 2991 | int pipe = intel_crtc->pipe; |
Jesse Barnes | 8082400 | 2009-09-10 15:28:06 -0700 | [diff] [blame] | 2992 | int plane = intel_crtc->plane; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 2993 | |
Chris Wilson | f7abfe8 | 2010-09-13 14:19:16 +0100 | [diff] [blame] | 2994 | if (intel_crtc->active) |
| 2995 | return; |
| 2996 | |
| 2997 | intel_crtc->active = true; |
Chris Wilson | 6b383a7 | 2010-09-13 13:54:26 +0100 | [diff] [blame] | 2998 | intel_update_watermarks(dev); |
| 2999 | |
Jesse Barnes | 63d7bbe | 2011-01-04 15:09:33 -0800 | [diff] [blame] | 3000 | intel_enable_pll(dev_priv, pipe); |
Jesse Barnes | 040484a | 2011-01-03 12:14:26 -0800 | [diff] [blame] | 3001 | intel_enable_pipe(dev_priv, pipe, false); |
Jesse Barnes | b24e717 | 2011-01-04 15:09:30 -0800 | [diff] [blame] | 3002 | intel_enable_plane(dev_priv, plane, pipe); |
Jesse Barnes | 0b8765c6 | 2010-09-10 10:31:34 -0700 | [diff] [blame] | 3003 | |
| 3004 | intel_crtc_load_lut(crtc); |
Chris Wilson | bed4a67 | 2010-09-11 10:47:47 +0100 | [diff] [blame] | 3005 | intel_update_fbc(dev); |
Jesse Barnes | 0b8765c6 | 2010-09-10 10:31:34 -0700 | [diff] [blame] | 3006 | |
| 3007 | /* Give the overlay scaler a chance to enable if it's on this pipe */ |
| 3008 | intel_crtc_dpms_overlay(intel_crtc, true); |
Chris Wilson | 6b383a7 | 2010-09-13 13:54:26 +0100 | [diff] [blame] | 3009 | intel_crtc_update_cursor(crtc, true); |
Jesse Barnes | 0b8765c6 | 2010-09-10 10:31:34 -0700 | [diff] [blame] | 3010 | } |
| 3011 | |
| 3012 | static void i9xx_crtc_disable(struct drm_crtc *crtc) |
| 3013 | { |
| 3014 | struct drm_device *dev = crtc->dev; |
| 3015 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 3016 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 3017 | int pipe = intel_crtc->pipe; |
| 3018 | int plane = intel_crtc->plane; |
Jesse Barnes | 0b8765c6 | 2010-09-10 10:31:34 -0700 | [diff] [blame] | 3019 | |
Chris Wilson | f7abfe8 | 2010-09-13 14:19:16 +0100 | [diff] [blame] | 3020 | if (!intel_crtc->active) |
| 3021 | return; |
| 3022 | |
Jesse Barnes | 0b8765c6 | 2010-09-10 10:31:34 -0700 | [diff] [blame] | 3023 | /* 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] | 3024 | intel_crtc_wait_for_pending_flips(crtc); |
| 3025 | drm_vblank_off(dev, pipe); |
Jesse Barnes | 0b8765c6 | 2010-09-10 10:31:34 -0700 | [diff] [blame] | 3026 | intel_crtc_dpms_overlay(intel_crtc, false); |
Chris Wilson | 6b383a7 | 2010-09-13 13:54:26 +0100 | [diff] [blame] | 3027 | intel_crtc_update_cursor(crtc, false); |
Jesse Barnes | 0b8765c6 | 2010-09-10 10:31:34 -0700 | [diff] [blame] | 3028 | |
Chris Wilson | 973d04f | 2011-07-08 12:22:37 +0100 | [diff] [blame] | 3029 | if (dev_priv->cfb_plane == plane) |
| 3030 | intel_disable_fbc(dev); |
Jesse Barnes | 0b8765c6 | 2010-09-10 10:31:34 -0700 | [diff] [blame] | 3031 | |
Jesse Barnes | b24e717 | 2011-01-04 15:09:30 -0800 | [diff] [blame] | 3032 | intel_disable_plane(dev_priv, plane, pipe); |
Jesse Barnes | b24e717 | 2011-01-04 15:09:30 -0800 | [diff] [blame] | 3033 | intel_disable_pipe(dev_priv, pipe); |
Jesse Barnes | 63d7bbe | 2011-01-04 15:09:33 -0800 | [diff] [blame] | 3034 | intel_disable_pll(dev_priv, pipe); |
Jesse Barnes | 0b8765c6 | 2010-09-10 10:31:34 -0700 | [diff] [blame] | 3035 | |
Chris Wilson | f7abfe8 | 2010-09-13 14:19:16 +0100 | [diff] [blame] | 3036 | intel_crtc->active = false; |
Chris Wilson | 6b383a7 | 2010-09-13 13:54:26 +0100 | [diff] [blame] | 3037 | intel_update_fbc(dev); |
| 3038 | intel_update_watermarks(dev); |
| 3039 | intel_clear_scanline_wait(dev); |
Jesse Barnes | 0b8765c6 | 2010-09-10 10:31:34 -0700 | [diff] [blame] | 3040 | } |
| 3041 | |
| 3042 | static void i9xx_crtc_dpms(struct drm_crtc *crtc, int mode) |
| 3043 | { |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 3044 | /* XXX: When our outputs are all unaware of DPMS modes other than off |
| 3045 | * and on, we should map those modes to DRM_MODE_DPMS_OFF in the CRTC. |
| 3046 | */ |
| 3047 | switch (mode) { |
| 3048 | case DRM_MODE_DPMS_ON: |
| 3049 | case DRM_MODE_DPMS_STANDBY: |
| 3050 | case DRM_MODE_DPMS_SUSPEND: |
Jesse Barnes | 0b8765c6 | 2010-09-10 10:31:34 -0700 | [diff] [blame] | 3051 | i9xx_crtc_enable(crtc); |
| 3052 | break; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 3053 | case DRM_MODE_DPMS_OFF: |
Jesse Barnes | 0b8765c6 | 2010-09-10 10:31:34 -0700 | [diff] [blame] | 3054 | i9xx_crtc_disable(crtc); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 3055 | break; |
| 3056 | } |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 3057 | } |
| 3058 | |
Jesse Barnes | ee7b9f9 | 2012-04-20 17:11:53 +0100 | [diff] [blame^] | 3059 | static void i9xx_crtc_off(struct drm_crtc *crtc) |
| 3060 | { |
| 3061 | } |
| 3062 | |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 3063 | /** |
| 3064 | * Sets the power management mode of the pipe and plane. |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 3065 | */ |
| 3066 | static void intel_crtc_dpms(struct drm_crtc *crtc, int mode) |
| 3067 | { |
| 3068 | struct drm_device *dev = crtc->dev; |
Jesse Barnes | e70236a | 2009-09-21 10:42:27 -0700 | [diff] [blame] | 3069 | struct drm_i915_private *dev_priv = dev->dev_private; |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 3070 | struct drm_i915_master_private *master_priv; |
| 3071 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 3072 | int pipe = intel_crtc->pipe; |
| 3073 | bool enabled; |
| 3074 | |
Chris Wilson | 032d2a0 | 2010-09-06 16:17:22 +0100 | [diff] [blame] | 3075 | if (intel_crtc->dpms_mode == mode) |
| 3076 | return; |
| 3077 | |
Chris Wilson | debcadd | 2010-08-07 11:01:33 +0100 | [diff] [blame] | 3078 | intel_crtc->dpms_mode = mode; |
Chris Wilson | debcadd | 2010-08-07 11:01:33 +0100 | [diff] [blame] | 3079 | |
Jesse Barnes | e70236a | 2009-09-21 10:42:27 -0700 | [diff] [blame] | 3080 | dev_priv->display.dpms(crtc, mode); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 3081 | |
| 3082 | if (!dev->primary->master) |
| 3083 | return; |
| 3084 | |
| 3085 | master_priv = dev->primary->master->driver_priv; |
| 3086 | if (!master_priv->sarea_priv) |
| 3087 | return; |
| 3088 | |
| 3089 | enabled = crtc->enabled && mode != DRM_MODE_DPMS_OFF; |
| 3090 | |
| 3091 | switch (pipe) { |
| 3092 | case 0: |
| 3093 | master_priv->sarea_priv->pipeA_w = enabled ? crtc->mode.hdisplay : 0; |
| 3094 | master_priv->sarea_priv->pipeA_h = enabled ? crtc->mode.vdisplay : 0; |
| 3095 | break; |
| 3096 | case 1: |
| 3097 | master_priv->sarea_priv->pipeB_w = enabled ? crtc->mode.hdisplay : 0; |
| 3098 | master_priv->sarea_priv->pipeB_h = enabled ? crtc->mode.vdisplay : 0; |
| 3099 | break; |
| 3100 | default: |
Jesse Barnes | 9db4a9c | 2011-02-07 12:26:52 -0800 | [diff] [blame] | 3101 | 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] | 3102 | break; |
| 3103 | } |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 3104 | } |
| 3105 | |
Chris Wilson | cdd5998 | 2010-09-08 16:30:16 +0100 | [diff] [blame] | 3106 | static void intel_crtc_disable(struct drm_crtc *crtc) |
| 3107 | { |
| 3108 | struct drm_crtc_helper_funcs *crtc_funcs = crtc->helper_private; |
| 3109 | struct drm_device *dev = crtc->dev; |
Jesse Barnes | ee7b9f9 | 2012-04-20 17:11:53 +0100 | [diff] [blame^] | 3110 | struct drm_i915_private *dev_priv = dev->dev_private; |
Chris Wilson | cdd5998 | 2010-09-08 16:30:16 +0100 | [diff] [blame] | 3111 | |
| 3112 | crtc_funcs->dpms(crtc, DRM_MODE_DPMS_OFF); |
Jesse Barnes | ee7b9f9 | 2012-04-20 17:11:53 +0100 | [diff] [blame^] | 3113 | dev_priv->display.off(crtc); |
| 3114 | |
Chris Wilson | 931872f | 2012-01-16 23:01:13 +0000 | [diff] [blame] | 3115 | assert_plane_disabled(dev->dev_private, to_intel_crtc(crtc)->plane); |
| 3116 | assert_pipe_disabled(dev->dev_private, to_intel_crtc(crtc)->pipe); |
Chris Wilson | cdd5998 | 2010-09-08 16:30:16 +0100 | [diff] [blame] | 3117 | |
| 3118 | if (crtc->fb) { |
| 3119 | mutex_lock(&dev->struct_mutex); |
Chris Wilson | 1690e1e | 2011-12-14 13:57:08 +0100 | [diff] [blame] | 3120 | intel_unpin_fb_obj(to_intel_framebuffer(crtc->fb)->obj); |
Chris Wilson | cdd5998 | 2010-09-08 16:30:16 +0100 | [diff] [blame] | 3121 | mutex_unlock(&dev->struct_mutex); |
| 3122 | } |
| 3123 | } |
| 3124 | |
Jesse Barnes | 7e7d76c | 2010-09-10 10:47:20 -0700 | [diff] [blame] | 3125 | /* Prepare for a mode set. |
| 3126 | * |
| 3127 | * Note we could be a lot smarter here. We need to figure out which outputs |
| 3128 | * will be enabled, which disabled (in short, how the config will changes) |
| 3129 | * and perform the minimum necessary steps to accomplish that, e.g. updating |
| 3130 | * watermarks, FBC configuration, making sure PLLs are programmed correctly, |
| 3131 | * panel fitting is in the proper state, etc. |
| 3132 | */ |
| 3133 | static void i9xx_crtc_prepare(struct drm_crtc *crtc) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 3134 | { |
Jesse Barnes | 7e7d76c | 2010-09-10 10:47:20 -0700 | [diff] [blame] | 3135 | i9xx_crtc_disable(crtc); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 3136 | } |
| 3137 | |
Jesse Barnes | 7e7d76c | 2010-09-10 10:47:20 -0700 | [diff] [blame] | 3138 | static void i9xx_crtc_commit(struct drm_crtc *crtc) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 3139 | { |
Jesse Barnes | 7e7d76c | 2010-09-10 10:47:20 -0700 | [diff] [blame] | 3140 | i9xx_crtc_enable(crtc); |
Jesse Barnes | 7e7d76c | 2010-09-10 10:47:20 -0700 | [diff] [blame] | 3141 | } |
| 3142 | |
| 3143 | static void ironlake_crtc_prepare(struct drm_crtc *crtc) |
| 3144 | { |
Jesse Barnes | 7e7d76c | 2010-09-10 10:47:20 -0700 | [diff] [blame] | 3145 | ironlake_crtc_disable(crtc); |
Jesse Barnes | 7e7d76c | 2010-09-10 10:47:20 -0700 | [diff] [blame] | 3146 | } |
| 3147 | |
| 3148 | static void ironlake_crtc_commit(struct drm_crtc *crtc) |
| 3149 | { |
Jesse Barnes | 7e7d76c | 2010-09-10 10:47:20 -0700 | [diff] [blame] | 3150 | ironlake_crtc_enable(crtc); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 3151 | } |
| 3152 | |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 3153 | void intel_encoder_prepare(struct drm_encoder *encoder) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 3154 | { |
| 3155 | struct drm_encoder_helper_funcs *encoder_funcs = encoder->helper_private; |
| 3156 | /* lvds has its own version of prepare see intel_lvds_prepare */ |
| 3157 | encoder_funcs->dpms(encoder, DRM_MODE_DPMS_OFF); |
| 3158 | } |
| 3159 | |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 3160 | void intel_encoder_commit(struct drm_encoder *encoder) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 3161 | { |
| 3162 | struct drm_encoder_helper_funcs *encoder_funcs = encoder->helper_private; |
Jesse Barnes | d4270e5 | 2011-10-11 10:43:02 -0700 | [diff] [blame] | 3163 | struct drm_device *dev = encoder->dev; |
| 3164 | struct intel_encoder *intel_encoder = to_intel_encoder(encoder); |
| 3165 | struct intel_crtc *intel_crtc = to_intel_crtc(intel_encoder->base.crtc); |
| 3166 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 3167 | /* lvds has its own version of commit see intel_lvds_commit */ |
| 3168 | encoder_funcs->dpms(encoder, DRM_MODE_DPMS_ON); |
Jesse Barnes | d4270e5 | 2011-10-11 10:43:02 -0700 | [diff] [blame] | 3169 | |
| 3170 | if (HAS_PCH_CPT(dev)) |
| 3171 | intel_cpt_verify_modeset(dev, intel_crtc->pipe); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 3172 | } |
| 3173 | |
Chris Wilson | ea5b213 | 2010-08-04 13:50:23 +0100 | [diff] [blame] | 3174 | void intel_encoder_destroy(struct drm_encoder *encoder) |
| 3175 | { |
Chris Wilson | 4ef69c7 | 2010-09-09 15:14:28 +0100 | [diff] [blame] | 3176 | struct intel_encoder *intel_encoder = to_intel_encoder(encoder); |
Chris Wilson | ea5b213 | 2010-08-04 13:50:23 +0100 | [diff] [blame] | 3177 | |
Chris Wilson | ea5b213 | 2010-08-04 13:50:23 +0100 | [diff] [blame] | 3178 | drm_encoder_cleanup(encoder); |
| 3179 | kfree(intel_encoder); |
| 3180 | } |
| 3181 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 3182 | static bool intel_crtc_mode_fixup(struct drm_crtc *crtc, |
| 3183 | struct drm_display_mode *mode, |
| 3184 | struct drm_display_mode *adjusted_mode) |
| 3185 | { |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 3186 | struct drm_device *dev = crtc->dev; |
Chris Wilson | 8974935 | 2010-09-12 18:25:19 +0100 | [diff] [blame] | 3187 | |
Eric Anholt | bad720f | 2009-10-22 16:11:14 -0700 | [diff] [blame] | 3188 | if (HAS_PCH_SPLIT(dev)) { |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 3189 | /* FDI link clock is fixed at 2.7G */ |
Jesse Barnes | 2377b74 | 2010-07-07 14:06:43 -0700 | [diff] [blame] | 3190 | if (mode->clock * 3 > IRONLAKE_FDI_FREQ * 4) |
| 3191 | return false; |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 3192 | } |
Chris Wilson | 8974935 | 2010-09-12 18:25:19 +0100 | [diff] [blame] | 3193 | |
Daniel Vetter | ca9bfa7 | 2012-01-28 14:49:20 +0100 | [diff] [blame] | 3194 | /* All interlaced capable intel hw wants timings in frames. */ |
| 3195 | drm_mode_set_crtcinfo(adjusted_mode, 0); |
Chris Wilson | 8974935 | 2010-09-12 18:25:19 +0100 | [diff] [blame] | 3196 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 3197 | return true; |
| 3198 | } |
| 3199 | |
Jesse Barnes | 25eb05fc | 2012-03-28 13:39:23 -0700 | [diff] [blame] | 3200 | static int valleyview_get_display_clock_speed(struct drm_device *dev) |
| 3201 | { |
| 3202 | return 400000; /* FIXME */ |
| 3203 | } |
| 3204 | |
Jesse Barnes | e70236a | 2009-09-21 10:42:27 -0700 | [diff] [blame] | 3205 | static int i945_get_display_clock_speed(struct drm_device *dev) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 3206 | { |
Jesse Barnes | e70236a | 2009-09-21 10:42:27 -0700 | [diff] [blame] | 3207 | return 400000; |
| 3208 | } |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 3209 | |
Jesse Barnes | e70236a | 2009-09-21 10:42:27 -0700 | [diff] [blame] | 3210 | static int i915_get_display_clock_speed(struct drm_device *dev) |
| 3211 | { |
| 3212 | return 333000; |
| 3213 | } |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 3214 | |
Jesse Barnes | e70236a | 2009-09-21 10:42:27 -0700 | [diff] [blame] | 3215 | static int i9xx_misc_get_display_clock_speed(struct drm_device *dev) |
| 3216 | { |
| 3217 | return 200000; |
| 3218 | } |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 3219 | |
Jesse Barnes | e70236a | 2009-09-21 10:42:27 -0700 | [diff] [blame] | 3220 | static int i915gm_get_display_clock_speed(struct drm_device *dev) |
| 3221 | { |
| 3222 | u16 gcfgc = 0; |
| 3223 | |
| 3224 | pci_read_config_word(dev->pdev, GCFGC, &gcfgc); |
| 3225 | |
| 3226 | if (gcfgc & GC_LOW_FREQUENCY_ENABLE) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 3227 | return 133000; |
Jesse Barnes | e70236a | 2009-09-21 10:42:27 -0700 | [diff] [blame] | 3228 | else { |
| 3229 | switch (gcfgc & GC_DISPLAY_CLOCK_MASK) { |
| 3230 | case GC_DISPLAY_CLOCK_333_MHZ: |
| 3231 | return 333000; |
| 3232 | default: |
| 3233 | case GC_DISPLAY_CLOCK_190_200_MHZ: |
| 3234 | return 190000; |
| 3235 | } |
| 3236 | } |
| 3237 | } |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 3238 | |
Jesse Barnes | e70236a | 2009-09-21 10:42:27 -0700 | [diff] [blame] | 3239 | static int i865_get_display_clock_speed(struct drm_device *dev) |
| 3240 | { |
| 3241 | return 266000; |
| 3242 | } |
| 3243 | |
| 3244 | static int i855_get_display_clock_speed(struct drm_device *dev) |
| 3245 | { |
| 3246 | u16 hpllcc = 0; |
| 3247 | /* Assume that the hardware is in the high speed state. This |
| 3248 | * should be the default. |
| 3249 | */ |
| 3250 | switch (hpllcc & GC_CLOCK_CONTROL_MASK) { |
| 3251 | case GC_CLOCK_133_200: |
| 3252 | case GC_CLOCK_100_200: |
| 3253 | return 200000; |
| 3254 | case GC_CLOCK_166_250: |
| 3255 | return 250000; |
| 3256 | case GC_CLOCK_100_133: |
| 3257 | return 133000; |
| 3258 | } |
| 3259 | |
| 3260 | /* Shouldn't happen */ |
| 3261 | return 0; |
| 3262 | } |
| 3263 | |
| 3264 | static int i830_get_display_clock_speed(struct drm_device *dev) |
| 3265 | { |
| 3266 | return 133000; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 3267 | } |
| 3268 | |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 3269 | struct fdi_m_n { |
| 3270 | u32 tu; |
| 3271 | u32 gmch_m; |
| 3272 | u32 gmch_n; |
| 3273 | u32 link_m; |
| 3274 | u32 link_n; |
| 3275 | }; |
| 3276 | |
| 3277 | static void |
| 3278 | fdi_reduce_ratio(u32 *num, u32 *den) |
| 3279 | { |
| 3280 | while (*num > 0xffffff || *den > 0xffffff) { |
| 3281 | *num >>= 1; |
| 3282 | *den >>= 1; |
| 3283 | } |
| 3284 | } |
| 3285 | |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 3286 | static void |
Adam Jackson | f2b115e | 2009-12-03 17:14:42 -0500 | [diff] [blame] | 3287 | ironlake_compute_m_n(int bits_per_pixel, int nlanes, int pixel_clock, |
| 3288 | int link_clock, struct fdi_m_n *m_n) |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 3289 | { |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 3290 | m_n->tu = 64; /* default size */ |
| 3291 | |
Chris Wilson | 22ed111 | 2010-12-04 01:01:29 +0000 | [diff] [blame] | 3292 | /* BUG_ON(pixel_clock > INT_MAX / 36); */ |
| 3293 | m_n->gmch_m = bits_per_pixel * pixel_clock; |
| 3294 | m_n->gmch_n = link_clock * nlanes * 8; |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 3295 | fdi_reduce_ratio(&m_n->gmch_m, &m_n->gmch_n); |
| 3296 | |
Chris Wilson | 22ed111 | 2010-12-04 01:01:29 +0000 | [diff] [blame] | 3297 | m_n->link_m = pixel_clock; |
| 3298 | m_n->link_n = link_clock; |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 3299 | fdi_reduce_ratio(&m_n->link_m, &m_n->link_n); |
| 3300 | } |
| 3301 | |
Chris Wilson | a761503 | 2011-01-12 17:04:08 +0000 | [diff] [blame] | 3302 | static inline bool intel_panel_use_ssc(struct drm_i915_private *dev_priv) |
| 3303 | { |
Keith Packard | 72bbe58 | 2011-09-26 16:09:45 -0700 | [diff] [blame] | 3304 | if (i915_panel_use_ssc >= 0) |
| 3305 | return i915_panel_use_ssc != 0; |
| 3306 | return dev_priv->lvds_use_ssc |
Keith Packard | 435793d | 2011-07-12 14:56:22 -0700 | [diff] [blame] | 3307 | && !(dev_priv->quirks & QUIRK_LVDS_SSC_DISABLE); |
Chris Wilson | a761503 | 2011-01-12 17:04:08 +0000 | [diff] [blame] | 3308 | } |
| 3309 | |
Jesse Barnes | 5a35420 | 2011-06-24 12:19:22 -0700 | [diff] [blame] | 3310 | /** |
| 3311 | * intel_choose_pipe_bpp_dither - figure out what color depth the pipe should send |
| 3312 | * @crtc: CRTC structure |
Adam Jackson | 3b5c78a | 2011-12-13 15:41:00 -0800 | [diff] [blame] | 3313 | * @mode: requested mode |
Jesse Barnes | 5a35420 | 2011-06-24 12:19:22 -0700 | [diff] [blame] | 3314 | * |
| 3315 | * A pipe may be connected to one or more outputs. Based on the depth of the |
| 3316 | * attached framebuffer, choose a good color depth to use on the pipe. |
| 3317 | * |
| 3318 | * If possible, match the pipe depth to the fb depth. In some cases, this |
| 3319 | * isn't ideal, because the connected output supports a lesser or restricted |
| 3320 | * set of depths. Resolve that here: |
| 3321 | * LVDS typically supports only 6bpc, so clamp down in that case |
| 3322 | * HDMI supports only 8bpc or 12bpc, so clamp to 8bpc with dither for 10bpc |
| 3323 | * Displays may support a restricted set as well, check EDID and clamp as |
| 3324 | * appropriate. |
Adam Jackson | 3b5c78a | 2011-12-13 15:41:00 -0800 | [diff] [blame] | 3325 | * DP may want to dither down to 6bpc to fit larger modes |
Jesse Barnes | 5a35420 | 2011-06-24 12:19:22 -0700 | [diff] [blame] | 3326 | * |
| 3327 | * RETURNS: |
| 3328 | * Dithering requirement (i.e. false if display bpc and pipe bpc match, |
| 3329 | * true if they don't match). |
| 3330 | */ |
| 3331 | static bool intel_choose_pipe_bpp_dither(struct drm_crtc *crtc, |
Adam Jackson | 3b5c78a | 2011-12-13 15:41:00 -0800 | [diff] [blame] | 3332 | unsigned int *pipe_bpp, |
| 3333 | struct drm_display_mode *mode) |
Jesse Barnes | 5a35420 | 2011-06-24 12:19:22 -0700 | [diff] [blame] | 3334 | { |
| 3335 | struct drm_device *dev = crtc->dev; |
| 3336 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 3337 | struct drm_encoder *encoder; |
| 3338 | struct drm_connector *connector; |
| 3339 | unsigned int display_bpc = UINT_MAX, bpc; |
| 3340 | |
| 3341 | /* Walk the encoders & connectors on this crtc, get min bpc */ |
| 3342 | list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) { |
| 3343 | struct intel_encoder *intel_encoder = to_intel_encoder(encoder); |
| 3344 | |
| 3345 | if (encoder->crtc != crtc) |
| 3346 | continue; |
| 3347 | |
| 3348 | if (intel_encoder->type == INTEL_OUTPUT_LVDS) { |
| 3349 | unsigned int lvds_bpc; |
| 3350 | |
| 3351 | if ((I915_READ(PCH_LVDS) & LVDS_A3_POWER_MASK) == |
| 3352 | LVDS_A3_POWER_UP) |
| 3353 | lvds_bpc = 8; |
| 3354 | else |
| 3355 | lvds_bpc = 6; |
| 3356 | |
| 3357 | if (lvds_bpc < display_bpc) { |
Adam Jackson | 8282049 | 2011-10-10 16:33:34 -0400 | [diff] [blame] | 3358 | 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] | 3359 | display_bpc = lvds_bpc; |
| 3360 | } |
| 3361 | continue; |
| 3362 | } |
| 3363 | |
| 3364 | if (intel_encoder->type == INTEL_OUTPUT_EDP) { |
| 3365 | /* Use VBT settings if we have an eDP panel */ |
| 3366 | unsigned int edp_bpc = dev_priv->edp.bpp / 3; |
| 3367 | |
| 3368 | if (edp_bpc < display_bpc) { |
Adam Jackson | 8282049 | 2011-10-10 16:33:34 -0400 | [diff] [blame] | 3369 | 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] | 3370 | display_bpc = edp_bpc; |
| 3371 | } |
| 3372 | continue; |
| 3373 | } |
| 3374 | |
| 3375 | /* Not one of the known troublemakers, check the EDID */ |
| 3376 | list_for_each_entry(connector, &dev->mode_config.connector_list, |
| 3377 | head) { |
| 3378 | if (connector->encoder != encoder) |
| 3379 | continue; |
| 3380 | |
Jesse Barnes | 62ac41a | 2011-07-28 12:55:14 -0700 | [diff] [blame] | 3381 | /* Don't use an invalid EDID bpc value */ |
| 3382 | if (connector->display_info.bpc && |
| 3383 | connector->display_info.bpc < display_bpc) { |
Adam Jackson | 8282049 | 2011-10-10 16:33:34 -0400 | [diff] [blame] | 3384 | 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] | 3385 | display_bpc = connector->display_info.bpc; |
| 3386 | } |
| 3387 | } |
| 3388 | |
| 3389 | /* |
| 3390 | * HDMI is either 12 or 8, so if the display lets 10bpc sneak |
| 3391 | * through, clamp it down. (Note: >12bpc will be caught below.) |
| 3392 | */ |
| 3393 | if (intel_encoder->type == INTEL_OUTPUT_HDMI) { |
| 3394 | if (display_bpc > 8 && display_bpc < 12) { |
Adam Jackson | 8282049 | 2011-10-10 16:33:34 -0400 | [diff] [blame] | 3395 | DRM_DEBUG_KMS("forcing bpc to 12 for HDMI\n"); |
Jesse Barnes | 5a35420 | 2011-06-24 12:19:22 -0700 | [diff] [blame] | 3396 | display_bpc = 12; |
| 3397 | } else { |
Adam Jackson | 8282049 | 2011-10-10 16:33:34 -0400 | [diff] [blame] | 3398 | DRM_DEBUG_KMS("forcing bpc to 8 for HDMI\n"); |
Jesse Barnes | 5a35420 | 2011-06-24 12:19:22 -0700 | [diff] [blame] | 3399 | display_bpc = 8; |
| 3400 | } |
| 3401 | } |
| 3402 | } |
| 3403 | |
Adam Jackson | 3b5c78a | 2011-12-13 15:41:00 -0800 | [diff] [blame] | 3404 | if (mode->private_flags & INTEL_MODE_DP_FORCE_6BPC) { |
| 3405 | DRM_DEBUG_KMS("Dithering DP to 6bpc\n"); |
| 3406 | display_bpc = 6; |
| 3407 | } |
| 3408 | |
Jesse Barnes | 5a35420 | 2011-06-24 12:19:22 -0700 | [diff] [blame] | 3409 | /* |
| 3410 | * We could just drive the pipe at the highest bpc all the time and |
| 3411 | * enable dithering as needed, but that costs bandwidth. So choose |
| 3412 | * the minimum value that expresses the full color range of the fb but |
| 3413 | * also stays within the max display bpc discovered above. |
| 3414 | */ |
| 3415 | |
| 3416 | switch (crtc->fb->depth) { |
| 3417 | case 8: |
| 3418 | bpc = 8; /* since we go through a colormap */ |
| 3419 | break; |
| 3420 | case 15: |
| 3421 | case 16: |
| 3422 | bpc = 6; /* min is 18bpp */ |
| 3423 | break; |
| 3424 | case 24: |
Keith Packard | 578393c | 2011-09-05 11:53:21 -0700 | [diff] [blame] | 3425 | bpc = 8; |
Jesse Barnes | 5a35420 | 2011-06-24 12:19:22 -0700 | [diff] [blame] | 3426 | break; |
| 3427 | case 30: |
Keith Packard | 578393c | 2011-09-05 11:53:21 -0700 | [diff] [blame] | 3428 | bpc = 10; |
Jesse Barnes | 5a35420 | 2011-06-24 12:19:22 -0700 | [diff] [blame] | 3429 | break; |
| 3430 | case 48: |
Keith Packard | 578393c | 2011-09-05 11:53:21 -0700 | [diff] [blame] | 3431 | bpc = 12; |
Jesse Barnes | 5a35420 | 2011-06-24 12:19:22 -0700 | [diff] [blame] | 3432 | break; |
| 3433 | default: |
| 3434 | DRM_DEBUG("unsupported depth, assuming 24 bits\n"); |
| 3435 | bpc = min((unsigned int)8, display_bpc); |
| 3436 | break; |
| 3437 | } |
| 3438 | |
Keith Packard | 578393c | 2011-09-05 11:53:21 -0700 | [diff] [blame] | 3439 | display_bpc = min(display_bpc, bpc); |
| 3440 | |
Adam Jackson | 8282049 | 2011-10-10 16:33:34 -0400 | [diff] [blame] | 3441 | DRM_DEBUG_KMS("setting pipe bpc to %d (max display bpc %d)\n", |
| 3442 | bpc, display_bpc); |
Jesse Barnes | 5a35420 | 2011-06-24 12:19:22 -0700 | [diff] [blame] | 3443 | |
Keith Packard | 578393c | 2011-09-05 11:53:21 -0700 | [diff] [blame] | 3444 | *pipe_bpp = display_bpc * 3; |
Jesse Barnes | 5a35420 | 2011-06-24 12:19:22 -0700 | [diff] [blame] | 3445 | |
| 3446 | return display_bpc != bpc; |
| 3447 | } |
| 3448 | |
Jesse Barnes | c65d77d | 2011-12-15 12:30:36 -0800 | [diff] [blame] | 3449 | static int i9xx_get_refclk(struct drm_crtc *crtc, int num_connectors) |
| 3450 | { |
| 3451 | struct drm_device *dev = crtc->dev; |
| 3452 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 3453 | int refclk; |
| 3454 | |
| 3455 | if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS) && |
| 3456 | intel_panel_use_ssc(dev_priv) && num_connectors < 2) { |
| 3457 | refclk = dev_priv->lvds_ssc_freq * 1000; |
| 3458 | DRM_DEBUG_KMS("using SSC reference clock of %d MHz\n", |
| 3459 | refclk / 1000); |
| 3460 | } else if (!IS_GEN2(dev)) { |
| 3461 | refclk = 96000; |
| 3462 | } else { |
| 3463 | refclk = 48000; |
| 3464 | } |
| 3465 | |
| 3466 | return refclk; |
| 3467 | } |
| 3468 | |
| 3469 | static void i9xx_adjust_sdvo_tv_clock(struct drm_display_mode *adjusted_mode, |
| 3470 | intel_clock_t *clock) |
| 3471 | { |
| 3472 | /* SDVO TV has fixed PLL values depend on its clock range, |
| 3473 | this mirrors vbios setting. */ |
| 3474 | if (adjusted_mode->clock >= 100000 |
| 3475 | && adjusted_mode->clock < 140500) { |
| 3476 | clock->p1 = 2; |
| 3477 | clock->p2 = 10; |
| 3478 | clock->n = 3; |
| 3479 | clock->m1 = 16; |
| 3480 | clock->m2 = 8; |
| 3481 | } else if (adjusted_mode->clock >= 140500 |
| 3482 | && adjusted_mode->clock <= 200000) { |
| 3483 | clock->p1 = 1; |
| 3484 | clock->p2 = 10; |
| 3485 | clock->n = 6; |
| 3486 | clock->m1 = 12; |
| 3487 | clock->m2 = 8; |
| 3488 | } |
| 3489 | } |
| 3490 | |
Jesse Barnes | a7516a0 | 2011-12-15 12:30:37 -0800 | [diff] [blame] | 3491 | static void i9xx_update_pll_dividers(struct drm_crtc *crtc, |
| 3492 | intel_clock_t *clock, |
| 3493 | intel_clock_t *reduced_clock) |
| 3494 | { |
| 3495 | struct drm_device *dev = crtc->dev; |
| 3496 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 3497 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 3498 | int pipe = intel_crtc->pipe; |
| 3499 | u32 fp, fp2 = 0; |
| 3500 | |
| 3501 | if (IS_PINEVIEW(dev)) { |
| 3502 | fp = (1 << clock->n) << 16 | clock->m1 << 8 | clock->m2; |
| 3503 | if (reduced_clock) |
| 3504 | fp2 = (1 << reduced_clock->n) << 16 | |
| 3505 | reduced_clock->m1 << 8 | reduced_clock->m2; |
| 3506 | } else { |
| 3507 | fp = clock->n << 16 | clock->m1 << 8 | clock->m2; |
| 3508 | if (reduced_clock) |
| 3509 | fp2 = reduced_clock->n << 16 | reduced_clock->m1 << 8 | |
| 3510 | reduced_clock->m2; |
| 3511 | } |
| 3512 | |
| 3513 | I915_WRITE(FP0(pipe), fp); |
| 3514 | |
| 3515 | intel_crtc->lowfreq_avail = false; |
| 3516 | if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS) && |
| 3517 | reduced_clock && i915_powersave) { |
| 3518 | I915_WRITE(FP1(pipe), fp2); |
| 3519 | intel_crtc->lowfreq_avail = true; |
| 3520 | } else { |
| 3521 | I915_WRITE(FP1(pipe), fp); |
| 3522 | } |
| 3523 | } |
| 3524 | |
Daniel Vetter | 93e537a | 2012-03-28 23:11:26 +0200 | [diff] [blame] | 3525 | static void intel_update_lvds(struct drm_crtc *crtc, intel_clock_t *clock, |
| 3526 | struct drm_display_mode *adjusted_mode) |
| 3527 | { |
| 3528 | struct drm_device *dev = crtc->dev; |
| 3529 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 3530 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 3531 | int pipe = intel_crtc->pipe; |
Chris Wilson | 284d5df | 2012-04-14 17:41:59 +0100 | [diff] [blame] | 3532 | u32 temp; |
Daniel Vetter | 93e537a | 2012-03-28 23:11:26 +0200 | [diff] [blame] | 3533 | |
| 3534 | temp = I915_READ(LVDS); |
| 3535 | temp |= LVDS_PORT_EN | LVDS_A0A2_CLKA_POWER_UP; |
| 3536 | if (pipe == 1) { |
| 3537 | temp |= LVDS_PIPEB_SELECT; |
| 3538 | } else { |
| 3539 | temp &= ~LVDS_PIPEB_SELECT; |
| 3540 | } |
| 3541 | /* set the corresponsding LVDS_BORDER bit */ |
| 3542 | temp |= dev_priv->lvds_border_bits; |
| 3543 | /* Set the B0-B3 data pairs corresponding to whether we're going to |
| 3544 | * set the DPLLs for dual-channel mode or not. |
| 3545 | */ |
| 3546 | if (clock->p2 == 7) |
| 3547 | temp |= LVDS_B0B3_POWER_UP | LVDS_CLKB_POWER_UP; |
| 3548 | else |
| 3549 | temp &= ~(LVDS_B0B3_POWER_UP | LVDS_CLKB_POWER_UP); |
| 3550 | |
| 3551 | /* It would be nice to set 24 vs 18-bit mode (LVDS_A3_POWER_UP) |
| 3552 | * appropriately here, but we need to look more thoroughly into how |
| 3553 | * panels behave in the two modes. |
| 3554 | */ |
| 3555 | /* set the dithering flag on LVDS as needed */ |
| 3556 | if (INTEL_INFO(dev)->gen >= 4) { |
| 3557 | if (dev_priv->lvds_dither) |
| 3558 | temp |= LVDS_ENABLE_DITHER; |
| 3559 | else |
| 3560 | temp &= ~LVDS_ENABLE_DITHER; |
| 3561 | } |
Chris Wilson | 284d5df | 2012-04-14 17:41:59 +0100 | [diff] [blame] | 3562 | temp &= ~(LVDS_HSYNC_POLARITY | LVDS_VSYNC_POLARITY); |
Daniel Vetter | 93e537a | 2012-03-28 23:11:26 +0200 | [diff] [blame] | 3563 | if (adjusted_mode->flags & DRM_MODE_FLAG_NHSYNC) |
Chris Wilson | 284d5df | 2012-04-14 17:41:59 +0100 | [diff] [blame] | 3564 | temp |= LVDS_HSYNC_POLARITY; |
Daniel Vetter | 93e537a | 2012-03-28 23:11:26 +0200 | [diff] [blame] | 3565 | if (adjusted_mode->flags & DRM_MODE_FLAG_NVSYNC) |
Chris Wilson | 284d5df | 2012-04-14 17:41:59 +0100 | [diff] [blame] | 3566 | temp |= LVDS_VSYNC_POLARITY; |
Daniel Vetter | 93e537a | 2012-03-28 23:11:26 +0200 | [diff] [blame] | 3567 | I915_WRITE(LVDS, temp); |
| 3568 | } |
| 3569 | |
Daniel Vetter | eb1cbe4 | 2012-03-28 23:12:16 +0200 | [diff] [blame] | 3570 | static void i9xx_update_pll(struct drm_crtc *crtc, |
| 3571 | struct drm_display_mode *mode, |
| 3572 | struct drm_display_mode *adjusted_mode, |
| 3573 | intel_clock_t *clock, intel_clock_t *reduced_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 | bool is_sdvo; |
| 3582 | |
| 3583 | is_sdvo = intel_pipe_has_type(crtc, INTEL_OUTPUT_SDVO) || |
| 3584 | intel_pipe_has_type(crtc, INTEL_OUTPUT_HDMI); |
| 3585 | |
| 3586 | dpll = DPLL_VGA_MODE_DIS; |
| 3587 | |
| 3588 | if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) |
| 3589 | dpll |= DPLLB_MODE_LVDS; |
| 3590 | else |
| 3591 | dpll |= DPLLB_MODE_DAC_SERIAL; |
| 3592 | if (is_sdvo) { |
| 3593 | int pixel_multiplier = intel_mode_get_pixel_multiplier(adjusted_mode); |
| 3594 | if (pixel_multiplier > 1) { |
| 3595 | if (IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev)) |
| 3596 | dpll |= (pixel_multiplier - 1) << SDVO_MULTIPLIER_SHIFT_HIRES; |
| 3597 | } |
| 3598 | dpll |= DPLL_DVO_HIGH_SPEED; |
| 3599 | } |
| 3600 | if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT)) |
| 3601 | dpll |= DPLL_DVO_HIGH_SPEED; |
| 3602 | |
| 3603 | /* compute bitmask from p1 value */ |
| 3604 | if (IS_PINEVIEW(dev)) |
| 3605 | dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT_PINEVIEW; |
| 3606 | else { |
| 3607 | dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT; |
| 3608 | if (IS_G4X(dev) && reduced_clock) |
| 3609 | dpll |= (1 << (reduced_clock->p1 - 1)) << DPLL_FPA1_P1_POST_DIV_SHIFT; |
| 3610 | } |
| 3611 | switch (clock->p2) { |
| 3612 | case 5: |
| 3613 | dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_5; |
| 3614 | break; |
| 3615 | case 7: |
| 3616 | dpll |= DPLLB_LVDS_P2_CLOCK_DIV_7; |
| 3617 | break; |
| 3618 | case 10: |
| 3619 | dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_10; |
| 3620 | break; |
| 3621 | case 14: |
| 3622 | dpll |= DPLLB_LVDS_P2_CLOCK_DIV_14; |
| 3623 | break; |
| 3624 | } |
| 3625 | if (INTEL_INFO(dev)->gen >= 4) |
| 3626 | dpll |= (6 << PLL_LOAD_PULSE_PHASE_SHIFT); |
| 3627 | |
| 3628 | if (is_sdvo && intel_pipe_has_type(crtc, INTEL_OUTPUT_TVOUT)) |
| 3629 | dpll |= PLL_REF_INPUT_TVCLKINBC; |
| 3630 | else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_TVOUT)) |
| 3631 | /* XXX: just matching BIOS for now */ |
| 3632 | /* dpll |= PLL_REF_INPUT_TVCLKINBC; */ |
| 3633 | dpll |= 3; |
| 3634 | else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS) && |
| 3635 | intel_panel_use_ssc(dev_priv) && num_connectors < 2) |
| 3636 | dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN; |
| 3637 | else |
| 3638 | dpll |= PLL_REF_INPUT_DREFCLK; |
| 3639 | |
| 3640 | dpll |= DPLL_VCO_ENABLE; |
| 3641 | I915_WRITE(DPLL(pipe), dpll & ~DPLL_VCO_ENABLE); |
| 3642 | POSTING_READ(DPLL(pipe)); |
| 3643 | udelay(150); |
| 3644 | |
| 3645 | /* The LVDS pin pair needs to be on before the DPLLs are enabled. |
| 3646 | * This is an exception to the general rule that mode_set doesn't turn |
| 3647 | * things on. |
| 3648 | */ |
| 3649 | if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) |
| 3650 | intel_update_lvds(crtc, clock, adjusted_mode); |
| 3651 | |
| 3652 | if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT)) |
| 3653 | intel_dp_set_m_n(crtc, mode, adjusted_mode); |
| 3654 | |
| 3655 | I915_WRITE(DPLL(pipe), dpll); |
| 3656 | |
| 3657 | /* Wait for the clocks to stabilize. */ |
| 3658 | POSTING_READ(DPLL(pipe)); |
| 3659 | udelay(150); |
| 3660 | |
| 3661 | if (INTEL_INFO(dev)->gen >= 4) { |
| 3662 | u32 temp = 0; |
| 3663 | if (is_sdvo) { |
| 3664 | temp = intel_mode_get_pixel_multiplier(adjusted_mode); |
| 3665 | if (temp > 1) |
| 3666 | temp = (temp - 1) << DPLL_MD_UDI_MULTIPLIER_SHIFT; |
| 3667 | else |
| 3668 | temp = 0; |
| 3669 | } |
| 3670 | I915_WRITE(DPLL_MD(pipe), temp); |
| 3671 | } else { |
| 3672 | /* The pixel multiplier can only be updated once the |
| 3673 | * DPLL is enabled and the clocks are stable. |
| 3674 | * |
| 3675 | * So write it again. |
| 3676 | */ |
| 3677 | I915_WRITE(DPLL(pipe), dpll); |
| 3678 | } |
| 3679 | } |
| 3680 | |
| 3681 | static void i8xx_update_pll(struct drm_crtc *crtc, |
| 3682 | struct drm_display_mode *adjusted_mode, |
| 3683 | intel_clock_t *clock, |
| 3684 | int num_connectors) |
| 3685 | { |
| 3686 | struct drm_device *dev = crtc->dev; |
| 3687 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 3688 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 3689 | int pipe = intel_crtc->pipe; |
| 3690 | u32 dpll; |
| 3691 | |
| 3692 | dpll = DPLL_VGA_MODE_DIS; |
| 3693 | |
| 3694 | if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) { |
| 3695 | dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT; |
| 3696 | } else { |
| 3697 | if (clock->p1 == 2) |
| 3698 | dpll |= PLL_P1_DIVIDE_BY_TWO; |
| 3699 | else |
| 3700 | dpll |= (clock->p1 - 2) << DPLL_FPA01_P1_POST_DIV_SHIFT; |
| 3701 | if (clock->p2 == 4) |
| 3702 | dpll |= PLL_P2_DIVIDE_BY_4; |
| 3703 | } |
| 3704 | |
| 3705 | if (intel_pipe_has_type(crtc, INTEL_OUTPUT_TVOUT)) |
| 3706 | /* XXX: just matching BIOS for now */ |
| 3707 | /* dpll |= PLL_REF_INPUT_TVCLKINBC; */ |
| 3708 | dpll |= 3; |
| 3709 | else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS) && |
| 3710 | intel_panel_use_ssc(dev_priv) && num_connectors < 2) |
| 3711 | dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN; |
| 3712 | else |
| 3713 | dpll |= PLL_REF_INPUT_DREFCLK; |
| 3714 | |
| 3715 | dpll |= DPLL_VCO_ENABLE; |
| 3716 | I915_WRITE(DPLL(pipe), dpll & ~DPLL_VCO_ENABLE); |
| 3717 | POSTING_READ(DPLL(pipe)); |
| 3718 | udelay(150); |
| 3719 | |
| 3720 | I915_WRITE(DPLL(pipe), dpll); |
| 3721 | |
| 3722 | /* Wait for the clocks to stabilize. */ |
| 3723 | POSTING_READ(DPLL(pipe)); |
| 3724 | udelay(150); |
| 3725 | |
| 3726 | /* The LVDS pin pair needs to be on before the DPLLs are enabled. |
| 3727 | * This is an exception to the general rule that mode_set doesn't turn |
| 3728 | * things on. |
| 3729 | */ |
| 3730 | if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) |
| 3731 | intel_update_lvds(crtc, clock, adjusted_mode); |
| 3732 | |
| 3733 | /* The pixel multiplier can only be updated once the |
| 3734 | * DPLL is enabled and the clocks are stable. |
| 3735 | * |
| 3736 | * So write it again. |
| 3737 | */ |
| 3738 | I915_WRITE(DPLL(pipe), dpll); |
| 3739 | } |
| 3740 | |
Eric Anholt | f564048e | 2011-03-30 13:01:02 -0700 | [diff] [blame] | 3741 | static int i9xx_crtc_mode_set(struct drm_crtc *crtc, |
| 3742 | struct drm_display_mode *mode, |
| 3743 | struct drm_display_mode *adjusted_mode, |
| 3744 | int x, int y, |
| 3745 | struct drm_framebuffer *old_fb) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 3746 | { |
| 3747 | struct drm_device *dev = crtc->dev; |
| 3748 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 3749 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 3750 | int pipe = intel_crtc->pipe; |
Jesse Barnes | 8082400 | 2009-09-10 15:28:06 -0700 | [diff] [blame] | 3751 | int plane = intel_crtc->plane; |
Eric Anholt | c751ce4 | 2010-03-25 11:48:48 -0700 | [diff] [blame] | 3752 | int refclk, num_connectors = 0; |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 3753 | intel_clock_t clock, reduced_clock; |
Daniel Vetter | eb1cbe4 | 2012-03-28 23:12:16 +0200 | [diff] [blame] | 3754 | u32 dspcntr, pipeconf, vsyncshift; |
| 3755 | bool ok, has_reduced_clock = false, is_sdvo = false; |
| 3756 | bool is_lvds = false, is_tv = false, is_dp = false; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 3757 | struct drm_mode_config *mode_config = &dev->mode_config; |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 3758 | struct intel_encoder *encoder; |
Ma Ling | d490609 | 2009-03-18 20:13:27 +0800 | [diff] [blame] | 3759 | const intel_limit_t *limit; |
Chris Wilson | 5c3b82e | 2009-02-11 13:25:09 +0000 | [diff] [blame] | 3760 | int ret; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 3761 | |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 3762 | list_for_each_entry(encoder, &mode_config->encoder_list, base.head) { |
| 3763 | if (encoder->base.crtc != crtc) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 3764 | continue; |
| 3765 | |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 3766 | switch (encoder->type) { |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 3767 | case INTEL_OUTPUT_LVDS: |
| 3768 | is_lvds = true; |
| 3769 | break; |
| 3770 | case INTEL_OUTPUT_SDVO: |
Eric Anholt | 7d57382 | 2009-01-02 13:33:00 -0800 | [diff] [blame] | 3771 | case INTEL_OUTPUT_HDMI: |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 3772 | is_sdvo = true; |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 3773 | if (encoder->needs_tv_clock) |
Jesse Barnes | e2f0ba9 | 2009-02-02 15:11:52 -0800 | [diff] [blame] | 3774 | is_tv = true; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 3775 | break; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 3776 | case INTEL_OUTPUT_TVOUT: |
| 3777 | is_tv = true; |
| 3778 | break; |
Keith Packard | a4fc5ed | 2009-04-07 16:16:42 -0700 | [diff] [blame] | 3779 | case INTEL_OUTPUT_DISPLAYPORT: |
| 3780 | is_dp = true; |
| 3781 | break; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 3782 | } |
Kristian Høgsberg | 43565a0 | 2009-02-13 20:56:52 -0500 | [diff] [blame] | 3783 | |
Eric Anholt | c751ce4 | 2010-03-25 11:48:48 -0700 | [diff] [blame] | 3784 | num_connectors++; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 3785 | } |
| 3786 | |
Jesse Barnes | c65d77d | 2011-12-15 12:30:36 -0800 | [diff] [blame] | 3787 | refclk = i9xx_get_refclk(crtc, num_connectors); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 3788 | |
Ma Ling | d490609 | 2009-03-18 20:13:27 +0800 | [diff] [blame] | 3789 | /* |
| 3790 | * Returns a set of divisors for the desired target clock with the given |
| 3791 | * refclk, or FALSE. The returned values represent the clock equation: |
| 3792 | * reflck * (5 * (m1 + 2) + (m2 + 2)) / (n + 2) / p1 / p2. |
| 3793 | */ |
Chris Wilson | 1b894b5 | 2010-12-14 20:04:54 +0000 | [diff] [blame] | 3794 | limit = intel_limit(crtc, refclk); |
Sean Paul | cec2f35 | 2012-01-10 15:09:36 -0800 | [diff] [blame] | 3795 | ok = limit->find_pll(limit, crtc, adjusted_mode->clock, refclk, NULL, |
| 3796 | &clock); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 3797 | if (!ok) { |
| 3798 | DRM_ERROR("Couldn't find PLL settings for mode!\n"); |
Eric Anholt | f564048e | 2011-03-30 13:01:02 -0700 | [diff] [blame] | 3799 | return -EINVAL; |
| 3800 | } |
| 3801 | |
| 3802 | /* Ensure that the cursor is valid for the new mode before changing... */ |
| 3803 | intel_crtc_update_cursor(crtc, true); |
| 3804 | |
| 3805 | if (is_lvds && dev_priv->lvds_downclock_avail) { |
Sean Paul | cec2f35 | 2012-01-10 15:09:36 -0800 | [diff] [blame] | 3806 | /* |
| 3807 | * Ensure we match the reduced clock's P to the target clock. |
| 3808 | * If the clocks don't match, we can't switch the display clock |
| 3809 | * by using the FP0/FP1. In such case we will disable the LVDS |
| 3810 | * downclock feature. |
| 3811 | */ |
Eric Anholt | f564048e | 2011-03-30 13:01:02 -0700 | [diff] [blame] | 3812 | has_reduced_clock = limit->find_pll(limit, crtc, |
| 3813 | dev_priv->lvds_downclock, |
| 3814 | refclk, |
Sean Paul | cec2f35 | 2012-01-10 15:09:36 -0800 | [diff] [blame] | 3815 | &clock, |
Eric Anholt | f564048e | 2011-03-30 13:01:02 -0700 | [diff] [blame] | 3816 | &reduced_clock); |
Eric Anholt | f564048e | 2011-03-30 13:01:02 -0700 | [diff] [blame] | 3817 | } |
| 3818 | |
Jesse Barnes | c65d77d | 2011-12-15 12:30:36 -0800 | [diff] [blame] | 3819 | if (is_sdvo && is_tv) |
| 3820 | i9xx_adjust_sdvo_tv_clock(adjusted_mode, &clock); |
Eric Anholt | f564048e | 2011-03-30 13:01:02 -0700 | [diff] [blame] | 3821 | |
Jesse Barnes | a7516a0 | 2011-12-15 12:30:37 -0800 | [diff] [blame] | 3822 | i9xx_update_pll_dividers(crtc, &clock, has_reduced_clock ? |
| 3823 | &reduced_clock : NULL); |
Eric Anholt | f564048e | 2011-03-30 13:01:02 -0700 | [diff] [blame] | 3824 | |
Daniel Vetter | eb1cbe4 | 2012-03-28 23:12:16 +0200 | [diff] [blame] | 3825 | if (IS_GEN2(dev)) |
| 3826 | i8xx_update_pll(crtc, adjusted_mode, &clock, num_connectors); |
Eric Anholt | f564048e | 2011-03-30 13:01:02 -0700 | [diff] [blame] | 3827 | else |
Daniel Vetter | eb1cbe4 | 2012-03-28 23:12:16 +0200 | [diff] [blame] | 3828 | i9xx_update_pll(crtc, mode, adjusted_mode, &clock, |
| 3829 | has_reduced_clock ? &reduced_clock : NULL, |
| 3830 | num_connectors); |
Eric Anholt | f564048e | 2011-03-30 13:01:02 -0700 | [diff] [blame] | 3831 | |
| 3832 | /* setup pipeconf */ |
| 3833 | pipeconf = I915_READ(PIPECONF(pipe)); |
| 3834 | |
| 3835 | /* Set up the display plane register */ |
| 3836 | dspcntr = DISPPLANE_GAMMA_ENABLE; |
| 3837 | |
Eric Anholt | 929c77f | 2011-03-30 13:01:04 -0700 | [diff] [blame] | 3838 | if (pipe == 0) |
| 3839 | dspcntr &= ~DISPPLANE_SEL_PIPE_MASK; |
| 3840 | else |
| 3841 | dspcntr |= DISPPLANE_SEL_PIPE_B; |
Eric Anholt | f564048e | 2011-03-30 13:01:02 -0700 | [diff] [blame] | 3842 | |
| 3843 | if (pipe == 0 && INTEL_INFO(dev)->gen < 4) { |
| 3844 | /* Enable pixel doubling when the dot clock is > 90% of the (display) |
| 3845 | * core speed. |
| 3846 | * |
| 3847 | * XXX: No double-wide on 915GM pipe B. Is that the only reason for the |
| 3848 | * pipe == 0 check? |
| 3849 | */ |
| 3850 | if (mode->clock > |
| 3851 | dev_priv->display.get_display_clock_speed(dev) * 9 / 10) |
| 3852 | pipeconf |= PIPECONF_DOUBLE_WIDE; |
| 3853 | else |
| 3854 | pipeconf &= ~PIPECONF_DOUBLE_WIDE; |
| 3855 | } |
| 3856 | |
Adam Jackson | 3b5c78a | 2011-12-13 15:41:00 -0800 | [diff] [blame] | 3857 | /* default to 8bpc */ |
| 3858 | pipeconf &= ~(PIPECONF_BPP_MASK | PIPECONF_DITHER_EN); |
| 3859 | if (is_dp) { |
| 3860 | if (mode->private_flags & INTEL_MODE_DP_FORCE_6BPC) { |
| 3861 | pipeconf |= PIPECONF_BPP_6 | |
| 3862 | PIPECONF_DITHER_EN | |
| 3863 | PIPECONF_DITHER_TYPE_SP; |
| 3864 | } |
| 3865 | } |
| 3866 | |
Eric Anholt | f564048e | 2011-03-30 13:01:02 -0700 | [diff] [blame] | 3867 | DRM_DEBUG_KMS("Mode for pipe %c:\n", pipe == 0 ? 'A' : 'B'); |
| 3868 | drm_mode_debug_printmodeline(mode); |
| 3869 | |
Jesse Barnes | a7516a0 | 2011-12-15 12:30:37 -0800 | [diff] [blame] | 3870 | if (HAS_PIPE_CXSR(dev)) { |
| 3871 | if (intel_crtc->lowfreq_avail) { |
Eric Anholt | f564048e | 2011-03-30 13:01:02 -0700 | [diff] [blame] | 3872 | DRM_DEBUG_KMS("enabling CxSR downclocking\n"); |
| 3873 | pipeconf |= PIPECONF_CXSR_DOWNCLOCK; |
Jesse Barnes | a7516a0 | 2011-12-15 12:30:37 -0800 | [diff] [blame] | 3874 | } else { |
Eric Anholt | f564048e | 2011-03-30 13:01:02 -0700 | [diff] [blame] | 3875 | DRM_DEBUG_KMS("disabling CxSR downclocking\n"); |
| 3876 | pipeconf &= ~PIPECONF_CXSR_DOWNCLOCK; |
| 3877 | } |
| 3878 | } |
| 3879 | |
Keith Packard | 617cf88 | 2012-02-08 13:53:38 -0800 | [diff] [blame] | 3880 | pipeconf &= ~PIPECONF_INTERLACE_MASK; |
Daniel Vetter | dbb0257 | 2012-01-28 14:49:23 +0100 | [diff] [blame] | 3881 | if (!IS_GEN2(dev) && |
| 3882 | adjusted_mode->flags & DRM_MODE_FLAG_INTERLACE) { |
Eric Anholt | f564048e | 2011-03-30 13:01:02 -0700 | [diff] [blame] | 3883 | pipeconf |= PIPECONF_INTERLACE_W_FIELD_INDICATION; |
| 3884 | /* the chip adds 2 halflines automatically */ |
Eric Anholt | f564048e | 2011-03-30 13:01:02 -0700 | [diff] [blame] | 3885 | adjusted_mode->crtc_vtotal -= 1; |
Eric Anholt | f564048e | 2011-03-30 13:01:02 -0700 | [diff] [blame] | 3886 | adjusted_mode->crtc_vblank_end -= 1; |
Daniel Vetter | 0529a0d | 2012-01-28 14:49:24 +0100 | [diff] [blame] | 3887 | vsyncshift = adjusted_mode->crtc_hsync_start |
| 3888 | - adjusted_mode->crtc_htotal/2; |
| 3889 | } else { |
Keith Packard | 617cf88 | 2012-02-08 13:53:38 -0800 | [diff] [blame] | 3890 | pipeconf |= PIPECONF_PROGRESSIVE; |
Daniel Vetter | 0529a0d | 2012-01-28 14:49:24 +0100 | [diff] [blame] | 3891 | vsyncshift = 0; |
| 3892 | } |
| 3893 | |
| 3894 | if (!IS_GEN3(dev)) |
| 3895 | I915_WRITE(VSYNCSHIFT(pipe), vsyncshift); |
Eric Anholt | f564048e | 2011-03-30 13:01:02 -0700 | [diff] [blame] | 3896 | |
| 3897 | I915_WRITE(HTOTAL(pipe), |
| 3898 | (adjusted_mode->crtc_hdisplay - 1) | |
| 3899 | ((adjusted_mode->crtc_htotal - 1) << 16)); |
| 3900 | I915_WRITE(HBLANK(pipe), |
| 3901 | (adjusted_mode->crtc_hblank_start - 1) | |
| 3902 | ((adjusted_mode->crtc_hblank_end - 1) << 16)); |
| 3903 | I915_WRITE(HSYNC(pipe), |
| 3904 | (adjusted_mode->crtc_hsync_start - 1) | |
| 3905 | ((adjusted_mode->crtc_hsync_end - 1) << 16)); |
| 3906 | |
| 3907 | I915_WRITE(VTOTAL(pipe), |
| 3908 | (adjusted_mode->crtc_vdisplay - 1) | |
| 3909 | ((adjusted_mode->crtc_vtotal - 1) << 16)); |
| 3910 | I915_WRITE(VBLANK(pipe), |
| 3911 | (adjusted_mode->crtc_vblank_start - 1) | |
| 3912 | ((adjusted_mode->crtc_vblank_end - 1) << 16)); |
| 3913 | I915_WRITE(VSYNC(pipe), |
| 3914 | (adjusted_mode->crtc_vsync_start - 1) | |
| 3915 | ((adjusted_mode->crtc_vsync_end - 1) << 16)); |
| 3916 | |
| 3917 | /* pipesrc and dspsize control the size that is scaled from, |
| 3918 | * which should always be the user's requested size. |
| 3919 | */ |
Eric Anholt | 929c77f | 2011-03-30 13:01:04 -0700 | [diff] [blame] | 3920 | I915_WRITE(DSPSIZE(plane), |
| 3921 | ((mode->vdisplay - 1) << 16) | |
| 3922 | (mode->hdisplay - 1)); |
| 3923 | I915_WRITE(DSPPOS(plane), 0); |
Eric Anholt | f564048e | 2011-03-30 13:01:02 -0700 | [diff] [blame] | 3924 | I915_WRITE(PIPESRC(pipe), |
| 3925 | ((mode->hdisplay - 1) << 16) | (mode->vdisplay - 1)); |
| 3926 | |
Eric Anholt | f564048e | 2011-03-30 13:01:02 -0700 | [diff] [blame] | 3927 | I915_WRITE(PIPECONF(pipe), pipeconf); |
| 3928 | POSTING_READ(PIPECONF(pipe)); |
Eric Anholt | 929c77f | 2011-03-30 13:01:04 -0700 | [diff] [blame] | 3929 | intel_enable_pipe(dev_priv, pipe, false); |
Eric Anholt | f564048e | 2011-03-30 13:01:02 -0700 | [diff] [blame] | 3930 | |
| 3931 | intel_wait_for_vblank(dev, pipe); |
| 3932 | |
Eric Anholt | f564048e | 2011-03-30 13:01:02 -0700 | [diff] [blame] | 3933 | I915_WRITE(DSPCNTR(plane), dspcntr); |
| 3934 | POSTING_READ(DSPCNTR(plane)); |
Keith Packard | 284d952 | 2011-06-06 17:12:49 -0700 | [diff] [blame] | 3935 | intel_enable_plane(dev_priv, plane, pipe); |
Eric Anholt | f564048e | 2011-03-30 13:01:02 -0700 | [diff] [blame] | 3936 | |
| 3937 | ret = intel_pipe_set_base(crtc, x, y, old_fb); |
| 3938 | |
| 3939 | intel_update_watermarks(dev); |
| 3940 | |
Eric Anholt | f564048e | 2011-03-30 13:01:02 -0700 | [diff] [blame] | 3941 | return ret; |
| 3942 | } |
| 3943 | |
Keith Packard | 9fb526d | 2011-09-26 22:24:57 -0700 | [diff] [blame] | 3944 | /* |
| 3945 | * Initialize reference clocks when the driver loads |
| 3946 | */ |
| 3947 | void ironlake_init_pch_refclk(struct drm_device *dev) |
Jesse Barnes | 13d83a6 | 2011-08-03 12:59:20 -0700 | [diff] [blame] | 3948 | { |
| 3949 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 3950 | struct drm_mode_config *mode_config = &dev->mode_config; |
Jesse Barnes | 13d83a6 | 2011-08-03 12:59:20 -0700 | [diff] [blame] | 3951 | struct intel_encoder *encoder; |
Jesse Barnes | 13d83a6 | 2011-08-03 12:59:20 -0700 | [diff] [blame] | 3952 | u32 temp; |
| 3953 | bool has_lvds = false; |
Keith Packard | 199e5d7 | 2011-09-22 12:01:57 -0700 | [diff] [blame] | 3954 | bool has_cpu_edp = false; |
| 3955 | bool has_pch_edp = false; |
| 3956 | bool has_panel = false; |
Keith Packard | 99eb6a0 | 2011-09-26 14:29:12 -0700 | [diff] [blame] | 3957 | bool has_ck505 = false; |
| 3958 | bool can_ssc = false; |
Jesse Barnes | 13d83a6 | 2011-08-03 12:59:20 -0700 | [diff] [blame] | 3959 | |
| 3960 | /* We need to take the global config into account */ |
Keith Packard | 199e5d7 | 2011-09-22 12:01:57 -0700 | [diff] [blame] | 3961 | list_for_each_entry(encoder, &mode_config->encoder_list, |
| 3962 | base.head) { |
| 3963 | switch (encoder->type) { |
| 3964 | case INTEL_OUTPUT_LVDS: |
| 3965 | has_panel = true; |
| 3966 | has_lvds = true; |
| 3967 | break; |
| 3968 | case INTEL_OUTPUT_EDP: |
| 3969 | has_panel = true; |
| 3970 | if (intel_encoder_is_pch_edp(&encoder->base)) |
| 3971 | has_pch_edp = true; |
| 3972 | else |
| 3973 | has_cpu_edp = true; |
| 3974 | break; |
Jesse Barnes | 13d83a6 | 2011-08-03 12:59:20 -0700 | [diff] [blame] | 3975 | } |
| 3976 | } |
| 3977 | |
Keith Packard | 99eb6a0 | 2011-09-26 14:29:12 -0700 | [diff] [blame] | 3978 | if (HAS_PCH_IBX(dev)) { |
| 3979 | has_ck505 = dev_priv->display_clock_mode; |
| 3980 | can_ssc = has_ck505; |
| 3981 | } else { |
| 3982 | has_ck505 = false; |
| 3983 | can_ssc = true; |
| 3984 | } |
| 3985 | |
| 3986 | DRM_DEBUG_KMS("has_panel %d has_lvds %d has_pch_edp %d has_cpu_edp %d has_ck505 %d\n", |
| 3987 | has_panel, has_lvds, has_pch_edp, has_cpu_edp, |
| 3988 | has_ck505); |
Jesse Barnes | 13d83a6 | 2011-08-03 12:59:20 -0700 | [diff] [blame] | 3989 | |
| 3990 | /* Ironlake: try to setup display ref clock before DPLL |
| 3991 | * enabling. This is only under driver's control after |
| 3992 | * PCH B stepping, previous chipset stepping should be |
| 3993 | * ignoring this setting. |
| 3994 | */ |
| 3995 | temp = I915_READ(PCH_DREF_CONTROL); |
| 3996 | /* Always enable nonspread source */ |
| 3997 | temp &= ~DREF_NONSPREAD_SOURCE_MASK; |
Jesse Barnes | 13d83a6 | 2011-08-03 12:59:20 -0700 | [diff] [blame] | 3998 | |
Keith Packard | 99eb6a0 | 2011-09-26 14:29:12 -0700 | [diff] [blame] | 3999 | if (has_ck505) |
| 4000 | temp |= DREF_NONSPREAD_CK505_ENABLE; |
| 4001 | else |
| 4002 | temp |= DREF_NONSPREAD_SOURCE_ENABLE; |
Jesse Barnes | 13d83a6 | 2011-08-03 12:59:20 -0700 | [diff] [blame] | 4003 | |
Keith Packard | 199e5d7 | 2011-09-22 12:01:57 -0700 | [diff] [blame] | 4004 | if (has_panel) { |
| 4005 | temp &= ~DREF_SSC_SOURCE_MASK; |
| 4006 | temp |= DREF_SSC_SOURCE_ENABLE; |
Jesse Barnes | 13d83a6 | 2011-08-03 12:59:20 -0700 | [diff] [blame] | 4007 | |
Keith Packard | 199e5d7 | 2011-09-22 12:01:57 -0700 | [diff] [blame] | 4008 | /* SSC must be turned on before enabling the CPU output */ |
Keith Packard | 99eb6a0 | 2011-09-26 14:29:12 -0700 | [diff] [blame] | 4009 | if (intel_panel_use_ssc(dev_priv) && can_ssc) { |
Keith Packard | 199e5d7 | 2011-09-22 12:01:57 -0700 | [diff] [blame] | 4010 | DRM_DEBUG_KMS("Using SSC on panel\n"); |
Jesse Barnes | 13d83a6 | 2011-08-03 12:59:20 -0700 | [diff] [blame] | 4011 | temp |= DREF_SSC1_ENABLE; |
Daniel Vetter | e77166b | 2012-03-30 22:14:05 +0200 | [diff] [blame] | 4012 | } else |
| 4013 | temp &= ~DREF_SSC1_ENABLE; |
Keith Packard | 199e5d7 | 2011-09-22 12:01:57 -0700 | [diff] [blame] | 4014 | |
| 4015 | /* Get SSC going before enabling the outputs */ |
| 4016 | I915_WRITE(PCH_DREF_CONTROL, temp); |
| 4017 | POSTING_READ(PCH_DREF_CONTROL); |
| 4018 | udelay(200); |
| 4019 | |
Jesse Barnes | 13d83a6 | 2011-08-03 12:59:20 -0700 | [diff] [blame] | 4020 | temp &= ~DREF_CPU_SOURCE_OUTPUT_MASK; |
| 4021 | |
| 4022 | /* Enable CPU source on CPU attached eDP */ |
Keith Packard | 199e5d7 | 2011-09-22 12:01:57 -0700 | [diff] [blame] | 4023 | if (has_cpu_edp) { |
Keith Packard | 99eb6a0 | 2011-09-26 14:29:12 -0700 | [diff] [blame] | 4024 | if (intel_panel_use_ssc(dev_priv) && can_ssc) { |
Keith Packard | 199e5d7 | 2011-09-22 12:01:57 -0700 | [diff] [blame] | 4025 | DRM_DEBUG_KMS("Using SSC on eDP\n"); |
Jesse Barnes | 13d83a6 | 2011-08-03 12:59:20 -0700 | [diff] [blame] | 4026 | temp |= DREF_CPU_SOURCE_OUTPUT_DOWNSPREAD; |
Keith Packard | 199e5d7 | 2011-09-22 12:01:57 -0700 | [diff] [blame] | 4027 | } |
Jesse Barnes | 13d83a6 | 2011-08-03 12:59:20 -0700 | [diff] [blame] | 4028 | else |
| 4029 | temp |= DREF_CPU_SOURCE_OUTPUT_NONSPREAD; |
Keith Packard | 199e5d7 | 2011-09-22 12:01:57 -0700 | [diff] [blame] | 4030 | } else |
| 4031 | temp |= DREF_CPU_SOURCE_OUTPUT_DISABLE; |
| 4032 | |
| 4033 | I915_WRITE(PCH_DREF_CONTROL, temp); |
| 4034 | POSTING_READ(PCH_DREF_CONTROL); |
| 4035 | udelay(200); |
| 4036 | } else { |
| 4037 | DRM_DEBUG_KMS("Disabling SSC entirely\n"); |
| 4038 | |
| 4039 | temp &= ~DREF_CPU_SOURCE_OUTPUT_MASK; |
| 4040 | |
| 4041 | /* Turn off CPU output */ |
| 4042 | temp |= DREF_CPU_SOURCE_OUTPUT_DISABLE; |
| 4043 | |
| 4044 | I915_WRITE(PCH_DREF_CONTROL, temp); |
| 4045 | POSTING_READ(PCH_DREF_CONTROL); |
| 4046 | udelay(200); |
| 4047 | |
| 4048 | /* Turn off the SSC source */ |
| 4049 | temp &= ~DREF_SSC_SOURCE_MASK; |
| 4050 | temp |= DREF_SSC_SOURCE_DISABLE; |
| 4051 | |
| 4052 | /* Turn off SSC1 */ |
| 4053 | temp &= ~ DREF_SSC1_ENABLE; |
| 4054 | |
Jesse Barnes | 13d83a6 | 2011-08-03 12:59:20 -0700 | [diff] [blame] | 4055 | I915_WRITE(PCH_DREF_CONTROL, temp); |
| 4056 | POSTING_READ(PCH_DREF_CONTROL); |
| 4057 | udelay(200); |
| 4058 | } |
| 4059 | } |
| 4060 | |
Jesse Barnes | d9d444c | 2011-09-02 13:03:05 -0700 | [diff] [blame] | 4061 | static int ironlake_get_refclk(struct drm_crtc *crtc) |
| 4062 | { |
| 4063 | struct drm_device *dev = crtc->dev; |
| 4064 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 4065 | struct intel_encoder *encoder; |
| 4066 | struct drm_mode_config *mode_config = &dev->mode_config; |
| 4067 | struct intel_encoder *edp_encoder = NULL; |
| 4068 | int num_connectors = 0; |
| 4069 | bool is_lvds = false; |
| 4070 | |
| 4071 | list_for_each_entry(encoder, &mode_config->encoder_list, base.head) { |
| 4072 | if (encoder->base.crtc != crtc) |
| 4073 | continue; |
| 4074 | |
| 4075 | switch (encoder->type) { |
| 4076 | case INTEL_OUTPUT_LVDS: |
| 4077 | is_lvds = true; |
| 4078 | break; |
| 4079 | case INTEL_OUTPUT_EDP: |
| 4080 | edp_encoder = encoder; |
| 4081 | break; |
| 4082 | } |
| 4083 | num_connectors++; |
| 4084 | } |
| 4085 | |
| 4086 | if (is_lvds && intel_panel_use_ssc(dev_priv) && num_connectors < 2) { |
| 4087 | DRM_DEBUG_KMS("using SSC reference clock of %d MHz\n", |
| 4088 | dev_priv->lvds_ssc_freq); |
| 4089 | return dev_priv->lvds_ssc_freq * 1000; |
| 4090 | } |
| 4091 | |
| 4092 | return 120000; |
| 4093 | } |
| 4094 | |
Eric Anholt | f564048e | 2011-03-30 13:01:02 -0700 | [diff] [blame] | 4095 | static int ironlake_crtc_mode_set(struct drm_crtc *crtc, |
| 4096 | struct drm_display_mode *mode, |
| 4097 | struct drm_display_mode *adjusted_mode, |
| 4098 | int x, int y, |
| 4099 | struct drm_framebuffer *old_fb) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4100 | { |
| 4101 | struct drm_device *dev = crtc->dev; |
| 4102 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 4103 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 4104 | int pipe = intel_crtc->pipe; |
Chris Wilson | 5c3b82e | 2009-02-11 13:25:09 +0000 | [diff] [blame] | 4105 | int plane = intel_crtc->plane; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4106 | int refclk, num_connectors = 0; |
| 4107 | intel_clock_t clock, reduced_clock; |
| 4108 | u32 dpll, fp = 0, fp2 = 0, dspcntr, pipeconf; |
Eric Anholt | a07d678 | 2011-03-30 13:01:08 -0700 | [diff] [blame] | 4109 | bool ok, has_reduced_clock = false, is_sdvo = false; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4110 | 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] | 4111 | struct drm_mode_config *mode_config = &dev->mode_config; |
Jesse Barnes | e3aef17 | 2012-04-10 11:58:03 -0700 | [diff] [blame] | 4112 | struct intel_encoder *encoder, *edp_encoder = NULL; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4113 | const intel_limit_t *limit; |
| 4114 | int ret; |
| 4115 | struct fdi_m_n m_n = {0}; |
Eric Anholt | fae1498 | 2011-03-30 13:01:09 -0700 | [diff] [blame] | 4116 | u32 temp; |
Jesse Barnes | 5a35420 | 2011-06-24 12:19:22 -0700 | [diff] [blame] | 4117 | int target_clock, pixel_multiplier, lane, link_bw, factor; |
| 4118 | unsigned int pipe_bpp; |
| 4119 | bool dither; |
Jesse Barnes | e3aef17 | 2012-04-10 11:58:03 -0700 | [diff] [blame] | 4120 | bool is_cpu_edp = false, is_pch_edp = false; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4121 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4122 | list_for_each_entry(encoder, &mode_config->encoder_list, base.head) { |
| 4123 | if (encoder->base.crtc != crtc) |
| 4124 | continue; |
| 4125 | |
| 4126 | switch (encoder->type) { |
| 4127 | case INTEL_OUTPUT_LVDS: |
| 4128 | is_lvds = true; |
| 4129 | break; |
| 4130 | case INTEL_OUTPUT_SDVO: |
| 4131 | case INTEL_OUTPUT_HDMI: |
| 4132 | is_sdvo = true; |
| 4133 | if (encoder->needs_tv_clock) |
| 4134 | is_tv = true; |
| 4135 | break; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4136 | case INTEL_OUTPUT_TVOUT: |
| 4137 | is_tv = true; |
| 4138 | break; |
| 4139 | case INTEL_OUTPUT_ANALOG: |
| 4140 | is_crt = true; |
| 4141 | break; |
| 4142 | case INTEL_OUTPUT_DISPLAYPORT: |
| 4143 | is_dp = true; |
| 4144 | break; |
| 4145 | case INTEL_OUTPUT_EDP: |
Jesse Barnes | e3aef17 | 2012-04-10 11:58:03 -0700 | [diff] [blame] | 4146 | is_dp = true; |
| 4147 | if (intel_encoder_is_pch_edp(&encoder->base)) |
| 4148 | is_pch_edp = true; |
| 4149 | else |
| 4150 | is_cpu_edp = true; |
| 4151 | edp_encoder = encoder; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4152 | break; |
| 4153 | } |
| 4154 | |
Kristian Høgsberg | 43565a0 | 2009-02-13 20:56:52 -0500 | [diff] [blame] | 4155 | num_connectors++; |
| 4156 | } |
| 4157 | |
Jesse Barnes | d9d444c | 2011-09-02 13:03:05 -0700 | [diff] [blame] | 4158 | refclk = ironlake_get_refclk(crtc); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4159 | |
| 4160 | /* |
| 4161 | * Returns a set of divisors for the desired target clock with the given |
| 4162 | * refclk, or FALSE. The returned values represent the clock equation: |
| 4163 | * reflck * (5 * (m1 + 2) + (m2 + 2)) / (n + 2) / p1 / p2. |
| 4164 | */ |
| 4165 | limit = intel_limit(crtc, refclk); |
Sean Paul | cec2f35 | 2012-01-10 15:09:36 -0800 | [diff] [blame] | 4166 | ok = limit->find_pll(limit, crtc, adjusted_mode->clock, refclk, NULL, |
| 4167 | &clock); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4168 | if (!ok) { |
| 4169 | DRM_ERROR("Couldn't find PLL settings for mode!\n"); |
| 4170 | return -EINVAL; |
| 4171 | } |
| 4172 | |
Chris Wilson | cda4b7d | 2010-07-09 08:45:04 +0100 | [diff] [blame] | 4173 | /* Ensure that the cursor is valid for the new mode before changing... */ |
Chris Wilson | 6b383a7 | 2010-09-13 13:54:26 +0100 | [diff] [blame] | 4174 | intel_crtc_update_cursor(crtc, true); |
Chris Wilson | cda4b7d | 2010-07-09 08:45:04 +0100 | [diff] [blame] | 4175 | |
Zhao Yakui | ddc9003 | 2010-01-06 22:05:56 +0800 | [diff] [blame] | 4176 | if (is_lvds && dev_priv->lvds_downclock_avail) { |
Sean Paul | cec2f35 | 2012-01-10 15:09:36 -0800 | [diff] [blame] | 4177 | /* |
| 4178 | * Ensure we match the reduced clock's P to the target clock. |
| 4179 | * If the clocks don't match, we can't switch the display clock |
| 4180 | * by using the FP0/FP1. In such case we will disable the LVDS |
| 4181 | * downclock feature. |
| 4182 | */ |
Zhao Yakui | ddc9003 | 2010-01-06 22:05:56 +0800 | [diff] [blame] | 4183 | has_reduced_clock = limit->find_pll(limit, crtc, |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 4184 | dev_priv->lvds_downclock, |
| 4185 | refclk, |
Sean Paul | cec2f35 | 2012-01-10 15:09:36 -0800 | [diff] [blame] | 4186 | &clock, |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 4187 | &reduced_clock); |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 4188 | } |
Zhenyu Wang | 7026d4a | 2009-03-24 14:02:43 +0800 | [diff] [blame] | 4189 | /* SDVO TV has fixed PLL values depend on its clock range, |
| 4190 | this mirrors vbios setting. */ |
| 4191 | if (is_sdvo && is_tv) { |
| 4192 | if (adjusted_mode->clock >= 100000 |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 4193 | && adjusted_mode->clock < 140500) { |
Zhenyu Wang | 7026d4a | 2009-03-24 14:02:43 +0800 | [diff] [blame] | 4194 | clock.p1 = 2; |
| 4195 | clock.p2 = 10; |
| 4196 | clock.n = 3; |
| 4197 | clock.m1 = 16; |
| 4198 | clock.m2 = 8; |
| 4199 | } else if (adjusted_mode->clock >= 140500 |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 4200 | && adjusted_mode->clock <= 200000) { |
Zhenyu Wang | 7026d4a | 2009-03-24 14:02:43 +0800 | [diff] [blame] | 4201 | clock.p1 = 1; |
| 4202 | clock.p2 = 10; |
| 4203 | clock.n = 6; |
| 4204 | clock.m1 = 12; |
| 4205 | clock.m2 = 8; |
| 4206 | } |
| 4207 | } |
| 4208 | |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 4209 | /* FDI link */ |
Eric Anholt | 8febb29 | 2011-03-30 13:01:07 -0700 | [diff] [blame] | 4210 | pixel_multiplier = intel_mode_get_pixel_multiplier(adjusted_mode); |
| 4211 | lane = 0; |
| 4212 | /* CPU eDP doesn't require FDI link, so just set DP M/N |
| 4213 | according to current link config */ |
Jesse Barnes | e3aef17 | 2012-04-10 11:58:03 -0700 | [diff] [blame] | 4214 | if (is_cpu_edp) { |
Eric Anholt | 8febb29 | 2011-03-30 13:01:07 -0700 | [diff] [blame] | 4215 | target_clock = mode->clock; |
Jesse Barnes | e3aef17 | 2012-04-10 11:58:03 -0700 | [diff] [blame] | 4216 | intel_edp_link_config(edp_encoder, &lane, &link_bw); |
Eric Anholt | 8febb29 | 2011-03-30 13:01:07 -0700 | [diff] [blame] | 4217 | } else { |
| 4218 | /* [e]DP over FDI requires target mode clock |
| 4219 | instead of link clock */ |
Jesse Barnes | e3aef17 | 2012-04-10 11:58:03 -0700 | [diff] [blame] | 4220 | if (is_dp) |
Zhenyu Wang | 5eb08b6 | 2009-07-24 01:00:31 +0800 | [diff] [blame] | 4221 | target_clock = mode->clock; |
Eric Anholt | 8febb29 | 2011-03-30 13:01:07 -0700 | [diff] [blame] | 4222 | else |
| 4223 | target_clock = adjusted_mode->clock; |
Chris Wilson | 021357a | 2010-09-07 20:54:59 +0100 | [diff] [blame] | 4224 | |
Eric Anholt | 8febb29 | 2011-03-30 13:01:07 -0700 | [diff] [blame] | 4225 | /* FDI is a binary signal running at ~2.7GHz, encoding |
| 4226 | * each output octet as 10 bits. The actual frequency |
| 4227 | * is stored as a divider into a 100MHz clock, and the |
| 4228 | * mode pixel clock is stored in units of 1KHz. |
| 4229 | * Hence the bw of each lane in terms of the mode signal |
| 4230 | * is: |
| 4231 | */ |
| 4232 | link_bw = intel_fdi_link_freq(dev) * MHz(100)/KHz(1)/10; |
Zhenyu Wang | 5eb08b6 | 2009-07-24 01:00:31 +0800 | [diff] [blame] | 4233 | } |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 4234 | |
Eric Anholt | 8febb29 | 2011-03-30 13:01:07 -0700 | [diff] [blame] | 4235 | /* determine panel color depth */ |
| 4236 | temp = I915_READ(PIPECONF(pipe)); |
| 4237 | temp &= ~PIPE_BPC_MASK; |
Adam Jackson | 3b5c78a | 2011-12-13 15:41:00 -0800 | [diff] [blame] | 4238 | dither = intel_choose_pipe_bpp_dither(crtc, &pipe_bpp, mode); |
Jesse Barnes | 5a35420 | 2011-06-24 12:19:22 -0700 | [diff] [blame] | 4239 | switch (pipe_bpp) { |
| 4240 | case 18: |
| 4241 | temp |= PIPE_6BPC; |
| 4242 | break; |
| 4243 | case 24: |
Eric Anholt | 8febb29 | 2011-03-30 13:01:07 -0700 | [diff] [blame] | 4244 | temp |= PIPE_8BPC; |
Eric Anholt | 8febb29 | 2011-03-30 13:01:07 -0700 | [diff] [blame] | 4245 | break; |
Jesse Barnes | 5a35420 | 2011-06-24 12:19:22 -0700 | [diff] [blame] | 4246 | case 30: |
| 4247 | temp |= PIPE_10BPC; |
Eric Anholt | 8febb29 | 2011-03-30 13:01:07 -0700 | [diff] [blame] | 4248 | break; |
Jesse Barnes | 5a35420 | 2011-06-24 12:19:22 -0700 | [diff] [blame] | 4249 | case 36: |
| 4250 | temp |= PIPE_12BPC; |
Eric Anholt | 8febb29 | 2011-03-30 13:01:07 -0700 | [diff] [blame] | 4251 | break; |
| 4252 | default: |
Jesse Barnes | 62ac41a | 2011-07-28 12:55:14 -0700 | [diff] [blame] | 4253 | WARN(1, "intel_choose_pipe_bpp returned invalid value %d\n", |
| 4254 | pipe_bpp); |
Jesse Barnes | 5a35420 | 2011-06-24 12:19:22 -0700 | [diff] [blame] | 4255 | temp |= PIPE_8BPC; |
| 4256 | pipe_bpp = 24; |
| 4257 | break; |
Eric Anholt | 8febb29 | 2011-03-30 13:01:07 -0700 | [diff] [blame] | 4258 | } |
| 4259 | |
Jesse Barnes | 5a35420 | 2011-06-24 12:19:22 -0700 | [diff] [blame] | 4260 | intel_crtc->bpp = pipe_bpp; |
| 4261 | I915_WRITE(PIPECONF(pipe), temp); |
| 4262 | |
Eric Anholt | 8febb29 | 2011-03-30 13:01:07 -0700 | [diff] [blame] | 4263 | if (!lane) { |
| 4264 | /* |
| 4265 | * Account for spread spectrum to avoid |
| 4266 | * oversubscribing the link. Max center spread |
| 4267 | * is 2.5%; use 5% for safety's sake. |
| 4268 | */ |
Jesse Barnes | 5a35420 | 2011-06-24 12:19:22 -0700 | [diff] [blame] | 4269 | u32 bps = target_clock * intel_crtc->bpp * 21 / 20; |
Eric Anholt | 8febb29 | 2011-03-30 13:01:07 -0700 | [diff] [blame] | 4270 | lane = bps / (link_bw * 8) + 1; |
| 4271 | } |
| 4272 | |
| 4273 | intel_crtc->fdi_lanes = lane; |
| 4274 | |
| 4275 | if (pixel_multiplier > 1) |
| 4276 | link_bw *= pixel_multiplier; |
Jesse Barnes | 5a35420 | 2011-06-24 12:19:22 -0700 | [diff] [blame] | 4277 | ironlake_compute_m_n(intel_crtc->bpp, lane, target_clock, link_bw, |
| 4278 | &m_n); |
Eric Anholt | 8febb29 | 2011-03-30 13:01:07 -0700 | [diff] [blame] | 4279 | |
Eric Anholt | a07d678 | 2011-03-30 13:01:08 -0700 | [diff] [blame] | 4280 | fp = clock.n << 16 | clock.m1 << 8 | clock.m2; |
| 4281 | if (has_reduced_clock) |
| 4282 | fp2 = reduced_clock.n << 16 | reduced_clock.m1 << 8 | |
| 4283 | reduced_clock.m2; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4284 | |
Chris Wilson | c185812 | 2010-12-03 21:35:48 +0000 | [diff] [blame] | 4285 | /* Enable autotuning of the PLL clock (if permissible) */ |
Eric Anholt | 8febb29 | 2011-03-30 13:01:07 -0700 | [diff] [blame] | 4286 | factor = 21; |
| 4287 | if (is_lvds) { |
| 4288 | if ((intel_panel_use_ssc(dev_priv) && |
| 4289 | dev_priv->lvds_ssc_freq == 100) || |
| 4290 | (I915_READ(PCH_LVDS) & LVDS_CLKB_POWER_MASK) == LVDS_CLKB_POWER_UP) |
| 4291 | factor = 25; |
| 4292 | } else if (is_sdvo && is_tv) |
| 4293 | factor = 20; |
Chris Wilson | c185812 | 2010-12-03 21:35:48 +0000 | [diff] [blame] | 4294 | |
Jesse Barnes | cb0e093 | 2011-07-28 14:50:30 -0700 | [diff] [blame] | 4295 | if (clock.m < factor * clock.n) |
Eric Anholt | 8febb29 | 2011-03-30 13:01:07 -0700 | [diff] [blame] | 4296 | fp |= FP_CB_TUNE; |
Chris Wilson | c185812 | 2010-12-03 21:35:48 +0000 | [diff] [blame] | 4297 | |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 4298 | dpll = 0; |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 4299 | |
Eric Anholt | a07d678 | 2011-03-30 13:01:08 -0700 | [diff] [blame] | 4300 | if (is_lvds) |
| 4301 | dpll |= DPLLB_MODE_LVDS; |
| 4302 | else |
| 4303 | dpll |= DPLLB_MODE_DAC_SERIAL; |
| 4304 | if (is_sdvo) { |
| 4305 | int pixel_multiplier = intel_mode_get_pixel_multiplier(adjusted_mode); |
| 4306 | if (pixel_multiplier > 1) { |
| 4307 | dpll |= (pixel_multiplier - 1) << PLL_REF_SDVO_HDMI_MULTIPLIER_SHIFT; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4308 | } |
Eric Anholt | a07d678 | 2011-03-30 13:01:08 -0700 | [diff] [blame] | 4309 | dpll |= DPLL_DVO_HIGH_SPEED; |
| 4310 | } |
Jesse Barnes | e3aef17 | 2012-04-10 11:58:03 -0700 | [diff] [blame] | 4311 | if (is_dp && !is_cpu_edp) |
Eric Anholt | a07d678 | 2011-03-30 13:01:08 -0700 | [diff] [blame] | 4312 | dpll |= DPLL_DVO_HIGH_SPEED; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4313 | |
Eric Anholt | a07d678 | 2011-03-30 13:01:08 -0700 | [diff] [blame] | 4314 | /* compute bitmask from p1 value */ |
| 4315 | dpll |= (1 << (clock.p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT; |
| 4316 | /* also FPA1 */ |
| 4317 | dpll |= (1 << (clock.p1 - 1)) << DPLL_FPA1_P1_POST_DIV_SHIFT; |
| 4318 | |
| 4319 | switch (clock.p2) { |
| 4320 | case 5: |
| 4321 | dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_5; |
| 4322 | break; |
| 4323 | case 7: |
| 4324 | dpll |= DPLLB_LVDS_P2_CLOCK_DIV_7; |
| 4325 | break; |
| 4326 | case 10: |
| 4327 | dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_10; |
| 4328 | break; |
| 4329 | case 14: |
| 4330 | dpll |= DPLLB_LVDS_P2_CLOCK_DIV_14; |
| 4331 | break; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4332 | } |
| 4333 | |
| 4334 | if (is_sdvo && is_tv) |
| 4335 | dpll |= PLL_REF_INPUT_TVCLKINBC; |
| 4336 | else if (is_tv) |
| 4337 | /* XXX: just matching BIOS for now */ |
| 4338 | /* dpll |= PLL_REF_INPUT_TVCLKINBC; */ |
| 4339 | dpll |= 3; |
Chris Wilson | a761503 | 2011-01-12 17:04:08 +0000 | [diff] [blame] | 4340 | 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] | 4341 | dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN; |
| 4342 | else |
| 4343 | dpll |= PLL_REF_INPUT_DREFCLK; |
| 4344 | |
| 4345 | /* setup pipeconf */ |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 4346 | pipeconf = I915_READ(PIPECONF(pipe)); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4347 | |
| 4348 | /* Set up the display plane register */ |
| 4349 | dspcntr = DISPPLANE_GAMMA_ENABLE; |
| 4350 | |
Jesse Barnes | f7cb34d | 2011-10-12 10:49:14 -0700 | [diff] [blame] | 4351 | DRM_DEBUG_KMS("Mode for pipe %d:\n", pipe); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4352 | drm_mode_debug_printmodeline(mode); |
| 4353 | |
Jesse Barnes | ee7b9f9 | 2012-04-20 17:11:53 +0100 | [diff] [blame^] | 4354 | /* CPU eDP is the only output that doesn't need a PCH PLL of its own */ |
| 4355 | if (!is_cpu_edp) { |
| 4356 | struct intel_pch_pll *pll; |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 4357 | |
Jesse Barnes | ee7b9f9 | 2012-04-20 17:11:53 +0100 | [diff] [blame^] | 4358 | pll = intel_get_pch_pll(intel_crtc, dpll, fp); |
| 4359 | if (pll == NULL) { |
| 4360 | DRM_DEBUG_DRIVER("failed to find PLL for pipe %d\n", |
| 4361 | pipe); |
Jesse Barnes | 4b645f1 | 2011-10-12 09:51:31 -0700 | [diff] [blame] | 4362 | return -EINVAL; |
| 4363 | } |
Jesse Barnes | ee7b9f9 | 2012-04-20 17:11:53 +0100 | [diff] [blame^] | 4364 | } else |
| 4365 | intel_put_pch_pll(intel_crtc); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4366 | |
| 4367 | /* The LVDS pin pair needs to be on before the DPLLs are enabled. |
| 4368 | * This is an exception to the general rule that mode_set doesn't turn |
| 4369 | * things on. |
| 4370 | */ |
| 4371 | if (is_lvds) { |
Eric Anholt | fae1498 | 2011-03-30 13:01:09 -0700 | [diff] [blame] | 4372 | temp = I915_READ(PCH_LVDS); |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 4373 | temp |= LVDS_PORT_EN | LVDS_A0A2_CLKA_POWER_UP; |
Jesse Barnes | 7885d20 | 2012-01-12 14:51:17 -0800 | [diff] [blame] | 4374 | if (HAS_PCH_CPT(dev)) { |
| 4375 | temp &= ~PORT_TRANS_SEL_MASK; |
Jesse Barnes | 4b645f1 | 2011-10-12 09:51:31 -0700 | [diff] [blame] | 4376 | temp |= PORT_TRANS_SEL_CPT(pipe); |
Jesse Barnes | 7885d20 | 2012-01-12 14:51:17 -0800 | [diff] [blame] | 4377 | } else { |
| 4378 | if (pipe == 1) |
| 4379 | temp |= LVDS_PIPEB_SELECT; |
| 4380 | else |
| 4381 | temp &= ~LVDS_PIPEB_SELECT; |
| 4382 | } |
Jesse Barnes | 4b645f1 | 2011-10-12 09:51:31 -0700 | [diff] [blame] | 4383 | |
Zhao Yakui | a3e17eb | 2009-10-10 10:42:37 +0800 | [diff] [blame] | 4384 | /* set the corresponsding LVDS_BORDER bit */ |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 4385 | temp |= dev_priv->lvds_border_bits; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4386 | /* Set the B0-B3 data pairs corresponding to whether we're going to |
| 4387 | * set the DPLLs for dual-channel mode or not. |
| 4388 | */ |
| 4389 | if (clock.p2 == 7) |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 4390 | temp |= LVDS_B0B3_POWER_UP | LVDS_CLKB_POWER_UP; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4391 | else |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 4392 | temp &= ~(LVDS_B0B3_POWER_UP | LVDS_CLKB_POWER_UP); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4393 | |
| 4394 | /* It would be nice to set 24 vs 18-bit mode (LVDS_A3_POWER_UP) |
| 4395 | * appropriately here, but we need to look more thoroughly into how |
| 4396 | * panels behave in the two modes. |
| 4397 | */ |
Chris Wilson | 284d5df | 2012-04-14 17:41:59 +0100 | [diff] [blame] | 4398 | temp &= ~(LVDS_HSYNC_POLARITY | LVDS_VSYNC_POLARITY); |
Bryan Freed | aa9b500 | 2011-01-12 13:43:19 -0800 | [diff] [blame] | 4399 | if (adjusted_mode->flags & DRM_MODE_FLAG_NHSYNC) |
Chris Wilson | 284d5df | 2012-04-14 17:41:59 +0100 | [diff] [blame] | 4400 | temp |= LVDS_HSYNC_POLARITY; |
Bryan Freed | aa9b500 | 2011-01-12 13:43:19 -0800 | [diff] [blame] | 4401 | if (adjusted_mode->flags & DRM_MODE_FLAG_NVSYNC) |
Chris Wilson | 284d5df | 2012-04-14 17:41:59 +0100 | [diff] [blame] | 4402 | temp |= LVDS_VSYNC_POLARITY; |
Eric Anholt | fae1498 | 2011-03-30 13:01:09 -0700 | [diff] [blame] | 4403 | I915_WRITE(PCH_LVDS, temp); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4404 | } |
Jesse Barnes | 434ed09 | 2010-09-07 14:48:06 -0700 | [diff] [blame] | 4405 | |
Eric Anholt | 8febb29 | 2011-03-30 13:01:07 -0700 | [diff] [blame] | 4406 | pipeconf &= ~PIPECONF_DITHER_EN; |
| 4407 | pipeconf &= ~PIPECONF_DITHER_TYPE_MASK; |
Jesse Barnes | 5a35420 | 2011-06-24 12:19:22 -0700 | [diff] [blame] | 4408 | if ((is_lvds && dev_priv->lvds_dither) || dither) { |
Eric Anholt | 8febb29 | 2011-03-30 13:01:07 -0700 | [diff] [blame] | 4409 | pipeconf |= PIPECONF_DITHER_EN; |
Daniel Vetter | f74974c | 2011-10-11 17:27:51 +0200 | [diff] [blame] | 4410 | pipeconf |= PIPECONF_DITHER_TYPE_SP; |
Jesse Barnes | 434ed09 | 2010-09-07 14:48:06 -0700 | [diff] [blame] | 4411 | } |
Jesse Barnes | e3aef17 | 2012-04-10 11:58:03 -0700 | [diff] [blame] | 4412 | if (is_dp && !is_cpu_edp) { |
Keith Packard | a4fc5ed | 2009-04-07 16:16:42 -0700 | [diff] [blame] | 4413 | intel_dp_set_m_n(crtc, mode, adjusted_mode); |
Eric Anholt | 8febb29 | 2011-03-30 13:01:07 -0700 | [diff] [blame] | 4414 | } else { |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 4415 | /* For non-DP output, clear any trans DP clock recovery setting.*/ |
Jesse Barnes | 9db4a9c | 2011-02-07 12:26:52 -0800 | [diff] [blame] | 4416 | I915_WRITE(TRANSDATA_M1(pipe), 0); |
| 4417 | I915_WRITE(TRANSDATA_N1(pipe), 0); |
| 4418 | I915_WRITE(TRANSDPLINK_M1(pipe), 0); |
| 4419 | I915_WRITE(TRANSDPLINK_N1(pipe), 0); |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 4420 | } |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4421 | |
Jesse Barnes | ee7b9f9 | 2012-04-20 17:11:53 +0100 | [diff] [blame^] | 4422 | if (intel_crtc->pch_pll) { |
| 4423 | I915_WRITE(intel_crtc->pch_pll->pll_reg, dpll); |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 4424 | |
Zhenyu Wang | 32f9d65 | 2009-07-24 01:00:32 +0800 | [diff] [blame] | 4425 | /* Wait for the clocks to stabilize. */ |
Jesse Barnes | ee7b9f9 | 2012-04-20 17:11:53 +0100 | [diff] [blame^] | 4426 | POSTING_READ(intel_crtc->pch_pll->pll_reg); |
Zhenyu Wang | 32f9d65 | 2009-07-24 01:00:32 +0800 | [diff] [blame] | 4427 | udelay(150); |
| 4428 | |
Eric Anholt | 8febb29 | 2011-03-30 13:01:07 -0700 | [diff] [blame] | 4429 | /* The pixel multiplier can only be updated once the |
| 4430 | * DPLL is enabled and the clocks are stable. |
| 4431 | * |
| 4432 | * So write it again. |
| 4433 | */ |
Jesse Barnes | ee7b9f9 | 2012-04-20 17:11:53 +0100 | [diff] [blame^] | 4434 | I915_WRITE(intel_crtc->pch_pll->pll_reg, dpll); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4435 | } |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4436 | |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 4437 | intel_crtc->lowfreq_avail = false; |
Jesse Barnes | ee7b9f9 | 2012-04-20 17:11:53 +0100 | [diff] [blame^] | 4438 | if (intel_crtc->pch_pll) { |
Jesse Barnes | 4b645f1 | 2011-10-12 09:51:31 -0700 | [diff] [blame] | 4439 | if (is_lvds && has_reduced_clock && i915_powersave) { |
Jesse Barnes | ee7b9f9 | 2012-04-20 17:11:53 +0100 | [diff] [blame^] | 4440 | I915_WRITE(intel_crtc->pch_pll->fp1_reg, fp2); |
Jesse Barnes | 4b645f1 | 2011-10-12 09:51:31 -0700 | [diff] [blame] | 4441 | intel_crtc->lowfreq_avail = true; |
| 4442 | if (HAS_PIPE_CXSR(dev)) { |
| 4443 | DRM_DEBUG_KMS("enabling CxSR downclocking\n"); |
| 4444 | pipeconf |= PIPECONF_CXSR_DOWNCLOCK; |
| 4445 | } |
| 4446 | } else { |
Jesse Barnes | ee7b9f9 | 2012-04-20 17:11:53 +0100 | [diff] [blame^] | 4447 | I915_WRITE(intel_crtc->pch_pll->fp1_reg, fp); |
Jesse Barnes | 4b645f1 | 2011-10-12 09:51:31 -0700 | [diff] [blame] | 4448 | if (HAS_PIPE_CXSR(dev)) { |
| 4449 | DRM_DEBUG_KMS("disabling CxSR downclocking\n"); |
| 4450 | pipeconf &= ~PIPECONF_CXSR_DOWNCLOCK; |
| 4451 | } |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 4452 | } |
| 4453 | } |
| 4454 | |
Keith Packard | 617cf88 | 2012-02-08 13:53:38 -0800 | [diff] [blame] | 4455 | pipeconf &= ~PIPECONF_INTERLACE_MASK; |
Krzysztof Halasa | 734b415 | 2010-05-25 18:41:46 +0200 | [diff] [blame] | 4456 | if (adjusted_mode->flags & DRM_MODE_FLAG_INTERLACE) { |
Daniel Vetter | 5def474 | 2012-01-28 14:49:22 +0100 | [diff] [blame] | 4457 | pipeconf |= PIPECONF_INTERLACED_ILK; |
Krzysztof Halasa | 734b415 | 2010-05-25 18:41:46 +0200 | [diff] [blame] | 4458 | /* the chip adds 2 halflines automatically */ |
Krzysztof Halasa | 734b415 | 2010-05-25 18:41:46 +0200 | [diff] [blame] | 4459 | adjusted_mode->crtc_vtotal -= 1; |
Krzysztof Halasa | 734b415 | 2010-05-25 18:41:46 +0200 | [diff] [blame] | 4460 | adjusted_mode->crtc_vblank_end -= 1; |
Daniel Vetter | 0529a0d | 2012-01-28 14:49:24 +0100 | [diff] [blame] | 4461 | I915_WRITE(VSYNCSHIFT(pipe), |
| 4462 | adjusted_mode->crtc_hsync_start |
| 4463 | - adjusted_mode->crtc_htotal/2); |
| 4464 | } else { |
Keith Packard | 617cf88 | 2012-02-08 13:53:38 -0800 | [diff] [blame] | 4465 | pipeconf |= PIPECONF_PROGRESSIVE; |
Daniel Vetter | 0529a0d | 2012-01-28 14:49:24 +0100 | [diff] [blame] | 4466 | I915_WRITE(VSYNCSHIFT(pipe), 0); |
| 4467 | } |
Krzysztof Halasa | 734b415 | 2010-05-25 18:41:46 +0200 | [diff] [blame] | 4468 | |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 4469 | I915_WRITE(HTOTAL(pipe), |
| 4470 | (adjusted_mode->crtc_hdisplay - 1) | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4471 | ((adjusted_mode->crtc_htotal - 1) << 16)); |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 4472 | I915_WRITE(HBLANK(pipe), |
| 4473 | (adjusted_mode->crtc_hblank_start - 1) | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4474 | ((adjusted_mode->crtc_hblank_end - 1) << 16)); |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 4475 | I915_WRITE(HSYNC(pipe), |
| 4476 | (adjusted_mode->crtc_hsync_start - 1) | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4477 | ((adjusted_mode->crtc_hsync_end - 1) << 16)); |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 4478 | |
| 4479 | I915_WRITE(VTOTAL(pipe), |
| 4480 | (adjusted_mode->crtc_vdisplay - 1) | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4481 | ((adjusted_mode->crtc_vtotal - 1) << 16)); |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 4482 | I915_WRITE(VBLANK(pipe), |
| 4483 | (adjusted_mode->crtc_vblank_start - 1) | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4484 | ((adjusted_mode->crtc_vblank_end - 1) << 16)); |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 4485 | I915_WRITE(VSYNC(pipe), |
| 4486 | (adjusted_mode->crtc_vsync_start - 1) | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4487 | ((adjusted_mode->crtc_vsync_end - 1) << 16)); |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 4488 | |
Eric Anholt | 8febb29 | 2011-03-30 13:01:07 -0700 | [diff] [blame] | 4489 | /* pipesrc controls the size that is scaled from, which should |
| 4490 | * always be the user's requested size. |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4491 | */ |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 4492 | I915_WRITE(PIPESRC(pipe), |
| 4493 | ((mode->hdisplay - 1) << 16) | (mode->vdisplay - 1)); |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 4494 | |
Eric Anholt | 8febb29 | 2011-03-30 13:01:07 -0700 | [diff] [blame] | 4495 | I915_WRITE(PIPE_DATA_M1(pipe), TU_SIZE(m_n.tu) | m_n.gmch_m); |
| 4496 | I915_WRITE(PIPE_DATA_N1(pipe), m_n.gmch_n); |
| 4497 | I915_WRITE(PIPE_LINK_M1(pipe), m_n.link_m); |
| 4498 | I915_WRITE(PIPE_LINK_N1(pipe), m_n.link_n); |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 4499 | |
Jesse Barnes | e3aef17 | 2012-04-10 11:58:03 -0700 | [diff] [blame] | 4500 | if (is_cpu_edp) |
Eric Anholt | 8febb29 | 2011-03-30 13:01:07 -0700 | [diff] [blame] | 4501 | ironlake_set_pll_edp(crtc, adjusted_mode->clock); |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 4502 | |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 4503 | I915_WRITE(PIPECONF(pipe), pipeconf); |
| 4504 | POSTING_READ(PIPECONF(pipe)); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4505 | |
Jesse Barnes | 9d0498a | 2010-08-18 13:20:54 -0700 | [diff] [blame] | 4506 | intel_wait_for_vblank(dev, pipe); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4507 | |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 4508 | I915_WRITE(DSPCNTR(plane), dspcntr); |
Jesse Barnes | b24e717 | 2011-01-04 15:09:30 -0800 | [diff] [blame] | 4509 | POSTING_READ(DSPCNTR(plane)); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4510 | |
Chris Wilson | 5c3b82e | 2009-02-11 13:25:09 +0000 | [diff] [blame] | 4511 | ret = intel_pipe_set_base(crtc, x, y, old_fb); |
Shaohua Li | 7662c8b | 2009-06-26 11:23:55 +0800 | [diff] [blame] | 4512 | |
| 4513 | intel_update_watermarks(dev); |
| 4514 | |
Chris Wilson | 1f803ee | 2009-06-06 09:45:59 +0100 | [diff] [blame] | 4515 | return ret; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4516 | } |
| 4517 | |
Eric Anholt | f564048e | 2011-03-30 13:01:02 -0700 | [diff] [blame] | 4518 | static int intel_crtc_mode_set(struct drm_crtc *crtc, |
| 4519 | struct drm_display_mode *mode, |
| 4520 | struct drm_display_mode *adjusted_mode, |
| 4521 | int x, int y, |
| 4522 | struct drm_framebuffer *old_fb) |
| 4523 | { |
| 4524 | struct drm_device *dev = crtc->dev; |
| 4525 | struct drm_i915_private *dev_priv = dev->dev_private; |
Eric Anholt | 0b701d2 | 2011-03-30 13:01:03 -0700 | [diff] [blame] | 4526 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 4527 | int pipe = intel_crtc->pipe; |
Eric Anholt | f564048e | 2011-03-30 13:01:02 -0700 | [diff] [blame] | 4528 | int ret; |
| 4529 | |
Eric Anholt | 0b701d2 | 2011-03-30 13:01:03 -0700 | [diff] [blame] | 4530 | drm_vblank_pre_modeset(dev, pipe); |
| 4531 | |
Eric Anholt | f564048e | 2011-03-30 13:01:02 -0700 | [diff] [blame] | 4532 | ret = dev_priv->display.crtc_mode_set(crtc, mode, adjusted_mode, |
| 4533 | x, y, old_fb); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4534 | drm_vblank_post_modeset(dev, pipe); |
| 4535 | |
Jesse Barnes | d8e70a2 | 2011-11-15 10:28:54 -0800 | [diff] [blame] | 4536 | if (ret) |
| 4537 | intel_crtc->dpms_mode = DRM_MODE_DPMS_OFF; |
| 4538 | else |
| 4539 | intel_crtc->dpms_mode = DRM_MODE_DPMS_ON; |
Keith Packard | 120eced | 2011-07-27 01:21:40 -0700 | [diff] [blame] | 4540 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4541 | return ret; |
| 4542 | } |
| 4543 | |
Wu Fengguang | 3a9627f | 2011-12-09 20:42:19 +0800 | [diff] [blame] | 4544 | static bool intel_eld_uptodate(struct drm_connector *connector, |
| 4545 | int reg_eldv, uint32_t bits_eldv, |
| 4546 | int reg_elda, uint32_t bits_elda, |
| 4547 | int reg_edid) |
| 4548 | { |
| 4549 | struct drm_i915_private *dev_priv = connector->dev->dev_private; |
| 4550 | uint8_t *eld = connector->eld; |
| 4551 | uint32_t i; |
| 4552 | |
| 4553 | i = I915_READ(reg_eldv); |
| 4554 | i &= bits_eldv; |
| 4555 | |
| 4556 | if (!eld[0]) |
| 4557 | return !i; |
| 4558 | |
| 4559 | if (!i) |
| 4560 | return false; |
| 4561 | |
| 4562 | i = I915_READ(reg_elda); |
| 4563 | i &= ~bits_elda; |
| 4564 | I915_WRITE(reg_elda, i); |
| 4565 | |
| 4566 | for (i = 0; i < eld[2]; i++) |
| 4567 | if (I915_READ(reg_edid) != *((uint32_t *)eld + i)) |
| 4568 | return false; |
| 4569 | |
| 4570 | return true; |
| 4571 | } |
| 4572 | |
Wu Fengguang | e0dac65 | 2011-09-05 14:25:34 +0800 | [diff] [blame] | 4573 | static void g4x_write_eld(struct drm_connector *connector, |
| 4574 | struct drm_crtc *crtc) |
| 4575 | { |
| 4576 | struct drm_i915_private *dev_priv = connector->dev->dev_private; |
| 4577 | uint8_t *eld = connector->eld; |
| 4578 | uint32_t eldv; |
| 4579 | uint32_t len; |
| 4580 | uint32_t i; |
| 4581 | |
| 4582 | i = I915_READ(G4X_AUD_VID_DID); |
| 4583 | |
| 4584 | if (i == INTEL_AUDIO_DEVBLC || i == INTEL_AUDIO_DEVCL) |
| 4585 | eldv = G4X_ELDV_DEVCL_DEVBLC; |
| 4586 | else |
| 4587 | eldv = G4X_ELDV_DEVCTG; |
| 4588 | |
Wu Fengguang | 3a9627f | 2011-12-09 20:42:19 +0800 | [diff] [blame] | 4589 | if (intel_eld_uptodate(connector, |
| 4590 | G4X_AUD_CNTL_ST, eldv, |
| 4591 | G4X_AUD_CNTL_ST, G4X_ELD_ADDR, |
| 4592 | G4X_HDMIW_HDMIEDID)) |
| 4593 | return; |
| 4594 | |
Wu Fengguang | e0dac65 | 2011-09-05 14:25:34 +0800 | [diff] [blame] | 4595 | i = I915_READ(G4X_AUD_CNTL_ST); |
| 4596 | i &= ~(eldv | G4X_ELD_ADDR); |
| 4597 | len = (i >> 9) & 0x1f; /* ELD buffer size */ |
| 4598 | I915_WRITE(G4X_AUD_CNTL_ST, i); |
| 4599 | |
| 4600 | if (!eld[0]) |
| 4601 | return; |
| 4602 | |
| 4603 | len = min_t(uint8_t, eld[2], len); |
| 4604 | DRM_DEBUG_DRIVER("ELD size %d\n", len); |
| 4605 | for (i = 0; i < len; i++) |
| 4606 | I915_WRITE(G4X_HDMIW_HDMIEDID, *((uint32_t *)eld + i)); |
| 4607 | |
| 4608 | i = I915_READ(G4X_AUD_CNTL_ST); |
| 4609 | i |= eldv; |
| 4610 | I915_WRITE(G4X_AUD_CNTL_ST, i); |
| 4611 | } |
| 4612 | |
| 4613 | static void ironlake_write_eld(struct drm_connector *connector, |
| 4614 | struct drm_crtc *crtc) |
| 4615 | { |
| 4616 | struct drm_i915_private *dev_priv = connector->dev->dev_private; |
| 4617 | uint8_t *eld = connector->eld; |
| 4618 | uint32_t eldv; |
| 4619 | uint32_t i; |
| 4620 | int len; |
| 4621 | int hdmiw_hdmiedid; |
Wu Fengguang | b6daa02 | 2012-01-06 14:41:31 -0600 | [diff] [blame] | 4622 | int aud_config; |
Wu Fengguang | e0dac65 | 2011-09-05 14:25:34 +0800 | [diff] [blame] | 4623 | int aud_cntl_st; |
| 4624 | int aud_cntrl_st2; |
| 4625 | |
Wu Fengguang | b3f33cb | 2011-12-09 20:42:17 +0800 | [diff] [blame] | 4626 | if (HAS_PCH_IBX(connector->dev)) { |
Wu Fengguang | 1202b4c6 | 2011-12-09 20:42:18 +0800 | [diff] [blame] | 4627 | hdmiw_hdmiedid = IBX_HDMIW_HDMIEDID_A; |
Wu Fengguang | b6daa02 | 2012-01-06 14:41:31 -0600 | [diff] [blame] | 4628 | aud_config = IBX_AUD_CONFIG_A; |
Wu Fengguang | 1202b4c6 | 2011-12-09 20:42:18 +0800 | [diff] [blame] | 4629 | aud_cntl_st = IBX_AUD_CNTL_ST_A; |
| 4630 | aud_cntrl_st2 = IBX_AUD_CNTL_ST2; |
Wu Fengguang | e0dac65 | 2011-09-05 14:25:34 +0800 | [diff] [blame] | 4631 | } else { |
Wu Fengguang | 1202b4c6 | 2011-12-09 20:42:18 +0800 | [diff] [blame] | 4632 | hdmiw_hdmiedid = CPT_HDMIW_HDMIEDID_A; |
Wu Fengguang | b6daa02 | 2012-01-06 14:41:31 -0600 | [diff] [blame] | 4633 | aud_config = CPT_AUD_CONFIG_A; |
Wu Fengguang | 1202b4c6 | 2011-12-09 20:42:18 +0800 | [diff] [blame] | 4634 | aud_cntl_st = CPT_AUD_CNTL_ST_A; |
| 4635 | aud_cntrl_st2 = CPT_AUD_CNTRL_ST2; |
Wu Fengguang | e0dac65 | 2011-09-05 14:25:34 +0800 | [diff] [blame] | 4636 | } |
| 4637 | |
| 4638 | i = to_intel_crtc(crtc)->pipe; |
| 4639 | hdmiw_hdmiedid += i * 0x100; |
| 4640 | aud_cntl_st += i * 0x100; |
Wu Fengguang | b6daa02 | 2012-01-06 14:41:31 -0600 | [diff] [blame] | 4641 | aud_config += i * 0x100; |
Wu Fengguang | e0dac65 | 2011-09-05 14:25:34 +0800 | [diff] [blame] | 4642 | |
| 4643 | DRM_DEBUG_DRIVER("ELD on pipe %c\n", pipe_name(i)); |
| 4644 | |
| 4645 | i = I915_READ(aud_cntl_st); |
| 4646 | i = (i >> 29) & 0x3; /* DIP_Port_Select, 0x1 = PortB */ |
| 4647 | if (!i) { |
| 4648 | DRM_DEBUG_DRIVER("Audio directed to unknown port\n"); |
| 4649 | /* operate blindly on all ports */ |
Wu Fengguang | 1202b4c6 | 2011-12-09 20:42:18 +0800 | [diff] [blame] | 4650 | eldv = IBX_ELD_VALIDB; |
| 4651 | eldv |= IBX_ELD_VALIDB << 4; |
| 4652 | eldv |= IBX_ELD_VALIDB << 8; |
Wu Fengguang | e0dac65 | 2011-09-05 14:25:34 +0800 | [diff] [blame] | 4653 | } else { |
| 4654 | DRM_DEBUG_DRIVER("ELD on port %c\n", 'A' + i); |
Wu Fengguang | 1202b4c6 | 2011-12-09 20:42:18 +0800 | [diff] [blame] | 4655 | eldv = IBX_ELD_VALIDB << ((i - 1) * 4); |
Wu Fengguang | e0dac65 | 2011-09-05 14:25:34 +0800 | [diff] [blame] | 4656 | } |
| 4657 | |
Wu Fengguang | 3a9627f | 2011-12-09 20:42:19 +0800 | [diff] [blame] | 4658 | if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT)) { |
| 4659 | DRM_DEBUG_DRIVER("ELD: DisplayPort detected\n"); |
| 4660 | eld[5] |= (1 << 2); /* Conn_Type, 0x1 = DisplayPort */ |
Wu Fengguang | b6daa02 | 2012-01-06 14:41:31 -0600 | [diff] [blame] | 4661 | I915_WRITE(aud_config, AUD_CONFIG_N_VALUE_INDEX); /* 0x1 = DP */ |
| 4662 | } else |
| 4663 | I915_WRITE(aud_config, 0); |
Wu Fengguang | 3a9627f | 2011-12-09 20:42:19 +0800 | [diff] [blame] | 4664 | |
| 4665 | if (intel_eld_uptodate(connector, |
| 4666 | aud_cntrl_st2, eldv, |
| 4667 | aud_cntl_st, IBX_ELD_ADDRESS, |
| 4668 | hdmiw_hdmiedid)) |
| 4669 | return; |
| 4670 | |
Wu Fengguang | e0dac65 | 2011-09-05 14:25:34 +0800 | [diff] [blame] | 4671 | i = I915_READ(aud_cntrl_st2); |
| 4672 | i &= ~eldv; |
| 4673 | I915_WRITE(aud_cntrl_st2, i); |
| 4674 | |
| 4675 | if (!eld[0]) |
| 4676 | return; |
| 4677 | |
Wu Fengguang | e0dac65 | 2011-09-05 14:25:34 +0800 | [diff] [blame] | 4678 | i = I915_READ(aud_cntl_st); |
Wu Fengguang | 1202b4c6 | 2011-12-09 20:42:18 +0800 | [diff] [blame] | 4679 | i &= ~IBX_ELD_ADDRESS; |
Wu Fengguang | e0dac65 | 2011-09-05 14:25:34 +0800 | [diff] [blame] | 4680 | I915_WRITE(aud_cntl_st, i); |
| 4681 | |
| 4682 | len = min_t(uint8_t, eld[2], 21); /* 84 bytes of hw ELD buffer */ |
| 4683 | DRM_DEBUG_DRIVER("ELD size %d\n", len); |
| 4684 | for (i = 0; i < len; i++) |
| 4685 | I915_WRITE(hdmiw_hdmiedid, *((uint32_t *)eld + i)); |
| 4686 | |
| 4687 | i = I915_READ(aud_cntrl_st2); |
| 4688 | i |= eldv; |
| 4689 | I915_WRITE(aud_cntrl_st2, i); |
| 4690 | } |
| 4691 | |
| 4692 | void intel_write_eld(struct drm_encoder *encoder, |
| 4693 | struct drm_display_mode *mode) |
| 4694 | { |
| 4695 | struct drm_crtc *crtc = encoder->crtc; |
| 4696 | struct drm_connector *connector; |
| 4697 | struct drm_device *dev = encoder->dev; |
| 4698 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 4699 | |
| 4700 | connector = drm_select_eld(encoder, mode); |
| 4701 | if (!connector) |
| 4702 | return; |
| 4703 | |
| 4704 | DRM_DEBUG_DRIVER("ELD on [CONNECTOR:%d:%s], [ENCODER:%d:%s]\n", |
| 4705 | connector->base.id, |
| 4706 | drm_get_connector_name(connector), |
| 4707 | connector->encoder->base.id, |
| 4708 | drm_get_encoder_name(connector->encoder)); |
| 4709 | |
| 4710 | connector->eld[6] = drm_av_sync_delay(connector, mode) / 2; |
| 4711 | |
| 4712 | if (dev_priv->display.write_eld) |
| 4713 | dev_priv->display.write_eld(connector, crtc); |
| 4714 | } |
| 4715 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4716 | /** Loads the palette/gamma unit for the CRTC with the prepared values */ |
| 4717 | void intel_crtc_load_lut(struct drm_crtc *crtc) |
| 4718 | { |
| 4719 | struct drm_device *dev = crtc->dev; |
| 4720 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 4721 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
Jesse Barnes | 9db4a9c | 2011-02-07 12:26:52 -0800 | [diff] [blame] | 4722 | int palreg = PALETTE(intel_crtc->pipe); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4723 | int i; |
| 4724 | |
| 4725 | /* The clocks have to be on to load the palette. */ |
Alban Browaeys | aed3f09 | 2012-02-24 17:12:45 +0000 | [diff] [blame] | 4726 | if (!crtc->enabled || !intel_crtc->active) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4727 | return; |
| 4728 | |
Adam Jackson | f2b115e | 2009-12-03 17:14:42 -0500 | [diff] [blame] | 4729 | /* use legacy palette for Ironlake */ |
Eric Anholt | bad720f | 2009-10-22 16:11:14 -0700 | [diff] [blame] | 4730 | if (HAS_PCH_SPLIT(dev)) |
Jesse Barnes | 9db4a9c | 2011-02-07 12:26:52 -0800 | [diff] [blame] | 4731 | palreg = LGC_PALETTE(intel_crtc->pipe); |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 4732 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4733 | for (i = 0; i < 256; i++) { |
| 4734 | I915_WRITE(palreg + 4 * i, |
| 4735 | (intel_crtc->lut_r[i] << 16) | |
| 4736 | (intel_crtc->lut_g[i] << 8) | |
| 4737 | intel_crtc->lut_b[i]); |
| 4738 | } |
| 4739 | } |
| 4740 | |
Chris Wilson | 560b85b | 2010-08-07 11:01:38 +0100 | [diff] [blame] | 4741 | static void i845_update_cursor(struct drm_crtc *crtc, u32 base) |
| 4742 | { |
| 4743 | struct drm_device *dev = crtc->dev; |
| 4744 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 4745 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 4746 | bool visible = base != 0; |
| 4747 | u32 cntl; |
| 4748 | |
| 4749 | if (intel_crtc->cursor_visible == visible) |
| 4750 | return; |
| 4751 | |
Jesse Barnes | 9db4a9c | 2011-02-07 12:26:52 -0800 | [diff] [blame] | 4752 | cntl = I915_READ(_CURACNTR); |
Chris Wilson | 560b85b | 2010-08-07 11:01:38 +0100 | [diff] [blame] | 4753 | if (visible) { |
| 4754 | /* On these chipsets we can only modify the base whilst |
| 4755 | * the cursor is disabled. |
| 4756 | */ |
Jesse Barnes | 9db4a9c | 2011-02-07 12:26:52 -0800 | [diff] [blame] | 4757 | I915_WRITE(_CURABASE, base); |
Chris Wilson | 560b85b | 2010-08-07 11:01:38 +0100 | [diff] [blame] | 4758 | |
| 4759 | cntl &= ~(CURSOR_FORMAT_MASK); |
| 4760 | /* XXX width must be 64, stride 256 => 0x00 << 28 */ |
| 4761 | cntl |= CURSOR_ENABLE | |
| 4762 | CURSOR_GAMMA_ENABLE | |
| 4763 | CURSOR_FORMAT_ARGB; |
| 4764 | } else |
| 4765 | cntl &= ~(CURSOR_ENABLE | CURSOR_GAMMA_ENABLE); |
Jesse Barnes | 9db4a9c | 2011-02-07 12:26:52 -0800 | [diff] [blame] | 4766 | I915_WRITE(_CURACNTR, cntl); |
Chris Wilson | 560b85b | 2010-08-07 11:01:38 +0100 | [diff] [blame] | 4767 | |
| 4768 | intel_crtc->cursor_visible = visible; |
| 4769 | } |
| 4770 | |
| 4771 | static void i9xx_update_cursor(struct drm_crtc *crtc, u32 base) |
| 4772 | { |
| 4773 | struct drm_device *dev = crtc->dev; |
| 4774 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 4775 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 4776 | int pipe = intel_crtc->pipe; |
| 4777 | bool visible = base != 0; |
| 4778 | |
| 4779 | if (intel_crtc->cursor_visible != visible) { |
Jesse Barnes | 548f245 | 2011-02-17 10:40:53 -0800 | [diff] [blame] | 4780 | uint32_t cntl = I915_READ(CURCNTR(pipe)); |
Chris Wilson | 560b85b | 2010-08-07 11:01:38 +0100 | [diff] [blame] | 4781 | if (base) { |
| 4782 | cntl &= ~(CURSOR_MODE | MCURSOR_PIPE_SELECT); |
| 4783 | cntl |= CURSOR_MODE_64_ARGB_AX | MCURSOR_GAMMA_ENABLE; |
| 4784 | cntl |= pipe << 28; /* Connect to correct pipe */ |
| 4785 | } else { |
| 4786 | cntl &= ~(CURSOR_MODE | MCURSOR_GAMMA_ENABLE); |
| 4787 | cntl |= CURSOR_MODE_DISABLE; |
| 4788 | } |
Jesse Barnes | 9db4a9c | 2011-02-07 12:26:52 -0800 | [diff] [blame] | 4789 | I915_WRITE(CURCNTR(pipe), cntl); |
Chris Wilson | 560b85b | 2010-08-07 11:01:38 +0100 | [diff] [blame] | 4790 | |
| 4791 | intel_crtc->cursor_visible = visible; |
| 4792 | } |
| 4793 | /* and commit changes on next vblank */ |
Jesse Barnes | 9db4a9c | 2011-02-07 12:26:52 -0800 | [diff] [blame] | 4794 | I915_WRITE(CURBASE(pipe), base); |
Chris Wilson | 560b85b | 2010-08-07 11:01:38 +0100 | [diff] [blame] | 4795 | } |
| 4796 | |
Jesse Barnes | 65a21cd | 2011-10-12 11:10:21 -0700 | [diff] [blame] | 4797 | static void ivb_update_cursor(struct drm_crtc *crtc, u32 base) |
| 4798 | { |
| 4799 | struct drm_device *dev = crtc->dev; |
| 4800 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 4801 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 4802 | int pipe = intel_crtc->pipe; |
| 4803 | bool visible = base != 0; |
| 4804 | |
| 4805 | if (intel_crtc->cursor_visible != visible) { |
| 4806 | uint32_t cntl = I915_READ(CURCNTR_IVB(pipe)); |
| 4807 | if (base) { |
| 4808 | cntl &= ~CURSOR_MODE; |
| 4809 | cntl |= CURSOR_MODE_64_ARGB_AX | MCURSOR_GAMMA_ENABLE; |
| 4810 | } else { |
| 4811 | cntl &= ~(CURSOR_MODE | MCURSOR_GAMMA_ENABLE); |
| 4812 | cntl |= CURSOR_MODE_DISABLE; |
| 4813 | } |
| 4814 | I915_WRITE(CURCNTR_IVB(pipe), cntl); |
| 4815 | |
| 4816 | intel_crtc->cursor_visible = visible; |
| 4817 | } |
| 4818 | /* and commit changes on next vblank */ |
| 4819 | I915_WRITE(CURBASE_IVB(pipe), base); |
| 4820 | } |
| 4821 | |
Chris Wilson | cda4b7d | 2010-07-09 08:45:04 +0100 | [diff] [blame] | 4822 | /* 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] | 4823 | static void intel_crtc_update_cursor(struct drm_crtc *crtc, |
| 4824 | bool on) |
Chris Wilson | cda4b7d | 2010-07-09 08:45:04 +0100 | [diff] [blame] | 4825 | { |
| 4826 | struct drm_device *dev = crtc->dev; |
| 4827 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 4828 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 4829 | int pipe = intel_crtc->pipe; |
| 4830 | int x = intel_crtc->cursor_x; |
| 4831 | int y = intel_crtc->cursor_y; |
Chris Wilson | 560b85b | 2010-08-07 11:01:38 +0100 | [diff] [blame] | 4832 | u32 base, pos; |
Chris Wilson | cda4b7d | 2010-07-09 08:45:04 +0100 | [diff] [blame] | 4833 | bool visible; |
| 4834 | |
| 4835 | pos = 0; |
| 4836 | |
Chris Wilson | 6b383a7 | 2010-09-13 13:54:26 +0100 | [diff] [blame] | 4837 | if (on && crtc->enabled && crtc->fb) { |
Chris Wilson | cda4b7d | 2010-07-09 08:45:04 +0100 | [diff] [blame] | 4838 | base = intel_crtc->cursor_addr; |
| 4839 | if (x > (int) crtc->fb->width) |
| 4840 | base = 0; |
| 4841 | |
| 4842 | if (y > (int) crtc->fb->height) |
| 4843 | base = 0; |
| 4844 | } else |
| 4845 | base = 0; |
| 4846 | |
| 4847 | if (x < 0) { |
| 4848 | if (x + intel_crtc->cursor_width < 0) |
| 4849 | base = 0; |
| 4850 | |
| 4851 | pos |= CURSOR_POS_SIGN << CURSOR_X_SHIFT; |
| 4852 | x = -x; |
| 4853 | } |
| 4854 | pos |= x << CURSOR_X_SHIFT; |
| 4855 | |
| 4856 | if (y < 0) { |
| 4857 | if (y + intel_crtc->cursor_height < 0) |
| 4858 | base = 0; |
| 4859 | |
| 4860 | pos |= CURSOR_POS_SIGN << CURSOR_Y_SHIFT; |
| 4861 | y = -y; |
| 4862 | } |
| 4863 | pos |= y << CURSOR_Y_SHIFT; |
| 4864 | |
| 4865 | visible = base != 0; |
Chris Wilson | 560b85b | 2010-08-07 11:01:38 +0100 | [diff] [blame] | 4866 | if (!visible && !intel_crtc->cursor_visible) |
Chris Wilson | cda4b7d | 2010-07-09 08:45:04 +0100 | [diff] [blame] | 4867 | return; |
| 4868 | |
Eugeni Dodonov | 0cd83aa | 2012-04-13 17:08:48 -0300 | [diff] [blame] | 4869 | if (IS_IVYBRIDGE(dev) || IS_HASWELL(dev)) { |
Jesse Barnes | 65a21cd | 2011-10-12 11:10:21 -0700 | [diff] [blame] | 4870 | I915_WRITE(CURPOS_IVB(pipe), pos); |
| 4871 | ivb_update_cursor(crtc, base); |
| 4872 | } else { |
| 4873 | I915_WRITE(CURPOS(pipe), pos); |
| 4874 | if (IS_845G(dev) || IS_I865G(dev)) |
| 4875 | i845_update_cursor(crtc, base); |
| 4876 | else |
| 4877 | i9xx_update_cursor(crtc, base); |
| 4878 | } |
Chris Wilson | cda4b7d | 2010-07-09 08:45:04 +0100 | [diff] [blame] | 4879 | |
| 4880 | if (visible) |
| 4881 | intel_mark_busy(dev, to_intel_framebuffer(crtc->fb)->obj); |
| 4882 | } |
| 4883 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4884 | static int intel_crtc_cursor_set(struct drm_crtc *crtc, |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 4885 | struct drm_file *file, |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4886 | uint32_t handle, |
| 4887 | uint32_t width, uint32_t height) |
| 4888 | { |
| 4889 | struct drm_device *dev = crtc->dev; |
| 4890 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 4891 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 4892 | struct drm_i915_gem_object *obj; |
Chris Wilson | cda4b7d | 2010-07-09 08:45:04 +0100 | [diff] [blame] | 4893 | uint32_t addr; |
Kristian Høgsberg | 3f8bc37 | 2008-12-17 22:14:59 -0500 | [diff] [blame] | 4894 | int ret; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4895 | |
Zhao Yakui | 28c9773 | 2009-10-09 11:39:41 +0800 | [diff] [blame] | 4896 | DRM_DEBUG_KMS("\n"); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4897 | |
| 4898 | /* if we want to turn off the cursor ignore width and height */ |
| 4899 | if (!handle) { |
Zhao Yakui | 28c9773 | 2009-10-09 11:39:41 +0800 | [diff] [blame] | 4900 | DRM_DEBUG_KMS("cursor off\n"); |
Kristian Høgsberg | 3f8bc37 | 2008-12-17 22:14:59 -0500 | [diff] [blame] | 4901 | addr = 0; |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 4902 | obj = NULL; |
Pierre Willenbrock | 5004417 | 2009-02-23 10:12:15 +1000 | [diff] [blame] | 4903 | mutex_lock(&dev->struct_mutex); |
Kristian Høgsberg | 3f8bc37 | 2008-12-17 22:14:59 -0500 | [diff] [blame] | 4904 | goto finish; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4905 | } |
| 4906 | |
| 4907 | /* Currently we only support 64x64 cursors */ |
| 4908 | if (width != 64 || height != 64) { |
| 4909 | DRM_ERROR("we currently only support 64x64 cursors\n"); |
| 4910 | return -EINVAL; |
| 4911 | } |
| 4912 | |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 4913 | obj = to_intel_bo(drm_gem_object_lookup(dev, file, handle)); |
Chris Wilson | c872522 | 2011-02-19 11:31:06 +0000 | [diff] [blame] | 4914 | if (&obj->base == NULL) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4915 | return -ENOENT; |
| 4916 | |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 4917 | if (obj->base.size < width * height * 4) { |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4918 | DRM_ERROR("buffer is to small\n"); |
Dave Airlie | 34b8686e | 2009-01-15 14:03:07 +1000 | [diff] [blame] | 4919 | ret = -ENOMEM; |
| 4920 | goto fail; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4921 | } |
| 4922 | |
Dave Airlie | 71acb5e | 2008-12-30 20:31:46 +1000 | [diff] [blame] | 4923 | /* 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] | 4924 | mutex_lock(&dev->struct_mutex); |
Kristian Høgsberg | b295d1b | 2009-12-16 15:16:17 -0500 | [diff] [blame] | 4925 | if (!dev_priv->info->cursor_needs_physical) { |
Chris Wilson | d9e86c0 | 2010-11-10 16:40:20 +0000 | [diff] [blame] | 4926 | if (obj->tiling_mode) { |
| 4927 | DRM_ERROR("cursor cannot be tiled\n"); |
| 4928 | ret = -EINVAL; |
| 4929 | goto fail_locked; |
| 4930 | } |
| 4931 | |
Chris Wilson | 2da3b9b | 2011-04-14 09:41:17 +0100 | [diff] [blame] | 4932 | ret = i915_gem_object_pin_to_display_plane(obj, 0, NULL); |
Chris Wilson | e7b526b | 2010-06-02 08:30:48 +0100 | [diff] [blame] | 4933 | if (ret) { |
| 4934 | DRM_ERROR("failed to move cursor bo into the GTT\n"); |
Chris Wilson | 2da3b9b | 2011-04-14 09:41:17 +0100 | [diff] [blame] | 4935 | goto fail_locked; |
Chris Wilson | e7b526b | 2010-06-02 08:30:48 +0100 | [diff] [blame] | 4936 | } |
| 4937 | |
Chris Wilson | d9e86c0 | 2010-11-10 16:40:20 +0000 | [diff] [blame] | 4938 | ret = i915_gem_object_put_fence(obj); |
| 4939 | if (ret) { |
Chris Wilson | 2da3b9b | 2011-04-14 09:41:17 +0100 | [diff] [blame] | 4940 | DRM_ERROR("failed to release fence for cursor"); |
Chris Wilson | d9e86c0 | 2010-11-10 16:40:20 +0000 | [diff] [blame] | 4941 | goto fail_unpin; |
| 4942 | } |
| 4943 | |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 4944 | addr = obj->gtt_offset; |
Dave Airlie | 71acb5e | 2008-12-30 20:31:46 +1000 | [diff] [blame] | 4945 | } else { |
Chris Wilson | 6eeefaf | 2010-08-07 11:01:39 +0100 | [diff] [blame] | 4946 | int align = IS_I830(dev) ? 16 * 1024 : 256; |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 4947 | ret = i915_gem_attach_phys_object(dev, obj, |
Chris Wilson | 6eeefaf | 2010-08-07 11:01:39 +0100 | [diff] [blame] | 4948 | (intel_crtc->pipe == 0) ? I915_GEM_PHYS_CURSOR_0 : I915_GEM_PHYS_CURSOR_1, |
| 4949 | align); |
Dave Airlie | 71acb5e | 2008-12-30 20:31:46 +1000 | [diff] [blame] | 4950 | if (ret) { |
| 4951 | DRM_ERROR("failed to attach phys object\n"); |
Kristian Høgsberg | 7f9872e | 2009-02-13 20:56:49 -0500 | [diff] [blame] | 4952 | goto fail_locked; |
Dave Airlie | 71acb5e | 2008-12-30 20:31:46 +1000 | [diff] [blame] | 4953 | } |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 4954 | addr = obj->phys_obj->handle->busaddr; |
Kristian Høgsberg | 3f8bc37 | 2008-12-17 22:14:59 -0500 | [diff] [blame] | 4955 | } |
| 4956 | |
Chris Wilson | a6c45cf | 2010-09-17 00:32:17 +0100 | [diff] [blame] | 4957 | if (IS_GEN2(dev)) |
Jesse Barnes | 14b6039 | 2009-05-20 16:47:08 -0400 | [diff] [blame] | 4958 | I915_WRITE(CURSIZE, (height << 12) | width); |
| 4959 | |
Kristian Høgsberg | 3f8bc37 | 2008-12-17 22:14:59 -0500 | [diff] [blame] | 4960 | finish: |
Kristian Høgsberg | 3f8bc37 | 2008-12-17 22:14:59 -0500 | [diff] [blame] | 4961 | if (intel_crtc->cursor_bo) { |
Kristian Høgsberg | b295d1b | 2009-12-16 15:16:17 -0500 | [diff] [blame] | 4962 | if (dev_priv->info->cursor_needs_physical) { |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 4963 | if (intel_crtc->cursor_bo != obj) |
Dave Airlie | 71acb5e | 2008-12-30 20:31:46 +1000 | [diff] [blame] | 4964 | i915_gem_detach_phys_object(dev, intel_crtc->cursor_bo); |
| 4965 | } else |
| 4966 | i915_gem_object_unpin(intel_crtc->cursor_bo); |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 4967 | drm_gem_object_unreference(&intel_crtc->cursor_bo->base); |
Kristian Høgsberg | 3f8bc37 | 2008-12-17 22:14:59 -0500 | [diff] [blame] | 4968 | } |
Jesse Barnes | 8082400 | 2009-09-10 15:28:06 -0700 | [diff] [blame] | 4969 | |
Kristian Høgsberg | 7f9872e | 2009-02-13 20:56:49 -0500 | [diff] [blame] | 4970 | mutex_unlock(&dev->struct_mutex); |
Kristian Høgsberg | 3f8bc37 | 2008-12-17 22:14:59 -0500 | [diff] [blame] | 4971 | |
| 4972 | intel_crtc->cursor_addr = addr; |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 4973 | intel_crtc->cursor_bo = obj; |
Chris Wilson | cda4b7d | 2010-07-09 08:45:04 +0100 | [diff] [blame] | 4974 | intel_crtc->cursor_width = width; |
| 4975 | intel_crtc->cursor_height = height; |
| 4976 | |
Chris Wilson | 6b383a7 | 2010-09-13 13:54:26 +0100 | [diff] [blame] | 4977 | intel_crtc_update_cursor(crtc, true); |
Kristian Høgsberg | 3f8bc37 | 2008-12-17 22:14:59 -0500 | [diff] [blame] | 4978 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4979 | return 0; |
Chris Wilson | e7b526b | 2010-06-02 08:30:48 +0100 | [diff] [blame] | 4980 | fail_unpin: |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 4981 | i915_gem_object_unpin(obj); |
Kristian Høgsberg | 7f9872e | 2009-02-13 20:56:49 -0500 | [diff] [blame] | 4982 | fail_locked: |
Dave Airlie | 34b8686e | 2009-01-15 14:03:07 +1000 | [diff] [blame] | 4983 | mutex_unlock(&dev->struct_mutex); |
Luca Barbieri | bc9025b | 2010-02-09 05:49:12 +0000 | [diff] [blame] | 4984 | fail: |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 4985 | drm_gem_object_unreference_unlocked(&obj->base); |
Dave Airlie | 34b8686e | 2009-01-15 14:03:07 +1000 | [diff] [blame] | 4986 | return ret; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4987 | } |
| 4988 | |
| 4989 | static int intel_crtc_cursor_move(struct drm_crtc *crtc, int x, int y) |
| 4990 | { |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4991 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4992 | |
Chris Wilson | cda4b7d | 2010-07-09 08:45:04 +0100 | [diff] [blame] | 4993 | intel_crtc->cursor_x = x; |
| 4994 | intel_crtc->cursor_y = y; |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 4995 | |
Chris Wilson | 6b383a7 | 2010-09-13 13:54:26 +0100 | [diff] [blame] | 4996 | intel_crtc_update_cursor(crtc, true); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4997 | |
| 4998 | return 0; |
| 4999 | } |
| 5000 | |
| 5001 | /** Sets the color ramps on behalf of RandR */ |
| 5002 | void intel_crtc_fb_gamma_set(struct drm_crtc *crtc, u16 red, u16 green, |
| 5003 | u16 blue, int regno) |
| 5004 | { |
| 5005 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 5006 | |
| 5007 | intel_crtc->lut_r[regno] = red >> 8; |
| 5008 | intel_crtc->lut_g[regno] = green >> 8; |
| 5009 | intel_crtc->lut_b[regno] = blue >> 8; |
| 5010 | } |
| 5011 | |
Dave Airlie | b8c00ac | 2009-10-06 13:54:01 +1000 | [diff] [blame] | 5012 | void intel_crtc_fb_gamma_get(struct drm_crtc *crtc, u16 *red, u16 *green, |
| 5013 | u16 *blue, int regno) |
| 5014 | { |
| 5015 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 5016 | |
| 5017 | *red = intel_crtc->lut_r[regno] << 8; |
| 5018 | *green = intel_crtc->lut_g[regno] << 8; |
| 5019 | *blue = intel_crtc->lut_b[regno] << 8; |
| 5020 | } |
| 5021 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5022 | 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] | 5023 | u16 *blue, uint32_t start, uint32_t size) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5024 | { |
James Simmons | 7203425 | 2010-08-03 01:33:19 +0100 | [diff] [blame] | 5025 | int end = (start + size > 256) ? 256 : start + size, i; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5026 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5027 | |
James Simmons | 7203425 | 2010-08-03 01:33:19 +0100 | [diff] [blame] | 5028 | for (i = start; i < end; i++) { |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5029 | intel_crtc->lut_r[i] = red[i] >> 8; |
| 5030 | intel_crtc->lut_g[i] = green[i] >> 8; |
| 5031 | intel_crtc->lut_b[i] = blue[i] >> 8; |
| 5032 | } |
| 5033 | |
| 5034 | intel_crtc_load_lut(crtc); |
| 5035 | } |
| 5036 | |
| 5037 | /** |
| 5038 | * Get a pipe with a simple mode set on it for doing load-based monitor |
| 5039 | * detection. |
| 5040 | * |
| 5041 | * 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] | 5042 | * its requirements. The pipe will be connected to no other encoders. |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5043 | * |
Eric Anholt | c751ce4 | 2010-03-25 11:48:48 -0700 | [diff] [blame] | 5044 | * 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] | 5045 | * configured for it. In the future, it could choose to temporarily disable |
| 5046 | * some outputs to free up a pipe for its use. |
| 5047 | * |
| 5048 | * \return crtc, or NULL if no pipes are available. |
| 5049 | */ |
| 5050 | |
| 5051 | /* VESA 640x480x72Hz mode to set on the pipe */ |
| 5052 | static struct drm_display_mode load_detect_mode = { |
| 5053 | DRM_MODE("640x480", DRM_MODE_TYPE_DEFAULT, 31500, 640, 664, |
| 5054 | 704, 832, 0, 480, 489, 491, 520, 0, DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC), |
| 5055 | }; |
| 5056 | |
Chris Wilson | d2dff87 | 2011-04-19 08:36:26 +0100 | [diff] [blame] | 5057 | static struct drm_framebuffer * |
| 5058 | intel_framebuffer_create(struct drm_device *dev, |
Jesse Barnes | 308e5bc | 2011-11-14 14:51:28 -0800 | [diff] [blame] | 5059 | struct drm_mode_fb_cmd2 *mode_cmd, |
Chris Wilson | d2dff87 | 2011-04-19 08:36:26 +0100 | [diff] [blame] | 5060 | struct drm_i915_gem_object *obj) |
| 5061 | { |
| 5062 | struct intel_framebuffer *intel_fb; |
| 5063 | int ret; |
| 5064 | |
| 5065 | intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL); |
| 5066 | if (!intel_fb) { |
| 5067 | drm_gem_object_unreference_unlocked(&obj->base); |
| 5068 | return ERR_PTR(-ENOMEM); |
| 5069 | } |
| 5070 | |
| 5071 | ret = intel_framebuffer_init(dev, intel_fb, mode_cmd, obj); |
| 5072 | if (ret) { |
| 5073 | drm_gem_object_unreference_unlocked(&obj->base); |
| 5074 | kfree(intel_fb); |
| 5075 | return ERR_PTR(ret); |
| 5076 | } |
| 5077 | |
| 5078 | return &intel_fb->base; |
| 5079 | } |
| 5080 | |
| 5081 | static u32 |
| 5082 | intel_framebuffer_pitch_for_width(int width, int bpp) |
| 5083 | { |
| 5084 | u32 pitch = DIV_ROUND_UP(width * bpp, 8); |
| 5085 | return ALIGN(pitch, 64); |
| 5086 | } |
| 5087 | |
| 5088 | static u32 |
| 5089 | intel_framebuffer_size_for_mode(struct drm_display_mode *mode, int bpp) |
| 5090 | { |
| 5091 | u32 pitch = intel_framebuffer_pitch_for_width(mode->hdisplay, bpp); |
| 5092 | return ALIGN(pitch * mode->vdisplay, PAGE_SIZE); |
| 5093 | } |
| 5094 | |
| 5095 | static struct drm_framebuffer * |
| 5096 | intel_framebuffer_create_for_mode(struct drm_device *dev, |
| 5097 | struct drm_display_mode *mode, |
| 5098 | int depth, int bpp) |
| 5099 | { |
| 5100 | struct drm_i915_gem_object *obj; |
Jesse Barnes | 308e5bc | 2011-11-14 14:51:28 -0800 | [diff] [blame] | 5101 | struct drm_mode_fb_cmd2 mode_cmd; |
Chris Wilson | d2dff87 | 2011-04-19 08:36:26 +0100 | [diff] [blame] | 5102 | |
| 5103 | obj = i915_gem_alloc_object(dev, |
| 5104 | intel_framebuffer_size_for_mode(mode, bpp)); |
| 5105 | if (obj == NULL) |
| 5106 | return ERR_PTR(-ENOMEM); |
| 5107 | |
| 5108 | mode_cmd.width = mode->hdisplay; |
| 5109 | mode_cmd.height = mode->vdisplay; |
Jesse Barnes | 308e5bc | 2011-11-14 14:51:28 -0800 | [diff] [blame] | 5110 | mode_cmd.pitches[0] = intel_framebuffer_pitch_for_width(mode_cmd.width, |
| 5111 | bpp); |
Dave Airlie | 5ca0c34 | 2012-02-23 15:33:40 +0000 | [diff] [blame] | 5112 | mode_cmd.pixel_format = drm_mode_legacy_fb_format(bpp, depth); |
Chris Wilson | d2dff87 | 2011-04-19 08:36:26 +0100 | [diff] [blame] | 5113 | |
| 5114 | return intel_framebuffer_create(dev, &mode_cmd, obj); |
| 5115 | } |
| 5116 | |
| 5117 | static struct drm_framebuffer * |
| 5118 | mode_fits_in_fbdev(struct drm_device *dev, |
| 5119 | struct drm_display_mode *mode) |
| 5120 | { |
| 5121 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 5122 | struct drm_i915_gem_object *obj; |
| 5123 | struct drm_framebuffer *fb; |
| 5124 | |
| 5125 | if (dev_priv->fbdev == NULL) |
| 5126 | return NULL; |
| 5127 | |
| 5128 | obj = dev_priv->fbdev->ifb.obj; |
| 5129 | if (obj == NULL) |
| 5130 | return NULL; |
| 5131 | |
| 5132 | fb = &dev_priv->fbdev->ifb.base; |
Ville Syrjälä | 01f2c77 | 2011-12-20 00:06:49 +0200 | [diff] [blame] | 5133 | if (fb->pitches[0] < intel_framebuffer_pitch_for_width(mode->hdisplay, |
| 5134 | fb->bits_per_pixel)) |
Chris Wilson | d2dff87 | 2011-04-19 08:36:26 +0100 | [diff] [blame] | 5135 | return NULL; |
| 5136 | |
Ville Syrjälä | 01f2c77 | 2011-12-20 00:06:49 +0200 | [diff] [blame] | 5137 | if (obj->base.size < mode->vdisplay * fb->pitches[0]) |
Chris Wilson | d2dff87 | 2011-04-19 08:36:26 +0100 | [diff] [blame] | 5138 | return NULL; |
| 5139 | |
| 5140 | return fb; |
| 5141 | } |
| 5142 | |
Chris Wilson | 7173188 | 2011-04-19 23:10:58 +0100 | [diff] [blame] | 5143 | bool intel_get_load_detect_pipe(struct intel_encoder *intel_encoder, |
| 5144 | struct drm_connector *connector, |
| 5145 | struct drm_display_mode *mode, |
Chris Wilson | 8261b19 | 2011-04-19 23:18:09 +0100 | [diff] [blame] | 5146 | struct intel_load_detect_pipe *old) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5147 | { |
| 5148 | struct intel_crtc *intel_crtc; |
| 5149 | struct drm_crtc *possible_crtc; |
Chris Wilson | 4ef69c7 | 2010-09-09 15:14:28 +0100 | [diff] [blame] | 5150 | struct drm_encoder *encoder = &intel_encoder->base; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5151 | struct drm_crtc *crtc = NULL; |
| 5152 | struct drm_device *dev = encoder->dev; |
Chris Wilson | d2dff87 | 2011-04-19 08:36:26 +0100 | [diff] [blame] | 5153 | struct drm_framebuffer *old_fb; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5154 | int i = -1; |
| 5155 | |
Chris Wilson | d2dff87 | 2011-04-19 08:36:26 +0100 | [diff] [blame] | 5156 | DRM_DEBUG_KMS("[CONNECTOR:%d:%s], [ENCODER:%d:%s]\n", |
| 5157 | connector->base.id, drm_get_connector_name(connector), |
| 5158 | encoder->base.id, drm_get_encoder_name(encoder)); |
| 5159 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5160 | /* |
| 5161 | * Algorithm gets a little messy: |
Chris Wilson | 7a5e480 | 2011-04-19 23:21:12 +0100 | [diff] [blame] | 5162 | * |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5163 | * - if the connector already has an assigned crtc, use it (but make |
| 5164 | * sure it's on first) |
Chris Wilson | 7a5e480 | 2011-04-19 23:21:12 +0100 | [diff] [blame] | 5165 | * |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5166 | * - try to find the first unused crtc that can drive this connector, |
| 5167 | * and use that if we find one |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5168 | */ |
| 5169 | |
| 5170 | /* See if we already have a CRTC for this connector */ |
| 5171 | if (encoder->crtc) { |
| 5172 | crtc = encoder->crtc; |
Chris Wilson | 8261b19 | 2011-04-19 23:18:09 +0100 | [diff] [blame] | 5173 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5174 | intel_crtc = to_intel_crtc(crtc); |
Chris Wilson | 8261b19 | 2011-04-19 23:18:09 +0100 | [diff] [blame] | 5175 | old->dpms_mode = intel_crtc->dpms_mode; |
| 5176 | old->load_detect_temp = false; |
| 5177 | |
| 5178 | /* Make sure the crtc and connector are running */ |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5179 | if (intel_crtc->dpms_mode != DRM_MODE_DPMS_ON) { |
Chris Wilson | 6492711 | 2011-04-20 07:25:26 +0100 | [diff] [blame] | 5180 | struct drm_encoder_helper_funcs *encoder_funcs; |
| 5181 | struct drm_crtc_helper_funcs *crtc_funcs; |
| 5182 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5183 | crtc_funcs = crtc->helper_private; |
| 5184 | crtc_funcs->dpms(crtc, DRM_MODE_DPMS_ON); |
Chris Wilson | 6492711 | 2011-04-20 07:25:26 +0100 | [diff] [blame] | 5185 | |
| 5186 | encoder_funcs = encoder->helper_private; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5187 | encoder_funcs->dpms(encoder, DRM_MODE_DPMS_ON); |
| 5188 | } |
Chris Wilson | 8261b19 | 2011-04-19 23:18:09 +0100 | [diff] [blame] | 5189 | |
Chris Wilson | 7173188 | 2011-04-19 23:10:58 +0100 | [diff] [blame] | 5190 | return true; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5191 | } |
| 5192 | |
| 5193 | /* Find an unused one (if possible) */ |
| 5194 | list_for_each_entry(possible_crtc, &dev->mode_config.crtc_list, head) { |
| 5195 | i++; |
| 5196 | if (!(encoder->possible_crtcs & (1 << i))) |
| 5197 | continue; |
| 5198 | if (!possible_crtc->enabled) { |
| 5199 | crtc = possible_crtc; |
| 5200 | break; |
| 5201 | } |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5202 | } |
| 5203 | |
| 5204 | /* |
| 5205 | * If we didn't find an unused CRTC, don't use any. |
| 5206 | */ |
| 5207 | if (!crtc) { |
Chris Wilson | 7173188 | 2011-04-19 23:10:58 +0100 | [diff] [blame] | 5208 | DRM_DEBUG_KMS("no pipe available for load-detect\n"); |
| 5209 | return false; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5210 | } |
| 5211 | |
| 5212 | encoder->crtc = crtc; |
Zhenyu Wang | c1c4397 | 2010-03-30 14:39:30 +0800 | [diff] [blame] | 5213 | connector->encoder = encoder; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5214 | |
| 5215 | intel_crtc = to_intel_crtc(crtc); |
Chris Wilson | 8261b19 | 2011-04-19 23:18:09 +0100 | [diff] [blame] | 5216 | old->dpms_mode = intel_crtc->dpms_mode; |
| 5217 | old->load_detect_temp = true; |
Chris Wilson | d2dff87 | 2011-04-19 08:36:26 +0100 | [diff] [blame] | 5218 | old->release_fb = NULL; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5219 | |
Chris Wilson | 6492711 | 2011-04-20 07:25:26 +0100 | [diff] [blame] | 5220 | if (!mode) |
| 5221 | mode = &load_detect_mode; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5222 | |
Chris Wilson | d2dff87 | 2011-04-19 08:36:26 +0100 | [diff] [blame] | 5223 | old_fb = crtc->fb; |
| 5224 | |
| 5225 | /* We need a framebuffer large enough to accommodate all accesses |
| 5226 | * that the plane may generate whilst we perform load detection. |
| 5227 | * We can not rely on the fbcon either being present (we get called |
| 5228 | * during its initialisation to detect all boot displays, or it may |
| 5229 | * not even exist) or that it is large enough to satisfy the |
| 5230 | * requested mode. |
| 5231 | */ |
| 5232 | crtc->fb = mode_fits_in_fbdev(dev, mode); |
| 5233 | if (crtc->fb == NULL) { |
| 5234 | DRM_DEBUG_KMS("creating tmp fb for load-detection\n"); |
| 5235 | crtc->fb = intel_framebuffer_create_for_mode(dev, mode, 24, 32); |
| 5236 | old->release_fb = crtc->fb; |
| 5237 | } else |
| 5238 | DRM_DEBUG_KMS("reusing fbdev for load-detection framebuffer\n"); |
| 5239 | if (IS_ERR(crtc->fb)) { |
| 5240 | DRM_DEBUG_KMS("failed to allocate framebuffer for load-detection\n"); |
| 5241 | crtc->fb = old_fb; |
| 5242 | return false; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5243 | } |
Chris Wilson | d2dff87 | 2011-04-19 08:36:26 +0100 | [diff] [blame] | 5244 | |
| 5245 | if (!drm_crtc_helper_set_mode(crtc, mode, 0, 0, old_fb)) { |
Chris Wilson | 6492711 | 2011-04-20 07:25:26 +0100 | [diff] [blame] | 5246 | DRM_DEBUG_KMS("failed to set mode on load-detect pipe\n"); |
Chris Wilson | d2dff87 | 2011-04-19 08:36:26 +0100 | [diff] [blame] | 5247 | if (old->release_fb) |
| 5248 | old->release_fb->funcs->destroy(old->release_fb); |
| 5249 | crtc->fb = old_fb; |
Chris Wilson | 6492711 | 2011-04-20 07:25:26 +0100 | [diff] [blame] | 5250 | return false; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5251 | } |
Chris Wilson | 7173188 | 2011-04-19 23:10:58 +0100 | [diff] [blame] | 5252 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5253 | /* let the connector get through one full cycle before testing */ |
Jesse Barnes | 9d0498a | 2010-08-18 13:20:54 -0700 | [diff] [blame] | 5254 | intel_wait_for_vblank(dev, intel_crtc->pipe); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5255 | |
Chris Wilson | 7173188 | 2011-04-19 23:10:58 +0100 | [diff] [blame] | 5256 | return true; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5257 | } |
| 5258 | |
Zhenyu Wang | c1c4397 | 2010-03-30 14:39:30 +0800 | [diff] [blame] | 5259 | void intel_release_load_detect_pipe(struct intel_encoder *intel_encoder, |
Chris Wilson | 8261b19 | 2011-04-19 23:18:09 +0100 | [diff] [blame] | 5260 | struct drm_connector *connector, |
| 5261 | struct intel_load_detect_pipe *old) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5262 | { |
Chris Wilson | 4ef69c7 | 2010-09-09 15:14:28 +0100 | [diff] [blame] | 5263 | struct drm_encoder *encoder = &intel_encoder->base; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5264 | struct drm_device *dev = encoder->dev; |
| 5265 | struct drm_crtc *crtc = encoder->crtc; |
| 5266 | struct drm_encoder_helper_funcs *encoder_funcs = encoder->helper_private; |
| 5267 | struct drm_crtc_helper_funcs *crtc_funcs = crtc->helper_private; |
| 5268 | |
Chris Wilson | d2dff87 | 2011-04-19 08:36:26 +0100 | [diff] [blame] | 5269 | DRM_DEBUG_KMS("[CONNECTOR:%d:%s], [ENCODER:%d:%s]\n", |
| 5270 | connector->base.id, drm_get_connector_name(connector), |
| 5271 | encoder->base.id, drm_get_encoder_name(encoder)); |
| 5272 | |
Chris Wilson | 8261b19 | 2011-04-19 23:18:09 +0100 | [diff] [blame] | 5273 | if (old->load_detect_temp) { |
Zhenyu Wang | c1c4397 | 2010-03-30 14:39:30 +0800 | [diff] [blame] | 5274 | connector->encoder = NULL; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5275 | drm_helper_disable_unused_functions(dev); |
Chris Wilson | d2dff87 | 2011-04-19 08:36:26 +0100 | [diff] [blame] | 5276 | |
| 5277 | if (old->release_fb) |
| 5278 | old->release_fb->funcs->destroy(old->release_fb); |
| 5279 | |
Chris Wilson | 0622a53 | 2011-04-21 09:32:11 +0100 | [diff] [blame] | 5280 | return; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5281 | } |
| 5282 | |
Eric Anholt | c751ce4 | 2010-03-25 11:48:48 -0700 | [diff] [blame] | 5283 | /* Switch crtc and encoder back off if necessary */ |
Chris Wilson | 0622a53 | 2011-04-21 09:32:11 +0100 | [diff] [blame] | 5284 | if (old->dpms_mode != DRM_MODE_DPMS_ON) { |
| 5285 | encoder_funcs->dpms(encoder, old->dpms_mode); |
Chris Wilson | 8261b19 | 2011-04-19 23:18:09 +0100 | [diff] [blame] | 5286 | crtc_funcs->dpms(crtc, old->dpms_mode); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5287 | } |
| 5288 | } |
| 5289 | |
| 5290 | /* Returns the clock of the currently programmed mode of the given pipe. */ |
| 5291 | static int intel_crtc_clock_get(struct drm_device *dev, struct drm_crtc *crtc) |
| 5292 | { |
| 5293 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 5294 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 5295 | int pipe = intel_crtc->pipe; |
Jesse Barnes | 548f245 | 2011-02-17 10:40:53 -0800 | [diff] [blame] | 5296 | u32 dpll = I915_READ(DPLL(pipe)); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5297 | u32 fp; |
| 5298 | intel_clock_t clock; |
| 5299 | |
| 5300 | if ((dpll & DISPLAY_RATE_SELECT_FPA1) == 0) |
Chris Wilson | 39adb7a | 2011-04-22 22:17:21 +0100 | [diff] [blame] | 5301 | fp = I915_READ(FP0(pipe)); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5302 | else |
Chris Wilson | 39adb7a | 2011-04-22 22:17:21 +0100 | [diff] [blame] | 5303 | fp = I915_READ(FP1(pipe)); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5304 | |
| 5305 | clock.m1 = (fp & FP_M1_DIV_MASK) >> FP_M1_DIV_SHIFT; |
Adam Jackson | f2b115e | 2009-12-03 17:14:42 -0500 | [diff] [blame] | 5306 | if (IS_PINEVIEW(dev)) { |
| 5307 | clock.n = ffs((fp & FP_N_PINEVIEW_DIV_MASK) >> FP_N_DIV_SHIFT) - 1; |
| 5308 | clock.m2 = (fp & FP_M2_PINEVIEW_DIV_MASK) >> FP_M2_DIV_SHIFT; |
Shaohua Li | 2177832 | 2009-02-23 15:19:16 +0800 | [diff] [blame] | 5309 | } else { |
| 5310 | clock.n = (fp & FP_N_DIV_MASK) >> FP_N_DIV_SHIFT; |
| 5311 | clock.m2 = (fp & FP_M2_DIV_MASK) >> FP_M2_DIV_SHIFT; |
| 5312 | } |
| 5313 | |
Chris Wilson | a6c45cf | 2010-09-17 00:32:17 +0100 | [diff] [blame] | 5314 | if (!IS_GEN2(dev)) { |
Adam Jackson | f2b115e | 2009-12-03 17:14:42 -0500 | [diff] [blame] | 5315 | if (IS_PINEVIEW(dev)) |
| 5316 | clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK_PINEVIEW) >> |
| 5317 | DPLL_FPA01_P1_POST_DIV_SHIFT_PINEVIEW); |
Shaohua Li | 2177832 | 2009-02-23 15:19:16 +0800 | [diff] [blame] | 5318 | else |
| 5319 | clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK) >> |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5320 | DPLL_FPA01_P1_POST_DIV_SHIFT); |
| 5321 | |
| 5322 | switch (dpll & DPLL_MODE_MASK) { |
| 5323 | case DPLLB_MODE_DAC_SERIAL: |
| 5324 | clock.p2 = dpll & DPLL_DAC_SERIAL_P2_CLOCK_DIV_5 ? |
| 5325 | 5 : 10; |
| 5326 | break; |
| 5327 | case DPLLB_MODE_LVDS: |
| 5328 | clock.p2 = dpll & DPLLB_LVDS_P2_CLOCK_DIV_7 ? |
| 5329 | 7 : 14; |
| 5330 | break; |
| 5331 | default: |
Zhao Yakui | 28c9773 | 2009-10-09 11:39:41 +0800 | [diff] [blame] | 5332 | DRM_DEBUG_KMS("Unknown DPLL mode %08x in programmed " |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5333 | "mode\n", (int)(dpll & DPLL_MODE_MASK)); |
| 5334 | return 0; |
| 5335 | } |
| 5336 | |
| 5337 | /* XXX: Handle the 100Mhz refclk */ |
Shaohua Li | 2177832 | 2009-02-23 15:19:16 +0800 | [diff] [blame] | 5338 | intel_clock(dev, 96000, &clock); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5339 | } else { |
| 5340 | bool is_lvds = (pipe == 1) && (I915_READ(LVDS) & LVDS_PORT_EN); |
| 5341 | |
| 5342 | if (is_lvds) { |
| 5343 | clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK_I830_LVDS) >> |
| 5344 | DPLL_FPA01_P1_POST_DIV_SHIFT); |
| 5345 | clock.p2 = 14; |
| 5346 | |
| 5347 | if ((dpll & PLL_REF_INPUT_MASK) == |
| 5348 | PLLB_REF_INPUT_SPREADSPECTRUMIN) { |
| 5349 | /* XXX: might not be 66MHz */ |
Shaohua Li | 2177832 | 2009-02-23 15:19:16 +0800 | [diff] [blame] | 5350 | intel_clock(dev, 66000, &clock); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5351 | } else |
Shaohua Li | 2177832 | 2009-02-23 15:19:16 +0800 | [diff] [blame] | 5352 | intel_clock(dev, 48000, &clock); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5353 | } else { |
| 5354 | if (dpll & PLL_P1_DIVIDE_BY_TWO) |
| 5355 | clock.p1 = 2; |
| 5356 | else { |
| 5357 | clock.p1 = ((dpll & DPLL_FPA01_P1_POST_DIV_MASK_I830) >> |
| 5358 | DPLL_FPA01_P1_POST_DIV_SHIFT) + 2; |
| 5359 | } |
| 5360 | if (dpll & PLL_P2_DIVIDE_BY_4) |
| 5361 | clock.p2 = 4; |
| 5362 | else |
| 5363 | clock.p2 = 2; |
| 5364 | |
Shaohua Li | 2177832 | 2009-02-23 15:19:16 +0800 | [diff] [blame] | 5365 | intel_clock(dev, 48000, &clock); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5366 | } |
| 5367 | } |
| 5368 | |
| 5369 | /* XXX: It would be nice to validate the clocks, but we can't reuse |
| 5370 | * i830PllIsValid() because it relies on the xf86_config connector |
| 5371 | * configuration being accurate, which it isn't necessarily. |
| 5372 | */ |
| 5373 | |
| 5374 | return clock.dot; |
| 5375 | } |
| 5376 | |
| 5377 | /** Returns the currently programmed mode of the given pipe. */ |
| 5378 | struct drm_display_mode *intel_crtc_mode_get(struct drm_device *dev, |
| 5379 | struct drm_crtc *crtc) |
| 5380 | { |
Jesse Barnes | 548f245 | 2011-02-17 10:40:53 -0800 | [diff] [blame] | 5381 | struct drm_i915_private *dev_priv = dev->dev_private; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5382 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 5383 | int pipe = intel_crtc->pipe; |
| 5384 | struct drm_display_mode *mode; |
Jesse Barnes | 548f245 | 2011-02-17 10:40:53 -0800 | [diff] [blame] | 5385 | int htot = I915_READ(HTOTAL(pipe)); |
| 5386 | int hsync = I915_READ(HSYNC(pipe)); |
| 5387 | int vtot = I915_READ(VTOTAL(pipe)); |
| 5388 | int vsync = I915_READ(VSYNC(pipe)); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5389 | |
| 5390 | mode = kzalloc(sizeof(*mode), GFP_KERNEL); |
| 5391 | if (!mode) |
| 5392 | return NULL; |
| 5393 | |
| 5394 | mode->clock = intel_crtc_clock_get(dev, crtc); |
| 5395 | mode->hdisplay = (htot & 0xffff) + 1; |
| 5396 | mode->htotal = ((htot & 0xffff0000) >> 16) + 1; |
| 5397 | mode->hsync_start = (hsync & 0xffff) + 1; |
| 5398 | mode->hsync_end = ((hsync & 0xffff0000) >> 16) + 1; |
| 5399 | mode->vdisplay = (vtot & 0xffff) + 1; |
| 5400 | mode->vtotal = ((vtot & 0xffff0000) >> 16) + 1; |
| 5401 | mode->vsync_start = (vsync & 0xffff) + 1; |
| 5402 | mode->vsync_end = ((vsync & 0xffff0000) >> 16) + 1; |
| 5403 | |
| 5404 | drm_mode_set_name(mode); |
| 5405 | drm_mode_set_crtcinfo(mode, 0); |
| 5406 | |
| 5407 | return mode; |
| 5408 | } |
| 5409 | |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 5410 | #define GPU_IDLE_TIMEOUT 500 /* ms */ |
| 5411 | |
| 5412 | /* When this timer fires, we've been idle for awhile */ |
| 5413 | static void intel_gpu_idle_timer(unsigned long arg) |
| 5414 | { |
| 5415 | struct drm_device *dev = (struct drm_device *)arg; |
| 5416 | drm_i915_private_t *dev_priv = dev->dev_private; |
| 5417 | |
Chris Wilson | ff7ea4c | 2010-12-08 09:43:41 +0000 | [diff] [blame] | 5418 | if (!list_empty(&dev_priv->mm.active_list)) { |
| 5419 | /* Still processing requests, so just re-arm the timer. */ |
| 5420 | mod_timer(&dev_priv->idle_timer, jiffies + |
| 5421 | msecs_to_jiffies(GPU_IDLE_TIMEOUT)); |
| 5422 | return; |
| 5423 | } |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 5424 | |
Chris Wilson | ff7ea4c | 2010-12-08 09:43:41 +0000 | [diff] [blame] | 5425 | dev_priv->busy = false; |
Eric Anholt | 01dfba9 | 2009-09-06 15:18:53 -0700 | [diff] [blame] | 5426 | queue_work(dev_priv->wq, &dev_priv->idle_work); |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 5427 | } |
| 5428 | |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 5429 | #define CRTC_IDLE_TIMEOUT 1000 /* ms */ |
| 5430 | |
| 5431 | static void intel_crtc_idle_timer(unsigned long arg) |
| 5432 | { |
| 5433 | struct intel_crtc *intel_crtc = (struct intel_crtc *)arg; |
| 5434 | struct drm_crtc *crtc = &intel_crtc->base; |
| 5435 | drm_i915_private_t *dev_priv = crtc->dev->dev_private; |
Chris Wilson | ff7ea4c | 2010-12-08 09:43:41 +0000 | [diff] [blame] | 5436 | struct intel_framebuffer *intel_fb; |
| 5437 | |
| 5438 | intel_fb = to_intel_framebuffer(crtc->fb); |
| 5439 | if (intel_fb && intel_fb->obj->active) { |
| 5440 | /* The framebuffer is still being accessed by the GPU. */ |
| 5441 | mod_timer(&intel_crtc->idle_timer, jiffies + |
| 5442 | msecs_to_jiffies(CRTC_IDLE_TIMEOUT)); |
| 5443 | return; |
| 5444 | } |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 5445 | |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 5446 | intel_crtc->busy = false; |
Eric Anholt | 01dfba9 | 2009-09-06 15:18:53 -0700 | [diff] [blame] | 5447 | queue_work(dev_priv->wq, &dev_priv->idle_work); |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 5448 | } |
| 5449 | |
Daniel Vetter | 3dec009 | 2010-08-20 21:40:52 +0200 | [diff] [blame] | 5450 | static void intel_increase_pllclock(struct drm_crtc *crtc) |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 5451 | { |
| 5452 | struct drm_device *dev = crtc->dev; |
| 5453 | drm_i915_private_t *dev_priv = dev->dev_private; |
| 5454 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 5455 | int pipe = intel_crtc->pipe; |
Jesse Barnes | dbdc647 | 2010-12-30 09:36:39 -0800 | [diff] [blame] | 5456 | int dpll_reg = DPLL(pipe); |
| 5457 | int dpll; |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 5458 | |
Eric Anholt | bad720f | 2009-10-22 16:11:14 -0700 | [diff] [blame] | 5459 | if (HAS_PCH_SPLIT(dev)) |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 5460 | return; |
| 5461 | |
| 5462 | if (!dev_priv->lvds_downclock_avail) |
| 5463 | return; |
| 5464 | |
Jesse Barnes | dbdc647 | 2010-12-30 09:36:39 -0800 | [diff] [blame] | 5465 | dpll = I915_READ(dpll_reg); |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 5466 | if (!HAS_PIPE_CXSR(dev) && (dpll & DISPLAY_RATE_SELECT_FPA1)) { |
Zhao Yakui | 44d98a6 | 2009-10-09 11:39:40 +0800 | [diff] [blame] | 5467 | DRM_DEBUG_DRIVER("upclocking LVDS\n"); |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 5468 | |
Sean Paul | 8ac5a6d | 2012-02-13 13:14:51 -0500 | [diff] [blame] | 5469 | assert_panel_unlocked(dev_priv, pipe); |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 5470 | |
| 5471 | dpll &= ~DISPLAY_RATE_SELECT_FPA1; |
| 5472 | I915_WRITE(dpll_reg, dpll); |
Jesse Barnes | 9d0498a | 2010-08-18 13:20:54 -0700 | [diff] [blame] | 5473 | intel_wait_for_vblank(dev, pipe); |
Jesse Barnes | dbdc647 | 2010-12-30 09:36:39 -0800 | [diff] [blame] | 5474 | |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 5475 | dpll = I915_READ(dpll_reg); |
| 5476 | if (dpll & DISPLAY_RATE_SELECT_FPA1) |
Zhao Yakui | 44d98a6 | 2009-10-09 11:39:40 +0800 | [diff] [blame] | 5477 | DRM_DEBUG_DRIVER("failed to upclock LVDS!\n"); |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 5478 | } |
| 5479 | |
| 5480 | /* Schedule downclock */ |
Daniel Vetter | 3dec009 | 2010-08-20 21:40:52 +0200 | [diff] [blame] | 5481 | mod_timer(&intel_crtc->idle_timer, jiffies + |
| 5482 | msecs_to_jiffies(CRTC_IDLE_TIMEOUT)); |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 5483 | } |
| 5484 | |
| 5485 | static void intel_decrease_pllclock(struct drm_crtc *crtc) |
| 5486 | { |
| 5487 | struct drm_device *dev = crtc->dev; |
| 5488 | drm_i915_private_t *dev_priv = dev->dev_private; |
| 5489 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 5490 | int pipe = intel_crtc->pipe; |
Jesse Barnes | 9db4a9c | 2011-02-07 12:26:52 -0800 | [diff] [blame] | 5491 | int dpll_reg = DPLL(pipe); |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 5492 | int dpll = I915_READ(dpll_reg); |
| 5493 | |
Eric Anholt | bad720f | 2009-10-22 16:11:14 -0700 | [diff] [blame] | 5494 | if (HAS_PCH_SPLIT(dev)) |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 5495 | return; |
| 5496 | |
| 5497 | if (!dev_priv->lvds_downclock_avail) |
| 5498 | return; |
| 5499 | |
| 5500 | /* |
| 5501 | * Since this is called by a timer, we should never get here in |
| 5502 | * the manual case. |
| 5503 | */ |
| 5504 | if (!HAS_PIPE_CXSR(dev) && intel_crtc->lowfreq_avail) { |
Zhao Yakui | 44d98a6 | 2009-10-09 11:39:40 +0800 | [diff] [blame] | 5505 | DRM_DEBUG_DRIVER("downclocking LVDS\n"); |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 5506 | |
Sean Paul | 8ac5a6d | 2012-02-13 13:14:51 -0500 | [diff] [blame] | 5507 | assert_panel_unlocked(dev_priv, pipe); |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 5508 | |
| 5509 | dpll |= DISPLAY_RATE_SELECT_FPA1; |
| 5510 | I915_WRITE(dpll_reg, dpll); |
Jesse Barnes | 9d0498a | 2010-08-18 13:20:54 -0700 | [diff] [blame] | 5511 | intel_wait_for_vblank(dev, pipe); |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 5512 | dpll = I915_READ(dpll_reg); |
| 5513 | if (!(dpll & DISPLAY_RATE_SELECT_FPA1)) |
Zhao Yakui | 44d98a6 | 2009-10-09 11:39:40 +0800 | [diff] [blame] | 5514 | DRM_DEBUG_DRIVER("failed to downclock LVDS!\n"); |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 5515 | } |
| 5516 | |
| 5517 | } |
| 5518 | |
| 5519 | /** |
| 5520 | * intel_idle_update - adjust clocks for idleness |
| 5521 | * @work: work struct |
| 5522 | * |
| 5523 | * Either the GPU or display (or both) went idle. Check the busy status |
| 5524 | * here and adjust the CRTC and GPU clocks as necessary. |
| 5525 | */ |
| 5526 | static void intel_idle_update(struct work_struct *work) |
| 5527 | { |
| 5528 | drm_i915_private_t *dev_priv = container_of(work, drm_i915_private_t, |
| 5529 | idle_work); |
| 5530 | struct drm_device *dev = dev_priv->dev; |
| 5531 | struct drm_crtc *crtc; |
| 5532 | struct intel_crtc *intel_crtc; |
| 5533 | |
| 5534 | if (!i915_powersave) |
| 5535 | return; |
| 5536 | |
| 5537 | mutex_lock(&dev->struct_mutex); |
| 5538 | |
Jesse Barnes | 7648fa9 | 2010-05-20 14:28:11 -0700 | [diff] [blame] | 5539 | i915_update_gfx_val(dev_priv); |
| 5540 | |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 5541 | list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) { |
| 5542 | /* Skip inactive CRTCs */ |
| 5543 | if (!crtc->fb) |
| 5544 | continue; |
| 5545 | |
| 5546 | intel_crtc = to_intel_crtc(crtc); |
| 5547 | if (!intel_crtc->busy) |
| 5548 | intel_decrease_pllclock(crtc); |
| 5549 | } |
| 5550 | |
Li Peng | 45ac22c | 2010-06-12 23:38:35 +0800 | [diff] [blame] | 5551 | |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 5552 | mutex_unlock(&dev->struct_mutex); |
| 5553 | } |
| 5554 | |
| 5555 | /** |
| 5556 | * intel_mark_busy - mark the GPU and possibly the display busy |
| 5557 | * @dev: drm device |
| 5558 | * @obj: object we're operating on |
| 5559 | * |
| 5560 | * Callers can use this function to indicate that the GPU is busy processing |
| 5561 | * commands. If @obj matches one of the CRTC objects (i.e. it's a scanout |
| 5562 | * buffer), we'll also mark the display as busy, so we know to increase its |
| 5563 | * clock frequency. |
| 5564 | */ |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 5565 | 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] | 5566 | { |
| 5567 | drm_i915_private_t *dev_priv = dev->dev_private; |
| 5568 | struct drm_crtc *crtc = NULL; |
| 5569 | struct intel_framebuffer *intel_fb; |
| 5570 | struct intel_crtc *intel_crtc; |
| 5571 | |
Zhenyu Wang | 5e17ee7 | 2009-09-03 09:30:06 +0800 | [diff] [blame] | 5572 | if (!drm_core_check_feature(dev, DRIVER_MODESET)) |
| 5573 | return; |
| 5574 | |
Alexander Lam | 18b2190 | 2011-01-03 13:28:56 -0500 | [diff] [blame] | 5575 | if (!dev_priv->busy) |
Chris Wilson | 28cf798 | 2009-11-30 01:08:56 +0000 | [diff] [blame] | 5576 | dev_priv->busy = true; |
Alexander Lam | 18b2190 | 2011-01-03 13:28:56 -0500 | [diff] [blame] | 5577 | else |
Chris Wilson | 28cf798 | 2009-11-30 01:08:56 +0000 | [diff] [blame] | 5578 | mod_timer(&dev_priv->idle_timer, jiffies + |
| 5579 | msecs_to_jiffies(GPU_IDLE_TIMEOUT)); |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 5580 | |
| 5581 | list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) { |
| 5582 | if (!crtc->fb) |
| 5583 | continue; |
| 5584 | |
| 5585 | intel_crtc = to_intel_crtc(crtc); |
| 5586 | intel_fb = to_intel_framebuffer(crtc->fb); |
| 5587 | if (intel_fb->obj == obj) { |
| 5588 | if (!intel_crtc->busy) { |
| 5589 | /* Non-busy -> busy, upclock */ |
Daniel Vetter | 3dec009 | 2010-08-20 21:40:52 +0200 | [diff] [blame] | 5590 | intel_increase_pllclock(crtc); |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 5591 | intel_crtc->busy = true; |
| 5592 | } else { |
| 5593 | /* Busy -> busy, put off timer */ |
| 5594 | mod_timer(&intel_crtc->idle_timer, jiffies + |
| 5595 | msecs_to_jiffies(CRTC_IDLE_TIMEOUT)); |
| 5596 | } |
| 5597 | } |
| 5598 | } |
| 5599 | } |
| 5600 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5601 | static void intel_crtc_destroy(struct drm_crtc *crtc) |
| 5602 | { |
| 5603 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
Daniel Vetter | 67e77c5 | 2010-08-20 22:26:30 +0200 | [diff] [blame] | 5604 | struct drm_device *dev = crtc->dev; |
| 5605 | struct intel_unpin_work *work; |
| 5606 | unsigned long flags; |
| 5607 | |
| 5608 | spin_lock_irqsave(&dev->event_lock, flags); |
| 5609 | work = intel_crtc->unpin_work; |
| 5610 | intel_crtc->unpin_work = NULL; |
| 5611 | spin_unlock_irqrestore(&dev->event_lock, flags); |
| 5612 | |
| 5613 | if (work) { |
| 5614 | cancel_work_sync(&work->work); |
| 5615 | kfree(work); |
| 5616 | } |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5617 | |
| 5618 | drm_crtc_cleanup(crtc); |
Daniel Vetter | 67e77c5 | 2010-08-20 22:26:30 +0200 | [diff] [blame] | 5619 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5620 | kfree(intel_crtc); |
| 5621 | } |
| 5622 | |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 5623 | static void intel_unpin_work_fn(struct work_struct *__work) |
| 5624 | { |
| 5625 | struct intel_unpin_work *work = |
| 5626 | container_of(__work, struct intel_unpin_work, work); |
| 5627 | |
| 5628 | mutex_lock(&work->dev->struct_mutex); |
Chris Wilson | 1690e1e | 2011-12-14 13:57:08 +0100 | [diff] [blame] | 5629 | intel_unpin_fb_obj(work->old_fb_obj); |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 5630 | drm_gem_object_unreference(&work->pending_flip_obj->base); |
| 5631 | drm_gem_object_unreference(&work->old_fb_obj->base); |
Chris Wilson | d9e86c0 | 2010-11-10 16:40:20 +0000 | [diff] [blame] | 5632 | |
Chris Wilson | 7782de3 | 2011-07-08 12:22:41 +0100 | [diff] [blame] | 5633 | intel_update_fbc(work->dev); |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 5634 | mutex_unlock(&work->dev->struct_mutex); |
| 5635 | kfree(work); |
| 5636 | } |
| 5637 | |
Jesse Barnes | 1afe3e9 | 2010-03-26 10:35:20 -0700 | [diff] [blame] | 5638 | static void do_intel_finish_page_flip(struct drm_device *dev, |
Mario Kleiner | 49b14a5 | 2010-12-09 07:00:07 +0100 | [diff] [blame] | 5639 | struct drm_crtc *crtc) |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 5640 | { |
| 5641 | drm_i915_private_t *dev_priv = dev->dev_private; |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 5642 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 5643 | struct intel_unpin_work *work; |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 5644 | struct drm_i915_gem_object *obj; |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 5645 | struct drm_pending_vblank_event *e; |
Mario Kleiner | 49b14a5 | 2010-12-09 07:00:07 +0100 | [diff] [blame] | 5646 | struct timeval tnow, tvbl; |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 5647 | unsigned long flags; |
| 5648 | |
| 5649 | /* Ignore early vblank irqs */ |
| 5650 | if (intel_crtc == NULL) |
| 5651 | return; |
| 5652 | |
Mario Kleiner | 49b14a5 | 2010-12-09 07:00:07 +0100 | [diff] [blame] | 5653 | do_gettimeofday(&tnow); |
| 5654 | |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 5655 | spin_lock_irqsave(&dev->event_lock, flags); |
| 5656 | work = intel_crtc->unpin_work; |
| 5657 | if (work == NULL || !work->pending) { |
| 5658 | spin_unlock_irqrestore(&dev->event_lock, flags); |
| 5659 | return; |
| 5660 | } |
| 5661 | |
| 5662 | intel_crtc->unpin_work = NULL; |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 5663 | |
| 5664 | if (work->event) { |
| 5665 | e = work->event; |
Mario Kleiner | 49b14a5 | 2010-12-09 07:00:07 +0100 | [diff] [blame] | 5666 | 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] | 5667 | |
| 5668 | /* Called before vblank count and timestamps have |
| 5669 | * been updated for the vblank interval of flip |
| 5670 | * completion? Need to increment vblank count and |
| 5671 | * add one videorefresh duration to returned timestamp |
Mario Kleiner | 49b14a5 | 2010-12-09 07:00:07 +0100 | [diff] [blame] | 5672 | * to account for this. We assume this happened if we |
| 5673 | * get called over 0.9 frame durations after the last |
| 5674 | * timestamped vblank. |
| 5675 | * |
| 5676 | * This calculation can not be used with vrefresh rates |
| 5677 | * below 5Hz (10Hz to be on the safe side) without |
| 5678 | * promoting to 64 integers. |
Mario Kleiner | 0af7e4d | 2010-12-08 04:07:19 +0100 | [diff] [blame] | 5679 | */ |
Mario Kleiner | 49b14a5 | 2010-12-09 07:00:07 +0100 | [diff] [blame] | 5680 | if (10 * (timeval_to_ns(&tnow) - timeval_to_ns(&tvbl)) > |
| 5681 | 9 * crtc->framedur_ns) { |
Mario Kleiner | 0af7e4d | 2010-12-08 04:07:19 +0100 | [diff] [blame] | 5682 | e->event.sequence++; |
Mario Kleiner | 49b14a5 | 2010-12-09 07:00:07 +0100 | [diff] [blame] | 5683 | tvbl = ns_to_timeval(timeval_to_ns(&tvbl) + |
| 5684 | crtc->framedur_ns); |
Mario Kleiner | 0af7e4d | 2010-12-08 04:07:19 +0100 | [diff] [blame] | 5685 | } |
| 5686 | |
Mario Kleiner | 49b14a5 | 2010-12-09 07:00:07 +0100 | [diff] [blame] | 5687 | e->event.tv_sec = tvbl.tv_sec; |
| 5688 | e->event.tv_usec = tvbl.tv_usec; |
Mario Kleiner | 0af7e4d | 2010-12-08 04:07:19 +0100 | [diff] [blame] | 5689 | |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 5690 | list_add_tail(&e->base.link, |
| 5691 | &e->base.file_priv->event_list); |
| 5692 | wake_up_interruptible(&e->base.file_priv->event_wait); |
| 5693 | } |
| 5694 | |
Mario Kleiner | 0af7e4d | 2010-12-08 04:07:19 +0100 | [diff] [blame] | 5695 | drm_vblank_put(dev, intel_crtc->pipe); |
| 5696 | |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 5697 | spin_unlock_irqrestore(&dev->event_lock, flags); |
| 5698 | |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 5699 | obj = work->old_fb_obj; |
Chris Wilson | d9e86c0 | 2010-11-10 16:40:20 +0000 | [diff] [blame] | 5700 | |
Chris Wilson | e59f2ba | 2010-10-07 17:28:15 +0100 | [diff] [blame] | 5701 | atomic_clear_mask(1 << intel_crtc->plane, |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 5702 | &obj->pending_flip.counter); |
| 5703 | if (atomic_read(&obj->pending_flip) == 0) |
Chris Wilson | f787a5f | 2010-09-24 16:02:42 +0100 | [diff] [blame] | 5704 | wake_up(&dev_priv->pending_flip_queue); |
Chris Wilson | d9e86c0 | 2010-11-10 16:40:20 +0000 | [diff] [blame] | 5705 | |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 5706 | schedule_work(&work->work); |
Jesse Barnes | e5510fa | 2010-07-01 16:48:37 -0700 | [diff] [blame] | 5707 | |
| 5708 | trace_i915_flip_complete(intel_crtc->plane, work->pending_flip_obj); |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 5709 | } |
| 5710 | |
Jesse Barnes | 1afe3e9 | 2010-03-26 10:35:20 -0700 | [diff] [blame] | 5711 | void intel_finish_page_flip(struct drm_device *dev, int pipe) |
| 5712 | { |
| 5713 | drm_i915_private_t *dev_priv = dev->dev_private; |
| 5714 | struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe]; |
| 5715 | |
Mario Kleiner | 49b14a5 | 2010-12-09 07:00:07 +0100 | [diff] [blame] | 5716 | do_intel_finish_page_flip(dev, crtc); |
Jesse Barnes | 1afe3e9 | 2010-03-26 10:35:20 -0700 | [diff] [blame] | 5717 | } |
| 5718 | |
| 5719 | void intel_finish_page_flip_plane(struct drm_device *dev, int plane) |
| 5720 | { |
| 5721 | drm_i915_private_t *dev_priv = dev->dev_private; |
| 5722 | struct drm_crtc *crtc = dev_priv->plane_to_crtc_mapping[plane]; |
| 5723 | |
Mario Kleiner | 49b14a5 | 2010-12-09 07:00:07 +0100 | [diff] [blame] | 5724 | do_intel_finish_page_flip(dev, crtc); |
Jesse Barnes | 1afe3e9 | 2010-03-26 10:35:20 -0700 | [diff] [blame] | 5725 | } |
| 5726 | |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 5727 | void intel_prepare_page_flip(struct drm_device *dev, int plane) |
| 5728 | { |
| 5729 | drm_i915_private_t *dev_priv = dev->dev_private; |
| 5730 | struct intel_crtc *intel_crtc = |
| 5731 | to_intel_crtc(dev_priv->plane_to_crtc_mapping[plane]); |
| 5732 | unsigned long flags; |
| 5733 | |
| 5734 | spin_lock_irqsave(&dev->event_lock, flags); |
Jesse Barnes | de3f440 | 2010-01-14 13:18:02 -0800 | [diff] [blame] | 5735 | if (intel_crtc->unpin_work) { |
Simon Farnsworth | 4e5359c | 2010-09-01 17:47:52 +0100 | [diff] [blame] | 5736 | if ((++intel_crtc->unpin_work->pending) > 1) |
| 5737 | DRM_ERROR("Prepared flip multiple times\n"); |
Jesse Barnes | de3f440 | 2010-01-14 13:18:02 -0800 | [diff] [blame] | 5738 | } else { |
| 5739 | DRM_DEBUG_DRIVER("preparing flip with no unpin work?\n"); |
| 5740 | } |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 5741 | spin_unlock_irqrestore(&dev->event_lock, flags); |
| 5742 | } |
| 5743 | |
Jesse Barnes | 8c9f3aa | 2011-06-16 09:19:13 -0700 | [diff] [blame] | 5744 | static int intel_gen2_queue_flip(struct drm_device *dev, |
| 5745 | struct drm_crtc *crtc, |
| 5746 | struct drm_framebuffer *fb, |
| 5747 | struct drm_i915_gem_object *obj) |
| 5748 | { |
| 5749 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 5750 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 5751 | unsigned long offset; |
| 5752 | u32 flip_mask; |
| 5753 | int ret; |
| 5754 | |
| 5755 | ret = intel_pin_and_fence_fb_obj(dev, obj, LP_RING(dev_priv)); |
| 5756 | if (ret) |
Chris Wilson | 83d4092 | 2012-04-17 19:35:53 +0100 | [diff] [blame] | 5757 | goto err; |
Jesse Barnes | 8c9f3aa | 2011-06-16 09:19:13 -0700 | [diff] [blame] | 5758 | |
| 5759 | /* 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] | 5760 | 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] | 5761 | |
| 5762 | ret = BEGIN_LP_RING(6); |
| 5763 | if (ret) |
Chris Wilson | 83d4092 | 2012-04-17 19:35:53 +0100 | [diff] [blame] | 5764 | goto err_unpin; |
Jesse Barnes | 8c9f3aa | 2011-06-16 09:19:13 -0700 | [diff] [blame] | 5765 | |
| 5766 | /* Can't queue multiple flips, so wait for the previous |
| 5767 | * one to finish before executing the next. |
| 5768 | */ |
| 5769 | if (intel_crtc->plane) |
| 5770 | flip_mask = MI_WAIT_FOR_PLANE_B_FLIP; |
| 5771 | else |
| 5772 | flip_mask = MI_WAIT_FOR_PLANE_A_FLIP; |
| 5773 | OUT_RING(MI_WAIT_FOR_EVENT | flip_mask); |
| 5774 | OUT_RING(MI_NOOP); |
| 5775 | OUT_RING(MI_DISPLAY_FLIP | |
| 5776 | MI_DISPLAY_FLIP_PLANE(intel_crtc->plane)); |
Ville Syrjälä | 01f2c77 | 2011-12-20 00:06:49 +0200 | [diff] [blame] | 5777 | OUT_RING(fb->pitches[0]); |
Jesse Barnes | 8c9f3aa | 2011-06-16 09:19:13 -0700 | [diff] [blame] | 5778 | OUT_RING(obj->gtt_offset + offset); |
Daniel Vetter | c6a32fc | 2012-01-20 10:43:44 +0100 | [diff] [blame] | 5779 | OUT_RING(0); /* aux display base address, unused */ |
Jesse Barnes | 8c9f3aa | 2011-06-16 09:19:13 -0700 | [diff] [blame] | 5780 | ADVANCE_LP_RING(); |
Chris Wilson | 83d4092 | 2012-04-17 19:35:53 +0100 | [diff] [blame] | 5781 | return 0; |
| 5782 | |
| 5783 | err_unpin: |
| 5784 | intel_unpin_fb_obj(obj); |
| 5785 | err: |
Jesse Barnes | 8c9f3aa | 2011-06-16 09:19:13 -0700 | [diff] [blame] | 5786 | return ret; |
| 5787 | } |
| 5788 | |
| 5789 | static int intel_gen3_queue_flip(struct drm_device *dev, |
| 5790 | struct drm_crtc *crtc, |
| 5791 | struct drm_framebuffer *fb, |
| 5792 | struct drm_i915_gem_object *obj) |
| 5793 | { |
| 5794 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 5795 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 5796 | unsigned long offset; |
| 5797 | u32 flip_mask; |
| 5798 | int ret; |
| 5799 | |
| 5800 | ret = intel_pin_and_fence_fb_obj(dev, obj, LP_RING(dev_priv)); |
| 5801 | if (ret) |
Chris Wilson | 83d4092 | 2012-04-17 19:35:53 +0100 | [diff] [blame] | 5802 | goto err; |
Jesse Barnes | 8c9f3aa | 2011-06-16 09:19:13 -0700 | [diff] [blame] | 5803 | |
| 5804 | /* 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] | 5805 | 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] | 5806 | |
| 5807 | ret = BEGIN_LP_RING(6); |
| 5808 | if (ret) |
Chris Wilson | 83d4092 | 2012-04-17 19:35:53 +0100 | [diff] [blame] | 5809 | goto err_unpin; |
Jesse Barnes | 8c9f3aa | 2011-06-16 09:19:13 -0700 | [diff] [blame] | 5810 | |
| 5811 | if (intel_crtc->plane) |
| 5812 | flip_mask = MI_WAIT_FOR_PLANE_B_FLIP; |
| 5813 | else |
| 5814 | flip_mask = MI_WAIT_FOR_PLANE_A_FLIP; |
| 5815 | OUT_RING(MI_WAIT_FOR_EVENT | flip_mask); |
| 5816 | OUT_RING(MI_NOOP); |
| 5817 | OUT_RING(MI_DISPLAY_FLIP_I915 | |
| 5818 | MI_DISPLAY_FLIP_PLANE(intel_crtc->plane)); |
Ville Syrjälä | 01f2c77 | 2011-12-20 00:06:49 +0200 | [diff] [blame] | 5819 | OUT_RING(fb->pitches[0]); |
Jesse Barnes | 8c9f3aa | 2011-06-16 09:19:13 -0700 | [diff] [blame] | 5820 | OUT_RING(obj->gtt_offset + offset); |
| 5821 | OUT_RING(MI_NOOP); |
| 5822 | |
| 5823 | ADVANCE_LP_RING(); |
Chris Wilson | 83d4092 | 2012-04-17 19:35:53 +0100 | [diff] [blame] | 5824 | return 0; |
| 5825 | |
| 5826 | err_unpin: |
| 5827 | intel_unpin_fb_obj(obj); |
| 5828 | err: |
Jesse Barnes | 8c9f3aa | 2011-06-16 09:19:13 -0700 | [diff] [blame] | 5829 | return ret; |
| 5830 | } |
| 5831 | |
| 5832 | static int intel_gen4_queue_flip(struct drm_device *dev, |
| 5833 | struct drm_crtc *crtc, |
| 5834 | struct drm_framebuffer *fb, |
| 5835 | struct drm_i915_gem_object *obj) |
| 5836 | { |
| 5837 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 5838 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 5839 | uint32_t pf, pipesrc; |
| 5840 | int ret; |
| 5841 | |
| 5842 | ret = intel_pin_and_fence_fb_obj(dev, obj, LP_RING(dev_priv)); |
| 5843 | if (ret) |
Chris Wilson | 83d4092 | 2012-04-17 19:35:53 +0100 | [diff] [blame] | 5844 | goto err; |
Jesse Barnes | 8c9f3aa | 2011-06-16 09:19:13 -0700 | [diff] [blame] | 5845 | |
| 5846 | ret = BEGIN_LP_RING(4); |
| 5847 | if (ret) |
Chris Wilson | 83d4092 | 2012-04-17 19:35:53 +0100 | [diff] [blame] | 5848 | goto err_unpin; |
Jesse Barnes | 8c9f3aa | 2011-06-16 09:19:13 -0700 | [diff] [blame] | 5849 | |
| 5850 | /* i965+ uses the linear or tiled offsets from the |
| 5851 | * Display Registers (which do not change across a page-flip) |
| 5852 | * so we need only reprogram the base address. |
| 5853 | */ |
| 5854 | OUT_RING(MI_DISPLAY_FLIP | |
| 5855 | MI_DISPLAY_FLIP_PLANE(intel_crtc->plane)); |
Ville Syrjälä | 01f2c77 | 2011-12-20 00:06:49 +0200 | [diff] [blame] | 5856 | OUT_RING(fb->pitches[0]); |
Jesse Barnes | 8c9f3aa | 2011-06-16 09:19:13 -0700 | [diff] [blame] | 5857 | OUT_RING(obj->gtt_offset | obj->tiling_mode); |
| 5858 | |
| 5859 | /* XXX Enabling the panel-fitter across page-flip is so far |
| 5860 | * untested on non-native modes, so ignore it for now. |
| 5861 | * pf = I915_READ(pipe == 0 ? PFA_CTL_1 : PFB_CTL_1) & PF_ENABLE; |
| 5862 | */ |
| 5863 | pf = 0; |
| 5864 | pipesrc = I915_READ(PIPESRC(intel_crtc->pipe)) & 0x0fff0fff; |
| 5865 | OUT_RING(pf | pipesrc); |
| 5866 | ADVANCE_LP_RING(); |
Chris Wilson | 83d4092 | 2012-04-17 19:35:53 +0100 | [diff] [blame] | 5867 | return 0; |
| 5868 | |
| 5869 | err_unpin: |
| 5870 | intel_unpin_fb_obj(obj); |
| 5871 | err: |
Jesse Barnes | 8c9f3aa | 2011-06-16 09:19:13 -0700 | [diff] [blame] | 5872 | return ret; |
| 5873 | } |
| 5874 | |
| 5875 | static int intel_gen6_queue_flip(struct drm_device *dev, |
| 5876 | struct drm_crtc *crtc, |
| 5877 | struct drm_framebuffer *fb, |
| 5878 | struct drm_i915_gem_object *obj) |
| 5879 | { |
| 5880 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 5881 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 5882 | uint32_t pf, pipesrc; |
| 5883 | int ret; |
| 5884 | |
| 5885 | ret = intel_pin_and_fence_fb_obj(dev, obj, LP_RING(dev_priv)); |
| 5886 | if (ret) |
Chris Wilson | 83d4092 | 2012-04-17 19:35:53 +0100 | [diff] [blame] | 5887 | goto err; |
Jesse Barnes | 8c9f3aa | 2011-06-16 09:19:13 -0700 | [diff] [blame] | 5888 | |
| 5889 | ret = BEGIN_LP_RING(4); |
| 5890 | if (ret) |
Chris Wilson | 83d4092 | 2012-04-17 19:35:53 +0100 | [diff] [blame] | 5891 | goto err_unpin; |
Jesse Barnes | 8c9f3aa | 2011-06-16 09:19:13 -0700 | [diff] [blame] | 5892 | |
| 5893 | OUT_RING(MI_DISPLAY_FLIP | |
| 5894 | MI_DISPLAY_FLIP_PLANE(intel_crtc->plane)); |
Ville Syrjälä | 01f2c77 | 2011-12-20 00:06:49 +0200 | [diff] [blame] | 5895 | OUT_RING(fb->pitches[0] | obj->tiling_mode); |
Jesse Barnes | 8c9f3aa | 2011-06-16 09:19:13 -0700 | [diff] [blame] | 5896 | OUT_RING(obj->gtt_offset); |
| 5897 | |
| 5898 | pf = I915_READ(PF_CTL(intel_crtc->pipe)) & PF_ENABLE; |
| 5899 | pipesrc = I915_READ(PIPESRC(intel_crtc->pipe)) & 0x0fff0fff; |
| 5900 | OUT_RING(pf | pipesrc); |
| 5901 | ADVANCE_LP_RING(); |
Chris Wilson | 83d4092 | 2012-04-17 19:35:53 +0100 | [diff] [blame] | 5902 | return 0; |
| 5903 | |
| 5904 | err_unpin: |
| 5905 | intel_unpin_fb_obj(obj); |
| 5906 | err: |
Jesse Barnes | 8c9f3aa | 2011-06-16 09:19:13 -0700 | [diff] [blame] | 5907 | return ret; |
| 5908 | } |
| 5909 | |
Jesse Barnes | 7c9017e | 2011-06-16 12:18:54 -0700 | [diff] [blame] | 5910 | /* |
| 5911 | * On gen7 we currently use the blit ring because (in early silicon at least) |
| 5912 | * the render ring doesn't give us interrpts for page flip completion, which |
| 5913 | * means clients will hang after the first flip is queued. Fortunately the |
| 5914 | * blit ring generates interrupts properly, so use it instead. |
| 5915 | */ |
| 5916 | static int intel_gen7_queue_flip(struct drm_device *dev, |
| 5917 | struct drm_crtc *crtc, |
| 5918 | struct drm_framebuffer *fb, |
| 5919 | struct drm_i915_gem_object *obj) |
| 5920 | { |
| 5921 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 5922 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 5923 | struct intel_ring_buffer *ring = &dev_priv->ring[BCS]; |
| 5924 | int ret; |
| 5925 | |
| 5926 | ret = intel_pin_and_fence_fb_obj(dev, obj, ring); |
| 5927 | if (ret) |
Chris Wilson | 83d4092 | 2012-04-17 19:35:53 +0100 | [diff] [blame] | 5928 | goto err; |
Jesse Barnes | 7c9017e | 2011-06-16 12:18:54 -0700 | [diff] [blame] | 5929 | |
| 5930 | ret = intel_ring_begin(ring, 4); |
| 5931 | if (ret) |
Chris Wilson | 83d4092 | 2012-04-17 19:35:53 +0100 | [diff] [blame] | 5932 | goto err_unpin; |
Jesse Barnes | 7c9017e | 2011-06-16 12:18:54 -0700 | [diff] [blame] | 5933 | |
| 5934 | 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] | 5935 | intel_ring_emit(ring, (fb->pitches[0] | obj->tiling_mode)); |
Jesse Barnes | 7c9017e | 2011-06-16 12:18:54 -0700 | [diff] [blame] | 5936 | intel_ring_emit(ring, (obj->gtt_offset)); |
| 5937 | intel_ring_emit(ring, (MI_NOOP)); |
| 5938 | intel_ring_advance(ring); |
Chris Wilson | 83d4092 | 2012-04-17 19:35:53 +0100 | [diff] [blame] | 5939 | return 0; |
| 5940 | |
| 5941 | err_unpin: |
| 5942 | intel_unpin_fb_obj(obj); |
| 5943 | err: |
Jesse Barnes | 7c9017e | 2011-06-16 12:18:54 -0700 | [diff] [blame] | 5944 | return ret; |
| 5945 | } |
| 5946 | |
Jesse Barnes | 8c9f3aa | 2011-06-16 09:19:13 -0700 | [diff] [blame] | 5947 | static int intel_default_queue_flip(struct drm_device *dev, |
| 5948 | struct drm_crtc *crtc, |
| 5949 | struct drm_framebuffer *fb, |
| 5950 | struct drm_i915_gem_object *obj) |
| 5951 | { |
| 5952 | return -ENODEV; |
| 5953 | } |
| 5954 | |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 5955 | static int intel_crtc_page_flip(struct drm_crtc *crtc, |
| 5956 | struct drm_framebuffer *fb, |
| 5957 | struct drm_pending_vblank_event *event) |
| 5958 | { |
| 5959 | struct drm_device *dev = crtc->dev; |
| 5960 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 5961 | struct intel_framebuffer *intel_fb; |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 5962 | struct drm_i915_gem_object *obj; |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 5963 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 5964 | struct intel_unpin_work *work; |
Jesse Barnes | 8c9f3aa | 2011-06-16 09:19:13 -0700 | [diff] [blame] | 5965 | unsigned long flags; |
Chris Wilson | 52e6863 | 2010-08-08 10:15:59 +0100 | [diff] [blame] | 5966 | int ret; |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 5967 | |
| 5968 | work = kzalloc(sizeof *work, GFP_KERNEL); |
| 5969 | if (work == NULL) |
| 5970 | return -ENOMEM; |
| 5971 | |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 5972 | work->event = event; |
| 5973 | work->dev = crtc->dev; |
| 5974 | intel_fb = to_intel_framebuffer(crtc->fb); |
Jesse Barnes | b1b87f6 | 2010-01-26 14:40:05 -0800 | [diff] [blame] | 5975 | work->old_fb_obj = intel_fb->obj; |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 5976 | INIT_WORK(&work->work, intel_unpin_work_fn); |
| 5977 | |
Jesse Barnes | 7317c75e6 | 2011-08-29 09:45:28 -0700 | [diff] [blame] | 5978 | ret = drm_vblank_get(dev, intel_crtc->pipe); |
| 5979 | if (ret) |
| 5980 | goto free_work; |
| 5981 | |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 5982 | /* We borrow the event spin lock for protecting unpin_work */ |
| 5983 | spin_lock_irqsave(&dev->event_lock, flags); |
| 5984 | if (intel_crtc->unpin_work) { |
| 5985 | spin_unlock_irqrestore(&dev->event_lock, flags); |
| 5986 | kfree(work); |
Jesse Barnes | 7317c75e6 | 2011-08-29 09:45:28 -0700 | [diff] [blame] | 5987 | drm_vblank_put(dev, intel_crtc->pipe); |
Chris Wilson | 468f0b4 | 2010-05-27 13:18:13 +0100 | [diff] [blame] | 5988 | |
| 5989 | DRM_DEBUG_DRIVER("flip queue: crtc already busy\n"); |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 5990 | return -EBUSY; |
| 5991 | } |
| 5992 | intel_crtc->unpin_work = work; |
| 5993 | spin_unlock_irqrestore(&dev->event_lock, flags); |
| 5994 | |
| 5995 | intel_fb = to_intel_framebuffer(fb); |
| 5996 | obj = intel_fb->obj; |
| 5997 | |
Chris Wilson | 468f0b4 | 2010-05-27 13:18:13 +0100 | [diff] [blame] | 5998 | mutex_lock(&dev->struct_mutex); |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 5999 | |
Jesse Barnes | 75dfca8 | 2010-02-10 15:09:44 -0800 | [diff] [blame] | 6000 | /* Reference the objects for the scheduled work. */ |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 6001 | drm_gem_object_reference(&work->old_fb_obj->base); |
| 6002 | drm_gem_object_reference(&obj->base); |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 6003 | |
| 6004 | crtc->fb = fb; |
Chris Wilson | 96b099f | 2010-06-07 14:03:04 +0100 | [diff] [blame] | 6005 | |
Chris Wilson | e1f99ce | 2010-10-27 12:45:26 +0100 | [diff] [blame] | 6006 | work->pending_flip_obj = obj; |
Chris Wilson | e1f99ce | 2010-10-27 12:45:26 +0100 | [diff] [blame] | 6007 | |
Simon Farnsworth | 4e5359c | 2010-09-01 17:47:52 +0100 | [diff] [blame] | 6008 | work->enable_stall_check = true; |
| 6009 | |
Chris Wilson | e1f99ce | 2010-10-27 12:45:26 +0100 | [diff] [blame] | 6010 | /* Block clients from rendering to the new back buffer until |
| 6011 | * the flip occurs and the object is no longer visible. |
| 6012 | */ |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 6013 | atomic_add(1 << intel_crtc->plane, &work->old_fb_obj->pending_flip); |
Chris Wilson | e1f99ce | 2010-10-27 12:45:26 +0100 | [diff] [blame] | 6014 | |
Jesse Barnes | 8c9f3aa | 2011-06-16 09:19:13 -0700 | [diff] [blame] | 6015 | ret = dev_priv->display.queue_flip(dev, crtc, fb, obj); |
| 6016 | if (ret) |
| 6017 | goto cleanup_pending; |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 6018 | |
Chris Wilson | 7782de3 | 2011-07-08 12:22:41 +0100 | [diff] [blame] | 6019 | intel_disable_fbc(dev); |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 6020 | mutex_unlock(&dev->struct_mutex); |
| 6021 | |
Jesse Barnes | e5510fa | 2010-07-01 16:48:37 -0700 | [diff] [blame] | 6022 | trace_i915_flip_request(intel_crtc->plane, obj); |
| 6023 | |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 6024 | return 0; |
Chris Wilson | 96b099f | 2010-06-07 14:03:04 +0100 | [diff] [blame] | 6025 | |
Jesse Barnes | 8c9f3aa | 2011-06-16 09:19:13 -0700 | [diff] [blame] | 6026 | cleanup_pending: |
| 6027 | atomic_sub(1 << intel_crtc->plane, &work->old_fb_obj->pending_flip); |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 6028 | drm_gem_object_unreference(&work->old_fb_obj->base); |
| 6029 | drm_gem_object_unreference(&obj->base); |
Chris Wilson | 96b099f | 2010-06-07 14:03:04 +0100 | [diff] [blame] | 6030 | mutex_unlock(&dev->struct_mutex); |
| 6031 | |
| 6032 | spin_lock_irqsave(&dev->event_lock, flags); |
| 6033 | intel_crtc->unpin_work = NULL; |
| 6034 | spin_unlock_irqrestore(&dev->event_lock, flags); |
| 6035 | |
Jesse Barnes | 7317c75e6 | 2011-08-29 09:45:28 -0700 | [diff] [blame] | 6036 | drm_vblank_put(dev, intel_crtc->pipe); |
| 6037 | free_work: |
Chris Wilson | 96b099f | 2010-06-07 14:03:04 +0100 | [diff] [blame] | 6038 | kfree(work); |
| 6039 | |
| 6040 | return ret; |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 6041 | } |
| 6042 | |
Chris Wilson | 47f1c6c | 2010-12-03 15:37:31 +0000 | [diff] [blame] | 6043 | static void intel_sanitize_modesetting(struct drm_device *dev, |
| 6044 | int pipe, int plane) |
| 6045 | { |
| 6046 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 6047 | u32 reg, val; |
| 6048 | |
Chris Wilson | f47166d | 2012-03-22 15:00:50 +0000 | [diff] [blame] | 6049 | /* Clear any frame start delays used for debugging left by the BIOS */ |
| 6050 | for_each_pipe(pipe) { |
| 6051 | reg = PIPECONF(pipe); |
| 6052 | I915_WRITE(reg, I915_READ(reg) & ~PIPECONF_FRAME_START_DELAY_MASK); |
| 6053 | } |
| 6054 | |
Chris Wilson | 47f1c6c | 2010-12-03 15:37:31 +0000 | [diff] [blame] | 6055 | if (HAS_PCH_SPLIT(dev)) |
| 6056 | return; |
| 6057 | |
| 6058 | /* Who knows what state these registers were left in by the BIOS or |
| 6059 | * grub? |
| 6060 | * |
| 6061 | * If we leave the registers in a conflicting state (e.g. with the |
| 6062 | * display plane reading from the other pipe than the one we intend |
| 6063 | * to use) then when we attempt to teardown the active mode, we will |
| 6064 | * not disable the pipes and planes in the correct order -- leaving |
| 6065 | * a plane reading from a disabled pipe and possibly leading to |
| 6066 | * undefined behaviour. |
| 6067 | */ |
| 6068 | |
| 6069 | reg = DSPCNTR(plane); |
| 6070 | val = I915_READ(reg); |
| 6071 | |
| 6072 | if ((val & DISPLAY_PLANE_ENABLE) == 0) |
| 6073 | return; |
| 6074 | if (!!(val & DISPPLANE_SEL_PIPE_MASK) == pipe) |
| 6075 | return; |
| 6076 | |
| 6077 | /* This display plane is active and attached to the other CPU pipe. */ |
| 6078 | pipe = !pipe; |
| 6079 | |
| 6080 | /* 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] | 6081 | intel_disable_plane(dev_priv, plane, pipe); |
| 6082 | intel_disable_pipe(dev_priv, pipe); |
Chris Wilson | 47f1c6c | 2010-12-03 15:37:31 +0000 | [diff] [blame] | 6083 | } |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6084 | |
Chris Wilson | f6e5b16 | 2011-04-12 18:06:51 +0100 | [diff] [blame] | 6085 | static void intel_crtc_reset(struct drm_crtc *crtc) |
| 6086 | { |
| 6087 | struct drm_device *dev = crtc->dev; |
| 6088 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 6089 | |
| 6090 | /* Reset flags back to the 'unknown' status so that they |
| 6091 | * will be correctly set on the initial modeset. |
| 6092 | */ |
| 6093 | intel_crtc->dpms_mode = -1; |
| 6094 | |
| 6095 | /* We need to fix up any BIOS configuration that conflicts with |
| 6096 | * our expectations. |
| 6097 | */ |
| 6098 | intel_sanitize_modesetting(dev, intel_crtc->pipe, intel_crtc->plane); |
| 6099 | } |
| 6100 | |
| 6101 | static struct drm_crtc_helper_funcs intel_helper_funcs = { |
| 6102 | .dpms = intel_crtc_dpms, |
| 6103 | .mode_fixup = intel_crtc_mode_fixup, |
| 6104 | .mode_set = intel_crtc_mode_set, |
| 6105 | .mode_set_base = intel_pipe_set_base, |
| 6106 | .mode_set_base_atomic = intel_pipe_set_base_atomic, |
| 6107 | .load_lut = intel_crtc_load_lut, |
| 6108 | .disable = intel_crtc_disable, |
| 6109 | }; |
| 6110 | |
| 6111 | static const struct drm_crtc_funcs intel_crtc_funcs = { |
| 6112 | .reset = intel_crtc_reset, |
| 6113 | .cursor_set = intel_crtc_cursor_set, |
| 6114 | .cursor_move = intel_crtc_cursor_move, |
| 6115 | .gamma_set = intel_crtc_gamma_set, |
| 6116 | .set_config = drm_crtc_helper_set_config, |
| 6117 | .destroy = intel_crtc_destroy, |
| 6118 | .page_flip = intel_crtc_page_flip, |
| 6119 | }; |
| 6120 | |
Jesse Barnes | ee7b9f9 | 2012-04-20 17:11:53 +0100 | [diff] [blame^] | 6121 | static void intel_pch_pll_init(struct drm_device *dev) |
| 6122 | { |
| 6123 | drm_i915_private_t *dev_priv = dev->dev_private; |
| 6124 | int i; |
| 6125 | |
| 6126 | if (dev_priv->num_pch_pll == 0) { |
| 6127 | DRM_DEBUG_KMS("No PCH PLLs on this hardware, skipping initialisation\n"); |
| 6128 | return; |
| 6129 | } |
| 6130 | |
| 6131 | for (i = 0; i < dev_priv->num_pch_pll; i++) { |
| 6132 | dev_priv->pch_plls[i].pll_reg = _PCH_DPLL(i); |
| 6133 | dev_priv->pch_plls[i].fp0_reg = _PCH_FP0(i); |
| 6134 | dev_priv->pch_plls[i].fp1_reg = _PCH_FP1(i); |
| 6135 | } |
| 6136 | } |
| 6137 | |
Hannes Eder | b358d0a | 2008-12-18 21:18:47 +0100 | [diff] [blame] | 6138 | static void intel_crtc_init(struct drm_device *dev, int pipe) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6139 | { |
Jesse Barnes | 22fd0fa | 2009-12-02 13:42:53 -0800 | [diff] [blame] | 6140 | drm_i915_private_t *dev_priv = dev->dev_private; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6141 | struct intel_crtc *intel_crtc; |
| 6142 | int i; |
| 6143 | |
| 6144 | intel_crtc = kzalloc(sizeof(struct intel_crtc) + (INTELFB_CONN_LIMIT * sizeof(struct drm_connector *)), GFP_KERNEL); |
| 6145 | if (intel_crtc == NULL) |
| 6146 | return; |
| 6147 | |
| 6148 | drm_crtc_init(dev, &intel_crtc->base, &intel_crtc_funcs); |
| 6149 | |
| 6150 | drm_mode_crtc_set_gamma_size(&intel_crtc->base, 256); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6151 | for (i = 0; i < 256; i++) { |
| 6152 | intel_crtc->lut_r[i] = i; |
| 6153 | intel_crtc->lut_g[i] = i; |
| 6154 | intel_crtc->lut_b[i] = i; |
| 6155 | } |
| 6156 | |
Jesse Barnes | 8082400 | 2009-09-10 15:28:06 -0700 | [diff] [blame] | 6157 | /* Swap pipes & planes for FBC on pre-965 */ |
| 6158 | intel_crtc->pipe = pipe; |
| 6159 | intel_crtc->plane = pipe; |
Chris Wilson | e2e767a | 2010-09-13 16:53:12 +0100 | [diff] [blame] | 6160 | if (IS_MOBILE(dev) && IS_GEN3(dev)) { |
Zhao Yakui | 28c9773 | 2009-10-09 11:39:41 +0800 | [diff] [blame] | 6161 | DRM_DEBUG_KMS("swapping pipes & planes for FBC\n"); |
Chris Wilson | e2e767a | 2010-09-13 16:53:12 +0100 | [diff] [blame] | 6162 | intel_crtc->plane = !pipe; |
Jesse Barnes | 8082400 | 2009-09-10 15:28:06 -0700 | [diff] [blame] | 6163 | } |
| 6164 | |
Jesse Barnes | 22fd0fa | 2009-12-02 13:42:53 -0800 | [diff] [blame] | 6165 | BUG_ON(pipe >= ARRAY_SIZE(dev_priv->plane_to_crtc_mapping) || |
| 6166 | dev_priv->plane_to_crtc_mapping[intel_crtc->plane] != NULL); |
| 6167 | dev_priv->plane_to_crtc_mapping[intel_crtc->plane] = &intel_crtc->base; |
| 6168 | dev_priv->pipe_to_crtc_mapping[intel_crtc->pipe] = &intel_crtc->base; |
| 6169 | |
Chris Wilson | 5d1d0cc | 2011-01-24 15:02:15 +0000 | [diff] [blame] | 6170 | intel_crtc_reset(&intel_crtc->base); |
Chris Wilson | 04dbff5 | 2011-02-10 17:38:35 +0000 | [diff] [blame] | 6171 | intel_crtc->active = true; /* force the pipe off on setup_init_config */ |
Jesse Barnes | 5a35420 | 2011-06-24 12:19:22 -0700 | [diff] [blame] | 6172 | intel_crtc->bpp = 24; /* default for pre-Ironlake */ |
Jesse Barnes | 7e7d76c | 2010-09-10 10:47:20 -0700 | [diff] [blame] | 6173 | |
| 6174 | if (HAS_PCH_SPLIT(dev)) { |
| 6175 | intel_helper_funcs.prepare = ironlake_crtc_prepare; |
| 6176 | intel_helper_funcs.commit = ironlake_crtc_commit; |
| 6177 | } else { |
| 6178 | intel_helper_funcs.prepare = i9xx_crtc_prepare; |
| 6179 | intel_helper_funcs.commit = i9xx_crtc_commit; |
| 6180 | } |
| 6181 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6182 | drm_crtc_helper_add(&intel_crtc->base, &intel_helper_funcs); |
| 6183 | |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 6184 | intel_crtc->busy = false; |
| 6185 | |
| 6186 | setup_timer(&intel_crtc->idle_timer, intel_crtc_idle_timer, |
| 6187 | (unsigned long)intel_crtc); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6188 | } |
| 6189 | |
Carl Worth | 08d7b3d | 2009-04-29 14:43:54 -0700 | [diff] [blame] | 6190 | 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] | 6191 | struct drm_file *file) |
Carl Worth | 08d7b3d | 2009-04-29 14:43:54 -0700 | [diff] [blame] | 6192 | { |
| 6193 | drm_i915_private_t *dev_priv = dev->dev_private; |
| 6194 | 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] | 6195 | struct drm_mode_object *drmmode_obj; |
| 6196 | struct intel_crtc *crtc; |
Carl Worth | 08d7b3d | 2009-04-29 14:43:54 -0700 | [diff] [blame] | 6197 | |
| 6198 | if (!dev_priv) { |
| 6199 | DRM_ERROR("called with no initialization\n"); |
| 6200 | return -EINVAL; |
| 6201 | } |
| 6202 | |
Daniel Vetter | c05422d | 2009-08-11 16:05:30 +0200 | [diff] [blame] | 6203 | drmmode_obj = drm_mode_object_find(dev, pipe_from_crtc_id->crtc_id, |
| 6204 | DRM_MODE_OBJECT_CRTC); |
Carl Worth | 08d7b3d | 2009-04-29 14:43:54 -0700 | [diff] [blame] | 6205 | |
Daniel Vetter | c05422d | 2009-08-11 16:05:30 +0200 | [diff] [blame] | 6206 | if (!drmmode_obj) { |
Carl Worth | 08d7b3d | 2009-04-29 14:43:54 -0700 | [diff] [blame] | 6207 | DRM_ERROR("no such CRTC id\n"); |
| 6208 | return -EINVAL; |
| 6209 | } |
| 6210 | |
Daniel Vetter | c05422d | 2009-08-11 16:05:30 +0200 | [diff] [blame] | 6211 | crtc = to_intel_crtc(obj_to_crtc(drmmode_obj)); |
| 6212 | pipe_from_crtc_id->pipe = crtc->pipe; |
Carl Worth | 08d7b3d | 2009-04-29 14:43:54 -0700 | [diff] [blame] | 6213 | |
Daniel Vetter | c05422d | 2009-08-11 16:05:30 +0200 | [diff] [blame] | 6214 | return 0; |
Carl Worth | 08d7b3d | 2009-04-29 14:43:54 -0700 | [diff] [blame] | 6215 | } |
| 6216 | |
Zhenyu Wang | c5e4df3 | 2010-03-30 14:39:27 +0800 | [diff] [blame] | 6217 | static int intel_encoder_clones(struct drm_device *dev, int type_mask) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6218 | { |
Chris Wilson | 4ef69c7 | 2010-09-09 15:14:28 +0100 | [diff] [blame] | 6219 | struct intel_encoder *encoder; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6220 | int index_mask = 0; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6221 | int entry = 0; |
| 6222 | |
Chris Wilson | 4ef69c7 | 2010-09-09 15:14:28 +0100 | [diff] [blame] | 6223 | list_for_each_entry(encoder, &dev->mode_config.encoder_list, base.head) { |
| 6224 | if (type_mask & encoder->clone_mask) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6225 | index_mask |= (1 << entry); |
| 6226 | entry++; |
| 6227 | } |
Chris Wilson | 4ef69c7 | 2010-09-09 15:14:28 +0100 | [diff] [blame] | 6228 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6229 | return index_mask; |
| 6230 | } |
| 6231 | |
Chris Wilson | 4d30244 | 2010-12-14 19:21:29 +0000 | [diff] [blame] | 6232 | static bool has_edp_a(struct drm_device *dev) |
| 6233 | { |
| 6234 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 6235 | |
| 6236 | if (!IS_MOBILE(dev)) |
| 6237 | return false; |
| 6238 | |
| 6239 | if ((I915_READ(DP_A) & DP_DETECTED) == 0) |
| 6240 | return false; |
| 6241 | |
| 6242 | if (IS_GEN5(dev) && |
| 6243 | (I915_READ(ILK_DISPLAY_CHICKEN_FUSES) & ILK_eDP_A_DISABLE)) |
| 6244 | return false; |
| 6245 | |
| 6246 | return true; |
| 6247 | } |
| 6248 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6249 | static void intel_setup_outputs(struct drm_device *dev) |
| 6250 | { |
Eric Anholt | 725e30a | 2009-01-22 13:01:02 -0800 | [diff] [blame] | 6251 | struct drm_i915_private *dev_priv = dev->dev_private; |
Chris Wilson | 4ef69c7 | 2010-09-09 15:14:28 +0100 | [diff] [blame] | 6252 | struct intel_encoder *encoder; |
Adam Jackson | cb0953d | 2010-07-16 14:46:29 -0400 | [diff] [blame] | 6253 | bool dpd_is_edp = false; |
Chris Wilson | f3cfcba | 2012-02-09 09:35:53 +0000 | [diff] [blame] | 6254 | bool has_lvds; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6255 | |
Chris Wilson | f3cfcba | 2012-02-09 09:35:53 +0000 | [diff] [blame] | 6256 | has_lvds = intel_lvds_init(dev); |
Chris Wilson | c5d1b51 | 2010-11-29 18:00:23 +0000 | [diff] [blame] | 6257 | if (!has_lvds && !HAS_PCH_SPLIT(dev)) { |
| 6258 | /* disable the panel fitter on everything but LVDS */ |
| 6259 | I915_WRITE(PFIT_CONTROL, 0); |
| 6260 | } |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6261 | |
Eric Anholt | bad720f | 2009-10-22 16:11:14 -0700 | [diff] [blame] | 6262 | if (HAS_PCH_SPLIT(dev)) { |
Adam Jackson | cb0953d | 2010-07-16 14:46:29 -0400 | [diff] [blame] | 6263 | dpd_is_edp = intel_dpd_is_edp(dev); |
Zhenyu Wang | 30ad48b | 2009-06-05 15:38:43 +0800 | [diff] [blame] | 6264 | |
Chris Wilson | 4d30244 | 2010-12-14 19:21:29 +0000 | [diff] [blame] | 6265 | if (has_edp_a(dev)) |
Zhenyu Wang | 32f9d65 | 2009-07-24 01:00:32 +0800 | [diff] [blame] | 6266 | intel_dp_init(dev, DP_A); |
| 6267 | |
Adam Jackson | cb0953d | 2010-07-16 14:46:29 -0400 | [diff] [blame] | 6268 | if (dpd_is_edp && (I915_READ(PCH_DP_D) & DP_DETECTED)) |
| 6269 | intel_dp_init(dev, PCH_DP_D); |
| 6270 | } |
| 6271 | |
| 6272 | intel_crt_init(dev); |
| 6273 | |
| 6274 | if (HAS_PCH_SPLIT(dev)) { |
| 6275 | int found; |
| 6276 | |
Zhenyu Wang | 30ad48b | 2009-06-05 15:38:43 +0800 | [diff] [blame] | 6277 | if (I915_READ(HDMIB) & PORT_DETECTED) { |
Zhao Yakui | 461ed3c | 2010-03-30 15:11:33 +0800 | [diff] [blame] | 6278 | /* PCH SDVOB multiplex with HDMIB */ |
Daniel Vetter | eef4eac | 2012-03-23 23:43:35 +0100 | [diff] [blame] | 6279 | found = intel_sdvo_init(dev, PCH_SDVOB, true); |
Zhenyu Wang | 30ad48b | 2009-06-05 15:38:43 +0800 | [diff] [blame] | 6280 | if (!found) |
| 6281 | intel_hdmi_init(dev, HDMIB); |
Zhenyu Wang | 5eb08b6 | 2009-07-24 01:00:31 +0800 | [diff] [blame] | 6282 | if (!found && (I915_READ(PCH_DP_B) & DP_DETECTED)) |
| 6283 | intel_dp_init(dev, PCH_DP_B); |
Zhenyu Wang | 30ad48b | 2009-06-05 15:38:43 +0800 | [diff] [blame] | 6284 | } |
| 6285 | |
| 6286 | if (I915_READ(HDMIC) & PORT_DETECTED) |
| 6287 | intel_hdmi_init(dev, HDMIC); |
| 6288 | |
| 6289 | if (I915_READ(HDMID) & PORT_DETECTED) |
| 6290 | intel_hdmi_init(dev, HDMID); |
| 6291 | |
Zhenyu Wang | 5eb08b6 | 2009-07-24 01:00:31 +0800 | [diff] [blame] | 6292 | if (I915_READ(PCH_DP_C) & DP_DETECTED) |
| 6293 | intel_dp_init(dev, PCH_DP_C); |
| 6294 | |
Adam Jackson | cb0953d | 2010-07-16 14:46:29 -0400 | [diff] [blame] | 6295 | if (!dpd_is_edp && (I915_READ(PCH_DP_D) & DP_DETECTED)) |
Zhenyu Wang | 5eb08b6 | 2009-07-24 01:00:31 +0800 | [diff] [blame] | 6296 | intel_dp_init(dev, PCH_DP_D); |
| 6297 | |
Zhenyu Wang | 103a196 | 2009-11-27 11:44:36 +0800 | [diff] [blame] | 6298 | } else if (SUPPORTS_DIGITAL_OUTPUTS(dev)) { |
Ma Ling | 27185ae | 2009-08-24 13:50:23 +0800 | [diff] [blame] | 6299 | bool found = false; |
Eric Anholt | 7d57382 | 2009-01-02 13:33:00 -0800 | [diff] [blame] | 6300 | |
Eric Anholt | 725e30a | 2009-01-22 13:01:02 -0800 | [diff] [blame] | 6301 | if (I915_READ(SDVOB) & SDVO_DETECTED) { |
Jesse Barnes | b01f2c3 | 2009-12-11 11:07:17 -0800 | [diff] [blame] | 6302 | DRM_DEBUG_KMS("probing SDVOB\n"); |
Daniel Vetter | eef4eac | 2012-03-23 23:43:35 +0100 | [diff] [blame] | 6303 | found = intel_sdvo_init(dev, SDVOB, true); |
Jesse Barnes | b01f2c3 | 2009-12-11 11:07:17 -0800 | [diff] [blame] | 6304 | if (!found && SUPPORTS_INTEGRATED_HDMI(dev)) { |
| 6305 | DRM_DEBUG_KMS("probing HDMI on SDVOB\n"); |
Eric Anholt | 725e30a | 2009-01-22 13:01:02 -0800 | [diff] [blame] | 6306 | intel_hdmi_init(dev, SDVOB); |
Jesse Barnes | b01f2c3 | 2009-12-11 11:07:17 -0800 | [diff] [blame] | 6307 | } |
Ma Ling | 27185ae | 2009-08-24 13:50:23 +0800 | [diff] [blame] | 6308 | |
Jesse Barnes | b01f2c3 | 2009-12-11 11:07:17 -0800 | [diff] [blame] | 6309 | if (!found && SUPPORTS_INTEGRATED_DP(dev)) { |
| 6310 | DRM_DEBUG_KMS("probing DP_B\n"); |
Keith Packard | a4fc5ed | 2009-04-07 16:16:42 -0700 | [diff] [blame] | 6311 | intel_dp_init(dev, DP_B); |
Jesse Barnes | b01f2c3 | 2009-12-11 11:07:17 -0800 | [diff] [blame] | 6312 | } |
Eric Anholt | 725e30a | 2009-01-22 13:01:02 -0800 | [diff] [blame] | 6313 | } |
Kristian Høgsberg | 13520b0 | 2009-03-13 15:42:14 -0400 | [diff] [blame] | 6314 | |
| 6315 | /* Before G4X SDVOC doesn't have its own detect register */ |
Kristian Høgsberg | 13520b0 | 2009-03-13 15:42:14 -0400 | [diff] [blame] | 6316 | |
Jesse Barnes | b01f2c3 | 2009-12-11 11:07:17 -0800 | [diff] [blame] | 6317 | if (I915_READ(SDVOB) & SDVO_DETECTED) { |
| 6318 | DRM_DEBUG_KMS("probing SDVOC\n"); |
Daniel Vetter | eef4eac | 2012-03-23 23:43:35 +0100 | [diff] [blame] | 6319 | found = intel_sdvo_init(dev, SDVOC, false); |
Jesse Barnes | b01f2c3 | 2009-12-11 11:07:17 -0800 | [diff] [blame] | 6320 | } |
Ma Ling | 27185ae | 2009-08-24 13:50:23 +0800 | [diff] [blame] | 6321 | |
| 6322 | if (!found && (I915_READ(SDVOC) & SDVO_DETECTED)) { |
| 6323 | |
Jesse Barnes | b01f2c3 | 2009-12-11 11:07:17 -0800 | [diff] [blame] | 6324 | if (SUPPORTS_INTEGRATED_HDMI(dev)) { |
| 6325 | DRM_DEBUG_KMS("probing HDMI on SDVOC\n"); |
Eric Anholt | 725e30a | 2009-01-22 13:01:02 -0800 | [diff] [blame] | 6326 | intel_hdmi_init(dev, SDVOC); |
Jesse Barnes | b01f2c3 | 2009-12-11 11:07:17 -0800 | [diff] [blame] | 6327 | } |
| 6328 | if (SUPPORTS_INTEGRATED_DP(dev)) { |
| 6329 | DRM_DEBUG_KMS("probing DP_C\n"); |
Keith Packard | a4fc5ed | 2009-04-07 16:16:42 -0700 | [diff] [blame] | 6330 | intel_dp_init(dev, DP_C); |
Jesse Barnes | b01f2c3 | 2009-12-11 11:07:17 -0800 | [diff] [blame] | 6331 | } |
Eric Anholt | 725e30a | 2009-01-22 13:01:02 -0800 | [diff] [blame] | 6332 | } |
Ma Ling | 27185ae | 2009-08-24 13:50:23 +0800 | [diff] [blame] | 6333 | |
Jesse Barnes | b01f2c3 | 2009-12-11 11:07:17 -0800 | [diff] [blame] | 6334 | if (SUPPORTS_INTEGRATED_DP(dev) && |
| 6335 | (I915_READ(DP_D) & DP_DETECTED)) { |
| 6336 | DRM_DEBUG_KMS("probing DP_D\n"); |
Keith Packard | a4fc5ed | 2009-04-07 16:16:42 -0700 | [diff] [blame] | 6337 | intel_dp_init(dev, DP_D); |
Jesse Barnes | b01f2c3 | 2009-12-11 11:07:17 -0800 | [diff] [blame] | 6338 | } |
Eric Anholt | bad720f | 2009-10-22 16:11:14 -0700 | [diff] [blame] | 6339 | } else if (IS_GEN2(dev)) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6340 | intel_dvo_init(dev); |
| 6341 | |
Zhenyu Wang | 103a196 | 2009-11-27 11:44:36 +0800 | [diff] [blame] | 6342 | if (SUPPORTS_TV(dev)) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6343 | intel_tv_init(dev); |
| 6344 | |
Chris Wilson | 4ef69c7 | 2010-09-09 15:14:28 +0100 | [diff] [blame] | 6345 | list_for_each_entry(encoder, &dev->mode_config.encoder_list, base.head) { |
| 6346 | encoder->base.possible_crtcs = encoder->crtc_mask; |
| 6347 | encoder->base.possible_clones = |
| 6348 | intel_encoder_clones(dev, encoder->clone_mask); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6349 | } |
Chris Wilson | 47356eb | 2011-01-11 17:06:04 +0000 | [diff] [blame] | 6350 | |
Chris Wilson | 2c7111d | 2011-03-29 10:40:27 +0100 | [diff] [blame] | 6351 | /* disable all the possible outputs/crtcs before entering KMS mode */ |
| 6352 | drm_helper_disable_unused_functions(dev); |
Keith Packard | 9fb526d | 2011-09-26 22:24:57 -0700 | [diff] [blame] | 6353 | |
| 6354 | if (HAS_PCH_SPLIT(dev)) |
| 6355 | ironlake_init_pch_refclk(dev); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6356 | } |
| 6357 | |
| 6358 | static void intel_user_framebuffer_destroy(struct drm_framebuffer *fb) |
| 6359 | { |
| 6360 | struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6361 | |
| 6362 | drm_framebuffer_cleanup(fb); |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 6363 | drm_gem_object_unreference_unlocked(&intel_fb->obj->base); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6364 | |
| 6365 | kfree(intel_fb); |
| 6366 | } |
| 6367 | |
| 6368 | static int intel_user_framebuffer_create_handle(struct drm_framebuffer *fb, |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 6369 | struct drm_file *file, |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6370 | unsigned int *handle) |
| 6371 | { |
| 6372 | struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb); |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 6373 | struct drm_i915_gem_object *obj = intel_fb->obj; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6374 | |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 6375 | return drm_gem_handle_create(file, &obj->base, handle); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6376 | } |
| 6377 | |
| 6378 | static const struct drm_framebuffer_funcs intel_fb_funcs = { |
| 6379 | .destroy = intel_user_framebuffer_destroy, |
| 6380 | .create_handle = intel_user_framebuffer_create_handle, |
| 6381 | }; |
| 6382 | |
Dave Airlie | 3865167 | 2010-03-30 05:34:13 +0000 | [diff] [blame] | 6383 | int intel_framebuffer_init(struct drm_device *dev, |
| 6384 | struct intel_framebuffer *intel_fb, |
Jesse Barnes | 308e5bc | 2011-11-14 14:51:28 -0800 | [diff] [blame] | 6385 | struct drm_mode_fb_cmd2 *mode_cmd, |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 6386 | struct drm_i915_gem_object *obj) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6387 | { |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6388 | int ret; |
| 6389 | |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 6390 | if (obj->tiling_mode == I915_TILING_Y) |
Chris Wilson | 57cd650 | 2010-08-08 12:34:44 +0100 | [diff] [blame] | 6391 | return -EINVAL; |
| 6392 | |
Jesse Barnes | 308e5bc | 2011-11-14 14:51:28 -0800 | [diff] [blame] | 6393 | if (mode_cmd->pitches[0] & 63) |
Chris Wilson | 57cd650 | 2010-08-08 12:34:44 +0100 | [diff] [blame] | 6394 | return -EINVAL; |
| 6395 | |
Jesse Barnes | 308e5bc | 2011-11-14 14:51:28 -0800 | [diff] [blame] | 6396 | switch (mode_cmd->pixel_format) { |
Ville Syrjälä | 04b3924 | 2011-11-17 18:05:13 +0200 | [diff] [blame] | 6397 | case DRM_FORMAT_RGB332: |
| 6398 | case DRM_FORMAT_RGB565: |
| 6399 | case DRM_FORMAT_XRGB8888: |
Jesse Barnes | b250da7 | 2012-03-07 08:49:29 -0800 | [diff] [blame] | 6400 | case DRM_FORMAT_XBGR8888: |
Ville Syrjälä | 04b3924 | 2011-11-17 18:05:13 +0200 | [diff] [blame] | 6401 | case DRM_FORMAT_ARGB8888: |
| 6402 | case DRM_FORMAT_XRGB2101010: |
| 6403 | case DRM_FORMAT_ARGB2101010: |
Jesse Barnes | 308e5bc | 2011-11-14 14:51:28 -0800 | [diff] [blame] | 6404 | /* RGB formats are common across chipsets */ |
Jesse Barnes | b562674 | 2011-06-24 12:19:27 -0700 | [diff] [blame] | 6405 | break; |
Ville Syrjälä | 04b3924 | 2011-11-17 18:05:13 +0200 | [diff] [blame] | 6406 | case DRM_FORMAT_YUYV: |
| 6407 | case DRM_FORMAT_UYVY: |
| 6408 | case DRM_FORMAT_YVYU: |
| 6409 | case DRM_FORMAT_VYUY: |
Chris Wilson | 57cd650 | 2010-08-08 12:34:44 +0100 | [diff] [blame] | 6410 | break; |
| 6411 | default: |
Eugeni Dodonov | aca2584 | 2012-01-17 15:25:45 -0200 | [diff] [blame] | 6412 | DRM_DEBUG_KMS("unsupported pixel format %u\n", |
| 6413 | mode_cmd->pixel_format); |
Chris Wilson | 57cd650 | 2010-08-08 12:34:44 +0100 | [diff] [blame] | 6414 | return -EINVAL; |
| 6415 | } |
| 6416 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6417 | ret = drm_framebuffer_init(dev, &intel_fb->base, &intel_fb_funcs); |
| 6418 | if (ret) { |
| 6419 | DRM_ERROR("framebuffer init failed %d\n", ret); |
| 6420 | return ret; |
| 6421 | } |
| 6422 | |
| 6423 | drm_helper_mode_fill_fb_struct(&intel_fb->base, mode_cmd); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6424 | intel_fb->obj = obj; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6425 | return 0; |
| 6426 | } |
| 6427 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6428 | static struct drm_framebuffer * |
| 6429 | intel_user_framebuffer_create(struct drm_device *dev, |
| 6430 | struct drm_file *filp, |
Jesse Barnes | 308e5bc | 2011-11-14 14:51:28 -0800 | [diff] [blame] | 6431 | struct drm_mode_fb_cmd2 *mode_cmd) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6432 | { |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 6433 | struct drm_i915_gem_object *obj; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6434 | |
Jesse Barnes | 308e5bc | 2011-11-14 14:51:28 -0800 | [diff] [blame] | 6435 | obj = to_intel_bo(drm_gem_object_lookup(dev, filp, |
| 6436 | mode_cmd->handles[0])); |
Chris Wilson | c872522 | 2011-02-19 11:31:06 +0000 | [diff] [blame] | 6437 | if (&obj->base == NULL) |
Chris Wilson | cce13ff | 2010-08-08 13:36:38 +0100 | [diff] [blame] | 6438 | return ERR_PTR(-ENOENT); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6439 | |
Chris Wilson | d2dff87 | 2011-04-19 08:36:26 +0100 | [diff] [blame] | 6440 | return intel_framebuffer_create(dev, mode_cmd, obj); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6441 | } |
| 6442 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6443 | static const struct drm_mode_config_funcs intel_mode_funcs = { |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6444 | .fb_create = intel_user_framebuffer_create, |
Dave Airlie | eb1f8e4 | 2010-05-07 06:42:51 +0000 | [diff] [blame] | 6445 | .output_poll_changed = intel_fb_output_poll_changed, |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6446 | }; |
| 6447 | |
Jesse Barnes | e70236a | 2009-09-21 10:42:27 -0700 | [diff] [blame] | 6448 | /* Set up chip specific display functions */ |
| 6449 | static void intel_init_display(struct drm_device *dev) |
| 6450 | { |
| 6451 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 6452 | |
| 6453 | /* We always want a DPMS function */ |
Eric Anholt | f564048e | 2011-03-30 13:01:02 -0700 | [diff] [blame] | 6454 | if (HAS_PCH_SPLIT(dev)) { |
Adam Jackson | f2b115e | 2009-12-03 17:14:42 -0500 | [diff] [blame] | 6455 | dev_priv->display.dpms = ironlake_crtc_dpms; |
Eric Anholt | f564048e | 2011-03-30 13:01:02 -0700 | [diff] [blame] | 6456 | dev_priv->display.crtc_mode_set = ironlake_crtc_mode_set; |
Jesse Barnes | ee7b9f9 | 2012-04-20 17:11:53 +0100 | [diff] [blame^] | 6457 | dev_priv->display.off = ironlake_crtc_off; |
Jesse Barnes | 17638cd | 2011-06-24 12:19:23 -0700 | [diff] [blame] | 6458 | dev_priv->display.update_plane = ironlake_update_plane; |
Eric Anholt | f564048e | 2011-03-30 13:01:02 -0700 | [diff] [blame] | 6459 | } else { |
Jesse Barnes | e70236a | 2009-09-21 10:42:27 -0700 | [diff] [blame] | 6460 | dev_priv->display.dpms = i9xx_crtc_dpms; |
Eric Anholt | f564048e | 2011-03-30 13:01:02 -0700 | [diff] [blame] | 6461 | dev_priv->display.crtc_mode_set = i9xx_crtc_mode_set; |
Jesse Barnes | ee7b9f9 | 2012-04-20 17:11:53 +0100 | [diff] [blame^] | 6462 | dev_priv->display.off = i9xx_crtc_off; |
Jesse Barnes | 17638cd | 2011-06-24 12:19:23 -0700 | [diff] [blame] | 6463 | dev_priv->display.update_plane = i9xx_update_plane; |
Eric Anholt | f564048e | 2011-03-30 13:01:02 -0700 | [diff] [blame] | 6464 | } |
Jesse Barnes | e70236a | 2009-09-21 10:42:27 -0700 | [diff] [blame] | 6465 | |
Jesse Barnes | e70236a | 2009-09-21 10:42:27 -0700 | [diff] [blame] | 6466 | /* Returns the core display clock speed */ |
Jesse Barnes | 25eb05fc | 2012-03-28 13:39:23 -0700 | [diff] [blame] | 6467 | if (IS_VALLEYVIEW(dev)) |
| 6468 | dev_priv->display.get_display_clock_speed = |
| 6469 | valleyview_get_display_clock_speed; |
| 6470 | else if (IS_I945G(dev) || (IS_G33(dev) && !IS_PINEVIEW_M(dev))) |
Jesse Barnes | e70236a | 2009-09-21 10:42:27 -0700 | [diff] [blame] | 6471 | dev_priv->display.get_display_clock_speed = |
| 6472 | i945_get_display_clock_speed; |
| 6473 | else if (IS_I915G(dev)) |
| 6474 | dev_priv->display.get_display_clock_speed = |
| 6475 | i915_get_display_clock_speed; |
Adam Jackson | f2b115e | 2009-12-03 17:14:42 -0500 | [diff] [blame] | 6476 | else if (IS_I945GM(dev) || IS_845G(dev) || IS_PINEVIEW_M(dev)) |
Jesse Barnes | e70236a | 2009-09-21 10:42:27 -0700 | [diff] [blame] | 6477 | dev_priv->display.get_display_clock_speed = |
| 6478 | i9xx_misc_get_display_clock_speed; |
| 6479 | else if (IS_I915GM(dev)) |
| 6480 | dev_priv->display.get_display_clock_speed = |
| 6481 | i915gm_get_display_clock_speed; |
| 6482 | else if (IS_I865G(dev)) |
| 6483 | dev_priv->display.get_display_clock_speed = |
| 6484 | i865_get_display_clock_speed; |
Daniel Vetter | f0f8a9c | 2009-09-15 22:57:33 +0200 | [diff] [blame] | 6485 | else if (IS_I85X(dev)) |
Jesse Barnes | e70236a | 2009-09-21 10:42:27 -0700 | [diff] [blame] | 6486 | dev_priv->display.get_display_clock_speed = |
| 6487 | i855_get_display_clock_speed; |
| 6488 | else /* 852, 830 */ |
| 6489 | dev_priv->display.get_display_clock_speed = |
| 6490 | i830_get_display_clock_speed; |
| 6491 | |
Zhenyu Wang | 7f8a856 | 2010-04-01 13:07:53 +0800 | [diff] [blame] | 6492 | if (HAS_PCH_SPLIT(dev)) { |
Chris Wilson | f00a3dd | 2010-10-21 14:57:17 +0100 | [diff] [blame] | 6493 | if (IS_GEN5(dev)) { |
Jesse Barnes | 674cf96 | 2011-04-28 14:27:04 -0700 | [diff] [blame] | 6494 | dev_priv->display.fdi_link_train = ironlake_fdi_link_train; |
Wu Fengguang | e0dac65 | 2011-09-05 14:25:34 +0800 | [diff] [blame] | 6495 | dev_priv->display.write_eld = ironlake_write_eld; |
Yuanhan Liu | 1398261 | 2010-12-15 15:42:31 +0800 | [diff] [blame] | 6496 | } else if (IS_GEN6(dev)) { |
Jesse Barnes | 674cf96 | 2011-04-28 14:27:04 -0700 | [diff] [blame] | 6497 | dev_priv->display.fdi_link_train = gen6_fdi_link_train; |
Wu Fengguang | e0dac65 | 2011-09-05 14:25:34 +0800 | [diff] [blame] | 6498 | dev_priv->display.write_eld = ironlake_write_eld; |
Jesse Barnes | 357555c | 2011-04-28 15:09:55 -0700 | [diff] [blame] | 6499 | } else if (IS_IVYBRIDGE(dev)) { |
| 6500 | /* FIXME: detect B0+ stepping and use auto training */ |
| 6501 | dev_priv->display.fdi_link_train = ivb_manual_fdi_link_train; |
Wu Fengguang | e0dac65 | 2011-09-05 14:25:34 +0800 | [diff] [blame] | 6502 | dev_priv->display.write_eld = ironlake_write_eld; |
Zhenyu Wang | 7f8a856 | 2010-04-01 13:07:53 +0800 | [diff] [blame] | 6503 | } else |
| 6504 | dev_priv->display.update_wm = NULL; |
Jesse Barnes | ceb0424 | 2012-03-28 13:39:22 -0700 | [diff] [blame] | 6505 | } else if (IS_VALLEYVIEW(dev)) { |
Jesse Barnes | 575155a | 2012-03-28 13:39:37 -0700 | [diff] [blame] | 6506 | dev_priv->display.force_wake_get = vlv_force_wake_get; |
| 6507 | dev_priv->display.force_wake_put = vlv_force_wake_put; |
Jesse Barnes | 6067aae | 2011-04-28 15:04:31 -0700 | [diff] [blame] | 6508 | } else if (IS_G4X(dev)) { |
Wu Fengguang | e0dac65 | 2011-09-05 14:25:34 +0800 | [diff] [blame] | 6509 | dev_priv->display.write_eld = g4x_write_eld; |
Jesse Barnes | e70236a | 2009-09-21 10:42:27 -0700 | [diff] [blame] | 6510 | } |
Jesse Barnes | 8c9f3aa | 2011-06-16 09:19:13 -0700 | [diff] [blame] | 6511 | |
| 6512 | /* Default just returns -ENODEV to indicate unsupported */ |
| 6513 | dev_priv->display.queue_flip = intel_default_queue_flip; |
| 6514 | |
| 6515 | switch (INTEL_INFO(dev)->gen) { |
| 6516 | case 2: |
| 6517 | dev_priv->display.queue_flip = intel_gen2_queue_flip; |
| 6518 | break; |
| 6519 | |
| 6520 | case 3: |
| 6521 | dev_priv->display.queue_flip = intel_gen3_queue_flip; |
| 6522 | break; |
| 6523 | |
| 6524 | case 4: |
| 6525 | case 5: |
| 6526 | dev_priv->display.queue_flip = intel_gen4_queue_flip; |
| 6527 | break; |
| 6528 | |
| 6529 | case 6: |
| 6530 | dev_priv->display.queue_flip = intel_gen6_queue_flip; |
| 6531 | break; |
Jesse Barnes | 7c9017e | 2011-06-16 12:18:54 -0700 | [diff] [blame] | 6532 | case 7: |
| 6533 | dev_priv->display.queue_flip = intel_gen7_queue_flip; |
| 6534 | break; |
Jesse Barnes | 8c9f3aa | 2011-06-16 09:19:13 -0700 | [diff] [blame] | 6535 | } |
Jesse Barnes | e70236a | 2009-09-21 10:42:27 -0700 | [diff] [blame] | 6536 | } |
| 6537 | |
Jesse Barnes | b690e96 | 2010-07-19 13:53:12 -0700 | [diff] [blame] | 6538 | /* |
| 6539 | * Some BIOSes insist on assuming the GPU's pipe A is enabled at suspend, |
| 6540 | * resume, or other times. This quirk makes sure that's the case for |
| 6541 | * affected systems. |
| 6542 | */ |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 6543 | static void quirk_pipea_force(struct drm_device *dev) |
Jesse Barnes | b690e96 | 2010-07-19 13:53:12 -0700 | [diff] [blame] | 6544 | { |
| 6545 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 6546 | |
| 6547 | dev_priv->quirks |= QUIRK_PIPEA_FORCE; |
Daniel Vetter | bc0daf4 | 2012-04-01 13:16:49 +0200 | [diff] [blame] | 6548 | DRM_INFO("applying pipe a force quirk\n"); |
Jesse Barnes | b690e96 | 2010-07-19 13:53:12 -0700 | [diff] [blame] | 6549 | } |
| 6550 | |
Keith Packard | 435793d | 2011-07-12 14:56:22 -0700 | [diff] [blame] | 6551 | /* |
| 6552 | * Some machines (Lenovo U160) do not work with SSC on LVDS for some reason |
| 6553 | */ |
| 6554 | static void quirk_ssc_force_disable(struct drm_device *dev) |
| 6555 | { |
| 6556 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 6557 | dev_priv->quirks |= QUIRK_LVDS_SSC_DISABLE; |
Daniel Vetter | bc0daf4 | 2012-04-01 13:16:49 +0200 | [diff] [blame] | 6558 | DRM_INFO("applying lvds SSC disable quirk\n"); |
Keith Packard | 435793d | 2011-07-12 14:56:22 -0700 | [diff] [blame] | 6559 | } |
| 6560 | |
Carsten Emde | 4dca20e | 2012-03-15 15:56:26 +0100 | [diff] [blame] | 6561 | /* |
Carsten Emde | 5a15ab5 | 2012-03-15 15:56:27 +0100 | [diff] [blame] | 6562 | * A machine (e.g. Acer Aspire 5734Z) may need to invert the panel backlight |
| 6563 | * brightness value |
Carsten Emde | 4dca20e | 2012-03-15 15:56:26 +0100 | [diff] [blame] | 6564 | */ |
| 6565 | static void quirk_invert_brightness(struct drm_device *dev) |
| 6566 | { |
| 6567 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 6568 | dev_priv->quirks |= QUIRK_INVERT_BRIGHTNESS; |
Daniel Vetter | bc0daf4 | 2012-04-01 13:16:49 +0200 | [diff] [blame] | 6569 | DRM_INFO("applying inverted panel brightness quirk\n"); |
Jesse Barnes | b690e96 | 2010-07-19 13:53:12 -0700 | [diff] [blame] | 6570 | } |
| 6571 | |
| 6572 | struct intel_quirk { |
| 6573 | int device; |
| 6574 | int subsystem_vendor; |
| 6575 | int subsystem_device; |
| 6576 | void (*hook)(struct drm_device *dev); |
| 6577 | }; |
| 6578 | |
Ben Widawsky | c43b563 | 2012-04-16 14:07:40 -0700 | [diff] [blame] | 6579 | static struct intel_quirk intel_quirks[] = { |
Jesse Barnes | b690e96 | 2010-07-19 13:53:12 -0700 | [diff] [blame] | 6580 | /* HP Mini needs pipe A force quirk (LP: #322104) */ |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 6581 | { 0x27ae, 0x103c, 0x361a, quirk_pipea_force }, |
Jesse Barnes | b690e96 | 2010-07-19 13:53:12 -0700 | [diff] [blame] | 6582 | |
| 6583 | /* Thinkpad R31 needs pipe A force quirk */ |
| 6584 | { 0x3577, 0x1014, 0x0505, quirk_pipea_force }, |
| 6585 | /* Toshiba Protege R-205, S-209 needs pipe A force quirk */ |
| 6586 | { 0x2592, 0x1179, 0x0001, quirk_pipea_force }, |
| 6587 | |
| 6588 | /* ThinkPad X30 needs pipe A force quirk (LP: #304614) */ |
| 6589 | { 0x3577, 0x1014, 0x0513, quirk_pipea_force }, |
| 6590 | /* ThinkPad X40 needs pipe A force quirk */ |
| 6591 | |
| 6592 | /* ThinkPad T60 needs pipe A force quirk (bug #16494) */ |
| 6593 | { 0x2782, 0x17aa, 0x201a, quirk_pipea_force }, |
| 6594 | |
| 6595 | /* 855 & before need to leave pipe A & dpll A up */ |
| 6596 | { 0x3582, PCI_ANY_ID, PCI_ANY_ID, quirk_pipea_force }, |
| 6597 | { 0x2562, PCI_ANY_ID, PCI_ANY_ID, quirk_pipea_force }, |
Keith Packard | 435793d | 2011-07-12 14:56:22 -0700 | [diff] [blame] | 6598 | |
| 6599 | /* Lenovo U160 cannot use SSC on LVDS */ |
| 6600 | { 0x0046, 0x17aa, 0x3920, quirk_ssc_force_disable }, |
Michel Alexandre Salim | 070d329 | 2011-07-28 18:52:06 +0200 | [diff] [blame] | 6601 | |
| 6602 | /* Sony Vaio Y cannot use SSC on LVDS */ |
| 6603 | { 0x0046, 0x104d, 0x9076, quirk_ssc_force_disable }, |
Carsten Emde | 5a15ab5 | 2012-03-15 15:56:27 +0100 | [diff] [blame] | 6604 | |
| 6605 | /* Acer Aspire 5734Z must invert backlight brightness */ |
| 6606 | { 0x2a42, 0x1025, 0x0459, quirk_invert_brightness }, |
Jesse Barnes | b690e96 | 2010-07-19 13:53:12 -0700 | [diff] [blame] | 6607 | }; |
| 6608 | |
| 6609 | static void intel_init_quirks(struct drm_device *dev) |
| 6610 | { |
| 6611 | struct pci_dev *d = dev->pdev; |
| 6612 | int i; |
| 6613 | |
| 6614 | for (i = 0; i < ARRAY_SIZE(intel_quirks); i++) { |
| 6615 | struct intel_quirk *q = &intel_quirks[i]; |
| 6616 | |
| 6617 | if (d->device == q->device && |
| 6618 | (d->subsystem_vendor == q->subsystem_vendor || |
| 6619 | q->subsystem_vendor == PCI_ANY_ID) && |
| 6620 | (d->subsystem_device == q->subsystem_device || |
| 6621 | q->subsystem_device == PCI_ANY_ID)) |
| 6622 | q->hook(dev); |
| 6623 | } |
| 6624 | } |
| 6625 | |
Jesse Barnes | 9cce37f | 2010-08-13 15:11:26 -0700 | [diff] [blame] | 6626 | /* Disable the VGA plane that we never use */ |
| 6627 | static void i915_disable_vga(struct drm_device *dev) |
| 6628 | { |
| 6629 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 6630 | u8 sr1; |
| 6631 | u32 vga_reg; |
| 6632 | |
| 6633 | if (HAS_PCH_SPLIT(dev)) |
| 6634 | vga_reg = CPU_VGACNTRL; |
| 6635 | else |
| 6636 | vga_reg = VGACNTRL; |
| 6637 | |
| 6638 | vga_get_uninterruptible(dev->pdev, VGA_RSRC_LEGACY_IO); |
Jesse Barnes | 3fdcf43 | 2012-04-06 11:46:27 -0700 | [diff] [blame] | 6639 | outb(SR01, VGA_SR_INDEX); |
Jesse Barnes | 9cce37f | 2010-08-13 15:11:26 -0700 | [diff] [blame] | 6640 | sr1 = inb(VGA_SR_DATA); |
| 6641 | outb(sr1 | 1<<5, VGA_SR_DATA); |
| 6642 | vga_put(dev->pdev, VGA_RSRC_LEGACY_IO); |
| 6643 | udelay(300); |
| 6644 | |
| 6645 | I915_WRITE(vga_reg, VGA_DISP_DISABLE); |
| 6646 | POSTING_READ(vga_reg); |
| 6647 | } |
| 6648 | |
Jesse Barnes | f82cfb6 | 2012-04-11 09:23:35 -0700 | [diff] [blame] | 6649 | static void ivb_pch_pwm_override(struct drm_device *dev) |
| 6650 | { |
| 6651 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 6652 | |
| 6653 | /* |
| 6654 | * IVB has CPU eDP backlight regs too, set things up to let the |
| 6655 | * PCH regs control the backlight |
| 6656 | */ |
| 6657 | I915_WRITE(BLC_PWM_CPU_CTL2, PWM_ENABLE); |
| 6658 | I915_WRITE(BLC_PWM_CPU_CTL, 0); |
| 6659 | I915_WRITE(BLC_PWM_PCH_CTL1, PWM_ENABLE | (1<<30)); |
| 6660 | } |
| 6661 | |
Daniel Vetter | f817586 | 2012-04-10 15:50:11 +0200 | [diff] [blame] | 6662 | void intel_modeset_init_hw(struct drm_device *dev) |
| 6663 | { |
| 6664 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 6665 | |
| 6666 | intel_init_clock_gating(dev); |
| 6667 | |
| 6668 | if (IS_IRONLAKE_M(dev)) { |
| 6669 | ironlake_enable_drps(dev); |
| 6670 | intel_init_emon(dev); |
| 6671 | } |
| 6672 | |
Jesse Barnes | b6834bd | 2012-04-11 09:23:33 -0700 | [diff] [blame] | 6673 | if ((IS_GEN6(dev) || IS_GEN7(dev)) && !IS_VALLEYVIEW(dev)) { |
Daniel Vetter | f817586 | 2012-04-10 15:50:11 +0200 | [diff] [blame] | 6674 | gen6_enable_rps(dev_priv); |
| 6675 | gen6_update_ring_freq(dev_priv); |
| 6676 | } |
Jesse Barnes | f82cfb6 | 2012-04-11 09:23:35 -0700 | [diff] [blame] | 6677 | |
| 6678 | if (IS_IVYBRIDGE(dev)) |
| 6679 | ivb_pch_pwm_override(dev); |
Daniel Vetter | f817586 | 2012-04-10 15:50:11 +0200 | [diff] [blame] | 6680 | } |
| 6681 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6682 | void intel_modeset_init(struct drm_device *dev) |
| 6683 | { |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 6684 | struct drm_i915_private *dev_priv = dev->dev_private; |
Jesse Barnes | b840d907f | 2011-12-13 13:19:38 -0800 | [diff] [blame] | 6685 | int i, ret; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6686 | |
| 6687 | drm_mode_config_init(dev); |
| 6688 | |
| 6689 | dev->mode_config.min_width = 0; |
| 6690 | dev->mode_config.min_height = 0; |
| 6691 | |
Dave Airlie | 019d96c | 2011-09-29 16:20:42 +0100 | [diff] [blame] | 6692 | dev->mode_config.preferred_depth = 24; |
| 6693 | dev->mode_config.prefer_shadow = 1; |
| 6694 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6695 | dev->mode_config.funcs = (void *)&intel_mode_funcs; |
| 6696 | |
Jesse Barnes | b690e96 | 2010-07-19 13:53:12 -0700 | [diff] [blame] | 6697 | intel_init_quirks(dev); |
| 6698 | |
Eugeni Dodonov | 1fa6110 | 2012-04-18 15:29:26 -0300 | [diff] [blame] | 6699 | intel_init_pm(dev); |
| 6700 | |
Jesse Barnes | e70236a | 2009-09-21 10:42:27 -0700 | [diff] [blame] | 6701 | intel_init_display(dev); |
| 6702 | |
Chris Wilson | a6c45cf | 2010-09-17 00:32:17 +0100 | [diff] [blame] | 6703 | if (IS_GEN2(dev)) { |
| 6704 | dev->mode_config.max_width = 2048; |
| 6705 | dev->mode_config.max_height = 2048; |
| 6706 | } else if (IS_GEN3(dev)) { |
Keith Packard | 5e4d6fa | 2009-07-12 23:53:17 -0700 | [diff] [blame] | 6707 | dev->mode_config.max_width = 4096; |
| 6708 | dev->mode_config.max_height = 4096; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6709 | } else { |
Chris Wilson | a6c45cf | 2010-09-17 00:32:17 +0100 | [diff] [blame] | 6710 | dev->mode_config.max_width = 8192; |
| 6711 | dev->mode_config.max_height = 8192; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6712 | } |
Chris Wilson | 35c3047 | 2010-12-22 14:07:12 +0000 | [diff] [blame] | 6713 | dev->mode_config.fb_base = dev->agp->base; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6714 | |
Zhao Yakui | 28c9773 | 2009-10-09 11:39:41 +0800 | [diff] [blame] | 6715 | DRM_DEBUG_KMS("%d display pipe%s available.\n", |
Dave Airlie | a3524f1 | 2010-06-06 18:59:41 +1000 | [diff] [blame] | 6716 | dev_priv->num_pipe, dev_priv->num_pipe > 1 ? "s" : ""); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6717 | |
Dave Airlie | a3524f1 | 2010-06-06 18:59:41 +1000 | [diff] [blame] | 6718 | for (i = 0; i < dev_priv->num_pipe; i++) { |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6719 | intel_crtc_init(dev, i); |
Jesse Barnes | 00c2064b | 2012-01-13 15:48:39 -0800 | [diff] [blame] | 6720 | ret = intel_plane_init(dev, i); |
| 6721 | if (ret) |
| 6722 | DRM_DEBUG_KMS("plane %d init failed: %d\n", i, ret); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6723 | } |
| 6724 | |
Jesse Barnes | ee7b9f9 | 2012-04-20 17:11:53 +0100 | [diff] [blame^] | 6725 | intel_pch_pll_init(dev); |
| 6726 | |
Jesse Barnes | 9cce37f | 2010-08-13 15:11:26 -0700 | [diff] [blame] | 6727 | /* Just disable it once at startup */ |
| 6728 | i915_disable_vga(dev); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6729 | intel_setup_outputs(dev); |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 6730 | |
Daniel Vetter | f817586 | 2012-04-10 15:50:11 +0200 | [diff] [blame] | 6731 | intel_modeset_init_hw(dev); |
Jesse Barnes | 3b8d8d9 | 2010-12-17 14:19:02 -0800 | [diff] [blame] | 6732 | |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 6733 | INIT_WORK(&dev_priv->idle_work, intel_idle_update); |
| 6734 | setup_timer(&dev_priv->idle_timer, intel_gpu_idle_timer, |
| 6735 | (unsigned long)dev); |
Chris Wilson | 2c7111d | 2011-03-29 10:40:27 +0100 | [diff] [blame] | 6736 | } |
| 6737 | |
| 6738 | void intel_modeset_gem_init(struct drm_device *dev) |
| 6739 | { |
| 6740 | if (IS_IRONLAKE_M(dev)) |
| 6741 | ironlake_enable_rc6(dev); |
Daniel Vetter | 02e792f | 2009-09-15 22:57:34 +0200 | [diff] [blame] | 6742 | |
| 6743 | intel_setup_overlay(dev); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6744 | } |
| 6745 | |
| 6746 | void intel_modeset_cleanup(struct drm_device *dev) |
| 6747 | { |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 6748 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 6749 | struct drm_crtc *crtc; |
| 6750 | struct intel_crtc *intel_crtc; |
| 6751 | |
Keith Packard | f87ea76 | 2010-10-03 19:36:26 -0700 | [diff] [blame] | 6752 | drm_kms_helper_poll_fini(dev); |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 6753 | mutex_lock(&dev->struct_mutex); |
| 6754 | |
Jesse Barnes | 723bfd7 | 2010-10-07 16:01:13 -0700 | [diff] [blame] | 6755 | intel_unregister_dsm_handler(); |
| 6756 | |
| 6757 | |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 6758 | list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) { |
| 6759 | /* Skip inactive CRTCs */ |
| 6760 | if (!crtc->fb) |
| 6761 | continue; |
| 6762 | |
| 6763 | intel_crtc = to_intel_crtc(crtc); |
Daniel Vetter | 3dec009 | 2010-08-20 21:40:52 +0200 | [diff] [blame] | 6764 | intel_increase_pllclock(crtc); |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 6765 | } |
| 6766 | |
Chris Wilson | 973d04f | 2011-07-08 12:22:37 +0100 | [diff] [blame] | 6767 | intel_disable_fbc(dev); |
Jesse Barnes | e70236a | 2009-09-21 10:42:27 -0700 | [diff] [blame] | 6768 | |
Jesse Barnes | f97108d | 2010-01-29 11:27:07 -0800 | [diff] [blame] | 6769 | if (IS_IRONLAKE_M(dev)) |
| 6770 | ironlake_disable_drps(dev); |
Jesse Barnes | b6834bd | 2012-04-11 09:23:33 -0700 | [diff] [blame] | 6771 | if ((IS_GEN6(dev) || IS_GEN7(dev)) && !IS_VALLEYVIEW(dev)) |
Jesse Barnes | 3b8d8d9 | 2010-12-17 14:19:02 -0800 | [diff] [blame] | 6772 | gen6_disable_rps(dev); |
Jesse Barnes | f97108d | 2010-01-29 11:27:07 -0800 | [diff] [blame] | 6773 | |
Jesse Barnes | d5bb081 | 2011-01-05 12:01:26 -0800 | [diff] [blame] | 6774 | if (IS_IRONLAKE_M(dev)) |
| 6775 | ironlake_disable_rc6(dev); |
Chris Wilson | 0cdab21 | 2010-12-05 17:27:06 +0000 | [diff] [blame] | 6776 | |
Jesse Barnes | 57f350b | 2012-03-28 13:39:25 -0700 | [diff] [blame] | 6777 | if (IS_VALLEYVIEW(dev)) |
| 6778 | vlv_init_dpio(dev); |
| 6779 | |
Kristian Høgsberg | 69341a5 | 2009-11-11 12:19:17 -0500 | [diff] [blame] | 6780 | mutex_unlock(&dev->struct_mutex); |
| 6781 | |
Daniel Vetter | 6c0d9350 | 2010-08-20 18:26:46 +0200 | [diff] [blame] | 6782 | /* Disable the irq before mode object teardown, for the irq might |
| 6783 | * enqueue unpin/hotplug work. */ |
| 6784 | drm_irq_uninstall(dev); |
| 6785 | cancel_work_sync(&dev_priv->hotplug_work); |
Daniel Vetter | 6fdd4d9 | 2011-09-08 14:00:22 +0200 | [diff] [blame] | 6786 | cancel_work_sync(&dev_priv->rps_work); |
Daniel Vetter | 6c0d9350 | 2010-08-20 18:26:46 +0200 | [diff] [blame] | 6787 | |
Chris Wilson | 1630fe7 | 2011-07-08 12:22:42 +0100 | [diff] [blame] | 6788 | /* flush any delayed tasks or pending work */ |
| 6789 | flush_scheduled_work(); |
| 6790 | |
Daniel Vetter | 3dec009 | 2010-08-20 21:40:52 +0200 | [diff] [blame] | 6791 | /* Shut off idle work before the crtcs get freed. */ |
| 6792 | list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) { |
| 6793 | intel_crtc = to_intel_crtc(crtc); |
| 6794 | del_timer_sync(&intel_crtc->idle_timer); |
| 6795 | } |
| 6796 | del_timer_sync(&dev_priv->idle_timer); |
| 6797 | cancel_work_sync(&dev_priv->idle_work); |
| 6798 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6799 | drm_mode_config_cleanup(dev); |
| 6800 | } |
| 6801 | |
Dave Airlie | 28d5204 | 2009-09-21 14:33:58 +1000 | [diff] [blame] | 6802 | /* |
Zhenyu Wang | f1c79df | 2010-03-30 14:39:29 +0800 | [diff] [blame] | 6803 | * Return which encoder is currently attached for connector. |
| 6804 | */ |
Chris Wilson | df0e924 | 2010-09-09 16:20:55 +0100 | [diff] [blame] | 6805 | struct drm_encoder *intel_best_encoder(struct drm_connector *connector) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6806 | { |
Chris Wilson | df0e924 | 2010-09-09 16:20:55 +0100 | [diff] [blame] | 6807 | return &intel_attached_encoder(connector)->base; |
| 6808 | } |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6809 | |
Chris Wilson | df0e924 | 2010-09-09 16:20:55 +0100 | [diff] [blame] | 6810 | void intel_connector_attach_encoder(struct intel_connector *connector, |
| 6811 | struct intel_encoder *encoder) |
| 6812 | { |
| 6813 | connector->encoder = encoder; |
| 6814 | drm_mode_connector_attach_encoder(&connector->base, |
| 6815 | &encoder->base); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6816 | } |
Dave Airlie | 28d5204 | 2009-09-21 14:33:58 +1000 | [diff] [blame] | 6817 | |
| 6818 | /* |
| 6819 | * set vga decode state - true == enable VGA decode |
| 6820 | */ |
| 6821 | int intel_modeset_vga_set_state(struct drm_device *dev, bool state) |
| 6822 | { |
| 6823 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 6824 | u16 gmch_ctrl; |
| 6825 | |
| 6826 | pci_read_config_word(dev_priv->bridge_dev, INTEL_GMCH_CTRL, &gmch_ctrl); |
| 6827 | if (state) |
| 6828 | gmch_ctrl &= ~INTEL_GMCH_VGA_DISABLE; |
| 6829 | else |
| 6830 | gmch_ctrl |= INTEL_GMCH_VGA_DISABLE; |
| 6831 | pci_write_config_word(dev_priv->bridge_dev, INTEL_GMCH_CTRL, gmch_ctrl); |
| 6832 | return 0; |
| 6833 | } |
Chris Wilson | c4a1d9e | 2010-11-21 13:12:35 +0000 | [diff] [blame] | 6834 | |
| 6835 | #ifdef CONFIG_DEBUG_FS |
| 6836 | #include <linux/seq_file.h> |
| 6837 | |
| 6838 | struct intel_display_error_state { |
| 6839 | struct intel_cursor_error_state { |
| 6840 | u32 control; |
| 6841 | u32 position; |
| 6842 | u32 base; |
| 6843 | u32 size; |
| 6844 | } cursor[2]; |
| 6845 | |
| 6846 | struct intel_pipe_error_state { |
| 6847 | u32 conf; |
| 6848 | u32 source; |
| 6849 | |
| 6850 | u32 htotal; |
| 6851 | u32 hblank; |
| 6852 | u32 hsync; |
| 6853 | u32 vtotal; |
| 6854 | u32 vblank; |
| 6855 | u32 vsync; |
| 6856 | } pipe[2]; |
| 6857 | |
| 6858 | struct intel_plane_error_state { |
| 6859 | u32 control; |
| 6860 | u32 stride; |
| 6861 | u32 size; |
| 6862 | u32 pos; |
| 6863 | u32 addr; |
| 6864 | u32 surface; |
| 6865 | u32 tile_offset; |
| 6866 | } plane[2]; |
| 6867 | }; |
| 6868 | |
| 6869 | struct intel_display_error_state * |
| 6870 | intel_display_capture_error_state(struct drm_device *dev) |
| 6871 | { |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 6872 | drm_i915_private_t *dev_priv = dev->dev_private; |
Chris Wilson | c4a1d9e | 2010-11-21 13:12:35 +0000 | [diff] [blame] | 6873 | struct intel_display_error_state *error; |
| 6874 | int i; |
| 6875 | |
| 6876 | error = kmalloc(sizeof(*error), GFP_ATOMIC); |
| 6877 | if (error == NULL) |
| 6878 | return NULL; |
| 6879 | |
| 6880 | for (i = 0; i < 2; i++) { |
| 6881 | error->cursor[i].control = I915_READ(CURCNTR(i)); |
| 6882 | error->cursor[i].position = I915_READ(CURPOS(i)); |
| 6883 | error->cursor[i].base = I915_READ(CURBASE(i)); |
| 6884 | |
| 6885 | error->plane[i].control = I915_READ(DSPCNTR(i)); |
| 6886 | error->plane[i].stride = I915_READ(DSPSTRIDE(i)); |
| 6887 | error->plane[i].size = I915_READ(DSPSIZE(i)); |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 6888 | error->plane[i].pos = I915_READ(DSPPOS(i)); |
Chris Wilson | c4a1d9e | 2010-11-21 13:12:35 +0000 | [diff] [blame] | 6889 | error->plane[i].addr = I915_READ(DSPADDR(i)); |
| 6890 | if (INTEL_INFO(dev)->gen >= 4) { |
| 6891 | error->plane[i].surface = I915_READ(DSPSURF(i)); |
| 6892 | error->plane[i].tile_offset = I915_READ(DSPTILEOFF(i)); |
| 6893 | } |
| 6894 | |
| 6895 | error->pipe[i].conf = I915_READ(PIPECONF(i)); |
| 6896 | error->pipe[i].source = I915_READ(PIPESRC(i)); |
| 6897 | error->pipe[i].htotal = I915_READ(HTOTAL(i)); |
| 6898 | error->pipe[i].hblank = I915_READ(HBLANK(i)); |
| 6899 | error->pipe[i].hsync = I915_READ(HSYNC(i)); |
| 6900 | error->pipe[i].vtotal = I915_READ(VTOTAL(i)); |
| 6901 | error->pipe[i].vblank = I915_READ(VBLANK(i)); |
| 6902 | error->pipe[i].vsync = I915_READ(VSYNC(i)); |
| 6903 | } |
| 6904 | |
| 6905 | return error; |
| 6906 | } |
| 6907 | |
| 6908 | void |
| 6909 | intel_display_print_error_state(struct seq_file *m, |
| 6910 | struct drm_device *dev, |
| 6911 | struct intel_display_error_state *error) |
| 6912 | { |
| 6913 | int i; |
| 6914 | |
| 6915 | for (i = 0; i < 2; i++) { |
| 6916 | seq_printf(m, "Pipe [%d]:\n", i); |
| 6917 | seq_printf(m, " CONF: %08x\n", error->pipe[i].conf); |
| 6918 | seq_printf(m, " SRC: %08x\n", error->pipe[i].source); |
| 6919 | seq_printf(m, " HTOTAL: %08x\n", error->pipe[i].htotal); |
| 6920 | seq_printf(m, " HBLANK: %08x\n", error->pipe[i].hblank); |
| 6921 | seq_printf(m, " HSYNC: %08x\n", error->pipe[i].hsync); |
| 6922 | seq_printf(m, " VTOTAL: %08x\n", error->pipe[i].vtotal); |
| 6923 | seq_printf(m, " VBLANK: %08x\n", error->pipe[i].vblank); |
| 6924 | seq_printf(m, " VSYNC: %08x\n", error->pipe[i].vsync); |
| 6925 | |
| 6926 | seq_printf(m, "Plane [%d]:\n", i); |
| 6927 | seq_printf(m, " CNTR: %08x\n", error->plane[i].control); |
| 6928 | seq_printf(m, " STRIDE: %08x\n", error->plane[i].stride); |
| 6929 | seq_printf(m, " SIZE: %08x\n", error->plane[i].size); |
| 6930 | seq_printf(m, " POS: %08x\n", error->plane[i].pos); |
| 6931 | seq_printf(m, " ADDR: %08x\n", error->plane[i].addr); |
| 6932 | if (INTEL_INFO(dev)->gen >= 4) { |
| 6933 | seq_printf(m, " SURF: %08x\n", error->plane[i].surface); |
| 6934 | seq_printf(m, " TILEOFF: %08x\n", error->plane[i].tile_offset); |
| 6935 | } |
| 6936 | |
| 6937 | seq_printf(m, "Cursor [%d]:\n", i); |
| 6938 | seq_printf(m, " CNTR: %08x\n", error->cursor[i].control); |
| 6939 | seq_printf(m, " POS: %08x\n", error->cursor[i].position); |
| 6940 | seq_printf(m, " BASE: %08x\n", error->cursor[i].base); |
| 6941 | } |
| 6942 | } |
| 6943 | #endif |