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 | |
Jesse Barnes | c1c7af6 | 2009-09-10 15:28:03 -0700 | [diff] [blame] | 27 | #include <linux/module.h> |
| 28 | #include <linux/input.h> |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 29 | #include <linux/i2c.h> |
Shaohua Li | 7662c8b | 2009-06-26 11:23:55 +0800 | [diff] [blame] | 30 | #include <linux/kernel.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 31 | #include <linux/slab.h> |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 32 | #include "drmP.h" |
| 33 | #include "intel_drv.h" |
| 34 | #include "i915_drm.h" |
| 35 | #include "i915_drv.h" |
Jesse Barnes | e5510fa | 2010-07-01 16:48:37 -0700 | [diff] [blame] | 36 | #include "i915_trace.h" |
Dave Airlie | ab2c067 | 2009-12-04 10:55:24 +1000 | [diff] [blame] | 37 | #include "drm_dp_helper.h" |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 38 | |
| 39 | #include "drm_crtc_helper.h" |
| 40 | |
Zhenyu Wang | 32f9d65 | 2009-07-24 01:00:32 +0800 | [diff] [blame] | 41 | #define HAS_eDP (intel_pipe_has_type(crtc, INTEL_OUTPUT_EDP)) |
| 42 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 43 | bool intel_pipe_has_type (struct drm_crtc *crtc, int type); |
Shaohua Li | 7662c8b | 2009-06-26 11:23:55 +0800 | [diff] [blame] | 44 | static void intel_update_watermarks(struct drm_device *dev); |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 45 | static void intel_increase_pllclock(struct drm_crtc *crtc, bool schedule); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 46 | |
| 47 | typedef struct { |
| 48 | /* given values */ |
| 49 | int n; |
| 50 | int m1, m2; |
| 51 | int p1, p2; |
| 52 | /* derived values */ |
| 53 | int dot; |
| 54 | int vco; |
| 55 | int m; |
| 56 | int p; |
| 57 | } intel_clock_t; |
| 58 | |
| 59 | typedef struct { |
| 60 | int min, max; |
| 61 | } intel_range_t; |
| 62 | |
| 63 | typedef struct { |
| 64 | int dot_limit; |
| 65 | int p2_slow, p2_fast; |
| 66 | } intel_p2_t; |
| 67 | |
| 68 | #define INTEL_P2_NUM 2 |
Ma Ling | d490609 | 2009-03-18 20:13:27 +0800 | [diff] [blame] | 69 | typedef struct intel_limit intel_limit_t; |
| 70 | struct intel_limit { |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 71 | intel_range_t dot, vco, n, m, m1, m2, p, p1; |
| 72 | intel_p2_t p2; |
Ma Ling | d490609 | 2009-03-18 20:13:27 +0800 | [diff] [blame] | 73 | bool (* find_pll)(const intel_limit_t *, struct drm_crtc *, |
| 74 | int, int, intel_clock_t *); |
| 75 | }; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 76 | |
| 77 | #define I8XX_DOT_MIN 25000 |
| 78 | #define I8XX_DOT_MAX 350000 |
| 79 | #define I8XX_VCO_MIN 930000 |
| 80 | #define I8XX_VCO_MAX 1400000 |
| 81 | #define I8XX_N_MIN 3 |
| 82 | #define I8XX_N_MAX 16 |
| 83 | #define I8XX_M_MIN 96 |
| 84 | #define I8XX_M_MAX 140 |
| 85 | #define I8XX_M1_MIN 18 |
| 86 | #define I8XX_M1_MAX 26 |
| 87 | #define I8XX_M2_MIN 6 |
| 88 | #define I8XX_M2_MAX 16 |
| 89 | #define I8XX_P_MIN 4 |
| 90 | #define I8XX_P_MAX 128 |
| 91 | #define I8XX_P1_MIN 2 |
| 92 | #define I8XX_P1_MAX 33 |
| 93 | #define I8XX_P1_LVDS_MIN 1 |
| 94 | #define I8XX_P1_LVDS_MAX 6 |
| 95 | #define I8XX_P2_SLOW 4 |
| 96 | #define I8XX_P2_FAST 2 |
| 97 | #define I8XX_P2_LVDS_SLOW 14 |
ling.ma@intel.com | 0c2e395 | 2009-07-17 11:44:30 +0800 | [diff] [blame] | 98 | #define I8XX_P2_LVDS_FAST 7 |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 99 | #define I8XX_P2_SLOW_LIMIT 165000 |
| 100 | |
| 101 | #define I9XX_DOT_MIN 20000 |
| 102 | #define I9XX_DOT_MAX 400000 |
| 103 | #define I9XX_VCO_MIN 1400000 |
| 104 | #define I9XX_VCO_MAX 2800000 |
Adam Jackson | f2b115e | 2009-12-03 17:14:42 -0500 | [diff] [blame] | 105 | #define PINEVIEW_VCO_MIN 1700000 |
| 106 | #define PINEVIEW_VCO_MAX 3500000 |
Kristian Høgsberg | f3cade5 | 2009-02-13 20:56:50 -0500 | [diff] [blame] | 107 | #define I9XX_N_MIN 1 |
| 108 | #define I9XX_N_MAX 6 |
Adam Jackson | f2b115e | 2009-12-03 17:14:42 -0500 | [diff] [blame] | 109 | /* Pineview's Ncounter is a ring counter */ |
| 110 | #define PINEVIEW_N_MIN 3 |
| 111 | #define PINEVIEW_N_MAX 6 |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 112 | #define I9XX_M_MIN 70 |
| 113 | #define I9XX_M_MAX 120 |
Adam Jackson | f2b115e | 2009-12-03 17:14:42 -0500 | [diff] [blame] | 114 | #define PINEVIEW_M_MIN 2 |
| 115 | #define PINEVIEW_M_MAX 256 |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 116 | #define I9XX_M1_MIN 10 |
Kristian Høgsberg | f3cade5 | 2009-02-13 20:56:50 -0500 | [diff] [blame] | 117 | #define I9XX_M1_MAX 22 |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 118 | #define I9XX_M2_MIN 5 |
| 119 | #define I9XX_M2_MAX 9 |
Adam Jackson | f2b115e | 2009-12-03 17:14:42 -0500 | [diff] [blame] | 120 | /* Pineview M1 is reserved, and must be 0 */ |
| 121 | #define PINEVIEW_M1_MIN 0 |
| 122 | #define PINEVIEW_M1_MAX 0 |
| 123 | #define PINEVIEW_M2_MIN 0 |
| 124 | #define PINEVIEW_M2_MAX 254 |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 125 | #define I9XX_P_SDVO_DAC_MIN 5 |
| 126 | #define I9XX_P_SDVO_DAC_MAX 80 |
| 127 | #define I9XX_P_LVDS_MIN 7 |
| 128 | #define I9XX_P_LVDS_MAX 98 |
Adam Jackson | f2b115e | 2009-12-03 17:14:42 -0500 | [diff] [blame] | 129 | #define PINEVIEW_P_LVDS_MIN 7 |
| 130 | #define PINEVIEW_P_LVDS_MAX 112 |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 131 | #define I9XX_P1_MIN 1 |
| 132 | #define I9XX_P1_MAX 8 |
| 133 | #define I9XX_P2_SDVO_DAC_SLOW 10 |
| 134 | #define I9XX_P2_SDVO_DAC_FAST 5 |
| 135 | #define I9XX_P2_SDVO_DAC_SLOW_LIMIT 200000 |
| 136 | #define I9XX_P2_LVDS_SLOW 14 |
| 137 | #define I9XX_P2_LVDS_FAST 7 |
| 138 | #define I9XX_P2_LVDS_SLOW_LIMIT 112000 |
| 139 | |
Ma Ling | 044c7c4 | 2009-03-18 20:13:23 +0800 | [diff] [blame] | 140 | /*The parameter is for SDVO on G4x platform*/ |
| 141 | #define G4X_DOT_SDVO_MIN 25000 |
| 142 | #define G4X_DOT_SDVO_MAX 270000 |
| 143 | #define G4X_VCO_MIN 1750000 |
| 144 | #define G4X_VCO_MAX 3500000 |
| 145 | #define G4X_N_SDVO_MIN 1 |
| 146 | #define G4X_N_SDVO_MAX 4 |
| 147 | #define G4X_M_SDVO_MIN 104 |
| 148 | #define G4X_M_SDVO_MAX 138 |
| 149 | #define G4X_M1_SDVO_MIN 17 |
| 150 | #define G4X_M1_SDVO_MAX 23 |
| 151 | #define G4X_M2_SDVO_MIN 5 |
| 152 | #define G4X_M2_SDVO_MAX 11 |
| 153 | #define G4X_P_SDVO_MIN 10 |
| 154 | #define G4X_P_SDVO_MAX 30 |
| 155 | #define G4X_P1_SDVO_MIN 1 |
| 156 | #define G4X_P1_SDVO_MAX 3 |
| 157 | #define G4X_P2_SDVO_SLOW 10 |
| 158 | #define G4X_P2_SDVO_FAST 10 |
| 159 | #define G4X_P2_SDVO_LIMIT 270000 |
| 160 | |
| 161 | /*The parameter is for HDMI_DAC on G4x platform*/ |
| 162 | #define G4X_DOT_HDMI_DAC_MIN 22000 |
| 163 | #define G4X_DOT_HDMI_DAC_MAX 400000 |
| 164 | #define G4X_N_HDMI_DAC_MIN 1 |
| 165 | #define G4X_N_HDMI_DAC_MAX 4 |
| 166 | #define G4X_M_HDMI_DAC_MIN 104 |
| 167 | #define G4X_M_HDMI_DAC_MAX 138 |
| 168 | #define G4X_M1_HDMI_DAC_MIN 16 |
| 169 | #define G4X_M1_HDMI_DAC_MAX 23 |
| 170 | #define G4X_M2_HDMI_DAC_MIN 5 |
| 171 | #define G4X_M2_HDMI_DAC_MAX 11 |
| 172 | #define G4X_P_HDMI_DAC_MIN 5 |
| 173 | #define G4X_P_HDMI_DAC_MAX 80 |
| 174 | #define G4X_P1_HDMI_DAC_MIN 1 |
| 175 | #define G4X_P1_HDMI_DAC_MAX 8 |
| 176 | #define G4X_P2_HDMI_DAC_SLOW 10 |
| 177 | #define G4X_P2_HDMI_DAC_FAST 5 |
| 178 | #define G4X_P2_HDMI_DAC_LIMIT 165000 |
| 179 | |
| 180 | /*The parameter is for SINGLE_CHANNEL_LVDS on G4x platform*/ |
| 181 | #define G4X_DOT_SINGLE_CHANNEL_LVDS_MIN 20000 |
| 182 | #define G4X_DOT_SINGLE_CHANNEL_LVDS_MAX 115000 |
| 183 | #define G4X_N_SINGLE_CHANNEL_LVDS_MIN 1 |
| 184 | #define G4X_N_SINGLE_CHANNEL_LVDS_MAX 3 |
| 185 | #define G4X_M_SINGLE_CHANNEL_LVDS_MIN 104 |
| 186 | #define G4X_M_SINGLE_CHANNEL_LVDS_MAX 138 |
| 187 | #define G4X_M1_SINGLE_CHANNEL_LVDS_MIN 17 |
| 188 | #define G4X_M1_SINGLE_CHANNEL_LVDS_MAX 23 |
| 189 | #define G4X_M2_SINGLE_CHANNEL_LVDS_MIN 5 |
| 190 | #define G4X_M2_SINGLE_CHANNEL_LVDS_MAX 11 |
| 191 | #define G4X_P_SINGLE_CHANNEL_LVDS_MIN 28 |
| 192 | #define G4X_P_SINGLE_CHANNEL_LVDS_MAX 112 |
| 193 | #define G4X_P1_SINGLE_CHANNEL_LVDS_MIN 2 |
| 194 | #define G4X_P1_SINGLE_CHANNEL_LVDS_MAX 8 |
| 195 | #define G4X_P2_SINGLE_CHANNEL_LVDS_SLOW 14 |
| 196 | #define G4X_P2_SINGLE_CHANNEL_LVDS_FAST 14 |
| 197 | #define G4X_P2_SINGLE_CHANNEL_LVDS_LIMIT 0 |
| 198 | |
| 199 | /*The parameter is for DUAL_CHANNEL_LVDS on G4x platform*/ |
| 200 | #define G4X_DOT_DUAL_CHANNEL_LVDS_MIN 80000 |
| 201 | #define G4X_DOT_DUAL_CHANNEL_LVDS_MAX 224000 |
| 202 | #define G4X_N_DUAL_CHANNEL_LVDS_MIN 1 |
| 203 | #define G4X_N_DUAL_CHANNEL_LVDS_MAX 3 |
| 204 | #define G4X_M_DUAL_CHANNEL_LVDS_MIN 104 |
| 205 | #define G4X_M_DUAL_CHANNEL_LVDS_MAX 138 |
| 206 | #define G4X_M1_DUAL_CHANNEL_LVDS_MIN 17 |
| 207 | #define G4X_M1_DUAL_CHANNEL_LVDS_MAX 23 |
| 208 | #define G4X_M2_DUAL_CHANNEL_LVDS_MIN 5 |
| 209 | #define G4X_M2_DUAL_CHANNEL_LVDS_MAX 11 |
| 210 | #define G4X_P_DUAL_CHANNEL_LVDS_MIN 14 |
| 211 | #define G4X_P_DUAL_CHANNEL_LVDS_MAX 42 |
| 212 | #define G4X_P1_DUAL_CHANNEL_LVDS_MIN 2 |
| 213 | #define G4X_P1_DUAL_CHANNEL_LVDS_MAX 6 |
| 214 | #define G4X_P2_DUAL_CHANNEL_LVDS_SLOW 7 |
| 215 | #define G4X_P2_DUAL_CHANNEL_LVDS_FAST 7 |
| 216 | #define G4X_P2_DUAL_CHANNEL_LVDS_LIMIT 0 |
| 217 | |
Keith Packard | a4fc5ed | 2009-04-07 16:16:42 -0700 | [diff] [blame] | 218 | /*The parameter is for DISPLAY PORT on G4x platform*/ |
| 219 | #define G4X_DOT_DISPLAY_PORT_MIN 161670 |
| 220 | #define G4X_DOT_DISPLAY_PORT_MAX 227000 |
| 221 | #define G4X_N_DISPLAY_PORT_MIN 1 |
| 222 | #define G4X_N_DISPLAY_PORT_MAX 2 |
| 223 | #define G4X_M_DISPLAY_PORT_MIN 97 |
| 224 | #define G4X_M_DISPLAY_PORT_MAX 108 |
| 225 | #define G4X_M1_DISPLAY_PORT_MIN 0x10 |
| 226 | #define G4X_M1_DISPLAY_PORT_MAX 0x12 |
| 227 | #define G4X_M2_DISPLAY_PORT_MIN 0x05 |
| 228 | #define G4X_M2_DISPLAY_PORT_MAX 0x06 |
| 229 | #define G4X_P_DISPLAY_PORT_MIN 10 |
| 230 | #define G4X_P_DISPLAY_PORT_MAX 20 |
| 231 | #define G4X_P1_DISPLAY_PORT_MIN 1 |
| 232 | #define G4X_P1_DISPLAY_PORT_MAX 2 |
| 233 | #define G4X_P2_DISPLAY_PORT_SLOW 10 |
| 234 | #define G4X_P2_DISPLAY_PORT_FAST 10 |
| 235 | #define G4X_P2_DISPLAY_PORT_LIMIT 0 |
| 236 | |
Eric Anholt | bad720f | 2009-10-22 16:11:14 -0700 | [diff] [blame] | 237 | /* Ironlake / Sandybridge */ |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 238 | /* as we calculate clock using (register_value + 2) for |
| 239 | N/M1/M2, so here the range value for them is (actual_value-2). |
| 240 | */ |
Adam Jackson | f2b115e | 2009-12-03 17:14:42 -0500 | [diff] [blame] | 241 | #define IRONLAKE_DOT_MIN 25000 |
| 242 | #define IRONLAKE_DOT_MAX 350000 |
| 243 | #define IRONLAKE_VCO_MIN 1760000 |
| 244 | #define IRONLAKE_VCO_MAX 3510000 |
Adam Jackson | f2b115e | 2009-12-03 17:14:42 -0500 | [diff] [blame] | 245 | #define IRONLAKE_M1_MIN 12 |
Zhao Yakui | a59e385 | 2010-01-06 22:05:57 +0800 | [diff] [blame] | 246 | #define IRONLAKE_M1_MAX 22 |
Adam Jackson | f2b115e | 2009-12-03 17:14:42 -0500 | [diff] [blame] | 247 | #define IRONLAKE_M2_MIN 5 |
| 248 | #define IRONLAKE_M2_MAX 9 |
Adam Jackson | f2b115e | 2009-12-03 17:14:42 -0500 | [diff] [blame] | 249 | #define IRONLAKE_P2_DOT_LIMIT 225000 /* 225Mhz */ |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 250 | |
Zhenyu Wang | b91ad0e | 2010-02-05 09:14:17 +0800 | [diff] [blame] | 251 | /* We have parameter ranges for different type of outputs. */ |
| 252 | |
| 253 | /* DAC & HDMI Refclk 120Mhz */ |
| 254 | #define IRONLAKE_DAC_N_MIN 1 |
| 255 | #define IRONLAKE_DAC_N_MAX 5 |
| 256 | #define IRONLAKE_DAC_M_MIN 79 |
| 257 | #define IRONLAKE_DAC_M_MAX 127 |
| 258 | #define IRONLAKE_DAC_P_MIN 5 |
| 259 | #define IRONLAKE_DAC_P_MAX 80 |
| 260 | #define IRONLAKE_DAC_P1_MIN 1 |
| 261 | #define IRONLAKE_DAC_P1_MAX 8 |
| 262 | #define IRONLAKE_DAC_P2_SLOW 10 |
| 263 | #define IRONLAKE_DAC_P2_FAST 5 |
| 264 | |
| 265 | /* LVDS single-channel 120Mhz refclk */ |
| 266 | #define IRONLAKE_LVDS_S_N_MIN 1 |
| 267 | #define IRONLAKE_LVDS_S_N_MAX 3 |
| 268 | #define IRONLAKE_LVDS_S_M_MIN 79 |
| 269 | #define IRONLAKE_LVDS_S_M_MAX 118 |
| 270 | #define IRONLAKE_LVDS_S_P_MIN 28 |
| 271 | #define IRONLAKE_LVDS_S_P_MAX 112 |
| 272 | #define IRONLAKE_LVDS_S_P1_MIN 2 |
| 273 | #define IRONLAKE_LVDS_S_P1_MAX 8 |
| 274 | #define IRONLAKE_LVDS_S_P2_SLOW 14 |
| 275 | #define IRONLAKE_LVDS_S_P2_FAST 14 |
| 276 | |
| 277 | /* LVDS dual-channel 120Mhz refclk */ |
| 278 | #define IRONLAKE_LVDS_D_N_MIN 1 |
| 279 | #define IRONLAKE_LVDS_D_N_MAX 3 |
| 280 | #define IRONLAKE_LVDS_D_M_MIN 79 |
| 281 | #define IRONLAKE_LVDS_D_M_MAX 127 |
| 282 | #define IRONLAKE_LVDS_D_P_MIN 14 |
| 283 | #define IRONLAKE_LVDS_D_P_MAX 56 |
| 284 | #define IRONLAKE_LVDS_D_P1_MIN 2 |
| 285 | #define IRONLAKE_LVDS_D_P1_MAX 8 |
| 286 | #define IRONLAKE_LVDS_D_P2_SLOW 7 |
| 287 | #define IRONLAKE_LVDS_D_P2_FAST 7 |
| 288 | |
| 289 | /* LVDS single-channel 100Mhz refclk */ |
| 290 | #define IRONLAKE_LVDS_S_SSC_N_MIN 1 |
| 291 | #define IRONLAKE_LVDS_S_SSC_N_MAX 2 |
| 292 | #define IRONLAKE_LVDS_S_SSC_M_MIN 79 |
| 293 | #define IRONLAKE_LVDS_S_SSC_M_MAX 126 |
| 294 | #define IRONLAKE_LVDS_S_SSC_P_MIN 28 |
| 295 | #define IRONLAKE_LVDS_S_SSC_P_MAX 112 |
| 296 | #define IRONLAKE_LVDS_S_SSC_P1_MIN 2 |
| 297 | #define IRONLAKE_LVDS_S_SSC_P1_MAX 8 |
| 298 | #define IRONLAKE_LVDS_S_SSC_P2_SLOW 14 |
| 299 | #define IRONLAKE_LVDS_S_SSC_P2_FAST 14 |
| 300 | |
| 301 | /* LVDS dual-channel 100Mhz refclk */ |
| 302 | #define IRONLAKE_LVDS_D_SSC_N_MIN 1 |
| 303 | #define IRONLAKE_LVDS_D_SSC_N_MAX 3 |
| 304 | #define IRONLAKE_LVDS_D_SSC_M_MIN 79 |
| 305 | #define IRONLAKE_LVDS_D_SSC_M_MAX 126 |
| 306 | #define IRONLAKE_LVDS_D_SSC_P_MIN 14 |
| 307 | #define IRONLAKE_LVDS_D_SSC_P_MAX 42 |
| 308 | #define IRONLAKE_LVDS_D_SSC_P1_MIN 2 |
| 309 | #define IRONLAKE_LVDS_D_SSC_P1_MAX 6 |
| 310 | #define IRONLAKE_LVDS_D_SSC_P2_SLOW 7 |
| 311 | #define IRONLAKE_LVDS_D_SSC_P2_FAST 7 |
| 312 | |
| 313 | /* DisplayPort */ |
| 314 | #define IRONLAKE_DP_N_MIN 1 |
| 315 | #define IRONLAKE_DP_N_MAX 2 |
| 316 | #define IRONLAKE_DP_M_MIN 81 |
| 317 | #define IRONLAKE_DP_M_MAX 90 |
| 318 | #define IRONLAKE_DP_P_MIN 10 |
| 319 | #define IRONLAKE_DP_P_MAX 20 |
| 320 | #define IRONLAKE_DP_P2_FAST 10 |
| 321 | #define IRONLAKE_DP_P2_SLOW 10 |
| 322 | #define IRONLAKE_DP_P2_LIMIT 0 |
| 323 | #define IRONLAKE_DP_P1_MIN 1 |
| 324 | #define IRONLAKE_DP_P1_MAX 2 |
Zhao Yakui | 4547668 | 2009-12-31 16:06:04 +0800 | [diff] [blame] | 325 | |
Ma Ling | d490609 | 2009-03-18 20:13:27 +0800 | [diff] [blame] | 326 | static bool |
| 327 | intel_find_best_PLL(const intel_limit_t *limit, struct drm_crtc *crtc, |
| 328 | int target, int refclk, intel_clock_t *best_clock); |
| 329 | static bool |
| 330 | intel_g4x_find_best_PLL(const intel_limit_t *limit, struct drm_crtc *crtc, |
| 331 | int target, int refclk, intel_clock_t *best_clock); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 332 | |
Keith Packard | a4fc5ed | 2009-04-07 16:16:42 -0700 | [diff] [blame] | 333 | static bool |
| 334 | intel_find_pll_g4x_dp(const intel_limit_t *, struct drm_crtc *crtc, |
| 335 | int target, int refclk, intel_clock_t *best_clock); |
Zhenyu Wang | 5eb08b6 | 2009-07-24 01:00:31 +0800 | [diff] [blame] | 336 | static bool |
Adam Jackson | f2b115e | 2009-12-03 17:14:42 -0500 | [diff] [blame] | 337 | intel_find_pll_ironlake_dp(const intel_limit_t *, struct drm_crtc *crtc, |
| 338 | int target, int refclk, intel_clock_t *best_clock); |
Keith Packard | a4fc5ed | 2009-04-07 16:16:42 -0700 | [diff] [blame] | 339 | |
Keith Packard | e4b3669 | 2009-06-05 19:22:17 -0700 | [diff] [blame] | 340 | static const intel_limit_t intel_limits_i8xx_dvo = { |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 341 | .dot = { .min = I8XX_DOT_MIN, .max = I8XX_DOT_MAX }, |
| 342 | .vco = { .min = I8XX_VCO_MIN, .max = I8XX_VCO_MAX }, |
| 343 | .n = { .min = I8XX_N_MIN, .max = I8XX_N_MAX }, |
| 344 | .m = { .min = I8XX_M_MIN, .max = I8XX_M_MAX }, |
| 345 | .m1 = { .min = I8XX_M1_MIN, .max = I8XX_M1_MAX }, |
| 346 | .m2 = { .min = I8XX_M2_MIN, .max = I8XX_M2_MAX }, |
| 347 | .p = { .min = I8XX_P_MIN, .max = I8XX_P_MAX }, |
| 348 | .p1 = { .min = I8XX_P1_MIN, .max = I8XX_P1_MAX }, |
| 349 | .p2 = { .dot_limit = I8XX_P2_SLOW_LIMIT, |
| 350 | .p2_slow = I8XX_P2_SLOW, .p2_fast = I8XX_P2_FAST }, |
Ma Ling | d490609 | 2009-03-18 20:13:27 +0800 | [diff] [blame] | 351 | .find_pll = intel_find_best_PLL, |
Keith Packard | e4b3669 | 2009-06-05 19:22:17 -0700 | [diff] [blame] | 352 | }; |
| 353 | |
| 354 | static const intel_limit_t intel_limits_i8xx_lvds = { |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 355 | .dot = { .min = I8XX_DOT_MIN, .max = I8XX_DOT_MAX }, |
| 356 | .vco = { .min = I8XX_VCO_MIN, .max = I8XX_VCO_MAX }, |
| 357 | .n = { .min = I8XX_N_MIN, .max = I8XX_N_MAX }, |
| 358 | .m = { .min = I8XX_M_MIN, .max = I8XX_M_MAX }, |
| 359 | .m1 = { .min = I8XX_M1_MIN, .max = I8XX_M1_MAX }, |
| 360 | .m2 = { .min = I8XX_M2_MIN, .max = I8XX_M2_MAX }, |
| 361 | .p = { .min = I8XX_P_MIN, .max = I8XX_P_MAX }, |
| 362 | .p1 = { .min = I8XX_P1_LVDS_MIN, .max = I8XX_P1_LVDS_MAX }, |
| 363 | .p2 = { .dot_limit = I8XX_P2_SLOW_LIMIT, |
| 364 | .p2_slow = I8XX_P2_LVDS_SLOW, .p2_fast = I8XX_P2_LVDS_FAST }, |
Ma Ling | d490609 | 2009-03-18 20:13:27 +0800 | [diff] [blame] | 365 | .find_pll = intel_find_best_PLL, |
Keith Packard | e4b3669 | 2009-06-05 19:22:17 -0700 | [diff] [blame] | 366 | }; |
| 367 | |
| 368 | static const intel_limit_t intel_limits_i9xx_sdvo = { |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 369 | .dot = { .min = I9XX_DOT_MIN, .max = I9XX_DOT_MAX }, |
| 370 | .vco = { .min = I9XX_VCO_MIN, .max = I9XX_VCO_MAX }, |
| 371 | .n = { .min = I9XX_N_MIN, .max = I9XX_N_MAX }, |
| 372 | .m = { .min = I9XX_M_MIN, .max = I9XX_M_MAX }, |
| 373 | .m1 = { .min = I9XX_M1_MIN, .max = I9XX_M1_MAX }, |
| 374 | .m2 = { .min = I9XX_M2_MIN, .max = I9XX_M2_MAX }, |
| 375 | .p = { .min = I9XX_P_SDVO_DAC_MIN, .max = I9XX_P_SDVO_DAC_MAX }, |
| 376 | .p1 = { .min = I9XX_P1_MIN, .max = I9XX_P1_MAX }, |
| 377 | .p2 = { .dot_limit = I9XX_P2_SDVO_DAC_SLOW_LIMIT, |
| 378 | .p2_slow = I9XX_P2_SDVO_DAC_SLOW, .p2_fast = I9XX_P2_SDVO_DAC_FAST }, |
Ma Ling | d490609 | 2009-03-18 20:13:27 +0800 | [diff] [blame] | 379 | .find_pll = intel_find_best_PLL, |
Keith Packard | e4b3669 | 2009-06-05 19:22:17 -0700 | [diff] [blame] | 380 | }; |
| 381 | |
| 382 | static const intel_limit_t intel_limits_i9xx_lvds = { |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 383 | .dot = { .min = I9XX_DOT_MIN, .max = I9XX_DOT_MAX }, |
| 384 | .vco = { .min = I9XX_VCO_MIN, .max = I9XX_VCO_MAX }, |
| 385 | .n = { .min = I9XX_N_MIN, .max = I9XX_N_MAX }, |
| 386 | .m = { .min = I9XX_M_MIN, .max = I9XX_M_MAX }, |
| 387 | .m1 = { .min = I9XX_M1_MIN, .max = I9XX_M1_MAX }, |
| 388 | .m2 = { .min = I9XX_M2_MIN, .max = I9XX_M2_MAX }, |
| 389 | .p = { .min = I9XX_P_LVDS_MIN, .max = I9XX_P_LVDS_MAX }, |
| 390 | .p1 = { .min = I9XX_P1_MIN, .max = I9XX_P1_MAX }, |
| 391 | /* The single-channel range is 25-112Mhz, and dual-channel |
| 392 | * is 80-224Mhz. Prefer single channel as much as possible. |
| 393 | */ |
| 394 | .p2 = { .dot_limit = I9XX_P2_LVDS_SLOW_LIMIT, |
| 395 | .p2_slow = I9XX_P2_LVDS_SLOW, .p2_fast = I9XX_P2_LVDS_FAST }, |
Ma Ling | d490609 | 2009-03-18 20:13:27 +0800 | [diff] [blame] | 396 | .find_pll = intel_find_best_PLL, |
Keith Packard | e4b3669 | 2009-06-05 19:22:17 -0700 | [diff] [blame] | 397 | }; |
| 398 | |
Ma Ling | 044c7c4 | 2009-03-18 20:13:23 +0800 | [diff] [blame] | 399 | /* below parameter and function is for G4X Chipset Family*/ |
Keith Packard | e4b3669 | 2009-06-05 19:22:17 -0700 | [diff] [blame] | 400 | static const intel_limit_t intel_limits_g4x_sdvo = { |
Ma Ling | 044c7c4 | 2009-03-18 20:13:23 +0800 | [diff] [blame] | 401 | .dot = { .min = G4X_DOT_SDVO_MIN, .max = G4X_DOT_SDVO_MAX }, |
| 402 | .vco = { .min = G4X_VCO_MIN, .max = G4X_VCO_MAX}, |
| 403 | .n = { .min = G4X_N_SDVO_MIN, .max = G4X_N_SDVO_MAX }, |
| 404 | .m = { .min = G4X_M_SDVO_MIN, .max = G4X_M_SDVO_MAX }, |
| 405 | .m1 = { .min = G4X_M1_SDVO_MIN, .max = G4X_M1_SDVO_MAX }, |
| 406 | .m2 = { .min = G4X_M2_SDVO_MIN, .max = G4X_M2_SDVO_MAX }, |
| 407 | .p = { .min = G4X_P_SDVO_MIN, .max = G4X_P_SDVO_MAX }, |
| 408 | .p1 = { .min = G4X_P1_SDVO_MIN, .max = G4X_P1_SDVO_MAX}, |
| 409 | .p2 = { .dot_limit = G4X_P2_SDVO_LIMIT, |
| 410 | .p2_slow = G4X_P2_SDVO_SLOW, |
| 411 | .p2_fast = G4X_P2_SDVO_FAST |
| 412 | }, |
Ma Ling | d490609 | 2009-03-18 20:13:27 +0800 | [diff] [blame] | 413 | .find_pll = intel_g4x_find_best_PLL, |
Keith Packard | e4b3669 | 2009-06-05 19:22:17 -0700 | [diff] [blame] | 414 | }; |
| 415 | |
| 416 | static const intel_limit_t intel_limits_g4x_hdmi = { |
Ma Ling | 044c7c4 | 2009-03-18 20:13:23 +0800 | [diff] [blame] | 417 | .dot = { .min = G4X_DOT_HDMI_DAC_MIN, .max = G4X_DOT_HDMI_DAC_MAX }, |
| 418 | .vco = { .min = G4X_VCO_MIN, .max = G4X_VCO_MAX}, |
| 419 | .n = { .min = G4X_N_HDMI_DAC_MIN, .max = G4X_N_HDMI_DAC_MAX }, |
| 420 | .m = { .min = G4X_M_HDMI_DAC_MIN, .max = G4X_M_HDMI_DAC_MAX }, |
| 421 | .m1 = { .min = G4X_M1_HDMI_DAC_MIN, .max = G4X_M1_HDMI_DAC_MAX }, |
| 422 | .m2 = { .min = G4X_M2_HDMI_DAC_MIN, .max = G4X_M2_HDMI_DAC_MAX }, |
| 423 | .p = { .min = G4X_P_HDMI_DAC_MIN, .max = G4X_P_HDMI_DAC_MAX }, |
| 424 | .p1 = { .min = G4X_P1_HDMI_DAC_MIN, .max = G4X_P1_HDMI_DAC_MAX}, |
| 425 | .p2 = { .dot_limit = G4X_P2_HDMI_DAC_LIMIT, |
| 426 | .p2_slow = G4X_P2_HDMI_DAC_SLOW, |
| 427 | .p2_fast = G4X_P2_HDMI_DAC_FAST |
| 428 | }, |
Ma Ling | d490609 | 2009-03-18 20:13:27 +0800 | [diff] [blame] | 429 | .find_pll = intel_g4x_find_best_PLL, |
Keith Packard | e4b3669 | 2009-06-05 19:22:17 -0700 | [diff] [blame] | 430 | }; |
| 431 | |
| 432 | static const intel_limit_t intel_limits_g4x_single_channel_lvds = { |
Ma Ling | 044c7c4 | 2009-03-18 20:13:23 +0800 | [diff] [blame] | 433 | .dot = { .min = G4X_DOT_SINGLE_CHANNEL_LVDS_MIN, |
| 434 | .max = G4X_DOT_SINGLE_CHANNEL_LVDS_MAX }, |
| 435 | .vco = { .min = G4X_VCO_MIN, |
| 436 | .max = G4X_VCO_MAX }, |
| 437 | .n = { .min = G4X_N_SINGLE_CHANNEL_LVDS_MIN, |
| 438 | .max = G4X_N_SINGLE_CHANNEL_LVDS_MAX }, |
| 439 | .m = { .min = G4X_M_SINGLE_CHANNEL_LVDS_MIN, |
| 440 | .max = G4X_M_SINGLE_CHANNEL_LVDS_MAX }, |
| 441 | .m1 = { .min = G4X_M1_SINGLE_CHANNEL_LVDS_MIN, |
| 442 | .max = G4X_M1_SINGLE_CHANNEL_LVDS_MAX }, |
| 443 | .m2 = { .min = G4X_M2_SINGLE_CHANNEL_LVDS_MIN, |
| 444 | .max = G4X_M2_SINGLE_CHANNEL_LVDS_MAX }, |
| 445 | .p = { .min = G4X_P_SINGLE_CHANNEL_LVDS_MIN, |
| 446 | .max = G4X_P_SINGLE_CHANNEL_LVDS_MAX }, |
| 447 | .p1 = { .min = G4X_P1_SINGLE_CHANNEL_LVDS_MIN, |
| 448 | .max = G4X_P1_SINGLE_CHANNEL_LVDS_MAX }, |
| 449 | .p2 = { .dot_limit = G4X_P2_SINGLE_CHANNEL_LVDS_LIMIT, |
| 450 | .p2_slow = G4X_P2_SINGLE_CHANNEL_LVDS_SLOW, |
| 451 | .p2_fast = G4X_P2_SINGLE_CHANNEL_LVDS_FAST |
| 452 | }, |
Ma Ling | d490609 | 2009-03-18 20:13:27 +0800 | [diff] [blame] | 453 | .find_pll = intel_g4x_find_best_PLL, |
Keith Packard | e4b3669 | 2009-06-05 19:22:17 -0700 | [diff] [blame] | 454 | }; |
| 455 | |
| 456 | static const intel_limit_t intel_limits_g4x_dual_channel_lvds = { |
Ma Ling | 044c7c4 | 2009-03-18 20:13:23 +0800 | [diff] [blame] | 457 | .dot = { .min = G4X_DOT_DUAL_CHANNEL_LVDS_MIN, |
| 458 | .max = G4X_DOT_DUAL_CHANNEL_LVDS_MAX }, |
| 459 | .vco = { .min = G4X_VCO_MIN, |
| 460 | .max = G4X_VCO_MAX }, |
| 461 | .n = { .min = G4X_N_DUAL_CHANNEL_LVDS_MIN, |
| 462 | .max = G4X_N_DUAL_CHANNEL_LVDS_MAX }, |
| 463 | .m = { .min = G4X_M_DUAL_CHANNEL_LVDS_MIN, |
| 464 | .max = G4X_M_DUAL_CHANNEL_LVDS_MAX }, |
| 465 | .m1 = { .min = G4X_M1_DUAL_CHANNEL_LVDS_MIN, |
| 466 | .max = G4X_M1_DUAL_CHANNEL_LVDS_MAX }, |
| 467 | .m2 = { .min = G4X_M2_DUAL_CHANNEL_LVDS_MIN, |
| 468 | .max = G4X_M2_DUAL_CHANNEL_LVDS_MAX }, |
| 469 | .p = { .min = G4X_P_DUAL_CHANNEL_LVDS_MIN, |
| 470 | .max = G4X_P_DUAL_CHANNEL_LVDS_MAX }, |
| 471 | .p1 = { .min = G4X_P1_DUAL_CHANNEL_LVDS_MIN, |
| 472 | .max = G4X_P1_DUAL_CHANNEL_LVDS_MAX }, |
| 473 | .p2 = { .dot_limit = G4X_P2_DUAL_CHANNEL_LVDS_LIMIT, |
| 474 | .p2_slow = G4X_P2_DUAL_CHANNEL_LVDS_SLOW, |
| 475 | .p2_fast = G4X_P2_DUAL_CHANNEL_LVDS_FAST |
| 476 | }, |
Ma Ling | d490609 | 2009-03-18 20:13:27 +0800 | [diff] [blame] | 477 | .find_pll = intel_g4x_find_best_PLL, |
Keith Packard | e4b3669 | 2009-06-05 19:22:17 -0700 | [diff] [blame] | 478 | }; |
| 479 | |
| 480 | static const intel_limit_t intel_limits_g4x_display_port = { |
Keith Packard | a4fc5ed | 2009-04-07 16:16:42 -0700 | [diff] [blame] | 481 | .dot = { .min = G4X_DOT_DISPLAY_PORT_MIN, |
| 482 | .max = G4X_DOT_DISPLAY_PORT_MAX }, |
| 483 | .vco = { .min = G4X_VCO_MIN, |
| 484 | .max = G4X_VCO_MAX}, |
| 485 | .n = { .min = G4X_N_DISPLAY_PORT_MIN, |
| 486 | .max = G4X_N_DISPLAY_PORT_MAX }, |
| 487 | .m = { .min = G4X_M_DISPLAY_PORT_MIN, |
| 488 | .max = G4X_M_DISPLAY_PORT_MAX }, |
| 489 | .m1 = { .min = G4X_M1_DISPLAY_PORT_MIN, |
| 490 | .max = G4X_M1_DISPLAY_PORT_MAX }, |
| 491 | .m2 = { .min = G4X_M2_DISPLAY_PORT_MIN, |
| 492 | .max = G4X_M2_DISPLAY_PORT_MAX }, |
| 493 | .p = { .min = G4X_P_DISPLAY_PORT_MIN, |
| 494 | .max = G4X_P_DISPLAY_PORT_MAX }, |
| 495 | .p1 = { .min = G4X_P1_DISPLAY_PORT_MIN, |
| 496 | .max = G4X_P1_DISPLAY_PORT_MAX}, |
| 497 | .p2 = { .dot_limit = G4X_P2_DISPLAY_PORT_LIMIT, |
| 498 | .p2_slow = G4X_P2_DISPLAY_PORT_SLOW, |
| 499 | .p2_fast = G4X_P2_DISPLAY_PORT_FAST }, |
| 500 | .find_pll = intel_find_pll_g4x_dp, |
Keith Packard | e4b3669 | 2009-06-05 19:22:17 -0700 | [diff] [blame] | 501 | }; |
| 502 | |
Adam Jackson | f2b115e | 2009-12-03 17:14:42 -0500 | [diff] [blame] | 503 | static const intel_limit_t intel_limits_pineview_sdvo = { |
Shaohua Li | 2177832 | 2009-02-23 15:19:16 +0800 | [diff] [blame] | 504 | .dot = { .min = I9XX_DOT_MIN, .max = I9XX_DOT_MAX}, |
Adam Jackson | f2b115e | 2009-12-03 17:14:42 -0500 | [diff] [blame] | 505 | .vco = { .min = PINEVIEW_VCO_MIN, .max = PINEVIEW_VCO_MAX }, |
| 506 | .n = { .min = PINEVIEW_N_MIN, .max = PINEVIEW_N_MAX }, |
| 507 | .m = { .min = PINEVIEW_M_MIN, .max = PINEVIEW_M_MAX }, |
| 508 | .m1 = { .min = PINEVIEW_M1_MIN, .max = PINEVIEW_M1_MAX }, |
| 509 | .m2 = { .min = PINEVIEW_M2_MIN, .max = PINEVIEW_M2_MAX }, |
Shaohua Li | 2177832 | 2009-02-23 15:19:16 +0800 | [diff] [blame] | 510 | .p = { .min = I9XX_P_SDVO_DAC_MIN, .max = I9XX_P_SDVO_DAC_MAX }, |
| 511 | .p1 = { .min = I9XX_P1_MIN, .max = I9XX_P1_MAX }, |
| 512 | .p2 = { .dot_limit = I9XX_P2_SDVO_DAC_SLOW_LIMIT, |
| 513 | .p2_slow = I9XX_P2_SDVO_DAC_SLOW, .p2_fast = I9XX_P2_SDVO_DAC_FAST }, |
Shaohua Li | 6115707 | 2009-04-03 15:24:43 +0800 | [diff] [blame] | 514 | .find_pll = intel_find_best_PLL, |
Keith Packard | e4b3669 | 2009-06-05 19:22:17 -0700 | [diff] [blame] | 515 | }; |
| 516 | |
Adam Jackson | f2b115e | 2009-12-03 17:14:42 -0500 | [diff] [blame] | 517 | static const intel_limit_t intel_limits_pineview_lvds = { |
Shaohua Li | 2177832 | 2009-02-23 15:19:16 +0800 | [diff] [blame] | 518 | .dot = { .min = I9XX_DOT_MIN, .max = I9XX_DOT_MAX }, |
Adam Jackson | f2b115e | 2009-12-03 17:14:42 -0500 | [diff] [blame] | 519 | .vco = { .min = PINEVIEW_VCO_MIN, .max = PINEVIEW_VCO_MAX }, |
| 520 | .n = { .min = PINEVIEW_N_MIN, .max = PINEVIEW_N_MAX }, |
| 521 | .m = { .min = PINEVIEW_M_MIN, .max = PINEVIEW_M_MAX }, |
| 522 | .m1 = { .min = PINEVIEW_M1_MIN, .max = PINEVIEW_M1_MAX }, |
| 523 | .m2 = { .min = PINEVIEW_M2_MIN, .max = PINEVIEW_M2_MAX }, |
| 524 | .p = { .min = PINEVIEW_P_LVDS_MIN, .max = PINEVIEW_P_LVDS_MAX }, |
Shaohua Li | 2177832 | 2009-02-23 15:19:16 +0800 | [diff] [blame] | 525 | .p1 = { .min = I9XX_P1_MIN, .max = I9XX_P1_MAX }, |
Adam Jackson | f2b115e | 2009-12-03 17:14:42 -0500 | [diff] [blame] | 526 | /* Pineview only supports single-channel mode. */ |
Shaohua Li | 2177832 | 2009-02-23 15:19:16 +0800 | [diff] [blame] | 527 | .p2 = { .dot_limit = I9XX_P2_LVDS_SLOW_LIMIT, |
| 528 | .p2_slow = I9XX_P2_LVDS_SLOW, .p2_fast = I9XX_P2_LVDS_SLOW }, |
Shaohua Li | 6115707 | 2009-04-03 15:24:43 +0800 | [diff] [blame] | 529 | .find_pll = intel_find_best_PLL, |
Keith Packard | e4b3669 | 2009-06-05 19:22:17 -0700 | [diff] [blame] | 530 | }; |
| 531 | |
Zhenyu Wang | b91ad0e | 2010-02-05 09:14:17 +0800 | [diff] [blame] | 532 | static const intel_limit_t intel_limits_ironlake_dac = { |
Adam Jackson | f2b115e | 2009-12-03 17:14:42 -0500 | [diff] [blame] | 533 | .dot = { .min = IRONLAKE_DOT_MIN, .max = IRONLAKE_DOT_MAX }, |
| 534 | .vco = { .min = IRONLAKE_VCO_MIN, .max = IRONLAKE_VCO_MAX }, |
Zhenyu Wang | b91ad0e | 2010-02-05 09:14:17 +0800 | [diff] [blame] | 535 | .n = { .min = IRONLAKE_DAC_N_MIN, .max = IRONLAKE_DAC_N_MAX }, |
| 536 | .m = { .min = IRONLAKE_DAC_M_MIN, .max = IRONLAKE_DAC_M_MAX }, |
Adam Jackson | f2b115e | 2009-12-03 17:14:42 -0500 | [diff] [blame] | 537 | .m1 = { .min = IRONLAKE_M1_MIN, .max = IRONLAKE_M1_MAX }, |
| 538 | .m2 = { .min = IRONLAKE_M2_MIN, .max = IRONLAKE_M2_MAX }, |
Zhenyu Wang | b91ad0e | 2010-02-05 09:14:17 +0800 | [diff] [blame] | 539 | .p = { .min = IRONLAKE_DAC_P_MIN, .max = IRONLAKE_DAC_P_MAX }, |
| 540 | .p1 = { .min = IRONLAKE_DAC_P1_MIN, .max = IRONLAKE_DAC_P1_MAX }, |
Adam Jackson | f2b115e | 2009-12-03 17:14:42 -0500 | [diff] [blame] | 541 | .p2 = { .dot_limit = IRONLAKE_P2_DOT_LIMIT, |
Zhenyu Wang | b91ad0e | 2010-02-05 09:14:17 +0800 | [diff] [blame] | 542 | .p2_slow = IRONLAKE_DAC_P2_SLOW, |
| 543 | .p2_fast = IRONLAKE_DAC_P2_FAST }, |
Zhao Yakui | 4547668 | 2009-12-31 16:06:04 +0800 | [diff] [blame] | 544 | .find_pll = intel_g4x_find_best_PLL, |
Keith Packard | e4b3669 | 2009-06-05 19:22:17 -0700 | [diff] [blame] | 545 | }; |
| 546 | |
Zhenyu Wang | b91ad0e | 2010-02-05 09:14:17 +0800 | [diff] [blame] | 547 | static const intel_limit_t intel_limits_ironlake_single_lvds = { |
Adam Jackson | f2b115e | 2009-12-03 17:14:42 -0500 | [diff] [blame] | 548 | .dot = { .min = IRONLAKE_DOT_MIN, .max = IRONLAKE_DOT_MAX }, |
| 549 | .vco = { .min = IRONLAKE_VCO_MIN, .max = IRONLAKE_VCO_MAX }, |
Zhenyu Wang | b91ad0e | 2010-02-05 09:14:17 +0800 | [diff] [blame] | 550 | .n = { .min = IRONLAKE_LVDS_S_N_MIN, .max = IRONLAKE_LVDS_S_N_MAX }, |
| 551 | .m = { .min = IRONLAKE_LVDS_S_M_MIN, .max = IRONLAKE_LVDS_S_M_MAX }, |
Adam Jackson | f2b115e | 2009-12-03 17:14:42 -0500 | [diff] [blame] | 552 | .m1 = { .min = IRONLAKE_M1_MIN, .max = IRONLAKE_M1_MAX }, |
| 553 | .m2 = { .min = IRONLAKE_M2_MIN, .max = IRONLAKE_M2_MAX }, |
Zhenyu Wang | b91ad0e | 2010-02-05 09:14:17 +0800 | [diff] [blame] | 554 | .p = { .min = IRONLAKE_LVDS_S_P_MIN, .max = IRONLAKE_LVDS_S_P_MAX }, |
| 555 | .p1 = { .min = IRONLAKE_LVDS_S_P1_MIN, .max = IRONLAKE_LVDS_S_P1_MAX }, |
Adam Jackson | f2b115e | 2009-12-03 17:14:42 -0500 | [diff] [blame] | 556 | .p2 = { .dot_limit = IRONLAKE_P2_DOT_LIMIT, |
Zhenyu Wang | b91ad0e | 2010-02-05 09:14:17 +0800 | [diff] [blame] | 557 | .p2_slow = IRONLAKE_LVDS_S_P2_SLOW, |
| 558 | .p2_fast = IRONLAKE_LVDS_S_P2_FAST }, |
| 559 | .find_pll = intel_g4x_find_best_PLL, |
| 560 | }; |
| 561 | |
| 562 | static const intel_limit_t intel_limits_ironlake_dual_lvds = { |
| 563 | .dot = { .min = IRONLAKE_DOT_MIN, .max = IRONLAKE_DOT_MAX }, |
| 564 | .vco = { .min = IRONLAKE_VCO_MIN, .max = IRONLAKE_VCO_MAX }, |
| 565 | .n = { .min = IRONLAKE_LVDS_D_N_MIN, .max = IRONLAKE_LVDS_D_N_MAX }, |
| 566 | .m = { .min = IRONLAKE_LVDS_D_M_MIN, .max = IRONLAKE_LVDS_D_M_MAX }, |
| 567 | .m1 = { .min = IRONLAKE_M1_MIN, .max = IRONLAKE_M1_MAX }, |
| 568 | .m2 = { .min = IRONLAKE_M2_MIN, .max = IRONLAKE_M2_MAX }, |
| 569 | .p = { .min = IRONLAKE_LVDS_D_P_MIN, .max = IRONLAKE_LVDS_D_P_MAX }, |
| 570 | .p1 = { .min = IRONLAKE_LVDS_D_P1_MIN, .max = IRONLAKE_LVDS_D_P1_MAX }, |
| 571 | .p2 = { .dot_limit = IRONLAKE_P2_DOT_LIMIT, |
| 572 | .p2_slow = IRONLAKE_LVDS_D_P2_SLOW, |
| 573 | .p2_fast = IRONLAKE_LVDS_D_P2_FAST }, |
| 574 | .find_pll = intel_g4x_find_best_PLL, |
| 575 | }; |
| 576 | |
| 577 | static const intel_limit_t intel_limits_ironlake_single_lvds_100m = { |
| 578 | .dot = { .min = IRONLAKE_DOT_MIN, .max = IRONLAKE_DOT_MAX }, |
| 579 | .vco = { .min = IRONLAKE_VCO_MIN, .max = IRONLAKE_VCO_MAX }, |
| 580 | .n = { .min = IRONLAKE_LVDS_S_SSC_N_MIN, .max = IRONLAKE_LVDS_S_SSC_N_MAX }, |
| 581 | .m = { .min = IRONLAKE_LVDS_S_SSC_M_MIN, .max = IRONLAKE_LVDS_S_SSC_M_MAX }, |
| 582 | .m1 = { .min = IRONLAKE_M1_MIN, .max = IRONLAKE_M1_MAX }, |
| 583 | .m2 = { .min = IRONLAKE_M2_MIN, .max = IRONLAKE_M2_MAX }, |
| 584 | .p = { .min = IRONLAKE_LVDS_S_SSC_P_MIN, .max = IRONLAKE_LVDS_S_SSC_P_MAX }, |
| 585 | .p1 = { .min = IRONLAKE_LVDS_S_SSC_P1_MIN,.max = IRONLAKE_LVDS_S_SSC_P1_MAX }, |
| 586 | .p2 = { .dot_limit = IRONLAKE_P2_DOT_LIMIT, |
| 587 | .p2_slow = IRONLAKE_LVDS_S_SSC_P2_SLOW, |
| 588 | .p2_fast = IRONLAKE_LVDS_S_SSC_P2_FAST }, |
| 589 | .find_pll = intel_g4x_find_best_PLL, |
| 590 | }; |
| 591 | |
| 592 | static const intel_limit_t intel_limits_ironlake_dual_lvds_100m = { |
| 593 | .dot = { .min = IRONLAKE_DOT_MIN, .max = IRONLAKE_DOT_MAX }, |
| 594 | .vco = { .min = IRONLAKE_VCO_MIN, .max = IRONLAKE_VCO_MAX }, |
| 595 | .n = { .min = IRONLAKE_LVDS_D_SSC_N_MIN, .max = IRONLAKE_LVDS_D_SSC_N_MAX }, |
| 596 | .m = { .min = IRONLAKE_LVDS_D_SSC_M_MIN, .max = IRONLAKE_LVDS_D_SSC_M_MAX }, |
| 597 | .m1 = { .min = IRONLAKE_M1_MIN, .max = IRONLAKE_M1_MAX }, |
| 598 | .m2 = { .min = IRONLAKE_M2_MIN, .max = IRONLAKE_M2_MAX }, |
| 599 | .p = { .min = IRONLAKE_LVDS_D_SSC_P_MIN, .max = IRONLAKE_LVDS_D_SSC_P_MAX }, |
| 600 | .p1 = { .min = IRONLAKE_LVDS_D_SSC_P1_MIN,.max = IRONLAKE_LVDS_D_SSC_P1_MAX }, |
| 601 | .p2 = { .dot_limit = IRONLAKE_P2_DOT_LIMIT, |
| 602 | .p2_slow = IRONLAKE_LVDS_D_SSC_P2_SLOW, |
| 603 | .p2_fast = IRONLAKE_LVDS_D_SSC_P2_FAST }, |
Zhao Yakui | 4547668 | 2009-12-31 16:06:04 +0800 | [diff] [blame] | 604 | .find_pll = intel_g4x_find_best_PLL, |
| 605 | }; |
| 606 | |
| 607 | static const intel_limit_t intel_limits_ironlake_display_port = { |
| 608 | .dot = { .min = IRONLAKE_DOT_MIN, |
| 609 | .max = IRONLAKE_DOT_MAX }, |
| 610 | .vco = { .min = IRONLAKE_VCO_MIN, |
| 611 | .max = IRONLAKE_VCO_MAX}, |
Zhenyu Wang | b91ad0e | 2010-02-05 09:14:17 +0800 | [diff] [blame] | 612 | .n = { .min = IRONLAKE_DP_N_MIN, |
| 613 | .max = IRONLAKE_DP_N_MAX }, |
| 614 | .m = { .min = IRONLAKE_DP_M_MIN, |
| 615 | .max = IRONLAKE_DP_M_MAX }, |
Zhao Yakui | 4547668 | 2009-12-31 16:06:04 +0800 | [diff] [blame] | 616 | .m1 = { .min = IRONLAKE_M1_MIN, |
| 617 | .max = IRONLAKE_M1_MAX }, |
| 618 | .m2 = { .min = IRONLAKE_M2_MIN, |
| 619 | .max = IRONLAKE_M2_MAX }, |
Zhenyu Wang | b91ad0e | 2010-02-05 09:14:17 +0800 | [diff] [blame] | 620 | .p = { .min = IRONLAKE_DP_P_MIN, |
| 621 | .max = IRONLAKE_DP_P_MAX }, |
| 622 | .p1 = { .min = IRONLAKE_DP_P1_MIN, |
| 623 | .max = IRONLAKE_DP_P1_MAX}, |
| 624 | .p2 = { .dot_limit = IRONLAKE_DP_P2_LIMIT, |
| 625 | .p2_slow = IRONLAKE_DP_P2_SLOW, |
| 626 | .p2_fast = IRONLAKE_DP_P2_FAST }, |
Zhao Yakui | 4547668 | 2009-12-31 16:06:04 +0800 | [diff] [blame] | 627 | .find_pll = intel_find_pll_ironlake_dp, |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 628 | }; |
| 629 | |
Adam Jackson | f2b115e | 2009-12-03 17:14:42 -0500 | [diff] [blame] | 630 | static const intel_limit_t *intel_ironlake_limit(struct drm_crtc *crtc) |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 631 | { |
Zhenyu Wang | b91ad0e | 2010-02-05 09:14:17 +0800 | [diff] [blame] | 632 | struct drm_device *dev = crtc->dev; |
| 633 | struct drm_i915_private *dev_priv = dev->dev_private; |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 634 | const intel_limit_t *limit; |
Zhenyu Wang | b91ad0e | 2010-02-05 09:14:17 +0800 | [diff] [blame] | 635 | int refclk = 120; |
| 636 | |
| 637 | if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) { |
| 638 | if (dev_priv->lvds_use_ssc && dev_priv->lvds_ssc_freq == 100) |
| 639 | refclk = 100; |
| 640 | |
| 641 | if ((I915_READ(PCH_LVDS) & LVDS_CLKB_POWER_MASK) == |
| 642 | LVDS_CLKB_POWER_UP) { |
| 643 | /* LVDS dual channel */ |
| 644 | if (refclk == 100) |
| 645 | limit = &intel_limits_ironlake_dual_lvds_100m; |
| 646 | else |
| 647 | limit = &intel_limits_ironlake_dual_lvds; |
| 648 | } else { |
| 649 | if (refclk == 100) |
| 650 | limit = &intel_limits_ironlake_single_lvds_100m; |
| 651 | else |
| 652 | limit = &intel_limits_ironlake_single_lvds; |
| 653 | } |
| 654 | } else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT) || |
Zhao Yakui | 4547668 | 2009-12-31 16:06:04 +0800 | [diff] [blame] | 655 | HAS_eDP) |
| 656 | limit = &intel_limits_ironlake_display_port; |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 657 | else |
Zhenyu Wang | b91ad0e | 2010-02-05 09:14:17 +0800 | [diff] [blame] | 658 | limit = &intel_limits_ironlake_dac; |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 659 | |
| 660 | return limit; |
| 661 | } |
| 662 | |
Ma Ling | 044c7c4 | 2009-03-18 20:13:23 +0800 | [diff] [blame] | 663 | static const intel_limit_t *intel_g4x_limit(struct drm_crtc *crtc) |
| 664 | { |
| 665 | struct drm_device *dev = crtc->dev; |
| 666 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 667 | const intel_limit_t *limit; |
| 668 | |
| 669 | if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) { |
| 670 | if ((I915_READ(LVDS) & LVDS_CLKB_POWER_MASK) == |
| 671 | LVDS_CLKB_POWER_UP) |
| 672 | /* LVDS with dual channel */ |
Keith Packard | e4b3669 | 2009-06-05 19:22:17 -0700 | [diff] [blame] | 673 | limit = &intel_limits_g4x_dual_channel_lvds; |
Ma Ling | 044c7c4 | 2009-03-18 20:13:23 +0800 | [diff] [blame] | 674 | else |
| 675 | /* LVDS with dual channel */ |
Keith Packard | e4b3669 | 2009-06-05 19:22:17 -0700 | [diff] [blame] | 676 | limit = &intel_limits_g4x_single_channel_lvds; |
Ma Ling | 044c7c4 | 2009-03-18 20:13:23 +0800 | [diff] [blame] | 677 | } else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_HDMI) || |
| 678 | intel_pipe_has_type(crtc, INTEL_OUTPUT_ANALOG)) { |
Keith Packard | e4b3669 | 2009-06-05 19:22:17 -0700 | [diff] [blame] | 679 | limit = &intel_limits_g4x_hdmi; |
Ma Ling | 044c7c4 | 2009-03-18 20:13:23 +0800 | [diff] [blame] | 680 | } else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_SDVO)) { |
Keith Packard | e4b3669 | 2009-06-05 19:22:17 -0700 | [diff] [blame] | 681 | limit = &intel_limits_g4x_sdvo; |
Keith Packard | a4fc5ed | 2009-04-07 16:16:42 -0700 | [diff] [blame] | 682 | } else if (intel_pipe_has_type (crtc, INTEL_OUTPUT_DISPLAYPORT)) { |
Keith Packard | e4b3669 | 2009-06-05 19:22:17 -0700 | [diff] [blame] | 683 | limit = &intel_limits_g4x_display_port; |
Ma Ling | 044c7c4 | 2009-03-18 20:13:23 +0800 | [diff] [blame] | 684 | } else /* The option is for other outputs */ |
Keith Packard | e4b3669 | 2009-06-05 19:22:17 -0700 | [diff] [blame] | 685 | limit = &intel_limits_i9xx_sdvo; |
Ma Ling | 044c7c4 | 2009-03-18 20:13:23 +0800 | [diff] [blame] | 686 | |
| 687 | return limit; |
| 688 | } |
| 689 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 690 | static const intel_limit_t *intel_limit(struct drm_crtc *crtc) |
| 691 | { |
| 692 | struct drm_device *dev = crtc->dev; |
| 693 | const intel_limit_t *limit; |
| 694 | |
Eric Anholt | bad720f | 2009-10-22 16:11:14 -0700 | [diff] [blame] | 695 | if (HAS_PCH_SPLIT(dev)) |
Adam Jackson | f2b115e | 2009-12-03 17:14:42 -0500 | [diff] [blame] | 696 | limit = intel_ironlake_limit(crtc); |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 697 | else if (IS_G4X(dev)) { |
Ma Ling | 044c7c4 | 2009-03-18 20:13:23 +0800 | [diff] [blame] | 698 | limit = intel_g4x_limit(crtc); |
Adam Jackson | f2b115e | 2009-12-03 17:14:42 -0500 | [diff] [blame] | 699 | } else if (IS_I9XX(dev) && !IS_PINEVIEW(dev)) { |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 700 | if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) |
Keith Packard | e4b3669 | 2009-06-05 19:22:17 -0700 | [diff] [blame] | 701 | limit = &intel_limits_i9xx_lvds; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 702 | else |
Keith Packard | e4b3669 | 2009-06-05 19:22:17 -0700 | [diff] [blame] | 703 | limit = &intel_limits_i9xx_sdvo; |
Adam Jackson | f2b115e | 2009-12-03 17:14:42 -0500 | [diff] [blame] | 704 | } else if (IS_PINEVIEW(dev)) { |
Shaohua Li | 2177832 | 2009-02-23 15:19:16 +0800 | [diff] [blame] | 705 | if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) |
Adam Jackson | f2b115e | 2009-12-03 17:14:42 -0500 | [diff] [blame] | 706 | limit = &intel_limits_pineview_lvds; |
Shaohua Li | 2177832 | 2009-02-23 15:19:16 +0800 | [diff] [blame] | 707 | else |
Adam Jackson | f2b115e | 2009-12-03 17:14:42 -0500 | [diff] [blame] | 708 | limit = &intel_limits_pineview_sdvo; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 709 | } else { |
| 710 | if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) |
Keith Packard | e4b3669 | 2009-06-05 19:22:17 -0700 | [diff] [blame] | 711 | limit = &intel_limits_i8xx_lvds; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 712 | else |
Keith Packard | e4b3669 | 2009-06-05 19:22:17 -0700 | [diff] [blame] | 713 | limit = &intel_limits_i8xx_dvo; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 714 | } |
| 715 | return limit; |
| 716 | } |
| 717 | |
Adam Jackson | f2b115e | 2009-12-03 17:14:42 -0500 | [diff] [blame] | 718 | /* m1 is reserved as 0 in Pineview, n is a ring counter */ |
| 719 | static void pineview_clock(int refclk, intel_clock_t *clock) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 720 | { |
Shaohua Li | 2177832 | 2009-02-23 15:19:16 +0800 | [diff] [blame] | 721 | clock->m = clock->m2 + 2; |
| 722 | clock->p = clock->p1 * clock->p2; |
| 723 | clock->vco = refclk * clock->m / clock->n; |
| 724 | clock->dot = clock->vco / clock->p; |
| 725 | } |
| 726 | |
| 727 | static void intel_clock(struct drm_device *dev, int refclk, intel_clock_t *clock) |
| 728 | { |
Adam Jackson | f2b115e | 2009-12-03 17:14:42 -0500 | [diff] [blame] | 729 | if (IS_PINEVIEW(dev)) { |
| 730 | pineview_clock(refclk, clock); |
Shaohua Li | 2177832 | 2009-02-23 15:19:16 +0800 | [diff] [blame] | 731 | return; |
| 732 | } |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 733 | clock->m = 5 * (clock->m1 + 2) + (clock->m2 + 2); |
| 734 | clock->p = clock->p1 * clock->p2; |
| 735 | clock->vco = refclk * clock->m / (clock->n + 2); |
| 736 | clock->dot = clock->vco / clock->p; |
| 737 | } |
| 738 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 739 | /** |
| 740 | * Returns whether any output on the specified pipe is of the specified type |
| 741 | */ |
| 742 | bool intel_pipe_has_type (struct drm_crtc *crtc, int type) |
| 743 | { |
| 744 | struct drm_device *dev = crtc->dev; |
| 745 | struct drm_mode_config *mode_config = &dev->mode_config; |
Zhenyu Wang | c5e4df3 | 2010-03-30 14:39:27 +0800 | [diff] [blame] | 746 | struct drm_encoder *l_entry; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 747 | |
Zhenyu Wang | c5e4df3 | 2010-03-30 14:39:27 +0800 | [diff] [blame] | 748 | list_for_each_entry(l_entry, &mode_config->encoder_list, head) { |
| 749 | if (l_entry && l_entry->crtc == crtc) { |
| 750 | struct intel_encoder *intel_encoder = enc_to_intel_encoder(l_entry); |
Eric Anholt | 21d40d3 | 2010-03-25 11:11:14 -0700 | [diff] [blame] | 751 | if (intel_encoder->type == type) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 752 | return true; |
| 753 | } |
| 754 | } |
| 755 | return false; |
| 756 | } |
| 757 | |
Jesse Barnes | 7c04d1d | 2009-02-23 15:36:40 -0800 | [diff] [blame] | 758 | #define INTELPllInvalid(s) do { /* DRM_DEBUG(s); */ return false; } while (0) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 759 | /** |
| 760 | * Returns whether the given set of divisors are valid for a given refclk with |
| 761 | * the given connectors. |
| 762 | */ |
| 763 | |
| 764 | static bool intel_PLL_is_valid(struct drm_crtc *crtc, intel_clock_t *clock) |
| 765 | { |
| 766 | const intel_limit_t *limit = intel_limit (crtc); |
Shaohua Li | 2177832 | 2009-02-23 15:19:16 +0800 | [diff] [blame] | 767 | struct drm_device *dev = crtc->dev; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 768 | |
| 769 | if (clock->p1 < limit->p1.min || limit->p1.max < clock->p1) |
| 770 | INTELPllInvalid ("p1 out of range\n"); |
| 771 | if (clock->p < limit->p.min || limit->p.max < clock->p) |
| 772 | INTELPllInvalid ("p out of range\n"); |
| 773 | if (clock->m2 < limit->m2.min || limit->m2.max < clock->m2) |
| 774 | INTELPllInvalid ("m2 out of range\n"); |
| 775 | if (clock->m1 < limit->m1.min || limit->m1.max < clock->m1) |
| 776 | INTELPllInvalid ("m1 out of range\n"); |
Adam Jackson | f2b115e | 2009-12-03 17:14:42 -0500 | [diff] [blame] | 777 | if (clock->m1 <= clock->m2 && !IS_PINEVIEW(dev)) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 778 | INTELPllInvalid ("m1 <= m2\n"); |
| 779 | if (clock->m < limit->m.min || limit->m.max < clock->m) |
| 780 | INTELPllInvalid ("m out of range\n"); |
| 781 | if (clock->n < limit->n.min || limit->n.max < clock->n) |
| 782 | INTELPllInvalid ("n out of range\n"); |
| 783 | if (clock->vco < limit->vco.min || limit->vco.max < clock->vco) |
| 784 | INTELPllInvalid ("vco out of range\n"); |
| 785 | /* XXX: We may need to be checking "Dot clock" depending on the multiplier, |
| 786 | * connector, etc., rather than just a single range. |
| 787 | */ |
| 788 | if (clock->dot < limit->dot.min || limit->dot.max < clock->dot) |
| 789 | INTELPllInvalid ("dot out of range\n"); |
| 790 | |
| 791 | return true; |
| 792 | } |
| 793 | |
Ma Ling | d490609 | 2009-03-18 20:13:27 +0800 | [diff] [blame] | 794 | static bool |
| 795 | intel_find_best_PLL(const intel_limit_t *limit, struct drm_crtc *crtc, |
| 796 | int target, int refclk, intel_clock_t *best_clock) |
| 797 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 798 | { |
| 799 | struct drm_device *dev = crtc->dev; |
| 800 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 801 | intel_clock_t clock; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 802 | int err = target; |
| 803 | |
Bruno Prémont | bc5e571 | 2009-08-08 13:01:17 +0200 | [diff] [blame] | 804 | if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS) && |
Florian Mickler | 832cc28 | 2009-07-13 18:40:32 +0800 | [diff] [blame] | 805 | (I915_READ(LVDS)) != 0) { |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 806 | /* |
| 807 | * For LVDS, if the panel is on, just rely on its current |
| 808 | * settings for dual-channel. We haven't figured out how to |
| 809 | * reliably set up different single/dual channel state, if we |
| 810 | * even can. |
| 811 | */ |
| 812 | if ((I915_READ(LVDS) & LVDS_CLKB_POWER_MASK) == |
| 813 | LVDS_CLKB_POWER_UP) |
| 814 | clock.p2 = limit->p2.p2_fast; |
| 815 | else |
| 816 | clock.p2 = limit->p2.p2_slow; |
| 817 | } else { |
| 818 | if (target < limit->p2.dot_limit) |
| 819 | clock.p2 = limit->p2.p2_slow; |
| 820 | else |
| 821 | clock.p2 = limit->p2.p2_fast; |
| 822 | } |
| 823 | |
| 824 | memset (best_clock, 0, sizeof (*best_clock)); |
| 825 | |
Zhao Yakui | 4215866 | 2009-11-20 11:24:18 +0800 | [diff] [blame] | 826 | for (clock.m1 = limit->m1.min; clock.m1 <= limit->m1.max; |
| 827 | clock.m1++) { |
| 828 | for (clock.m2 = limit->m2.min; |
| 829 | clock.m2 <= limit->m2.max; clock.m2++) { |
Adam Jackson | f2b115e | 2009-12-03 17:14:42 -0500 | [diff] [blame] | 830 | /* m1 is always 0 in Pineview */ |
| 831 | if (clock.m2 >= clock.m1 && !IS_PINEVIEW(dev)) |
Zhao Yakui | 4215866 | 2009-11-20 11:24:18 +0800 | [diff] [blame] | 832 | break; |
| 833 | for (clock.n = limit->n.min; |
| 834 | clock.n <= limit->n.max; clock.n++) { |
| 835 | for (clock.p1 = limit->p1.min; |
| 836 | clock.p1 <= limit->p1.max; clock.p1++) { |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 837 | int this_err; |
| 838 | |
Shaohua Li | 2177832 | 2009-02-23 15:19:16 +0800 | [diff] [blame] | 839 | intel_clock(dev, refclk, &clock); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 840 | |
| 841 | if (!intel_PLL_is_valid(crtc, &clock)) |
| 842 | continue; |
| 843 | |
| 844 | this_err = abs(clock.dot - target); |
| 845 | if (this_err < err) { |
| 846 | *best_clock = clock; |
| 847 | err = this_err; |
| 848 | } |
| 849 | } |
| 850 | } |
| 851 | } |
| 852 | } |
| 853 | |
| 854 | return (err != target); |
| 855 | } |
| 856 | |
Ma Ling | d490609 | 2009-03-18 20:13:27 +0800 | [diff] [blame] | 857 | static bool |
| 858 | intel_g4x_find_best_PLL(const intel_limit_t *limit, struct drm_crtc *crtc, |
| 859 | int target, int refclk, intel_clock_t *best_clock) |
| 860 | { |
| 861 | struct drm_device *dev = crtc->dev; |
| 862 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 863 | intel_clock_t clock; |
| 864 | int max_n; |
| 865 | bool found; |
| 866 | /* approximately equals target * 0.00488 */ |
| 867 | int err_most = (target >> 8) + (target >> 10); |
| 868 | found = false; |
| 869 | |
| 870 | if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) { |
Zhao Yakui | 4547668 | 2009-12-31 16:06:04 +0800 | [diff] [blame] | 871 | int lvds_reg; |
| 872 | |
Eric Anholt | c619eed | 2010-01-28 16:45:52 -0800 | [diff] [blame] | 873 | if (HAS_PCH_SPLIT(dev)) |
Zhao Yakui | 4547668 | 2009-12-31 16:06:04 +0800 | [diff] [blame] | 874 | lvds_reg = PCH_LVDS; |
| 875 | else |
| 876 | lvds_reg = LVDS; |
| 877 | if ((I915_READ(lvds_reg) & LVDS_CLKB_POWER_MASK) == |
Ma Ling | d490609 | 2009-03-18 20:13:27 +0800 | [diff] [blame] | 878 | LVDS_CLKB_POWER_UP) |
| 879 | clock.p2 = limit->p2.p2_fast; |
| 880 | else |
| 881 | clock.p2 = limit->p2.p2_slow; |
| 882 | } else { |
| 883 | if (target < limit->p2.dot_limit) |
| 884 | clock.p2 = limit->p2.p2_slow; |
| 885 | else |
| 886 | clock.p2 = limit->p2.p2_fast; |
| 887 | } |
| 888 | |
| 889 | memset(best_clock, 0, sizeof(*best_clock)); |
| 890 | max_n = limit->n.max; |
Gilles Espinasse | f77f13e | 2010-03-29 15:41:47 +0200 | [diff] [blame] | 891 | /* based on hardware requirement, prefer smaller n to precision */ |
Ma Ling | d490609 | 2009-03-18 20:13:27 +0800 | [diff] [blame] | 892 | for (clock.n = limit->n.min; clock.n <= max_n; clock.n++) { |
Gilles Espinasse | f77f13e | 2010-03-29 15:41:47 +0200 | [diff] [blame] | 893 | /* based on hardware requirement, prefere larger m1,m2 */ |
Ma Ling | d490609 | 2009-03-18 20:13:27 +0800 | [diff] [blame] | 894 | for (clock.m1 = limit->m1.max; |
| 895 | clock.m1 >= limit->m1.min; clock.m1--) { |
| 896 | for (clock.m2 = limit->m2.max; |
| 897 | clock.m2 >= limit->m2.min; clock.m2--) { |
| 898 | for (clock.p1 = limit->p1.max; |
| 899 | clock.p1 >= limit->p1.min; clock.p1--) { |
| 900 | int this_err; |
| 901 | |
Shaohua Li | 2177832 | 2009-02-23 15:19:16 +0800 | [diff] [blame] | 902 | intel_clock(dev, refclk, &clock); |
Ma Ling | d490609 | 2009-03-18 20:13:27 +0800 | [diff] [blame] | 903 | if (!intel_PLL_is_valid(crtc, &clock)) |
| 904 | continue; |
| 905 | this_err = abs(clock.dot - target) ; |
| 906 | if (this_err < err_most) { |
| 907 | *best_clock = clock; |
| 908 | err_most = this_err; |
| 909 | max_n = clock.n; |
| 910 | found = true; |
| 911 | } |
| 912 | } |
| 913 | } |
| 914 | } |
| 915 | } |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 916 | return found; |
| 917 | } |
Ma Ling | d490609 | 2009-03-18 20:13:27 +0800 | [diff] [blame] | 918 | |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 919 | static bool |
Adam Jackson | f2b115e | 2009-12-03 17:14:42 -0500 | [diff] [blame] | 920 | intel_find_pll_ironlake_dp(const intel_limit_t *limit, struct drm_crtc *crtc, |
| 921 | int target, int refclk, intel_clock_t *best_clock) |
Zhenyu Wang | 5eb08b6 | 2009-07-24 01:00:31 +0800 | [diff] [blame] | 922 | { |
| 923 | struct drm_device *dev = crtc->dev; |
| 924 | intel_clock_t clock; |
Zhao Yakui | 4547668 | 2009-12-31 16:06:04 +0800 | [diff] [blame] | 925 | |
| 926 | /* return directly when it is eDP */ |
| 927 | if (HAS_eDP) |
| 928 | return true; |
| 929 | |
Zhenyu Wang | 5eb08b6 | 2009-07-24 01:00:31 +0800 | [diff] [blame] | 930 | if (target < 200000) { |
| 931 | clock.n = 1; |
| 932 | clock.p1 = 2; |
| 933 | clock.p2 = 10; |
| 934 | clock.m1 = 12; |
| 935 | clock.m2 = 9; |
| 936 | } else { |
| 937 | clock.n = 2; |
| 938 | clock.p1 = 1; |
| 939 | clock.p2 = 10; |
| 940 | clock.m1 = 14; |
| 941 | clock.m2 = 8; |
| 942 | } |
| 943 | intel_clock(dev, refclk, &clock); |
| 944 | memcpy(best_clock, &clock, sizeof(intel_clock_t)); |
| 945 | return true; |
| 946 | } |
| 947 | |
Keith Packard | a4fc5ed | 2009-04-07 16:16:42 -0700 | [diff] [blame] | 948 | /* DisplayPort has only two frequencies, 162MHz and 270MHz */ |
| 949 | static bool |
| 950 | intel_find_pll_g4x_dp(const intel_limit_t *limit, struct drm_crtc *crtc, |
| 951 | int target, int refclk, intel_clock_t *best_clock) |
| 952 | { |
| 953 | intel_clock_t clock; |
| 954 | if (target < 200000) { |
Keith Packard | a4fc5ed | 2009-04-07 16:16:42 -0700 | [diff] [blame] | 955 | clock.p1 = 2; |
| 956 | clock.p2 = 10; |
Keith Packard | b3d2549 | 2009-06-24 23:09:15 -0700 | [diff] [blame] | 957 | clock.n = 2; |
| 958 | clock.m1 = 23; |
| 959 | clock.m2 = 8; |
Keith Packard | a4fc5ed | 2009-04-07 16:16:42 -0700 | [diff] [blame] | 960 | } else { |
Keith Packard | a4fc5ed | 2009-04-07 16:16:42 -0700 | [diff] [blame] | 961 | clock.p1 = 1; |
| 962 | clock.p2 = 10; |
Keith Packard | b3d2549 | 2009-06-24 23:09:15 -0700 | [diff] [blame] | 963 | clock.n = 1; |
| 964 | clock.m1 = 14; |
| 965 | clock.m2 = 2; |
Keith Packard | a4fc5ed | 2009-04-07 16:16:42 -0700 | [diff] [blame] | 966 | } |
Keith Packard | b3d2549 | 2009-06-24 23:09:15 -0700 | [diff] [blame] | 967 | clock.m = 5 * (clock.m1 + 2) + (clock.m2 + 2); |
| 968 | clock.p = (clock.p1 * clock.p2); |
| 969 | clock.dot = 96000 * clock.m / (clock.n + 2) / clock.p; |
Jesse Barnes | fe798b97 | 2009-10-20 07:55:28 +0900 | [diff] [blame] | 970 | clock.vco = 0; |
Keith Packard | a4fc5ed | 2009-04-07 16:16:42 -0700 | [diff] [blame] | 971 | memcpy(best_clock, &clock, sizeof(intel_clock_t)); |
| 972 | return true; |
| 973 | } |
| 974 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 975 | void |
| 976 | intel_wait_for_vblank(struct drm_device *dev) |
| 977 | { |
| 978 | /* Wait for 20ms, i.e. one cycle at 50hz. */ |
Shaohua Li | 311089d | 2009-11-26 14:22:41 +0800 | [diff] [blame] | 979 | msleep(20); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 980 | } |
| 981 | |
Jesse Barnes | 8082400 | 2009-09-10 15:28:06 -0700 | [diff] [blame] | 982 | /* Parameters have changed, update FBC info */ |
| 983 | static void i8xx_enable_fbc(struct drm_crtc *crtc, unsigned long interval) |
| 984 | { |
| 985 | struct drm_device *dev = crtc->dev; |
| 986 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 987 | struct drm_framebuffer *fb = crtc->fb; |
| 988 | struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb); |
Daniel Vetter | 23010e4 | 2010-03-08 13:35:02 +0100 | [diff] [blame] | 989 | struct drm_i915_gem_object *obj_priv = to_intel_bo(intel_fb->obj); |
Jesse Barnes | 8082400 | 2009-09-10 15:28:06 -0700 | [diff] [blame] | 990 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 991 | int plane, i; |
| 992 | u32 fbc_ctl, fbc_ctl2; |
| 993 | |
| 994 | dev_priv->cfb_pitch = dev_priv->cfb_size / FBC_LL_SIZE; |
| 995 | |
| 996 | if (fb->pitch < dev_priv->cfb_pitch) |
| 997 | dev_priv->cfb_pitch = fb->pitch; |
| 998 | |
| 999 | /* FBC_CTL wants 64B units */ |
| 1000 | dev_priv->cfb_pitch = (dev_priv->cfb_pitch / 64) - 1; |
| 1001 | dev_priv->cfb_fence = obj_priv->fence_reg; |
| 1002 | dev_priv->cfb_plane = intel_crtc->plane; |
| 1003 | plane = dev_priv->cfb_plane == 0 ? FBC_CTL_PLANEA : FBC_CTL_PLANEB; |
| 1004 | |
| 1005 | /* Clear old tags */ |
| 1006 | for (i = 0; i < (FBC_LL_SIZE / 32) + 1; i++) |
| 1007 | I915_WRITE(FBC_TAG + (i * 4), 0); |
| 1008 | |
| 1009 | /* Set it up... */ |
| 1010 | fbc_ctl2 = FBC_CTL_FENCE_DBL | FBC_CTL_IDLE_IMM | plane; |
| 1011 | if (obj_priv->tiling_mode != I915_TILING_NONE) |
| 1012 | fbc_ctl2 |= FBC_CTL_CPU_FENCE; |
| 1013 | I915_WRITE(FBC_CONTROL2, fbc_ctl2); |
| 1014 | I915_WRITE(FBC_FENCE_OFF, crtc->y); |
| 1015 | |
| 1016 | /* enable it... */ |
| 1017 | fbc_ctl = FBC_CTL_EN | FBC_CTL_PERIODIC; |
Jesse Barnes | ee25df2 | 2010-02-06 10:41:53 -0800 | [diff] [blame] | 1018 | if (IS_I945GM(dev)) |
Priit Laes | 4967790 | 2010-03-02 11:37:00 +0200 | [diff] [blame] | 1019 | fbc_ctl |= FBC_CTL_C3_IDLE; /* 945 needs special SR handling */ |
Jesse Barnes | 8082400 | 2009-09-10 15:28:06 -0700 | [diff] [blame] | 1020 | fbc_ctl |= (dev_priv->cfb_pitch & 0xff) << FBC_CTL_STRIDE_SHIFT; |
| 1021 | fbc_ctl |= (interval & 0x2fff) << FBC_CTL_INTERVAL_SHIFT; |
| 1022 | if (obj_priv->tiling_mode != I915_TILING_NONE) |
| 1023 | fbc_ctl |= dev_priv->cfb_fence; |
| 1024 | I915_WRITE(FBC_CONTROL, fbc_ctl); |
| 1025 | |
Zhao Yakui | 28c9773 | 2009-10-09 11:39:41 +0800 | [diff] [blame] | 1026 | DRM_DEBUG_KMS("enabled FBC, pitch %ld, yoff %d, plane %d, ", |
Jesse Barnes | 8082400 | 2009-09-10 15:28:06 -0700 | [diff] [blame] | 1027 | dev_priv->cfb_pitch, crtc->y, dev_priv->cfb_plane); |
| 1028 | } |
| 1029 | |
| 1030 | void i8xx_disable_fbc(struct drm_device *dev) |
| 1031 | { |
| 1032 | struct drm_i915_private *dev_priv = dev->dev_private; |
Jesse Barnes | 9517a92 | 2010-05-21 09:40:45 -0700 | [diff] [blame] | 1033 | unsigned long timeout = jiffies + msecs_to_jiffies(1); |
Jesse Barnes | 8082400 | 2009-09-10 15:28:06 -0700 | [diff] [blame] | 1034 | u32 fbc_ctl; |
| 1035 | |
Jesse Barnes | c1a1cdc | 2009-09-16 15:05:00 -0700 | [diff] [blame] | 1036 | if (!I915_HAS_FBC(dev)) |
| 1037 | return; |
| 1038 | |
Jesse Barnes | 9517a92 | 2010-05-21 09:40:45 -0700 | [diff] [blame] | 1039 | if (!(I915_READ(FBC_CONTROL) & FBC_CTL_EN)) |
| 1040 | return; /* Already off, just return */ |
| 1041 | |
Jesse Barnes | 8082400 | 2009-09-10 15:28:06 -0700 | [diff] [blame] | 1042 | /* Disable compression */ |
| 1043 | fbc_ctl = I915_READ(FBC_CONTROL); |
| 1044 | fbc_ctl &= ~FBC_CTL_EN; |
| 1045 | I915_WRITE(FBC_CONTROL, fbc_ctl); |
| 1046 | |
| 1047 | /* Wait for compressing bit to clear */ |
Jesse Barnes | 9517a92 | 2010-05-21 09:40:45 -0700 | [diff] [blame] | 1048 | while (I915_READ(FBC_STATUS) & FBC_STAT_COMPRESSING) { |
| 1049 | if (time_after(jiffies, timeout)) { |
| 1050 | DRM_DEBUG_DRIVER("FBC idle timed out\n"); |
| 1051 | break; |
| 1052 | } |
| 1053 | ; /* do nothing */ |
| 1054 | } |
Jesse Barnes | 8082400 | 2009-09-10 15:28:06 -0700 | [diff] [blame] | 1055 | |
| 1056 | intel_wait_for_vblank(dev); |
| 1057 | |
Zhao Yakui | 28c9773 | 2009-10-09 11:39:41 +0800 | [diff] [blame] | 1058 | DRM_DEBUG_KMS("disabled FBC\n"); |
Jesse Barnes | 8082400 | 2009-09-10 15:28:06 -0700 | [diff] [blame] | 1059 | } |
| 1060 | |
Adam Jackson | ee5382a | 2010-04-23 11:17:39 -0400 | [diff] [blame] | 1061 | static bool i8xx_fbc_enabled(struct drm_device *dev) |
Jesse Barnes | 8082400 | 2009-09-10 15:28:06 -0700 | [diff] [blame] | 1062 | { |
Jesse Barnes | 8082400 | 2009-09-10 15:28:06 -0700 | [diff] [blame] | 1063 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 1064 | |
| 1065 | return I915_READ(FBC_CONTROL) & FBC_CTL_EN; |
| 1066 | } |
| 1067 | |
Jesse Barnes | 74dff28 | 2009-09-14 15:39:40 -0700 | [diff] [blame] | 1068 | static void g4x_enable_fbc(struct drm_crtc *crtc, unsigned long interval) |
| 1069 | { |
| 1070 | struct drm_device *dev = crtc->dev; |
| 1071 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 1072 | struct drm_framebuffer *fb = crtc->fb; |
| 1073 | struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb); |
Daniel Vetter | 23010e4 | 2010-03-08 13:35:02 +0100 | [diff] [blame] | 1074 | struct drm_i915_gem_object *obj_priv = to_intel_bo(intel_fb->obj); |
Jesse Barnes | 74dff28 | 2009-09-14 15:39:40 -0700 | [diff] [blame] | 1075 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 1076 | int plane = (intel_crtc->plane == 0 ? DPFC_CTL_PLANEA : |
| 1077 | DPFC_CTL_PLANEB); |
| 1078 | unsigned long stall_watermark = 200; |
| 1079 | u32 dpfc_ctl; |
| 1080 | |
| 1081 | dev_priv->cfb_pitch = (dev_priv->cfb_pitch / 64) - 1; |
| 1082 | dev_priv->cfb_fence = obj_priv->fence_reg; |
| 1083 | dev_priv->cfb_plane = intel_crtc->plane; |
| 1084 | |
| 1085 | dpfc_ctl = plane | DPFC_SR_EN | DPFC_CTL_LIMIT_1X; |
| 1086 | if (obj_priv->tiling_mode != I915_TILING_NONE) { |
| 1087 | dpfc_ctl |= DPFC_CTL_FENCE_EN | dev_priv->cfb_fence; |
| 1088 | I915_WRITE(DPFC_CHICKEN, DPFC_HT_MODIFY); |
| 1089 | } else { |
| 1090 | I915_WRITE(DPFC_CHICKEN, ~DPFC_HT_MODIFY); |
| 1091 | } |
| 1092 | |
| 1093 | I915_WRITE(DPFC_CONTROL, dpfc_ctl); |
| 1094 | I915_WRITE(DPFC_RECOMP_CTL, DPFC_RECOMP_STALL_EN | |
| 1095 | (stall_watermark << DPFC_RECOMP_STALL_WM_SHIFT) | |
| 1096 | (interval << DPFC_RECOMP_TIMER_COUNT_SHIFT)); |
| 1097 | I915_WRITE(DPFC_FENCE_YOFF, crtc->y); |
| 1098 | |
| 1099 | /* enable it... */ |
| 1100 | I915_WRITE(DPFC_CONTROL, I915_READ(DPFC_CONTROL) | DPFC_CTL_EN); |
| 1101 | |
Zhao Yakui | 28c9773 | 2009-10-09 11:39:41 +0800 | [diff] [blame] | 1102 | DRM_DEBUG_KMS("enabled fbc on plane %d\n", intel_crtc->plane); |
Jesse Barnes | 74dff28 | 2009-09-14 15:39:40 -0700 | [diff] [blame] | 1103 | } |
| 1104 | |
| 1105 | void g4x_disable_fbc(struct drm_device *dev) |
| 1106 | { |
| 1107 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 1108 | u32 dpfc_ctl; |
| 1109 | |
| 1110 | /* Disable compression */ |
| 1111 | dpfc_ctl = I915_READ(DPFC_CONTROL); |
| 1112 | dpfc_ctl &= ~DPFC_CTL_EN; |
| 1113 | I915_WRITE(DPFC_CONTROL, dpfc_ctl); |
| 1114 | intel_wait_for_vblank(dev); |
| 1115 | |
Zhao Yakui | 28c9773 | 2009-10-09 11:39:41 +0800 | [diff] [blame] | 1116 | DRM_DEBUG_KMS("disabled FBC\n"); |
Jesse Barnes | 74dff28 | 2009-09-14 15:39:40 -0700 | [diff] [blame] | 1117 | } |
| 1118 | |
Adam Jackson | ee5382a | 2010-04-23 11:17:39 -0400 | [diff] [blame] | 1119 | static bool g4x_fbc_enabled(struct drm_device *dev) |
Jesse Barnes | 74dff28 | 2009-09-14 15:39:40 -0700 | [diff] [blame] | 1120 | { |
Jesse Barnes | 74dff28 | 2009-09-14 15:39:40 -0700 | [diff] [blame] | 1121 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 1122 | |
| 1123 | return I915_READ(DPFC_CONTROL) & DPFC_CTL_EN; |
| 1124 | } |
| 1125 | |
Adam Jackson | ee5382a | 2010-04-23 11:17:39 -0400 | [diff] [blame] | 1126 | bool intel_fbc_enabled(struct drm_device *dev) |
| 1127 | { |
| 1128 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 1129 | |
| 1130 | if (!dev_priv->display.fbc_enabled) |
| 1131 | return false; |
| 1132 | |
| 1133 | return dev_priv->display.fbc_enabled(dev); |
| 1134 | } |
| 1135 | |
| 1136 | void intel_enable_fbc(struct drm_crtc *crtc, unsigned long interval) |
| 1137 | { |
| 1138 | struct drm_i915_private *dev_priv = crtc->dev->dev_private; |
| 1139 | |
| 1140 | if (!dev_priv->display.enable_fbc) |
| 1141 | return; |
| 1142 | |
| 1143 | dev_priv->display.enable_fbc(crtc, interval); |
| 1144 | } |
| 1145 | |
| 1146 | void intel_disable_fbc(struct drm_device *dev) |
| 1147 | { |
| 1148 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 1149 | |
| 1150 | if (!dev_priv->display.disable_fbc) |
| 1151 | return; |
| 1152 | |
| 1153 | dev_priv->display.disable_fbc(dev); |
| 1154 | } |
| 1155 | |
Jesse Barnes | 8082400 | 2009-09-10 15:28:06 -0700 | [diff] [blame] | 1156 | /** |
| 1157 | * intel_update_fbc - enable/disable FBC as needed |
| 1158 | * @crtc: CRTC to point the compressor at |
| 1159 | * @mode: mode in use |
| 1160 | * |
| 1161 | * Set up the framebuffer compression hardware at mode set time. We |
| 1162 | * enable it if possible: |
| 1163 | * - plane A only (on pre-965) |
| 1164 | * - no pixel mulitply/line duplication |
| 1165 | * - no alpha buffer discard |
| 1166 | * - no dual wide |
| 1167 | * - framebuffer <= 2048 in width, 1536 in height |
| 1168 | * |
| 1169 | * We can't assume that any compression will take place (worst case), |
| 1170 | * so the compressed buffer has to be the same size as the uncompressed |
| 1171 | * one. It also must reside (along with the line length buffer) in |
| 1172 | * stolen memory. |
| 1173 | * |
| 1174 | * We need to enable/disable FBC on a global basis. |
| 1175 | */ |
| 1176 | static void intel_update_fbc(struct drm_crtc *crtc, |
| 1177 | struct drm_display_mode *mode) |
| 1178 | { |
| 1179 | struct drm_device *dev = crtc->dev; |
| 1180 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 1181 | struct drm_framebuffer *fb = crtc->fb; |
| 1182 | struct intel_framebuffer *intel_fb; |
| 1183 | struct drm_i915_gem_object *obj_priv; |
| 1184 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 1185 | int plane = intel_crtc->plane; |
| 1186 | |
| 1187 | if (!i915_powersave) |
| 1188 | return; |
| 1189 | |
Adam Jackson | ee5382a | 2010-04-23 11:17:39 -0400 | [diff] [blame] | 1190 | if (!I915_HAS_FBC(dev)) |
Jesse Barnes | e70236a | 2009-09-21 10:42:27 -0700 | [diff] [blame] | 1191 | return; |
| 1192 | |
Jesse Barnes | 8082400 | 2009-09-10 15:28:06 -0700 | [diff] [blame] | 1193 | if (!crtc->fb) |
| 1194 | return; |
| 1195 | |
| 1196 | intel_fb = to_intel_framebuffer(fb); |
Daniel Vetter | 23010e4 | 2010-03-08 13:35:02 +0100 | [diff] [blame] | 1197 | obj_priv = to_intel_bo(intel_fb->obj); |
Jesse Barnes | 8082400 | 2009-09-10 15:28:06 -0700 | [diff] [blame] | 1198 | |
| 1199 | /* |
| 1200 | * If FBC is already on, we just have to verify that we can |
| 1201 | * keep it that way... |
| 1202 | * Need to disable if: |
| 1203 | * - changing FBC params (stride, fence, mode) |
| 1204 | * - new fb is too large to fit in compressed buffer |
| 1205 | * - going to an unsupported config (interlace, pixel multiply, etc.) |
| 1206 | */ |
| 1207 | if (intel_fb->obj->size > dev_priv->cfb_size) { |
Zhao Yakui | 28c9773 | 2009-10-09 11:39:41 +0800 | [diff] [blame] | 1208 | DRM_DEBUG_KMS("framebuffer too large, disabling " |
| 1209 | "compression\n"); |
Jesse Barnes | b5e50c3 | 2010-02-05 12:42:41 -0800 | [diff] [blame] | 1210 | dev_priv->no_fbc_reason = FBC_STOLEN_TOO_SMALL; |
Jesse Barnes | 8082400 | 2009-09-10 15:28:06 -0700 | [diff] [blame] | 1211 | goto out_disable; |
| 1212 | } |
| 1213 | if ((mode->flags & DRM_MODE_FLAG_INTERLACE) || |
| 1214 | (mode->flags & DRM_MODE_FLAG_DBLSCAN)) { |
Zhao Yakui | 28c9773 | 2009-10-09 11:39:41 +0800 | [diff] [blame] | 1215 | DRM_DEBUG_KMS("mode incompatible with compression, " |
| 1216 | "disabling\n"); |
Jesse Barnes | b5e50c3 | 2010-02-05 12:42:41 -0800 | [diff] [blame] | 1217 | dev_priv->no_fbc_reason = FBC_UNSUPPORTED_MODE; |
Jesse Barnes | 8082400 | 2009-09-10 15:28:06 -0700 | [diff] [blame] | 1218 | goto out_disable; |
| 1219 | } |
| 1220 | if ((mode->hdisplay > 2048) || |
| 1221 | (mode->vdisplay > 1536)) { |
Zhao Yakui | 28c9773 | 2009-10-09 11:39:41 +0800 | [diff] [blame] | 1222 | DRM_DEBUG_KMS("mode too large for compression, disabling\n"); |
Jesse Barnes | b5e50c3 | 2010-02-05 12:42:41 -0800 | [diff] [blame] | 1223 | dev_priv->no_fbc_reason = FBC_MODE_TOO_LARGE; |
Jesse Barnes | 8082400 | 2009-09-10 15:28:06 -0700 | [diff] [blame] | 1224 | goto out_disable; |
| 1225 | } |
Jesse Barnes | 74dff28 | 2009-09-14 15:39:40 -0700 | [diff] [blame] | 1226 | if ((IS_I915GM(dev) || IS_I945GM(dev)) && plane != 0) { |
Zhao Yakui | 28c9773 | 2009-10-09 11:39:41 +0800 | [diff] [blame] | 1227 | DRM_DEBUG_KMS("plane not 0, disabling compression\n"); |
Jesse Barnes | b5e50c3 | 2010-02-05 12:42:41 -0800 | [diff] [blame] | 1228 | dev_priv->no_fbc_reason = FBC_BAD_PLANE; |
Jesse Barnes | 8082400 | 2009-09-10 15:28:06 -0700 | [diff] [blame] | 1229 | goto out_disable; |
| 1230 | } |
| 1231 | if (obj_priv->tiling_mode != I915_TILING_X) { |
Zhao Yakui | 28c9773 | 2009-10-09 11:39:41 +0800 | [diff] [blame] | 1232 | DRM_DEBUG_KMS("framebuffer not tiled, disabling compression\n"); |
Jesse Barnes | b5e50c3 | 2010-02-05 12:42:41 -0800 | [diff] [blame] | 1233 | dev_priv->no_fbc_reason = FBC_NOT_TILED; |
Jesse Barnes | 8082400 | 2009-09-10 15:28:06 -0700 | [diff] [blame] | 1234 | goto out_disable; |
| 1235 | } |
| 1236 | |
Adam Jackson | ee5382a | 2010-04-23 11:17:39 -0400 | [diff] [blame] | 1237 | if (intel_fbc_enabled(dev)) { |
Jesse Barnes | 8082400 | 2009-09-10 15:28:06 -0700 | [diff] [blame] | 1238 | /* We can re-enable it in this case, but need to update pitch */ |
Adam Jackson | ee5382a | 2010-04-23 11:17:39 -0400 | [diff] [blame] | 1239 | if ((fb->pitch > dev_priv->cfb_pitch) || |
| 1240 | (obj_priv->fence_reg != dev_priv->cfb_fence) || |
| 1241 | (plane != dev_priv->cfb_plane)) |
| 1242 | intel_disable_fbc(dev); |
Jesse Barnes | 8082400 | 2009-09-10 15:28:06 -0700 | [diff] [blame] | 1243 | } |
| 1244 | |
Adam Jackson | ee5382a | 2010-04-23 11:17:39 -0400 | [diff] [blame] | 1245 | /* Now try to turn it back on if possible */ |
| 1246 | if (!intel_fbc_enabled(dev)) |
| 1247 | intel_enable_fbc(crtc, 500); |
Jesse Barnes | 8082400 | 2009-09-10 15:28:06 -0700 | [diff] [blame] | 1248 | |
| 1249 | return; |
| 1250 | |
| 1251 | out_disable: |
Jesse Barnes | 8082400 | 2009-09-10 15:28:06 -0700 | [diff] [blame] | 1252 | /* Multiple disables should be harmless */ |
Chris Wilson | a939406 | 2010-05-27 13:18:16 +0100 | [diff] [blame] | 1253 | if (intel_fbc_enabled(dev)) { |
| 1254 | DRM_DEBUG_KMS("unsupported config, disabling FBC\n"); |
Adam Jackson | ee5382a | 2010-04-23 11:17:39 -0400 | [diff] [blame] | 1255 | intel_disable_fbc(dev); |
Chris Wilson | a939406 | 2010-05-27 13:18:16 +0100 | [diff] [blame] | 1256 | } |
Jesse Barnes | 8082400 | 2009-09-10 15:28:06 -0700 | [diff] [blame] | 1257 | } |
| 1258 | |
Chris Wilson | 5c3b82e | 2009-02-11 13:25:09 +0000 | [diff] [blame] | 1259 | static int |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 1260 | intel_pin_and_fence_fb_obj(struct drm_device *dev, struct drm_gem_object *obj) |
| 1261 | { |
Daniel Vetter | 23010e4 | 2010-03-08 13:35:02 +0100 | [diff] [blame] | 1262 | struct drm_i915_gem_object *obj_priv = to_intel_bo(obj); |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 1263 | u32 alignment; |
| 1264 | int ret; |
| 1265 | |
| 1266 | switch (obj_priv->tiling_mode) { |
| 1267 | case I915_TILING_NONE: |
| 1268 | alignment = 64 * 1024; |
| 1269 | break; |
| 1270 | case I915_TILING_X: |
| 1271 | /* pin() will align the object as required by fence */ |
| 1272 | alignment = 0; |
| 1273 | break; |
| 1274 | case I915_TILING_Y: |
| 1275 | /* FIXME: Is this true? */ |
| 1276 | DRM_ERROR("Y tiled not allowed for scan out buffers\n"); |
| 1277 | return -EINVAL; |
| 1278 | default: |
| 1279 | BUG(); |
| 1280 | } |
| 1281 | |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 1282 | ret = i915_gem_object_pin(obj, alignment); |
| 1283 | if (ret != 0) |
| 1284 | return ret; |
| 1285 | |
| 1286 | /* Install a fence for tiled scan-out. Pre-i965 always needs a |
| 1287 | * fence, whereas 965+ only requires a fence if using |
| 1288 | * framebuffer compression. For simplicity, we always install |
| 1289 | * a fence as the cost is not that onerous. |
| 1290 | */ |
| 1291 | if (obj_priv->fence_reg == I915_FENCE_REG_NONE && |
| 1292 | obj_priv->tiling_mode != I915_TILING_NONE) { |
| 1293 | ret = i915_gem_object_get_fence_reg(obj); |
| 1294 | if (ret != 0) { |
| 1295 | i915_gem_object_unpin(obj); |
| 1296 | return ret; |
| 1297 | } |
| 1298 | } |
| 1299 | |
| 1300 | return 0; |
| 1301 | } |
| 1302 | |
| 1303 | static int |
Kristian Høgsberg | 3c4fdcf | 2008-12-17 22:14:46 -0500 | [diff] [blame] | 1304 | intel_pipe_set_base(struct drm_crtc *crtc, int x, int y, |
| 1305 | struct drm_framebuffer *old_fb) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1306 | { |
| 1307 | struct drm_device *dev = crtc->dev; |
| 1308 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 1309 | struct drm_i915_master_private *master_priv; |
| 1310 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 1311 | struct intel_framebuffer *intel_fb; |
| 1312 | struct drm_i915_gem_object *obj_priv; |
| 1313 | struct drm_gem_object *obj; |
| 1314 | int pipe = intel_crtc->pipe; |
Jesse Barnes | 8082400 | 2009-09-10 15:28:06 -0700 | [diff] [blame] | 1315 | int plane = intel_crtc->plane; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1316 | unsigned long Start, Offset; |
Jesse Barnes | 8082400 | 2009-09-10 15:28:06 -0700 | [diff] [blame] | 1317 | int dspbase = (plane == 0 ? DSPAADDR : DSPBADDR); |
| 1318 | int dspsurf = (plane == 0 ? DSPASURF : DSPBSURF); |
| 1319 | int dspstride = (plane == 0) ? DSPASTRIDE : DSPBSTRIDE; |
| 1320 | int dsptileoff = (plane == 0 ? DSPATILEOFF : DSPBTILEOFF); |
| 1321 | int dspcntr_reg = (plane == 0) ? DSPACNTR : DSPBCNTR; |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 1322 | u32 dspcntr; |
Chris Wilson | 5c3b82e | 2009-02-11 13:25:09 +0000 | [diff] [blame] | 1323 | int ret; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1324 | |
| 1325 | /* no fb bound */ |
| 1326 | if (!crtc->fb) { |
Zhao Yakui | 28c9773 | 2009-10-09 11:39:41 +0800 | [diff] [blame] | 1327 | DRM_DEBUG_KMS("No FB bound\n"); |
Chris Wilson | 5c3b82e | 2009-02-11 13:25:09 +0000 | [diff] [blame] | 1328 | return 0; |
| 1329 | } |
| 1330 | |
Jesse Barnes | 8082400 | 2009-09-10 15:28:06 -0700 | [diff] [blame] | 1331 | switch (plane) { |
Chris Wilson | 5c3b82e | 2009-02-11 13:25:09 +0000 | [diff] [blame] | 1332 | case 0: |
| 1333 | case 1: |
| 1334 | break; |
| 1335 | default: |
Jesse Barnes | 8082400 | 2009-09-10 15:28:06 -0700 | [diff] [blame] | 1336 | DRM_ERROR("Can't update plane %d in SAREA\n", plane); |
Chris Wilson | 5c3b82e | 2009-02-11 13:25:09 +0000 | [diff] [blame] | 1337 | return -EINVAL; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1338 | } |
| 1339 | |
| 1340 | intel_fb = to_intel_framebuffer(crtc->fb); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1341 | obj = intel_fb->obj; |
Daniel Vetter | 23010e4 | 2010-03-08 13:35:02 +0100 | [diff] [blame] | 1342 | obj_priv = to_intel_bo(obj); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1343 | |
Chris Wilson | 5c3b82e | 2009-02-11 13:25:09 +0000 | [diff] [blame] | 1344 | mutex_lock(&dev->struct_mutex); |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 1345 | ret = intel_pin_and_fence_fb_obj(dev, obj); |
Chris Wilson | 5c3b82e | 2009-02-11 13:25:09 +0000 | [diff] [blame] | 1346 | if (ret != 0) { |
| 1347 | mutex_unlock(&dev->struct_mutex); |
| 1348 | return ret; |
| 1349 | } |
Kristian Høgsberg | 3c4fdcf | 2008-12-17 22:14:46 -0500 | [diff] [blame] | 1350 | |
Zhenyu Wang | b9241ea | 2009-11-25 13:09:39 +0800 | [diff] [blame] | 1351 | ret = i915_gem_object_set_to_display_plane(obj); |
Chris Wilson | 5c3b82e | 2009-02-11 13:25:09 +0000 | [diff] [blame] | 1352 | if (ret != 0) { |
Chris Wilson | 8c4b8c3 | 2009-06-17 22:08:52 +0100 | [diff] [blame] | 1353 | i915_gem_object_unpin(obj); |
Chris Wilson | 5c3b82e | 2009-02-11 13:25:09 +0000 | [diff] [blame] | 1354 | mutex_unlock(&dev->struct_mutex); |
| 1355 | return ret; |
| 1356 | } |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1357 | |
| 1358 | dspcntr = I915_READ(dspcntr_reg); |
Jesse Barnes | 712531b | 2009-01-09 13:56:14 -0800 | [diff] [blame] | 1359 | /* Mask out pixel format bits in case we change it */ |
| 1360 | dspcntr &= ~DISPPLANE_PIXFORMAT_MASK; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1361 | switch (crtc->fb->bits_per_pixel) { |
| 1362 | case 8: |
| 1363 | dspcntr |= DISPPLANE_8BPP; |
| 1364 | break; |
| 1365 | case 16: |
| 1366 | if (crtc->fb->depth == 15) |
| 1367 | dspcntr |= DISPPLANE_15_16BPP; |
| 1368 | else |
| 1369 | dspcntr |= DISPPLANE_16BPP; |
| 1370 | break; |
| 1371 | case 24: |
| 1372 | case 32: |
Kristian Høgsberg | a4f45cf | 2009-10-19 14:35:30 -0400 | [diff] [blame] | 1373 | if (crtc->fb->depth == 30) |
| 1374 | dspcntr |= DISPPLANE_32BPP_30BIT_NO_ALPHA; |
| 1375 | else |
| 1376 | dspcntr |= DISPPLANE_32BPP_NO_ALPHA; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1377 | break; |
| 1378 | default: |
| 1379 | DRM_ERROR("Unknown color depth\n"); |
Chris Wilson | 8c4b8c3 | 2009-06-17 22:08:52 +0100 | [diff] [blame] | 1380 | i915_gem_object_unpin(obj); |
Chris Wilson | 5c3b82e | 2009-02-11 13:25:09 +0000 | [diff] [blame] | 1381 | mutex_unlock(&dev->struct_mutex); |
| 1382 | return -EINVAL; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1383 | } |
Jesse Barnes | f544847 | 2009-04-14 14:17:47 -0700 | [diff] [blame] | 1384 | if (IS_I965G(dev)) { |
| 1385 | if (obj_priv->tiling_mode != I915_TILING_NONE) |
| 1386 | dspcntr |= DISPPLANE_TILED; |
| 1387 | else |
| 1388 | dspcntr &= ~DISPPLANE_TILED; |
| 1389 | } |
| 1390 | |
Eric Anholt | bad720f | 2009-10-22 16:11:14 -0700 | [diff] [blame] | 1391 | if (HAS_PCH_SPLIT(dev)) |
Zhenyu Wang | 553bd14 | 2009-09-02 10:57:52 +0800 | [diff] [blame] | 1392 | /* must disable */ |
| 1393 | dspcntr |= DISPPLANE_TRICKLE_FEED_DISABLE; |
| 1394 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1395 | I915_WRITE(dspcntr_reg, dspcntr); |
| 1396 | |
Chris Wilson | 5c3b82e | 2009-02-11 13:25:09 +0000 | [diff] [blame] | 1397 | Start = obj_priv->gtt_offset; |
| 1398 | Offset = y * crtc->fb->pitch + x * (crtc->fb->bits_per_pixel / 8); |
| 1399 | |
Chris Wilson | a7faf32 | 2010-05-27 13:18:17 +0100 | [diff] [blame] | 1400 | DRM_DEBUG_KMS("Writing base %08lX %08lX %d %d %d\n", |
| 1401 | Start, Offset, x, y, crtc->fb->pitch); |
Chris Wilson | 5c3b82e | 2009-02-11 13:25:09 +0000 | [diff] [blame] | 1402 | I915_WRITE(dspstride, crtc->fb->pitch); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1403 | if (IS_I965G(dev)) { |
| 1404 | I915_WRITE(dspbase, Offset); |
| 1405 | I915_READ(dspbase); |
| 1406 | I915_WRITE(dspsurf, Start); |
| 1407 | I915_READ(dspsurf); |
Jesse Barnes | f544847 | 2009-04-14 14:17:47 -0700 | [diff] [blame] | 1408 | I915_WRITE(dsptileoff, (y << 16) | x); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1409 | } else { |
| 1410 | I915_WRITE(dspbase, Start + Offset); |
| 1411 | I915_READ(dspbase); |
| 1412 | } |
| 1413 | |
Jesse Barnes | 74dff28 | 2009-09-14 15:39:40 -0700 | [diff] [blame] | 1414 | if ((IS_I965G(dev) || plane == 0)) |
Jesse Barnes | edb8195 | 2009-09-17 17:06:47 -0700 | [diff] [blame] | 1415 | intel_update_fbc(crtc, &crtc->mode); |
| 1416 | |
Kristian Høgsberg | 3c4fdcf | 2008-12-17 22:14:46 -0500 | [diff] [blame] | 1417 | intel_wait_for_vblank(dev); |
| 1418 | |
| 1419 | if (old_fb) { |
| 1420 | intel_fb = to_intel_framebuffer(old_fb); |
Daniel Vetter | 23010e4 | 2010-03-08 13:35:02 +0100 | [diff] [blame] | 1421 | obj_priv = to_intel_bo(intel_fb->obj); |
Kristian Høgsberg | 3c4fdcf | 2008-12-17 22:14:46 -0500 | [diff] [blame] | 1422 | i915_gem_object_unpin(intel_fb->obj); |
| 1423 | } |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 1424 | intel_increase_pllclock(crtc, true); |
| 1425 | |
Chris Wilson | 5c3b82e | 2009-02-11 13:25:09 +0000 | [diff] [blame] | 1426 | mutex_unlock(&dev->struct_mutex); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1427 | |
| 1428 | if (!dev->primary->master) |
Chris Wilson | 5c3b82e | 2009-02-11 13:25:09 +0000 | [diff] [blame] | 1429 | return 0; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1430 | |
| 1431 | master_priv = dev->primary->master->driver_priv; |
| 1432 | if (!master_priv->sarea_priv) |
Chris Wilson | 5c3b82e | 2009-02-11 13:25:09 +0000 | [diff] [blame] | 1433 | return 0; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1434 | |
Chris Wilson | 5c3b82e | 2009-02-11 13:25:09 +0000 | [diff] [blame] | 1435 | if (pipe) { |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1436 | master_priv->sarea_priv->pipeB_x = x; |
| 1437 | master_priv->sarea_priv->pipeB_y = y; |
Chris Wilson | 5c3b82e | 2009-02-11 13:25:09 +0000 | [diff] [blame] | 1438 | } else { |
| 1439 | master_priv->sarea_priv->pipeA_x = x; |
| 1440 | master_priv->sarea_priv->pipeA_y = y; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1441 | } |
Chris Wilson | 5c3b82e | 2009-02-11 13:25:09 +0000 | [diff] [blame] | 1442 | |
| 1443 | return 0; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1444 | } |
| 1445 | |
Zhenyu Wang | 24f119c | 2009-07-24 01:00:28 +0800 | [diff] [blame] | 1446 | /* Disable the VGA plane that we never use */ |
| 1447 | static void i915_disable_vga (struct drm_device *dev) |
| 1448 | { |
| 1449 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 1450 | u8 sr1; |
| 1451 | u32 vga_reg; |
| 1452 | |
Eric Anholt | bad720f | 2009-10-22 16:11:14 -0700 | [diff] [blame] | 1453 | if (HAS_PCH_SPLIT(dev)) |
Zhenyu Wang | 24f119c | 2009-07-24 01:00:28 +0800 | [diff] [blame] | 1454 | vga_reg = CPU_VGACNTRL; |
| 1455 | else |
| 1456 | vga_reg = VGACNTRL; |
| 1457 | |
| 1458 | if (I915_READ(vga_reg) & VGA_DISP_DISABLE) |
| 1459 | return; |
| 1460 | |
| 1461 | I915_WRITE8(VGA_SR_INDEX, 1); |
| 1462 | sr1 = I915_READ8(VGA_SR_DATA); |
| 1463 | I915_WRITE8(VGA_SR_DATA, sr1 | (1 << 5)); |
| 1464 | udelay(100); |
| 1465 | |
| 1466 | I915_WRITE(vga_reg, VGA_DISP_DISABLE); |
| 1467 | } |
| 1468 | |
Adam Jackson | f2b115e | 2009-12-03 17:14:42 -0500 | [diff] [blame] | 1469 | static void ironlake_disable_pll_edp (struct drm_crtc *crtc) |
Zhenyu Wang | 32f9d65 | 2009-07-24 01:00:32 +0800 | [diff] [blame] | 1470 | { |
| 1471 | struct drm_device *dev = crtc->dev; |
| 1472 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 1473 | u32 dpa_ctl; |
| 1474 | |
Zhao Yakui | 28c9773 | 2009-10-09 11:39:41 +0800 | [diff] [blame] | 1475 | DRM_DEBUG_KMS("\n"); |
Zhenyu Wang | 32f9d65 | 2009-07-24 01:00:32 +0800 | [diff] [blame] | 1476 | dpa_ctl = I915_READ(DP_A); |
| 1477 | dpa_ctl &= ~DP_PLL_ENABLE; |
| 1478 | I915_WRITE(DP_A, dpa_ctl); |
| 1479 | } |
| 1480 | |
Adam Jackson | f2b115e | 2009-12-03 17:14:42 -0500 | [diff] [blame] | 1481 | static void ironlake_enable_pll_edp (struct drm_crtc *crtc) |
Zhenyu Wang | 32f9d65 | 2009-07-24 01:00:32 +0800 | [diff] [blame] | 1482 | { |
| 1483 | struct drm_device *dev = crtc->dev; |
| 1484 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 1485 | u32 dpa_ctl; |
| 1486 | |
| 1487 | dpa_ctl = I915_READ(DP_A); |
| 1488 | dpa_ctl |= DP_PLL_ENABLE; |
| 1489 | I915_WRITE(DP_A, dpa_ctl); |
| 1490 | udelay(200); |
| 1491 | } |
| 1492 | |
| 1493 | |
Adam Jackson | f2b115e | 2009-12-03 17:14:42 -0500 | [diff] [blame] | 1494 | static void ironlake_set_pll_edp (struct drm_crtc *crtc, int clock) |
Zhenyu Wang | 32f9d65 | 2009-07-24 01:00:32 +0800 | [diff] [blame] | 1495 | { |
| 1496 | struct drm_device *dev = crtc->dev; |
| 1497 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 1498 | u32 dpa_ctl; |
| 1499 | |
Zhao Yakui | 28c9773 | 2009-10-09 11:39:41 +0800 | [diff] [blame] | 1500 | DRM_DEBUG_KMS("eDP PLL enable for clock %d\n", clock); |
Zhenyu Wang | 32f9d65 | 2009-07-24 01:00:32 +0800 | [diff] [blame] | 1501 | dpa_ctl = I915_READ(DP_A); |
| 1502 | dpa_ctl &= ~DP_PLL_FREQ_MASK; |
| 1503 | |
| 1504 | if (clock < 200000) { |
| 1505 | u32 temp; |
| 1506 | dpa_ctl |= DP_PLL_FREQ_160MHZ; |
| 1507 | /* workaround for 160Mhz: |
| 1508 | 1) program 0x4600c bits 15:0 = 0x8124 |
| 1509 | 2) program 0x46010 bit 0 = 1 |
| 1510 | 3) program 0x46034 bit 24 = 1 |
| 1511 | 4) program 0x64000 bit 14 = 1 |
| 1512 | */ |
| 1513 | temp = I915_READ(0x4600c); |
| 1514 | temp &= 0xffff0000; |
| 1515 | I915_WRITE(0x4600c, temp | 0x8124); |
| 1516 | |
| 1517 | temp = I915_READ(0x46010); |
| 1518 | I915_WRITE(0x46010, temp | 1); |
| 1519 | |
| 1520 | temp = I915_READ(0x46034); |
| 1521 | I915_WRITE(0x46034, temp | (1 << 24)); |
| 1522 | } else { |
| 1523 | dpa_ctl |= DP_PLL_FREQ_270MHZ; |
| 1524 | } |
| 1525 | I915_WRITE(DP_A, dpa_ctl); |
| 1526 | |
| 1527 | udelay(500); |
| 1528 | } |
| 1529 | |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 1530 | /* The FDI link training functions for ILK/Ibexpeak. */ |
| 1531 | static void ironlake_fdi_link_train(struct drm_crtc *crtc) |
| 1532 | { |
| 1533 | struct drm_device *dev = crtc->dev; |
| 1534 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 1535 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 1536 | int pipe = intel_crtc->pipe; |
| 1537 | int fdi_tx_reg = (pipe == 0) ? FDI_TXA_CTL : FDI_TXB_CTL; |
| 1538 | int fdi_rx_reg = (pipe == 0) ? FDI_RXA_CTL : FDI_RXB_CTL; |
| 1539 | int fdi_rx_iir_reg = (pipe == 0) ? FDI_RXA_IIR : FDI_RXB_IIR; |
| 1540 | int fdi_rx_imr_reg = (pipe == 0) ? FDI_RXA_IMR : FDI_RXB_IMR; |
| 1541 | u32 temp, tries = 0; |
| 1542 | |
| 1543 | /* enable CPU FDI TX and PCH FDI RX */ |
| 1544 | temp = I915_READ(fdi_tx_reg); |
| 1545 | temp |= FDI_TX_ENABLE; |
Adam Jackson | 77ffb59 | 2010-04-12 11:38:44 -0400 | [diff] [blame] | 1546 | temp &= ~(7 << 19); |
| 1547 | temp |= (intel_crtc->fdi_lanes - 1) << 19; |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 1548 | temp &= ~FDI_LINK_TRAIN_NONE; |
| 1549 | temp |= FDI_LINK_TRAIN_PATTERN_1; |
| 1550 | I915_WRITE(fdi_tx_reg, temp); |
| 1551 | I915_READ(fdi_tx_reg); |
| 1552 | |
| 1553 | temp = I915_READ(fdi_rx_reg); |
| 1554 | temp &= ~FDI_LINK_TRAIN_NONE; |
| 1555 | temp |= FDI_LINK_TRAIN_PATTERN_1; |
| 1556 | I915_WRITE(fdi_rx_reg, temp | FDI_RX_ENABLE); |
| 1557 | I915_READ(fdi_rx_reg); |
| 1558 | udelay(150); |
| 1559 | |
| 1560 | /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit |
| 1561 | for train result */ |
| 1562 | temp = I915_READ(fdi_rx_imr_reg); |
| 1563 | temp &= ~FDI_RX_SYMBOL_LOCK; |
| 1564 | temp &= ~FDI_RX_BIT_LOCK; |
| 1565 | I915_WRITE(fdi_rx_imr_reg, temp); |
| 1566 | I915_READ(fdi_rx_imr_reg); |
| 1567 | udelay(150); |
| 1568 | |
| 1569 | for (;;) { |
| 1570 | temp = I915_READ(fdi_rx_iir_reg); |
| 1571 | DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp); |
| 1572 | |
| 1573 | if ((temp & FDI_RX_BIT_LOCK)) { |
| 1574 | DRM_DEBUG_KMS("FDI train 1 done.\n"); |
| 1575 | I915_WRITE(fdi_rx_iir_reg, |
| 1576 | temp | FDI_RX_BIT_LOCK); |
| 1577 | break; |
| 1578 | } |
| 1579 | |
| 1580 | tries++; |
| 1581 | |
| 1582 | if (tries > 5) { |
| 1583 | DRM_DEBUG_KMS("FDI train 1 fail!\n"); |
| 1584 | break; |
| 1585 | } |
| 1586 | } |
| 1587 | |
| 1588 | /* Train 2 */ |
| 1589 | temp = I915_READ(fdi_tx_reg); |
| 1590 | temp &= ~FDI_LINK_TRAIN_NONE; |
| 1591 | temp |= FDI_LINK_TRAIN_PATTERN_2; |
| 1592 | I915_WRITE(fdi_tx_reg, temp); |
| 1593 | |
| 1594 | temp = I915_READ(fdi_rx_reg); |
| 1595 | temp &= ~FDI_LINK_TRAIN_NONE; |
| 1596 | temp |= FDI_LINK_TRAIN_PATTERN_2; |
| 1597 | I915_WRITE(fdi_rx_reg, temp); |
| 1598 | udelay(150); |
| 1599 | |
| 1600 | tries = 0; |
| 1601 | |
| 1602 | for (;;) { |
| 1603 | temp = I915_READ(fdi_rx_iir_reg); |
| 1604 | DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp); |
| 1605 | |
| 1606 | if (temp & FDI_RX_SYMBOL_LOCK) { |
| 1607 | I915_WRITE(fdi_rx_iir_reg, |
| 1608 | temp | FDI_RX_SYMBOL_LOCK); |
| 1609 | DRM_DEBUG_KMS("FDI train 2 done.\n"); |
| 1610 | break; |
| 1611 | } |
| 1612 | |
| 1613 | tries++; |
| 1614 | |
| 1615 | if (tries > 5) { |
| 1616 | DRM_DEBUG_KMS("FDI train 2 fail!\n"); |
| 1617 | break; |
| 1618 | } |
| 1619 | } |
| 1620 | |
| 1621 | DRM_DEBUG_KMS("FDI train done\n"); |
| 1622 | } |
| 1623 | |
| 1624 | static int snb_b_fdi_train_param [] = { |
| 1625 | FDI_LINK_TRAIN_400MV_0DB_SNB_B, |
| 1626 | FDI_LINK_TRAIN_400MV_6DB_SNB_B, |
| 1627 | FDI_LINK_TRAIN_600MV_3_5DB_SNB_B, |
| 1628 | FDI_LINK_TRAIN_800MV_0DB_SNB_B, |
| 1629 | }; |
| 1630 | |
| 1631 | /* The FDI link training functions for SNB/Cougarpoint. */ |
| 1632 | static void gen6_fdi_link_train(struct drm_crtc *crtc) |
| 1633 | { |
| 1634 | struct drm_device *dev = crtc->dev; |
| 1635 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 1636 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 1637 | int pipe = intel_crtc->pipe; |
| 1638 | int fdi_tx_reg = (pipe == 0) ? FDI_TXA_CTL : FDI_TXB_CTL; |
| 1639 | int fdi_rx_reg = (pipe == 0) ? FDI_RXA_CTL : FDI_RXB_CTL; |
| 1640 | int fdi_rx_iir_reg = (pipe == 0) ? FDI_RXA_IIR : FDI_RXB_IIR; |
| 1641 | int fdi_rx_imr_reg = (pipe == 0) ? FDI_RXA_IMR : FDI_RXB_IMR; |
| 1642 | u32 temp, i; |
| 1643 | |
| 1644 | /* enable CPU FDI TX and PCH FDI RX */ |
| 1645 | temp = I915_READ(fdi_tx_reg); |
| 1646 | temp |= FDI_TX_ENABLE; |
Adam Jackson | 77ffb59 | 2010-04-12 11:38:44 -0400 | [diff] [blame] | 1647 | temp &= ~(7 << 19); |
| 1648 | temp |= (intel_crtc->fdi_lanes - 1) << 19; |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 1649 | temp &= ~FDI_LINK_TRAIN_NONE; |
| 1650 | temp |= FDI_LINK_TRAIN_PATTERN_1; |
| 1651 | temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK; |
| 1652 | /* SNB-B */ |
| 1653 | temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B; |
| 1654 | I915_WRITE(fdi_tx_reg, temp); |
| 1655 | I915_READ(fdi_tx_reg); |
| 1656 | |
| 1657 | temp = I915_READ(fdi_rx_reg); |
| 1658 | if (HAS_PCH_CPT(dev)) { |
| 1659 | temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT; |
| 1660 | temp |= FDI_LINK_TRAIN_PATTERN_1_CPT; |
| 1661 | } else { |
| 1662 | temp &= ~FDI_LINK_TRAIN_NONE; |
| 1663 | temp |= FDI_LINK_TRAIN_PATTERN_1; |
| 1664 | } |
| 1665 | I915_WRITE(fdi_rx_reg, temp | FDI_RX_ENABLE); |
| 1666 | I915_READ(fdi_rx_reg); |
| 1667 | udelay(150); |
| 1668 | |
| 1669 | /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit |
| 1670 | for train result */ |
| 1671 | temp = I915_READ(fdi_rx_imr_reg); |
| 1672 | temp &= ~FDI_RX_SYMBOL_LOCK; |
| 1673 | temp &= ~FDI_RX_BIT_LOCK; |
| 1674 | I915_WRITE(fdi_rx_imr_reg, temp); |
| 1675 | I915_READ(fdi_rx_imr_reg); |
| 1676 | udelay(150); |
| 1677 | |
| 1678 | for (i = 0; i < 4; i++ ) { |
| 1679 | temp = I915_READ(fdi_tx_reg); |
| 1680 | temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK; |
| 1681 | temp |= snb_b_fdi_train_param[i]; |
| 1682 | I915_WRITE(fdi_tx_reg, temp); |
| 1683 | udelay(500); |
| 1684 | |
| 1685 | temp = I915_READ(fdi_rx_iir_reg); |
| 1686 | DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp); |
| 1687 | |
| 1688 | if (temp & FDI_RX_BIT_LOCK) { |
| 1689 | I915_WRITE(fdi_rx_iir_reg, |
| 1690 | temp | FDI_RX_BIT_LOCK); |
| 1691 | DRM_DEBUG_KMS("FDI train 1 done.\n"); |
| 1692 | break; |
| 1693 | } |
| 1694 | } |
| 1695 | if (i == 4) |
| 1696 | DRM_DEBUG_KMS("FDI train 1 fail!\n"); |
| 1697 | |
| 1698 | /* Train 2 */ |
| 1699 | temp = I915_READ(fdi_tx_reg); |
| 1700 | temp &= ~FDI_LINK_TRAIN_NONE; |
| 1701 | temp |= FDI_LINK_TRAIN_PATTERN_2; |
| 1702 | if (IS_GEN6(dev)) { |
| 1703 | temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK; |
| 1704 | /* SNB-B */ |
| 1705 | temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B; |
| 1706 | } |
| 1707 | I915_WRITE(fdi_tx_reg, temp); |
| 1708 | |
| 1709 | temp = I915_READ(fdi_rx_reg); |
| 1710 | if (HAS_PCH_CPT(dev)) { |
| 1711 | temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT; |
| 1712 | temp |= FDI_LINK_TRAIN_PATTERN_2_CPT; |
| 1713 | } else { |
| 1714 | temp &= ~FDI_LINK_TRAIN_NONE; |
| 1715 | temp |= FDI_LINK_TRAIN_PATTERN_2; |
| 1716 | } |
| 1717 | I915_WRITE(fdi_rx_reg, temp); |
| 1718 | udelay(150); |
| 1719 | |
| 1720 | for (i = 0; i < 4; i++ ) { |
| 1721 | temp = I915_READ(fdi_tx_reg); |
| 1722 | temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK; |
| 1723 | temp |= snb_b_fdi_train_param[i]; |
| 1724 | I915_WRITE(fdi_tx_reg, temp); |
| 1725 | udelay(500); |
| 1726 | |
| 1727 | temp = I915_READ(fdi_rx_iir_reg); |
| 1728 | DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp); |
| 1729 | |
| 1730 | if (temp & FDI_RX_SYMBOL_LOCK) { |
| 1731 | I915_WRITE(fdi_rx_iir_reg, |
| 1732 | temp | FDI_RX_SYMBOL_LOCK); |
| 1733 | DRM_DEBUG_KMS("FDI train 2 done.\n"); |
| 1734 | break; |
| 1735 | } |
| 1736 | } |
| 1737 | if (i == 4) |
| 1738 | DRM_DEBUG_KMS("FDI train 2 fail!\n"); |
| 1739 | |
| 1740 | DRM_DEBUG_KMS("FDI train done.\n"); |
| 1741 | } |
| 1742 | |
Adam Jackson | f2b115e | 2009-12-03 17:14:42 -0500 | [diff] [blame] | 1743 | static void ironlake_crtc_dpms(struct drm_crtc *crtc, int mode) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1744 | { |
| 1745 | struct drm_device *dev = crtc->dev; |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 1746 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 1747 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 1748 | int pipe = intel_crtc->pipe; |
Shaohua Li | 7662c8b | 2009-06-26 11:23:55 +0800 | [diff] [blame] | 1749 | int plane = intel_crtc->plane; |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 1750 | int pch_dpll_reg = (pipe == 0) ? PCH_DPLL_A : PCH_DPLL_B; |
| 1751 | int pipeconf_reg = (pipe == 0) ? PIPEACONF : PIPEBCONF; |
| 1752 | int dspcntr_reg = (plane == 0) ? DSPACNTR : DSPBCNTR; |
| 1753 | int dspbase_reg = (plane == 0) ? DSPAADDR : DSPBADDR; |
| 1754 | int fdi_tx_reg = (pipe == 0) ? FDI_TXA_CTL : FDI_TXB_CTL; |
| 1755 | int fdi_rx_reg = (pipe == 0) ? FDI_RXA_CTL : FDI_RXB_CTL; |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 1756 | int transconf_reg = (pipe == 0) ? TRANSACONF : TRANSBCONF; |
| 1757 | int pf_ctl_reg = (pipe == 0) ? PFA_CTL_1 : PFB_CTL_1; |
Zhenyu Wang | 249c0e6 | 2009-07-24 01:00:29 +0800 | [diff] [blame] | 1758 | int pf_win_size = (pipe == 0) ? PFA_WIN_SZ : PFB_WIN_SZ; |
Zhenyu Wang | 8dd81a3 | 2009-09-19 14:54:09 +0800 | [diff] [blame] | 1759 | int pf_win_pos = (pipe == 0) ? PFA_WIN_POS : PFB_WIN_POS; |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 1760 | int cpu_htot_reg = (pipe == 0) ? HTOTAL_A : HTOTAL_B; |
| 1761 | int cpu_hblank_reg = (pipe == 0) ? HBLANK_A : HBLANK_B; |
| 1762 | int cpu_hsync_reg = (pipe == 0) ? HSYNC_A : HSYNC_B; |
| 1763 | int cpu_vtot_reg = (pipe == 0) ? VTOTAL_A : VTOTAL_B; |
| 1764 | int cpu_vblank_reg = (pipe == 0) ? VBLANK_A : VBLANK_B; |
| 1765 | int cpu_vsync_reg = (pipe == 0) ? VSYNC_A : VSYNC_B; |
| 1766 | int trans_htot_reg = (pipe == 0) ? TRANS_HTOTAL_A : TRANS_HTOTAL_B; |
| 1767 | int trans_hblank_reg = (pipe == 0) ? TRANS_HBLANK_A : TRANS_HBLANK_B; |
| 1768 | int trans_hsync_reg = (pipe == 0) ? TRANS_HSYNC_A : TRANS_HSYNC_B; |
| 1769 | int trans_vtot_reg = (pipe == 0) ? TRANS_VTOTAL_A : TRANS_VTOTAL_B; |
| 1770 | int trans_vblank_reg = (pipe == 0) ? TRANS_VBLANK_A : TRANS_VBLANK_B; |
| 1771 | int trans_vsync_reg = (pipe == 0) ? TRANS_VSYNC_A : TRANS_VSYNC_B; |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 1772 | int trans_dpll_sel = (pipe == 0) ? 0 : 1; |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 1773 | u32 temp; |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 1774 | int n; |
Zhao Yakui | 8faf3b3 | 2010-01-04 16:29:31 +0800 | [diff] [blame] | 1775 | u32 pipe_bpc; |
| 1776 | |
| 1777 | temp = I915_READ(pipeconf_reg); |
| 1778 | pipe_bpc = temp & PIPE_BPC_MASK; |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 1779 | |
| 1780 | /* XXX: When our outputs are all unaware of DPMS modes other than off |
| 1781 | * and on, we should map those modes to DRM_MODE_DPMS_OFF in the CRTC. |
| 1782 | */ |
| 1783 | switch (mode) { |
| 1784 | case DRM_MODE_DPMS_ON: |
| 1785 | case DRM_MODE_DPMS_STANDBY: |
| 1786 | case DRM_MODE_DPMS_SUSPEND: |
Zhao Yakui | 28c9773 | 2009-10-09 11:39:41 +0800 | [diff] [blame] | 1787 | DRM_DEBUG_KMS("crtc %d dpms on\n", pipe); |
Zhenyu Wang | 1b3c7a4 | 2009-11-25 13:09:38 +0800 | [diff] [blame] | 1788 | |
| 1789 | if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) { |
| 1790 | temp = I915_READ(PCH_LVDS); |
| 1791 | if ((temp & LVDS_PORT_EN) == 0) { |
| 1792 | I915_WRITE(PCH_LVDS, temp | LVDS_PORT_EN); |
| 1793 | POSTING_READ(PCH_LVDS); |
| 1794 | } |
| 1795 | } |
| 1796 | |
Zhenyu Wang | 32f9d65 | 2009-07-24 01:00:32 +0800 | [diff] [blame] | 1797 | if (HAS_eDP) { |
| 1798 | /* enable eDP PLL */ |
Adam Jackson | f2b115e | 2009-12-03 17:14:42 -0500 | [diff] [blame] | 1799 | ironlake_enable_pll_edp(crtc); |
Zhenyu Wang | 32f9d65 | 2009-07-24 01:00:32 +0800 | [diff] [blame] | 1800 | } else { |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 1801 | |
Zhenyu Wang | 32f9d65 | 2009-07-24 01:00:32 +0800 | [diff] [blame] | 1802 | /* enable PCH FDI RX PLL, wait warmup plus DMI latency */ |
| 1803 | temp = I915_READ(fdi_rx_reg); |
Zhao Yakui | 8faf3b3 | 2010-01-04 16:29:31 +0800 | [diff] [blame] | 1804 | /* |
| 1805 | * make the BPC in FDI Rx be consistent with that in |
| 1806 | * pipeconf reg. |
| 1807 | */ |
| 1808 | temp &= ~(0x7 << 16); |
| 1809 | temp |= (pipe_bpc << 11); |
Adam Jackson | 77ffb59 | 2010-04-12 11:38:44 -0400 | [diff] [blame] | 1810 | temp &= ~(7 << 19); |
| 1811 | temp |= (intel_crtc->fdi_lanes - 1) << 19; |
| 1812 | I915_WRITE(fdi_rx_reg, temp | FDI_RX_PLL_ENABLE); |
Zhenyu Wang | 32f9d65 | 2009-07-24 01:00:32 +0800 | [diff] [blame] | 1813 | I915_READ(fdi_rx_reg); |
| 1814 | udelay(200); |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 1815 | |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 1816 | /* Switch from Rawclk to PCDclk */ |
| 1817 | temp = I915_READ(fdi_rx_reg); |
| 1818 | I915_WRITE(fdi_rx_reg, temp | FDI_SEL_PCDCLK); |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 1819 | I915_READ(fdi_rx_reg); |
| 1820 | udelay(200); |
| 1821 | |
Adam Jackson | f2b115e | 2009-12-03 17:14:42 -0500 | [diff] [blame] | 1822 | /* Enable CPU FDI TX PLL, always on for Ironlake */ |
Zhenyu Wang | 32f9d65 | 2009-07-24 01:00:32 +0800 | [diff] [blame] | 1823 | temp = I915_READ(fdi_tx_reg); |
| 1824 | if ((temp & FDI_TX_PLL_ENABLE) == 0) { |
| 1825 | I915_WRITE(fdi_tx_reg, temp | FDI_TX_PLL_ENABLE); |
| 1826 | I915_READ(fdi_tx_reg); |
| 1827 | udelay(100); |
| 1828 | } |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 1829 | } |
| 1830 | |
Zhenyu Wang | 8dd81a3 | 2009-09-19 14:54:09 +0800 | [diff] [blame] | 1831 | /* Enable panel fitting for LVDS */ |
| 1832 | if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) { |
| 1833 | temp = I915_READ(pf_ctl_reg); |
Zhenyu Wang | b1f60b7 | 2009-10-19 15:43:49 +0800 | [diff] [blame] | 1834 | I915_WRITE(pf_ctl_reg, temp | PF_ENABLE | PF_FILTER_MED_3x3); |
Zhenyu Wang | 8dd81a3 | 2009-09-19 14:54:09 +0800 | [diff] [blame] | 1835 | |
| 1836 | /* currently full aspect */ |
| 1837 | I915_WRITE(pf_win_pos, 0); |
| 1838 | |
| 1839 | I915_WRITE(pf_win_size, |
| 1840 | (dev_priv->panel_fixed_mode->hdisplay << 16) | |
| 1841 | (dev_priv->panel_fixed_mode->vdisplay)); |
| 1842 | } |
| 1843 | |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 1844 | /* Enable CPU pipe */ |
| 1845 | temp = I915_READ(pipeconf_reg); |
| 1846 | if ((temp & PIPEACONF_ENABLE) == 0) { |
| 1847 | I915_WRITE(pipeconf_reg, temp | PIPEACONF_ENABLE); |
| 1848 | I915_READ(pipeconf_reg); |
| 1849 | udelay(100); |
| 1850 | } |
| 1851 | |
| 1852 | /* configure and enable CPU plane */ |
| 1853 | temp = I915_READ(dspcntr_reg); |
| 1854 | if ((temp & DISPLAY_PLANE_ENABLE) == 0) { |
| 1855 | I915_WRITE(dspcntr_reg, temp | DISPLAY_PLANE_ENABLE); |
| 1856 | /* Flush the plane changes */ |
| 1857 | I915_WRITE(dspbase_reg, I915_READ(dspbase_reg)); |
| 1858 | } |
| 1859 | |
Zhenyu Wang | 32f9d65 | 2009-07-24 01:00:32 +0800 | [diff] [blame] | 1860 | if (!HAS_eDP) { |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 1861 | /* For PCH output, training FDI link */ |
| 1862 | if (IS_GEN6(dev)) |
| 1863 | gen6_fdi_link_train(crtc); |
| 1864 | else |
| 1865 | ironlake_fdi_link_train(crtc); |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 1866 | |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 1867 | /* enable PCH DPLL */ |
| 1868 | temp = I915_READ(pch_dpll_reg); |
| 1869 | if ((temp & DPLL_VCO_ENABLE) == 0) { |
| 1870 | I915_WRITE(pch_dpll_reg, temp | DPLL_VCO_ENABLE); |
| 1871 | I915_READ(pch_dpll_reg); |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 1872 | } |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 1873 | udelay(200); |
Zhenyu Wang | 32f9d65 | 2009-07-24 01:00:32 +0800 | [diff] [blame] | 1874 | |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 1875 | if (HAS_PCH_CPT(dev)) { |
| 1876 | /* Be sure PCH DPLL SEL is set */ |
| 1877 | temp = I915_READ(PCH_DPLL_SEL); |
| 1878 | if (trans_dpll_sel == 0 && |
| 1879 | (temp & TRANSA_DPLL_ENABLE) == 0) |
| 1880 | temp |= (TRANSA_DPLL_ENABLE | TRANSA_DPLLA_SEL); |
| 1881 | else if (trans_dpll_sel == 1 && |
| 1882 | (temp & TRANSB_DPLL_ENABLE) == 0) |
| 1883 | temp |= (TRANSB_DPLL_ENABLE | TRANSB_DPLLB_SEL); |
| 1884 | I915_WRITE(PCH_DPLL_SEL, temp); |
| 1885 | I915_READ(PCH_DPLL_SEL); |
Zhenyu Wang | 32f9d65 | 2009-07-24 01:00:32 +0800 | [diff] [blame] | 1886 | } |
Zhenyu Wang | 32f9d65 | 2009-07-24 01:00:32 +0800 | [diff] [blame] | 1887 | |
| 1888 | /* set transcoder timing */ |
| 1889 | I915_WRITE(trans_htot_reg, I915_READ(cpu_htot_reg)); |
| 1890 | I915_WRITE(trans_hblank_reg, I915_READ(cpu_hblank_reg)); |
| 1891 | I915_WRITE(trans_hsync_reg, I915_READ(cpu_hsync_reg)); |
| 1892 | |
| 1893 | I915_WRITE(trans_vtot_reg, I915_READ(cpu_vtot_reg)); |
| 1894 | I915_WRITE(trans_vblank_reg, I915_READ(cpu_vblank_reg)); |
| 1895 | I915_WRITE(trans_vsync_reg, I915_READ(cpu_vsync_reg)); |
| 1896 | |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 1897 | /* enable normal train */ |
| 1898 | temp = I915_READ(fdi_tx_reg); |
| 1899 | temp &= ~FDI_LINK_TRAIN_NONE; |
| 1900 | I915_WRITE(fdi_tx_reg, temp | FDI_LINK_TRAIN_NONE | |
| 1901 | FDI_TX_ENHANCE_FRAME_ENABLE); |
| 1902 | I915_READ(fdi_tx_reg); |
| 1903 | |
| 1904 | temp = I915_READ(fdi_rx_reg); |
| 1905 | if (HAS_PCH_CPT(dev)) { |
| 1906 | temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT; |
| 1907 | temp |= FDI_LINK_TRAIN_NORMAL_CPT; |
| 1908 | } else { |
| 1909 | temp &= ~FDI_LINK_TRAIN_NONE; |
| 1910 | temp |= FDI_LINK_TRAIN_NONE; |
| 1911 | } |
| 1912 | I915_WRITE(fdi_rx_reg, temp | FDI_RX_ENHANCE_FRAME_ENABLE); |
| 1913 | I915_READ(fdi_rx_reg); |
| 1914 | |
| 1915 | /* wait one idle pattern time */ |
| 1916 | udelay(100); |
| 1917 | |
Zhenyu Wang | e3421a1 | 2010-04-08 09:43:27 +0800 | [diff] [blame] | 1918 | /* For PCH DP, enable TRANS_DP_CTL */ |
| 1919 | if (HAS_PCH_CPT(dev) && |
| 1920 | intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT)) { |
| 1921 | int trans_dp_ctl = (pipe == 0) ? TRANS_DP_CTL_A : TRANS_DP_CTL_B; |
| 1922 | int reg; |
| 1923 | |
| 1924 | reg = I915_READ(trans_dp_ctl); |
| 1925 | reg &= ~TRANS_DP_PORT_SEL_MASK; |
| 1926 | reg = TRANS_DP_OUTPUT_ENABLE | |
| 1927 | TRANS_DP_ENH_FRAMING | |
| 1928 | TRANS_DP_VSYNC_ACTIVE_HIGH | |
| 1929 | TRANS_DP_HSYNC_ACTIVE_HIGH; |
| 1930 | |
| 1931 | switch (intel_trans_dp_port_sel(crtc)) { |
| 1932 | case PCH_DP_B: |
| 1933 | reg |= TRANS_DP_PORT_SEL_B; |
| 1934 | break; |
| 1935 | case PCH_DP_C: |
| 1936 | reg |= TRANS_DP_PORT_SEL_C; |
| 1937 | break; |
| 1938 | case PCH_DP_D: |
| 1939 | reg |= TRANS_DP_PORT_SEL_D; |
| 1940 | break; |
| 1941 | default: |
| 1942 | DRM_DEBUG_KMS("Wrong PCH DP port return. Guess port B\n"); |
| 1943 | reg |= TRANS_DP_PORT_SEL_B; |
| 1944 | break; |
| 1945 | } |
| 1946 | |
| 1947 | I915_WRITE(trans_dp_ctl, reg); |
| 1948 | POSTING_READ(trans_dp_ctl); |
| 1949 | } |
| 1950 | |
Zhenyu Wang | 32f9d65 | 2009-07-24 01:00:32 +0800 | [diff] [blame] | 1951 | /* enable PCH transcoder */ |
| 1952 | temp = I915_READ(transconf_reg); |
Zhao Yakui | 8faf3b3 | 2010-01-04 16:29:31 +0800 | [diff] [blame] | 1953 | /* |
| 1954 | * make the BPC in transcoder be consistent with |
| 1955 | * that in pipeconf reg. |
| 1956 | */ |
| 1957 | temp &= ~PIPE_BPC_MASK; |
| 1958 | temp |= pipe_bpc; |
Zhenyu Wang | 32f9d65 | 2009-07-24 01:00:32 +0800 | [diff] [blame] | 1959 | I915_WRITE(transconf_reg, temp | TRANS_ENABLE); |
| 1960 | I915_READ(transconf_reg); |
| 1961 | |
| 1962 | while ((I915_READ(transconf_reg) & TRANS_STATE_ENABLE) == 0) |
| 1963 | ; |
| 1964 | |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 1965 | } |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 1966 | |
| 1967 | intel_crtc_load_lut(crtc); |
| 1968 | |
| 1969 | break; |
| 1970 | case DRM_MODE_DPMS_OFF: |
Zhao Yakui | 28c9773 | 2009-10-09 11:39:41 +0800 | [diff] [blame] | 1971 | DRM_DEBUG_KMS("crtc %d dpms off\n", pipe); |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 1972 | |
Li Peng | c062df6 | 2010-01-23 00:12:58 +0800 | [diff] [blame] | 1973 | drm_vblank_off(dev, pipe); |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 1974 | /* Disable display plane */ |
| 1975 | temp = I915_READ(dspcntr_reg); |
| 1976 | if ((temp & DISPLAY_PLANE_ENABLE) != 0) { |
| 1977 | I915_WRITE(dspcntr_reg, temp & ~DISPLAY_PLANE_ENABLE); |
| 1978 | /* Flush the plane changes */ |
| 1979 | I915_WRITE(dspbase_reg, I915_READ(dspbase_reg)); |
| 1980 | I915_READ(dspbase_reg); |
| 1981 | } |
| 1982 | |
Zhenyu Wang | 1b3c7a4 | 2009-11-25 13:09:38 +0800 | [diff] [blame] | 1983 | i915_disable_vga(dev); |
| 1984 | |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 1985 | /* disable cpu pipe, disable after all planes disabled */ |
| 1986 | temp = I915_READ(pipeconf_reg); |
| 1987 | if ((temp & PIPEACONF_ENABLE) != 0) { |
| 1988 | I915_WRITE(pipeconf_reg, temp & ~PIPEACONF_ENABLE); |
| 1989 | I915_READ(pipeconf_reg); |
Zhenyu Wang | 249c0e6 | 2009-07-24 01:00:29 +0800 | [diff] [blame] | 1990 | n = 0; |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 1991 | /* wait for cpu pipe off, pipe state */ |
Zhenyu Wang | 249c0e6 | 2009-07-24 01:00:29 +0800 | [diff] [blame] | 1992 | while ((I915_READ(pipeconf_reg) & I965_PIPECONF_ACTIVE) != 0) { |
| 1993 | n++; |
| 1994 | if (n < 60) { |
| 1995 | udelay(500); |
| 1996 | continue; |
| 1997 | } else { |
Zhao Yakui | 28c9773 | 2009-10-09 11:39:41 +0800 | [diff] [blame] | 1998 | DRM_DEBUG_KMS("pipe %d off delay\n", |
| 1999 | pipe); |
Zhenyu Wang | 249c0e6 | 2009-07-24 01:00:29 +0800 | [diff] [blame] | 2000 | break; |
| 2001 | } |
| 2002 | } |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 2003 | } else |
Zhao Yakui | 28c9773 | 2009-10-09 11:39:41 +0800 | [diff] [blame] | 2004 | DRM_DEBUG_KMS("crtc %d is disabled\n", pipe); |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 2005 | |
Zhenyu Wang | 1b3c7a4 | 2009-11-25 13:09:38 +0800 | [diff] [blame] | 2006 | udelay(100); |
| 2007 | |
| 2008 | /* Disable PF */ |
| 2009 | temp = I915_READ(pf_ctl_reg); |
| 2010 | if ((temp & PF_ENABLE) != 0) { |
| 2011 | I915_WRITE(pf_ctl_reg, temp & ~PF_ENABLE); |
| 2012 | I915_READ(pf_ctl_reg); |
Zhenyu Wang | 32f9d65 | 2009-07-24 01:00:32 +0800 | [diff] [blame] | 2013 | } |
Zhenyu Wang | 1b3c7a4 | 2009-11-25 13:09:38 +0800 | [diff] [blame] | 2014 | I915_WRITE(pf_win_size, 0); |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 2015 | POSTING_READ(pf_win_size); |
| 2016 | |
Zhenyu Wang | 32f9d65 | 2009-07-24 01:00:32 +0800 | [diff] [blame] | 2017 | |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 2018 | /* disable CPU FDI tx and PCH FDI rx */ |
| 2019 | temp = I915_READ(fdi_tx_reg); |
| 2020 | I915_WRITE(fdi_tx_reg, temp & ~FDI_TX_ENABLE); |
| 2021 | I915_READ(fdi_tx_reg); |
| 2022 | |
| 2023 | temp = I915_READ(fdi_rx_reg); |
Zhao Yakui | 8faf3b3 | 2010-01-04 16:29:31 +0800 | [diff] [blame] | 2024 | /* BPC in FDI rx is consistent with that in pipeconf */ |
| 2025 | temp &= ~(0x07 << 16); |
| 2026 | temp |= (pipe_bpc << 11); |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 2027 | I915_WRITE(fdi_rx_reg, temp & ~FDI_RX_ENABLE); |
| 2028 | I915_READ(fdi_rx_reg); |
| 2029 | |
Zhenyu Wang | 249c0e6 | 2009-07-24 01:00:29 +0800 | [diff] [blame] | 2030 | udelay(100); |
| 2031 | |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 2032 | /* still set train pattern 1 */ |
| 2033 | temp = I915_READ(fdi_tx_reg); |
| 2034 | temp &= ~FDI_LINK_TRAIN_NONE; |
| 2035 | temp |= FDI_LINK_TRAIN_PATTERN_1; |
| 2036 | I915_WRITE(fdi_tx_reg, temp); |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 2037 | POSTING_READ(fdi_tx_reg); |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 2038 | |
| 2039 | temp = I915_READ(fdi_rx_reg); |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 2040 | if (HAS_PCH_CPT(dev)) { |
| 2041 | temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT; |
| 2042 | temp |= FDI_LINK_TRAIN_PATTERN_1_CPT; |
| 2043 | } else { |
| 2044 | temp &= ~FDI_LINK_TRAIN_NONE; |
| 2045 | temp |= FDI_LINK_TRAIN_PATTERN_1; |
| 2046 | } |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 2047 | I915_WRITE(fdi_rx_reg, temp); |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 2048 | POSTING_READ(fdi_rx_reg); |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 2049 | |
Zhenyu Wang | 249c0e6 | 2009-07-24 01:00:29 +0800 | [diff] [blame] | 2050 | udelay(100); |
| 2051 | |
Zhenyu Wang | 1b3c7a4 | 2009-11-25 13:09:38 +0800 | [diff] [blame] | 2052 | if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) { |
| 2053 | temp = I915_READ(PCH_LVDS); |
| 2054 | I915_WRITE(PCH_LVDS, temp & ~LVDS_PORT_EN); |
| 2055 | I915_READ(PCH_LVDS); |
| 2056 | udelay(100); |
| 2057 | } |
| 2058 | |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 2059 | /* disable PCH transcoder */ |
| 2060 | temp = I915_READ(transconf_reg); |
| 2061 | if ((temp & TRANS_ENABLE) != 0) { |
| 2062 | I915_WRITE(transconf_reg, temp & ~TRANS_ENABLE); |
| 2063 | I915_READ(transconf_reg); |
Zhenyu Wang | 249c0e6 | 2009-07-24 01:00:29 +0800 | [diff] [blame] | 2064 | n = 0; |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 2065 | /* wait for PCH transcoder off, transcoder state */ |
Zhenyu Wang | 249c0e6 | 2009-07-24 01:00:29 +0800 | [diff] [blame] | 2066 | while ((I915_READ(transconf_reg) & TRANS_STATE_ENABLE) != 0) { |
| 2067 | n++; |
| 2068 | if (n < 60) { |
| 2069 | udelay(500); |
| 2070 | continue; |
| 2071 | } else { |
Zhao Yakui | 28c9773 | 2009-10-09 11:39:41 +0800 | [diff] [blame] | 2072 | DRM_DEBUG_KMS("transcoder %d off " |
| 2073 | "delay\n", pipe); |
Zhenyu Wang | 249c0e6 | 2009-07-24 01:00:29 +0800 | [diff] [blame] | 2074 | break; |
| 2075 | } |
| 2076 | } |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 2077 | } |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 2078 | |
Zhao Yakui | 8faf3b3 | 2010-01-04 16:29:31 +0800 | [diff] [blame] | 2079 | temp = I915_READ(transconf_reg); |
| 2080 | /* BPC in transcoder is consistent with that in pipeconf */ |
| 2081 | temp &= ~PIPE_BPC_MASK; |
| 2082 | temp |= pipe_bpc; |
| 2083 | I915_WRITE(transconf_reg, temp); |
| 2084 | I915_READ(transconf_reg); |
Zhenyu Wang | 1b3c7a4 | 2009-11-25 13:09:38 +0800 | [diff] [blame] | 2085 | udelay(100); |
| 2086 | |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 2087 | if (HAS_PCH_CPT(dev)) { |
Zhenyu Wang | e3421a1 | 2010-04-08 09:43:27 +0800 | [diff] [blame] | 2088 | /* disable TRANS_DP_CTL */ |
| 2089 | int trans_dp_ctl = (pipe == 0) ? TRANS_DP_CTL_A : TRANS_DP_CTL_B; |
| 2090 | int reg; |
| 2091 | |
| 2092 | reg = I915_READ(trans_dp_ctl); |
| 2093 | reg &= ~(TRANS_DP_OUTPUT_ENABLE | TRANS_DP_PORT_SEL_MASK); |
| 2094 | I915_WRITE(trans_dp_ctl, reg); |
| 2095 | POSTING_READ(trans_dp_ctl); |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 2096 | |
| 2097 | /* disable DPLL_SEL */ |
| 2098 | temp = I915_READ(PCH_DPLL_SEL); |
| 2099 | if (trans_dpll_sel == 0) |
| 2100 | temp &= ~(TRANSA_DPLL_ENABLE | TRANSA_DPLLB_SEL); |
| 2101 | else |
| 2102 | temp &= ~(TRANSB_DPLL_ENABLE | TRANSB_DPLLB_SEL); |
| 2103 | I915_WRITE(PCH_DPLL_SEL, temp); |
| 2104 | I915_READ(PCH_DPLL_SEL); |
| 2105 | |
| 2106 | } |
| 2107 | |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 2108 | /* disable PCH DPLL */ |
| 2109 | temp = I915_READ(pch_dpll_reg); |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 2110 | I915_WRITE(pch_dpll_reg, temp & ~DPLL_VCO_ENABLE); |
| 2111 | I915_READ(pch_dpll_reg); |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 2112 | |
Zhenyu Wang | 1b3c7a4 | 2009-11-25 13:09:38 +0800 | [diff] [blame] | 2113 | if (HAS_eDP) { |
Adam Jackson | f2b115e | 2009-12-03 17:14:42 -0500 | [diff] [blame] | 2114 | ironlake_disable_pll_edp(crtc); |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 2115 | } |
| 2116 | |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 2117 | /* Switch from PCDclk to Rawclk */ |
Zhenyu Wang | 1b3c7a4 | 2009-11-25 13:09:38 +0800 | [diff] [blame] | 2118 | temp = I915_READ(fdi_rx_reg); |
| 2119 | temp &= ~FDI_SEL_PCDCLK; |
| 2120 | I915_WRITE(fdi_rx_reg, temp); |
| 2121 | I915_READ(fdi_rx_reg); |
| 2122 | |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 2123 | /* Disable CPU FDI TX PLL */ |
| 2124 | temp = I915_READ(fdi_tx_reg); |
| 2125 | I915_WRITE(fdi_tx_reg, temp & ~FDI_TX_PLL_ENABLE); |
| 2126 | I915_READ(fdi_tx_reg); |
| 2127 | udelay(100); |
| 2128 | |
Zhenyu Wang | 1b3c7a4 | 2009-11-25 13:09:38 +0800 | [diff] [blame] | 2129 | temp = I915_READ(fdi_rx_reg); |
| 2130 | temp &= ~FDI_RX_PLL_ENABLE; |
| 2131 | I915_WRITE(fdi_rx_reg, temp); |
| 2132 | I915_READ(fdi_rx_reg); |
| 2133 | |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 2134 | /* Wait for the clocks to turn off. */ |
Zhenyu Wang | 1b3c7a4 | 2009-11-25 13:09:38 +0800 | [diff] [blame] | 2135 | udelay(100); |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 2136 | break; |
| 2137 | } |
| 2138 | } |
| 2139 | |
Daniel Vetter | 02e792f | 2009-09-15 22:57:34 +0200 | [diff] [blame] | 2140 | static void intel_crtc_dpms_overlay(struct intel_crtc *intel_crtc, bool enable) |
| 2141 | { |
| 2142 | struct intel_overlay *overlay; |
Daniel Vetter | 03f77ea | 2009-09-15 22:57:37 +0200 | [diff] [blame] | 2143 | int ret; |
Daniel Vetter | 02e792f | 2009-09-15 22:57:34 +0200 | [diff] [blame] | 2144 | |
| 2145 | if (!enable && intel_crtc->overlay) { |
| 2146 | overlay = intel_crtc->overlay; |
| 2147 | mutex_lock(&overlay->dev->struct_mutex); |
Daniel Vetter | 03f77ea | 2009-09-15 22:57:37 +0200 | [diff] [blame] | 2148 | for (;;) { |
| 2149 | ret = intel_overlay_switch_off(overlay); |
| 2150 | if (ret == 0) |
| 2151 | break; |
| 2152 | |
| 2153 | ret = intel_overlay_recover_from_interrupt(overlay, 0); |
| 2154 | if (ret != 0) { |
| 2155 | /* overlay doesn't react anymore. Usually |
| 2156 | * results in a black screen and an unkillable |
| 2157 | * X server. */ |
| 2158 | BUG(); |
| 2159 | overlay->hw_wedged = HW_WEDGED; |
| 2160 | break; |
| 2161 | } |
| 2162 | } |
Daniel Vetter | 02e792f | 2009-09-15 22:57:34 +0200 | [diff] [blame] | 2163 | mutex_unlock(&overlay->dev->struct_mutex); |
| 2164 | } |
| 2165 | /* Let userspace switch the overlay on again. In most cases userspace |
| 2166 | * has to recompute where to put it anyway. */ |
| 2167 | |
| 2168 | return; |
| 2169 | } |
| 2170 | |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 2171 | static void i9xx_crtc_dpms(struct drm_crtc *crtc, int mode) |
| 2172 | { |
| 2173 | struct drm_device *dev = crtc->dev; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 2174 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 2175 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 2176 | int pipe = intel_crtc->pipe; |
Jesse Barnes | 8082400 | 2009-09-10 15:28:06 -0700 | [diff] [blame] | 2177 | int plane = intel_crtc->plane; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 2178 | int dpll_reg = (pipe == 0) ? DPLL_A : DPLL_B; |
Jesse Barnes | 8082400 | 2009-09-10 15:28:06 -0700 | [diff] [blame] | 2179 | int dspcntr_reg = (plane == 0) ? DSPACNTR : DSPBCNTR; |
| 2180 | int dspbase_reg = (plane == 0) ? DSPAADDR : DSPBADDR; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 2181 | int pipeconf_reg = (pipe == 0) ? PIPEACONF : PIPEBCONF; |
| 2182 | u32 temp; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 2183 | |
| 2184 | /* XXX: When our outputs are all unaware of DPMS modes other than off |
| 2185 | * and on, we should map those modes to DRM_MODE_DPMS_OFF in the CRTC. |
| 2186 | */ |
| 2187 | switch (mode) { |
| 2188 | case DRM_MODE_DPMS_ON: |
| 2189 | case DRM_MODE_DPMS_STANDBY: |
| 2190 | case DRM_MODE_DPMS_SUSPEND: |
Jesse Barnes | 629598d | 2009-10-20 07:37:32 +0900 | [diff] [blame] | 2191 | intel_update_watermarks(dev); |
| 2192 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 2193 | /* Enable the DPLL */ |
| 2194 | temp = I915_READ(dpll_reg); |
| 2195 | if ((temp & DPLL_VCO_ENABLE) == 0) { |
| 2196 | I915_WRITE(dpll_reg, temp); |
| 2197 | I915_READ(dpll_reg); |
| 2198 | /* Wait for the clocks to stabilize. */ |
| 2199 | udelay(150); |
| 2200 | I915_WRITE(dpll_reg, temp | DPLL_VCO_ENABLE); |
| 2201 | I915_READ(dpll_reg); |
| 2202 | /* Wait for the clocks to stabilize. */ |
| 2203 | udelay(150); |
| 2204 | I915_WRITE(dpll_reg, temp | DPLL_VCO_ENABLE); |
| 2205 | I915_READ(dpll_reg); |
| 2206 | /* Wait for the clocks to stabilize. */ |
| 2207 | udelay(150); |
| 2208 | } |
| 2209 | |
| 2210 | /* Enable the pipe */ |
| 2211 | temp = I915_READ(pipeconf_reg); |
| 2212 | if ((temp & PIPEACONF_ENABLE) == 0) |
| 2213 | I915_WRITE(pipeconf_reg, temp | PIPEACONF_ENABLE); |
| 2214 | |
| 2215 | /* Enable the plane */ |
| 2216 | temp = I915_READ(dspcntr_reg); |
| 2217 | if ((temp & DISPLAY_PLANE_ENABLE) == 0) { |
| 2218 | I915_WRITE(dspcntr_reg, temp | DISPLAY_PLANE_ENABLE); |
| 2219 | /* Flush the plane changes */ |
| 2220 | I915_WRITE(dspbase_reg, I915_READ(dspbase_reg)); |
| 2221 | } |
| 2222 | |
| 2223 | intel_crtc_load_lut(crtc); |
| 2224 | |
Jesse Barnes | 74dff28 | 2009-09-14 15:39:40 -0700 | [diff] [blame] | 2225 | if ((IS_I965G(dev) || plane == 0)) |
| 2226 | intel_update_fbc(crtc, &crtc->mode); |
Jesse Barnes | 8082400 | 2009-09-10 15:28:06 -0700 | [diff] [blame] | 2227 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 2228 | /* Give the overlay scaler a chance to enable if it's on this pipe */ |
Daniel Vetter | 02e792f | 2009-09-15 22:57:34 +0200 | [diff] [blame] | 2229 | intel_crtc_dpms_overlay(intel_crtc, true); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 2230 | break; |
| 2231 | case DRM_MODE_DPMS_OFF: |
Shaohua Li | 7662c8b | 2009-06-26 11:23:55 +0800 | [diff] [blame] | 2232 | intel_update_watermarks(dev); |
Daniel Vetter | 02e792f | 2009-09-15 22:57:34 +0200 | [diff] [blame] | 2233 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 2234 | /* Give the overlay scaler a chance to disable if it's on this pipe */ |
Daniel Vetter | 02e792f | 2009-09-15 22:57:34 +0200 | [diff] [blame] | 2235 | intel_crtc_dpms_overlay(intel_crtc, false); |
Li Peng | 778c902 | 2009-11-09 12:51:22 +0800 | [diff] [blame] | 2236 | drm_vblank_off(dev, pipe); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 2237 | |
Jesse Barnes | e70236a | 2009-09-21 10:42:27 -0700 | [diff] [blame] | 2238 | if (dev_priv->cfb_plane == plane && |
| 2239 | dev_priv->display.disable_fbc) |
| 2240 | dev_priv->display.disable_fbc(dev); |
Jesse Barnes | 8082400 | 2009-09-10 15:28:06 -0700 | [diff] [blame] | 2241 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 2242 | /* Disable the VGA plane that we never use */ |
Zhenyu Wang | 24f119c | 2009-07-24 01:00:28 +0800 | [diff] [blame] | 2243 | i915_disable_vga(dev); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 2244 | |
| 2245 | /* Disable display plane */ |
| 2246 | temp = I915_READ(dspcntr_reg); |
| 2247 | if ((temp & DISPLAY_PLANE_ENABLE) != 0) { |
| 2248 | I915_WRITE(dspcntr_reg, temp & ~DISPLAY_PLANE_ENABLE); |
| 2249 | /* Flush the plane changes */ |
| 2250 | I915_WRITE(dspbase_reg, I915_READ(dspbase_reg)); |
| 2251 | I915_READ(dspbase_reg); |
| 2252 | } |
| 2253 | |
| 2254 | if (!IS_I9XX(dev)) { |
| 2255 | /* Wait for vblank for the disable to take effect */ |
| 2256 | intel_wait_for_vblank(dev); |
| 2257 | } |
| 2258 | |
| 2259 | /* Next, disable display pipes */ |
| 2260 | temp = I915_READ(pipeconf_reg); |
| 2261 | if ((temp & PIPEACONF_ENABLE) != 0) { |
| 2262 | I915_WRITE(pipeconf_reg, temp & ~PIPEACONF_ENABLE); |
| 2263 | I915_READ(pipeconf_reg); |
| 2264 | } |
| 2265 | |
| 2266 | /* Wait for vblank for the disable to take effect. */ |
| 2267 | intel_wait_for_vblank(dev); |
| 2268 | |
| 2269 | temp = I915_READ(dpll_reg); |
| 2270 | if ((temp & DPLL_VCO_ENABLE) != 0) { |
| 2271 | I915_WRITE(dpll_reg, temp & ~DPLL_VCO_ENABLE); |
| 2272 | I915_READ(dpll_reg); |
| 2273 | } |
| 2274 | |
| 2275 | /* Wait for the clocks to turn off. */ |
| 2276 | udelay(150); |
| 2277 | break; |
| 2278 | } |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 2279 | } |
| 2280 | |
| 2281 | /** |
| 2282 | * Sets the power management mode of the pipe and plane. |
| 2283 | * |
| 2284 | * This code should probably grow support for turning the cursor off and back |
| 2285 | * on appropriately at the same time as we're turning the pipe off/on. |
| 2286 | */ |
| 2287 | static void intel_crtc_dpms(struct drm_crtc *crtc, int mode) |
| 2288 | { |
| 2289 | struct drm_device *dev = crtc->dev; |
Jesse Barnes | e70236a | 2009-09-21 10:42:27 -0700 | [diff] [blame] | 2290 | struct drm_i915_private *dev_priv = dev->dev_private; |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 2291 | struct drm_i915_master_private *master_priv; |
| 2292 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 2293 | int pipe = intel_crtc->pipe; |
| 2294 | bool enabled; |
| 2295 | |
Jesse Barnes | e70236a | 2009-09-21 10:42:27 -0700 | [diff] [blame] | 2296 | dev_priv->display.dpms(crtc, mode); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 2297 | |
Daniel Vetter | 65655d4 | 2009-08-11 16:05:31 +0200 | [diff] [blame] | 2298 | intel_crtc->dpms_mode = mode; |
| 2299 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 2300 | if (!dev->primary->master) |
| 2301 | return; |
| 2302 | |
| 2303 | master_priv = dev->primary->master->driver_priv; |
| 2304 | if (!master_priv->sarea_priv) |
| 2305 | return; |
| 2306 | |
| 2307 | enabled = crtc->enabled && mode != DRM_MODE_DPMS_OFF; |
| 2308 | |
| 2309 | switch (pipe) { |
| 2310 | case 0: |
| 2311 | master_priv->sarea_priv->pipeA_w = enabled ? crtc->mode.hdisplay : 0; |
| 2312 | master_priv->sarea_priv->pipeA_h = enabled ? crtc->mode.vdisplay : 0; |
| 2313 | break; |
| 2314 | case 1: |
| 2315 | master_priv->sarea_priv->pipeB_w = enabled ? crtc->mode.hdisplay : 0; |
| 2316 | master_priv->sarea_priv->pipeB_h = enabled ? crtc->mode.vdisplay : 0; |
| 2317 | break; |
| 2318 | default: |
| 2319 | DRM_ERROR("Can't update pipe %d in SAREA\n", pipe); |
| 2320 | break; |
| 2321 | } |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 2322 | } |
| 2323 | |
| 2324 | static void intel_crtc_prepare (struct drm_crtc *crtc) |
| 2325 | { |
| 2326 | struct drm_crtc_helper_funcs *crtc_funcs = crtc->helper_private; |
| 2327 | crtc_funcs->dpms(crtc, DRM_MODE_DPMS_OFF); |
| 2328 | } |
| 2329 | |
| 2330 | static void intel_crtc_commit (struct drm_crtc *crtc) |
| 2331 | { |
| 2332 | struct drm_crtc_helper_funcs *crtc_funcs = crtc->helper_private; |
| 2333 | crtc_funcs->dpms(crtc, DRM_MODE_DPMS_ON); |
| 2334 | } |
| 2335 | |
| 2336 | void intel_encoder_prepare (struct drm_encoder *encoder) |
| 2337 | { |
| 2338 | struct drm_encoder_helper_funcs *encoder_funcs = encoder->helper_private; |
| 2339 | /* lvds has its own version of prepare see intel_lvds_prepare */ |
| 2340 | encoder_funcs->dpms(encoder, DRM_MODE_DPMS_OFF); |
| 2341 | } |
| 2342 | |
| 2343 | void intel_encoder_commit (struct drm_encoder *encoder) |
| 2344 | { |
| 2345 | struct drm_encoder_helper_funcs *encoder_funcs = encoder->helper_private; |
| 2346 | /* lvds has its own version of commit see intel_lvds_commit */ |
| 2347 | encoder_funcs->dpms(encoder, DRM_MODE_DPMS_ON); |
| 2348 | } |
| 2349 | |
| 2350 | static bool intel_crtc_mode_fixup(struct drm_crtc *crtc, |
| 2351 | struct drm_display_mode *mode, |
| 2352 | struct drm_display_mode *adjusted_mode) |
| 2353 | { |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 2354 | struct drm_device *dev = crtc->dev; |
Eric Anholt | bad720f | 2009-10-22 16:11:14 -0700 | [diff] [blame] | 2355 | if (HAS_PCH_SPLIT(dev)) { |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 2356 | /* FDI link clock is fixed at 2.7G */ |
| 2357 | if (mode->clock * 3 > 27000 * 4) |
| 2358 | return MODE_CLOCK_HIGH; |
| 2359 | } |
Krzysztof Halasa | 734b415 | 2010-05-25 18:41:46 +0200 | [diff] [blame] | 2360 | |
| 2361 | drm_mode_set_crtcinfo(adjusted_mode, 0); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 2362 | return true; |
| 2363 | } |
| 2364 | |
Jesse Barnes | e70236a | 2009-09-21 10:42:27 -0700 | [diff] [blame] | 2365 | static int i945_get_display_clock_speed(struct drm_device *dev) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 2366 | { |
Jesse Barnes | e70236a | 2009-09-21 10:42:27 -0700 | [diff] [blame] | 2367 | return 400000; |
| 2368 | } |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 2369 | |
Jesse Barnes | e70236a | 2009-09-21 10:42:27 -0700 | [diff] [blame] | 2370 | static int i915_get_display_clock_speed(struct drm_device *dev) |
| 2371 | { |
| 2372 | return 333000; |
| 2373 | } |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 2374 | |
Jesse Barnes | e70236a | 2009-09-21 10:42:27 -0700 | [diff] [blame] | 2375 | static int i9xx_misc_get_display_clock_speed(struct drm_device *dev) |
| 2376 | { |
| 2377 | return 200000; |
| 2378 | } |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 2379 | |
Jesse Barnes | e70236a | 2009-09-21 10:42:27 -0700 | [diff] [blame] | 2380 | static int i915gm_get_display_clock_speed(struct drm_device *dev) |
| 2381 | { |
| 2382 | u16 gcfgc = 0; |
| 2383 | |
| 2384 | pci_read_config_word(dev->pdev, GCFGC, &gcfgc); |
| 2385 | |
| 2386 | if (gcfgc & GC_LOW_FREQUENCY_ENABLE) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 2387 | return 133000; |
Jesse Barnes | e70236a | 2009-09-21 10:42:27 -0700 | [diff] [blame] | 2388 | else { |
| 2389 | switch (gcfgc & GC_DISPLAY_CLOCK_MASK) { |
| 2390 | case GC_DISPLAY_CLOCK_333_MHZ: |
| 2391 | return 333000; |
| 2392 | default: |
| 2393 | case GC_DISPLAY_CLOCK_190_200_MHZ: |
| 2394 | return 190000; |
| 2395 | } |
| 2396 | } |
| 2397 | } |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 2398 | |
Jesse Barnes | e70236a | 2009-09-21 10:42:27 -0700 | [diff] [blame] | 2399 | static int i865_get_display_clock_speed(struct drm_device *dev) |
| 2400 | { |
| 2401 | return 266000; |
| 2402 | } |
| 2403 | |
| 2404 | static int i855_get_display_clock_speed(struct drm_device *dev) |
| 2405 | { |
| 2406 | u16 hpllcc = 0; |
| 2407 | /* Assume that the hardware is in the high speed state. This |
| 2408 | * should be the default. |
| 2409 | */ |
| 2410 | switch (hpllcc & GC_CLOCK_CONTROL_MASK) { |
| 2411 | case GC_CLOCK_133_200: |
| 2412 | case GC_CLOCK_100_200: |
| 2413 | return 200000; |
| 2414 | case GC_CLOCK_166_250: |
| 2415 | return 250000; |
| 2416 | case GC_CLOCK_100_133: |
| 2417 | return 133000; |
| 2418 | } |
| 2419 | |
| 2420 | /* Shouldn't happen */ |
| 2421 | return 0; |
| 2422 | } |
| 2423 | |
| 2424 | static int i830_get_display_clock_speed(struct drm_device *dev) |
| 2425 | { |
| 2426 | return 133000; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 2427 | } |
| 2428 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 2429 | /** |
| 2430 | * Return the pipe currently connected to the panel fitter, |
| 2431 | * or -1 if the panel fitter is not present or not in use |
| 2432 | */ |
Daniel Vetter | 02e792f | 2009-09-15 22:57:34 +0200 | [diff] [blame] | 2433 | int intel_panel_fitter_pipe (struct drm_device *dev) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 2434 | { |
| 2435 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 2436 | u32 pfit_control; |
| 2437 | |
| 2438 | /* i830 doesn't have a panel fitter */ |
| 2439 | if (IS_I830(dev)) |
| 2440 | return -1; |
| 2441 | |
| 2442 | pfit_control = I915_READ(PFIT_CONTROL); |
| 2443 | |
| 2444 | /* See if the panel fitter is in use */ |
| 2445 | if ((pfit_control & PFIT_ENABLE) == 0) |
| 2446 | return -1; |
| 2447 | |
| 2448 | /* 965 can place panel fitter on either pipe */ |
| 2449 | if (IS_I965G(dev)) |
| 2450 | return (pfit_control >> 29) & 0x3; |
| 2451 | |
| 2452 | /* older chips can only use pipe 1 */ |
| 2453 | return 1; |
| 2454 | } |
| 2455 | |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 2456 | struct fdi_m_n { |
| 2457 | u32 tu; |
| 2458 | u32 gmch_m; |
| 2459 | u32 gmch_n; |
| 2460 | u32 link_m; |
| 2461 | u32 link_n; |
| 2462 | }; |
| 2463 | |
| 2464 | static void |
| 2465 | fdi_reduce_ratio(u32 *num, u32 *den) |
| 2466 | { |
| 2467 | while (*num > 0xffffff || *den > 0xffffff) { |
| 2468 | *num >>= 1; |
| 2469 | *den >>= 1; |
| 2470 | } |
| 2471 | } |
| 2472 | |
| 2473 | #define DATA_N 0x800000 |
| 2474 | #define LINK_N 0x80000 |
| 2475 | |
| 2476 | static void |
Adam Jackson | f2b115e | 2009-12-03 17:14:42 -0500 | [diff] [blame] | 2477 | ironlake_compute_m_n(int bits_per_pixel, int nlanes, int pixel_clock, |
| 2478 | int link_clock, struct fdi_m_n *m_n) |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 2479 | { |
| 2480 | u64 temp; |
| 2481 | |
| 2482 | m_n->tu = 64; /* default size */ |
| 2483 | |
| 2484 | temp = (u64) DATA_N * pixel_clock; |
| 2485 | temp = div_u64(temp, link_clock); |
Zhenyu Wang | 58a2747 | 2009-09-25 08:01:28 +0000 | [diff] [blame] | 2486 | m_n->gmch_m = div_u64(temp * bits_per_pixel, nlanes); |
| 2487 | m_n->gmch_m >>= 3; /* convert to bytes_per_pixel */ |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 2488 | m_n->gmch_n = DATA_N; |
| 2489 | fdi_reduce_ratio(&m_n->gmch_m, &m_n->gmch_n); |
| 2490 | |
| 2491 | temp = (u64) LINK_N * pixel_clock; |
| 2492 | m_n->link_m = div_u64(temp, link_clock); |
| 2493 | m_n->link_n = LINK_N; |
| 2494 | fdi_reduce_ratio(&m_n->link_m, &m_n->link_n); |
| 2495 | } |
| 2496 | |
| 2497 | |
Shaohua Li | 7662c8b | 2009-06-26 11:23:55 +0800 | [diff] [blame] | 2498 | struct intel_watermark_params { |
| 2499 | unsigned long fifo_size; |
| 2500 | unsigned long max_wm; |
| 2501 | unsigned long default_wm; |
| 2502 | unsigned long guard_size; |
| 2503 | unsigned long cacheline_size; |
| 2504 | }; |
| 2505 | |
Adam Jackson | f2b115e | 2009-12-03 17:14:42 -0500 | [diff] [blame] | 2506 | /* Pineview has different values for various configs */ |
| 2507 | static struct intel_watermark_params pineview_display_wm = { |
| 2508 | PINEVIEW_DISPLAY_FIFO, |
| 2509 | PINEVIEW_MAX_WM, |
| 2510 | PINEVIEW_DFT_WM, |
| 2511 | PINEVIEW_GUARD_WM, |
| 2512 | PINEVIEW_FIFO_LINE_SIZE |
Shaohua Li | 7662c8b | 2009-06-26 11:23:55 +0800 | [diff] [blame] | 2513 | }; |
Adam Jackson | f2b115e | 2009-12-03 17:14:42 -0500 | [diff] [blame] | 2514 | static struct intel_watermark_params pineview_display_hplloff_wm = { |
| 2515 | PINEVIEW_DISPLAY_FIFO, |
| 2516 | PINEVIEW_MAX_WM, |
| 2517 | PINEVIEW_DFT_HPLLOFF_WM, |
| 2518 | PINEVIEW_GUARD_WM, |
| 2519 | PINEVIEW_FIFO_LINE_SIZE |
Shaohua Li | 7662c8b | 2009-06-26 11:23:55 +0800 | [diff] [blame] | 2520 | }; |
Adam Jackson | f2b115e | 2009-12-03 17:14:42 -0500 | [diff] [blame] | 2521 | static struct intel_watermark_params pineview_cursor_wm = { |
| 2522 | PINEVIEW_CURSOR_FIFO, |
| 2523 | PINEVIEW_CURSOR_MAX_WM, |
| 2524 | PINEVIEW_CURSOR_DFT_WM, |
| 2525 | PINEVIEW_CURSOR_GUARD_WM, |
| 2526 | PINEVIEW_FIFO_LINE_SIZE, |
Shaohua Li | 7662c8b | 2009-06-26 11:23:55 +0800 | [diff] [blame] | 2527 | }; |
Adam Jackson | f2b115e | 2009-12-03 17:14:42 -0500 | [diff] [blame] | 2528 | static struct intel_watermark_params pineview_cursor_hplloff_wm = { |
| 2529 | PINEVIEW_CURSOR_FIFO, |
| 2530 | PINEVIEW_CURSOR_MAX_WM, |
| 2531 | PINEVIEW_CURSOR_DFT_WM, |
| 2532 | PINEVIEW_CURSOR_GUARD_WM, |
| 2533 | PINEVIEW_FIFO_LINE_SIZE |
Shaohua Li | 7662c8b | 2009-06-26 11:23:55 +0800 | [diff] [blame] | 2534 | }; |
Jesse Barnes | 0e442c6 | 2009-10-19 10:09:33 +0900 | [diff] [blame] | 2535 | static struct intel_watermark_params g4x_wm_info = { |
| 2536 | G4X_FIFO_SIZE, |
| 2537 | G4X_MAX_WM, |
| 2538 | G4X_MAX_WM, |
| 2539 | 2, |
| 2540 | G4X_FIFO_LINE_SIZE, |
| 2541 | }; |
Zhao Yakui | 4fe5e61 | 2010-06-12 14:32:25 +0800 | [diff] [blame^] | 2542 | static struct intel_watermark_params g4x_cursor_wm_info = { |
| 2543 | I965_CURSOR_FIFO, |
| 2544 | I965_CURSOR_MAX_WM, |
| 2545 | I965_CURSOR_DFT_WM, |
| 2546 | 2, |
| 2547 | G4X_FIFO_LINE_SIZE, |
| 2548 | }; |
| 2549 | static struct intel_watermark_params i965_cursor_wm_info = { |
| 2550 | I965_CURSOR_FIFO, |
| 2551 | I965_CURSOR_MAX_WM, |
| 2552 | I965_CURSOR_DFT_WM, |
| 2553 | 2, |
| 2554 | I915_FIFO_LINE_SIZE, |
| 2555 | }; |
Shaohua Li | 7662c8b | 2009-06-26 11:23:55 +0800 | [diff] [blame] | 2556 | static struct intel_watermark_params i945_wm_info = { |
Shaohua Li | 7662c8b | 2009-06-26 11:23:55 +0800 | [diff] [blame] | 2557 | I945_FIFO_SIZE, |
| 2558 | I915_MAX_WM, |
| 2559 | 1, |
Jesse Barnes | dff33cf | 2009-07-14 10:15:56 -0700 | [diff] [blame] | 2560 | 2, |
| 2561 | I915_FIFO_LINE_SIZE |
| 2562 | }; |
| 2563 | static struct intel_watermark_params i915_wm_info = { |
| 2564 | I915_FIFO_SIZE, |
| 2565 | I915_MAX_WM, |
| 2566 | 1, |
| 2567 | 2, |
Shaohua Li | 7662c8b | 2009-06-26 11:23:55 +0800 | [diff] [blame] | 2568 | I915_FIFO_LINE_SIZE |
| 2569 | }; |
| 2570 | static struct intel_watermark_params i855_wm_info = { |
| 2571 | I855GM_FIFO_SIZE, |
| 2572 | I915_MAX_WM, |
| 2573 | 1, |
Jesse Barnes | dff33cf | 2009-07-14 10:15:56 -0700 | [diff] [blame] | 2574 | 2, |
Shaohua Li | 7662c8b | 2009-06-26 11:23:55 +0800 | [diff] [blame] | 2575 | I830_FIFO_LINE_SIZE |
| 2576 | }; |
| 2577 | static struct intel_watermark_params i830_wm_info = { |
| 2578 | I830_FIFO_SIZE, |
| 2579 | I915_MAX_WM, |
| 2580 | 1, |
Jesse Barnes | dff33cf | 2009-07-14 10:15:56 -0700 | [diff] [blame] | 2581 | 2, |
Shaohua Li | 7662c8b | 2009-06-26 11:23:55 +0800 | [diff] [blame] | 2582 | I830_FIFO_LINE_SIZE |
| 2583 | }; |
| 2584 | |
Zhenyu Wang | 7f8a856 | 2010-04-01 13:07:53 +0800 | [diff] [blame] | 2585 | static struct intel_watermark_params ironlake_display_wm_info = { |
| 2586 | ILK_DISPLAY_FIFO, |
| 2587 | ILK_DISPLAY_MAXWM, |
| 2588 | ILK_DISPLAY_DFTWM, |
| 2589 | 2, |
| 2590 | ILK_FIFO_LINE_SIZE |
| 2591 | }; |
| 2592 | |
| 2593 | static struct intel_watermark_params ironlake_display_srwm_info = { |
| 2594 | ILK_DISPLAY_SR_FIFO, |
| 2595 | ILK_DISPLAY_MAX_SRWM, |
| 2596 | ILK_DISPLAY_DFT_SRWM, |
| 2597 | 2, |
| 2598 | ILK_FIFO_LINE_SIZE |
| 2599 | }; |
| 2600 | |
| 2601 | static struct intel_watermark_params ironlake_cursor_srwm_info = { |
| 2602 | ILK_CURSOR_SR_FIFO, |
| 2603 | ILK_CURSOR_MAX_SRWM, |
| 2604 | ILK_CURSOR_DFT_SRWM, |
| 2605 | 2, |
| 2606 | ILK_FIFO_LINE_SIZE |
| 2607 | }; |
| 2608 | |
Jesse Barnes | dff33cf | 2009-07-14 10:15:56 -0700 | [diff] [blame] | 2609 | /** |
| 2610 | * intel_calculate_wm - calculate watermark level |
| 2611 | * @clock_in_khz: pixel clock |
| 2612 | * @wm: chip FIFO params |
| 2613 | * @pixel_size: display pixel size |
| 2614 | * @latency_ns: memory latency for the platform |
| 2615 | * |
| 2616 | * Calculate the watermark level (the level at which the display plane will |
| 2617 | * start fetching from memory again). Each chip has a different display |
| 2618 | * FIFO size and allocation, so the caller needs to figure that out and pass |
| 2619 | * in the correct intel_watermark_params structure. |
| 2620 | * |
| 2621 | * As the pixel clock runs, the FIFO will be drained at a rate that depends |
| 2622 | * on the pixel size. When it reaches the watermark level, it'll start |
| 2623 | * fetching FIFO line sized based chunks from memory until the FIFO fills |
| 2624 | * past the watermark point. If the FIFO drains completely, a FIFO underrun |
| 2625 | * will occur, and a display engine hang could result. |
| 2626 | */ |
Shaohua Li | 7662c8b | 2009-06-26 11:23:55 +0800 | [diff] [blame] | 2627 | static unsigned long intel_calculate_wm(unsigned long clock_in_khz, |
| 2628 | struct intel_watermark_params *wm, |
| 2629 | int pixel_size, |
| 2630 | unsigned long latency_ns) |
| 2631 | { |
Jesse Barnes | 390c4dd | 2009-07-16 13:01:01 -0700 | [diff] [blame] | 2632 | long entries_required, wm_size; |
Shaohua Li | 7662c8b | 2009-06-26 11:23:55 +0800 | [diff] [blame] | 2633 | |
Jesse Barnes | d660467 | 2009-09-11 12:25:56 -0700 | [diff] [blame] | 2634 | /* |
| 2635 | * Note: we need to make sure we don't overflow for various clock & |
| 2636 | * latency values. |
| 2637 | * clocks go from a few thousand to several hundred thousand. |
| 2638 | * latency is usually a few thousand |
| 2639 | */ |
| 2640 | entries_required = ((clock_in_khz / 1000) * pixel_size * latency_ns) / |
| 2641 | 1000; |
Jesse Barnes | dff33cf | 2009-07-14 10:15:56 -0700 | [diff] [blame] | 2642 | entries_required /= wm->cacheline_size; |
| 2643 | |
Zhao Yakui | 28c9773 | 2009-10-09 11:39:41 +0800 | [diff] [blame] | 2644 | DRM_DEBUG_KMS("FIFO entries required for mode: %d\n", entries_required); |
Jesse Barnes | dff33cf | 2009-07-14 10:15:56 -0700 | [diff] [blame] | 2645 | |
| 2646 | wm_size = wm->fifo_size - (entries_required + wm->guard_size); |
| 2647 | |
Zhao Yakui | 28c9773 | 2009-10-09 11:39:41 +0800 | [diff] [blame] | 2648 | DRM_DEBUG_KMS("FIFO watermark level: %d\n", wm_size); |
Shaohua Li | 7662c8b | 2009-06-26 11:23:55 +0800 | [diff] [blame] | 2649 | |
Jesse Barnes | 390c4dd | 2009-07-16 13:01:01 -0700 | [diff] [blame] | 2650 | /* Don't promote wm_size to unsigned... */ |
| 2651 | if (wm_size > (long)wm->max_wm) |
Shaohua Li | 7662c8b | 2009-06-26 11:23:55 +0800 | [diff] [blame] | 2652 | wm_size = wm->max_wm; |
Jesse Barnes | 390c4dd | 2009-07-16 13:01:01 -0700 | [diff] [blame] | 2653 | if (wm_size <= 0) |
Shaohua Li | 7662c8b | 2009-06-26 11:23:55 +0800 | [diff] [blame] | 2654 | wm_size = wm->default_wm; |
| 2655 | return wm_size; |
| 2656 | } |
| 2657 | |
| 2658 | struct cxsr_latency { |
| 2659 | int is_desktop; |
Li Peng | 9553426 | 2010-05-18 18:58:44 +0800 | [diff] [blame] | 2660 | int is_ddr3; |
Shaohua Li | 7662c8b | 2009-06-26 11:23:55 +0800 | [diff] [blame] | 2661 | unsigned long fsb_freq; |
| 2662 | unsigned long mem_freq; |
| 2663 | unsigned long display_sr; |
| 2664 | unsigned long display_hpll_disable; |
| 2665 | unsigned long cursor_sr; |
| 2666 | unsigned long cursor_hpll_disable; |
| 2667 | }; |
| 2668 | |
| 2669 | static struct cxsr_latency cxsr_latency_table[] = { |
Li Peng | 9553426 | 2010-05-18 18:58:44 +0800 | [diff] [blame] | 2670 | {1, 0, 800, 400, 3382, 33382, 3983, 33983}, /* DDR2-400 SC */ |
| 2671 | {1, 0, 800, 667, 3354, 33354, 3807, 33807}, /* DDR2-667 SC */ |
| 2672 | {1, 0, 800, 800, 3347, 33347, 3763, 33763}, /* DDR2-800 SC */ |
| 2673 | {1, 1, 800, 667, 6420, 36420, 6873, 36873}, /* DDR3-667 SC */ |
| 2674 | {1, 1, 800, 800, 5902, 35902, 6318, 36318}, /* DDR3-800 SC */ |
Shaohua Li | 7662c8b | 2009-06-26 11:23:55 +0800 | [diff] [blame] | 2675 | |
Li Peng | 9553426 | 2010-05-18 18:58:44 +0800 | [diff] [blame] | 2676 | {1, 0, 667, 400, 3400, 33400, 4021, 34021}, /* DDR2-400 SC */ |
| 2677 | {1, 0, 667, 667, 3372, 33372, 3845, 33845}, /* DDR2-667 SC */ |
| 2678 | {1, 0, 667, 800, 3386, 33386, 3822, 33822}, /* DDR2-800 SC */ |
| 2679 | {1, 1, 667, 667, 6438, 36438, 6911, 36911}, /* DDR3-667 SC */ |
| 2680 | {1, 1, 667, 800, 5941, 35941, 6377, 36377}, /* DDR3-800 SC */ |
Shaohua Li | 7662c8b | 2009-06-26 11:23:55 +0800 | [diff] [blame] | 2681 | |
Li Peng | 9553426 | 2010-05-18 18:58:44 +0800 | [diff] [blame] | 2682 | {1, 0, 400, 400, 3472, 33472, 4173, 34173}, /* DDR2-400 SC */ |
| 2683 | {1, 0, 400, 667, 3443, 33443, 3996, 33996}, /* DDR2-667 SC */ |
| 2684 | {1, 0, 400, 800, 3430, 33430, 3946, 33946}, /* DDR2-800 SC */ |
| 2685 | {1, 1, 400, 667, 6509, 36509, 7062, 37062}, /* DDR3-667 SC */ |
| 2686 | {1, 1, 400, 800, 5985, 35985, 6501, 36501}, /* DDR3-800 SC */ |
Shaohua Li | 7662c8b | 2009-06-26 11:23:55 +0800 | [diff] [blame] | 2687 | |
Li Peng | 9553426 | 2010-05-18 18:58:44 +0800 | [diff] [blame] | 2688 | {0, 0, 800, 400, 3438, 33438, 4065, 34065}, /* DDR2-400 SC */ |
| 2689 | {0, 0, 800, 667, 3410, 33410, 3889, 33889}, /* DDR2-667 SC */ |
| 2690 | {0, 0, 800, 800, 3403, 33403, 3845, 33845}, /* DDR2-800 SC */ |
| 2691 | {0, 1, 800, 667, 6476, 36476, 6955, 36955}, /* DDR3-667 SC */ |
| 2692 | {0, 1, 800, 800, 5958, 35958, 6400, 36400}, /* DDR3-800 SC */ |
Shaohua Li | 7662c8b | 2009-06-26 11:23:55 +0800 | [diff] [blame] | 2693 | |
Li Peng | 9553426 | 2010-05-18 18:58:44 +0800 | [diff] [blame] | 2694 | {0, 0, 667, 400, 3456, 33456, 4103, 34106}, /* DDR2-400 SC */ |
| 2695 | {0, 0, 667, 667, 3428, 33428, 3927, 33927}, /* DDR2-667 SC */ |
| 2696 | {0, 0, 667, 800, 3443, 33443, 3905, 33905}, /* DDR2-800 SC */ |
| 2697 | {0, 1, 667, 667, 6494, 36494, 6993, 36993}, /* DDR3-667 SC */ |
| 2698 | {0, 1, 667, 800, 5998, 35998, 6460, 36460}, /* DDR3-800 SC */ |
Shaohua Li | 7662c8b | 2009-06-26 11:23:55 +0800 | [diff] [blame] | 2699 | |
Li Peng | 9553426 | 2010-05-18 18:58:44 +0800 | [diff] [blame] | 2700 | {0, 0, 400, 400, 3528, 33528, 4255, 34255}, /* DDR2-400 SC */ |
| 2701 | {0, 0, 400, 667, 3500, 33500, 4079, 34079}, /* DDR2-667 SC */ |
| 2702 | {0, 0, 400, 800, 3487, 33487, 4029, 34029}, /* DDR2-800 SC */ |
| 2703 | {0, 1, 400, 667, 6566, 36566, 7145, 37145}, /* DDR3-667 SC */ |
| 2704 | {0, 1, 400, 800, 6042, 36042, 6584, 36584}, /* DDR3-800 SC */ |
Shaohua Li | 7662c8b | 2009-06-26 11:23:55 +0800 | [diff] [blame] | 2705 | }; |
| 2706 | |
Li Peng | 9553426 | 2010-05-18 18:58:44 +0800 | [diff] [blame] | 2707 | static struct cxsr_latency *intel_get_cxsr_latency(int is_desktop, int is_ddr3, |
| 2708 | int fsb, int mem) |
Shaohua Li | 7662c8b | 2009-06-26 11:23:55 +0800 | [diff] [blame] | 2709 | { |
| 2710 | int i; |
| 2711 | struct cxsr_latency *latency; |
| 2712 | |
| 2713 | if (fsb == 0 || mem == 0) |
| 2714 | return NULL; |
| 2715 | |
| 2716 | for (i = 0; i < ARRAY_SIZE(cxsr_latency_table); i++) { |
| 2717 | latency = &cxsr_latency_table[i]; |
| 2718 | if (is_desktop == latency->is_desktop && |
Li Peng | 9553426 | 2010-05-18 18:58:44 +0800 | [diff] [blame] | 2719 | is_ddr3 == latency->is_ddr3 && |
Jaswinder Singh Rajput | decbbcd | 2009-09-12 23:15:07 +0530 | [diff] [blame] | 2720 | fsb == latency->fsb_freq && mem == latency->mem_freq) |
| 2721 | return latency; |
Shaohua Li | 7662c8b | 2009-06-26 11:23:55 +0800 | [diff] [blame] | 2722 | } |
Jaswinder Singh Rajput | decbbcd | 2009-09-12 23:15:07 +0530 | [diff] [blame] | 2723 | |
Zhao Yakui | 28c9773 | 2009-10-09 11:39:41 +0800 | [diff] [blame] | 2724 | DRM_DEBUG_KMS("Unknown FSB/MEM found, disable CxSR\n"); |
Jaswinder Singh Rajput | decbbcd | 2009-09-12 23:15:07 +0530 | [diff] [blame] | 2725 | |
| 2726 | return NULL; |
Shaohua Li | 7662c8b | 2009-06-26 11:23:55 +0800 | [diff] [blame] | 2727 | } |
| 2728 | |
Adam Jackson | f2b115e | 2009-12-03 17:14:42 -0500 | [diff] [blame] | 2729 | static void pineview_disable_cxsr(struct drm_device *dev) |
Shaohua Li | 7662c8b | 2009-06-26 11:23:55 +0800 | [diff] [blame] | 2730 | { |
| 2731 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 2732 | u32 reg; |
| 2733 | |
| 2734 | /* deactivate cxsr */ |
| 2735 | reg = I915_READ(DSPFW3); |
Adam Jackson | f2b115e | 2009-12-03 17:14:42 -0500 | [diff] [blame] | 2736 | reg &= ~(PINEVIEW_SELF_REFRESH_EN); |
Shaohua Li | 7662c8b | 2009-06-26 11:23:55 +0800 | [diff] [blame] | 2737 | I915_WRITE(DSPFW3, reg); |
| 2738 | DRM_INFO("Big FIFO is disabled\n"); |
| 2739 | } |
| 2740 | |
Jesse Barnes | bcc24fb | 2009-08-31 10:24:31 -0700 | [diff] [blame] | 2741 | /* |
| 2742 | * Latency for FIFO fetches is dependent on several factors: |
| 2743 | * - memory configuration (speed, channels) |
| 2744 | * - chipset |
| 2745 | * - current MCH state |
| 2746 | * It can be fairly high in some situations, so here we assume a fairly |
| 2747 | * pessimal value. It's a tradeoff between extra memory fetches (if we |
| 2748 | * set this value too high, the FIFO will fetch frequently to stay full) |
| 2749 | * and power consumption (set it too low to save power and we might see |
| 2750 | * FIFO underruns and display "flicker"). |
| 2751 | * |
| 2752 | * A value of 5us seems to be a good balance; safe for very low end |
| 2753 | * platforms but not overly aggressive on lower latency configs. |
| 2754 | */ |
Tobias Klauser | 69e302a | 2009-12-23 14:14:34 +0100 | [diff] [blame] | 2755 | static const int latency_ns = 5000; |
Shaohua Li | 7662c8b | 2009-06-26 11:23:55 +0800 | [diff] [blame] | 2756 | |
Jesse Barnes | e70236a | 2009-09-21 10:42:27 -0700 | [diff] [blame] | 2757 | static int i9xx_get_fifo_size(struct drm_device *dev, int plane) |
Jesse Barnes | dff33cf | 2009-07-14 10:15:56 -0700 | [diff] [blame] | 2758 | { |
| 2759 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 2760 | uint32_t dsparb = I915_READ(DSPARB); |
| 2761 | int size; |
| 2762 | |
Jesse Barnes | e70236a | 2009-09-21 10:42:27 -0700 | [diff] [blame] | 2763 | if (plane == 0) |
Jesse Barnes | f360132 | 2009-07-22 12:54:59 -0700 | [diff] [blame] | 2764 | size = dsparb & 0x7f; |
Jesse Barnes | e70236a | 2009-09-21 10:42:27 -0700 | [diff] [blame] | 2765 | else |
| 2766 | size = ((dsparb >> DSPARB_CSTART_SHIFT) & 0x7f) - |
| 2767 | (dsparb & 0x7f); |
Jesse Barnes | dff33cf | 2009-07-14 10:15:56 -0700 | [diff] [blame] | 2768 | |
Zhao Yakui | 28c9773 | 2009-10-09 11:39:41 +0800 | [diff] [blame] | 2769 | DRM_DEBUG_KMS("FIFO size - (0x%08x) %s: %d\n", dsparb, |
| 2770 | plane ? "B" : "A", size); |
Jesse Barnes | dff33cf | 2009-07-14 10:15:56 -0700 | [diff] [blame] | 2771 | |
| 2772 | return size; |
| 2773 | } |
Shaohua Li | 7662c8b | 2009-06-26 11:23:55 +0800 | [diff] [blame] | 2774 | |
Jesse Barnes | e70236a | 2009-09-21 10:42:27 -0700 | [diff] [blame] | 2775 | static int i85x_get_fifo_size(struct drm_device *dev, int plane) |
| 2776 | { |
| 2777 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 2778 | uint32_t dsparb = I915_READ(DSPARB); |
| 2779 | int size; |
| 2780 | |
| 2781 | if (plane == 0) |
| 2782 | size = dsparb & 0x1ff; |
| 2783 | else |
| 2784 | size = ((dsparb >> DSPARB_BEND_SHIFT) & 0x1ff) - |
| 2785 | (dsparb & 0x1ff); |
| 2786 | size >>= 1; /* Convert to cachelines */ |
| 2787 | |
Zhao Yakui | 28c9773 | 2009-10-09 11:39:41 +0800 | [diff] [blame] | 2788 | DRM_DEBUG_KMS("FIFO size - (0x%08x) %s: %d\n", dsparb, |
| 2789 | plane ? "B" : "A", size); |
Jesse Barnes | e70236a | 2009-09-21 10:42:27 -0700 | [diff] [blame] | 2790 | |
| 2791 | return size; |
| 2792 | } |
| 2793 | |
| 2794 | static int i845_get_fifo_size(struct drm_device *dev, int plane) |
| 2795 | { |
| 2796 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 2797 | uint32_t dsparb = I915_READ(DSPARB); |
| 2798 | int size; |
| 2799 | |
| 2800 | size = dsparb & 0x7f; |
| 2801 | size >>= 2; /* Convert to cachelines */ |
| 2802 | |
Zhao Yakui | 28c9773 | 2009-10-09 11:39:41 +0800 | [diff] [blame] | 2803 | DRM_DEBUG_KMS("FIFO size - (0x%08x) %s: %d\n", dsparb, |
| 2804 | plane ? "B" : "A", |
Jesse Barnes | e70236a | 2009-09-21 10:42:27 -0700 | [diff] [blame] | 2805 | size); |
| 2806 | |
| 2807 | return size; |
| 2808 | } |
| 2809 | |
| 2810 | static int i830_get_fifo_size(struct drm_device *dev, int plane) |
| 2811 | { |
| 2812 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 2813 | uint32_t dsparb = I915_READ(DSPARB); |
| 2814 | int size; |
| 2815 | |
| 2816 | size = dsparb & 0x7f; |
| 2817 | size >>= 1; /* Convert to cachelines */ |
| 2818 | |
Zhao Yakui | 28c9773 | 2009-10-09 11:39:41 +0800 | [diff] [blame] | 2819 | DRM_DEBUG_KMS("FIFO size - (0x%08x) %s: %d\n", dsparb, |
| 2820 | plane ? "B" : "A", size); |
Jesse Barnes | e70236a | 2009-09-21 10:42:27 -0700 | [diff] [blame] | 2821 | |
| 2822 | return size; |
| 2823 | } |
| 2824 | |
Zhao Yakui | d429434 | 2010-03-22 22:45:36 +0800 | [diff] [blame] | 2825 | static void pineview_update_wm(struct drm_device *dev, int planea_clock, |
Zhao Yakui | fa14321 | 2010-06-12 14:32:23 +0800 | [diff] [blame] | 2826 | int planeb_clock, int sr_hdisplay, int unused, |
| 2827 | int pixel_size) |
Zhao Yakui | d429434 | 2010-03-22 22:45:36 +0800 | [diff] [blame] | 2828 | { |
| 2829 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 2830 | u32 reg; |
| 2831 | unsigned long wm; |
| 2832 | struct cxsr_latency *latency; |
| 2833 | int sr_clock; |
| 2834 | |
Li Peng | 9553426 | 2010-05-18 18:58:44 +0800 | [diff] [blame] | 2835 | latency = intel_get_cxsr_latency(IS_PINEVIEW_G(dev), dev_priv->is_ddr3, |
| 2836 | dev_priv->fsb_freq, dev_priv->mem_freq); |
Zhao Yakui | d429434 | 2010-03-22 22:45:36 +0800 | [diff] [blame] | 2837 | if (!latency) { |
| 2838 | DRM_DEBUG_KMS("Unknown FSB/MEM found, disable CxSR\n"); |
| 2839 | pineview_disable_cxsr(dev); |
| 2840 | return; |
| 2841 | } |
| 2842 | |
| 2843 | if (!planea_clock || !planeb_clock) { |
| 2844 | sr_clock = planea_clock ? planea_clock : planeb_clock; |
| 2845 | |
| 2846 | /* Display SR */ |
| 2847 | wm = intel_calculate_wm(sr_clock, &pineview_display_wm, |
| 2848 | pixel_size, latency->display_sr); |
| 2849 | reg = I915_READ(DSPFW1); |
| 2850 | reg &= ~DSPFW_SR_MASK; |
| 2851 | reg |= wm << DSPFW_SR_SHIFT; |
| 2852 | I915_WRITE(DSPFW1, reg); |
| 2853 | DRM_DEBUG_KMS("DSPFW1 register is %x\n", reg); |
| 2854 | |
| 2855 | /* cursor SR */ |
| 2856 | wm = intel_calculate_wm(sr_clock, &pineview_cursor_wm, |
| 2857 | pixel_size, latency->cursor_sr); |
| 2858 | reg = I915_READ(DSPFW3); |
| 2859 | reg &= ~DSPFW_CURSOR_SR_MASK; |
| 2860 | reg |= (wm & 0x3f) << DSPFW_CURSOR_SR_SHIFT; |
| 2861 | I915_WRITE(DSPFW3, reg); |
| 2862 | |
| 2863 | /* Display HPLL off SR */ |
| 2864 | wm = intel_calculate_wm(sr_clock, &pineview_display_hplloff_wm, |
| 2865 | pixel_size, latency->display_hpll_disable); |
| 2866 | reg = I915_READ(DSPFW3); |
| 2867 | reg &= ~DSPFW_HPLL_SR_MASK; |
| 2868 | reg |= wm & DSPFW_HPLL_SR_MASK; |
| 2869 | I915_WRITE(DSPFW3, reg); |
| 2870 | |
| 2871 | /* cursor HPLL off SR */ |
| 2872 | wm = intel_calculate_wm(sr_clock, &pineview_cursor_hplloff_wm, |
| 2873 | pixel_size, latency->cursor_hpll_disable); |
| 2874 | reg = I915_READ(DSPFW3); |
| 2875 | reg &= ~DSPFW_HPLL_CURSOR_MASK; |
| 2876 | reg |= (wm & 0x3f) << DSPFW_HPLL_CURSOR_SHIFT; |
| 2877 | I915_WRITE(DSPFW3, reg); |
| 2878 | DRM_DEBUG_KMS("DSPFW3 register is %x\n", reg); |
| 2879 | |
| 2880 | /* activate cxsr */ |
| 2881 | reg = I915_READ(DSPFW3); |
| 2882 | reg |= PINEVIEW_SELF_REFRESH_EN; |
| 2883 | I915_WRITE(DSPFW3, reg); |
| 2884 | DRM_DEBUG_KMS("Self-refresh is enabled\n"); |
| 2885 | } else { |
| 2886 | pineview_disable_cxsr(dev); |
| 2887 | DRM_DEBUG_KMS("Self-refresh is disabled\n"); |
| 2888 | } |
| 2889 | } |
| 2890 | |
Jesse Barnes | 0e442c6 | 2009-10-19 10:09:33 +0900 | [diff] [blame] | 2891 | static void g4x_update_wm(struct drm_device *dev, int planea_clock, |
Zhao Yakui | fa14321 | 2010-06-12 14:32:23 +0800 | [diff] [blame] | 2892 | int planeb_clock, int sr_hdisplay, int sr_htotal, |
| 2893 | int pixel_size) |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 2894 | { |
| 2895 | struct drm_i915_private *dev_priv = dev->dev_private; |
Jesse Barnes | 0e442c6 | 2009-10-19 10:09:33 +0900 | [diff] [blame] | 2896 | int total_size, cacheline_size; |
| 2897 | int planea_wm, planeb_wm, cursora_wm, cursorb_wm, cursor_sr; |
| 2898 | struct intel_watermark_params planea_params, planeb_params; |
| 2899 | unsigned long line_time_us; |
| 2900 | int sr_clock, sr_entries = 0, entries_required; |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 2901 | |
Jesse Barnes | 0e442c6 | 2009-10-19 10:09:33 +0900 | [diff] [blame] | 2902 | /* Create copies of the base settings for each pipe */ |
| 2903 | planea_params = planeb_params = g4x_wm_info; |
| 2904 | |
| 2905 | /* Grab a couple of global values before we overwrite them */ |
| 2906 | total_size = planea_params.fifo_size; |
| 2907 | cacheline_size = planea_params.cacheline_size; |
| 2908 | |
| 2909 | /* |
| 2910 | * Note: we need to make sure we don't overflow for various clock & |
| 2911 | * latency values. |
| 2912 | * clocks go from a few thousand to several hundred thousand. |
| 2913 | * latency is usually a few thousand |
| 2914 | */ |
| 2915 | entries_required = ((planea_clock / 1000) * pixel_size * latency_ns) / |
| 2916 | 1000; |
| 2917 | entries_required /= G4X_FIFO_LINE_SIZE; |
| 2918 | planea_wm = entries_required + planea_params.guard_size; |
| 2919 | |
| 2920 | entries_required = ((planeb_clock / 1000) * pixel_size * latency_ns) / |
| 2921 | 1000; |
| 2922 | entries_required /= G4X_FIFO_LINE_SIZE; |
| 2923 | planeb_wm = entries_required + planeb_params.guard_size; |
| 2924 | |
| 2925 | cursora_wm = cursorb_wm = 16; |
| 2926 | cursor_sr = 32; |
| 2927 | |
| 2928 | DRM_DEBUG("FIFO watermarks - A: %d, B: %d\n", planea_wm, planeb_wm); |
| 2929 | |
| 2930 | /* Calc sr entries for one plane configs */ |
| 2931 | if (sr_hdisplay && (!planea_clock || !planeb_clock)) { |
| 2932 | /* self-refresh has much higher latency */ |
Tobias Klauser | 69e302a | 2009-12-23 14:14:34 +0100 | [diff] [blame] | 2933 | static const int sr_latency_ns = 12000; |
Jesse Barnes | 0e442c6 | 2009-10-19 10:09:33 +0900 | [diff] [blame] | 2934 | |
| 2935 | sr_clock = planea_clock ? planea_clock : planeb_clock; |
Zhao Yakui | fa14321 | 2010-06-12 14:32:23 +0800 | [diff] [blame] | 2936 | line_time_us = ((sr_htotal * 1000) / sr_clock); |
Jesse Barnes | 0e442c6 | 2009-10-19 10:09:33 +0900 | [diff] [blame] | 2937 | |
| 2938 | /* Use ns/us then divide to preserve precision */ |
Zhao Yakui | fa14321 | 2010-06-12 14:32:23 +0800 | [diff] [blame] | 2939 | sr_entries = (((sr_latency_ns / line_time_us) + 1000) / 1000) * |
| 2940 | pixel_size * sr_hdisplay; |
Jesse Barnes | 0e442c6 | 2009-10-19 10:09:33 +0900 | [diff] [blame] | 2941 | sr_entries = roundup(sr_entries / cacheline_size, 1); |
Zhao Yakui | 4fe5e61 | 2010-06-12 14:32:25 +0800 | [diff] [blame^] | 2942 | |
| 2943 | entries_required = (((sr_latency_ns / line_time_us) + |
| 2944 | 1000) / 1000) * pixel_size * 64; |
| 2945 | entries_required = roundup(entries_required / |
| 2946 | g4x_cursor_wm_info.cacheline_size, 1); |
| 2947 | cursor_sr = entries_required + g4x_cursor_wm_info.guard_size; |
| 2948 | |
| 2949 | if (cursor_sr > g4x_cursor_wm_info.max_wm) |
| 2950 | cursor_sr = g4x_cursor_wm_info.max_wm; |
| 2951 | DRM_DEBUG_KMS("self-refresh watermark: display plane %d " |
| 2952 | "cursor %d\n", sr_entries, cursor_sr); |
| 2953 | |
Jesse Barnes | 0e442c6 | 2009-10-19 10:09:33 +0900 | [diff] [blame] | 2954 | I915_WRITE(FW_BLC_SELF, FW_BLC_SELF_EN); |
David John | 33c5fd1 | 2010-01-27 15:19:08 +0530 | [diff] [blame] | 2955 | } else { |
| 2956 | /* Turn off self refresh if both pipes are enabled */ |
| 2957 | I915_WRITE(FW_BLC_SELF, I915_READ(FW_BLC_SELF) |
| 2958 | & ~FW_BLC_SELF_EN); |
Jesse Barnes | 0e442c6 | 2009-10-19 10:09:33 +0900 | [diff] [blame] | 2959 | } |
| 2960 | |
| 2961 | DRM_DEBUG("Setting FIFO watermarks - A: %d, B: %d, SR %d\n", |
| 2962 | planea_wm, planeb_wm, sr_entries); |
| 2963 | |
| 2964 | planea_wm &= 0x3f; |
| 2965 | planeb_wm &= 0x3f; |
| 2966 | |
| 2967 | I915_WRITE(DSPFW1, (sr_entries << DSPFW_SR_SHIFT) | |
| 2968 | (cursorb_wm << DSPFW_CURSORB_SHIFT) | |
| 2969 | (planeb_wm << DSPFW_PLANEB_SHIFT) | planea_wm); |
| 2970 | I915_WRITE(DSPFW2, (I915_READ(DSPFW2) & DSPFW_CURSORA_MASK) | |
| 2971 | (cursora_wm << DSPFW_CURSORA_SHIFT)); |
| 2972 | /* HPLL off in SR has some issues on G4x... disable it */ |
| 2973 | I915_WRITE(DSPFW3, (I915_READ(DSPFW3) & ~DSPFW_HPLL_SR_EN) | |
| 2974 | (cursor_sr << DSPFW_CURSOR_SR_SHIFT)); |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 2975 | } |
| 2976 | |
Jesse Barnes | 1dc7546 | 2009-10-19 10:08:17 +0900 | [diff] [blame] | 2977 | static void i965_update_wm(struct drm_device *dev, int planea_clock, |
Zhao Yakui | fa14321 | 2010-06-12 14:32:23 +0800 | [diff] [blame] | 2978 | int planeb_clock, int sr_hdisplay, int sr_htotal, |
| 2979 | int pixel_size) |
Shaohua Li | 7662c8b | 2009-06-26 11:23:55 +0800 | [diff] [blame] | 2980 | { |
| 2981 | struct drm_i915_private *dev_priv = dev->dev_private; |
Jesse Barnes | 1dc7546 | 2009-10-19 10:08:17 +0900 | [diff] [blame] | 2982 | unsigned long line_time_us; |
| 2983 | int sr_clock, sr_entries, srwm = 1; |
Zhao Yakui | 4fe5e61 | 2010-06-12 14:32:25 +0800 | [diff] [blame^] | 2984 | int cursor_sr = 16; |
Shaohua Li | 7662c8b | 2009-06-26 11:23:55 +0800 | [diff] [blame] | 2985 | |
Jesse Barnes | 1dc7546 | 2009-10-19 10:08:17 +0900 | [diff] [blame] | 2986 | /* Calc sr entries for one plane configs */ |
| 2987 | if (sr_hdisplay && (!planea_clock || !planeb_clock)) { |
| 2988 | /* self-refresh has much higher latency */ |
Tobias Klauser | 69e302a | 2009-12-23 14:14:34 +0100 | [diff] [blame] | 2989 | static const int sr_latency_ns = 12000; |
Jesse Barnes | 1dc7546 | 2009-10-19 10:08:17 +0900 | [diff] [blame] | 2990 | |
| 2991 | sr_clock = planea_clock ? planea_clock : planeb_clock; |
Zhao Yakui | fa14321 | 2010-06-12 14:32:23 +0800 | [diff] [blame] | 2992 | line_time_us = ((sr_htotal * 1000) / sr_clock); |
Jesse Barnes | 1dc7546 | 2009-10-19 10:08:17 +0900 | [diff] [blame] | 2993 | |
| 2994 | /* Use ns/us then divide to preserve precision */ |
Zhao Yakui | fa14321 | 2010-06-12 14:32:23 +0800 | [diff] [blame] | 2995 | sr_entries = (((sr_latency_ns / line_time_us) + 1000) / 1000) * |
| 2996 | pixel_size * sr_hdisplay; |
Jesse Barnes | 1dc7546 | 2009-10-19 10:08:17 +0900 | [diff] [blame] | 2997 | sr_entries = roundup(sr_entries / I915_FIFO_LINE_SIZE, 1); |
| 2998 | DRM_DEBUG("self-refresh entries: %d\n", sr_entries); |
Zhao Yakui | 1b07e04 | 2010-06-12 14:32:24 +0800 | [diff] [blame] | 2999 | srwm = I965_FIFO_SIZE - sr_entries; |
Jesse Barnes | 1dc7546 | 2009-10-19 10:08:17 +0900 | [diff] [blame] | 3000 | if (srwm < 0) |
| 3001 | srwm = 1; |
Zhao Yakui | 1b07e04 | 2010-06-12 14:32:24 +0800 | [diff] [blame] | 3002 | srwm &= 0x1ff; |
Zhao Yakui | 4fe5e61 | 2010-06-12 14:32:25 +0800 | [diff] [blame^] | 3003 | |
| 3004 | sr_entries = (((sr_latency_ns / line_time_us) + 1000) / 1000) * |
| 3005 | pixel_size * 64; |
| 3006 | sr_entries = roundup(sr_entries / |
| 3007 | i965_cursor_wm_info.cacheline_size, 1); |
| 3008 | cursor_sr = i965_cursor_wm_info.fifo_size - |
| 3009 | (sr_entries + i965_cursor_wm_info.guard_size); |
| 3010 | |
| 3011 | if (cursor_sr > i965_cursor_wm_info.max_wm) |
| 3012 | cursor_sr = i965_cursor_wm_info.max_wm; |
| 3013 | |
| 3014 | DRM_DEBUG_KMS("self-refresh watermark: display plane %d " |
| 3015 | "cursor %d\n", srwm, cursor_sr); |
| 3016 | |
Jesse Barnes | adcdbc6 | 2010-06-30 13:49:37 -0700 | [diff] [blame] | 3017 | if (IS_I965GM(dev)) |
| 3018 | I915_WRITE(FW_BLC_SELF, FW_BLC_SELF_EN); |
David John | 33c5fd1 | 2010-01-27 15:19:08 +0530 | [diff] [blame] | 3019 | } else { |
| 3020 | /* Turn off self refresh if both pipes are enabled */ |
Jesse Barnes | adcdbc6 | 2010-06-30 13:49:37 -0700 | [diff] [blame] | 3021 | if (IS_I965GM(dev)) |
| 3022 | I915_WRITE(FW_BLC_SELF, I915_READ(FW_BLC_SELF) |
| 3023 | & ~FW_BLC_SELF_EN); |
Jesse Barnes | 1dc7546 | 2009-10-19 10:08:17 +0900 | [diff] [blame] | 3024 | } |
| 3025 | |
| 3026 | DRM_DEBUG_KMS("Setting FIFO watermarks - A: 8, B: 8, C: 8, SR %d\n", |
| 3027 | srwm); |
Shaohua Li | 7662c8b | 2009-06-26 11:23:55 +0800 | [diff] [blame] | 3028 | |
| 3029 | /* 965 has limitations... */ |
Jesse Barnes | 1dc7546 | 2009-10-19 10:08:17 +0900 | [diff] [blame] | 3030 | I915_WRITE(DSPFW1, (srwm << DSPFW_SR_SHIFT) | (8 << 16) | (8 << 8) | |
| 3031 | (8 << 0)); |
Shaohua Li | 7662c8b | 2009-06-26 11:23:55 +0800 | [diff] [blame] | 3032 | I915_WRITE(DSPFW2, (8 << 8) | (8 << 0)); |
Zhao Yakui | 4fe5e61 | 2010-06-12 14:32:25 +0800 | [diff] [blame^] | 3033 | /* update cursor SR watermark */ |
| 3034 | I915_WRITE(DSPFW3, (cursor_sr << DSPFW_CURSOR_SR_SHIFT)); |
Shaohua Li | 7662c8b | 2009-06-26 11:23:55 +0800 | [diff] [blame] | 3035 | } |
| 3036 | |
| 3037 | static void i9xx_update_wm(struct drm_device *dev, int planea_clock, |
Zhao Yakui | fa14321 | 2010-06-12 14:32:23 +0800 | [diff] [blame] | 3038 | int planeb_clock, int sr_hdisplay, int sr_htotal, |
| 3039 | int pixel_size) |
Shaohua Li | 7662c8b | 2009-06-26 11:23:55 +0800 | [diff] [blame] | 3040 | { |
| 3041 | struct drm_i915_private *dev_priv = dev->dev_private; |
Jesse Barnes | dff33cf | 2009-07-14 10:15:56 -0700 | [diff] [blame] | 3042 | uint32_t fwater_lo; |
| 3043 | uint32_t fwater_hi; |
| 3044 | int total_size, cacheline_size, cwm, srwm = 1; |
| 3045 | int planea_wm, planeb_wm; |
| 3046 | struct intel_watermark_params planea_params, planeb_params; |
Shaohua Li | 7662c8b | 2009-06-26 11:23:55 +0800 | [diff] [blame] | 3047 | unsigned long line_time_us; |
| 3048 | int sr_clock, sr_entries = 0; |
| 3049 | |
Jesse Barnes | dff33cf | 2009-07-14 10:15:56 -0700 | [diff] [blame] | 3050 | /* Create copies of the base settings for each pipe */ |
Shaohua Li | 7662c8b | 2009-06-26 11:23:55 +0800 | [diff] [blame] | 3051 | if (IS_I965GM(dev) || IS_I945GM(dev)) |
Jesse Barnes | dff33cf | 2009-07-14 10:15:56 -0700 | [diff] [blame] | 3052 | planea_params = planeb_params = i945_wm_info; |
Shaohua Li | 7662c8b | 2009-06-26 11:23:55 +0800 | [diff] [blame] | 3053 | else if (IS_I9XX(dev)) |
Jesse Barnes | dff33cf | 2009-07-14 10:15:56 -0700 | [diff] [blame] | 3054 | planea_params = planeb_params = i915_wm_info; |
Shaohua Li | 7662c8b | 2009-06-26 11:23:55 +0800 | [diff] [blame] | 3055 | else |
Jesse Barnes | dff33cf | 2009-07-14 10:15:56 -0700 | [diff] [blame] | 3056 | planea_params = planeb_params = i855_wm_info; |
Shaohua Li | 7662c8b | 2009-06-26 11:23:55 +0800 | [diff] [blame] | 3057 | |
Jesse Barnes | dff33cf | 2009-07-14 10:15:56 -0700 | [diff] [blame] | 3058 | /* Grab a couple of global values before we overwrite them */ |
| 3059 | total_size = planea_params.fifo_size; |
| 3060 | cacheline_size = planea_params.cacheline_size; |
Shaohua Li | 7662c8b | 2009-06-26 11:23:55 +0800 | [diff] [blame] | 3061 | |
Jesse Barnes | dff33cf | 2009-07-14 10:15:56 -0700 | [diff] [blame] | 3062 | /* Update per-plane FIFO sizes */ |
Jesse Barnes | e70236a | 2009-09-21 10:42:27 -0700 | [diff] [blame] | 3063 | planea_params.fifo_size = dev_priv->display.get_fifo_size(dev, 0); |
| 3064 | planeb_params.fifo_size = dev_priv->display.get_fifo_size(dev, 1); |
Shaohua Li | 7662c8b | 2009-06-26 11:23:55 +0800 | [diff] [blame] | 3065 | |
Jesse Barnes | dff33cf | 2009-07-14 10:15:56 -0700 | [diff] [blame] | 3066 | planea_wm = intel_calculate_wm(planea_clock, &planea_params, |
| 3067 | pixel_size, latency_ns); |
| 3068 | planeb_wm = intel_calculate_wm(planeb_clock, &planeb_params, |
| 3069 | pixel_size, latency_ns); |
Zhao Yakui | 28c9773 | 2009-10-09 11:39:41 +0800 | [diff] [blame] | 3070 | DRM_DEBUG_KMS("FIFO watermarks - A: %d, B: %d\n", planea_wm, planeb_wm); |
Shaohua Li | 7662c8b | 2009-06-26 11:23:55 +0800 | [diff] [blame] | 3071 | |
| 3072 | /* |
| 3073 | * Overlay gets an aggressive default since video jitter is bad. |
| 3074 | */ |
| 3075 | cwm = 2; |
| 3076 | |
Jesse Barnes | dff33cf | 2009-07-14 10:15:56 -0700 | [diff] [blame] | 3077 | /* Calc sr entries for one plane configs */ |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 3078 | if (HAS_FW_BLC(dev) && sr_hdisplay && |
| 3079 | (!planea_clock || !planeb_clock)) { |
Jesse Barnes | dff33cf | 2009-07-14 10:15:56 -0700 | [diff] [blame] | 3080 | /* self-refresh has much higher latency */ |
Tobias Klauser | 69e302a | 2009-12-23 14:14:34 +0100 | [diff] [blame] | 3081 | static const int sr_latency_ns = 6000; |
Jesse Barnes | dff33cf | 2009-07-14 10:15:56 -0700 | [diff] [blame] | 3082 | |
Shaohua Li | 7662c8b | 2009-06-26 11:23:55 +0800 | [diff] [blame] | 3083 | sr_clock = planea_clock ? planea_clock : planeb_clock; |
Zhao Yakui | fa14321 | 2010-06-12 14:32:23 +0800 | [diff] [blame] | 3084 | line_time_us = ((sr_htotal * 1000) / sr_clock); |
Jesse Barnes | dff33cf | 2009-07-14 10:15:56 -0700 | [diff] [blame] | 3085 | |
| 3086 | /* Use ns/us then divide to preserve precision */ |
Zhao Yakui | fa14321 | 2010-06-12 14:32:23 +0800 | [diff] [blame] | 3087 | sr_entries = (((sr_latency_ns / line_time_us) + 1000) / 1000) * |
| 3088 | pixel_size * sr_hdisplay; |
Jesse Barnes | dff33cf | 2009-07-14 10:15:56 -0700 | [diff] [blame] | 3089 | sr_entries = roundup(sr_entries / cacheline_size, 1); |
Zhao Yakui | 28c9773 | 2009-10-09 11:39:41 +0800 | [diff] [blame] | 3090 | DRM_DEBUG_KMS("self-refresh entries: %d\n", sr_entries); |
Jesse Barnes | dff33cf | 2009-07-14 10:15:56 -0700 | [diff] [blame] | 3091 | srwm = total_size - sr_entries; |
| 3092 | if (srwm < 0) |
| 3093 | srwm = 1; |
Li Peng | ee980b8 | 2010-01-27 19:01:11 +0800 | [diff] [blame] | 3094 | |
| 3095 | if (IS_I945G(dev) || IS_I945GM(dev)) |
| 3096 | I915_WRITE(FW_BLC_SELF, FW_BLC_SELF_FIFO_MASK | (srwm & 0xff)); |
| 3097 | else if (IS_I915GM(dev)) { |
| 3098 | /* 915M has a smaller SRWM field */ |
| 3099 | I915_WRITE(FW_BLC_SELF, srwm & 0x3f); |
| 3100 | I915_WRITE(INSTPM, I915_READ(INSTPM) | INSTPM_SELF_EN); |
| 3101 | } |
David John | 33c5fd1 | 2010-01-27 15:19:08 +0530 | [diff] [blame] | 3102 | } else { |
| 3103 | /* Turn off self refresh if both pipes are enabled */ |
Li Peng | ee980b8 | 2010-01-27 19:01:11 +0800 | [diff] [blame] | 3104 | if (IS_I945G(dev) || IS_I945GM(dev)) { |
| 3105 | I915_WRITE(FW_BLC_SELF, I915_READ(FW_BLC_SELF) |
| 3106 | & ~FW_BLC_SELF_EN); |
| 3107 | } else if (IS_I915GM(dev)) { |
| 3108 | I915_WRITE(INSTPM, I915_READ(INSTPM) & ~INSTPM_SELF_EN); |
| 3109 | } |
Shaohua Li | 7662c8b | 2009-06-26 11:23:55 +0800 | [diff] [blame] | 3110 | } |
| 3111 | |
Zhao Yakui | 28c9773 | 2009-10-09 11:39:41 +0800 | [diff] [blame] | 3112 | DRM_DEBUG_KMS("Setting FIFO watermarks - A: %d, B: %d, C: %d, SR %d\n", |
Jesse Barnes | dff33cf | 2009-07-14 10:15:56 -0700 | [diff] [blame] | 3113 | planea_wm, planeb_wm, cwm, srwm); |
Shaohua Li | 7662c8b | 2009-06-26 11:23:55 +0800 | [diff] [blame] | 3114 | |
Jesse Barnes | dff33cf | 2009-07-14 10:15:56 -0700 | [diff] [blame] | 3115 | fwater_lo = ((planeb_wm & 0x3f) << 16) | (planea_wm & 0x3f); |
| 3116 | fwater_hi = (cwm & 0x1f); |
| 3117 | |
| 3118 | /* Set request length to 8 cachelines per fetch */ |
| 3119 | fwater_lo = fwater_lo | (1 << 24) | (1 << 8); |
| 3120 | fwater_hi = fwater_hi | (1 << 8); |
Shaohua Li | 7662c8b | 2009-06-26 11:23:55 +0800 | [diff] [blame] | 3121 | |
| 3122 | I915_WRITE(FW_BLC, fwater_lo); |
| 3123 | I915_WRITE(FW_BLC2, fwater_hi); |
Shaohua Li | 7662c8b | 2009-06-26 11:23:55 +0800 | [diff] [blame] | 3124 | } |
| 3125 | |
Jesse Barnes | e70236a | 2009-09-21 10:42:27 -0700 | [diff] [blame] | 3126 | static void i830_update_wm(struct drm_device *dev, int planea_clock, int unused, |
Zhao Yakui | fa14321 | 2010-06-12 14:32:23 +0800 | [diff] [blame] | 3127 | int unused2, int unused3, int pixel_size) |
Shaohua Li | 7662c8b | 2009-06-26 11:23:55 +0800 | [diff] [blame] | 3128 | { |
| 3129 | struct drm_i915_private *dev_priv = dev->dev_private; |
Jesse Barnes | f360132 | 2009-07-22 12:54:59 -0700 | [diff] [blame] | 3130 | uint32_t fwater_lo = I915_READ(FW_BLC) & ~0xfff; |
Jesse Barnes | dff33cf | 2009-07-14 10:15:56 -0700 | [diff] [blame] | 3131 | int planea_wm; |
Shaohua Li | 7662c8b | 2009-06-26 11:23:55 +0800 | [diff] [blame] | 3132 | |
Jesse Barnes | e70236a | 2009-09-21 10:42:27 -0700 | [diff] [blame] | 3133 | i830_wm_info.fifo_size = dev_priv->display.get_fifo_size(dev, 0); |
Shaohua Li | 7662c8b | 2009-06-26 11:23:55 +0800 | [diff] [blame] | 3134 | |
Jesse Barnes | dff33cf | 2009-07-14 10:15:56 -0700 | [diff] [blame] | 3135 | planea_wm = intel_calculate_wm(planea_clock, &i830_wm_info, |
| 3136 | pixel_size, latency_ns); |
Jesse Barnes | f360132 | 2009-07-22 12:54:59 -0700 | [diff] [blame] | 3137 | fwater_lo |= (3<<8) | planea_wm; |
| 3138 | |
Zhao Yakui | 28c9773 | 2009-10-09 11:39:41 +0800 | [diff] [blame] | 3139 | DRM_DEBUG_KMS("Setting FIFO watermarks - A: %d\n", planea_wm); |
Shaohua Li | 7662c8b | 2009-06-26 11:23:55 +0800 | [diff] [blame] | 3140 | |
| 3141 | I915_WRITE(FW_BLC, fwater_lo); |
| 3142 | } |
| 3143 | |
Zhenyu Wang | 7f8a856 | 2010-04-01 13:07:53 +0800 | [diff] [blame] | 3144 | #define ILK_LP0_PLANE_LATENCY 700 |
| 3145 | |
| 3146 | static void ironlake_update_wm(struct drm_device *dev, int planea_clock, |
Zhao Yakui | fa14321 | 2010-06-12 14:32:23 +0800 | [diff] [blame] | 3147 | int planeb_clock, int sr_hdisplay, int sr_htotal, |
| 3148 | int pixel_size) |
Zhenyu Wang | 7f8a856 | 2010-04-01 13:07:53 +0800 | [diff] [blame] | 3149 | { |
| 3150 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 3151 | int planea_wm, planeb_wm, cursora_wm, cursorb_wm; |
| 3152 | int sr_wm, cursor_wm; |
| 3153 | unsigned long line_time_us; |
| 3154 | int sr_clock, entries_required; |
| 3155 | u32 reg_value; |
| 3156 | |
| 3157 | /* Calculate and update the watermark for plane A */ |
| 3158 | if (planea_clock) { |
| 3159 | entries_required = ((planea_clock / 1000) * pixel_size * |
| 3160 | ILK_LP0_PLANE_LATENCY) / 1000; |
| 3161 | entries_required = DIV_ROUND_UP(entries_required, |
| 3162 | ironlake_display_wm_info.cacheline_size); |
| 3163 | planea_wm = entries_required + |
| 3164 | ironlake_display_wm_info.guard_size; |
| 3165 | |
| 3166 | if (planea_wm > (int)ironlake_display_wm_info.max_wm) |
| 3167 | planea_wm = ironlake_display_wm_info.max_wm; |
| 3168 | |
| 3169 | cursora_wm = 16; |
| 3170 | reg_value = I915_READ(WM0_PIPEA_ILK); |
| 3171 | reg_value &= ~(WM0_PIPE_PLANE_MASK | WM0_PIPE_CURSOR_MASK); |
| 3172 | reg_value |= (planea_wm << WM0_PIPE_PLANE_SHIFT) | |
| 3173 | (cursora_wm & WM0_PIPE_CURSOR_MASK); |
| 3174 | I915_WRITE(WM0_PIPEA_ILK, reg_value); |
| 3175 | DRM_DEBUG_KMS("FIFO watermarks For pipe A - plane %d, " |
| 3176 | "cursor: %d\n", planea_wm, cursora_wm); |
| 3177 | } |
| 3178 | /* Calculate and update the watermark for plane B */ |
| 3179 | if (planeb_clock) { |
| 3180 | entries_required = ((planeb_clock / 1000) * pixel_size * |
| 3181 | ILK_LP0_PLANE_LATENCY) / 1000; |
| 3182 | entries_required = DIV_ROUND_UP(entries_required, |
| 3183 | ironlake_display_wm_info.cacheline_size); |
| 3184 | planeb_wm = entries_required + |
| 3185 | ironlake_display_wm_info.guard_size; |
| 3186 | |
| 3187 | if (planeb_wm > (int)ironlake_display_wm_info.max_wm) |
| 3188 | planeb_wm = ironlake_display_wm_info.max_wm; |
| 3189 | |
| 3190 | cursorb_wm = 16; |
| 3191 | reg_value = I915_READ(WM0_PIPEB_ILK); |
| 3192 | reg_value &= ~(WM0_PIPE_PLANE_MASK | WM0_PIPE_CURSOR_MASK); |
| 3193 | reg_value |= (planeb_wm << WM0_PIPE_PLANE_SHIFT) | |
| 3194 | (cursorb_wm & WM0_PIPE_CURSOR_MASK); |
| 3195 | I915_WRITE(WM0_PIPEB_ILK, reg_value); |
| 3196 | DRM_DEBUG_KMS("FIFO watermarks For pipe B - plane %d, " |
| 3197 | "cursor: %d\n", planeb_wm, cursorb_wm); |
| 3198 | } |
| 3199 | |
| 3200 | /* |
| 3201 | * Calculate and update the self-refresh watermark only when one |
| 3202 | * display plane is used. |
| 3203 | */ |
| 3204 | if (!planea_clock || !planeb_clock) { |
| 3205 | int line_count; |
| 3206 | /* Read the self-refresh latency. The unit is 0.5us */ |
| 3207 | int ilk_sr_latency = I915_READ(MLTR_ILK) & ILK_SRLT_MASK; |
| 3208 | |
| 3209 | sr_clock = planea_clock ? planea_clock : planeb_clock; |
Zhao Yakui | fa14321 | 2010-06-12 14:32:23 +0800 | [diff] [blame] | 3210 | line_time_us = ((sr_htotal * 1000) / sr_clock); |
Zhenyu Wang | 7f8a856 | 2010-04-01 13:07:53 +0800 | [diff] [blame] | 3211 | |
| 3212 | /* Use ns/us then divide to preserve precision */ |
| 3213 | line_count = ((ilk_sr_latency * 500) / line_time_us + 1000) |
| 3214 | / 1000; |
| 3215 | |
| 3216 | /* calculate the self-refresh watermark for display plane */ |
| 3217 | entries_required = line_count * sr_hdisplay * pixel_size; |
| 3218 | entries_required = DIV_ROUND_UP(entries_required, |
| 3219 | ironlake_display_srwm_info.cacheline_size); |
| 3220 | sr_wm = entries_required + |
| 3221 | ironlake_display_srwm_info.guard_size; |
| 3222 | |
| 3223 | /* calculate the self-refresh watermark for display cursor */ |
| 3224 | entries_required = line_count * pixel_size * 64; |
| 3225 | entries_required = DIV_ROUND_UP(entries_required, |
| 3226 | ironlake_cursor_srwm_info.cacheline_size); |
| 3227 | cursor_wm = entries_required + |
| 3228 | ironlake_cursor_srwm_info.guard_size; |
| 3229 | |
| 3230 | /* configure watermark and enable self-refresh */ |
| 3231 | reg_value = I915_READ(WM1_LP_ILK); |
| 3232 | reg_value &= ~(WM1_LP_LATENCY_MASK | WM1_LP_SR_MASK | |
| 3233 | WM1_LP_CURSOR_MASK); |
| 3234 | reg_value |= WM1_LP_SR_EN | |
| 3235 | (ilk_sr_latency << WM1_LP_LATENCY_SHIFT) | |
| 3236 | (sr_wm << WM1_LP_SR_SHIFT) | cursor_wm; |
| 3237 | |
| 3238 | I915_WRITE(WM1_LP_ILK, reg_value); |
| 3239 | DRM_DEBUG_KMS("self-refresh watermark: display plane %d " |
| 3240 | "cursor %d\n", sr_wm, cursor_wm); |
| 3241 | |
| 3242 | } else { |
| 3243 | /* Turn off self refresh if both pipes are enabled */ |
| 3244 | I915_WRITE(WM1_LP_ILK, I915_READ(WM1_LP_ILK) & ~WM1_LP_SR_EN); |
| 3245 | } |
| 3246 | } |
Shaohua Li | 7662c8b | 2009-06-26 11:23:55 +0800 | [diff] [blame] | 3247 | /** |
| 3248 | * intel_update_watermarks - update FIFO watermark values based on current modes |
| 3249 | * |
| 3250 | * Calculate watermark values for the various WM regs based on current mode |
| 3251 | * and plane configuration. |
| 3252 | * |
| 3253 | * There are several cases to deal with here: |
| 3254 | * - normal (i.e. non-self-refresh) |
| 3255 | * - self-refresh (SR) mode |
| 3256 | * - lines are large relative to FIFO size (buffer can hold up to 2) |
| 3257 | * - lines are small relative to FIFO size (buffer can hold more than 2 |
| 3258 | * lines), so need to account for TLB latency |
| 3259 | * |
| 3260 | * The normal calculation is: |
| 3261 | * watermark = dotclock * bytes per pixel * latency |
| 3262 | * where latency is platform & configuration dependent (we assume pessimal |
| 3263 | * values here). |
| 3264 | * |
| 3265 | * The SR calculation is: |
| 3266 | * watermark = (trunc(latency/line time)+1) * surface width * |
| 3267 | * bytes per pixel |
| 3268 | * where |
| 3269 | * line time = htotal / dotclock |
Zhao Yakui | fa14321 | 2010-06-12 14:32:23 +0800 | [diff] [blame] | 3270 | * surface width = hdisplay for normal plane and 64 for cursor |
Shaohua Li | 7662c8b | 2009-06-26 11:23:55 +0800 | [diff] [blame] | 3271 | * and latency is assumed to be high, as above. |
| 3272 | * |
| 3273 | * The final value programmed to the register should always be rounded up, |
| 3274 | * and include an extra 2 entries to account for clock crossings. |
| 3275 | * |
| 3276 | * We don't use the sprite, so we can ignore that. And on Crestline we have |
| 3277 | * to set the non-SR watermarks to 8. |
| 3278 | */ |
| 3279 | static void intel_update_watermarks(struct drm_device *dev) |
| 3280 | { |
Jesse Barnes | e70236a | 2009-09-21 10:42:27 -0700 | [diff] [blame] | 3281 | struct drm_i915_private *dev_priv = dev->dev_private; |
Shaohua Li | 7662c8b | 2009-06-26 11:23:55 +0800 | [diff] [blame] | 3282 | struct drm_crtc *crtc; |
| 3283 | struct intel_crtc *intel_crtc; |
| 3284 | int sr_hdisplay = 0; |
| 3285 | unsigned long planea_clock = 0, planeb_clock = 0, sr_clock = 0; |
| 3286 | int enabled = 0, pixel_size = 0; |
Zhao Yakui | fa14321 | 2010-06-12 14:32:23 +0800 | [diff] [blame] | 3287 | int sr_htotal = 0; |
Shaohua Li | 7662c8b | 2009-06-26 11:23:55 +0800 | [diff] [blame] | 3288 | |
Zhenyu Wang | c03342f | 2009-09-29 11:01:23 +0800 | [diff] [blame] | 3289 | if (!dev_priv->display.update_wm) |
| 3290 | return; |
| 3291 | |
Shaohua Li | 7662c8b | 2009-06-26 11:23:55 +0800 | [diff] [blame] | 3292 | /* Get the clock config from both planes */ |
| 3293 | list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) { |
| 3294 | intel_crtc = to_intel_crtc(crtc); |
| 3295 | if (crtc->enabled) { |
| 3296 | enabled++; |
| 3297 | if (intel_crtc->plane == 0) { |
Zhao Yakui | 28c9773 | 2009-10-09 11:39:41 +0800 | [diff] [blame] | 3298 | DRM_DEBUG_KMS("plane A (pipe %d) clock: %d\n", |
Shaohua Li | 7662c8b | 2009-06-26 11:23:55 +0800 | [diff] [blame] | 3299 | intel_crtc->pipe, crtc->mode.clock); |
| 3300 | planea_clock = crtc->mode.clock; |
| 3301 | } else { |
Zhao Yakui | 28c9773 | 2009-10-09 11:39:41 +0800 | [diff] [blame] | 3302 | DRM_DEBUG_KMS("plane B (pipe %d) clock: %d\n", |
Shaohua Li | 7662c8b | 2009-06-26 11:23:55 +0800 | [diff] [blame] | 3303 | intel_crtc->pipe, crtc->mode.clock); |
| 3304 | planeb_clock = crtc->mode.clock; |
| 3305 | } |
| 3306 | sr_hdisplay = crtc->mode.hdisplay; |
| 3307 | sr_clock = crtc->mode.clock; |
Zhao Yakui | fa14321 | 2010-06-12 14:32:23 +0800 | [diff] [blame] | 3308 | sr_htotal = crtc->mode.htotal; |
Shaohua Li | 7662c8b | 2009-06-26 11:23:55 +0800 | [diff] [blame] | 3309 | if (crtc->fb) |
| 3310 | pixel_size = crtc->fb->bits_per_pixel / 8; |
| 3311 | else |
| 3312 | pixel_size = 4; /* by default */ |
| 3313 | } |
| 3314 | } |
| 3315 | |
| 3316 | if (enabled <= 0) |
| 3317 | return; |
| 3318 | |
Jesse Barnes | e70236a | 2009-09-21 10:42:27 -0700 | [diff] [blame] | 3319 | dev_priv->display.update_wm(dev, planea_clock, planeb_clock, |
Zhao Yakui | fa14321 | 2010-06-12 14:32:23 +0800 | [diff] [blame] | 3320 | sr_hdisplay, sr_htotal, pixel_size); |
Shaohua Li | 7662c8b | 2009-06-26 11:23:55 +0800 | [diff] [blame] | 3321 | } |
| 3322 | |
Chris Wilson | 5c3b82e | 2009-02-11 13:25:09 +0000 | [diff] [blame] | 3323 | static int intel_crtc_mode_set(struct drm_crtc *crtc, |
| 3324 | struct drm_display_mode *mode, |
| 3325 | struct drm_display_mode *adjusted_mode, |
| 3326 | int x, int y, |
| 3327 | struct drm_framebuffer *old_fb) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 3328 | { |
| 3329 | struct drm_device *dev = crtc->dev; |
| 3330 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 3331 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 3332 | int pipe = intel_crtc->pipe; |
Jesse Barnes | 8082400 | 2009-09-10 15:28:06 -0700 | [diff] [blame] | 3333 | int plane = intel_crtc->plane; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 3334 | int fp_reg = (pipe == 0) ? FPA0 : FPB0; |
| 3335 | int dpll_reg = (pipe == 0) ? DPLL_A : DPLL_B; |
| 3336 | int dpll_md_reg = (intel_crtc->pipe == 0) ? DPLL_A_MD : DPLL_B_MD; |
Jesse Barnes | 8082400 | 2009-09-10 15:28:06 -0700 | [diff] [blame] | 3337 | int dspcntr_reg = (plane == 0) ? DSPACNTR : DSPBCNTR; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 3338 | int pipeconf_reg = (pipe == 0) ? PIPEACONF : PIPEBCONF; |
| 3339 | int htot_reg = (pipe == 0) ? HTOTAL_A : HTOTAL_B; |
| 3340 | int hblank_reg = (pipe == 0) ? HBLANK_A : HBLANK_B; |
| 3341 | int hsync_reg = (pipe == 0) ? HSYNC_A : HSYNC_B; |
| 3342 | int vtot_reg = (pipe == 0) ? VTOTAL_A : VTOTAL_B; |
| 3343 | int vblank_reg = (pipe == 0) ? VBLANK_A : VBLANK_B; |
| 3344 | int vsync_reg = (pipe == 0) ? VSYNC_A : VSYNC_B; |
Jesse Barnes | 8082400 | 2009-09-10 15:28:06 -0700 | [diff] [blame] | 3345 | int dspsize_reg = (plane == 0) ? DSPASIZE : DSPBSIZE; |
| 3346 | int dsppos_reg = (plane == 0) ? DSPAPOS : DSPBPOS; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 3347 | int pipesrc_reg = (pipe == 0) ? PIPEASRC : PIPEBSRC; |
Eric Anholt | c751ce4 | 2010-03-25 11:48:48 -0700 | [diff] [blame] | 3348 | int refclk, num_connectors = 0; |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 3349 | intel_clock_t clock, reduced_clock; |
| 3350 | u32 dpll = 0, fp = 0, fp2 = 0, dspcntr, pipeconf; |
| 3351 | bool ok, has_reduced_clock = false, is_sdvo = false, is_dvo = false; |
Keith Packard | a4fc5ed | 2009-04-07 16:16:42 -0700 | [diff] [blame] | 3352 | bool is_crt = false, is_lvds = false, is_tv = false, is_dp = false; |
Zhenyu Wang | 32f9d65 | 2009-07-24 01:00:32 +0800 | [diff] [blame] | 3353 | bool is_edp = false; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 3354 | struct drm_mode_config *mode_config = &dev->mode_config; |
Zhenyu Wang | c5e4df3 | 2010-03-30 14:39:27 +0800 | [diff] [blame] | 3355 | struct drm_encoder *encoder; |
Zhenyu Wang | 55f78c4 | 2010-03-29 16:13:57 +0800 | [diff] [blame] | 3356 | struct intel_encoder *intel_encoder = NULL; |
Ma Ling | d490609 | 2009-03-18 20:13:27 +0800 | [diff] [blame] | 3357 | const intel_limit_t *limit; |
Chris Wilson | 5c3b82e | 2009-02-11 13:25:09 +0000 | [diff] [blame] | 3358 | int ret; |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 3359 | struct fdi_m_n m_n = {0}; |
| 3360 | int data_m1_reg = (pipe == 0) ? PIPEA_DATA_M1 : PIPEB_DATA_M1; |
| 3361 | int data_n1_reg = (pipe == 0) ? PIPEA_DATA_N1 : PIPEB_DATA_N1; |
| 3362 | int link_m1_reg = (pipe == 0) ? PIPEA_LINK_M1 : PIPEB_LINK_M1; |
| 3363 | int link_n1_reg = (pipe == 0) ? PIPEA_LINK_N1 : PIPEB_LINK_N1; |
| 3364 | int pch_fp_reg = (pipe == 0) ? PCH_FPA0 : PCH_FPB0; |
| 3365 | int pch_dpll_reg = (pipe == 0) ? PCH_DPLL_A : PCH_DPLL_B; |
| 3366 | int fdi_rx_reg = (pipe == 0) ? FDI_RXA_CTL : FDI_RXB_CTL; |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 3367 | int fdi_tx_reg = (pipe == 0) ? FDI_TXA_CTL : FDI_TXB_CTL; |
| 3368 | int trans_dpll_sel = (pipe == 0) ? 0 : 1; |
Zhenyu Wang | 541998a | 2009-06-05 15:38:44 +0800 | [diff] [blame] | 3369 | int lvds_reg = LVDS; |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 3370 | u32 temp; |
| 3371 | int sdvo_pixel_multiply; |
Zhenyu Wang | 5eb08b6 | 2009-07-24 01:00:31 +0800 | [diff] [blame] | 3372 | int target_clock; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 3373 | |
| 3374 | drm_vblank_pre_modeset(dev, pipe); |
| 3375 | |
Zhenyu Wang | c5e4df3 | 2010-03-30 14:39:27 +0800 | [diff] [blame] | 3376 | list_for_each_entry(encoder, &mode_config->encoder_list, head) { |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 3377 | |
Zhenyu Wang | c5e4df3 | 2010-03-30 14:39:27 +0800 | [diff] [blame] | 3378 | if (!encoder || encoder->crtc != crtc) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 3379 | continue; |
| 3380 | |
Zhenyu Wang | c5e4df3 | 2010-03-30 14:39:27 +0800 | [diff] [blame] | 3381 | intel_encoder = enc_to_intel_encoder(encoder); |
| 3382 | |
Eric Anholt | 21d40d3 | 2010-03-25 11:11:14 -0700 | [diff] [blame] | 3383 | switch (intel_encoder->type) { |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 3384 | case INTEL_OUTPUT_LVDS: |
| 3385 | is_lvds = true; |
| 3386 | break; |
| 3387 | case INTEL_OUTPUT_SDVO: |
Eric Anholt | 7d57382 | 2009-01-02 13:33:00 -0800 | [diff] [blame] | 3388 | case INTEL_OUTPUT_HDMI: |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 3389 | is_sdvo = true; |
Eric Anholt | 21d40d3 | 2010-03-25 11:11:14 -0700 | [diff] [blame] | 3390 | if (intel_encoder->needs_tv_clock) |
Jesse Barnes | e2f0ba9 | 2009-02-02 15:11:52 -0800 | [diff] [blame] | 3391 | is_tv = true; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 3392 | break; |
| 3393 | case INTEL_OUTPUT_DVO: |
| 3394 | is_dvo = true; |
| 3395 | break; |
| 3396 | case INTEL_OUTPUT_TVOUT: |
| 3397 | is_tv = true; |
| 3398 | break; |
| 3399 | case INTEL_OUTPUT_ANALOG: |
| 3400 | is_crt = true; |
| 3401 | break; |
Keith Packard | a4fc5ed | 2009-04-07 16:16:42 -0700 | [diff] [blame] | 3402 | case INTEL_OUTPUT_DISPLAYPORT: |
| 3403 | is_dp = true; |
| 3404 | break; |
Zhenyu Wang | 32f9d65 | 2009-07-24 01:00:32 +0800 | [diff] [blame] | 3405 | case INTEL_OUTPUT_EDP: |
| 3406 | is_edp = true; |
| 3407 | break; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 3408 | } |
Kristian Høgsberg | 43565a0 | 2009-02-13 20:56:52 -0500 | [diff] [blame] | 3409 | |
Eric Anholt | c751ce4 | 2010-03-25 11:48:48 -0700 | [diff] [blame] | 3410 | num_connectors++; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 3411 | } |
| 3412 | |
Eric Anholt | c751ce4 | 2010-03-25 11:48:48 -0700 | [diff] [blame] | 3413 | if (is_lvds && dev_priv->lvds_use_ssc && num_connectors < 2) { |
Kristian Høgsberg | 43565a0 | 2009-02-13 20:56:52 -0500 | [diff] [blame] | 3414 | refclk = dev_priv->lvds_ssc_freq * 1000; |
Zhao Yakui | 28c9773 | 2009-10-09 11:39:41 +0800 | [diff] [blame] | 3415 | DRM_DEBUG_KMS("using SSC reference clock of %d MHz\n", |
| 3416 | refclk / 1000); |
Kristian Høgsberg | 43565a0 | 2009-02-13 20:56:52 -0500 | [diff] [blame] | 3417 | } else if (IS_I9XX(dev)) { |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 3418 | refclk = 96000; |
Eric Anholt | bad720f | 2009-10-22 16:11:14 -0700 | [diff] [blame] | 3419 | if (HAS_PCH_SPLIT(dev)) |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 3420 | refclk = 120000; /* 120Mhz refclk */ |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 3421 | } else { |
| 3422 | refclk = 48000; |
| 3423 | } |
Keith Packard | a4fc5ed | 2009-04-07 16:16:42 -0700 | [diff] [blame] | 3424 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 3425 | |
Ma Ling | d490609 | 2009-03-18 20:13:27 +0800 | [diff] [blame] | 3426 | /* |
| 3427 | * Returns a set of divisors for the desired target clock with the given |
| 3428 | * refclk, or FALSE. The returned values represent the clock equation: |
| 3429 | * reflck * (5 * (m1 + 2) + (m2 + 2)) / (n + 2) / p1 / p2. |
| 3430 | */ |
| 3431 | limit = intel_limit(crtc); |
| 3432 | ok = limit->find_pll(limit, crtc, adjusted_mode->clock, refclk, &clock); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 3433 | if (!ok) { |
| 3434 | DRM_ERROR("Couldn't find PLL settings for mode!\n"); |
Chris Wilson | 1f803ee | 2009-06-06 09:45:59 +0100 | [diff] [blame] | 3435 | drm_vblank_post_modeset(dev, pipe); |
Chris Wilson | 5c3b82e | 2009-02-11 13:25:09 +0000 | [diff] [blame] | 3436 | return -EINVAL; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 3437 | } |
| 3438 | |
Zhao Yakui | ddc9003 | 2010-01-06 22:05:56 +0800 | [diff] [blame] | 3439 | if (is_lvds && dev_priv->lvds_downclock_avail) { |
| 3440 | has_reduced_clock = limit->find_pll(limit, crtc, |
Zhao Yakui | 18f9ed1 | 2009-11-20 03:24:16 +0000 | [diff] [blame] | 3441 | dev_priv->lvds_downclock, |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 3442 | refclk, |
| 3443 | &reduced_clock); |
Zhao Yakui | 18f9ed1 | 2009-11-20 03:24:16 +0000 | [diff] [blame] | 3444 | if (has_reduced_clock && (clock.p != reduced_clock.p)) { |
| 3445 | /* |
| 3446 | * If the different P is found, it means that we can't |
| 3447 | * switch the display clock by using the FP0/FP1. |
| 3448 | * In such case we will disable the LVDS downclock |
| 3449 | * feature. |
| 3450 | */ |
| 3451 | DRM_DEBUG_KMS("Different P is found for " |
| 3452 | "LVDS clock/downclock\n"); |
| 3453 | has_reduced_clock = 0; |
| 3454 | } |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 3455 | } |
Zhenyu Wang | 7026d4a | 2009-03-24 14:02:43 +0800 | [diff] [blame] | 3456 | /* SDVO TV has fixed PLL values depend on its clock range, |
| 3457 | this mirrors vbios setting. */ |
| 3458 | if (is_sdvo && is_tv) { |
| 3459 | if (adjusted_mode->clock >= 100000 |
| 3460 | && adjusted_mode->clock < 140500) { |
| 3461 | clock.p1 = 2; |
| 3462 | clock.p2 = 10; |
| 3463 | clock.n = 3; |
| 3464 | clock.m1 = 16; |
| 3465 | clock.m2 = 8; |
| 3466 | } else if (adjusted_mode->clock >= 140500 |
| 3467 | && adjusted_mode->clock <= 200000) { |
| 3468 | clock.p1 = 1; |
| 3469 | clock.p2 = 10; |
| 3470 | clock.n = 6; |
| 3471 | clock.m1 = 12; |
| 3472 | clock.m2 = 8; |
| 3473 | } |
| 3474 | } |
| 3475 | |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 3476 | /* FDI link */ |
Eric Anholt | bad720f | 2009-10-22 16:11:14 -0700 | [diff] [blame] | 3477 | if (HAS_PCH_SPLIT(dev)) { |
Adam Jackson | 77ffb59 | 2010-04-12 11:38:44 -0400 | [diff] [blame] | 3478 | int lane = 0, link_bw, bpp; |
Zhenyu Wang | 32f9d65 | 2009-07-24 01:00:32 +0800 | [diff] [blame] | 3479 | /* eDP doesn't require FDI link, so just set DP M/N |
| 3480 | according to current link config */ |
| 3481 | if (is_edp) { |
Zhenyu Wang | 5eb08b6 | 2009-07-24 01:00:31 +0800 | [diff] [blame] | 3482 | target_clock = mode->clock; |
Zhenyu Wang | 55f78c4 | 2010-03-29 16:13:57 +0800 | [diff] [blame] | 3483 | intel_edp_link_config(intel_encoder, |
Zhenyu Wang | 32f9d65 | 2009-07-24 01:00:32 +0800 | [diff] [blame] | 3484 | &lane, &link_bw); |
| 3485 | } else { |
| 3486 | /* DP over FDI requires target mode clock |
| 3487 | instead of link clock */ |
| 3488 | if (is_dp) |
| 3489 | target_clock = mode->clock; |
| 3490 | else |
| 3491 | target_clock = adjusted_mode->clock; |
Zhenyu Wang | 32f9d65 | 2009-07-24 01:00:32 +0800 | [diff] [blame] | 3492 | link_bw = 270000; |
| 3493 | } |
Zhenyu Wang | 58a2747 | 2009-09-25 08:01:28 +0000 | [diff] [blame] | 3494 | |
| 3495 | /* determine panel color depth */ |
| 3496 | temp = I915_READ(pipeconf_reg); |
Zhao Yakui | e5a95eb | 2010-01-04 16:29:32 +0800 | [diff] [blame] | 3497 | temp &= ~PIPE_BPC_MASK; |
| 3498 | if (is_lvds) { |
| 3499 | int lvds_reg = I915_READ(PCH_LVDS); |
| 3500 | /* the BPC will be 6 if it is 18-bit LVDS panel */ |
| 3501 | if ((lvds_reg & LVDS_A3_POWER_MASK) == LVDS_A3_POWER_UP) |
| 3502 | temp |= PIPE_8BPC; |
| 3503 | else |
| 3504 | temp |= PIPE_6BPC; |
Zhao Yakui | 36e83a1 | 2010-06-12 14:32:21 +0800 | [diff] [blame] | 3505 | } else if (is_edp || (is_dp && intel_pch_has_edp(crtc))) { |
Zhenyu Wang | 885a5fb | 2010-01-12 05:38:31 +0800 | [diff] [blame] | 3506 | switch (dev_priv->edp_bpp/3) { |
| 3507 | case 8: |
| 3508 | temp |= PIPE_8BPC; |
| 3509 | break; |
| 3510 | case 10: |
| 3511 | temp |= PIPE_10BPC; |
| 3512 | break; |
| 3513 | case 6: |
| 3514 | temp |= PIPE_6BPC; |
| 3515 | break; |
| 3516 | case 12: |
| 3517 | temp |= PIPE_12BPC; |
| 3518 | break; |
| 3519 | } |
Zhao Yakui | e5a95eb | 2010-01-04 16:29:32 +0800 | [diff] [blame] | 3520 | } else |
| 3521 | temp |= PIPE_8BPC; |
| 3522 | I915_WRITE(pipeconf_reg, temp); |
| 3523 | I915_READ(pipeconf_reg); |
Zhenyu Wang | 58a2747 | 2009-09-25 08:01:28 +0000 | [diff] [blame] | 3524 | |
| 3525 | switch (temp & PIPE_BPC_MASK) { |
| 3526 | case PIPE_8BPC: |
| 3527 | bpp = 24; |
| 3528 | break; |
| 3529 | case PIPE_10BPC: |
| 3530 | bpp = 30; |
| 3531 | break; |
| 3532 | case PIPE_6BPC: |
| 3533 | bpp = 18; |
| 3534 | break; |
| 3535 | case PIPE_12BPC: |
| 3536 | bpp = 36; |
| 3537 | break; |
| 3538 | default: |
| 3539 | DRM_ERROR("unknown pipe bpc value\n"); |
| 3540 | bpp = 24; |
| 3541 | } |
| 3542 | |
Adam Jackson | 77ffb59 | 2010-04-12 11:38:44 -0400 | [diff] [blame] | 3543 | if (!lane) { |
| 3544 | /* |
| 3545 | * Account for spread spectrum to avoid |
| 3546 | * oversubscribing the link. Max center spread |
| 3547 | * is 2.5%; use 5% for safety's sake. |
| 3548 | */ |
| 3549 | u32 bps = target_clock * bpp * 21 / 20; |
| 3550 | lane = bps / (link_bw * 8) + 1; |
| 3551 | } |
| 3552 | |
| 3553 | intel_crtc->fdi_lanes = lane; |
| 3554 | |
Adam Jackson | f2b115e | 2009-12-03 17:14:42 -0500 | [diff] [blame] | 3555 | ironlake_compute_m_n(bpp, lane, target_clock, link_bw, &m_n); |
Zhenyu Wang | 5eb08b6 | 2009-07-24 01:00:31 +0800 | [diff] [blame] | 3556 | } |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 3557 | |
Zhenyu Wang | c038e51 | 2009-10-19 15:43:48 +0800 | [diff] [blame] | 3558 | /* Ironlake: try to setup display ref clock before DPLL |
| 3559 | * enabling. This is only under driver's control after |
| 3560 | * PCH B stepping, previous chipset stepping should be |
| 3561 | * ignoring this setting. |
| 3562 | */ |
Eric Anholt | bad720f | 2009-10-22 16:11:14 -0700 | [diff] [blame] | 3563 | if (HAS_PCH_SPLIT(dev)) { |
Zhenyu Wang | c038e51 | 2009-10-19 15:43:48 +0800 | [diff] [blame] | 3564 | temp = I915_READ(PCH_DREF_CONTROL); |
| 3565 | /* Always enable nonspread source */ |
| 3566 | temp &= ~DREF_NONSPREAD_SOURCE_MASK; |
| 3567 | temp |= DREF_NONSPREAD_SOURCE_ENABLE; |
| 3568 | I915_WRITE(PCH_DREF_CONTROL, temp); |
| 3569 | POSTING_READ(PCH_DREF_CONTROL); |
| 3570 | |
| 3571 | temp &= ~DREF_SSC_SOURCE_MASK; |
| 3572 | temp |= DREF_SSC_SOURCE_ENABLE; |
| 3573 | I915_WRITE(PCH_DREF_CONTROL, temp); |
| 3574 | POSTING_READ(PCH_DREF_CONTROL); |
| 3575 | |
| 3576 | udelay(200); |
| 3577 | |
| 3578 | if (is_edp) { |
| 3579 | if (dev_priv->lvds_use_ssc) { |
| 3580 | temp |= DREF_SSC1_ENABLE; |
| 3581 | I915_WRITE(PCH_DREF_CONTROL, temp); |
| 3582 | POSTING_READ(PCH_DREF_CONTROL); |
| 3583 | |
| 3584 | udelay(200); |
| 3585 | |
| 3586 | temp &= ~DREF_CPU_SOURCE_OUTPUT_MASK; |
| 3587 | temp |= DREF_CPU_SOURCE_OUTPUT_DOWNSPREAD; |
| 3588 | I915_WRITE(PCH_DREF_CONTROL, temp); |
| 3589 | POSTING_READ(PCH_DREF_CONTROL); |
| 3590 | } else { |
| 3591 | temp |= DREF_CPU_SOURCE_OUTPUT_NONSPREAD; |
| 3592 | I915_WRITE(PCH_DREF_CONTROL, temp); |
| 3593 | POSTING_READ(PCH_DREF_CONTROL); |
| 3594 | } |
| 3595 | } |
| 3596 | } |
| 3597 | |
Adam Jackson | f2b115e | 2009-12-03 17:14:42 -0500 | [diff] [blame] | 3598 | if (IS_PINEVIEW(dev)) { |
Shaohua Li | 2177832 | 2009-02-23 15:19:16 +0800 | [diff] [blame] | 3599 | fp = (1 << clock.n) << 16 | clock.m1 << 8 | clock.m2; |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 3600 | if (has_reduced_clock) |
| 3601 | fp2 = (1 << reduced_clock.n) << 16 | |
| 3602 | reduced_clock.m1 << 8 | reduced_clock.m2; |
| 3603 | } else { |
Shaohua Li | 2177832 | 2009-02-23 15:19:16 +0800 | [diff] [blame] | 3604 | fp = clock.n << 16 | clock.m1 << 8 | clock.m2; |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 3605 | if (has_reduced_clock) |
| 3606 | fp2 = reduced_clock.n << 16 | reduced_clock.m1 << 8 | |
| 3607 | reduced_clock.m2; |
| 3608 | } |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 3609 | |
Eric Anholt | bad720f | 2009-10-22 16:11:14 -0700 | [diff] [blame] | 3610 | if (!HAS_PCH_SPLIT(dev)) |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 3611 | dpll = DPLL_VGA_MODE_DIS; |
| 3612 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 3613 | if (IS_I9XX(dev)) { |
| 3614 | if (is_lvds) |
| 3615 | dpll |= DPLLB_MODE_LVDS; |
| 3616 | else |
| 3617 | dpll |= DPLLB_MODE_DAC_SERIAL; |
| 3618 | if (is_sdvo) { |
| 3619 | dpll |= DPLL_DVO_HIGH_SPEED; |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 3620 | sdvo_pixel_multiply = adjusted_mode->clock / mode->clock; |
Sean Young | 942642a | 2009-08-06 17:35:50 +0800 | [diff] [blame] | 3621 | if (IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev)) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 3622 | dpll |= (sdvo_pixel_multiply - 1) << SDVO_MULTIPLIER_SHIFT_HIRES; |
Eric Anholt | bad720f | 2009-10-22 16:11:14 -0700 | [diff] [blame] | 3623 | else if (HAS_PCH_SPLIT(dev)) |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 3624 | dpll |= (sdvo_pixel_multiply - 1) << PLL_REF_SDVO_HDMI_MULTIPLIER_SHIFT; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 3625 | } |
Keith Packard | a4fc5ed | 2009-04-07 16:16:42 -0700 | [diff] [blame] | 3626 | if (is_dp) |
| 3627 | dpll |= DPLL_DVO_HIGH_SPEED; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 3628 | |
| 3629 | /* compute bitmask from p1 value */ |
Adam Jackson | f2b115e | 2009-12-03 17:14:42 -0500 | [diff] [blame] | 3630 | if (IS_PINEVIEW(dev)) |
| 3631 | dpll |= (1 << (clock.p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT_PINEVIEW; |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 3632 | else { |
Shaohua Li | 2177832 | 2009-02-23 15:19:16 +0800 | [diff] [blame] | 3633 | dpll |= (1 << (clock.p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT; |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 3634 | /* also FPA1 */ |
Eric Anholt | bad720f | 2009-10-22 16:11:14 -0700 | [diff] [blame] | 3635 | if (HAS_PCH_SPLIT(dev)) |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 3636 | dpll |= (1 << (clock.p1 - 1)) << DPLL_FPA1_P1_POST_DIV_SHIFT; |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 3637 | if (IS_G4X(dev) && has_reduced_clock) |
| 3638 | dpll |= (1 << (reduced_clock.p1 - 1)) << DPLL_FPA1_P1_POST_DIV_SHIFT; |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 3639 | } |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 3640 | switch (clock.p2) { |
| 3641 | case 5: |
| 3642 | dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_5; |
| 3643 | break; |
| 3644 | case 7: |
| 3645 | dpll |= DPLLB_LVDS_P2_CLOCK_DIV_7; |
| 3646 | break; |
| 3647 | case 10: |
| 3648 | dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_10; |
| 3649 | break; |
| 3650 | case 14: |
| 3651 | dpll |= DPLLB_LVDS_P2_CLOCK_DIV_14; |
| 3652 | break; |
| 3653 | } |
Eric Anholt | bad720f | 2009-10-22 16:11:14 -0700 | [diff] [blame] | 3654 | if (IS_I965G(dev) && !HAS_PCH_SPLIT(dev)) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 3655 | dpll |= (6 << PLL_LOAD_PULSE_PHASE_SHIFT); |
| 3656 | } else { |
| 3657 | if (is_lvds) { |
| 3658 | dpll |= (1 << (clock.p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT; |
| 3659 | } else { |
| 3660 | if (clock.p1 == 2) |
| 3661 | dpll |= PLL_P1_DIVIDE_BY_TWO; |
| 3662 | else |
| 3663 | dpll |= (clock.p1 - 2) << DPLL_FPA01_P1_POST_DIV_SHIFT; |
| 3664 | if (clock.p2 == 4) |
| 3665 | dpll |= PLL_P2_DIVIDE_BY_4; |
| 3666 | } |
| 3667 | } |
| 3668 | |
Kristian Høgsberg | 43565a0 | 2009-02-13 20:56:52 -0500 | [diff] [blame] | 3669 | if (is_sdvo && is_tv) |
| 3670 | dpll |= PLL_REF_INPUT_TVCLKINBC; |
| 3671 | else if (is_tv) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 3672 | /* XXX: just matching BIOS for now */ |
Kristian Høgsberg | 43565a0 | 2009-02-13 20:56:52 -0500 | [diff] [blame] | 3673 | /* dpll |= PLL_REF_INPUT_TVCLKINBC; */ |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 3674 | dpll |= 3; |
Eric Anholt | c751ce4 | 2010-03-25 11:48:48 -0700 | [diff] [blame] | 3675 | else if (is_lvds && dev_priv->lvds_use_ssc && num_connectors < 2) |
Kristian Høgsberg | 43565a0 | 2009-02-13 20:56:52 -0500 | [diff] [blame] | 3676 | dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 3677 | else |
| 3678 | dpll |= PLL_REF_INPUT_DREFCLK; |
| 3679 | |
| 3680 | /* setup pipeconf */ |
| 3681 | pipeconf = I915_READ(pipeconf_reg); |
| 3682 | |
| 3683 | /* Set up the display plane register */ |
| 3684 | dspcntr = DISPPLANE_GAMMA_ENABLE; |
| 3685 | |
Adam Jackson | f2b115e | 2009-12-03 17:14:42 -0500 | [diff] [blame] | 3686 | /* Ironlake's plane is forced to pipe, bit 24 is to |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 3687 | enable color space conversion */ |
Eric Anholt | bad720f | 2009-10-22 16:11:14 -0700 | [diff] [blame] | 3688 | if (!HAS_PCH_SPLIT(dev)) { |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 3689 | if (pipe == 0) |
Jesse Barnes | 8082400 | 2009-09-10 15:28:06 -0700 | [diff] [blame] | 3690 | dspcntr &= ~DISPPLANE_SEL_PIPE_MASK; |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 3691 | else |
| 3692 | dspcntr |= DISPPLANE_SEL_PIPE_B; |
| 3693 | } |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 3694 | |
| 3695 | if (pipe == 0 && !IS_I965G(dev)) { |
| 3696 | /* Enable pixel doubling when the dot clock is > 90% of the (display) |
| 3697 | * core speed. |
| 3698 | * |
| 3699 | * XXX: No double-wide on 915GM pipe B. Is that the only reason for the |
| 3700 | * pipe == 0 check? |
| 3701 | */ |
Jesse Barnes | e70236a | 2009-09-21 10:42:27 -0700 | [diff] [blame] | 3702 | if (mode->clock > |
| 3703 | dev_priv->display.get_display_clock_speed(dev) * 9 / 10) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 3704 | pipeconf |= PIPEACONF_DOUBLE_WIDE; |
| 3705 | else |
| 3706 | pipeconf &= ~PIPEACONF_DOUBLE_WIDE; |
| 3707 | } |
| 3708 | |
Linus Torvalds | 8d86dc6 | 2010-06-08 20:16:28 -0700 | [diff] [blame] | 3709 | dspcntr |= DISPLAY_PLANE_ENABLE; |
| 3710 | pipeconf |= PIPEACONF_ENABLE; |
| 3711 | dpll |= DPLL_VCO_ENABLE; |
| 3712 | |
| 3713 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 3714 | /* Disable the panel fitter if it was on our pipe */ |
Eric Anholt | bad720f | 2009-10-22 16:11:14 -0700 | [diff] [blame] | 3715 | if (!HAS_PCH_SPLIT(dev) && intel_panel_fitter_pipe(dev) == pipe) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 3716 | I915_WRITE(PFIT_CONTROL, 0); |
| 3717 | |
Zhao Yakui | 28c9773 | 2009-10-09 11:39:41 +0800 | [diff] [blame] | 3718 | DRM_DEBUG_KMS("Mode for pipe %c:\n", pipe == 0 ? 'A' : 'B'); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 3719 | drm_mode_debug_printmodeline(mode); |
| 3720 | |
Adam Jackson | f2b115e | 2009-12-03 17:14:42 -0500 | [diff] [blame] | 3721 | /* assign to Ironlake registers */ |
Eric Anholt | bad720f | 2009-10-22 16:11:14 -0700 | [diff] [blame] | 3722 | if (HAS_PCH_SPLIT(dev)) { |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 3723 | fp_reg = pch_fp_reg; |
| 3724 | dpll_reg = pch_dpll_reg; |
| 3725 | } |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 3726 | |
Zhenyu Wang | 32f9d65 | 2009-07-24 01:00:32 +0800 | [diff] [blame] | 3727 | if (is_edp) { |
Adam Jackson | f2b115e | 2009-12-03 17:14:42 -0500 | [diff] [blame] | 3728 | ironlake_disable_pll_edp(crtc); |
Zhenyu Wang | 32f9d65 | 2009-07-24 01:00:32 +0800 | [diff] [blame] | 3729 | } else if ((dpll & DPLL_VCO_ENABLE)) { |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 3730 | I915_WRITE(fp_reg, fp); |
| 3731 | I915_WRITE(dpll_reg, dpll & ~DPLL_VCO_ENABLE); |
| 3732 | I915_READ(dpll_reg); |
| 3733 | udelay(150); |
| 3734 | } |
| 3735 | |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 3736 | /* enable transcoder DPLL */ |
| 3737 | if (HAS_PCH_CPT(dev)) { |
| 3738 | temp = I915_READ(PCH_DPLL_SEL); |
| 3739 | if (trans_dpll_sel == 0) |
| 3740 | temp |= (TRANSA_DPLL_ENABLE | TRANSA_DPLLA_SEL); |
| 3741 | else |
| 3742 | temp |= (TRANSB_DPLL_ENABLE | TRANSB_DPLLB_SEL); |
| 3743 | I915_WRITE(PCH_DPLL_SEL, temp); |
| 3744 | I915_READ(PCH_DPLL_SEL); |
| 3745 | udelay(150); |
| 3746 | } |
| 3747 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 3748 | /* The LVDS pin pair needs to be on before the DPLLs are enabled. |
| 3749 | * This is an exception to the general rule that mode_set doesn't turn |
| 3750 | * things on. |
| 3751 | */ |
| 3752 | if (is_lvds) { |
Zhenyu Wang | 541998a | 2009-06-05 15:38:44 +0800 | [diff] [blame] | 3753 | u32 lvds; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 3754 | |
Eric Anholt | bad720f | 2009-10-22 16:11:14 -0700 | [diff] [blame] | 3755 | if (HAS_PCH_SPLIT(dev)) |
Zhenyu Wang | 541998a | 2009-06-05 15:38:44 +0800 | [diff] [blame] | 3756 | lvds_reg = PCH_LVDS; |
| 3757 | |
| 3758 | lvds = I915_READ(lvds_reg); |
Adam Jackson | 0f3ee80 | 2010-03-31 11:41:51 -0400 | [diff] [blame] | 3759 | lvds |= LVDS_PORT_EN | LVDS_A0A2_CLKA_POWER_UP; |
Zhenyu Wang | b3b095b | 2010-04-07 16:15:56 +0800 | [diff] [blame] | 3760 | if (pipe == 1) { |
| 3761 | if (HAS_PCH_CPT(dev)) |
| 3762 | lvds |= PORT_TRANS_B_SEL_CPT; |
| 3763 | else |
| 3764 | lvds |= LVDS_PIPEB_SELECT; |
| 3765 | } else { |
| 3766 | if (HAS_PCH_CPT(dev)) |
| 3767 | lvds &= ~PORT_TRANS_SEL_MASK; |
| 3768 | else |
| 3769 | lvds &= ~LVDS_PIPEB_SELECT; |
| 3770 | } |
Zhao Yakui | a3e17eb | 2009-10-10 10:42:37 +0800 | [diff] [blame] | 3771 | /* set the corresponsding LVDS_BORDER bit */ |
| 3772 | lvds |= dev_priv->lvds_border_bits; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 3773 | /* Set the B0-B3 data pairs corresponding to whether we're going to |
| 3774 | * set the DPLLs for dual-channel mode or not. |
| 3775 | */ |
| 3776 | if (clock.p2 == 7) |
| 3777 | lvds |= LVDS_B0B3_POWER_UP | LVDS_CLKB_POWER_UP; |
| 3778 | else |
| 3779 | lvds &= ~(LVDS_B0B3_POWER_UP | LVDS_CLKB_POWER_UP); |
| 3780 | |
| 3781 | /* It would be nice to set 24 vs 18-bit mode (LVDS_A3_POWER_UP) |
| 3782 | * appropriately here, but we need to look more thoroughly into how |
| 3783 | * panels behave in the two modes. |
| 3784 | */ |
Zhao Yakui | 898822c | 2010-01-04 16:29:30 +0800 | [diff] [blame] | 3785 | /* set the dithering flag */ |
| 3786 | if (IS_I965G(dev)) { |
| 3787 | if (dev_priv->lvds_dither) { |
Adam Jackson | 0a31a44 | 2010-04-19 15:57:25 -0400 | [diff] [blame] | 3788 | if (HAS_PCH_SPLIT(dev)) { |
Zhao Yakui | 898822c | 2010-01-04 16:29:30 +0800 | [diff] [blame] | 3789 | pipeconf |= PIPE_ENABLE_DITHER; |
Adam Jackson | 0a31a44 | 2010-04-19 15:57:25 -0400 | [diff] [blame] | 3790 | pipeconf |= PIPE_DITHER_TYPE_ST01; |
| 3791 | } else |
Zhao Yakui | 898822c | 2010-01-04 16:29:30 +0800 | [diff] [blame] | 3792 | lvds |= LVDS_ENABLE_DITHER; |
| 3793 | } else { |
Adam Jackson | 0a31a44 | 2010-04-19 15:57:25 -0400 | [diff] [blame] | 3794 | if (HAS_PCH_SPLIT(dev)) { |
Zhao Yakui | 898822c | 2010-01-04 16:29:30 +0800 | [diff] [blame] | 3795 | pipeconf &= ~PIPE_ENABLE_DITHER; |
Adam Jackson | 0a31a44 | 2010-04-19 15:57:25 -0400 | [diff] [blame] | 3796 | pipeconf &= ~PIPE_DITHER_TYPE_MASK; |
| 3797 | } else |
Zhao Yakui | 898822c | 2010-01-04 16:29:30 +0800 | [diff] [blame] | 3798 | lvds &= ~LVDS_ENABLE_DITHER; |
| 3799 | } |
| 3800 | } |
Zhenyu Wang | 541998a | 2009-06-05 15:38:44 +0800 | [diff] [blame] | 3801 | I915_WRITE(lvds_reg, lvds); |
| 3802 | I915_READ(lvds_reg); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 3803 | } |
Keith Packard | a4fc5ed | 2009-04-07 16:16:42 -0700 | [diff] [blame] | 3804 | if (is_dp) |
| 3805 | intel_dp_set_m_n(crtc, mode, adjusted_mode); |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 3806 | else if (HAS_PCH_SPLIT(dev)) { |
| 3807 | /* For non-DP output, clear any trans DP clock recovery setting.*/ |
| 3808 | if (pipe == 0) { |
| 3809 | I915_WRITE(TRANSA_DATA_M1, 0); |
| 3810 | I915_WRITE(TRANSA_DATA_N1, 0); |
| 3811 | I915_WRITE(TRANSA_DP_LINK_M1, 0); |
| 3812 | I915_WRITE(TRANSA_DP_LINK_N1, 0); |
| 3813 | } else { |
| 3814 | I915_WRITE(TRANSB_DATA_M1, 0); |
| 3815 | I915_WRITE(TRANSB_DATA_N1, 0); |
| 3816 | I915_WRITE(TRANSB_DP_LINK_M1, 0); |
| 3817 | I915_WRITE(TRANSB_DP_LINK_N1, 0); |
| 3818 | } |
| 3819 | } |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 3820 | |
Zhenyu Wang | 32f9d65 | 2009-07-24 01:00:32 +0800 | [diff] [blame] | 3821 | if (!is_edp) { |
| 3822 | I915_WRITE(fp_reg, fp); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 3823 | I915_WRITE(dpll_reg, dpll); |
Zhenyu Wang | 32f9d65 | 2009-07-24 01:00:32 +0800 | [diff] [blame] | 3824 | I915_READ(dpll_reg); |
| 3825 | /* Wait for the clocks to stabilize. */ |
| 3826 | udelay(150); |
| 3827 | |
Eric Anholt | bad720f | 2009-10-22 16:11:14 -0700 | [diff] [blame] | 3828 | if (IS_I965G(dev) && !HAS_PCH_SPLIT(dev)) { |
Zhao Yakui | bb66c51 | 2009-09-10 15:45:49 +0800 | [diff] [blame] | 3829 | if (is_sdvo) { |
| 3830 | sdvo_pixel_multiply = adjusted_mode->clock / mode->clock; |
| 3831 | I915_WRITE(dpll_md_reg, (0 << DPLL_MD_UDI_DIVIDER_SHIFT) | |
Zhenyu Wang | 32f9d65 | 2009-07-24 01:00:32 +0800 | [diff] [blame] | 3832 | ((sdvo_pixel_multiply - 1) << DPLL_MD_UDI_MULTIPLIER_SHIFT)); |
Zhao Yakui | bb66c51 | 2009-09-10 15:45:49 +0800 | [diff] [blame] | 3833 | } else |
| 3834 | I915_WRITE(dpll_md_reg, 0); |
Zhenyu Wang | 32f9d65 | 2009-07-24 01:00:32 +0800 | [diff] [blame] | 3835 | } else { |
| 3836 | /* write it again -- the BIOS does, after all */ |
| 3837 | I915_WRITE(dpll_reg, dpll); |
| 3838 | } |
| 3839 | I915_READ(dpll_reg); |
| 3840 | /* Wait for the clocks to stabilize. */ |
| 3841 | udelay(150); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 3842 | } |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 3843 | |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 3844 | if (is_lvds && has_reduced_clock && i915_powersave) { |
| 3845 | I915_WRITE(fp_reg + 4, fp2); |
| 3846 | intel_crtc->lowfreq_avail = true; |
| 3847 | if (HAS_PIPE_CXSR(dev)) { |
Zhao Yakui | 28c9773 | 2009-10-09 11:39:41 +0800 | [diff] [blame] | 3848 | DRM_DEBUG_KMS("enabling CxSR downclocking\n"); |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 3849 | pipeconf |= PIPECONF_CXSR_DOWNCLOCK; |
| 3850 | } |
| 3851 | } else { |
| 3852 | I915_WRITE(fp_reg + 4, fp); |
| 3853 | intel_crtc->lowfreq_avail = false; |
| 3854 | if (HAS_PIPE_CXSR(dev)) { |
Zhao Yakui | 28c9773 | 2009-10-09 11:39:41 +0800 | [diff] [blame] | 3855 | DRM_DEBUG_KMS("disabling CxSR downclocking\n"); |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 3856 | pipeconf &= ~PIPECONF_CXSR_DOWNCLOCK; |
| 3857 | } |
| 3858 | } |
| 3859 | |
Krzysztof Halasa | 734b415 | 2010-05-25 18:41:46 +0200 | [diff] [blame] | 3860 | if (adjusted_mode->flags & DRM_MODE_FLAG_INTERLACE) { |
| 3861 | pipeconf |= PIPECONF_INTERLACE_W_FIELD_INDICATION; |
| 3862 | /* the chip adds 2 halflines automatically */ |
| 3863 | adjusted_mode->crtc_vdisplay -= 1; |
| 3864 | adjusted_mode->crtc_vtotal -= 1; |
| 3865 | adjusted_mode->crtc_vblank_start -= 1; |
| 3866 | adjusted_mode->crtc_vblank_end -= 1; |
| 3867 | adjusted_mode->crtc_vsync_end -= 1; |
| 3868 | adjusted_mode->crtc_vsync_start -= 1; |
| 3869 | } else |
| 3870 | pipeconf &= ~PIPECONF_INTERLACE_W_FIELD_INDICATION; /* progressive */ |
| 3871 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 3872 | I915_WRITE(htot_reg, (adjusted_mode->crtc_hdisplay - 1) | |
| 3873 | ((adjusted_mode->crtc_htotal - 1) << 16)); |
| 3874 | I915_WRITE(hblank_reg, (adjusted_mode->crtc_hblank_start - 1) | |
| 3875 | ((adjusted_mode->crtc_hblank_end - 1) << 16)); |
| 3876 | I915_WRITE(hsync_reg, (adjusted_mode->crtc_hsync_start - 1) | |
| 3877 | ((adjusted_mode->crtc_hsync_end - 1) << 16)); |
| 3878 | I915_WRITE(vtot_reg, (adjusted_mode->crtc_vdisplay - 1) | |
| 3879 | ((adjusted_mode->crtc_vtotal - 1) << 16)); |
| 3880 | I915_WRITE(vblank_reg, (adjusted_mode->crtc_vblank_start - 1) | |
| 3881 | ((adjusted_mode->crtc_vblank_end - 1) << 16)); |
| 3882 | I915_WRITE(vsync_reg, (adjusted_mode->crtc_vsync_start - 1) | |
| 3883 | ((adjusted_mode->crtc_vsync_end - 1) << 16)); |
| 3884 | /* pipesrc and dspsize control the size that is scaled from, which should |
| 3885 | * always be the user's requested size. |
| 3886 | */ |
Eric Anholt | bad720f | 2009-10-22 16:11:14 -0700 | [diff] [blame] | 3887 | if (!HAS_PCH_SPLIT(dev)) { |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 3888 | I915_WRITE(dspsize_reg, ((mode->vdisplay - 1) << 16) | |
| 3889 | (mode->hdisplay - 1)); |
| 3890 | I915_WRITE(dsppos_reg, 0); |
| 3891 | } |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 3892 | I915_WRITE(pipesrc_reg, ((mode->hdisplay - 1) << 16) | (mode->vdisplay - 1)); |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 3893 | |
Eric Anholt | bad720f | 2009-10-22 16:11:14 -0700 | [diff] [blame] | 3894 | if (HAS_PCH_SPLIT(dev)) { |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 3895 | I915_WRITE(data_m1_reg, TU_SIZE(m_n.tu) | m_n.gmch_m); |
| 3896 | I915_WRITE(data_n1_reg, TU_SIZE(m_n.tu) | m_n.gmch_n); |
| 3897 | I915_WRITE(link_m1_reg, m_n.link_m); |
| 3898 | I915_WRITE(link_n1_reg, m_n.link_n); |
| 3899 | |
Zhenyu Wang | 32f9d65 | 2009-07-24 01:00:32 +0800 | [diff] [blame] | 3900 | if (is_edp) { |
Adam Jackson | f2b115e | 2009-12-03 17:14:42 -0500 | [diff] [blame] | 3901 | ironlake_set_pll_edp(crtc, adjusted_mode->clock); |
Zhenyu Wang | 32f9d65 | 2009-07-24 01:00:32 +0800 | [diff] [blame] | 3902 | } else { |
| 3903 | /* enable FDI RX PLL too */ |
| 3904 | temp = I915_READ(fdi_rx_reg); |
| 3905 | I915_WRITE(fdi_rx_reg, temp | FDI_RX_PLL_ENABLE); |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 3906 | I915_READ(fdi_rx_reg); |
| 3907 | udelay(200); |
| 3908 | |
| 3909 | /* enable FDI TX PLL too */ |
| 3910 | temp = I915_READ(fdi_tx_reg); |
| 3911 | I915_WRITE(fdi_tx_reg, temp | FDI_TX_PLL_ENABLE); |
| 3912 | I915_READ(fdi_tx_reg); |
| 3913 | |
| 3914 | /* enable FDI RX PCDCLK */ |
| 3915 | temp = I915_READ(fdi_rx_reg); |
| 3916 | I915_WRITE(fdi_rx_reg, temp | FDI_SEL_PCDCLK); |
| 3917 | I915_READ(fdi_rx_reg); |
Zhenyu Wang | 32f9d65 | 2009-07-24 01:00:32 +0800 | [diff] [blame] | 3918 | udelay(200); |
| 3919 | } |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 3920 | } |
| 3921 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 3922 | I915_WRITE(pipeconf_reg, pipeconf); |
| 3923 | I915_READ(pipeconf_reg); |
| 3924 | |
| 3925 | intel_wait_for_vblank(dev); |
| 3926 | |
Eric Anholt | c2416fc | 2009-11-05 15:30:35 -0800 | [diff] [blame] | 3927 | if (IS_IRONLAKE(dev)) { |
Zhenyu Wang | 553bd14 | 2009-09-02 10:57:52 +0800 | [diff] [blame] | 3928 | /* enable address swizzle for tiling buffer */ |
| 3929 | temp = I915_READ(DISP_ARB_CTL); |
| 3930 | I915_WRITE(DISP_ARB_CTL, temp | DISP_TILE_SURFACE_SWIZZLING); |
| 3931 | } |
| 3932 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 3933 | I915_WRITE(dspcntr_reg, dspcntr); |
| 3934 | |
| 3935 | /* Flush the plane changes */ |
Chris Wilson | 5c3b82e | 2009-02-11 13:25:09 +0000 | [diff] [blame] | 3936 | ret = intel_pipe_set_base(crtc, x, y, old_fb); |
Shaohua Li | 7662c8b | 2009-06-26 11:23:55 +0800 | [diff] [blame] | 3937 | |
Jesse Barnes | 74dff28 | 2009-09-14 15:39:40 -0700 | [diff] [blame] | 3938 | if ((IS_I965G(dev) || plane == 0)) |
| 3939 | intel_update_fbc(crtc, &crtc->mode); |
Jesse Barnes | e70236a | 2009-09-21 10:42:27 -0700 | [diff] [blame] | 3940 | |
Shaohua Li | 7662c8b | 2009-06-26 11:23:55 +0800 | [diff] [blame] | 3941 | intel_update_watermarks(dev); |
| 3942 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 3943 | drm_vblank_post_modeset(dev, pipe); |
Chris Wilson | 5c3b82e | 2009-02-11 13:25:09 +0000 | [diff] [blame] | 3944 | |
Chris Wilson | 1f803ee | 2009-06-06 09:45:59 +0100 | [diff] [blame] | 3945 | return ret; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 3946 | } |
| 3947 | |
| 3948 | /** Loads the palette/gamma unit for the CRTC with the prepared values */ |
| 3949 | void intel_crtc_load_lut(struct drm_crtc *crtc) |
| 3950 | { |
| 3951 | struct drm_device *dev = crtc->dev; |
| 3952 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 3953 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 3954 | int palreg = (intel_crtc->pipe == 0) ? PALETTE_A : PALETTE_B; |
| 3955 | int i; |
| 3956 | |
| 3957 | /* The clocks have to be on to load the palette. */ |
| 3958 | if (!crtc->enabled) |
| 3959 | return; |
| 3960 | |
Adam Jackson | f2b115e | 2009-12-03 17:14:42 -0500 | [diff] [blame] | 3961 | /* use legacy palette for Ironlake */ |
Eric Anholt | bad720f | 2009-10-22 16:11:14 -0700 | [diff] [blame] | 3962 | if (HAS_PCH_SPLIT(dev)) |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 3963 | palreg = (intel_crtc->pipe == 0) ? LGC_PALETTE_A : |
| 3964 | LGC_PALETTE_B; |
| 3965 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 3966 | for (i = 0; i < 256; i++) { |
| 3967 | I915_WRITE(palreg + 4 * i, |
| 3968 | (intel_crtc->lut_r[i] << 16) | |
| 3969 | (intel_crtc->lut_g[i] << 8) | |
| 3970 | intel_crtc->lut_b[i]); |
| 3971 | } |
| 3972 | } |
| 3973 | |
| 3974 | static int intel_crtc_cursor_set(struct drm_crtc *crtc, |
| 3975 | struct drm_file *file_priv, |
| 3976 | uint32_t handle, |
| 3977 | uint32_t width, uint32_t height) |
| 3978 | { |
| 3979 | struct drm_device *dev = crtc->dev; |
| 3980 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 3981 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 3982 | struct drm_gem_object *bo; |
| 3983 | struct drm_i915_gem_object *obj_priv; |
| 3984 | int pipe = intel_crtc->pipe; |
| 3985 | uint32_t control = (pipe == 0) ? CURACNTR : CURBCNTR; |
| 3986 | uint32_t base = (pipe == 0) ? CURABASE : CURBBASE; |
Jesse Barnes | 14b60391 | 2009-05-20 16:47:08 -0400 | [diff] [blame] | 3987 | uint32_t temp = I915_READ(control); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 3988 | size_t addr; |
Kristian Høgsberg | 3f8bc37 | 2008-12-17 22:14:59 -0500 | [diff] [blame] | 3989 | int ret; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 3990 | |
Zhao Yakui | 28c9773 | 2009-10-09 11:39:41 +0800 | [diff] [blame] | 3991 | DRM_DEBUG_KMS("\n"); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 3992 | |
| 3993 | /* if we want to turn off the cursor ignore width and height */ |
| 3994 | if (!handle) { |
Zhao Yakui | 28c9773 | 2009-10-09 11:39:41 +0800 | [diff] [blame] | 3995 | DRM_DEBUG_KMS("cursor off\n"); |
Jesse Barnes | 14b60391 | 2009-05-20 16:47:08 -0400 | [diff] [blame] | 3996 | if (IS_MOBILE(dev) || IS_I9XX(dev)) { |
| 3997 | temp &= ~(CURSOR_MODE | MCURSOR_GAMMA_ENABLE); |
| 3998 | temp |= CURSOR_MODE_DISABLE; |
| 3999 | } else { |
| 4000 | temp &= ~(CURSOR_ENABLE | CURSOR_GAMMA_ENABLE); |
| 4001 | } |
Kristian Høgsberg | 3f8bc37 | 2008-12-17 22:14:59 -0500 | [diff] [blame] | 4002 | addr = 0; |
| 4003 | bo = NULL; |
Pierre Willenbrock | 5004417 | 2009-02-23 10:12:15 +1000 | [diff] [blame] | 4004 | mutex_lock(&dev->struct_mutex); |
Kristian Høgsberg | 3f8bc37 | 2008-12-17 22:14:59 -0500 | [diff] [blame] | 4005 | goto finish; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4006 | } |
| 4007 | |
| 4008 | /* Currently we only support 64x64 cursors */ |
| 4009 | if (width != 64 || height != 64) { |
| 4010 | DRM_ERROR("we currently only support 64x64 cursors\n"); |
| 4011 | return -EINVAL; |
| 4012 | } |
| 4013 | |
| 4014 | bo = drm_gem_object_lookup(dev, file_priv, handle); |
| 4015 | if (!bo) |
| 4016 | return -ENOENT; |
| 4017 | |
Daniel Vetter | 23010e4 | 2010-03-08 13:35:02 +0100 | [diff] [blame] | 4018 | obj_priv = to_intel_bo(bo); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4019 | |
| 4020 | if (bo->size < width * height * 4) { |
| 4021 | DRM_ERROR("buffer is to small\n"); |
Dave Airlie | 34b8686e | 2009-01-15 14:03:07 +1000 | [diff] [blame] | 4022 | ret = -ENOMEM; |
| 4023 | goto fail; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4024 | } |
| 4025 | |
Dave Airlie | 71acb5e | 2008-12-30 20:31:46 +1000 | [diff] [blame] | 4026 | /* 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] | 4027 | mutex_lock(&dev->struct_mutex); |
Kristian Høgsberg | b295d1b | 2009-12-16 15:16:17 -0500 | [diff] [blame] | 4028 | if (!dev_priv->info->cursor_needs_physical) { |
Dave Airlie | 71acb5e | 2008-12-30 20:31:46 +1000 | [diff] [blame] | 4029 | ret = i915_gem_object_pin(bo, PAGE_SIZE); |
| 4030 | if (ret) { |
| 4031 | DRM_ERROR("failed to pin cursor bo\n"); |
Kristian Høgsberg | 7f9872e | 2009-02-13 20:56:49 -0500 | [diff] [blame] | 4032 | goto fail_locked; |
Dave Airlie | 71acb5e | 2008-12-30 20:31:46 +1000 | [diff] [blame] | 4033 | } |
Chris Wilson | e7b526b | 2010-06-02 08:30:48 +0100 | [diff] [blame] | 4034 | |
| 4035 | ret = i915_gem_object_set_to_gtt_domain(bo, 0); |
| 4036 | if (ret) { |
| 4037 | DRM_ERROR("failed to move cursor bo into the GTT\n"); |
| 4038 | goto fail_unpin; |
| 4039 | } |
| 4040 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4041 | addr = obj_priv->gtt_offset; |
Dave Airlie | 71acb5e | 2008-12-30 20:31:46 +1000 | [diff] [blame] | 4042 | } else { |
| 4043 | ret = i915_gem_attach_phys_object(dev, bo, (pipe == 0) ? I915_GEM_PHYS_CURSOR_0 : I915_GEM_PHYS_CURSOR_1); |
| 4044 | if (ret) { |
| 4045 | DRM_ERROR("failed to attach phys object\n"); |
Kristian Høgsberg | 7f9872e | 2009-02-13 20:56:49 -0500 | [diff] [blame] | 4046 | goto fail_locked; |
Dave Airlie | 71acb5e | 2008-12-30 20:31:46 +1000 | [diff] [blame] | 4047 | } |
| 4048 | addr = obj_priv->phys_obj->handle->busaddr; |
Kristian Høgsberg | 3f8bc37 | 2008-12-17 22:14:59 -0500 | [diff] [blame] | 4049 | } |
| 4050 | |
Jesse Barnes | 14b60391 | 2009-05-20 16:47:08 -0400 | [diff] [blame] | 4051 | if (!IS_I9XX(dev)) |
| 4052 | I915_WRITE(CURSIZE, (height << 12) | width); |
| 4053 | |
| 4054 | /* Hooray for CUR*CNTR differences */ |
| 4055 | if (IS_MOBILE(dev) || IS_I9XX(dev)) { |
| 4056 | temp &= ~(CURSOR_MODE | MCURSOR_PIPE_SELECT); |
| 4057 | temp |= CURSOR_MODE_64_ARGB_AX | MCURSOR_GAMMA_ENABLE; |
| 4058 | temp |= (pipe << 28); /* Connect to correct pipe */ |
| 4059 | } else { |
| 4060 | temp &= ~(CURSOR_FORMAT_MASK); |
| 4061 | temp |= CURSOR_ENABLE; |
| 4062 | temp |= CURSOR_FORMAT_ARGB | CURSOR_GAMMA_ENABLE; |
| 4063 | } |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4064 | |
Kristian Høgsberg | 3f8bc37 | 2008-12-17 22:14:59 -0500 | [diff] [blame] | 4065 | finish: |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4066 | I915_WRITE(control, temp); |
| 4067 | I915_WRITE(base, addr); |
| 4068 | |
Kristian Høgsberg | 3f8bc37 | 2008-12-17 22:14:59 -0500 | [diff] [blame] | 4069 | if (intel_crtc->cursor_bo) { |
Kristian Høgsberg | b295d1b | 2009-12-16 15:16:17 -0500 | [diff] [blame] | 4070 | if (dev_priv->info->cursor_needs_physical) { |
Dave Airlie | 71acb5e | 2008-12-30 20:31:46 +1000 | [diff] [blame] | 4071 | if (intel_crtc->cursor_bo != bo) |
| 4072 | i915_gem_detach_phys_object(dev, intel_crtc->cursor_bo); |
| 4073 | } else |
| 4074 | i915_gem_object_unpin(intel_crtc->cursor_bo); |
Kristian Høgsberg | 3f8bc37 | 2008-12-17 22:14:59 -0500 | [diff] [blame] | 4075 | drm_gem_object_unreference(intel_crtc->cursor_bo); |
| 4076 | } |
Jesse Barnes | 8082400 | 2009-09-10 15:28:06 -0700 | [diff] [blame] | 4077 | |
Kristian Høgsberg | 7f9872e | 2009-02-13 20:56:49 -0500 | [diff] [blame] | 4078 | mutex_unlock(&dev->struct_mutex); |
Kristian Høgsberg | 3f8bc37 | 2008-12-17 22:14:59 -0500 | [diff] [blame] | 4079 | |
| 4080 | intel_crtc->cursor_addr = addr; |
| 4081 | intel_crtc->cursor_bo = bo; |
| 4082 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4083 | return 0; |
Chris Wilson | e7b526b | 2010-06-02 08:30:48 +0100 | [diff] [blame] | 4084 | fail_unpin: |
| 4085 | i915_gem_object_unpin(bo); |
Kristian Høgsberg | 7f9872e | 2009-02-13 20:56:49 -0500 | [diff] [blame] | 4086 | fail_locked: |
Dave Airlie | 34b8686e | 2009-01-15 14:03:07 +1000 | [diff] [blame] | 4087 | mutex_unlock(&dev->struct_mutex); |
Luca Barbieri | bc9025b | 2010-02-09 05:49:12 +0000 | [diff] [blame] | 4088 | fail: |
| 4089 | drm_gem_object_unreference_unlocked(bo); |
Dave Airlie | 34b8686e | 2009-01-15 14:03:07 +1000 | [diff] [blame] | 4090 | return ret; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4091 | } |
| 4092 | |
| 4093 | static int intel_crtc_cursor_move(struct drm_crtc *crtc, int x, int y) |
| 4094 | { |
| 4095 | struct drm_device *dev = crtc->dev; |
| 4096 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 4097 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 4098 | struct intel_framebuffer *intel_fb; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4099 | int pipe = intel_crtc->pipe; |
| 4100 | uint32_t temp = 0; |
| 4101 | uint32_t adder; |
| 4102 | |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 4103 | if (crtc->fb) { |
| 4104 | intel_fb = to_intel_framebuffer(crtc->fb); |
| 4105 | intel_mark_busy(dev, intel_fb->obj); |
| 4106 | } |
| 4107 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4108 | if (x < 0) { |
Keith Packard | 2245fda | 2009-05-30 20:42:29 -0700 | [diff] [blame] | 4109 | temp |= CURSOR_POS_SIGN << CURSOR_X_SHIFT; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4110 | x = -x; |
| 4111 | } |
| 4112 | if (y < 0) { |
Keith Packard | 2245fda | 2009-05-30 20:42:29 -0700 | [diff] [blame] | 4113 | temp |= CURSOR_POS_SIGN << CURSOR_Y_SHIFT; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4114 | y = -y; |
| 4115 | } |
| 4116 | |
Keith Packard | 2245fda | 2009-05-30 20:42:29 -0700 | [diff] [blame] | 4117 | temp |= x << CURSOR_X_SHIFT; |
| 4118 | temp |= y << CURSOR_Y_SHIFT; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4119 | |
| 4120 | adder = intel_crtc->cursor_addr; |
| 4121 | I915_WRITE((pipe == 0) ? CURAPOS : CURBPOS, temp); |
| 4122 | I915_WRITE((pipe == 0) ? CURABASE : CURBBASE, adder); |
| 4123 | |
| 4124 | return 0; |
| 4125 | } |
| 4126 | |
| 4127 | /** Sets the color ramps on behalf of RandR */ |
| 4128 | void intel_crtc_fb_gamma_set(struct drm_crtc *crtc, u16 red, u16 green, |
| 4129 | u16 blue, int regno) |
| 4130 | { |
| 4131 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 4132 | |
| 4133 | intel_crtc->lut_r[regno] = red >> 8; |
| 4134 | intel_crtc->lut_g[regno] = green >> 8; |
| 4135 | intel_crtc->lut_b[regno] = blue >> 8; |
| 4136 | } |
| 4137 | |
Dave Airlie | b8c00ac | 2009-10-06 13:54:01 +1000 | [diff] [blame] | 4138 | void intel_crtc_fb_gamma_get(struct drm_crtc *crtc, u16 *red, u16 *green, |
| 4139 | u16 *blue, int regno) |
| 4140 | { |
| 4141 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 4142 | |
| 4143 | *red = intel_crtc->lut_r[regno] << 8; |
| 4144 | *green = intel_crtc->lut_g[regno] << 8; |
| 4145 | *blue = intel_crtc->lut_b[regno] << 8; |
| 4146 | } |
| 4147 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4148 | static void intel_crtc_gamma_set(struct drm_crtc *crtc, u16 *red, u16 *green, |
| 4149 | u16 *blue, uint32_t size) |
| 4150 | { |
| 4151 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 4152 | int i; |
| 4153 | |
| 4154 | if (size != 256) |
| 4155 | return; |
| 4156 | |
| 4157 | for (i = 0; i < 256; i++) { |
| 4158 | intel_crtc->lut_r[i] = red[i] >> 8; |
| 4159 | intel_crtc->lut_g[i] = green[i] >> 8; |
| 4160 | intel_crtc->lut_b[i] = blue[i] >> 8; |
| 4161 | } |
| 4162 | |
| 4163 | intel_crtc_load_lut(crtc); |
| 4164 | } |
| 4165 | |
| 4166 | /** |
| 4167 | * Get a pipe with a simple mode set on it for doing load-based monitor |
| 4168 | * detection. |
| 4169 | * |
| 4170 | * 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] | 4171 | * its requirements. The pipe will be connected to no other encoders. |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4172 | * |
Eric Anholt | c751ce4 | 2010-03-25 11:48:48 -0700 | [diff] [blame] | 4173 | * 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] | 4174 | * configured for it. In the future, it could choose to temporarily disable |
| 4175 | * some outputs to free up a pipe for its use. |
| 4176 | * |
| 4177 | * \return crtc, or NULL if no pipes are available. |
| 4178 | */ |
| 4179 | |
| 4180 | /* VESA 640x480x72Hz mode to set on the pipe */ |
| 4181 | static struct drm_display_mode load_detect_mode = { |
| 4182 | DRM_MODE("640x480", DRM_MODE_TYPE_DEFAULT, 31500, 640, 664, |
| 4183 | 704, 832, 0, 480, 489, 491, 520, 0, DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC), |
| 4184 | }; |
| 4185 | |
Eric Anholt | 21d40d3 | 2010-03-25 11:11:14 -0700 | [diff] [blame] | 4186 | struct drm_crtc *intel_get_load_detect_pipe(struct intel_encoder *intel_encoder, |
Zhenyu Wang | c1c4397 | 2010-03-30 14:39:30 +0800 | [diff] [blame] | 4187 | struct drm_connector *connector, |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4188 | struct drm_display_mode *mode, |
| 4189 | int *dpms_mode) |
| 4190 | { |
| 4191 | struct intel_crtc *intel_crtc; |
| 4192 | struct drm_crtc *possible_crtc; |
| 4193 | struct drm_crtc *supported_crtc =NULL; |
Eric Anholt | 21d40d3 | 2010-03-25 11:11:14 -0700 | [diff] [blame] | 4194 | struct drm_encoder *encoder = &intel_encoder->enc; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4195 | struct drm_crtc *crtc = NULL; |
| 4196 | struct drm_device *dev = encoder->dev; |
| 4197 | struct drm_encoder_helper_funcs *encoder_funcs = encoder->helper_private; |
| 4198 | struct drm_crtc_helper_funcs *crtc_funcs; |
| 4199 | int i = -1; |
| 4200 | |
| 4201 | /* |
| 4202 | * Algorithm gets a little messy: |
| 4203 | * - if the connector already has an assigned crtc, use it (but make |
| 4204 | * sure it's on first) |
| 4205 | * - try to find the first unused crtc that can drive this connector, |
| 4206 | * and use that if we find one |
| 4207 | * - if there are no unused crtcs available, try to use the first |
| 4208 | * one we found that supports the connector |
| 4209 | */ |
| 4210 | |
| 4211 | /* See if we already have a CRTC for this connector */ |
| 4212 | if (encoder->crtc) { |
| 4213 | crtc = encoder->crtc; |
| 4214 | /* Make sure the crtc and connector are running */ |
| 4215 | intel_crtc = to_intel_crtc(crtc); |
| 4216 | *dpms_mode = intel_crtc->dpms_mode; |
| 4217 | if (intel_crtc->dpms_mode != DRM_MODE_DPMS_ON) { |
| 4218 | crtc_funcs = crtc->helper_private; |
| 4219 | crtc_funcs->dpms(crtc, DRM_MODE_DPMS_ON); |
| 4220 | encoder_funcs->dpms(encoder, DRM_MODE_DPMS_ON); |
| 4221 | } |
| 4222 | return crtc; |
| 4223 | } |
| 4224 | |
| 4225 | /* Find an unused one (if possible) */ |
| 4226 | list_for_each_entry(possible_crtc, &dev->mode_config.crtc_list, head) { |
| 4227 | i++; |
| 4228 | if (!(encoder->possible_crtcs & (1 << i))) |
| 4229 | continue; |
| 4230 | if (!possible_crtc->enabled) { |
| 4231 | crtc = possible_crtc; |
| 4232 | break; |
| 4233 | } |
| 4234 | if (!supported_crtc) |
| 4235 | supported_crtc = possible_crtc; |
| 4236 | } |
| 4237 | |
| 4238 | /* |
| 4239 | * If we didn't find an unused CRTC, don't use any. |
| 4240 | */ |
| 4241 | if (!crtc) { |
| 4242 | return NULL; |
| 4243 | } |
| 4244 | |
| 4245 | encoder->crtc = crtc; |
Zhenyu Wang | c1c4397 | 2010-03-30 14:39:30 +0800 | [diff] [blame] | 4246 | connector->encoder = encoder; |
Eric Anholt | 21d40d3 | 2010-03-25 11:11:14 -0700 | [diff] [blame] | 4247 | intel_encoder->load_detect_temp = true; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4248 | |
| 4249 | intel_crtc = to_intel_crtc(crtc); |
| 4250 | *dpms_mode = intel_crtc->dpms_mode; |
| 4251 | |
| 4252 | if (!crtc->enabled) { |
| 4253 | if (!mode) |
| 4254 | mode = &load_detect_mode; |
Kristian Høgsberg | 3c4fdcf | 2008-12-17 22:14:46 -0500 | [diff] [blame] | 4255 | drm_crtc_helper_set_mode(crtc, mode, 0, 0, crtc->fb); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4256 | } else { |
| 4257 | if (intel_crtc->dpms_mode != DRM_MODE_DPMS_ON) { |
| 4258 | crtc_funcs = crtc->helper_private; |
| 4259 | crtc_funcs->dpms(crtc, DRM_MODE_DPMS_ON); |
| 4260 | } |
| 4261 | |
| 4262 | /* Add this connector to the crtc */ |
| 4263 | encoder_funcs->mode_set(encoder, &crtc->mode, &crtc->mode); |
| 4264 | encoder_funcs->commit(encoder); |
| 4265 | } |
| 4266 | /* let the connector get through one full cycle before testing */ |
| 4267 | intel_wait_for_vblank(dev); |
| 4268 | |
| 4269 | return crtc; |
| 4270 | } |
| 4271 | |
Zhenyu Wang | c1c4397 | 2010-03-30 14:39:30 +0800 | [diff] [blame] | 4272 | void intel_release_load_detect_pipe(struct intel_encoder *intel_encoder, |
| 4273 | struct drm_connector *connector, int dpms_mode) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4274 | { |
Eric Anholt | 21d40d3 | 2010-03-25 11:11:14 -0700 | [diff] [blame] | 4275 | struct drm_encoder *encoder = &intel_encoder->enc; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4276 | struct drm_device *dev = encoder->dev; |
| 4277 | struct drm_crtc *crtc = encoder->crtc; |
| 4278 | struct drm_encoder_helper_funcs *encoder_funcs = encoder->helper_private; |
| 4279 | struct drm_crtc_helper_funcs *crtc_funcs = crtc->helper_private; |
| 4280 | |
Eric Anholt | 21d40d3 | 2010-03-25 11:11:14 -0700 | [diff] [blame] | 4281 | if (intel_encoder->load_detect_temp) { |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4282 | encoder->crtc = NULL; |
Zhenyu Wang | c1c4397 | 2010-03-30 14:39:30 +0800 | [diff] [blame] | 4283 | connector->encoder = NULL; |
Eric Anholt | 21d40d3 | 2010-03-25 11:11:14 -0700 | [diff] [blame] | 4284 | intel_encoder->load_detect_temp = false; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4285 | crtc->enabled = drm_helper_crtc_in_use(crtc); |
| 4286 | drm_helper_disable_unused_functions(dev); |
| 4287 | } |
| 4288 | |
Eric Anholt | c751ce4 | 2010-03-25 11:48:48 -0700 | [diff] [blame] | 4289 | /* Switch crtc and encoder back off if necessary */ |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4290 | if (crtc->enabled && dpms_mode != DRM_MODE_DPMS_ON) { |
| 4291 | if (encoder->crtc == crtc) |
| 4292 | encoder_funcs->dpms(encoder, dpms_mode); |
| 4293 | crtc_funcs->dpms(crtc, dpms_mode); |
| 4294 | } |
| 4295 | } |
| 4296 | |
| 4297 | /* Returns the clock of the currently programmed mode of the given pipe. */ |
| 4298 | static int intel_crtc_clock_get(struct drm_device *dev, struct drm_crtc *crtc) |
| 4299 | { |
| 4300 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 4301 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 4302 | int pipe = intel_crtc->pipe; |
| 4303 | u32 dpll = I915_READ((pipe == 0) ? DPLL_A : DPLL_B); |
| 4304 | u32 fp; |
| 4305 | intel_clock_t clock; |
| 4306 | |
| 4307 | if ((dpll & DISPLAY_RATE_SELECT_FPA1) == 0) |
| 4308 | fp = I915_READ((pipe == 0) ? FPA0 : FPB0); |
| 4309 | else |
| 4310 | fp = I915_READ((pipe == 0) ? FPA1 : FPB1); |
| 4311 | |
| 4312 | clock.m1 = (fp & FP_M1_DIV_MASK) >> FP_M1_DIV_SHIFT; |
Adam Jackson | f2b115e | 2009-12-03 17:14:42 -0500 | [diff] [blame] | 4313 | if (IS_PINEVIEW(dev)) { |
| 4314 | clock.n = ffs((fp & FP_N_PINEVIEW_DIV_MASK) >> FP_N_DIV_SHIFT) - 1; |
| 4315 | clock.m2 = (fp & FP_M2_PINEVIEW_DIV_MASK) >> FP_M2_DIV_SHIFT; |
Shaohua Li | 2177832 | 2009-02-23 15:19:16 +0800 | [diff] [blame] | 4316 | } else { |
| 4317 | clock.n = (fp & FP_N_DIV_MASK) >> FP_N_DIV_SHIFT; |
| 4318 | clock.m2 = (fp & FP_M2_DIV_MASK) >> FP_M2_DIV_SHIFT; |
| 4319 | } |
| 4320 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4321 | if (IS_I9XX(dev)) { |
Adam Jackson | f2b115e | 2009-12-03 17:14:42 -0500 | [diff] [blame] | 4322 | if (IS_PINEVIEW(dev)) |
| 4323 | clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK_PINEVIEW) >> |
| 4324 | DPLL_FPA01_P1_POST_DIV_SHIFT_PINEVIEW); |
Shaohua Li | 2177832 | 2009-02-23 15:19:16 +0800 | [diff] [blame] | 4325 | else |
| 4326 | clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK) >> |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4327 | DPLL_FPA01_P1_POST_DIV_SHIFT); |
| 4328 | |
| 4329 | switch (dpll & DPLL_MODE_MASK) { |
| 4330 | case DPLLB_MODE_DAC_SERIAL: |
| 4331 | clock.p2 = dpll & DPLL_DAC_SERIAL_P2_CLOCK_DIV_5 ? |
| 4332 | 5 : 10; |
| 4333 | break; |
| 4334 | case DPLLB_MODE_LVDS: |
| 4335 | clock.p2 = dpll & DPLLB_LVDS_P2_CLOCK_DIV_7 ? |
| 4336 | 7 : 14; |
| 4337 | break; |
| 4338 | default: |
Zhao Yakui | 28c9773 | 2009-10-09 11:39:41 +0800 | [diff] [blame] | 4339 | DRM_DEBUG_KMS("Unknown DPLL mode %08x in programmed " |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4340 | "mode\n", (int)(dpll & DPLL_MODE_MASK)); |
| 4341 | return 0; |
| 4342 | } |
| 4343 | |
| 4344 | /* XXX: Handle the 100Mhz refclk */ |
Shaohua Li | 2177832 | 2009-02-23 15:19:16 +0800 | [diff] [blame] | 4345 | intel_clock(dev, 96000, &clock); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4346 | } else { |
| 4347 | bool is_lvds = (pipe == 1) && (I915_READ(LVDS) & LVDS_PORT_EN); |
| 4348 | |
| 4349 | if (is_lvds) { |
| 4350 | clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK_I830_LVDS) >> |
| 4351 | DPLL_FPA01_P1_POST_DIV_SHIFT); |
| 4352 | clock.p2 = 14; |
| 4353 | |
| 4354 | if ((dpll & PLL_REF_INPUT_MASK) == |
| 4355 | PLLB_REF_INPUT_SPREADSPECTRUMIN) { |
| 4356 | /* XXX: might not be 66MHz */ |
Shaohua Li | 2177832 | 2009-02-23 15:19:16 +0800 | [diff] [blame] | 4357 | intel_clock(dev, 66000, &clock); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4358 | } else |
Shaohua Li | 2177832 | 2009-02-23 15:19:16 +0800 | [diff] [blame] | 4359 | intel_clock(dev, 48000, &clock); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4360 | } else { |
| 4361 | if (dpll & PLL_P1_DIVIDE_BY_TWO) |
| 4362 | clock.p1 = 2; |
| 4363 | else { |
| 4364 | clock.p1 = ((dpll & DPLL_FPA01_P1_POST_DIV_MASK_I830) >> |
| 4365 | DPLL_FPA01_P1_POST_DIV_SHIFT) + 2; |
| 4366 | } |
| 4367 | if (dpll & PLL_P2_DIVIDE_BY_4) |
| 4368 | clock.p2 = 4; |
| 4369 | else |
| 4370 | clock.p2 = 2; |
| 4371 | |
Shaohua Li | 2177832 | 2009-02-23 15:19:16 +0800 | [diff] [blame] | 4372 | intel_clock(dev, 48000, &clock); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4373 | } |
| 4374 | } |
| 4375 | |
| 4376 | /* XXX: It would be nice to validate the clocks, but we can't reuse |
| 4377 | * i830PllIsValid() because it relies on the xf86_config connector |
| 4378 | * configuration being accurate, which it isn't necessarily. |
| 4379 | */ |
| 4380 | |
| 4381 | return clock.dot; |
| 4382 | } |
| 4383 | |
| 4384 | /** Returns the currently programmed mode of the given pipe. */ |
| 4385 | struct drm_display_mode *intel_crtc_mode_get(struct drm_device *dev, |
| 4386 | struct drm_crtc *crtc) |
| 4387 | { |
| 4388 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 4389 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 4390 | int pipe = intel_crtc->pipe; |
| 4391 | struct drm_display_mode *mode; |
| 4392 | int htot = I915_READ((pipe == 0) ? HTOTAL_A : HTOTAL_B); |
| 4393 | int hsync = I915_READ((pipe == 0) ? HSYNC_A : HSYNC_B); |
| 4394 | int vtot = I915_READ((pipe == 0) ? VTOTAL_A : VTOTAL_B); |
| 4395 | int vsync = I915_READ((pipe == 0) ? VSYNC_A : VSYNC_B); |
| 4396 | |
| 4397 | mode = kzalloc(sizeof(*mode), GFP_KERNEL); |
| 4398 | if (!mode) |
| 4399 | return NULL; |
| 4400 | |
| 4401 | mode->clock = intel_crtc_clock_get(dev, crtc); |
| 4402 | mode->hdisplay = (htot & 0xffff) + 1; |
| 4403 | mode->htotal = ((htot & 0xffff0000) >> 16) + 1; |
| 4404 | mode->hsync_start = (hsync & 0xffff) + 1; |
| 4405 | mode->hsync_end = ((hsync & 0xffff0000) >> 16) + 1; |
| 4406 | mode->vdisplay = (vtot & 0xffff) + 1; |
| 4407 | mode->vtotal = ((vtot & 0xffff0000) >> 16) + 1; |
| 4408 | mode->vsync_start = (vsync & 0xffff) + 1; |
| 4409 | mode->vsync_end = ((vsync & 0xffff0000) >> 16) + 1; |
| 4410 | |
| 4411 | drm_mode_set_name(mode); |
| 4412 | drm_mode_set_crtcinfo(mode, 0); |
| 4413 | |
| 4414 | return mode; |
| 4415 | } |
| 4416 | |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 4417 | #define GPU_IDLE_TIMEOUT 500 /* ms */ |
| 4418 | |
| 4419 | /* When this timer fires, we've been idle for awhile */ |
| 4420 | static void intel_gpu_idle_timer(unsigned long arg) |
| 4421 | { |
| 4422 | struct drm_device *dev = (struct drm_device *)arg; |
| 4423 | drm_i915_private_t *dev_priv = dev->dev_private; |
| 4424 | |
Zhao Yakui | 44d98a6 | 2009-10-09 11:39:40 +0800 | [diff] [blame] | 4425 | DRM_DEBUG_DRIVER("idle timer fired, downclocking\n"); |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 4426 | |
| 4427 | dev_priv->busy = false; |
| 4428 | |
Eric Anholt | 01dfba9 | 2009-09-06 15:18:53 -0700 | [diff] [blame] | 4429 | queue_work(dev_priv->wq, &dev_priv->idle_work); |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 4430 | } |
| 4431 | |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 4432 | #define CRTC_IDLE_TIMEOUT 1000 /* ms */ |
| 4433 | |
| 4434 | static void intel_crtc_idle_timer(unsigned long arg) |
| 4435 | { |
| 4436 | struct intel_crtc *intel_crtc = (struct intel_crtc *)arg; |
| 4437 | struct drm_crtc *crtc = &intel_crtc->base; |
| 4438 | drm_i915_private_t *dev_priv = crtc->dev->dev_private; |
| 4439 | |
Zhao Yakui | 44d98a6 | 2009-10-09 11:39:40 +0800 | [diff] [blame] | 4440 | DRM_DEBUG_DRIVER("idle timer fired, downclocking\n"); |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 4441 | |
| 4442 | intel_crtc->busy = false; |
| 4443 | |
Eric Anholt | 01dfba9 | 2009-09-06 15:18:53 -0700 | [diff] [blame] | 4444 | queue_work(dev_priv->wq, &dev_priv->idle_work); |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 4445 | } |
| 4446 | |
| 4447 | static void intel_increase_pllclock(struct drm_crtc *crtc, bool schedule) |
| 4448 | { |
| 4449 | struct drm_device *dev = crtc->dev; |
| 4450 | drm_i915_private_t *dev_priv = dev->dev_private; |
| 4451 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 4452 | int pipe = intel_crtc->pipe; |
| 4453 | int dpll_reg = (pipe == 0) ? DPLL_A : DPLL_B; |
| 4454 | int dpll = I915_READ(dpll_reg); |
| 4455 | |
Eric Anholt | bad720f | 2009-10-22 16:11:14 -0700 | [diff] [blame] | 4456 | if (HAS_PCH_SPLIT(dev)) |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 4457 | return; |
| 4458 | |
| 4459 | if (!dev_priv->lvds_downclock_avail) |
| 4460 | return; |
| 4461 | |
| 4462 | if (!HAS_PIPE_CXSR(dev) && (dpll & DISPLAY_RATE_SELECT_FPA1)) { |
Zhao Yakui | 44d98a6 | 2009-10-09 11:39:40 +0800 | [diff] [blame] | 4463 | DRM_DEBUG_DRIVER("upclocking LVDS\n"); |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 4464 | |
| 4465 | /* Unlock panel regs */ |
| 4466 | I915_WRITE(PP_CONTROL, I915_READ(PP_CONTROL) | (0xabcd << 16)); |
| 4467 | |
| 4468 | dpll &= ~DISPLAY_RATE_SELECT_FPA1; |
| 4469 | I915_WRITE(dpll_reg, dpll); |
| 4470 | dpll = I915_READ(dpll_reg); |
| 4471 | intel_wait_for_vblank(dev); |
| 4472 | dpll = I915_READ(dpll_reg); |
| 4473 | if (dpll & DISPLAY_RATE_SELECT_FPA1) |
Zhao Yakui | 44d98a6 | 2009-10-09 11:39:40 +0800 | [diff] [blame] | 4474 | DRM_DEBUG_DRIVER("failed to upclock LVDS!\n"); |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 4475 | |
| 4476 | /* ...and lock them again */ |
| 4477 | I915_WRITE(PP_CONTROL, I915_READ(PP_CONTROL) & 0x3); |
| 4478 | } |
| 4479 | |
| 4480 | /* Schedule downclock */ |
| 4481 | if (schedule) |
| 4482 | mod_timer(&intel_crtc->idle_timer, jiffies + |
| 4483 | msecs_to_jiffies(CRTC_IDLE_TIMEOUT)); |
| 4484 | } |
| 4485 | |
| 4486 | static void intel_decrease_pllclock(struct drm_crtc *crtc) |
| 4487 | { |
| 4488 | struct drm_device *dev = crtc->dev; |
| 4489 | drm_i915_private_t *dev_priv = dev->dev_private; |
| 4490 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 4491 | int pipe = intel_crtc->pipe; |
| 4492 | int dpll_reg = (pipe == 0) ? DPLL_A : DPLL_B; |
| 4493 | int dpll = I915_READ(dpll_reg); |
| 4494 | |
Eric Anholt | bad720f | 2009-10-22 16:11:14 -0700 | [diff] [blame] | 4495 | if (HAS_PCH_SPLIT(dev)) |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 4496 | return; |
| 4497 | |
| 4498 | if (!dev_priv->lvds_downclock_avail) |
| 4499 | return; |
| 4500 | |
| 4501 | /* |
| 4502 | * Since this is called by a timer, we should never get here in |
| 4503 | * the manual case. |
| 4504 | */ |
| 4505 | if (!HAS_PIPE_CXSR(dev) && intel_crtc->lowfreq_avail) { |
Zhao Yakui | 44d98a6 | 2009-10-09 11:39:40 +0800 | [diff] [blame] | 4506 | DRM_DEBUG_DRIVER("downclocking LVDS\n"); |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 4507 | |
| 4508 | /* Unlock panel regs */ |
| 4509 | I915_WRITE(PP_CONTROL, I915_READ(PP_CONTROL) | (0xabcd << 16)); |
| 4510 | |
| 4511 | dpll |= DISPLAY_RATE_SELECT_FPA1; |
| 4512 | I915_WRITE(dpll_reg, dpll); |
| 4513 | dpll = I915_READ(dpll_reg); |
| 4514 | intel_wait_for_vblank(dev); |
| 4515 | dpll = I915_READ(dpll_reg); |
| 4516 | if (!(dpll & DISPLAY_RATE_SELECT_FPA1)) |
Zhao Yakui | 44d98a6 | 2009-10-09 11:39:40 +0800 | [diff] [blame] | 4517 | DRM_DEBUG_DRIVER("failed to downclock LVDS!\n"); |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 4518 | |
| 4519 | /* ...and lock them again */ |
| 4520 | I915_WRITE(PP_CONTROL, I915_READ(PP_CONTROL) & 0x3); |
| 4521 | } |
| 4522 | |
| 4523 | } |
| 4524 | |
| 4525 | /** |
| 4526 | * intel_idle_update - adjust clocks for idleness |
| 4527 | * @work: work struct |
| 4528 | * |
| 4529 | * Either the GPU or display (or both) went idle. Check the busy status |
| 4530 | * here and adjust the CRTC and GPU clocks as necessary. |
| 4531 | */ |
| 4532 | static void intel_idle_update(struct work_struct *work) |
| 4533 | { |
| 4534 | drm_i915_private_t *dev_priv = container_of(work, drm_i915_private_t, |
| 4535 | idle_work); |
| 4536 | struct drm_device *dev = dev_priv->dev; |
| 4537 | struct drm_crtc *crtc; |
| 4538 | struct intel_crtc *intel_crtc; |
Li Peng | 45ac22c | 2010-06-12 23:38:35 +0800 | [diff] [blame] | 4539 | int enabled = 0; |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 4540 | |
| 4541 | if (!i915_powersave) |
| 4542 | return; |
| 4543 | |
| 4544 | mutex_lock(&dev->struct_mutex); |
| 4545 | |
Jesse Barnes | 7648fa9 | 2010-05-20 14:28:11 -0700 | [diff] [blame] | 4546 | i915_update_gfx_val(dev_priv); |
| 4547 | |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 4548 | list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) { |
| 4549 | /* Skip inactive CRTCs */ |
| 4550 | if (!crtc->fb) |
| 4551 | continue; |
| 4552 | |
Li Peng | 45ac22c | 2010-06-12 23:38:35 +0800 | [diff] [blame] | 4553 | enabled++; |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 4554 | intel_crtc = to_intel_crtc(crtc); |
| 4555 | if (!intel_crtc->busy) |
| 4556 | intel_decrease_pllclock(crtc); |
| 4557 | } |
| 4558 | |
Li Peng | 45ac22c | 2010-06-12 23:38:35 +0800 | [diff] [blame] | 4559 | if ((enabled == 1) && (IS_I945G(dev) || IS_I945GM(dev))) { |
| 4560 | DRM_DEBUG_DRIVER("enable memory self refresh on 945\n"); |
| 4561 | I915_WRITE(FW_BLC_SELF, FW_BLC_SELF_EN_MASK | FW_BLC_SELF_EN); |
| 4562 | } |
| 4563 | |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 4564 | mutex_unlock(&dev->struct_mutex); |
| 4565 | } |
| 4566 | |
| 4567 | /** |
| 4568 | * intel_mark_busy - mark the GPU and possibly the display busy |
| 4569 | * @dev: drm device |
| 4570 | * @obj: object we're operating on |
| 4571 | * |
| 4572 | * Callers can use this function to indicate that the GPU is busy processing |
| 4573 | * commands. If @obj matches one of the CRTC objects (i.e. it's a scanout |
| 4574 | * buffer), we'll also mark the display as busy, so we know to increase its |
| 4575 | * clock frequency. |
| 4576 | */ |
| 4577 | void intel_mark_busy(struct drm_device *dev, struct drm_gem_object *obj) |
| 4578 | { |
| 4579 | drm_i915_private_t *dev_priv = dev->dev_private; |
| 4580 | struct drm_crtc *crtc = NULL; |
| 4581 | struct intel_framebuffer *intel_fb; |
| 4582 | struct intel_crtc *intel_crtc; |
| 4583 | |
Zhenyu Wang | 5e17ee7 | 2009-09-03 09:30:06 +0800 | [diff] [blame] | 4584 | if (!drm_core_check_feature(dev, DRIVER_MODESET)) |
| 4585 | return; |
| 4586 | |
Li Peng | 060e645 | 2010-02-10 01:54:24 +0800 | [diff] [blame] | 4587 | if (!dev_priv->busy) { |
| 4588 | if (IS_I945G(dev) || IS_I945GM(dev)) { |
| 4589 | u32 fw_blc_self; |
Li Peng | ee980b8 | 2010-01-27 19:01:11 +0800 | [diff] [blame] | 4590 | |
Li Peng | 060e645 | 2010-02-10 01:54:24 +0800 | [diff] [blame] | 4591 | DRM_DEBUG_DRIVER("disable memory self refresh on 945\n"); |
| 4592 | fw_blc_self = I915_READ(FW_BLC_SELF); |
| 4593 | fw_blc_self &= ~FW_BLC_SELF_EN; |
| 4594 | I915_WRITE(FW_BLC_SELF, fw_blc_self | FW_BLC_SELF_EN_MASK); |
| 4595 | } |
Chris Wilson | 28cf798 | 2009-11-30 01:08:56 +0000 | [diff] [blame] | 4596 | dev_priv->busy = true; |
Li Peng | 060e645 | 2010-02-10 01:54:24 +0800 | [diff] [blame] | 4597 | } else |
Chris Wilson | 28cf798 | 2009-11-30 01:08:56 +0000 | [diff] [blame] | 4598 | mod_timer(&dev_priv->idle_timer, jiffies + |
| 4599 | msecs_to_jiffies(GPU_IDLE_TIMEOUT)); |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 4600 | |
| 4601 | list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) { |
| 4602 | if (!crtc->fb) |
| 4603 | continue; |
| 4604 | |
| 4605 | intel_crtc = to_intel_crtc(crtc); |
| 4606 | intel_fb = to_intel_framebuffer(crtc->fb); |
| 4607 | if (intel_fb->obj == obj) { |
| 4608 | if (!intel_crtc->busy) { |
Li Peng | 060e645 | 2010-02-10 01:54:24 +0800 | [diff] [blame] | 4609 | if (IS_I945G(dev) || IS_I945GM(dev)) { |
| 4610 | u32 fw_blc_self; |
| 4611 | |
| 4612 | DRM_DEBUG_DRIVER("disable memory self refresh on 945\n"); |
| 4613 | fw_blc_self = I915_READ(FW_BLC_SELF); |
| 4614 | fw_blc_self &= ~FW_BLC_SELF_EN; |
| 4615 | I915_WRITE(FW_BLC_SELF, fw_blc_self | FW_BLC_SELF_EN_MASK); |
| 4616 | } |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 4617 | /* Non-busy -> busy, upclock */ |
| 4618 | intel_increase_pllclock(crtc, true); |
| 4619 | intel_crtc->busy = true; |
| 4620 | } else { |
| 4621 | /* Busy -> busy, put off timer */ |
| 4622 | mod_timer(&intel_crtc->idle_timer, jiffies + |
| 4623 | msecs_to_jiffies(CRTC_IDLE_TIMEOUT)); |
| 4624 | } |
| 4625 | } |
| 4626 | } |
| 4627 | } |
| 4628 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4629 | static void intel_crtc_destroy(struct drm_crtc *crtc) |
| 4630 | { |
| 4631 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 4632 | |
| 4633 | drm_crtc_cleanup(crtc); |
| 4634 | kfree(intel_crtc); |
| 4635 | } |
| 4636 | |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 4637 | struct intel_unpin_work { |
| 4638 | struct work_struct work; |
| 4639 | struct drm_device *dev; |
Jesse Barnes | b1b87f6 | 2010-01-26 14:40:05 -0800 | [diff] [blame] | 4640 | struct drm_gem_object *old_fb_obj; |
| 4641 | struct drm_gem_object *pending_flip_obj; |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 4642 | struct drm_pending_vblank_event *event; |
| 4643 | int pending; |
| 4644 | }; |
| 4645 | |
| 4646 | static void intel_unpin_work_fn(struct work_struct *__work) |
| 4647 | { |
| 4648 | struct intel_unpin_work *work = |
| 4649 | container_of(__work, struct intel_unpin_work, work); |
| 4650 | |
| 4651 | mutex_lock(&work->dev->struct_mutex); |
Jesse Barnes | b1b87f6 | 2010-01-26 14:40:05 -0800 | [diff] [blame] | 4652 | i915_gem_object_unpin(work->old_fb_obj); |
Jesse Barnes | 75dfca8 | 2010-02-10 15:09:44 -0800 | [diff] [blame] | 4653 | drm_gem_object_unreference(work->pending_flip_obj); |
Jesse Barnes | b1b87f6 | 2010-01-26 14:40:05 -0800 | [diff] [blame] | 4654 | drm_gem_object_unreference(work->old_fb_obj); |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 4655 | mutex_unlock(&work->dev->struct_mutex); |
| 4656 | kfree(work); |
| 4657 | } |
| 4658 | |
Jesse Barnes | 1afe3e9 | 2010-03-26 10:35:20 -0700 | [diff] [blame] | 4659 | static void do_intel_finish_page_flip(struct drm_device *dev, |
| 4660 | struct drm_crtc *crtc) |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 4661 | { |
| 4662 | drm_i915_private_t *dev_priv = dev->dev_private; |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 4663 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 4664 | struct intel_unpin_work *work; |
| 4665 | struct drm_i915_gem_object *obj_priv; |
| 4666 | struct drm_pending_vblank_event *e; |
| 4667 | struct timeval now; |
| 4668 | unsigned long flags; |
| 4669 | |
| 4670 | /* Ignore early vblank irqs */ |
| 4671 | if (intel_crtc == NULL) |
| 4672 | return; |
| 4673 | |
| 4674 | spin_lock_irqsave(&dev->event_lock, flags); |
| 4675 | work = intel_crtc->unpin_work; |
| 4676 | if (work == NULL || !work->pending) { |
| 4677 | spin_unlock_irqrestore(&dev->event_lock, flags); |
| 4678 | return; |
| 4679 | } |
| 4680 | |
| 4681 | intel_crtc->unpin_work = NULL; |
| 4682 | drm_vblank_put(dev, intel_crtc->pipe); |
| 4683 | |
| 4684 | if (work->event) { |
| 4685 | e = work->event; |
| 4686 | do_gettimeofday(&now); |
| 4687 | e->event.sequence = drm_vblank_count(dev, intel_crtc->pipe); |
| 4688 | e->event.tv_sec = now.tv_sec; |
| 4689 | e->event.tv_usec = now.tv_usec; |
| 4690 | list_add_tail(&e->base.link, |
| 4691 | &e->base.file_priv->event_list); |
| 4692 | wake_up_interruptible(&e->base.file_priv->event_wait); |
| 4693 | } |
| 4694 | |
| 4695 | spin_unlock_irqrestore(&dev->event_lock, flags); |
| 4696 | |
Daniel Vetter | 23010e4 | 2010-03-08 13:35:02 +0100 | [diff] [blame] | 4697 | obj_priv = to_intel_bo(work->pending_flip_obj); |
Jesse Barnes | de3f440 | 2010-01-14 13:18:02 -0800 | [diff] [blame] | 4698 | |
| 4699 | /* Initial scanout buffer will have a 0 pending flip count */ |
| 4700 | if ((atomic_read(&obj_priv->pending_flip) == 0) || |
| 4701 | atomic_dec_and_test(&obj_priv->pending_flip)) |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 4702 | DRM_WAKEUP(&dev_priv->pending_flip_queue); |
| 4703 | schedule_work(&work->work); |
Jesse Barnes | e5510fa | 2010-07-01 16:48:37 -0700 | [diff] [blame] | 4704 | |
| 4705 | trace_i915_flip_complete(intel_crtc->plane, work->pending_flip_obj); |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 4706 | } |
| 4707 | |
Jesse Barnes | 1afe3e9 | 2010-03-26 10:35:20 -0700 | [diff] [blame] | 4708 | void intel_finish_page_flip(struct drm_device *dev, int pipe) |
| 4709 | { |
| 4710 | drm_i915_private_t *dev_priv = dev->dev_private; |
| 4711 | struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe]; |
| 4712 | |
| 4713 | do_intel_finish_page_flip(dev, crtc); |
| 4714 | } |
| 4715 | |
| 4716 | void intel_finish_page_flip_plane(struct drm_device *dev, int plane) |
| 4717 | { |
| 4718 | drm_i915_private_t *dev_priv = dev->dev_private; |
| 4719 | struct drm_crtc *crtc = dev_priv->plane_to_crtc_mapping[plane]; |
| 4720 | |
| 4721 | do_intel_finish_page_flip(dev, crtc); |
| 4722 | } |
| 4723 | |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 4724 | void intel_prepare_page_flip(struct drm_device *dev, int plane) |
| 4725 | { |
| 4726 | drm_i915_private_t *dev_priv = dev->dev_private; |
| 4727 | struct intel_crtc *intel_crtc = |
| 4728 | to_intel_crtc(dev_priv->plane_to_crtc_mapping[plane]); |
| 4729 | unsigned long flags; |
| 4730 | |
| 4731 | spin_lock_irqsave(&dev->event_lock, flags); |
Jesse Barnes | de3f440 | 2010-01-14 13:18:02 -0800 | [diff] [blame] | 4732 | if (intel_crtc->unpin_work) { |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 4733 | intel_crtc->unpin_work->pending = 1; |
Jesse Barnes | de3f440 | 2010-01-14 13:18:02 -0800 | [diff] [blame] | 4734 | } else { |
| 4735 | DRM_DEBUG_DRIVER("preparing flip with no unpin work?\n"); |
| 4736 | } |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 4737 | spin_unlock_irqrestore(&dev->event_lock, flags); |
| 4738 | } |
| 4739 | |
| 4740 | static int intel_crtc_page_flip(struct drm_crtc *crtc, |
| 4741 | struct drm_framebuffer *fb, |
| 4742 | struct drm_pending_vblank_event *event) |
| 4743 | { |
| 4744 | struct drm_device *dev = crtc->dev; |
| 4745 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 4746 | struct intel_framebuffer *intel_fb; |
| 4747 | struct drm_i915_gem_object *obj_priv; |
| 4748 | struct drm_gem_object *obj; |
| 4749 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 4750 | struct intel_unpin_work *work; |
| 4751 | unsigned long flags; |
Zhenyu Wang | aacef09 | 2010-02-09 09:46:20 +0800 | [diff] [blame] | 4752 | int pipesrc_reg = (intel_crtc->pipe == 0) ? PIPEASRC : PIPEBSRC; |
| 4753 | int ret, pipesrc; |
Jesse Barnes | 83f7fd0 | 2010-04-05 14:03:51 -0700 | [diff] [blame] | 4754 | u32 flip_mask; |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 4755 | |
| 4756 | work = kzalloc(sizeof *work, GFP_KERNEL); |
| 4757 | if (work == NULL) |
| 4758 | return -ENOMEM; |
| 4759 | |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 4760 | work->event = event; |
| 4761 | work->dev = crtc->dev; |
| 4762 | intel_fb = to_intel_framebuffer(crtc->fb); |
Jesse Barnes | b1b87f6 | 2010-01-26 14:40:05 -0800 | [diff] [blame] | 4763 | work->old_fb_obj = intel_fb->obj; |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 4764 | INIT_WORK(&work->work, intel_unpin_work_fn); |
| 4765 | |
| 4766 | /* We borrow the event spin lock for protecting unpin_work */ |
| 4767 | spin_lock_irqsave(&dev->event_lock, flags); |
| 4768 | if (intel_crtc->unpin_work) { |
| 4769 | spin_unlock_irqrestore(&dev->event_lock, flags); |
| 4770 | kfree(work); |
Chris Wilson | 468f0b4 | 2010-05-27 13:18:13 +0100 | [diff] [blame] | 4771 | |
| 4772 | DRM_DEBUG_DRIVER("flip queue: crtc already busy\n"); |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 4773 | return -EBUSY; |
| 4774 | } |
| 4775 | intel_crtc->unpin_work = work; |
| 4776 | spin_unlock_irqrestore(&dev->event_lock, flags); |
| 4777 | |
| 4778 | intel_fb = to_intel_framebuffer(fb); |
| 4779 | obj = intel_fb->obj; |
| 4780 | |
Chris Wilson | 468f0b4 | 2010-05-27 13:18:13 +0100 | [diff] [blame] | 4781 | mutex_lock(&dev->struct_mutex); |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 4782 | ret = intel_pin_and_fence_fb_obj(dev, obj); |
| 4783 | if (ret != 0) { |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 4784 | mutex_unlock(&dev->struct_mutex); |
Chris Wilson | 468f0b4 | 2010-05-27 13:18:13 +0100 | [diff] [blame] | 4785 | |
| 4786 | spin_lock_irqsave(&dev->event_lock, flags); |
| 4787 | intel_crtc->unpin_work = NULL; |
| 4788 | spin_unlock_irqrestore(&dev->event_lock, flags); |
| 4789 | |
| 4790 | kfree(work); |
| 4791 | |
| 4792 | DRM_DEBUG_DRIVER("flip queue: %p pin & fence failed\n", |
| 4793 | to_intel_bo(obj)); |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 4794 | return ret; |
| 4795 | } |
| 4796 | |
Jesse Barnes | 75dfca8 | 2010-02-10 15:09:44 -0800 | [diff] [blame] | 4797 | /* Reference the objects for the scheduled work. */ |
Jesse Barnes | b1b87f6 | 2010-01-26 14:40:05 -0800 | [diff] [blame] | 4798 | drm_gem_object_reference(work->old_fb_obj); |
Jesse Barnes | 75dfca8 | 2010-02-10 15:09:44 -0800 | [diff] [blame] | 4799 | drm_gem_object_reference(obj); |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 4800 | |
| 4801 | crtc->fb = fb; |
| 4802 | i915_gem_object_flush_write_domain(obj); |
| 4803 | drm_vblank_get(dev, intel_crtc->pipe); |
Daniel Vetter | 23010e4 | 2010-03-08 13:35:02 +0100 | [diff] [blame] | 4804 | obj_priv = to_intel_bo(obj); |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 4805 | atomic_inc(&obj_priv->pending_flip); |
Jesse Barnes | b1b87f6 | 2010-01-26 14:40:05 -0800 | [diff] [blame] | 4806 | work->pending_flip_obj = obj; |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 4807 | |
Jesse Barnes | 83f7fd0 | 2010-04-05 14:03:51 -0700 | [diff] [blame] | 4808 | if (intel_crtc->plane) |
| 4809 | flip_mask = I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT; |
| 4810 | else |
| 4811 | flip_mask = I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT; |
| 4812 | |
| 4813 | /* Wait for any previous flip to finish */ |
| 4814 | if (IS_GEN3(dev)) |
| 4815 | while (I915_READ(ISR) & flip_mask) |
| 4816 | ; |
| 4817 | |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 4818 | BEGIN_LP_RING(4); |
Jesse Barnes | 22fd0fa | 2009-12-02 13:42:53 -0800 | [diff] [blame] | 4819 | if (IS_I965G(dev)) { |
Jesse Barnes | 1afe3e9 | 2010-03-26 10:35:20 -0700 | [diff] [blame] | 4820 | OUT_RING(MI_DISPLAY_FLIP | |
| 4821 | MI_DISPLAY_FLIP_PLANE(intel_crtc->plane)); |
| 4822 | OUT_RING(fb->pitch); |
Jesse Barnes | 22fd0fa | 2009-12-02 13:42:53 -0800 | [diff] [blame] | 4823 | OUT_RING(obj_priv->gtt_offset | obj_priv->tiling_mode); |
Zhenyu Wang | aacef09 | 2010-02-09 09:46:20 +0800 | [diff] [blame] | 4824 | pipesrc = I915_READ(pipesrc_reg); |
| 4825 | OUT_RING(pipesrc & 0x0fff0fff); |
Jesse Barnes | 22fd0fa | 2009-12-02 13:42:53 -0800 | [diff] [blame] | 4826 | } else { |
Jesse Barnes | 1afe3e9 | 2010-03-26 10:35:20 -0700 | [diff] [blame] | 4827 | OUT_RING(MI_DISPLAY_FLIP_I915 | |
| 4828 | MI_DISPLAY_FLIP_PLANE(intel_crtc->plane)); |
| 4829 | OUT_RING(fb->pitch); |
Jesse Barnes | 22fd0fa | 2009-12-02 13:42:53 -0800 | [diff] [blame] | 4830 | OUT_RING(obj_priv->gtt_offset); |
| 4831 | OUT_RING(MI_NOOP); |
| 4832 | } |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 4833 | ADVANCE_LP_RING(); |
| 4834 | |
| 4835 | mutex_unlock(&dev->struct_mutex); |
| 4836 | |
Jesse Barnes | e5510fa | 2010-07-01 16:48:37 -0700 | [diff] [blame] | 4837 | trace_i915_flip_request(intel_crtc->plane, obj); |
| 4838 | |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 4839 | return 0; |
| 4840 | } |
| 4841 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4842 | static const struct drm_crtc_helper_funcs intel_helper_funcs = { |
| 4843 | .dpms = intel_crtc_dpms, |
| 4844 | .mode_fixup = intel_crtc_mode_fixup, |
| 4845 | .mode_set = intel_crtc_mode_set, |
| 4846 | .mode_set_base = intel_pipe_set_base, |
| 4847 | .prepare = intel_crtc_prepare, |
| 4848 | .commit = intel_crtc_commit, |
Dave Airlie | 068143d | 2009-10-05 09:58:02 +1000 | [diff] [blame] | 4849 | .load_lut = intel_crtc_load_lut, |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4850 | }; |
| 4851 | |
| 4852 | static const struct drm_crtc_funcs intel_crtc_funcs = { |
| 4853 | .cursor_set = intel_crtc_cursor_set, |
| 4854 | .cursor_move = intel_crtc_cursor_move, |
| 4855 | .gamma_set = intel_crtc_gamma_set, |
| 4856 | .set_config = drm_crtc_helper_set_config, |
| 4857 | .destroy = intel_crtc_destroy, |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 4858 | .page_flip = intel_crtc_page_flip, |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4859 | }; |
| 4860 | |
| 4861 | |
Hannes Eder | b358d0a | 2008-12-18 21:18:47 +0100 | [diff] [blame] | 4862 | static void intel_crtc_init(struct drm_device *dev, int pipe) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4863 | { |
Jesse Barnes | 22fd0fa | 2009-12-02 13:42:53 -0800 | [diff] [blame] | 4864 | drm_i915_private_t *dev_priv = dev->dev_private; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4865 | struct intel_crtc *intel_crtc; |
| 4866 | int i; |
| 4867 | |
| 4868 | intel_crtc = kzalloc(sizeof(struct intel_crtc) + (INTELFB_CONN_LIMIT * sizeof(struct drm_connector *)), GFP_KERNEL); |
| 4869 | if (intel_crtc == NULL) |
| 4870 | return; |
| 4871 | |
| 4872 | drm_crtc_init(dev, &intel_crtc->base, &intel_crtc_funcs); |
| 4873 | |
| 4874 | drm_mode_crtc_set_gamma_size(&intel_crtc->base, 256); |
| 4875 | intel_crtc->pipe = pipe; |
Shaohua Li | 7662c8b | 2009-06-26 11:23:55 +0800 | [diff] [blame] | 4876 | intel_crtc->plane = pipe; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4877 | for (i = 0; i < 256; i++) { |
| 4878 | intel_crtc->lut_r[i] = i; |
| 4879 | intel_crtc->lut_g[i] = i; |
| 4880 | intel_crtc->lut_b[i] = i; |
| 4881 | } |
| 4882 | |
Jesse Barnes | 8082400 | 2009-09-10 15:28:06 -0700 | [diff] [blame] | 4883 | /* Swap pipes & planes for FBC on pre-965 */ |
| 4884 | intel_crtc->pipe = pipe; |
| 4885 | intel_crtc->plane = pipe; |
| 4886 | if (IS_MOBILE(dev) && (IS_I9XX(dev) && !IS_I965G(dev))) { |
Zhao Yakui | 28c9773 | 2009-10-09 11:39:41 +0800 | [diff] [blame] | 4887 | DRM_DEBUG_KMS("swapping pipes & planes for FBC\n"); |
Jesse Barnes | 8082400 | 2009-09-10 15:28:06 -0700 | [diff] [blame] | 4888 | intel_crtc->plane = ((pipe == 0) ? 1 : 0); |
| 4889 | } |
| 4890 | |
Jesse Barnes | 22fd0fa | 2009-12-02 13:42:53 -0800 | [diff] [blame] | 4891 | BUG_ON(pipe >= ARRAY_SIZE(dev_priv->plane_to_crtc_mapping) || |
| 4892 | dev_priv->plane_to_crtc_mapping[intel_crtc->plane] != NULL); |
| 4893 | dev_priv->plane_to_crtc_mapping[intel_crtc->plane] = &intel_crtc->base; |
| 4894 | dev_priv->pipe_to_crtc_mapping[intel_crtc->pipe] = &intel_crtc->base; |
| 4895 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4896 | intel_crtc->cursor_addr = 0; |
| 4897 | intel_crtc->dpms_mode = DRM_MODE_DPMS_OFF; |
| 4898 | drm_crtc_helper_add(&intel_crtc->base, &intel_helper_funcs); |
| 4899 | |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 4900 | intel_crtc->busy = false; |
| 4901 | |
| 4902 | setup_timer(&intel_crtc->idle_timer, intel_crtc_idle_timer, |
| 4903 | (unsigned long)intel_crtc); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4904 | } |
| 4905 | |
Carl Worth | 08d7b3d | 2009-04-29 14:43:54 -0700 | [diff] [blame] | 4906 | int intel_get_pipe_from_crtc_id(struct drm_device *dev, void *data, |
| 4907 | struct drm_file *file_priv) |
| 4908 | { |
| 4909 | drm_i915_private_t *dev_priv = dev->dev_private; |
| 4910 | 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] | 4911 | struct drm_mode_object *drmmode_obj; |
| 4912 | struct intel_crtc *crtc; |
Carl Worth | 08d7b3d | 2009-04-29 14:43:54 -0700 | [diff] [blame] | 4913 | |
| 4914 | if (!dev_priv) { |
| 4915 | DRM_ERROR("called with no initialization\n"); |
| 4916 | return -EINVAL; |
| 4917 | } |
| 4918 | |
Daniel Vetter | c05422d | 2009-08-11 16:05:30 +0200 | [diff] [blame] | 4919 | drmmode_obj = drm_mode_object_find(dev, pipe_from_crtc_id->crtc_id, |
| 4920 | DRM_MODE_OBJECT_CRTC); |
Carl Worth | 08d7b3d | 2009-04-29 14:43:54 -0700 | [diff] [blame] | 4921 | |
Daniel Vetter | c05422d | 2009-08-11 16:05:30 +0200 | [diff] [blame] | 4922 | if (!drmmode_obj) { |
Carl Worth | 08d7b3d | 2009-04-29 14:43:54 -0700 | [diff] [blame] | 4923 | DRM_ERROR("no such CRTC id\n"); |
| 4924 | return -EINVAL; |
| 4925 | } |
| 4926 | |
Daniel Vetter | c05422d | 2009-08-11 16:05:30 +0200 | [diff] [blame] | 4927 | crtc = to_intel_crtc(obj_to_crtc(drmmode_obj)); |
| 4928 | pipe_from_crtc_id->pipe = crtc->pipe; |
Carl Worth | 08d7b3d | 2009-04-29 14:43:54 -0700 | [diff] [blame] | 4929 | |
Daniel Vetter | c05422d | 2009-08-11 16:05:30 +0200 | [diff] [blame] | 4930 | return 0; |
Carl Worth | 08d7b3d | 2009-04-29 14:43:54 -0700 | [diff] [blame] | 4931 | } |
| 4932 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4933 | struct drm_crtc *intel_get_crtc_from_pipe(struct drm_device *dev, int pipe) |
| 4934 | { |
| 4935 | struct drm_crtc *crtc = NULL; |
| 4936 | |
| 4937 | list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) { |
| 4938 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 4939 | if (intel_crtc->pipe == pipe) |
| 4940 | break; |
| 4941 | } |
| 4942 | return crtc; |
| 4943 | } |
| 4944 | |
Zhenyu Wang | c5e4df3 | 2010-03-30 14:39:27 +0800 | [diff] [blame] | 4945 | static int intel_encoder_clones(struct drm_device *dev, int type_mask) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4946 | { |
| 4947 | int index_mask = 0; |
Zhenyu Wang | c5e4df3 | 2010-03-30 14:39:27 +0800 | [diff] [blame] | 4948 | struct drm_encoder *encoder; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4949 | int entry = 0; |
| 4950 | |
Zhenyu Wang | c5e4df3 | 2010-03-30 14:39:27 +0800 | [diff] [blame] | 4951 | list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) { |
| 4952 | struct intel_encoder *intel_encoder = enc_to_intel_encoder(encoder); |
Eric Anholt | 21d40d3 | 2010-03-25 11:11:14 -0700 | [diff] [blame] | 4953 | if (type_mask & intel_encoder->clone_mask) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4954 | index_mask |= (1 << entry); |
| 4955 | entry++; |
| 4956 | } |
| 4957 | return index_mask; |
| 4958 | } |
| 4959 | |
| 4960 | |
| 4961 | static void intel_setup_outputs(struct drm_device *dev) |
| 4962 | { |
Eric Anholt | 725e30a | 2009-01-22 13:01:02 -0800 | [diff] [blame] | 4963 | struct drm_i915_private *dev_priv = dev->dev_private; |
Zhenyu Wang | c5e4df3 | 2010-03-30 14:39:27 +0800 | [diff] [blame] | 4964 | struct drm_encoder *encoder; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4965 | |
| 4966 | intel_crt_init(dev); |
| 4967 | |
| 4968 | /* Set up integrated LVDS */ |
Zhenyu Wang | 541998a | 2009-06-05 15:38:44 +0800 | [diff] [blame] | 4969 | if (IS_MOBILE(dev) && !IS_I830(dev)) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4970 | intel_lvds_init(dev); |
| 4971 | |
Eric Anholt | bad720f | 2009-10-22 16:11:14 -0700 | [diff] [blame] | 4972 | if (HAS_PCH_SPLIT(dev)) { |
Zhenyu Wang | 30ad48b | 2009-06-05 15:38:43 +0800 | [diff] [blame] | 4973 | int found; |
| 4974 | |
Zhenyu Wang | 32f9d65 | 2009-07-24 01:00:32 +0800 | [diff] [blame] | 4975 | if (IS_MOBILE(dev) && (I915_READ(DP_A) & DP_DETECTED)) |
| 4976 | intel_dp_init(dev, DP_A); |
| 4977 | |
Zhenyu Wang | 30ad48b | 2009-06-05 15:38:43 +0800 | [diff] [blame] | 4978 | if (I915_READ(HDMIB) & PORT_DETECTED) { |
Zhao Yakui | 461ed3c | 2010-03-30 15:11:33 +0800 | [diff] [blame] | 4979 | /* PCH SDVOB multiplex with HDMIB */ |
| 4980 | found = intel_sdvo_init(dev, PCH_SDVOB); |
Zhenyu Wang | 30ad48b | 2009-06-05 15:38:43 +0800 | [diff] [blame] | 4981 | if (!found) |
| 4982 | intel_hdmi_init(dev, HDMIB); |
Zhenyu Wang | 5eb08b6 | 2009-07-24 01:00:31 +0800 | [diff] [blame] | 4983 | if (!found && (I915_READ(PCH_DP_B) & DP_DETECTED)) |
| 4984 | intel_dp_init(dev, PCH_DP_B); |
Zhenyu Wang | 30ad48b | 2009-06-05 15:38:43 +0800 | [diff] [blame] | 4985 | } |
| 4986 | |
| 4987 | if (I915_READ(HDMIC) & PORT_DETECTED) |
| 4988 | intel_hdmi_init(dev, HDMIC); |
| 4989 | |
| 4990 | if (I915_READ(HDMID) & PORT_DETECTED) |
| 4991 | intel_hdmi_init(dev, HDMID); |
| 4992 | |
Zhenyu Wang | 5eb08b6 | 2009-07-24 01:00:31 +0800 | [diff] [blame] | 4993 | if (I915_READ(PCH_DP_C) & DP_DETECTED) |
| 4994 | intel_dp_init(dev, PCH_DP_C); |
| 4995 | |
| 4996 | if (I915_READ(PCH_DP_D) & DP_DETECTED) |
| 4997 | intel_dp_init(dev, PCH_DP_D); |
| 4998 | |
Zhenyu Wang | 103a196 | 2009-11-27 11:44:36 +0800 | [diff] [blame] | 4999 | } else if (SUPPORTS_DIGITAL_OUTPUTS(dev)) { |
Ma Ling | 27185ae | 2009-08-24 13:50:23 +0800 | [diff] [blame] | 5000 | bool found = false; |
Eric Anholt | 7d57382 | 2009-01-02 13:33:00 -0800 | [diff] [blame] | 5001 | |
Eric Anholt | 725e30a | 2009-01-22 13:01:02 -0800 | [diff] [blame] | 5002 | if (I915_READ(SDVOB) & SDVO_DETECTED) { |
Jesse Barnes | b01f2c3 | 2009-12-11 11:07:17 -0800 | [diff] [blame] | 5003 | DRM_DEBUG_KMS("probing SDVOB\n"); |
Eric Anholt | 725e30a | 2009-01-22 13:01:02 -0800 | [diff] [blame] | 5004 | found = intel_sdvo_init(dev, SDVOB); |
Jesse Barnes | b01f2c3 | 2009-12-11 11:07:17 -0800 | [diff] [blame] | 5005 | if (!found && SUPPORTS_INTEGRATED_HDMI(dev)) { |
| 5006 | DRM_DEBUG_KMS("probing HDMI on SDVOB\n"); |
Eric Anholt | 725e30a | 2009-01-22 13:01:02 -0800 | [diff] [blame] | 5007 | intel_hdmi_init(dev, SDVOB); |
Jesse Barnes | b01f2c3 | 2009-12-11 11:07:17 -0800 | [diff] [blame] | 5008 | } |
Ma Ling | 27185ae | 2009-08-24 13:50:23 +0800 | [diff] [blame] | 5009 | |
Jesse Barnes | b01f2c3 | 2009-12-11 11:07:17 -0800 | [diff] [blame] | 5010 | if (!found && SUPPORTS_INTEGRATED_DP(dev)) { |
| 5011 | DRM_DEBUG_KMS("probing DP_B\n"); |
Keith Packard | a4fc5ed | 2009-04-07 16:16:42 -0700 | [diff] [blame] | 5012 | intel_dp_init(dev, DP_B); |
Jesse Barnes | b01f2c3 | 2009-12-11 11:07:17 -0800 | [diff] [blame] | 5013 | } |
Eric Anholt | 725e30a | 2009-01-22 13:01:02 -0800 | [diff] [blame] | 5014 | } |
Kristian Høgsberg | 13520b0 | 2009-03-13 15:42:14 -0400 | [diff] [blame] | 5015 | |
| 5016 | /* Before G4X SDVOC doesn't have its own detect register */ |
Kristian Høgsberg | 13520b0 | 2009-03-13 15:42:14 -0400 | [diff] [blame] | 5017 | |
Jesse Barnes | b01f2c3 | 2009-12-11 11:07:17 -0800 | [diff] [blame] | 5018 | if (I915_READ(SDVOB) & SDVO_DETECTED) { |
| 5019 | DRM_DEBUG_KMS("probing SDVOC\n"); |
Eric Anholt | 725e30a | 2009-01-22 13:01:02 -0800 | [diff] [blame] | 5020 | found = intel_sdvo_init(dev, SDVOC); |
Jesse Barnes | b01f2c3 | 2009-12-11 11:07:17 -0800 | [diff] [blame] | 5021 | } |
Ma Ling | 27185ae | 2009-08-24 13:50:23 +0800 | [diff] [blame] | 5022 | |
| 5023 | if (!found && (I915_READ(SDVOC) & SDVO_DETECTED)) { |
| 5024 | |
Jesse Barnes | b01f2c3 | 2009-12-11 11:07:17 -0800 | [diff] [blame] | 5025 | if (SUPPORTS_INTEGRATED_HDMI(dev)) { |
| 5026 | DRM_DEBUG_KMS("probing HDMI on SDVOC\n"); |
Eric Anholt | 725e30a | 2009-01-22 13:01:02 -0800 | [diff] [blame] | 5027 | intel_hdmi_init(dev, SDVOC); |
Jesse Barnes | b01f2c3 | 2009-12-11 11:07:17 -0800 | [diff] [blame] | 5028 | } |
| 5029 | if (SUPPORTS_INTEGRATED_DP(dev)) { |
| 5030 | DRM_DEBUG_KMS("probing DP_C\n"); |
Keith Packard | a4fc5ed | 2009-04-07 16:16:42 -0700 | [diff] [blame] | 5031 | intel_dp_init(dev, DP_C); |
Jesse Barnes | b01f2c3 | 2009-12-11 11:07:17 -0800 | [diff] [blame] | 5032 | } |
Eric Anholt | 725e30a | 2009-01-22 13:01:02 -0800 | [diff] [blame] | 5033 | } |
Ma Ling | 27185ae | 2009-08-24 13:50:23 +0800 | [diff] [blame] | 5034 | |
Jesse Barnes | b01f2c3 | 2009-12-11 11:07:17 -0800 | [diff] [blame] | 5035 | if (SUPPORTS_INTEGRATED_DP(dev) && |
| 5036 | (I915_READ(DP_D) & DP_DETECTED)) { |
| 5037 | DRM_DEBUG_KMS("probing DP_D\n"); |
Keith Packard | a4fc5ed | 2009-04-07 16:16:42 -0700 | [diff] [blame] | 5038 | intel_dp_init(dev, DP_D); |
Jesse Barnes | b01f2c3 | 2009-12-11 11:07:17 -0800 | [diff] [blame] | 5039 | } |
Eric Anholt | bad720f | 2009-10-22 16:11:14 -0700 | [diff] [blame] | 5040 | } else if (IS_GEN2(dev)) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5041 | intel_dvo_init(dev); |
| 5042 | |
Zhenyu Wang | 103a196 | 2009-11-27 11:44:36 +0800 | [diff] [blame] | 5043 | if (SUPPORTS_TV(dev)) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5044 | intel_tv_init(dev); |
| 5045 | |
Zhenyu Wang | c5e4df3 | 2010-03-30 14:39:27 +0800 | [diff] [blame] | 5046 | list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) { |
| 5047 | struct intel_encoder *intel_encoder = enc_to_intel_encoder(encoder); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5048 | |
Eric Anholt | 21d40d3 | 2010-03-25 11:11:14 -0700 | [diff] [blame] | 5049 | encoder->possible_crtcs = intel_encoder->crtc_mask; |
Zhenyu Wang | c5e4df3 | 2010-03-30 14:39:27 +0800 | [diff] [blame] | 5050 | encoder->possible_clones = intel_encoder_clones(dev, |
Eric Anholt | 21d40d3 | 2010-03-25 11:11:14 -0700 | [diff] [blame] | 5051 | intel_encoder->clone_mask); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5052 | } |
| 5053 | } |
| 5054 | |
| 5055 | static void intel_user_framebuffer_destroy(struct drm_framebuffer *fb) |
| 5056 | { |
| 5057 | struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5058 | |
| 5059 | drm_framebuffer_cleanup(fb); |
Luca Barbieri | bc9025b | 2010-02-09 05:49:12 +0000 | [diff] [blame] | 5060 | drm_gem_object_unreference_unlocked(intel_fb->obj); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5061 | |
| 5062 | kfree(intel_fb); |
| 5063 | } |
| 5064 | |
| 5065 | static int intel_user_framebuffer_create_handle(struct drm_framebuffer *fb, |
| 5066 | struct drm_file *file_priv, |
| 5067 | unsigned int *handle) |
| 5068 | { |
| 5069 | struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb); |
| 5070 | struct drm_gem_object *object = intel_fb->obj; |
| 5071 | |
| 5072 | return drm_gem_handle_create(file_priv, object, handle); |
| 5073 | } |
| 5074 | |
| 5075 | static const struct drm_framebuffer_funcs intel_fb_funcs = { |
| 5076 | .destroy = intel_user_framebuffer_destroy, |
| 5077 | .create_handle = intel_user_framebuffer_create_handle, |
| 5078 | }; |
| 5079 | |
Dave Airlie | 3865167 | 2010-03-30 05:34:13 +0000 | [diff] [blame] | 5080 | int intel_framebuffer_init(struct drm_device *dev, |
| 5081 | struct intel_framebuffer *intel_fb, |
| 5082 | struct drm_mode_fb_cmd *mode_cmd, |
| 5083 | struct drm_gem_object *obj) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5084 | { |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5085 | int ret; |
| 5086 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5087 | ret = drm_framebuffer_init(dev, &intel_fb->base, &intel_fb_funcs); |
| 5088 | if (ret) { |
| 5089 | DRM_ERROR("framebuffer init failed %d\n", ret); |
| 5090 | return ret; |
| 5091 | } |
| 5092 | |
| 5093 | drm_helper_mode_fill_fb_struct(&intel_fb->base, mode_cmd); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5094 | intel_fb->obj = obj; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5095 | return 0; |
| 5096 | } |
| 5097 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5098 | static struct drm_framebuffer * |
| 5099 | intel_user_framebuffer_create(struct drm_device *dev, |
| 5100 | struct drm_file *filp, |
| 5101 | struct drm_mode_fb_cmd *mode_cmd) |
| 5102 | { |
| 5103 | struct drm_gem_object *obj; |
Dave Airlie | 3865167 | 2010-03-30 05:34:13 +0000 | [diff] [blame] | 5104 | struct intel_framebuffer *intel_fb; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5105 | int ret; |
| 5106 | |
| 5107 | obj = drm_gem_object_lookup(dev, filp, mode_cmd->handle); |
| 5108 | if (!obj) |
| 5109 | return NULL; |
| 5110 | |
Dave Airlie | 3865167 | 2010-03-30 05:34:13 +0000 | [diff] [blame] | 5111 | intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL); |
| 5112 | if (!intel_fb) |
| 5113 | return NULL; |
| 5114 | |
| 5115 | ret = intel_framebuffer_init(dev, intel_fb, |
| 5116 | mode_cmd, obj); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5117 | if (ret) { |
Luca Barbieri | bc9025b | 2010-02-09 05:49:12 +0000 | [diff] [blame] | 5118 | drm_gem_object_unreference_unlocked(obj); |
Dave Airlie | 3865167 | 2010-03-30 05:34:13 +0000 | [diff] [blame] | 5119 | kfree(intel_fb); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5120 | return NULL; |
| 5121 | } |
| 5122 | |
Dave Airlie | 3865167 | 2010-03-30 05:34:13 +0000 | [diff] [blame] | 5123 | return &intel_fb->base; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5124 | } |
| 5125 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5126 | static const struct drm_mode_config_funcs intel_mode_funcs = { |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5127 | .fb_create = intel_user_framebuffer_create, |
Dave Airlie | eb1f8e4 | 2010-05-07 06:42:51 +0000 | [diff] [blame] | 5128 | .output_poll_changed = intel_fb_output_poll_changed, |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5129 | }; |
| 5130 | |
Chris Wilson | 9ea8d05 | 2010-01-04 18:57:56 +0000 | [diff] [blame] | 5131 | static struct drm_gem_object * |
| 5132 | intel_alloc_power_context(struct drm_device *dev) |
| 5133 | { |
| 5134 | struct drm_gem_object *pwrctx; |
| 5135 | int ret; |
| 5136 | |
Daniel Vetter | ac52bc5 | 2010-04-09 19:05:06 +0000 | [diff] [blame] | 5137 | pwrctx = i915_gem_alloc_object(dev, 4096); |
Chris Wilson | 9ea8d05 | 2010-01-04 18:57:56 +0000 | [diff] [blame] | 5138 | if (!pwrctx) { |
| 5139 | DRM_DEBUG("failed to alloc power context, RC6 disabled\n"); |
| 5140 | return NULL; |
| 5141 | } |
| 5142 | |
| 5143 | mutex_lock(&dev->struct_mutex); |
| 5144 | ret = i915_gem_object_pin(pwrctx, 4096); |
| 5145 | if (ret) { |
| 5146 | DRM_ERROR("failed to pin power context: %d\n", ret); |
| 5147 | goto err_unref; |
| 5148 | } |
| 5149 | |
| 5150 | ret = i915_gem_object_set_to_gtt_domain(pwrctx, 1); |
| 5151 | if (ret) { |
| 5152 | DRM_ERROR("failed to set-domain on power context: %d\n", ret); |
| 5153 | goto err_unpin; |
| 5154 | } |
| 5155 | mutex_unlock(&dev->struct_mutex); |
| 5156 | |
| 5157 | return pwrctx; |
| 5158 | |
| 5159 | err_unpin: |
| 5160 | i915_gem_object_unpin(pwrctx); |
| 5161 | err_unref: |
| 5162 | drm_gem_object_unreference(pwrctx); |
| 5163 | mutex_unlock(&dev->struct_mutex); |
| 5164 | return NULL; |
| 5165 | } |
| 5166 | |
Jesse Barnes | 7648fa9 | 2010-05-20 14:28:11 -0700 | [diff] [blame] | 5167 | bool ironlake_set_drps(struct drm_device *dev, u8 val) |
| 5168 | { |
| 5169 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 5170 | u16 rgvswctl; |
| 5171 | |
| 5172 | rgvswctl = I915_READ16(MEMSWCTL); |
| 5173 | if (rgvswctl & MEMCTL_CMD_STS) { |
| 5174 | DRM_DEBUG("gpu busy, RCS change rejected\n"); |
| 5175 | return false; /* still busy with another command */ |
| 5176 | } |
| 5177 | |
| 5178 | rgvswctl = (MEMCTL_CMD_CHFREQ << MEMCTL_CMD_SHIFT) | |
| 5179 | (val << MEMCTL_FREQ_SHIFT) | MEMCTL_SFCAVM; |
| 5180 | I915_WRITE16(MEMSWCTL, rgvswctl); |
| 5181 | POSTING_READ16(MEMSWCTL); |
| 5182 | |
| 5183 | rgvswctl |= MEMCTL_CMD_STS; |
| 5184 | I915_WRITE16(MEMSWCTL, rgvswctl); |
| 5185 | |
| 5186 | return true; |
| 5187 | } |
| 5188 | |
Jesse Barnes | f97108d | 2010-01-29 11:27:07 -0800 | [diff] [blame] | 5189 | void ironlake_enable_drps(struct drm_device *dev) |
| 5190 | { |
| 5191 | struct drm_i915_private *dev_priv = dev->dev_private; |
Jesse Barnes | 7648fa9 | 2010-05-20 14:28:11 -0700 | [diff] [blame] | 5192 | u32 rgvmodectl = I915_READ(MEMMODECTL); |
Jesse Barnes | f97108d | 2010-01-29 11:27:07 -0800 | [diff] [blame] | 5193 | u8 fmax, fmin, fstart, vstart; |
| 5194 | int i = 0; |
| 5195 | |
| 5196 | /* 100ms RC evaluation intervals */ |
| 5197 | I915_WRITE(RCUPEI, 100000); |
| 5198 | I915_WRITE(RCDNEI, 100000); |
| 5199 | |
| 5200 | /* Set max/min thresholds to 90ms and 80ms respectively */ |
| 5201 | I915_WRITE(RCBMAXAVG, 90000); |
| 5202 | I915_WRITE(RCBMINAVG, 80000); |
| 5203 | |
| 5204 | I915_WRITE(MEMIHYST, 1); |
| 5205 | |
| 5206 | /* Set up min, max, and cur for interrupt handling */ |
| 5207 | fmax = (rgvmodectl & MEMMODE_FMAX_MASK) >> MEMMODE_FMAX_SHIFT; |
| 5208 | fmin = (rgvmodectl & MEMMODE_FMIN_MASK); |
| 5209 | fstart = (rgvmodectl & MEMMODE_FSTART_MASK) >> |
| 5210 | MEMMODE_FSTART_SHIFT; |
Jesse Barnes | 7648fa9 | 2010-05-20 14:28:11 -0700 | [diff] [blame] | 5211 | fstart = fmax; |
| 5212 | |
Jesse Barnes | f97108d | 2010-01-29 11:27:07 -0800 | [diff] [blame] | 5213 | vstart = (I915_READ(PXVFREQ_BASE + (fstart * 4)) & PXVFREQ_PX_MASK) >> |
| 5214 | PXVFREQ_PX_SHIFT; |
| 5215 | |
Jesse Barnes | 7648fa9 | 2010-05-20 14:28:11 -0700 | [diff] [blame] | 5216 | dev_priv->fmax = fstart; /* IPS callback will increase this */ |
| 5217 | dev_priv->fstart = fstart; |
| 5218 | |
| 5219 | dev_priv->max_delay = fmax; |
Jesse Barnes | f97108d | 2010-01-29 11:27:07 -0800 | [diff] [blame] | 5220 | dev_priv->min_delay = fmin; |
| 5221 | dev_priv->cur_delay = fstart; |
| 5222 | |
Jesse Barnes | 7648fa9 | 2010-05-20 14:28:11 -0700 | [diff] [blame] | 5223 | DRM_DEBUG_DRIVER("fmax: %d, fmin: %d, fstart: %d\n", fmax, fmin, |
| 5224 | fstart); |
| 5225 | |
Jesse Barnes | f97108d | 2010-01-29 11:27:07 -0800 | [diff] [blame] | 5226 | I915_WRITE(MEMINTREN, MEMINT_CX_SUPR_EN | MEMINT_EVAL_CHG_EN); |
| 5227 | |
| 5228 | /* |
| 5229 | * Interrupts will be enabled in ironlake_irq_postinstall |
| 5230 | */ |
| 5231 | |
| 5232 | I915_WRITE(VIDSTART, vstart); |
| 5233 | POSTING_READ(VIDSTART); |
| 5234 | |
| 5235 | rgvmodectl |= MEMMODE_SWMODE_EN; |
| 5236 | I915_WRITE(MEMMODECTL, rgvmodectl); |
| 5237 | |
| 5238 | while (I915_READ(MEMSWCTL) & MEMCTL_CMD_STS) { |
| 5239 | if (i++ > 100) { |
| 5240 | DRM_ERROR("stuck trying to change perf mode\n"); |
| 5241 | break; |
| 5242 | } |
| 5243 | msleep(1); |
| 5244 | } |
| 5245 | msleep(1); |
| 5246 | |
Jesse Barnes | 7648fa9 | 2010-05-20 14:28:11 -0700 | [diff] [blame] | 5247 | ironlake_set_drps(dev, fstart); |
Jesse Barnes | f97108d | 2010-01-29 11:27:07 -0800 | [diff] [blame] | 5248 | |
Jesse Barnes | 7648fa9 | 2010-05-20 14:28:11 -0700 | [diff] [blame] | 5249 | dev_priv->last_count1 = I915_READ(0x112e4) + I915_READ(0x112e8) + |
| 5250 | I915_READ(0x112e0); |
| 5251 | dev_priv->last_time1 = jiffies_to_msecs(jiffies); |
| 5252 | dev_priv->last_count2 = I915_READ(0x112f4); |
| 5253 | getrawmonotonic(&dev_priv->last_time2); |
Jesse Barnes | f97108d | 2010-01-29 11:27:07 -0800 | [diff] [blame] | 5254 | } |
| 5255 | |
| 5256 | void ironlake_disable_drps(struct drm_device *dev) |
| 5257 | { |
| 5258 | struct drm_i915_private *dev_priv = dev->dev_private; |
Jesse Barnes | 7648fa9 | 2010-05-20 14:28:11 -0700 | [diff] [blame] | 5259 | u16 rgvswctl = I915_READ16(MEMSWCTL); |
Jesse Barnes | f97108d | 2010-01-29 11:27:07 -0800 | [diff] [blame] | 5260 | |
| 5261 | /* Ack interrupts, disable EFC interrupt */ |
| 5262 | I915_WRITE(MEMINTREN, I915_READ(MEMINTREN) & ~MEMINT_EVAL_CHG_EN); |
| 5263 | I915_WRITE(MEMINTRSTS, MEMINT_EVAL_CHG); |
| 5264 | I915_WRITE(DEIER, I915_READ(DEIER) & ~DE_PCU_EVENT); |
| 5265 | I915_WRITE(DEIIR, DE_PCU_EVENT); |
| 5266 | I915_WRITE(DEIMR, I915_READ(DEIMR) | DE_PCU_EVENT); |
| 5267 | |
| 5268 | /* Go back to the starting frequency */ |
Jesse Barnes | 7648fa9 | 2010-05-20 14:28:11 -0700 | [diff] [blame] | 5269 | ironlake_set_drps(dev, dev_priv->fstart); |
Jesse Barnes | f97108d | 2010-01-29 11:27:07 -0800 | [diff] [blame] | 5270 | msleep(1); |
| 5271 | rgvswctl |= MEMCTL_CMD_STS; |
| 5272 | I915_WRITE(MEMSWCTL, rgvswctl); |
| 5273 | msleep(1); |
| 5274 | |
| 5275 | } |
| 5276 | |
Jesse Barnes | 7648fa9 | 2010-05-20 14:28:11 -0700 | [diff] [blame] | 5277 | static unsigned long intel_pxfreq(u32 vidfreq) |
| 5278 | { |
| 5279 | unsigned long freq; |
| 5280 | int div = (vidfreq & 0x3f0000) >> 16; |
| 5281 | int post = (vidfreq & 0x3000) >> 12; |
| 5282 | int pre = (vidfreq & 0x7); |
| 5283 | |
| 5284 | if (!pre) |
| 5285 | return 0; |
| 5286 | |
| 5287 | freq = ((div * 133333) / ((1<<post) * pre)); |
| 5288 | |
| 5289 | return freq; |
| 5290 | } |
| 5291 | |
| 5292 | void intel_init_emon(struct drm_device *dev) |
| 5293 | { |
| 5294 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 5295 | u32 lcfuse; |
| 5296 | u8 pxw[16]; |
| 5297 | int i; |
| 5298 | |
| 5299 | /* Disable to program */ |
| 5300 | I915_WRITE(ECR, 0); |
| 5301 | POSTING_READ(ECR); |
| 5302 | |
| 5303 | /* Program energy weights for various events */ |
| 5304 | I915_WRITE(SDEW, 0x15040d00); |
| 5305 | I915_WRITE(CSIEW0, 0x007f0000); |
| 5306 | I915_WRITE(CSIEW1, 0x1e220004); |
| 5307 | I915_WRITE(CSIEW2, 0x04000004); |
| 5308 | |
| 5309 | for (i = 0; i < 5; i++) |
| 5310 | I915_WRITE(PEW + (i * 4), 0); |
| 5311 | for (i = 0; i < 3; i++) |
| 5312 | I915_WRITE(DEW + (i * 4), 0); |
| 5313 | |
| 5314 | /* Program P-state weights to account for frequency power adjustment */ |
| 5315 | for (i = 0; i < 16; i++) { |
| 5316 | u32 pxvidfreq = I915_READ(PXVFREQ_BASE + (i * 4)); |
| 5317 | unsigned long freq = intel_pxfreq(pxvidfreq); |
| 5318 | unsigned long vid = (pxvidfreq & PXVFREQ_PX_MASK) >> |
| 5319 | PXVFREQ_PX_SHIFT; |
| 5320 | unsigned long val; |
| 5321 | |
| 5322 | val = vid * vid; |
| 5323 | val *= (freq / 1000); |
| 5324 | val *= 255; |
| 5325 | val /= (127*127*900); |
| 5326 | if (val > 0xff) |
| 5327 | DRM_ERROR("bad pxval: %ld\n", val); |
| 5328 | pxw[i] = val; |
| 5329 | } |
| 5330 | /* Render standby states get 0 weight */ |
| 5331 | pxw[14] = 0; |
| 5332 | pxw[15] = 0; |
| 5333 | |
| 5334 | for (i = 0; i < 4; i++) { |
| 5335 | u32 val = (pxw[i*4] << 24) | (pxw[(i*4)+1] << 16) | |
| 5336 | (pxw[(i*4)+2] << 8) | (pxw[(i*4)+3]); |
| 5337 | I915_WRITE(PXW + (i * 4), val); |
| 5338 | } |
| 5339 | |
| 5340 | /* Adjust magic regs to magic values (more experimental results) */ |
| 5341 | I915_WRITE(OGW0, 0); |
| 5342 | I915_WRITE(OGW1, 0); |
| 5343 | I915_WRITE(EG0, 0x00007f00); |
| 5344 | I915_WRITE(EG1, 0x0000000e); |
| 5345 | I915_WRITE(EG2, 0x000e0000); |
| 5346 | I915_WRITE(EG3, 0x68000300); |
| 5347 | I915_WRITE(EG4, 0x42000000); |
| 5348 | I915_WRITE(EG5, 0x00140031); |
| 5349 | I915_WRITE(EG6, 0); |
| 5350 | I915_WRITE(EG7, 0); |
| 5351 | |
| 5352 | for (i = 0; i < 8; i++) |
| 5353 | I915_WRITE(PXWL + (i * 4), 0); |
| 5354 | |
| 5355 | /* Enable PMON + select events */ |
| 5356 | I915_WRITE(ECR, 0x80000019); |
| 5357 | |
| 5358 | lcfuse = I915_READ(LCFUSE02); |
| 5359 | |
| 5360 | dev_priv->corr = (lcfuse & LCFUSE_HIV_MASK); |
| 5361 | } |
| 5362 | |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 5363 | void intel_init_clock_gating(struct drm_device *dev) |
| 5364 | { |
| 5365 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 5366 | |
| 5367 | /* |
| 5368 | * Disable clock gating reported to work incorrectly according to the |
| 5369 | * specs, but enable as much else as we can. |
| 5370 | */ |
Eric Anholt | bad720f | 2009-10-22 16:11:14 -0700 | [diff] [blame] | 5371 | if (HAS_PCH_SPLIT(dev)) { |
Eric Anholt | 8956c8b | 2010-03-18 13:21:14 -0700 | [diff] [blame] | 5372 | uint32_t dspclk_gate = VRHUNIT_CLOCK_GATE_DISABLE; |
| 5373 | |
| 5374 | if (IS_IRONLAKE(dev)) { |
| 5375 | /* Required for FBC */ |
| 5376 | dspclk_gate |= DPFDUNIT_CLOCK_GATE_DISABLE; |
| 5377 | /* Required for CxSR */ |
| 5378 | dspclk_gate |= DPARBUNIT_CLOCK_GATE_DISABLE; |
| 5379 | |
| 5380 | I915_WRITE(PCH_3DCGDIS0, |
| 5381 | MARIUNIT_CLOCK_GATE_DISABLE | |
| 5382 | SVSMUNIT_CLOCK_GATE_DISABLE); |
| 5383 | } |
| 5384 | |
| 5385 | I915_WRITE(PCH_DSPCLK_GATE_D, dspclk_gate); |
Zhenyu Wang | 7f8a856 | 2010-04-01 13:07:53 +0800 | [diff] [blame] | 5386 | |
| 5387 | /* |
| 5388 | * According to the spec the following bits should be set in |
| 5389 | * order to enable memory self-refresh |
| 5390 | * The bit 22/21 of 0x42004 |
| 5391 | * The bit 5 of 0x42020 |
| 5392 | * The bit 15 of 0x45000 |
| 5393 | */ |
| 5394 | if (IS_IRONLAKE(dev)) { |
| 5395 | I915_WRITE(ILK_DISPLAY_CHICKEN2, |
| 5396 | (I915_READ(ILK_DISPLAY_CHICKEN2) | |
| 5397 | ILK_DPARB_GATE | ILK_VSDPFD_FULL)); |
| 5398 | I915_WRITE(ILK_DSPCLK_GATE, |
| 5399 | (I915_READ(ILK_DSPCLK_GATE) | |
| 5400 | ILK_DPARB_CLK_GATE)); |
| 5401 | I915_WRITE(DISP_ARB_CTL, |
| 5402 | (I915_READ(DISP_ARB_CTL) | |
| 5403 | DISP_FBC_WM_DIS)); |
| 5404 | } |
Zhenyu Wang | c03342f | 2009-09-29 11:01:23 +0800 | [diff] [blame] | 5405 | return; |
| 5406 | } else if (IS_G4X(dev)) { |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 5407 | uint32_t dspclk_gate; |
| 5408 | I915_WRITE(RENCLK_GATE_D1, 0); |
| 5409 | I915_WRITE(RENCLK_GATE_D2, VF_UNIT_CLOCK_GATE_DISABLE | |
| 5410 | GS_UNIT_CLOCK_GATE_DISABLE | |
| 5411 | CL_UNIT_CLOCK_GATE_DISABLE); |
| 5412 | I915_WRITE(RAMCLK_GATE_D, 0); |
| 5413 | dspclk_gate = VRHUNIT_CLOCK_GATE_DISABLE | |
| 5414 | OVRUNIT_CLOCK_GATE_DISABLE | |
| 5415 | OVCUNIT_CLOCK_GATE_DISABLE; |
| 5416 | if (IS_GM45(dev)) |
| 5417 | dspclk_gate |= DSSUNIT_CLOCK_GATE_DISABLE; |
| 5418 | I915_WRITE(DSPCLK_GATE_D, dspclk_gate); |
| 5419 | } else if (IS_I965GM(dev)) { |
| 5420 | I915_WRITE(RENCLK_GATE_D1, I965_RCC_CLOCK_GATE_DISABLE); |
| 5421 | I915_WRITE(RENCLK_GATE_D2, 0); |
| 5422 | I915_WRITE(DSPCLK_GATE_D, 0); |
| 5423 | I915_WRITE(RAMCLK_GATE_D, 0); |
| 5424 | I915_WRITE16(DEUC, 0); |
| 5425 | } else if (IS_I965G(dev)) { |
| 5426 | I915_WRITE(RENCLK_GATE_D1, I965_RCZ_CLOCK_GATE_DISABLE | |
| 5427 | I965_RCC_CLOCK_GATE_DISABLE | |
| 5428 | I965_RCPB_CLOCK_GATE_DISABLE | |
| 5429 | I965_ISC_CLOCK_GATE_DISABLE | |
| 5430 | I965_FBC_CLOCK_GATE_DISABLE); |
| 5431 | I915_WRITE(RENCLK_GATE_D2, 0); |
| 5432 | } else if (IS_I9XX(dev)) { |
| 5433 | u32 dstate = I915_READ(D_STATE); |
| 5434 | |
| 5435 | dstate |= DSTATE_PLL_D3_OFF | DSTATE_GFX_CLOCK_GATING | |
| 5436 | DSTATE_DOT_CLOCK_GATING; |
| 5437 | I915_WRITE(D_STATE, dstate); |
Daniel Vetter | f0f8a9c | 2009-09-15 22:57:33 +0200 | [diff] [blame] | 5438 | } else if (IS_I85X(dev) || IS_I865G(dev)) { |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 5439 | I915_WRITE(RENCLK_GATE_D1, SV_CLOCK_GATE_DISABLE); |
| 5440 | } else if (IS_I830(dev)) { |
| 5441 | I915_WRITE(DSPCLK_GATE_D, OVRUNIT_CLOCK_GATE_DISABLE); |
| 5442 | } |
Jesse Barnes | 97f5ab6 | 2009-10-08 10:16:48 -0700 | [diff] [blame] | 5443 | |
| 5444 | /* |
| 5445 | * GPU can automatically power down the render unit if given a page |
| 5446 | * to save state. |
| 5447 | */ |
Andrew Lutomirski | 1d3c36ad | 2009-12-21 10:10:22 -0500 | [diff] [blame] | 5448 | if (I915_HAS_RC6(dev) && drm_core_check_feature(dev, DRIVER_MODESET)) { |
Chris Wilson | 9ea8d05 | 2010-01-04 18:57:56 +0000 | [diff] [blame] | 5449 | struct drm_i915_gem_object *obj_priv = NULL; |
Jesse Barnes | 97f5ab6 | 2009-10-08 10:16:48 -0700 | [diff] [blame] | 5450 | |
Andrew Lutomirski | 7e8b60f | 2009-11-08 13:49:51 -0500 | [diff] [blame] | 5451 | if (dev_priv->pwrctx) { |
Daniel Vetter | 23010e4 | 2010-03-08 13:35:02 +0100 | [diff] [blame] | 5452 | obj_priv = to_intel_bo(dev_priv->pwrctx); |
Andrew Lutomirski | 7e8b60f | 2009-11-08 13:49:51 -0500 | [diff] [blame] | 5453 | } else { |
Chris Wilson | 9ea8d05 | 2010-01-04 18:57:56 +0000 | [diff] [blame] | 5454 | struct drm_gem_object *pwrctx; |
| 5455 | |
| 5456 | pwrctx = intel_alloc_power_context(dev); |
| 5457 | if (pwrctx) { |
| 5458 | dev_priv->pwrctx = pwrctx; |
Daniel Vetter | 23010e4 | 2010-03-08 13:35:02 +0100 | [diff] [blame] | 5459 | obj_priv = to_intel_bo(pwrctx); |
Andrew Lutomirski | 7e8b60f | 2009-11-08 13:49:51 -0500 | [diff] [blame] | 5460 | } |
Jesse Barnes | 97f5ab6 | 2009-10-08 10:16:48 -0700 | [diff] [blame] | 5461 | } |
| 5462 | |
Chris Wilson | 9ea8d05 | 2010-01-04 18:57:56 +0000 | [diff] [blame] | 5463 | if (obj_priv) { |
| 5464 | I915_WRITE(PWRCTXA, obj_priv->gtt_offset | PWRCTX_EN); |
| 5465 | I915_WRITE(MCHBAR_RENDER_STANDBY, |
| 5466 | I915_READ(MCHBAR_RENDER_STANDBY) & ~RCX_SW_EXIT); |
| 5467 | } |
Jesse Barnes | 97f5ab6 | 2009-10-08 10:16:48 -0700 | [diff] [blame] | 5468 | } |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 5469 | } |
| 5470 | |
Jesse Barnes | e70236a | 2009-09-21 10:42:27 -0700 | [diff] [blame] | 5471 | /* Set up chip specific display functions */ |
| 5472 | static void intel_init_display(struct drm_device *dev) |
| 5473 | { |
| 5474 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 5475 | |
| 5476 | /* We always want a DPMS function */ |
Eric Anholt | bad720f | 2009-10-22 16:11:14 -0700 | [diff] [blame] | 5477 | if (HAS_PCH_SPLIT(dev)) |
Adam Jackson | f2b115e | 2009-12-03 17:14:42 -0500 | [diff] [blame] | 5478 | dev_priv->display.dpms = ironlake_crtc_dpms; |
Jesse Barnes | e70236a | 2009-09-21 10:42:27 -0700 | [diff] [blame] | 5479 | else |
| 5480 | dev_priv->display.dpms = i9xx_crtc_dpms; |
| 5481 | |
Adam Jackson | ee5382a | 2010-04-23 11:17:39 -0400 | [diff] [blame] | 5482 | if (I915_HAS_FBC(dev)) { |
Jesse Barnes | 74dff28 | 2009-09-14 15:39:40 -0700 | [diff] [blame] | 5483 | if (IS_GM45(dev)) { |
| 5484 | dev_priv->display.fbc_enabled = g4x_fbc_enabled; |
| 5485 | dev_priv->display.enable_fbc = g4x_enable_fbc; |
| 5486 | dev_priv->display.disable_fbc = g4x_disable_fbc; |
Robert Hooker | 8d06a1e | 2010-03-19 15:13:27 -0400 | [diff] [blame] | 5487 | } else if (IS_I965GM(dev)) { |
Jesse Barnes | e70236a | 2009-09-21 10:42:27 -0700 | [diff] [blame] | 5488 | dev_priv->display.fbc_enabled = i8xx_fbc_enabled; |
| 5489 | dev_priv->display.enable_fbc = i8xx_enable_fbc; |
| 5490 | dev_priv->display.disable_fbc = i8xx_disable_fbc; |
| 5491 | } |
Jesse Barnes | 74dff28 | 2009-09-14 15:39:40 -0700 | [diff] [blame] | 5492 | /* 855GM needs testing */ |
Jesse Barnes | e70236a | 2009-09-21 10:42:27 -0700 | [diff] [blame] | 5493 | } |
| 5494 | |
| 5495 | /* Returns the core display clock speed */ |
Adam Jackson | f2b115e | 2009-12-03 17:14:42 -0500 | [diff] [blame] | 5496 | if (IS_I945G(dev) || (IS_G33(dev) && ! IS_PINEVIEW_M(dev))) |
Jesse Barnes | e70236a | 2009-09-21 10:42:27 -0700 | [diff] [blame] | 5497 | dev_priv->display.get_display_clock_speed = |
| 5498 | i945_get_display_clock_speed; |
| 5499 | else if (IS_I915G(dev)) |
| 5500 | dev_priv->display.get_display_clock_speed = |
| 5501 | i915_get_display_clock_speed; |
Adam Jackson | f2b115e | 2009-12-03 17:14:42 -0500 | [diff] [blame] | 5502 | else if (IS_I945GM(dev) || IS_845G(dev) || IS_PINEVIEW_M(dev)) |
Jesse Barnes | e70236a | 2009-09-21 10:42:27 -0700 | [diff] [blame] | 5503 | dev_priv->display.get_display_clock_speed = |
| 5504 | i9xx_misc_get_display_clock_speed; |
| 5505 | else if (IS_I915GM(dev)) |
| 5506 | dev_priv->display.get_display_clock_speed = |
| 5507 | i915gm_get_display_clock_speed; |
| 5508 | else if (IS_I865G(dev)) |
| 5509 | dev_priv->display.get_display_clock_speed = |
| 5510 | i865_get_display_clock_speed; |
Daniel Vetter | f0f8a9c | 2009-09-15 22:57:33 +0200 | [diff] [blame] | 5511 | else if (IS_I85X(dev)) |
Jesse Barnes | e70236a | 2009-09-21 10:42:27 -0700 | [diff] [blame] | 5512 | dev_priv->display.get_display_clock_speed = |
| 5513 | i855_get_display_clock_speed; |
| 5514 | else /* 852, 830 */ |
| 5515 | dev_priv->display.get_display_clock_speed = |
| 5516 | i830_get_display_clock_speed; |
| 5517 | |
| 5518 | /* For FIFO watermark updates */ |
Zhenyu Wang | 7f8a856 | 2010-04-01 13:07:53 +0800 | [diff] [blame] | 5519 | if (HAS_PCH_SPLIT(dev)) { |
| 5520 | if (IS_IRONLAKE(dev)) { |
| 5521 | if (I915_READ(MLTR_ILK) & ILK_SRLT_MASK) |
| 5522 | dev_priv->display.update_wm = ironlake_update_wm; |
| 5523 | else { |
| 5524 | DRM_DEBUG_KMS("Failed to get proper latency. " |
| 5525 | "Disable CxSR\n"); |
| 5526 | dev_priv->display.update_wm = NULL; |
| 5527 | } |
| 5528 | } else |
| 5529 | dev_priv->display.update_wm = NULL; |
| 5530 | } else if (IS_PINEVIEW(dev)) { |
Zhao Yakui | d429434 | 2010-03-22 22:45:36 +0800 | [diff] [blame] | 5531 | if (!intel_get_cxsr_latency(IS_PINEVIEW_G(dev), |
Li Peng | 9553426 | 2010-05-18 18:58:44 +0800 | [diff] [blame] | 5532 | dev_priv->is_ddr3, |
Zhao Yakui | d429434 | 2010-03-22 22:45:36 +0800 | [diff] [blame] | 5533 | dev_priv->fsb_freq, |
| 5534 | dev_priv->mem_freq)) { |
| 5535 | DRM_INFO("failed to find known CxSR latency " |
Li Peng | 9553426 | 2010-05-18 18:58:44 +0800 | [diff] [blame] | 5536 | "(found ddr%s fsb freq %d, mem freq %d), " |
Zhao Yakui | d429434 | 2010-03-22 22:45:36 +0800 | [diff] [blame] | 5537 | "disabling CxSR\n", |
Li Peng | 9553426 | 2010-05-18 18:58:44 +0800 | [diff] [blame] | 5538 | (dev_priv->is_ddr3 == 1) ? "3": "2", |
Zhao Yakui | d429434 | 2010-03-22 22:45:36 +0800 | [diff] [blame] | 5539 | dev_priv->fsb_freq, dev_priv->mem_freq); |
| 5540 | /* Disable CxSR and never update its watermark again */ |
| 5541 | pineview_disable_cxsr(dev); |
| 5542 | dev_priv->display.update_wm = NULL; |
| 5543 | } else |
| 5544 | dev_priv->display.update_wm = pineview_update_wm; |
| 5545 | } else if (IS_G4X(dev)) |
Jesse Barnes | e70236a | 2009-09-21 10:42:27 -0700 | [diff] [blame] | 5546 | dev_priv->display.update_wm = g4x_update_wm; |
| 5547 | else if (IS_I965G(dev)) |
| 5548 | dev_priv->display.update_wm = i965_update_wm; |
Adam Jackson | 8f4695e | 2010-04-16 18:20:57 -0400 | [diff] [blame] | 5549 | else if (IS_I9XX(dev)) { |
Jesse Barnes | e70236a | 2009-09-21 10:42:27 -0700 | [diff] [blame] | 5550 | dev_priv->display.update_wm = i9xx_update_wm; |
| 5551 | dev_priv->display.get_fifo_size = i9xx_get_fifo_size; |
Adam Jackson | 8f4695e | 2010-04-16 18:20:57 -0400 | [diff] [blame] | 5552 | } else if (IS_I85X(dev)) { |
| 5553 | dev_priv->display.update_wm = i9xx_update_wm; |
| 5554 | dev_priv->display.get_fifo_size = i85x_get_fifo_size; |
Jesse Barnes | e70236a | 2009-09-21 10:42:27 -0700 | [diff] [blame] | 5555 | } else { |
Adam Jackson | 8f4695e | 2010-04-16 18:20:57 -0400 | [diff] [blame] | 5556 | dev_priv->display.update_wm = i830_update_wm; |
| 5557 | if (IS_845G(dev)) |
Jesse Barnes | e70236a | 2009-09-21 10:42:27 -0700 | [diff] [blame] | 5558 | dev_priv->display.get_fifo_size = i845_get_fifo_size; |
| 5559 | else |
| 5560 | dev_priv->display.get_fifo_size = i830_get_fifo_size; |
Jesse Barnes | e70236a | 2009-09-21 10:42:27 -0700 | [diff] [blame] | 5561 | } |
| 5562 | } |
| 5563 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5564 | void intel_modeset_init(struct drm_device *dev) |
| 5565 | { |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 5566 | struct drm_i915_private *dev_priv = dev->dev_private; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5567 | int i; |
| 5568 | |
| 5569 | drm_mode_config_init(dev); |
| 5570 | |
| 5571 | dev->mode_config.min_width = 0; |
| 5572 | dev->mode_config.min_height = 0; |
| 5573 | |
| 5574 | dev->mode_config.funcs = (void *)&intel_mode_funcs; |
| 5575 | |
Jesse Barnes | e70236a | 2009-09-21 10:42:27 -0700 | [diff] [blame] | 5576 | intel_init_display(dev); |
| 5577 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5578 | if (IS_I965G(dev)) { |
| 5579 | dev->mode_config.max_width = 8192; |
| 5580 | dev->mode_config.max_height = 8192; |
Keith Packard | 5e4d6fa | 2009-07-12 23:53:17 -0700 | [diff] [blame] | 5581 | } else if (IS_I9XX(dev)) { |
| 5582 | dev->mode_config.max_width = 4096; |
| 5583 | dev->mode_config.max_height = 4096; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5584 | } else { |
| 5585 | dev->mode_config.max_width = 2048; |
| 5586 | dev->mode_config.max_height = 2048; |
| 5587 | } |
| 5588 | |
| 5589 | /* set memory base */ |
| 5590 | if (IS_I9XX(dev)) |
| 5591 | dev->mode_config.fb_base = pci_resource_start(dev->pdev, 2); |
| 5592 | else |
| 5593 | dev->mode_config.fb_base = pci_resource_start(dev->pdev, 0); |
| 5594 | |
| 5595 | if (IS_MOBILE(dev) || IS_I9XX(dev)) |
Dave Airlie | a3524f1 | 2010-06-06 18:59:41 +1000 | [diff] [blame] | 5596 | dev_priv->num_pipe = 2; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5597 | else |
Dave Airlie | a3524f1 | 2010-06-06 18:59:41 +1000 | [diff] [blame] | 5598 | dev_priv->num_pipe = 1; |
Zhao Yakui | 28c9773 | 2009-10-09 11:39:41 +0800 | [diff] [blame] | 5599 | DRM_DEBUG_KMS("%d display pipe%s available.\n", |
Dave Airlie | a3524f1 | 2010-06-06 18:59:41 +1000 | [diff] [blame] | 5600 | dev_priv->num_pipe, dev_priv->num_pipe > 1 ? "s" : ""); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5601 | |
Dave Airlie | a3524f1 | 2010-06-06 18:59:41 +1000 | [diff] [blame] | 5602 | for (i = 0; i < dev_priv->num_pipe; i++) { |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5603 | intel_crtc_init(dev, i); |
| 5604 | } |
| 5605 | |
| 5606 | intel_setup_outputs(dev); |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 5607 | |
| 5608 | intel_init_clock_gating(dev); |
| 5609 | |
Jesse Barnes | 7648fa9 | 2010-05-20 14:28:11 -0700 | [diff] [blame] | 5610 | if (IS_IRONLAKE_M(dev)) { |
Jesse Barnes | f97108d | 2010-01-29 11:27:07 -0800 | [diff] [blame] | 5611 | ironlake_enable_drps(dev); |
Jesse Barnes | 7648fa9 | 2010-05-20 14:28:11 -0700 | [diff] [blame] | 5612 | intel_init_emon(dev); |
| 5613 | } |
Jesse Barnes | f97108d | 2010-01-29 11:27:07 -0800 | [diff] [blame] | 5614 | |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 5615 | INIT_WORK(&dev_priv->idle_work, intel_idle_update); |
| 5616 | setup_timer(&dev_priv->idle_timer, intel_gpu_idle_timer, |
| 5617 | (unsigned long)dev); |
Daniel Vetter | 02e792f | 2009-09-15 22:57:34 +0200 | [diff] [blame] | 5618 | |
| 5619 | intel_setup_overlay(dev); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5620 | } |
| 5621 | |
| 5622 | void intel_modeset_cleanup(struct drm_device *dev) |
| 5623 | { |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 5624 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 5625 | struct drm_crtc *crtc; |
| 5626 | struct intel_crtc *intel_crtc; |
| 5627 | |
| 5628 | mutex_lock(&dev->struct_mutex); |
| 5629 | |
Dave Airlie | eb1f8e4 | 2010-05-07 06:42:51 +0000 | [diff] [blame] | 5630 | drm_kms_helper_poll_fini(dev); |
Dave Airlie | 3865167 | 2010-03-30 05:34:13 +0000 | [diff] [blame] | 5631 | intel_fbdev_fini(dev); |
| 5632 | |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 5633 | list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) { |
| 5634 | /* Skip inactive CRTCs */ |
| 5635 | if (!crtc->fb) |
| 5636 | continue; |
| 5637 | |
| 5638 | intel_crtc = to_intel_crtc(crtc); |
| 5639 | intel_increase_pllclock(crtc, false); |
| 5640 | del_timer_sync(&intel_crtc->idle_timer); |
| 5641 | } |
| 5642 | |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 5643 | del_timer_sync(&dev_priv->idle_timer); |
| 5644 | |
Jesse Barnes | e70236a | 2009-09-21 10:42:27 -0700 | [diff] [blame] | 5645 | if (dev_priv->display.disable_fbc) |
| 5646 | dev_priv->display.disable_fbc(dev); |
| 5647 | |
Jesse Barnes | 97f5ab6 | 2009-10-08 10:16:48 -0700 | [diff] [blame] | 5648 | if (dev_priv->pwrctx) { |
Kristian Høgsberg | c1b5dea | 2009-11-11 12:19:18 -0500 | [diff] [blame] | 5649 | struct drm_i915_gem_object *obj_priv; |
| 5650 | |
Daniel Vetter | 23010e4 | 2010-03-08 13:35:02 +0100 | [diff] [blame] | 5651 | obj_priv = to_intel_bo(dev_priv->pwrctx); |
Kristian Høgsberg | c1b5dea | 2009-11-11 12:19:18 -0500 | [diff] [blame] | 5652 | I915_WRITE(PWRCTXA, obj_priv->gtt_offset &~ PWRCTX_EN); |
| 5653 | I915_READ(PWRCTXA); |
Jesse Barnes | 97f5ab6 | 2009-10-08 10:16:48 -0700 | [diff] [blame] | 5654 | i915_gem_object_unpin(dev_priv->pwrctx); |
| 5655 | drm_gem_object_unreference(dev_priv->pwrctx); |
| 5656 | } |
| 5657 | |
Jesse Barnes | f97108d | 2010-01-29 11:27:07 -0800 | [diff] [blame] | 5658 | if (IS_IRONLAKE_M(dev)) |
| 5659 | ironlake_disable_drps(dev); |
| 5660 | |
Kristian Høgsberg | 69341a5 | 2009-11-11 12:19:17 -0500 | [diff] [blame] | 5661 | mutex_unlock(&dev->struct_mutex); |
| 5662 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5663 | drm_mode_config_cleanup(dev); |
| 5664 | } |
| 5665 | |
| 5666 | |
Dave Airlie | 28d5204 | 2009-09-21 14:33:58 +1000 | [diff] [blame] | 5667 | /* |
Zhenyu Wang | f1c79df | 2010-03-30 14:39:29 +0800 | [diff] [blame] | 5668 | * Return which encoder is currently attached for connector. |
| 5669 | */ |
| 5670 | struct drm_encoder *intel_attached_encoder (struct drm_connector *connector) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5671 | { |
Zhenyu Wang | f1c79df | 2010-03-30 14:39:29 +0800 | [diff] [blame] | 5672 | struct drm_mode_object *obj; |
| 5673 | struct drm_encoder *encoder; |
| 5674 | int i; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5675 | |
Zhenyu Wang | f1c79df | 2010-03-30 14:39:29 +0800 | [diff] [blame] | 5676 | for (i = 0; i < DRM_CONNECTOR_MAX_ENCODER; i++) { |
| 5677 | if (connector->encoder_ids[i] == 0) |
| 5678 | break; |
| 5679 | |
| 5680 | obj = drm_mode_object_find(connector->dev, |
| 5681 | connector->encoder_ids[i], |
| 5682 | DRM_MODE_OBJECT_ENCODER); |
| 5683 | if (!obj) |
| 5684 | continue; |
| 5685 | |
| 5686 | encoder = obj_to_encoder(obj); |
| 5687 | return encoder; |
| 5688 | } |
| 5689 | return NULL; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 5690 | } |
Dave Airlie | 28d5204 | 2009-09-21 14:33:58 +1000 | [diff] [blame] | 5691 | |
| 5692 | /* |
| 5693 | * set vga decode state - true == enable VGA decode |
| 5694 | */ |
| 5695 | int intel_modeset_vga_set_state(struct drm_device *dev, bool state) |
| 5696 | { |
| 5697 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 5698 | u16 gmch_ctrl; |
| 5699 | |
| 5700 | pci_read_config_word(dev_priv->bridge_dev, INTEL_GMCH_CTRL, &gmch_ctrl); |
| 5701 | if (state) |
| 5702 | gmch_ctrl &= ~INTEL_GMCH_VGA_DISABLE; |
| 5703 | else |
| 5704 | gmch_ctrl |= INTEL_GMCH_VGA_DISABLE; |
| 5705 | pci_write_config_word(dev_priv->bridge_dev, INTEL_GMCH_CTRL, gmch_ctrl); |
| 5706 | return 0; |
| 5707 | } |