Dave Airlie | 0d6aa60 | 2006-01-02 20:14:23 +1100 | [diff] [blame] | 1 | /* i915_irq.c -- IRQ support for the I915 -*- linux-c -*- |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | */ |
Dave Airlie | 0d6aa60 | 2006-01-02 20:14:23 +1100 | [diff] [blame] | 3 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4 | * Copyright 2003 Tungsten Graphics, Inc., Cedar Park, Texas. |
| 5 | * All Rights Reserved. |
Dave Airlie | bc54fd1 | 2005-06-23 22:46:46 +1000 | [diff] [blame] | 6 | * |
| 7 | * Permission is hereby granted, free of charge, to any person obtaining a |
| 8 | * copy of this software and associated documentation files (the |
| 9 | * "Software"), to deal in the Software without restriction, including |
| 10 | * without limitation the rights to use, copy, modify, merge, publish, |
| 11 | * distribute, sub license, and/or sell copies of the Software, and to |
| 12 | * permit persons to whom the Software is furnished to do so, subject to |
| 13 | * the following conditions: |
| 14 | * |
| 15 | * The above copyright notice and this permission notice (including the |
| 16 | * next paragraph) shall be included in all copies or substantial portions |
| 17 | * of the Software. |
| 18 | * |
| 19 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS |
| 20 | * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF |
| 21 | * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. |
| 22 | * IN NO EVENT SHALL TUNGSTEN GRAPHICS AND/OR ITS SUPPLIERS BE LIABLE FOR |
| 23 | * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, |
| 24 | * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE |
| 25 | * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
| 26 | * |
Dave Airlie | 0d6aa60 | 2006-01-02 20:14:23 +1100 | [diff] [blame] | 27 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | |
Jesse Barnes | 63eeaf3 | 2009-06-18 16:56:52 -0700 | [diff] [blame] | 29 | #include <linux/sysrq.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 30 | #include <linux/slab.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | #include "drmP.h" |
| 32 | #include "drm.h" |
| 33 | #include "i915_drm.h" |
| 34 | #include "i915_drv.h" |
Chris Wilson | 1c5d22f | 2009-08-25 11:15:50 +0100 | [diff] [blame] | 35 | #include "i915_trace.h" |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 36 | #include "intel_drv.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | #define MAX_NOPID ((u32)~0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | |
Keith Packard | 7c46358 | 2008-11-04 02:03:27 -0800 | [diff] [blame] | 40 | /** |
| 41 | * Interrupts that are always left unmasked. |
| 42 | * |
| 43 | * Since pipe events are edge-triggered from the PIPESTAT register to IIR, |
| 44 | * we leave them always unmasked in IMR and then control enabling them through |
| 45 | * PIPESTAT alone. |
| 46 | */ |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 47 | #define I915_INTERRUPT_ENABLE_FIX \ |
| 48 | (I915_ASLE_INTERRUPT | \ |
| 49 | I915_DISPLAY_PIPE_A_EVENT_INTERRUPT | \ |
| 50 | I915_DISPLAY_PIPE_B_EVENT_INTERRUPT | \ |
| 51 | I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT | \ |
| 52 | I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT | \ |
| 53 | I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT) |
Keith Packard | 7c46358 | 2008-11-04 02:03:27 -0800 | [diff] [blame] | 54 | |
| 55 | /** Interrupts that we mask and unmask at runtime. */ |
| 56 | #define I915_INTERRUPT_ENABLE_VAR (I915_USER_INTERRUPT) |
| 57 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 58 | #define I915_PIPE_VBLANK_STATUS (PIPE_START_VBLANK_INTERRUPT_STATUS |\ |
| 59 | PIPE_VBLANK_INTERRUPT_STATUS) |
| 60 | |
| 61 | #define I915_PIPE_VBLANK_ENABLE (PIPE_START_VBLANK_INTERRUPT_ENABLE |\ |
| 62 | PIPE_VBLANK_INTERRUPT_ENABLE) |
| 63 | |
| 64 | #define DRM_I915_VBLANK_PIPE_ALL (DRM_I915_VBLANK_PIPE_A | \ |
| 65 | DRM_I915_VBLANK_PIPE_B) |
| 66 | |
Matthew Garrett | 8ee1c3d | 2008-08-05 19:37:25 +0100 | [diff] [blame] | 67 | void |
Adam Jackson | f2b115e | 2009-12-03 17:14:42 -0500 | [diff] [blame] | 68 | ironlake_enable_graphics_irq(drm_i915_private_t *dev_priv, u32 mask) |
Zhenyu Wang | 036a4a7 | 2009-06-08 14:40:19 +0800 | [diff] [blame] | 69 | { |
| 70 | if ((dev_priv->gt_irq_mask_reg & mask) != 0) { |
| 71 | dev_priv->gt_irq_mask_reg &= ~mask; |
| 72 | I915_WRITE(GTIMR, dev_priv->gt_irq_mask_reg); |
| 73 | (void) I915_READ(GTIMR); |
| 74 | } |
| 75 | } |
| 76 | |
| 77 | static inline void |
Adam Jackson | f2b115e | 2009-12-03 17:14:42 -0500 | [diff] [blame] | 78 | ironlake_disable_graphics_irq(drm_i915_private_t *dev_priv, u32 mask) |
Zhenyu Wang | 036a4a7 | 2009-06-08 14:40:19 +0800 | [diff] [blame] | 79 | { |
| 80 | if ((dev_priv->gt_irq_mask_reg & mask) != mask) { |
| 81 | dev_priv->gt_irq_mask_reg |= mask; |
| 82 | I915_WRITE(GTIMR, dev_priv->gt_irq_mask_reg); |
| 83 | (void) I915_READ(GTIMR); |
| 84 | } |
| 85 | } |
| 86 | |
| 87 | /* For display hotplug interrupt */ |
| 88 | void |
Adam Jackson | f2b115e | 2009-12-03 17:14:42 -0500 | [diff] [blame] | 89 | ironlake_enable_display_irq(drm_i915_private_t *dev_priv, u32 mask) |
Zhenyu Wang | 036a4a7 | 2009-06-08 14:40:19 +0800 | [diff] [blame] | 90 | { |
| 91 | if ((dev_priv->irq_mask_reg & mask) != 0) { |
| 92 | dev_priv->irq_mask_reg &= ~mask; |
| 93 | I915_WRITE(DEIMR, dev_priv->irq_mask_reg); |
| 94 | (void) I915_READ(DEIMR); |
| 95 | } |
| 96 | } |
| 97 | |
| 98 | static inline void |
Adam Jackson | f2b115e | 2009-12-03 17:14:42 -0500 | [diff] [blame] | 99 | ironlake_disable_display_irq(drm_i915_private_t *dev_priv, u32 mask) |
Zhenyu Wang | 036a4a7 | 2009-06-08 14:40:19 +0800 | [diff] [blame] | 100 | { |
| 101 | if ((dev_priv->irq_mask_reg & mask) != mask) { |
| 102 | dev_priv->irq_mask_reg |= mask; |
| 103 | I915_WRITE(DEIMR, dev_priv->irq_mask_reg); |
| 104 | (void) I915_READ(DEIMR); |
| 105 | } |
| 106 | } |
| 107 | |
| 108 | void |
Eric Anholt | ed4cb41 | 2008-07-29 12:10:39 -0700 | [diff] [blame] | 109 | i915_enable_irq(drm_i915_private_t *dev_priv, u32 mask) |
| 110 | { |
| 111 | if ((dev_priv->irq_mask_reg & mask) != 0) { |
| 112 | dev_priv->irq_mask_reg &= ~mask; |
| 113 | I915_WRITE(IMR, dev_priv->irq_mask_reg); |
| 114 | (void) I915_READ(IMR); |
| 115 | } |
| 116 | } |
| 117 | |
| 118 | static inline void |
| 119 | i915_disable_irq(drm_i915_private_t *dev_priv, u32 mask) |
| 120 | { |
| 121 | if ((dev_priv->irq_mask_reg & mask) != mask) { |
| 122 | dev_priv->irq_mask_reg |= mask; |
| 123 | I915_WRITE(IMR, dev_priv->irq_mask_reg); |
| 124 | (void) I915_READ(IMR); |
| 125 | } |
| 126 | } |
| 127 | |
Keith Packard | 7c46358 | 2008-11-04 02:03:27 -0800 | [diff] [blame] | 128 | static inline u32 |
| 129 | i915_pipestat(int pipe) |
| 130 | { |
| 131 | if (pipe == 0) |
| 132 | return PIPEASTAT; |
| 133 | if (pipe == 1) |
| 134 | return PIPEBSTAT; |
Andrew Morton | 9c84ba4 | 2008-12-01 13:14:08 -0800 | [diff] [blame] | 135 | BUG(); |
Keith Packard | 7c46358 | 2008-11-04 02:03:27 -0800 | [diff] [blame] | 136 | } |
| 137 | |
| 138 | void |
| 139 | i915_enable_pipestat(drm_i915_private_t *dev_priv, int pipe, u32 mask) |
| 140 | { |
| 141 | if ((dev_priv->pipestat[pipe] & mask) != mask) { |
| 142 | u32 reg = i915_pipestat(pipe); |
| 143 | |
| 144 | dev_priv->pipestat[pipe] |= mask; |
| 145 | /* Enable the interrupt, clear any pending status */ |
| 146 | I915_WRITE(reg, dev_priv->pipestat[pipe] | (mask >> 16)); |
| 147 | (void) I915_READ(reg); |
| 148 | } |
| 149 | } |
| 150 | |
| 151 | void |
| 152 | i915_disable_pipestat(drm_i915_private_t *dev_priv, int pipe, u32 mask) |
| 153 | { |
| 154 | if ((dev_priv->pipestat[pipe] & mask) != 0) { |
| 155 | u32 reg = i915_pipestat(pipe); |
| 156 | |
| 157 | dev_priv->pipestat[pipe] &= ~mask; |
| 158 | I915_WRITE(reg, dev_priv->pipestat[pipe]); |
| 159 | (void) I915_READ(reg); |
| 160 | } |
| 161 | } |
| 162 | |
=?utf-8?q?Michel_D=C3=A4nzer?= | a6b54f3 | 2006-10-24 23:37:43 +1000 | [diff] [blame] | 163 | /** |
Zhao Yakui | 01c6688 | 2009-10-28 05:10:00 +0000 | [diff] [blame] | 164 | * intel_enable_asle - enable ASLE interrupt for OpRegion |
| 165 | */ |
| 166 | void intel_enable_asle (struct drm_device *dev) |
| 167 | { |
| 168 | drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private; |
| 169 | |
Eric Anholt | c619eed | 2010-01-28 16:45:52 -0800 | [diff] [blame] | 170 | if (HAS_PCH_SPLIT(dev)) |
Adam Jackson | f2b115e | 2009-12-03 17:14:42 -0500 | [diff] [blame] | 171 | ironlake_enable_display_irq(dev_priv, DE_GSE); |
Zhao Yakui | edcb49c | 2010-04-07 17:11:21 +0800 | [diff] [blame] | 172 | else { |
Zhao Yakui | 01c6688 | 2009-10-28 05:10:00 +0000 | [diff] [blame] | 173 | i915_enable_pipestat(dev_priv, 1, |
| 174 | I915_LEGACY_BLC_EVENT_ENABLE); |
Zhao Yakui | edcb49c | 2010-04-07 17:11:21 +0800 | [diff] [blame] | 175 | if (IS_I965G(dev)) |
| 176 | i915_enable_pipestat(dev_priv, 0, |
| 177 | I915_LEGACY_BLC_EVENT_ENABLE); |
| 178 | } |
Zhao Yakui | 01c6688 | 2009-10-28 05:10:00 +0000 | [diff] [blame] | 179 | } |
| 180 | |
| 181 | /** |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 182 | * i915_pipe_enabled - check if a pipe is enabled |
| 183 | * @dev: DRM device |
| 184 | * @pipe: pipe to check |
| 185 | * |
| 186 | * Reading certain registers when the pipe is disabled can hang the chip. |
| 187 | * Use this routine to make sure the PLL is running and the pipe is active |
| 188 | * before reading such registers if unsure. |
| 189 | */ |
| 190 | static int |
| 191 | i915_pipe_enabled(struct drm_device *dev, int pipe) |
| 192 | { |
| 193 | drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private; |
| 194 | unsigned long pipeconf = pipe ? PIPEBCONF : PIPEACONF; |
| 195 | |
| 196 | if (I915_READ(pipeconf) & PIPEACONF_ENABLE) |
| 197 | return 1; |
| 198 | |
| 199 | return 0; |
| 200 | } |
| 201 | |
Keith Packard | 42f52ef | 2008-10-18 19:39:29 -0700 | [diff] [blame] | 202 | /* Called from drm generic code, passed a 'crtc', which |
| 203 | * we use as a pipe index |
| 204 | */ |
| 205 | u32 i915_get_vblank_counter(struct drm_device *dev, int pipe) |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 206 | { |
| 207 | drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private; |
| 208 | unsigned long high_frame; |
| 209 | unsigned long low_frame; |
| 210 | u32 high1, high2, low, count; |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 211 | |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 212 | high_frame = pipe ? PIPEBFRAMEHIGH : PIPEAFRAMEHIGH; |
| 213 | low_frame = pipe ? PIPEBFRAMEPIXEL : PIPEAFRAMEPIXEL; |
| 214 | |
| 215 | if (!i915_pipe_enabled(dev, pipe)) { |
Zhao Yakui | 44d98a6 | 2009-10-09 11:39:40 +0800 | [diff] [blame] | 216 | DRM_DEBUG_DRIVER("trying to get vblank count for disabled " |
| 217 | "pipe %d\n", pipe); |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 218 | return 0; |
| 219 | } |
| 220 | |
| 221 | /* |
| 222 | * High & low register fields aren't synchronized, so make sure |
| 223 | * we get a low value that's stable across two reads of the high |
| 224 | * register. |
| 225 | */ |
| 226 | do { |
| 227 | high1 = ((I915_READ(high_frame) & PIPE_FRAME_HIGH_MASK) >> |
| 228 | PIPE_FRAME_HIGH_SHIFT); |
| 229 | low = ((I915_READ(low_frame) & PIPE_FRAME_LOW_MASK) >> |
| 230 | PIPE_FRAME_LOW_SHIFT); |
| 231 | high2 = ((I915_READ(high_frame) & PIPE_FRAME_HIGH_MASK) >> |
| 232 | PIPE_FRAME_HIGH_SHIFT); |
| 233 | } while (high1 != high2); |
| 234 | |
| 235 | count = (high1 << 8) | low; |
| 236 | |
| 237 | return count; |
| 238 | } |
| 239 | |
Jesse Barnes | 9880b7a | 2009-02-06 10:22:41 -0800 | [diff] [blame] | 240 | u32 gm45_get_vblank_counter(struct drm_device *dev, int pipe) |
| 241 | { |
| 242 | drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private; |
| 243 | int reg = pipe ? PIPEB_FRMCOUNT_GM45 : PIPEA_FRMCOUNT_GM45; |
| 244 | |
| 245 | if (!i915_pipe_enabled(dev, pipe)) { |
Zhao Yakui | 44d98a6 | 2009-10-09 11:39:40 +0800 | [diff] [blame] | 246 | DRM_DEBUG_DRIVER("trying to get vblank count for disabled " |
| 247 | "pipe %d\n", pipe); |
Jesse Barnes | 9880b7a | 2009-02-06 10:22:41 -0800 | [diff] [blame] | 248 | return 0; |
| 249 | } |
| 250 | |
| 251 | return I915_READ(reg); |
| 252 | } |
| 253 | |
Jesse Barnes | 5ca5828 | 2009-03-31 14:11:15 -0700 | [diff] [blame] | 254 | /* |
| 255 | * Handle hotplug events outside the interrupt handler proper. |
| 256 | */ |
| 257 | static void i915_hotplug_work_func(struct work_struct *work) |
| 258 | { |
| 259 | drm_i915_private_t *dev_priv = container_of(work, drm_i915_private_t, |
| 260 | hotplug_work); |
| 261 | struct drm_device *dev = dev_priv->dev; |
Keith Packard | c31c4ba | 2009-05-06 11:48:58 -0700 | [diff] [blame] | 262 | struct drm_mode_config *mode_config = &dev->mode_config; |
Zhenyu Wang | 5bf4c9c | 2010-03-30 14:39:26 +0800 | [diff] [blame] | 263 | struct drm_encoder *encoder; |
Jesse Barnes | 5ca5828 | 2009-03-31 14:11:15 -0700 | [diff] [blame] | 264 | |
Zhenyu Wang | 5bf4c9c | 2010-03-30 14:39:26 +0800 | [diff] [blame] | 265 | if (mode_config->num_encoder) { |
| 266 | list_for_each_entry(encoder, &mode_config->encoder_list, head) { |
| 267 | struct intel_encoder *intel_encoder = enc_to_intel_encoder(encoder); |
Keith Packard | c31c4ba | 2009-05-06 11:48:58 -0700 | [diff] [blame] | 268 | |
Eric Anholt | 21d40d3 | 2010-03-25 11:11:14 -0700 | [diff] [blame] | 269 | if (intel_encoder->hot_plug) |
| 270 | (*intel_encoder->hot_plug) (intel_encoder); |
Keith Packard | c31c4ba | 2009-05-06 11:48:58 -0700 | [diff] [blame] | 271 | } |
| 272 | } |
Jesse Barnes | 5ca5828 | 2009-03-31 14:11:15 -0700 | [diff] [blame] | 273 | /* Just fire off a uevent and let userspace tell us what to do */ |
Dave Airlie | eb1f8e4 | 2010-05-07 06:42:51 +0000 | [diff] [blame^] | 274 | drm_helper_hpd_irq_event(dev); |
Jesse Barnes | 5ca5828 | 2009-03-31 14:11:15 -0700 | [diff] [blame] | 275 | } |
| 276 | |
Jesse Barnes | f97108d | 2010-01-29 11:27:07 -0800 | [diff] [blame] | 277 | static void i915_handle_rps_change(struct drm_device *dev) |
| 278 | { |
| 279 | drm_i915_private_t *dev_priv = dev->dev_private; |
Matthew Garrett | b5b72e8 | 2010-02-02 18:30:47 +0000 | [diff] [blame] | 280 | u32 busy_up, busy_down, max_avg, min_avg; |
Jesse Barnes | f97108d | 2010-01-29 11:27:07 -0800 | [diff] [blame] | 281 | u16 rgvswctl; |
| 282 | u8 new_delay = dev_priv->cur_delay; |
| 283 | |
| 284 | I915_WRITE(MEMINTRSTS, I915_READ(MEMINTRSTS) & ~MEMINT_EVAL_CHG); |
Matthew Garrett | b5b72e8 | 2010-02-02 18:30:47 +0000 | [diff] [blame] | 285 | busy_up = I915_READ(RCPREVBSYTUPAVG); |
| 286 | busy_down = I915_READ(RCPREVBSYTDNAVG); |
Jesse Barnes | f97108d | 2010-01-29 11:27:07 -0800 | [diff] [blame] | 287 | max_avg = I915_READ(RCBMAXAVG); |
| 288 | min_avg = I915_READ(RCBMINAVG); |
| 289 | |
| 290 | /* Handle RCS change request from hw */ |
Matthew Garrett | b5b72e8 | 2010-02-02 18:30:47 +0000 | [diff] [blame] | 291 | if (busy_up > max_avg) { |
Jesse Barnes | f97108d | 2010-01-29 11:27:07 -0800 | [diff] [blame] | 292 | if (dev_priv->cur_delay != dev_priv->max_delay) |
| 293 | new_delay = dev_priv->cur_delay - 1; |
| 294 | if (new_delay < dev_priv->max_delay) |
| 295 | new_delay = dev_priv->max_delay; |
Matthew Garrett | b5b72e8 | 2010-02-02 18:30:47 +0000 | [diff] [blame] | 296 | } else if (busy_down < min_avg) { |
Jesse Barnes | f97108d | 2010-01-29 11:27:07 -0800 | [diff] [blame] | 297 | if (dev_priv->cur_delay != dev_priv->min_delay) |
| 298 | new_delay = dev_priv->cur_delay + 1; |
| 299 | if (new_delay > dev_priv->min_delay) |
| 300 | new_delay = dev_priv->min_delay; |
| 301 | } |
| 302 | |
| 303 | DRM_DEBUG("rps change requested: %d -> %d\n", |
| 304 | dev_priv->cur_delay, new_delay); |
| 305 | |
| 306 | rgvswctl = I915_READ(MEMSWCTL); |
| 307 | if (rgvswctl & MEMCTL_CMD_STS) { |
Matthew Garrett | b5b72e8 | 2010-02-02 18:30:47 +0000 | [diff] [blame] | 308 | DRM_ERROR("gpu busy, RCS change rejected\n"); |
| 309 | return; /* still busy with another command */ |
Jesse Barnes | f97108d | 2010-01-29 11:27:07 -0800 | [diff] [blame] | 310 | } |
| 311 | |
| 312 | /* Program the new state */ |
| 313 | rgvswctl = (MEMCTL_CMD_CHFREQ << MEMCTL_CMD_SHIFT) | |
| 314 | (new_delay << MEMCTL_FREQ_SHIFT) | MEMCTL_SFCAVM; |
| 315 | I915_WRITE(MEMSWCTL, rgvswctl); |
| 316 | POSTING_READ(MEMSWCTL); |
| 317 | |
| 318 | rgvswctl |= MEMCTL_CMD_STS; |
| 319 | I915_WRITE(MEMSWCTL, rgvswctl); |
| 320 | |
| 321 | dev_priv->cur_delay = new_delay; |
| 322 | |
| 323 | DRM_DEBUG("rps changed\n"); |
| 324 | |
| 325 | return; |
| 326 | } |
| 327 | |
Adam Jackson | f2b115e | 2009-12-03 17:14:42 -0500 | [diff] [blame] | 328 | irqreturn_t ironlake_irq_handler(struct drm_device *dev) |
Zhenyu Wang | 036a4a7 | 2009-06-08 14:40:19 +0800 | [diff] [blame] | 329 | { |
| 330 | drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private; |
| 331 | int ret = IRQ_NONE; |
Dave Airlie | 3ff9916 | 2009-12-08 14:03:47 +1000 | [diff] [blame] | 332 | u32 de_iir, gt_iir, de_ier, pch_iir; |
Zhenyu Wang | 036a4a7 | 2009-06-08 14:40:19 +0800 | [diff] [blame] | 333 | struct drm_i915_master_private *master_priv; |
| 334 | |
Zou, Nanhai | 2d109a8 | 2009-11-06 02:13:01 +0000 | [diff] [blame] | 335 | /* disable master interrupt before clearing iir */ |
| 336 | de_ier = I915_READ(DEIER); |
| 337 | I915_WRITE(DEIER, de_ier & ~DE_MASTER_IRQ_CONTROL); |
| 338 | (void)I915_READ(DEIER); |
| 339 | |
Zhenyu Wang | 036a4a7 | 2009-06-08 14:40:19 +0800 | [diff] [blame] | 340 | de_iir = I915_READ(DEIIR); |
| 341 | gt_iir = I915_READ(GTIIR); |
Zhenyu Wang | c650156 | 2009-11-03 18:57:21 +0000 | [diff] [blame] | 342 | pch_iir = I915_READ(SDEIIR); |
Zhenyu Wang | 036a4a7 | 2009-06-08 14:40:19 +0800 | [diff] [blame] | 343 | |
Zou Nan hai | c7c8510 | 2010-01-15 10:29:06 +0800 | [diff] [blame] | 344 | if (de_iir == 0 && gt_iir == 0 && pch_iir == 0) |
| 345 | goto done; |
Zhenyu Wang | 036a4a7 | 2009-06-08 14:40:19 +0800 | [diff] [blame] | 346 | |
Zou Nan hai | c7c8510 | 2010-01-15 10:29:06 +0800 | [diff] [blame] | 347 | ret = IRQ_HANDLED; |
Zhenyu Wang | 036a4a7 | 2009-06-08 14:40:19 +0800 | [diff] [blame] | 348 | |
Zou Nan hai | c7c8510 | 2010-01-15 10:29:06 +0800 | [diff] [blame] | 349 | if (dev->primary->master) { |
| 350 | master_priv = dev->primary->master->driver_priv; |
| 351 | if (master_priv->sarea_priv) |
| 352 | master_priv->sarea_priv->last_dispatch = |
| 353 | READ_BREADCRUMB(dev_priv); |
Zhenyu Wang | 036a4a7 | 2009-06-08 14:40:19 +0800 | [diff] [blame] | 354 | } |
| 355 | |
Zou Nan hai | c7c8510 | 2010-01-15 10:29:06 +0800 | [diff] [blame] | 356 | if (gt_iir & GT_USER_INTERRUPT) { |
| 357 | u32 seqno = i915_get_gem_seqno(dev); |
| 358 | dev_priv->mm.irq_gem_seqno = seqno; |
| 359 | trace_i915_gem_request_complete(dev, seqno); |
| 360 | DRM_WAKEUP(&dev_priv->irq_queue); |
| 361 | dev_priv->hangcheck_count = 0; |
| 362 | mod_timer(&dev_priv->hangcheck_timer, jiffies + DRM_I915_HANGCHECK_PERIOD); |
| 363 | } |
| 364 | |
| 365 | if (de_iir & DE_GSE) |
| 366 | ironlake_opregion_gse_intr(dev); |
| 367 | |
Zhenyu Wang | f072d2e | 2010-02-09 09:46:19 +0800 | [diff] [blame] | 368 | if (de_iir & DE_PLANEA_FLIP_DONE) { |
Jesse Barnes | 013d5aa | 2010-01-29 11:18:31 -0800 | [diff] [blame] | 369 | intel_prepare_page_flip(dev, 0); |
Jesse Barnes | 013d5aa | 2010-01-29 11:18:31 -0800 | [diff] [blame] | 370 | intel_finish_page_flip(dev, 0); |
| 371 | } |
| 372 | |
Zhenyu Wang | f072d2e | 2010-02-09 09:46:19 +0800 | [diff] [blame] | 373 | if (de_iir & DE_PLANEB_FLIP_DONE) { |
| 374 | intel_prepare_page_flip(dev, 1); |
Jesse Barnes | 013d5aa | 2010-01-29 11:18:31 -0800 | [diff] [blame] | 375 | intel_finish_page_flip(dev, 1); |
| 376 | } |
Li Peng | c062df6 | 2010-01-23 00:12:58 +0800 | [diff] [blame] | 377 | |
Zhenyu Wang | f072d2e | 2010-02-09 09:46:19 +0800 | [diff] [blame] | 378 | if (de_iir & DE_PIPEA_VBLANK) |
| 379 | drm_handle_vblank(dev, 0); |
| 380 | |
| 381 | if (de_iir & DE_PIPEB_VBLANK) |
| 382 | drm_handle_vblank(dev, 1); |
| 383 | |
Zou Nan hai | c7c8510 | 2010-01-15 10:29:06 +0800 | [diff] [blame] | 384 | /* check event from PCH */ |
| 385 | if ((de_iir & DE_PCH_EVENT) && |
| 386 | (pch_iir & SDE_HOTPLUG_MASK)) { |
| 387 | queue_work(dev_priv->wq, &dev_priv->hotplug_work); |
| 388 | } |
| 389 | |
Jesse Barnes | f97108d | 2010-01-29 11:27:07 -0800 | [diff] [blame] | 390 | if (de_iir & DE_PCU_EVENT) { |
| 391 | I915_WRITE(MEMINTRSTS, I915_READ(MEMINTRSTS)); |
| 392 | i915_handle_rps_change(dev); |
| 393 | } |
| 394 | |
Zou Nan hai | c7c8510 | 2010-01-15 10:29:06 +0800 | [diff] [blame] | 395 | /* should clear PCH hotplug event before clear CPU irq */ |
| 396 | I915_WRITE(SDEIIR, pch_iir); |
| 397 | I915_WRITE(GTIIR, gt_iir); |
| 398 | I915_WRITE(DEIIR, de_iir); |
| 399 | |
| 400 | done: |
Zou, Nanhai | 2d109a8 | 2009-11-06 02:13:01 +0000 | [diff] [blame] | 401 | I915_WRITE(DEIER, de_ier); |
| 402 | (void)I915_READ(DEIER); |
| 403 | |
Zhenyu Wang | 036a4a7 | 2009-06-08 14:40:19 +0800 | [diff] [blame] | 404 | return ret; |
| 405 | } |
| 406 | |
Jesse Barnes | 8a90523 | 2009-07-11 16:48:03 -0400 | [diff] [blame] | 407 | /** |
| 408 | * i915_error_work_func - do process context error handling work |
| 409 | * @work: work struct |
| 410 | * |
| 411 | * Fire an error uevent so userspace can see that a hang or error |
| 412 | * was detected. |
| 413 | */ |
| 414 | static void i915_error_work_func(struct work_struct *work) |
| 415 | { |
| 416 | drm_i915_private_t *dev_priv = container_of(work, drm_i915_private_t, |
| 417 | error_work); |
| 418 | struct drm_device *dev = dev_priv->dev; |
Ben Gamari | f316a42 | 2009-09-14 17:48:46 -0400 | [diff] [blame] | 419 | char *error_event[] = { "ERROR=1", NULL }; |
| 420 | char *reset_event[] = { "RESET=1", NULL }; |
| 421 | char *reset_done_event[] = { "ERROR=0", NULL }; |
Jesse Barnes | 8a90523 | 2009-07-11 16:48:03 -0400 | [diff] [blame] | 422 | |
Zhao Yakui | 44d98a6 | 2009-10-09 11:39:40 +0800 | [diff] [blame] | 423 | DRM_DEBUG_DRIVER("generating error event\n"); |
Ben Gamari | f316a42 | 2009-09-14 17:48:46 -0400 | [diff] [blame] | 424 | kobject_uevent_env(&dev->primary->kdev.kobj, KOBJ_CHANGE, error_event); |
Jesse Barnes | 8a90523 | 2009-07-11 16:48:03 -0400 | [diff] [blame] | 425 | |
Ben Gamari | ba1234d | 2009-09-14 17:48:47 -0400 | [diff] [blame] | 426 | if (atomic_read(&dev_priv->mm.wedged)) { |
Ben Gamari | f316a42 | 2009-09-14 17:48:46 -0400 | [diff] [blame] | 427 | if (IS_I965G(dev)) { |
Zhao Yakui | 44d98a6 | 2009-10-09 11:39:40 +0800 | [diff] [blame] | 428 | DRM_DEBUG_DRIVER("resetting chip\n"); |
Ben Gamari | f316a42 | 2009-09-14 17:48:46 -0400 | [diff] [blame] | 429 | kobject_uevent_env(&dev->primary->kdev.kobj, KOBJ_CHANGE, reset_event); |
| 430 | if (!i965_reset(dev, GDRST_RENDER)) { |
Ben Gamari | ba1234d | 2009-09-14 17:48:47 -0400 | [diff] [blame] | 431 | atomic_set(&dev_priv->mm.wedged, 0); |
Ben Gamari | f316a42 | 2009-09-14 17:48:46 -0400 | [diff] [blame] | 432 | kobject_uevent_env(&dev->primary->kdev.kobj, KOBJ_CHANGE, reset_done_event); |
| 433 | } |
| 434 | } else { |
Zhao Yakui | 44d98a6 | 2009-10-09 11:39:40 +0800 | [diff] [blame] | 435 | DRM_DEBUG_DRIVER("reboot required\n"); |
Ben Gamari | f316a42 | 2009-09-14 17:48:46 -0400 | [diff] [blame] | 436 | } |
| 437 | } |
Jesse Barnes | 8a90523 | 2009-07-11 16:48:03 -0400 | [diff] [blame] | 438 | } |
| 439 | |
Chris Wilson | 9df3079 | 2010-02-18 10:24:56 +0000 | [diff] [blame] | 440 | static struct drm_i915_error_object * |
| 441 | i915_error_object_create(struct drm_device *dev, |
| 442 | struct drm_gem_object *src) |
| 443 | { |
| 444 | struct drm_i915_error_object *dst; |
| 445 | struct drm_i915_gem_object *src_priv; |
| 446 | int page, page_count; |
| 447 | |
| 448 | if (src == NULL) |
| 449 | return NULL; |
| 450 | |
Daniel Vetter | 23010e4 | 2010-03-08 13:35:02 +0100 | [diff] [blame] | 451 | src_priv = to_intel_bo(src); |
Chris Wilson | 9df3079 | 2010-02-18 10:24:56 +0000 | [diff] [blame] | 452 | if (src_priv->pages == NULL) |
| 453 | return NULL; |
| 454 | |
| 455 | page_count = src->size / PAGE_SIZE; |
| 456 | |
| 457 | dst = kmalloc(sizeof(*dst) + page_count * sizeof (u32 *), GFP_ATOMIC); |
| 458 | if (dst == NULL) |
| 459 | return NULL; |
| 460 | |
| 461 | for (page = 0; page < page_count; page++) { |
| 462 | void *s, *d = kmalloc(PAGE_SIZE, GFP_ATOMIC); |
| 463 | if (d == NULL) |
| 464 | goto unwind; |
| 465 | s = kmap_atomic(src_priv->pages[page], KM_USER0); |
| 466 | memcpy(d, s, PAGE_SIZE); |
| 467 | kunmap_atomic(s, KM_USER0); |
| 468 | dst->pages[page] = d; |
| 469 | } |
| 470 | dst->page_count = page_count; |
| 471 | dst->gtt_offset = src_priv->gtt_offset; |
| 472 | |
| 473 | return dst; |
| 474 | |
| 475 | unwind: |
| 476 | while (page--) |
| 477 | kfree(dst->pages[page]); |
| 478 | kfree(dst); |
| 479 | return NULL; |
| 480 | } |
| 481 | |
| 482 | static void |
| 483 | i915_error_object_free(struct drm_i915_error_object *obj) |
| 484 | { |
| 485 | int page; |
| 486 | |
| 487 | if (obj == NULL) |
| 488 | return; |
| 489 | |
| 490 | for (page = 0; page < obj->page_count; page++) |
| 491 | kfree(obj->pages[page]); |
| 492 | |
| 493 | kfree(obj); |
| 494 | } |
| 495 | |
| 496 | static void |
| 497 | i915_error_state_free(struct drm_device *dev, |
| 498 | struct drm_i915_error_state *error) |
| 499 | { |
| 500 | i915_error_object_free(error->batchbuffer[0]); |
| 501 | i915_error_object_free(error->batchbuffer[1]); |
| 502 | i915_error_object_free(error->ringbuffer); |
| 503 | kfree(error->active_bo); |
| 504 | kfree(error); |
| 505 | } |
| 506 | |
| 507 | static u32 |
| 508 | i915_get_bbaddr(struct drm_device *dev, u32 *ring) |
| 509 | { |
| 510 | u32 cmd; |
| 511 | |
| 512 | if (IS_I830(dev) || IS_845G(dev)) |
| 513 | cmd = MI_BATCH_BUFFER; |
| 514 | else if (IS_I965G(dev)) |
| 515 | cmd = (MI_BATCH_BUFFER_START | (2 << 6) | |
| 516 | MI_BATCH_NON_SECURE_I965); |
| 517 | else |
| 518 | cmd = (MI_BATCH_BUFFER_START | (2 << 6)); |
| 519 | |
| 520 | return ring[0] == cmd ? ring[1] : 0; |
| 521 | } |
| 522 | |
| 523 | static u32 |
| 524 | i915_ringbuffer_last_batch(struct drm_device *dev) |
| 525 | { |
| 526 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 527 | u32 head, bbaddr; |
| 528 | u32 *ring; |
| 529 | |
| 530 | /* Locate the current position in the ringbuffer and walk back |
| 531 | * to find the most recently dispatched batch buffer. |
| 532 | */ |
| 533 | bbaddr = 0; |
| 534 | head = I915_READ(PRB0_HEAD) & HEAD_ADDR; |
| 535 | ring = (u32 *)(dev_priv->ring.virtual_start + head); |
| 536 | |
| 537 | while (--ring >= (u32 *)dev_priv->ring.virtual_start) { |
| 538 | bbaddr = i915_get_bbaddr(dev, ring); |
| 539 | if (bbaddr) |
| 540 | break; |
| 541 | } |
| 542 | |
| 543 | if (bbaddr == 0) { |
| 544 | ring = (u32 *)(dev_priv->ring.virtual_start + dev_priv->ring.Size); |
| 545 | while (--ring >= (u32 *)dev_priv->ring.virtual_start) { |
| 546 | bbaddr = i915_get_bbaddr(dev, ring); |
| 547 | if (bbaddr) |
| 548 | break; |
| 549 | } |
| 550 | } |
| 551 | |
| 552 | return bbaddr; |
| 553 | } |
| 554 | |
Jesse Barnes | 8a90523 | 2009-07-11 16:48:03 -0400 | [diff] [blame] | 555 | /** |
| 556 | * i915_capture_error_state - capture an error record for later analysis |
| 557 | * @dev: drm device |
| 558 | * |
| 559 | * Should be called when an error is detected (either a hang or an error |
| 560 | * interrupt) to capture error state from the time of the error. Fills |
| 561 | * out a structure which becomes available in debugfs for user level tools |
| 562 | * to pick up. |
| 563 | */ |
Jesse Barnes | 63eeaf3 | 2009-06-18 16:56:52 -0700 | [diff] [blame] | 564 | static void i915_capture_error_state(struct drm_device *dev) |
| 565 | { |
| 566 | struct drm_i915_private *dev_priv = dev->dev_private; |
Chris Wilson | 9df3079 | 2010-02-18 10:24:56 +0000 | [diff] [blame] | 567 | struct drm_i915_gem_object *obj_priv; |
Jesse Barnes | 63eeaf3 | 2009-06-18 16:56:52 -0700 | [diff] [blame] | 568 | struct drm_i915_error_state *error; |
Chris Wilson | 9df3079 | 2010-02-18 10:24:56 +0000 | [diff] [blame] | 569 | struct drm_gem_object *batchbuffer[2]; |
Jesse Barnes | 63eeaf3 | 2009-06-18 16:56:52 -0700 | [diff] [blame] | 570 | unsigned long flags; |
Chris Wilson | 9df3079 | 2010-02-18 10:24:56 +0000 | [diff] [blame] | 571 | u32 bbaddr; |
| 572 | int count; |
Jesse Barnes | 63eeaf3 | 2009-06-18 16:56:52 -0700 | [diff] [blame] | 573 | |
| 574 | spin_lock_irqsave(&dev_priv->error_lock, flags); |
Chris Wilson | 9df3079 | 2010-02-18 10:24:56 +0000 | [diff] [blame] | 575 | error = dev_priv->first_error; |
| 576 | spin_unlock_irqrestore(&dev_priv->error_lock, flags); |
| 577 | if (error) |
| 578 | return; |
Jesse Barnes | 63eeaf3 | 2009-06-18 16:56:52 -0700 | [diff] [blame] | 579 | |
| 580 | error = kmalloc(sizeof(*error), GFP_ATOMIC); |
| 581 | if (!error) { |
Chris Wilson | 9df3079 | 2010-02-18 10:24:56 +0000 | [diff] [blame] | 582 | DRM_DEBUG_DRIVER("out of memory, not capturing error state\n"); |
| 583 | return; |
Jesse Barnes | 63eeaf3 | 2009-06-18 16:56:52 -0700 | [diff] [blame] | 584 | } |
| 585 | |
Chris Wilson | 9df3079 | 2010-02-18 10:24:56 +0000 | [diff] [blame] | 586 | error->seqno = i915_get_gem_seqno(dev); |
Jesse Barnes | 63eeaf3 | 2009-06-18 16:56:52 -0700 | [diff] [blame] | 587 | error->eir = I915_READ(EIR); |
| 588 | error->pgtbl_er = I915_READ(PGTBL_ER); |
| 589 | error->pipeastat = I915_READ(PIPEASTAT); |
| 590 | error->pipebstat = I915_READ(PIPEBSTAT); |
| 591 | error->instpm = I915_READ(INSTPM); |
| 592 | if (!IS_I965G(dev)) { |
| 593 | error->ipeir = I915_READ(IPEIR); |
| 594 | error->ipehr = I915_READ(IPEHR); |
| 595 | error->instdone = I915_READ(INSTDONE); |
| 596 | error->acthd = I915_READ(ACTHD); |
Chris Wilson | 9df3079 | 2010-02-18 10:24:56 +0000 | [diff] [blame] | 597 | error->bbaddr = 0; |
Jesse Barnes | 63eeaf3 | 2009-06-18 16:56:52 -0700 | [diff] [blame] | 598 | } else { |
| 599 | error->ipeir = I915_READ(IPEIR_I965); |
| 600 | error->ipehr = I915_READ(IPEHR_I965); |
| 601 | error->instdone = I915_READ(INSTDONE_I965); |
| 602 | error->instps = I915_READ(INSTPS); |
| 603 | error->instdone1 = I915_READ(INSTDONE1); |
| 604 | error->acthd = I915_READ(ACTHD_I965); |
Chris Wilson | 9df3079 | 2010-02-18 10:24:56 +0000 | [diff] [blame] | 605 | error->bbaddr = I915_READ64(BB_ADDR); |
| 606 | } |
| 607 | |
| 608 | bbaddr = i915_ringbuffer_last_batch(dev); |
| 609 | |
| 610 | /* Grab the current batchbuffer, most likely to have crashed. */ |
| 611 | batchbuffer[0] = NULL; |
| 612 | batchbuffer[1] = NULL; |
| 613 | count = 0; |
| 614 | list_for_each_entry(obj_priv, &dev_priv->mm.active_list, list) { |
Daniel Vetter | a8089e8 | 2010-04-09 19:05:09 +0000 | [diff] [blame] | 615 | struct drm_gem_object *obj = &obj_priv->base; |
Chris Wilson | 9df3079 | 2010-02-18 10:24:56 +0000 | [diff] [blame] | 616 | |
| 617 | if (batchbuffer[0] == NULL && |
| 618 | bbaddr >= obj_priv->gtt_offset && |
| 619 | bbaddr < obj_priv->gtt_offset + obj->size) |
| 620 | batchbuffer[0] = obj; |
| 621 | |
| 622 | if (batchbuffer[1] == NULL && |
| 623 | error->acthd >= obj_priv->gtt_offset && |
| 624 | error->acthd < obj_priv->gtt_offset + obj->size && |
| 625 | batchbuffer[0] != obj) |
| 626 | batchbuffer[1] = obj; |
| 627 | |
| 628 | count++; |
| 629 | } |
| 630 | |
| 631 | /* We need to copy these to an anonymous buffer as the simplest |
| 632 | * method to avoid being overwritten by userpace. |
| 633 | */ |
| 634 | error->batchbuffer[0] = i915_error_object_create(dev, batchbuffer[0]); |
| 635 | error->batchbuffer[1] = i915_error_object_create(dev, batchbuffer[1]); |
| 636 | |
| 637 | /* Record the ringbuffer */ |
| 638 | error->ringbuffer = i915_error_object_create(dev, dev_priv->ring.ring_obj); |
| 639 | |
| 640 | /* Record buffers on the active list. */ |
| 641 | error->active_bo = NULL; |
| 642 | error->active_bo_count = 0; |
| 643 | |
| 644 | if (count) |
| 645 | error->active_bo = kmalloc(sizeof(*error->active_bo)*count, |
| 646 | GFP_ATOMIC); |
| 647 | |
| 648 | if (error->active_bo) { |
| 649 | int i = 0; |
| 650 | list_for_each_entry(obj_priv, &dev_priv->mm.active_list, list) { |
Daniel Vetter | a8089e8 | 2010-04-09 19:05:09 +0000 | [diff] [blame] | 651 | struct drm_gem_object *obj = &obj_priv->base; |
Chris Wilson | 9df3079 | 2010-02-18 10:24:56 +0000 | [diff] [blame] | 652 | |
| 653 | error->active_bo[i].size = obj->size; |
| 654 | error->active_bo[i].name = obj->name; |
| 655 | error->active_bo[i].seqno = obj_priv->last_rendering_seqno; |
| 656 | error->active_bo[i].gtt_offset = obj_priv->gtt_offset; |
| 657 | error->active_bo[i].read_domains = obj->read_domains; |
| 658 | error->active_bo[i].write_domain = obj->write_domain; |
| 659 | error->active_bo[i].fence_reg = obj_priv->fence_reg; |
| 660 | error->active_bo[i].pinned = 0; |
| 661 | if (obj_priv->pin_count > 0) |
| 662 | error->active_bo[i].pinned = 1; |
| 663 | if (obj_priv->user_pin_count > 0) |
| 664 | error->active_bo[i].pinned = -1; |
| 665 | error->active_bo[i].tiling = obj_priv->tiling_mode; |
| 666 | error->active_bo[i].dirty = obj_priv->dirty; |
| 667 | error->active_bo[i].purgeable = obj_priv->madv != I915_MADV_WILLNEED; |
| 668 | |
| 669 | if (++i == count) |
| 670 | break; |
| 671 | } |
| 672 | error->active_bo_count = i; |
Jesse Barnes | 63eeaf3 | 2009-06-18 16:56:52 -0700 | [diff] [blame] | 673 | } |
| 674 | |
Jesse Barnes | 8a90523 | 2009-07-11 16:48:03 -0400 | [diff] [blame] | 675 | do_gettimeofday(&error->time); |
| 676 | |
Chris Wilson | 9df3079 | 2010-02-18 10:24:56 +0000 | [diff] [blame] | 677 | spin_lock_irqsave(&dev_priv->error_lock, flags); |
| 678 | if (dev_priv->first_error == NULL) { |
| 679 | dev_priv->first_error = error; |
| 680 | error = NULL; |
| 681 | } |
Jesse Barnes | 63eeaf3 | 2009-06-18 16:56:52 -0700 | [diff] [blame] | 682 | spin_unlock_irqrestore(&dev_priv->error_lock, flags); |
Chris Wilson | 9df3079 | 2010-02-18 10:24:56 +0000 | [diff] [blame] | 683 | |
| 684 | if (error) |
| 685 | i915_error_state_free(dev, error); |
| 686 | } |
| 687 | |
| 688 | void i915_destroy_error_state(struct drm_device *dev) |
| 689 | { |
| 690 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 691 | struct drm_i915_error_state *error; |
| 692 | |
| 693 | spin_lock(&dev_priv->error_lock); |
| 694 | error = dev_priv->first_error; |
| 695 | dev_priv->first_error = NULL; |
| 696 | spin_unlock(&dev_priv->error_lock); |
| 697 | |
| 698 | if (error) |
| 699 | i915_error_state_free(dev, error); |
Jesse Barnes | 63eeaf3 | 2009-06-18 16:56:52 -0700 | [diff] [blame] | 700 | } |
| 701 | |
Jesse Barnes | 8a90523 | 2009-07-11 16:48:03 -0400 | [diff] [blame] | 702 | /** |
| 703 | * i915_handle_error - handle an error interrupt |
| 704 | * @dev: drm device |
| 705 | * |
| 706 | * Do some basic checking of regsiter state at error interrupt time and |
| 707 | * dump it to the syslog. Also call i915_capture_error_state() to make |
| 708 | * sure we get a record and make it available in debugfs. Fire a uevent |
| 709 | * so userspace knows something bad happened (should trigger collection |
| 710 | * of a ring dump etc.). |
| 711 | */ |
Ben Gamari | ba1234d | 2009-09-14 17:48:47 -0400 | [diff] [blame] | 712 | static void i915_handle_error(struct drm_device *dev, bool wedged) |
Jesse Barnes | 8a90523 | 2009-07-11 16:48:03 -0400 | [diff] [blame] | 713 | { |
| 714 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 715 | u32 eir = I915_READ(EIR); |
| 716 | u32 pipea_stats = I915_READ(PIPEASTAT); |
| 717 | u32 pipeb_stats = I915_READ(PIPEBSTAT); |
| 718 | |
| 719 | i915_capture_error_state(dev); |
| 720 | |
| 721 | printk(KERN_ERR "render error detected, EIR: 0x%08x\n", |
| 722 | eir); |
| 723 | |
| 724 | if (IS_G4X(dev)) { |
| 725 | if (eir & (GM45_ERROR_MEM_PRIV | GM45_ERROR_CP_PRIV)) { |
| 726 | u32 ipeir = I915_READ(IPEIR_I965); |
| 727 | |
| 728 | printk(KERN_ERR " IPEIR: 0x%08x\n", |
| 729 | I915_READ(IPEIR_I965)); |
| 730 | printk(KERN_ERR " IPEHR: 0x%08x\n", |
| 731 | I915_READ(IPEHR_I965)); |
| 732 | printk(KERN_ERR " INSTDONE: 0x%08x\n", |
| 733 | I915_READ(INSTDONE_I965)); |
| 734 | printk(KERN_ERR " INSTPS: 0x%08x\n", |
| 735 | I915_READ(INSTPS)); |
| 736 | printk(KERN_ERR " INSTDONE1: 0x%08x\n", |
| 737 | I915_READ(INSTDONE1)); |
| 738 | printk(KERN_ERR " ACTHD: 0x%08x\n", |
| 739 | I915_READ(ACTHD_I965)); |
| 740 | I915_WRITE(IPEIR_I965, ipeir); |
| 741 | (void)I915_READ(IPEIR_I965); |
| 742 | } |
| 743 | if (eir & GM45_ERROR_PAGE_TABLE) { |
| 744 | u32 pgtbl_err = I915_READ(PGTBL_ER); |
| 745 | printk(KERN_ERR "page table error\n"); |
| 746 | printk(KERN_ERR " PGTBL_ER: 0x%08x\n", |
| 747 | pgtbl_err); |
| 748 | I915_WRITE(PGTBL_ER, pgtbl_err); |
| 749 | (void)I915_READ(PGTBL_ER); |
| 750 | } |
| 751 | } |
| 752 | |
| 753 | if (IS_I9XX(dev)) { |
| 754 | if (eir & I915_ERROR_PAGE_TABLE) { |
| 755 | u32 pgtbl_err = I915_READ(PGTBL_ER); |
| 756 | printk(KERN_ERR "page table error\n"); |
| 757 | printk(KERN_ERR " PGTBL_ER: 0x%08x\n", |
| 758 | pgtbl_err); |
| 759 | I915_WRITE(PGTBL_ER, pgtbl_err); |
| 760 | (void)I915_READ(PGTBL_ER); |
| 761 | } |
| 762 | } |
| 763 | |
| 764 | if (eir & I915_ERROR_MEMORY_REFRESH) { |
| 765 | printk(KERN_ERR "memory refresh error\n"); |
| 766 | printk(KERN_ERR "PIPEASTAT: 0x%08x\n", |
| 767 | pipea_stats); |
| 768 | printk(KERN_ERR "PIPEBSTAT: 0x%08x\n", |
| 769 | pipeb_stats); |
| 770 | /* pipestat has already been acked */ |
| 771 | } |
| 772 | if (eir & I915_ERROR_INSTRUCTION) { |
| 773 | printk(KERN_ERR "instruction error\n"); |
| 774 | printk(KERN_ERR " INSTPM: 0x%08x\n", |
| 775 | I915_READ(INSTPM)); |
| 776 | if (!IS_I965G(dev)) { |
| 777 | u32 ipeir = I915_READ(IPEIR); |
| 778 | |
| 779 | printk(KERN_ERR " IPEIR: 0x%08x\n", |
| 780 | I915_READ(IPEIR)); |
| 781 | printk(KERN_ERR " IPEHR: 0x%08x\n", |
| 782 | I915_READ(IPEHR)); |
| 783 | printk(KERN_ERR " INSTDONE: 0x%08x\n", |
| 784 | I915_READ(INSTDONE)); |
| 785 | printk(KERN_ERR " ACTHD: 0x%08x\n", |
| 786 | I915_READ(ACTHD)); |
| 787 | I915_WRITE(IPEIR, ipeir); |
| 788 | (void)I915_READ(IPEIR); |
| 789 | } else { |
| 790 | u32 ipeir = I915_READ(IPEIR_I965); |
| 791 | |
| 792 | printk(KERN_ERR " IPEIR: 0x%08x\n", |
| 793 | I915_READ(IPEIR_I965)); |
| 794 | printk(KERN_ERR " IPEHR: 0x%08x\n", |
| 795 | I915_READ(IPEHR_I965)); |
| 796 | printk(KERN_ERR " INSTDONE: 0x%08x\n", |
| 797 | I915_READ(INSTDONE_I965)); |
| 798 | printk(KERN_ERR " INSTPS: 0x%08x\n", |
| 799 | I915_READ(INSTPS)); |
| 800 | printk(KERN_ERR " INSTDONE1: 0x%08x\n", |
| 801 | I915_READ(INSTDONE1)); |
| 802 | printk(KERN_ERR " ACTHD: 0x%08x\n", |
| 803 | I915_READ(ACTHD_I965)); |
| 804 | I915_WRITE(IPEIR_I965, ipeir); |
| 805 | (void)I915_READ(IPEIR_I965); |
| 806 | } |
| 807 | } |
| 808 | |
| 809 | I915_WRITE(EIR, eir); |
| 810 | (void)I915_READ(EIR); |
| 811 | eir = I915_READ(EIR); |
| 812 | if (eir) { |
| 813 | /* |
| 814 | * some errors might have become stuck, |
| 815 | * mask them. |
| 816 | */ |
| 817 | DRM_ERROR("EIR stuck: 0x%08x, masking\n", eir); |
| 818 | I915_WRITE(EMR, I915_READ(EMR) | eir); |
| 819 | I915_WRITE(IIR, I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT); |
| 820 | } |
| 821 | |
Ben Gamari | ba1234d | 2009-09-14 17:48:47 -0400 | [diff] [blame] | 822 | if (wedged) { |
| 823 | atomic_set(&dev_priv->mm.wedged, 1); |
| 824 | |
Ben Gamari | 11ed50e | 2009-09-14 17:48:45 -0400 | [diff] [blame] | 825 | /* |
| 826 | * Wakeup waiting processes so they don't hang |
| 827 | */ |
Ben Gamari | 11ed50e | 2009-09-14 17:48:45 -0400 | [diff] [blame] | 828 | DRM_WAKEUP(&dev_priv->irq_queue); |
| 829 | } |
| 830 | |
Eric Anholt | 9c9fe1f | 2009-08-03 16:09:16 -0700 | [diff] [blame] | 831 | queue_work(dev_priv->wq, &dev_priv->error_work); |
Jesse Barnes | 8a90523 | 2009-07-11 16:48:03 -0400 | [diff] [blame] | 832 | } |
| 833 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 834 | irqreturn_t i915_driver_irq_handler(DRM_IRQ_ARGS) |
| 835 | { |
Dave Airlie | 84b1fd1 | 2007-07-11 15:53:27 +1000 | [diff] [blame] | 836 | struct drm_device *dev = (struct drm_device *) arg; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 837 | drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private; |
Dave Airlie | 7c1c287 | 2008-11-28 14:22:24 +1000 | [diff] [blame] | 838 | struct drm_i915_master_private *master_priv; |
Eric Anholt | cdfbc41 | 2008-11-04 15:50:30 -0800 | [diff] [blame] | 839 | u32 iir, new_iir; |
| 840 | u32 pipea_stats, pipeb_stats; |
Keith Packard | 05eff84 | 2008-11-19 14:03:05 -0800 | [diff] [blame] | 841 | u32 vblank_status; |
| 842 | u32 vblank_enable; |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 843 | int vblank = 0; |
Keith Packard | 7c46358 | 2008-11-04 02:03:27 -0800 | [diff] [blame] | 844 | unsigned long irqflags; |
Keith Packard | 05eff84 | 2008-11-19 14:03:05 -0800 | [diff] [blame] | 845 | int irq_received; |
| 846 | int ret = IRQ_NONE; |
Dave Airlie | af6061a | 2008-05-07 12:15:39 +1000 | [diff] [blame] | 847 | |
Eric Anholt | 630681d | 2008-10-06 15:14:12 -0700 | [diff] [blame] | 848 | atomic_inc(&dev_priv->irq_received); |
| 849 | |
Eric Anholt | bad720f | 2009-10-22 16:11:14 -0700 | [diff] [blame] | 850 | if (HAS_PCH_SPLIT(dev)) |
Adam Jackson | f2b115e | 2009-12-03 17:14:42 -0500 | [diff] [blame] | 851 | return ironlake_irq_handler(dev); |
Zhenyu Wang | 036a4a7 | 2009-06-08 14:40:19 +0800 | [diff] [blame] | 852 | |
Eric Anholt | ed4cb41 | 2008-07-29 12:10:39 -0700 | [diff] [blame] | 853 | iir = I915_READ(IIR); |
Dave Airlie | af6061a | 2008-05-07 12:15:39 +1000 | [diff] [blame] | 854 | |
Keith Packard | 05eff84 | 2008-11-19 14:03:05 -0800 | [diff] [blame] | 855 | if (IS_I965G(dev)) { |
| 856 | vblank_status = I915_START_VBLANK_INTERRUPT_STATUS; |
| 857 | vblank_enable = PIPE_START_VBLANK_INTERRUPT_ENABLE; |
| 858 | } else { |
| 859 | vblank_status = I915_VBLANK_INTERRUPT_STATUS; |
| 860 | vblank_enable = I915_VBLANK_INTERRUPT_ENABLE; |
| 861 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 862 | |
Keith Packard | 05eff84 | 2008-11-19 14:03:05 -0800 | [diff] [blame] | 863 | for (;;) { |
| 864 | irq_received = iir != 0; |
| 865 | |
| 866 | /* Can't rely on pipestat interrupt bit in iir as it might |
| 867 | * have been cleared after the pipestat interrupt was received. |
| 868 | * It doesn't set the bit in iir again, but it still produces |
| 869 | * interrupts (for non-MSI). |
| 870 | */ |
| 871 | spin_lock_irqsave(&dev_priv->user_irq_lock, irqflags); |
| 872 | pipea_stats = I915_READ(PIPEASTAT); |
| 873 | pipeb_stats = I915_READ(PIPEBSTAT); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 874 | |
Jesse Barnes | 8a90523 | 2009-07-11 16:48:03 -0400 | [diff] [blame] | 875 | if (iir & I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT) |
Ben Gamari | ba1234d | 2009-09-14 17:48:47 -0400 | [diff] [blame] | 876 | i915_handle_error(dev, false); |
Jesse Barnes | 8a90523 | 2009-07-11 16:48:03 -0400 | [diff] [blame] | 877 | |
Eric Anholt | cdfbc41 | 2008-11-04 15:50:30 -0800 | [diff] [blame] | 878 | /* |
| 879 | * Clear the PIPE(A|B)STAT regs before the IIR |
| 880 | */ |
Keith Packard | 05eff84 | 2008-11-19 14:03:05 -0800 | [diff] [blame] | 881 | if (pipea_stats & 0x8000ffff) { |
Shaohua Li | 7662c8b | 2009-06-26 11:23:55 +0800 | [diff] [blame] | 882 | if (pipea_stats & PIPE_FIFO_UNDERRUN_STATUS) |
Zhao Yakui | 44d98a6 | 2009-10-09 11:39:40 +0800 | [diff] [blame] | 883 | DRM_DEBUG_DRIVER("pipe a underrun\n"); |
Eric Anholt | cdfbc41 | 2008-11-04 15:50:30 -0800 | [diff] [blame] | 884 | I915_WRITE(PIPEASTAT, pipea_stats); |
Keith Packard | 05eff84 | 2008-11-19 14:03:05 -0800 | [diff] [blame] | 885 | irq_received = 1; |
Eric Anholt | cdfbc41 | 2008-11-04 15:50:30 -0800 | [diff] [blame] | 886 | } |
Keith Packard | 7c46358 | 2008-11-04 02:03:27 -0800 | [diff] [blame] | 887 | |
Keith Packard | 05eff84 | 2008-11-19 14:03:05 -0800 | [diff] [blame] | 888 | if (pipeb_stats & 0x8000ffff) { |
Shaohua Li | 7662c8b | 2009-06-26 11:23:55 +0800 | [diff] [blame] | 889 | if (pipeb_stats & PIPE_FIFO_UNDERRUN_STATUS) |
Zhao Yakui | 44d98a6 | 2009-10-09 11:39:40 +0800 | [diff] [blame] | 890 | DRM_DEBUG_DRIVER("pipe b underrun\n"); |
Eric Anholt | cdfbc41 | 2008-11-04 15:50:30 -0800 | [diff] [blame] | 891 | I915_WRITE(PIPEBSTAT, pipeb_stats); |
Keith Packard | 05eff84 | 2008-11-19 14:03:05 -0800 | [diff] [blame] | 892 | irq_received = 1; |
Eric Anholt | cdfbc41 | 2008-11-04 15:50:30 -0800 | [diff] [blame] | 893 | } |
Keith Packard | 05eff84 | 2008-11-19 14:03:05 -0800 | [diff] [blame] | 894 | spin_unlock_irqrestore(&dev_priv->user_irq_lock, irqflags); |
| 895 | |
| 896 | if (!irq_received) |
| 897 | break; |
| 898 | |
| 899 | ret = IRQ_HANDLED; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 900 | |
Jesse Barnes | 5ca5828 | 2009-03-31 14:11:15 -0700 | [diff] [blame] | 901 | /* Consume port. Then clear IIR or we'll miss events */ |
| 902 | if ((I915_HAS_HOTPLUG(dev)) && |
| 903 | (iir & I915_DISPLAY_PORT_INTERRUPT)) { |
| 904 | u32 hotplug_status = I915_READ(PORT_HOTPLUG_STAT); |
| 905 | |
Zhao Yakui | 44d98a6 | 2009-10-09 11:39:40 +0800 | [diff] [blame] | 906 | DRM_DEBUG_DRIVER("hotplug event received, stat 0x%08x\n", |
Jesse Barnes | 5ca5828 | 2009-03-31 14:11:15 -0700 | [diff] [blame] | 907 | hotplug_status); |
| 908 | if (hotplug_status & dev_priv->hotplug_supported_mask) |
Eric Anholt | 9c9fe1f | 2009-08-03 16:09:16 -0700 | [diff] [blame] | 909 | queue_work(dev_priv->wq, |
| 910 | &dev_priv->hotplug_work); |
Jesse Barnes | 5ca5828 | 2009-03-31 14:11:15 -0700 | [diff] [blame] | 911 | |
| 912 | I915_WRITE(PORT_HOTPLUG_STAT, hotplug_status); |
| 913 | I915_READ(PORT_HOTPLUG_STAT); |
| 914 | } |
| 915 | |
Eric Anholt | cdfbc41 | 2008-11-04 15:50:30 -0800 | [diff] [blame] | 916 | I915_WRITE(IIR, iir); |
| 917 | new_iir = I915_READ(IIR); /* Flush posted writes */ |
Matthew Garrett | 8ee1c3d | 2008-08-05 19:37:25 +0100 | [diff] [blame] | 918 | |
Dave Airlie | 7c1c287 | 2008-11-28 14:22:24 +1000 | [diff] [blame] | 919 | if (dev->primary->master) { |
| 920 | master_priv = dev->primary->master->driver_priv; |
| 921 | if (master_priv->sarea_priv) |
| 922 | master_priv->sarea_priv->last_dispatch = |
| 923 | READ_BREADCRUMB(dev_priv); |
| 924 | } |
Keith Packard | 7c46358 | 2008-11-04 02:03:27 -0800 | [diff] [blame] | 925 | |
Eric Anholt | cdfbc41 | 2008-11-04 15:50:30 -0800 | [diff] [blame] | 926 | if (iir & I915_USER_INTERRUPT) { |
Chris Wilson | 1c5d22f | 2009-08-25 11:15:50 +0100 | [diff] [blame] | 927 | u32 seqno = i915_get_gem_seqno(dev); |
| 928 | dev_priv->mm.irq_gem_seqno = seqno; |
| 929 | trace_i915_gem_request_complete(dev, seqno); |
Eric Anholt | cdfbc41 | 2008-11-04 15:50:30 -0800 | [diff] [blame] | 930 | DRM_WAKEUP(&dev_priv->irq_queue); |
Ben Gamari | f65d942 | 2009-09-14 17:48:44 -0400 | [diff] [blame] | 931 | dev_priv->hangcheck_count = 0; |
| 932 | mod_timer(&dev_priv->hangcheck_timer, jiffies + DRM_I915_HANGCHECK_PERIOD); |
Eric Anholt | cdfbc41 | 2008-11-04 15:50:30 -0800 | [diff] [blame] | 933 | } |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 934 | |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 935 | if (iir & I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT) |
| 936 | intel_prepare_page_flip(dev, 0); |
| 937 | |
| 938 | if (iir & I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT) |
| 939 | intel_prepare_page_flip(dev, 1); |
| 940 | |
Keith Packard | 05eff84 | 2008-11-19 14:03:05 -0800 | [diff] [blame] | 941 | if (pipea_stats & vblank_status) { |
Eric Anholt | cdfbc41 | 2008-11-04 15:50:30 -0800 | [diff] [blame] | 942 | vblank++; |
| 943 | drm_handle_vblank(dev, 0); |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 944 | intel_finish_page_flip(dev, 0); |
Eric Anholt | cdfbc41 | 2008-11-04 15:50:30 -0800 | [diff] [blame] | 945 | } |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 946 | |
Keith Packard | 05eff84 | 2008-11-19 14:03:05 -0800 | [diff] [blame] | 947 | if (pipeb_stats & vblank_status) { |
Eric Anholt | cdfbc41 | 2008-11-04 15:50:30 -0800 | [diff] [blame] | 948 | vblank++; |
| 949 | drm_handle_vblank(dev, 1); |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 950 | intel_finish_page_flip(dev, 1); |
Eric Anholt | cdfbc41 | 2008-11-04 15:50:30 -0800 | [diff] [blame] | 951 | } |
Keith Packard | 7c46358 | 2008-11-04 02:03:27 -0800 | [diff] [blame] | 952 | |
Zhao Yakui | edcb49c | 2010-04-07 17:11:21 +0800 | [diff] [blame] | 953 | if ((pipea_stats & I915_LEGACY_BLC_EVENT_STATUS) || |
| 954 | (pipeb_stats & I915_LEGACY_BLC_EVENT_STATUS) || |
Eric Anholt | cdfbc41 | 2008-11-04 15:50:30 -0800 | [diff] [blame] | 955 | (iir & I915_ASLE_INTERRUPT)) |
| 956 | opregion_asle_intr(dev); |
Keith Packard | 7c46358 | 2008-11-04 02:03:27 -0800 | [diff] [blame] | 957 | |
Eric Anholt | cdfbc41 | 2008-11-04 15:50:30 -0800 | [diff] [blame] | 958 | /* With MSI, interrupts are only generated when iir |
| 959 | * transitions from zero to nonzero. If another bit got |
| 960 | * set while we were handling the existing iir bits, then |
| 961 | * we would never get another interrupt. |
| 962 | * |
| 963 | * This is fine on non-MSI as well, as if we hit this path |
| 964 | * we avoid exiting the interrupt handler only to generate |
| 965 | * another one. |
| 966 | * |
| 967 | * Note that for MSI this could cause a stray interrupt report |
| 968 | * if an interrupt landed in the time between writing IIR and |
| 969 | * the posting read. This should be rare enough to never |
| 970 | * trigger the 99% of 100,000 interrupts test for disabling |
| 971 | * stray interrupts. |
| 972 | */ |
| 973 | iir = new_iir; |
Keith Packard | 05eff84 | 2008-11-19 14:03:05 -0800 | [diff] [blame] | 974 | } |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 975 | |
Keith Packard | 05eff84 | 2008-11-19 14:03:05 -0800 | [diff] [blame] | 976 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 977 | } |
| 978 | |
Dave Airlie | af6061a | 2008-05-07 12:15:39 +1000 | [diff] [blame] | 979 | static int i915_emit_irq(struct drm_device * dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 980 | { |
| 981 | drm_i915_private_t *dev_priv = dev->dev_private; |
Dave Airlie | 7c1c287 | 2008-11-28 14:22:24 +1000 | [diff] [blame] | 982 | struct drm_i915_master_private *master_priv = dev->primary->master->driver_priv; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 983 | RING_LOCALS; |
| 984 | |
| 985 | i915_kernel_lost_context(dev); |
| 986 | |
Zhao Yakui | 44d98a6 | 2009-10-09 11:39:40 +0800 | [diff] [blame] | 987 | DRM_DEBUG_DRIVER("\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 988 | |
Kristian Høgsberg | c99b058 | 2008-08-20 11:20:13 -0400 | [diff] [blame] | 989 | dev_priv->counter++; |
Alan Hourihane | c29b669 | 2006-08-12 16:29:24 +1000 | [diff] [blame] | 990 | if (dev_priv->counter > 0x7FFFFFFFUL) |
Kristian Høgsberg | c99b058 | 2008-08-20 11:20:13 -0400 | [diff] [blame] | 991 | dev_priv->counter = 1; |
Dave Airlie | 7c1c287 | 2008-11-28 14:22:24 +1000 | [diff] [blame] | 992 | if (master_priv->sarea_priv) |
| 993 | master_priv->sarea_priv->last_enqueue = dev_priv->counter; |
Alan Hourihane | c29b669 | 2006-08-12 16:29:24 +1000 | [diff] [blame] | 994 | |
Keith Packard | 0baf823 | 2008-11-08 11:44:14 +1000 | [diff] [blame] | 995 | BEGIN_LP_RING(4); |
Jesse Barnes | 585fb11 | 2008-07-29 11:54:06 -0700 | [diff] [blame] | 996 | OUT_RING(MI_STORE_DWORD_INDEX); |
Keith Packard | 0baf823 | 2008-11-08 11:44:14 +1000 | [diff] [blame] | 997 | OUT_RING(I915_BREADCRUMB_INDEX << MI_STORE_DWORD_INDEX_SHIFT); |
Alan Hourihane | c29b669 | 2006-08-12 16:29:24 +1000 | [diff] [blame] | 998 | OUT_RING(dev_priv->counter); |
Jesse Barnes | 585fb11 | 2008-07-29 11:54:06 -0700 | [diff] [blame] | 999 | OUT_RING(MI_USER_INTERRUPT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1000 | ADVANCE_LP_RING(); |
Dave Airlie | bc5f452 | 2007-11-05 12:50:58 +1000 | [diff] [blame] | 1001 | |
Alan Hourihane | c29b669 | 2006-08-12 16:29:24 +1000 | [diff] [blame] | 1002 | return dev_priv->counter; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1003 | } |
| 1004 | |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 1005 | void i915_user_irq_get(struct drm_device *dev) |
Eric Anholt | ed4cb41 | 2008-07-29 12:10:39 -0700 | [diff] [blame] | 1006 | { |
| 1007 | drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private; |
Keith Packard | e9d21d7 | 2008-10-16 11:31:38 -0700 | [diff] [blame] | 1008 | unsigned long irqflags; |
Eric Anholt | ed4cb41 | 2008-07-29 12:10:39 -0700 | [diff] [blame] | 1009 | |
Keith Packard | e9d21d7 | 2008-10-16 11:31:38 -0700 | [diff] [blame] | 1010 | spin_lock_irqsave(&dev_priv->user_irq_lock, irqflags); |
Zhenyu Wang | 036a4a7 | 2009-06-08 14:40:19 +0800 | [diff] [blame] | 1011 | if (dev->irq_enabled && (++dev_priv->user_irq_refcount == 1)) { |
Eric Anholt | bad720f | 2009-10-22 16:11:14 -0700 | [diff] [blame] | 1012 | if (HAS_PCH_SPLIT(dev)) |
Adam Jackson | f2b115e | 2009-12-03 17:14:42 -0500 | [diff] [blame] | 1013 | ironlake_enable_graphics_irq(dev_priv, GT_USER_INTERRUPT); |
Zhenyu Wang | 036a4a7 | 2009-06-08 14:40:19 +0800 | [diff] [blame] | 1014 | else |
| 1015 | i915_enable_irq(dev_priv, I915_USER_INTERRUPT); |
| 1016 | } |
Keith Packard | e9d21d7 | 2008-10-16 11:31:38 -0700 | [diff] [blame] | 1017 | spin_unlock_irqrestore(&dev_priv->user_irq_lock, irqflags); |
Eric Anholt | ed4cb41 | 2008-07-29 12:10:39 -0700 | [diff] [blame] | 1018 | } |
| 1019 | |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 1020 | void i915_user_irq_put(struct drm_device *dev) |
Eric Anholt | ed4cb41 | 2008-07-29 12:10:39 -0700 | [diff] [blame] | 1021 | { |
| 1022 | drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private; |
Keith Packard | e9d21d7 | 2008-10-16 11:31:38 -0700 | [diff] [blame] | 1023 | unsigned long irqflags; |
Eric Anholt | ed4cb41 | 2008-07-29 12:10:39 -0700 | [diff] [blame] | 1024 | |
Keith Packard | e9d21d7 | 2008-10-16 11:31:38 -0700 | [diff] [blame] | 1025 | spin_lock_irqsave(&dev_priv->user_irq_lock, irqflags); |
Eric Anholt | ed4cb41 | 2008-07-29 12:10:39 -0700 | [diff] [blame] | 1026 | BUG_ON(dev->irq_enabled && dev_priv->user_irq_refcount <= 0); |
Zhenyu Wang | 036a4a7 | 2009-06-08 14:40:19 +0800 | [diff] [blame] | 1027 | if (dev->irq_enabled && (--dev_priv->user_irq_refcount == 0)) { |
Eric Anholt | bad720f | 2009-10-22 16:11:14 -0700 | [diff] [blame] | 1028 | if (HAS_PCH_SPLIT(dev)) |
Adam Jackson | f2b115e | 2009-12-03 17:14:42 -0500 | [diff] [blame] | 1029 | ironlake_disable_graphics_irq(dev_priv, GT_USER_INTERRUPT); |
Zhenyu Wang | 036a4a7 | 2009-06-08 14:40:19 +0800 | [diff] [blame] | 1030 | else |
| 1031 | i915_disable_irq(dev_priv, I915_USER_INTERRUPT); |
| 1032 | } |
Keith Packard | e9d21d7 | 2008-10-16 11:31:38 -0700 | [diff] [blame] | 1033 | spin_unlock_irqrestore(&dev_priv->user_irq_lock, irqflags); |
Eric Anholt | ed4cb41 | 2008-07-29 12:10:39 -0700 | [diff] [blame] | 1034 | } |
| 1035 | |
Chris Wilson | 9d34e5d | 2009-09-24 05:26:06 +0100 | [diff] [blame] | 1036 | void i915_trace_irq_get(struct drm_device *dev, u32 seqno) |
| 1037 | { |
| 1038 | drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private; |
| 1039 | |
| 1040 | if (dev_priv->trace_irq_seqno == 0) |
| 1041 | i915_user_irq_get(dev); |
| 1042 | |
| 1043 | dev_priv->trace_irq_seqno = seqno; |
| 1044 | } |
| 1045 | |
Dave Airlie | 84b1fd1 | 2007-07-11 15:53:27 +1000 | [diff] [blame] | 1046 | static int i915_wait_irq(struct drm_device * dev, int irq_nr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1047 | { |
| 1048 | drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private; |
Dave Airlie | 7c1c287 | 2008-11-28 14:22:24 +1000 | [diff] [blame] | 1049 | struct drm_i915_master_private *master_priv = dev->primary->master->driver_priv; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1050 | int ret = 0; |
| 1051 | |
Zhao Yakui | 44d98a6 | 2009-10-09 11:39:40 +0800 | [diff] [blame] | 1052 | DRM_DEBUG_DRIVER("irq_nr=%d breadcrumb=%d\n", irq_nr, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1053 | READ_BREADCRUMB(dev_priv)); |
| 1054 | |
Eric Anholt | ed4cb41 | 2008-07-29 12:10:39 -0700 | [diff] [blame] | 1055 | if (READ_BREADCRUMB(dev_priv) >= irq_nr) { |
Dave Airlie | 7c1c287 | 2008-11-28 14:22:24 +1000 | [diff] [blame] | 1056 | if (master_priv->sarea_priv) |
| 1057 | master_priv->sarea_priv->last_dispatch = READ_BREADCRUMB(dev_priv); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1058 | return 0; |
Eric Anholt | ed4cb41 | 2008-07-29 12:10:39 -0700 | [diff] [blame] | 1059 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1060 | |
Dave Airlie | 7c1c287 | 2008-11-28 14:22:24 +1000 | [diff] [blame] | 1061 | if (master_priv->sarea_priv) |
| 1062 | master_priv->sarea_priv->perf_boxes |= I915_BOX_WAIT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1063 | |
Eric Anholt | ed4cb41 | 2008-07-29 12:10:39 -0700 | [diff] [blame] | 1064 | i915_user_irq_get(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1065 | DRM_WAIT_ON(ret, dev_priv->irq_queue, 3 * DRM_HZ, |
| 1066 | READ_BREADCRUMB(dev_priv) >= irq_nr); |
Eric Anholt | ed4cb41 | 2008-07-29 12:10:39 -0700 | [diff] [blame] | 1067 | i915_user_irq_put(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1068 | |
Eric Anholt | 20caafa | 2007-08-25 19:22:43 +1000 | [diff] [blame] | 1069 | if (ret == -EBUSY) { |
Márton Németh | 3e684ea | 2008-01-24 15:58:57 +1000 | [diff] [blame] | 1070 | DRM_ERROR("EBUSY -- rec: %d emitted: %d\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1071 | READ_BREADCRUMB(dev_priv), (int)dev_priv->counter); |
| 1072 | } |
| 1073 | |
Dave Airlie | af6061a | 2008-05-07 12:15:39 +1000 | [diff] [blame] | 1074 | return ret; |
| 1075 | } |
| 1076 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1077 | /* Needs the lock as it touches the ring. |
| 1078 | */ |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 1079 | int i915_irq_emit(struct drm_device *dev, void *data, |
| 1080 | struct drm_file *file_priv) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1081 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1082 | drm_i915_private_t *dev_priv = dev->dev_private; |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 1083 | drm_i915_irq_emit_t *emit = data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1084 | int result; |
| 1085 | |
Eric Anholt | 07f4f8b | 2009-04-16 13:46:12 -0700 | [diff] [blame] | 1086 | if (!dev_priv || !dev_priv->ring.virtual_start) { |
Márton Németh | 3e684ea | 2008-01-24 15:58:57 +1000 | [diff] [blame] | 1087 | DRM_ERROR("called with no initialization\n"); |
Eric Anholt | 20caafa | 2007-08-25 19:22:43 +1000 | [diff] [blame] | 1088 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1089 | } |
Eric Anholt | 299eb93 | 2009-02-24 22:14:12 -0800 | [diff] [blame] | 1090 | |
| 1091 | RING_LOCK_TEST_WITH_RETURN(dev, file_priv); |
| 1092 | |
Eric Anholt | 546b097 | 2008-09-01 16:45:29 -0700 | [diff] [blame] | 1093 | mutex_lock(&dev->struct_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1094 | result = i915_emit_irq(dev); |
Eric Anholt | 546b097 | 2008-09-01 16:45:29 -0700 | [diff] [blame] | 1095 | mutex_unlock(&dev->struct_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1096 | |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 1097 | if (DRM_COPY_TO_USER(emit->irq_seq, &result, sizeof(int))) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1098 | DRM_ERROR("copy_to_user\n"); |
Eric Anholt | 20caafa | 2007-08-25 19:22:43 +1000 | [diff] [blame] | 1099 | return -EFAULT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1100 | } |
| 1101 | |
| 1102 | return 0; |
| 1103 | } |
| 1104 | |
| 1105 | /* Doesn't need the hardware lock. |
| 1106 | */ |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 1107 | int i915_irq_wait(struct drm_device *dev, void *data, |
| 1108 | struct drm_file *file_priv) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1109 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1110 | drm_i915_private_t *dev_priv = dev->dev_private; |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 1111 | drm_i915_irq_wait_t *irqwait = data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1112 | |
| 1113 | if (!dev_priv) { |
Márton Németh | 3e684ea | 2008-01-24 15:58:57 +1000 | [diff] [blame] | 1114 | DRM_ERROR("called with no initialization\n"); |
Eric Anholt | 20caafa | 2007-08-25 19:22:43 +1000 | [diff] [blame] | 1115 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1116 | } |
| 1117 | |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 1118 | return i915_wait_irq(dev, irqwait->irq_seq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1119 | } |
| 1120 | |
Keith Packard | 42f52ef | 2008-10-18 19:39:29 -0700 | [diff] [blame] | 1121 | /* Called from drm generic code, passed 'crtc' which |
| 1122 | * we use as a pipe index |
| 1123 | */ |
| 1124 | int i915_enable_vblank(struct drm_device *dev, int pipe) |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 1125 | { |
| 1126 | drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private; |
Keith Packard | e9d21d7 | 2008-10-16 11:31:38 -0700 | [diff] [blame] | 1127 | unsigned long irqflags; |
Jesse Barnes | 71e0ffa | 2009-01-08 10:42:15 -0800 | [diff] [blame] | 1128 | int pipeconf_reg = (pipe == 0) ? PIPEACONF : PIPEBCONF; |
| 1129 | u32 pipeconf; |
| 1130 | |
| 1131 | pipeconf = I915_READ(pipeconf_reg); |
| 1132 | if (!(pipeconf & PIPEACONF_ENABLE)) |
| 1133 | return -EINVAL; |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 1134 | |
Keith Packard | e9d21d7 | 2008-10-16 11:31:38 -0700 | [diff] [blame] | 1135 | spin_lock_irqsave(&dev_priv->user_irq_lock, irqflags); |
Eric Anholt | bad720f | 2009-10-22 16:11:14 -0700 | [diff] [blame] | 1136 | if (HAS_PCH_SPLIT(dev)) |
Li Peng | c062df6 | 2010-01-23 00:12:58 +0800 | [diff] [blame] | 1137 | ironlake_enable_display_irq(dev_priv, (pipe == 0) ? |
| 1138 | DE_PIPEA_VBLANK: DE_PIPEB_VBLANK); |
| 1139 | else if (IS_I965G(dev)) |
Keith Packard | 7c46358 | 2008-11-04 02:03:27 -0800 | [diff] [blame] | 1140 | i915_enable_pipestat(dev_priv, pipe, |
| 1141 | PIPE_START_VBLANK_INTERRUPT_ENABLE); |
Keith Packard | e9d21d7 | 2008-10-16 11:31:38 -0700 | [diff] [blame] | 1142 | else |
Keith Packard | 7c46358 | 2008-11-04 02:03:27 -0800 | [diff] [blame] | 1143 | i915_enable_pipestat(dev_priv, pipe, |
| 1144 | PIPE_VBLANK_INTERRUPT_ENABLE); |
Keith Packard | e9d21d7 | 2008-10-16 11:31:38 -0700 | [diff] [blame] | 1145 | spin_unlock_irqrestore(&dev_priv->user_irq_lock, irqflags); |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 1146 | return 0; |
| 1147 | } |
| 1148 | |
Keith Packard | 42f52ef | 2008-10-18 19:39:29 -0700 | [diff] [blame] | 1149 | /* Called from drm generic code, passed 'crtc' which |
| 1150 | * we use as a pipe index |
| 1151 | */ |
| 1152 | void i915_disable_vblank(struct drm_device *dev, int pipe) |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 1153 | { |
| 1154 | drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private; |
Keith Packard | e9d21d7 | 2008-10-16 11:31:38 -0700 | [diff] [blame] | 1155 | unsigned long irqflags; |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 1156 | |
Keith Packard | e9d21d7 | 2008-10-16 11:31:38 -0700 | [diff] [blame] | 1157 | spin_lock_irqsave(&dev_priv->user_irq_lock, irqflags); |
Eric Anholt | bad720f | 2009-10-22 16:11:14 -0700 | [diff] [blame] | 1158 | if (HAS_PCH_SPLIT(dev)) |
Li Peng | c062df6 | 2010-01-23 00:12:58 +0800 | [diff] [blame] | 1159 | ironlake_disable_display_irq(dev_priv, (pipe == 0) ? |
| 1160 | DE_PIPEA_VBLANK: DE_PIPEB_VBLANK); |
| 1161 | else |
| 1162 | i915_disable_pipestat(dev_priv, pipe, |
| 1163 | PIPE_VBLANK_INTERRUPT_ENABLE | |
| 1164 | PIPE_START_VBLANK_INTERRUPT_ENABLE); |
Keith Packard | e9d21d7 | 2008-10-16 11:31:38 -0700 | [diff] [blame] | 1165 | spin_unlock_irqrestore(&dev_priv->user_irq_lock, irqflags); |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 1166 | } |
| 1167 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1168 | void i915_enable_interrupt (struct drm_device *dev) |
| 1169 | { |
| 1170 | struct drm_i915_private *dev_priv = dev->dev_private; |
Zhenyu Wang | e170b03 | 2009-06-05 15:38:40 +0800 | [diff] [blame] | 1171 | |
Eric Anholt | bad720f | 2009-10-22 16:11:14 -0700 | [diff] [blame] | 1172 | if (!HAS_PCH_SPLIT(dev)) |
Zhenyu Wang | e170b03 | 2009-06-05 15:38:40 +0800 | [diff] [blame] | 1173 | opregion_enable_asle(dev); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1174 | dev_priv->irq_enabled = 1; |
| 1175 | } |
| 1176 | |
| 1177 | |
Dave Airlie | 702880f | 2006-06-24 17:07:34 +1000 | [diff] [blame] | 1178 | /* Set the vblank monitor pipe |
| 1179 | */ |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 1180 | int i915_vblank_pipe_set(struct drm_device *dev, void *data, |
| 1181 | struct drm_file *file_priv) |
Dave Airlie | 702880f | 2006-06-24 17:07:34 +1000 | [diff] [blame] | 1182 | { |
Dave Airlie | 702880f | 2006-06-24 17:07:34 +1000 | [diff] [blame] | 1183 | drm_i915_private_t *dev_priv = dev->dev_private; |
Dave Airlie | 702880f | 2006-06-24 17:07:34 +1000 | [diff] [blame] | 1184 | |
| 1185 | if (!dev_priv) { |
Márton Németh | 3e684ea | 2008-01-24 15:58:57 +1000 | [diff] [blame] | 1186 | DRM_ERROR("called with no initialization\n"); |
Eric Anholt | 20caafa | 2007-08-25 19:22:43 +1000 | [diff] [blame] | 1187 | return -EINVAL; |
Dave Airlie | 702880f | 2006-06-24 17:07:34 +1000 | [diff] [blame] | 1188 | } |
| 1189 | |
=?utf-8?q?Michel_D=C3=A4nzer?= | 5b51694 | 2006-10-25 00:08:23 +1000 | [diff] [blame] | 1190 | return 0; |
Dave Airlie | 702880f | 2006-06-24 17:07:34 +1000 | [diff] [blame] | 1191 | } |
| 1192 | |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 1193 | int i915_vblank_pipe_get(struct drm_device *dev, void *data, |
| 1194 | struct drm_file *file_priv) |
Dave Airlie | 702880f | 2006-06-24 17:07:34 +1000 | [diff] [blame] | 1195 | { |
Dave Airlie | 702880f | 2006-06-24 17:07:34 +1000 | [diff] [blame] | 1196 | drm_i915_private_t *dev_priv = dev->dev_private; |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 1197 | drm_i915_vblank_pipe_t *pipe = data; |
Dave Airlie | 702880f | 2006-06-24 17:07:34 +1000 | [diff] [blame] | 1198 | |
| 1199 | if (!dev_priv) { |
Márton Németh | 3e684ea | 2008-01-24 15:58:57 +1000 | [diff] [blame] | 1200 | DRM_ERROR("called with no initialization\n"); |
Eric Anholt | 20caafa | 2007-08-25 19:22:43 +1000 | [diff] [blame] | 1201 | return -EINVAL; |
Dave Airlie | 702880f | 2006-06-24 17:07:34 +1000 | [diff] [blame] | 1202 | } |
| 1203 | |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 1204 | pipe->pipe = DRM_I915_VBLANK_PIPE_A | DRM_I915_VBLANK_PIPE_B; |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 1205 | |
Dave Airlie | 702880f | 2006-06-24 17:07:34 +1000 | [diff] [blame] | 1206 | return 0; |
| 1207 | } |
| 1208 | |
=?utf-8?q?Michel_D=C3=A4nzer?= | a6b54f3 | 2006-10-24 23:37:43 +1000 | [diff] [blame] | 1209 | /** |
| 1210 | * Schedule buffer swap at given vertical blank. |
| 1211 | */ |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 1212 | int i915_vblank_swap(struct drm_device *dev, void *data, |
| 1213 | struct drm_file *file_priv) |
=?utf-8?q?Michel_D=C3=A4nzer?= | a6b54f3 | 2006-10-24 23:37:43 +1000 | [diff] [blame] | 1214 | { |
Eric Anholt | bd95e0a | 2008-11-04 12:01:24 -0800 | [diff] [blame] | 1215 | /* The delayed swap mechanism was fundamentally racy, and has been |
| 1216 | * removed. The model was that the client requested a delayed flip/swap |
| 1217 | * from the kernel, then waited for vblank before continuing to perform |
| 1218 | * rendering. The problem was that the kernel might wake the client |
| 1219 | * up before it dispatched the vblank swap (since the lock has to be |
| 1220 | * held while touching the ringbuffer), in which case the client would |
| 1221 | * clear and start the next frame before the swap occurred, and |
| 1222 | * flicker would occur in addition to likely missing the vblank. |
| 1223 | * |
| 1224 | * In the absence of this ioctl, userland falls back to a correct path |
| 1225 | * of waiting for a vblank, then dispatching the swap on its own. |
| 1226 | * Context switching to userland and back is plenty fast enough for |
| 1227 | * meeting the requirements of vblank swapping. |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 1228 | */ |
Eric Anholt | bd95e0a | 2008-11-04 12:01:24 -0800 | [diff] [blame] | 1229 | return -EINVAL; |
=?utf-8?q?Michel_D=C3=A4nzer?= | a6b54f3 | 2006-10-24 23:37:43 +1000 | [diff] [blame] | 1230 | } |
| 1231 | |
Ben Gamari | f65d942 | 2009-09-14 17:48:44 -0400 | [diff] [blame] | 1232 | struct drm_i915_gem_request *i915_get_tail_request(struct drm_device *dev) { |
| 1233 | drm_i915_private_t *dev_priv = dev->dev_private; |
| 1234 | return list_entry(dev_priv->mm.request_list.prev, struct drm_i915_gem_request, list); |
| 1235 | } |
| 1236 | |
| 1237 | /** |
| 1238 | * This is called when the chip hasn't reported back with completed |
| 1239 | * batchbuffers in a long time. The first time this is called we simply record |
| 1240 | * ACTHD. If ACTHD hasn't changed by the time the hangcheck timer elapses |
| 1241 | * again, we assume the chip is wedged and try to fix it. |
| 1242 | */ |
| 1243 | void i915_hangcheck_elapsed(unsigned long data) |
| 1244 | { |
| 1245 | struct drm_device *dev = (struct drm_device *)data; |
| 1246 | drm_i915_private_t *dev_priv = dev->dev_private; |
| 1247 | uint32_t acthd; |
Eric Anholt | b9201c1 | 2010-01-08 14:25:16 -0800 | [diff] [blame] | 1248 | |
| 1249 | /* No reset support on this chip yet. */ |
| 1250 | if (IS_GEN6(dev)) |
| 1251 | return; |
| 1252 | |
Ben Gamari | f65d942 | 2009-09-14 17:48:44 -0400 | [diff] [blame] | 1253 | if (!IS_I965G(dev)) |
| 1254 | acthd = I915_READ(ACTHD); |
| 1255 | else |
| 1256 | acthd = I915_READ(ACTHD_I965); |
| 1257 | |
| 1258 | /* If all work is done then ACTHD clearly hasn't advanced. */ |
| 1259 | if (list_empty(&dev_priv->mm.request_list) || |
| 1260 | i915_seqno_passed(i915_get_gem_seqno(dev), i915_get_tail_request(dev)->seqno)) { |
| 1261 | dev_priv->hangcheck_count = 0; |
| 1262 | return; |
| 1263 | } |
| 1264 | |
| 1265 | if (dev_priv->last_acthd == acthd && dev_priv->hangcheck_count > 0) { |
| 1266 | DRM_ERROR("Hangcheck timer elapsed... GPU hung\n"); |
Ben Gamari | ba1234d | 2009-09-14 17:48:47 -0400 | [diff] [blame] | 1267 | i915_handle_error(dev, true); |
Ben Gamari | f65d942 | 2009-09-14 17:48:44 -0400 | [diff] [blame] | 1268 | return; |
| 1269 | } |
| 1270 | |
| 1271 | /* Reset timer case chip hangs without another request being added */ |
| 1272 | mod_timer(&dev_priv->hangcheck_timer, jiffies + DRM_I915_HANGCHECK_PERIOD); |
| 1273 | |
| 1274 | if (acthd != dev_priv->last_acthd) |
| 1275 | dev_priv->hangcheck_count = 0; |
| 1276 | else |
| 1277 | dev_priv->hangcheck_count++; |
| 1278 | |
| 1279 | dev_priv->last_acthd = acthd; |
| 1280 | } |
| 1281 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1282 | /* drm_dma.h hooks |
| 1283 | */ |
Adam Jackson | f2b115e | 2009-12-03 17:14:42 -0500 | [diff] [blame] | 1284 | static void ironlake_irq_preinstall(struct drm_device *dev) |
Zhenyu Wang | 036a4a7 | 2009-06-08 14:40:19 +0800 | [diff] [blame] | 1285 | { |
| 1286 | drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private; |
| 1287 | |
| 1288 | I915_WRITE(HWSTAM, 0xeffe); |
| 1289 | |
| 1290 | /* XXX hotplug from PCH */ |
| 1291 | |
| 1292 | I915_WRITE(DEIMR, 0xffffffff); |
| 1293 | I915_WRITE(DEIER, 0x0); |
| 1294 | (void) I915_READ(DEIER); |
| 1295 | |
| 1296 | /* and GT */ |
| 1297 | I915_WRITE(GTIMR, 0xffffffff); |
| 1298 | I915_WRITE(GTIER, 0x0); |
| 1299 | (void) I915_READ(GTIER); |
Zhenyu Wang | c650156 | 2009-11-03 18:57:21 +0000 | [diff] [blame] | 1300 | |
| 1301 | /* south display irq */ |
| 1302 | I915_WRITE(SDEIMR, 0xffffffff); |
| 1303 | I915_WRITE(SDEIER, 0x0); |
| 1304 | (void) I915_READ(SDEIER); |
Zhenyu Wang | 036a4a7 | 2009-06-08 14:40:19 +0800 | [diff] [blame] | 1305 | } |
| 1306 | |
Adam Jackson | f2b115e | 2009-12-03 17:14:42 -0500 | [diff] [blame] | 1307 | static int ironlake_irq_postinstall(struct drm_device *dev) |
Zhenyu Wang | 036a4a7 | 2009-06-08 14:40:19 +0800 | [diff] [blame] | 1308 | { |
| 1309 | drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private; |
| 1310 | /* enable kind of interrupts always enabled */ |
Jesse Barnes | 013d5aa | 2010-01-29 11:18:31 -0800 | [diff] [blame] | 1311 | u32 display_mask = DE_MASTER_IRQ_CONTROL | DE_GSE | DE_PCH_EVENT | |
| 1312 | DE_PLANEA_FLIP_DONE | DE_PLANEB_FLIP_DONE; |
Zhenyu Wang | 036a4a7 | 2009-06-08 14:40:19 +0800 | [diff] [blame] | 1313 | u32 render_mask = GT_USER_INTERRUPT; |
Zhenyu Wang | c650156 | 2009-11-03 18:57:21 +0000 | [diff] [blame] | 1314 | u32 hotplug_mask = SDE_CRT_HOTPLUG | SDE_PORTB_HOTPLUG | |
| 1315 | SDE_PORTC_HOTPLUG | SDE_PORTD_HOTPLUG; |
Zhenyu Wang | 036a4a7 | 2009-06-08 14:40:19 +0800 | [diff] [blame] | 1316 | |
| 1317 | dev_priv->irq_mask_reg = ~display_mask; |
Li Peng | 643ced9 | 2010-01-28 01:05:09 +0800 | [diff] [blame] | 1318 | dev_priv->de_irq_enable_reg = display_mask | DE_PIPEA_VBLANK | DE_PIPEB_VBLANK; |
Zhenyu Wang | 036a4a7 | 2009-06-08 14:40:19 +0800 | [diff] [blame] | 1319 | |
| 1320 | /* should always can generate irq */ |
| 1321 | I915_WRITE(DEIIR, I915_READ(DEIIR)); |
| 1322 | I915_WRITE(DEIMR, dev_priv->irq_mask_reg); |
| 1323 | I915_WRITE(DEIER, dev_priv->de_irq_enable_reg); |
| 1324 | (void) I915_READ(DEIER); |
| 1325 | |
| 1326 | /* user interrupt should be enabled, but masked initial */ |
| 1327 | dev_priv->gt_irq_mask_reg = 0xffffffff; |
| 1328 | dev_priv->gt_irq_enable_reg = render_mask; |
| 1329 | |
| 1330 | I915_WRITE(GTIIR, I915_READ(GTIIR)); |
| 1331 | I915_WRITE(GTIMR, dev_priv->gt_irq_mask_reg); |
| 1332 | I915_WRITE(GTIER, dev_priv->gt_irq_enable_reg); |
| 1333 | (void) I915_READ(GTIER); |
| 1334 | |
Zhenyu Wang | c650156 | 2009-11-03 18:57:21 +0000 | [diff] [blame] | 1335 | dev_priv->pch_irq_mask_reg = ~hotplug_mask; |
| 1336 | dev_priv->pch_irq_enable_reg = hotplug_mask; |
| 1337 | |
| 1338 | I915_WRITE(SDEIIR, I915_READ(SDEIIR)); |
| 1339 | I915_WRITE(SDEIMR, dev_priv->pch_irq_mask_reg); |
| 1340 | I915_WRITE(SDEIER, dev_priv->pch_irq_enable_reg); |
| 1341 | (void) I915_READ(SDEIER); |
| 1342 | |
Jesse Barnes | f97108d | 2010-01-29 11:27:07 -0800 | [diff] [blame] | 1343 | if (IS_IRONLAKE_M(dev)) { |
| 1344 | /* Clear & enable PCU event interrupts */ |
| 1345 | I915_WRITE(DEIIR, DE_PCU_EVENT); |
| 1346 | I915_WRITE(DEIER, I915_READ(DEIER) | DE_PCU_EVENT); |
| 1347 | ironlake_enable_display_irq(dev_priv, DE_PCU_EVENT); |
| 1348 | } |
| 1349 | |
Zhenyu Wang | 036a4a7 | 2009-06-08 14:40:19 +0800 | [diff] [blame] | 1350 | return 0; |
| 1351 | } |
| 1352 | |
Dave Airlie | 84b1fd1 | 2007-07-11 15:53:27 +1000 | [diff] [blame] | 1353 | void i915_driver_irq_preinstall(struct drm_device * dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1354 | { |
| 1355 | drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private; |
| 1356 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1357 | atomic_set(&dev_priv->irq_received, 0); |
| 1358 | |
Zhenyu Wang | 036a4a7 | 2009-06-08 14:40:19 +0800 | [diff] [blame] | 1359 | INIT_WORK(&dev_priv->hotplug_work, i915_hotplug_work_func); |
Jesse Barnes | 8a90523 | 2009-07-11 16:48:03 -0400 | [diff] [blame] | 1360 | INIT_WORK(&dev_priv->error_work, i915_error_work_func); |
Zhenyu Wang | 036a4a7 | 2009-06-08 14:40:19 +0800 | [diff] [blame] | 1361 | |
Eric Anholt | bad720f | 2009-10-22 16:11:14 -0700 | [diff] [blame] | 1362 | if (HAS_PCH_SPLIT(dev)) { |
Adam Jackson | f2b115e | 2009-12-03 17:14:42 -0500 | [diff] [blame] | 1363 | ironlake_irq_preinstall(dev); |
Zhenyu Wang | 036a4a7 | 2009-06-08 14:40:19 +0800 | [diff] [blame] | 1364 | return; |
| 1365 | } |
| 1366 | |
Jesse Barnes | 5ca5828 | 2009-03-31 14:11:15 -0700 | [diff] [blame] | 1367 | if (I915_HAS_HOTPLUG(dev)) { |
| 1368 | I915_WRITE(PORT_HOTPLUG_EN, 0); |
| 1369 | I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT)); |
| 1370 | } |
| 1371 | |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 1372 | I915_WRITE(HWSTAM, 0xeffe); |
Keith Packard | 7c46358 | 2008-11-04 02:03:27 -0800 | [diff] [blame] | 1373 | I915_WRITE(PIPEASTAT, 0); |
| 1374 | I915_WRITE(PIPEBSTAT, 0); |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 1375 | I915_WRITE(IMR, 0xffffffff); |
Eric Anholt | ed4cb41 | 2008-07-29 12:10:39 -0700 | [diff] [blame] | 1376 | I915_WRITE(IER, 0x0); |
Keith Packard | 7c46358 | 2008-11-04 02:03:27 -0800 | [diff] [blame] | 1377 | (void) I915_READ(IER); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1378 | } |
| 1379 | |
Jesse Barnes | b01f2c3 | 2009-12-11 11:07:17 -0800 | [diff] [blame] | 1380 | /* |
| 1381 | * Must be called after intel_modeset_init or hotplug interrupts won't be |
| 1382 | * enabled correctly. |
| 1383 | */ |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 1384 | int i915_driver_irq_postinstall(struct drm_device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1385 | { |
| 1386 | drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private; |
Jesse Barnes | 5ca5828 | 2009-03-31 14:11:15 -0700 | [diff] [blame] | 1387 | u32 enable_mask = I915_INTERRUPT_ENABLE_FIX | I915_INTERRUPT_ENABLE_VAR; |
Jesse Barnes | 63eeaf3 | 2009-06-18 16:56:52 -0700 | [diff] [blame] | 1388 | u32 error_mask; |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 1389 | |
Zhenyu Wang | 036a4a7 | 2009-06-08 14:40:19 +0800 | [diff] [blame] | 1390 | DRM_INIT_WAITQUEUE(&dev_priv->irq_queue); |
| 1391 | |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 1392 | dev_priv->vblank_pipe = DRM_I915_VBLANK_PIPE_A | DRM_I915_VBLANK_PIPE_B; |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 1393 | |
Eric Anholt | bad720f | 2009-10-22 16:11:14 -0700 | [diff] [blame] | 1394 | if (HAS_PCH_SPLIT(dev)) |
Adam Jackson | f2b115e | 2009-12-03 17:14:42 -0500 | [diff] [blame] | 1395 | return ironlake_irq_postinstall(dev); |
Zhenyu Wang | 036a4a7 | 2009-06-08 14:40:19 +0800 | [diff] [blame] | 1396 | |
Keith Packard | 7c46358 | 2008-11-04 02:03:27 -0800 | [diff] [blame] | 1397 | /* Unmask the interrupts that we always want on. */ |
| 1398 | dev_priv->irq_mask_reg = ~I915_INTERRUPT_ENABLE_FIX; |
Matthew Garrett | 8ee1c3d | 2008-08-05 19:37:25 +0100 | [diff] [blame] | 1399 | |
Keith Packard | 7c46358 | 2008-11-04 02:03:27 -0800 | [diff] [blame] | 1400 | dev_priv->pipestat[0] = 0; |
| 1401 | dev_priv->pipestat[1] = 0; |
| 1402 | |
Jesse Barnes | 5ca5828 | 2009-03-31 14:11:15 -0700 | [diff] [blame] | 1403 | if (I915_HAS_HOTPLUG(dev)) { |
| 1404 | u32 hotplug_en = I915_READ(PORT_HOTPLUG_EN); |
| 1405 | |
Jesse Barnes | b01f2c3 | 2009-12-11 11:07:17 -0800 | [diff] [blame] | 1406 | /* Note HDMI and DP share bits */ |
| 1407 | if (dev_priv->hotplug_supported_mask & HDMIB_HOTPLUG_INT_STATUS) |
| 1408 | hotplug_en |= HDMIB_HOTPLUG_INT_EN; |
| 1409 | if (dev_priv->hotplug_supported_mask & HDMIC_HOTPLUG_INT_STATUS) |
| 1410 | hotplug_en |= HDMIC_HOTPLUG_INT_EN; |
| 1411 | if (dev_priv->hotplug_supported_mask & HDMID_HOTPLUG_INT_STATUS) |
| 1412 | hotplug_en |= HDMID_HOTPLUG_INT_EN; |
| 1413 | if (dev_priv->hotplug_supported_mask & SDVOC_HOTPLUG_INT_STATUS) |
| 1414 | hotplug_en |= SDVOC_HOTPLUG_INT_EN; |
| 1415 | if (dev_priv->hotplug_supported_mask & SDVOB_HOTPLUG_INT_STATUS) |
| 1416 | hotplug_en |= SDVOB_HOTPLUG_INT_EN; |
| 1417 | if (dev_priv->hotplug_supported_mask & CRT_HOTPLUG_INT_STATUS) |
| 1418 | hotplug_en |= CRT_HOTPLUG_INT_EN; |
| 1419 | /* Ignore TV since it's buggy */ |
| 1420 | |
Jesse Barnes | 5ca5828 | 2009-03-31 14:11:15 -0700 | [diff] [blame] | 1421 | I915_WRITE(PORT_HOTPLUG_EN, hotplug_en); |
| 1422 | |
Jesse Barnes | 5ca5828 | 2009-03-31 14:11:15 -0700 | [diff] [blame] | 1423 | /* Enable in IER... */ |
| 1424 | enable_mask |= I915_DISPLAY_PORT_INTERRUPT; |
| 1425 | /* and unmask in IMR */ |
| 1426 | i915_enable_irq(dev_priv, I915_DISPLAY_PORT_INTERRUPT); |
| 1427 | } |
| 1428 | |
Jesse Barnes | 63eeaf3 | 2009-06-18 16:56:52 -0700 | [diff] [blame] | 1429 | /* |
| 1430 | * Enable some error detection, note the instruction error mask |
| 1431 | * bit is reserved, so we leave it masked. |
| 1432 | */ |
| 1433 | if (IS_G4X(dev)) { |
| 1434 | error_mask = ~(GM45_ERROR_PAGE_TABLE | |
| 1435 | GM45_ERROR_MEM_PRIV | |
| 1436 | GM45_ERROR_CP_PRIV | |
| 1437 | I915_ERROR_MEMORY_REFRESH); |
| 1438 | } else { |
| 1439 | error_mask = ~(I915_ERROR_PAGE_TABLE | |
| 1440 | I915_ERROR_MEMORY_REFRESH); |
| 1441 | } |
| 1442 | I915_WRITE(EMR, error_mask); |
| 1443 | |
Keith Packard | 7c46358 | 2008-11-04 02:03:27 -0800 | [diff] [blame] | 1444 | /* Disable pipe interrupt enables, clear pending pipe status */ |
| 1445 | I915_WRITE(PIPEASTAT, I915_READ(PIPEASTAT) & 0x8000ffff); |
| 1446 | I915_WRITE(PIPEBSTAT, I915_READ(PIPEBSTAT) & 0x8000ffff); |
| 1447 | /* Clear pending interrupt status */ |
| 1448 | I915_WRITE(IIR, I915_READ(IIR)); |
| 1449 | |
Jesse Barnes | 5ca5828 | 2009-03-31 14:11:15 -0700 | [diff] [blame] | 1450 | I915_WRITE(IER, enable_mask); |
Keith Packard | 7c46358 | 2008-11-04 02:03:27 -0800 | [diff] [blame] | 1451 | I915_WRITE(IMR, dev_priv->irq_mask_reg); |
Eric Anholt | ed4cb41 | 2008-07-29 12:10:39 -0700 | [diff] [blame] | 1452 | (void) I915_READ(IER); |
| 1453 | |
Matthew Garrett | 8ee1c3d | 2008-08-05 19:37:25 +0100 | [diff] [blame] | 1454 | opregion_enable_asle(dev); |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 1455 | |
| 1456 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1457 | } |
| 1458 | |
Adam Jackson | f2b115e | 2009-12-03 17:14:42 -0500 | [diff] [blame] | 1459 | static void ironlake_irq_uninstall(struct drm_device *dev) |
Zhenyu Wang | 036a4a7 | 2009-06-08 14:40:19 +0800 | [diff] [blame] | 1460 | { |
| 1461 | drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private; |
| 1462 | I915_WRITE(HWSTAM, 0xffffffff); |
| 1463 | |
| 1464 | I915_WRITE(DEIMR, 0xffffffff); |
| 1465 | I915_WRITE(DEIER, 0x0); |
| 1466 | I915_WRITE(DEIIR, I915_READ(DEIIR)); |
| 1467 | |
| 1468 | I915_WRITE(GTIMR, 0xffffffff); |
| 1469 | I915_WRITE(GTIER, 0x0); |
| 1470 | I915_WRITE(GTIIR, I915_READ(GTIIR)); |
| 1471 | } |
| 1472 | |
Dave Airlie | 84b1fd1 | 2007-07-11 15:53:27 +1000 | [diff] [blame] | 1473 | void i915_driver_irq_uninstall(struct drm_device * dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1474 | { |
| 1475 | drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private; |
Dave Airlie | 91e3738 | 2006-02-18 15:17:04 +1100 | [diff] [blame] | 1476 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1477 | if (!dev_priv) |
| 1478 | return; |
| 1479 | |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 1480 | dev_priv->vblank_pipe = 0; |
| 1481 | |
Eric Anholt | bad720f | 2009-10-22 16:11:14 -0700 | [diff] [blame] | 1482 | if (HAS_PCH_SPLIT(dev)) { |
Adam Jackson | f2b115e | 2009-12-03 17:14:42 -0500 | [diff] [blame] | 1483 | ironlake_irq_uninstall(dev); |
Zhenyu Wang | 036a4a7 | 2009-06-08 14:40:19 +0800 | [diff] [blame] | 1484 | return; |
| 1485 | } |
| 1486 | |
Jesse Barnes | 5ca5828 | 2009-03-31 14:11:15 -0700 | [diff] [blame] | 1487 | if (I915_HAS_HOTPLUG(dev)) { |
| 1488 | I915_WRITE(PORT_HOTPLUG_EN, 0); |
| 1489 | I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT)); |
| 1490 | } |
| 1491 | |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 1492 | I915_WRITE(HWSTAM, 0xffffffff); |
Keith Packard | 7c46358 | 2008-11-04 02:03:27 -0800 | [diff] [blame] | 1493 | I915_WRITE(PIPEASTAT, 0); |
| 1494 | I915_WRITE(PIPEBSTAT, 0); |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 1495 | I915_WRITE(IMR, 0xffffffff); |
Eric Anholt | ed4cb41 | 2008-07-29 12:10:39 -0700 | [diff] [blame] | 1496 | I915_WRITE(IER, 0x0); |
Dave Airlie | 91e3738 | 2006-02-18 15:17:04 +1100 | [diff] [blame] | 1497 | |
Keith Packard | 7c46358 | 2008-11-04 02:03:27 -0800 | [diff] [blame] | 1498 | I915_WRITE(PIPEASTAT, I915_READ(PIPEASTAT) & 0x8000ffff); |
| 1499 | I915_WRITE(PIPEBSTAT, I915_READ(PIPEBSTAT) & 0x8000ffff); |
| 1500 | I915_WRITE(IIR, I915_READ(IIR)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1501 | } |