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> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | #include "drmP.h" |
| 31 | #include "drm.h" |
| 32 | #include "i915_drm.h" |
| 33 | #include "i915_drv.h" |
Chris Wilson | 1c5d22f | 2009-08-25 11:15:50 +0100 | [diff] [blame] | 34 | #include "i915_trace.h" |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 35 | #include "intel_drv.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | #define MAX_NOPID ((u32)~0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | |
Keith Packard | 7c46358 | 2008-11-04 02:03:27 -0800 | [diff] [blame] | 39 | /** |
| 40 | * Interrupts that are always left unmasked. |
| 41 | * |
| 42 | * Since pipe events are edge-triggered from the PIPESTAT register to IIR, |
| 43 | * we leave them always unmasked in IMR and then control enabling them through |
| 44 | * PIPESTAT alone. |
| 45 | */ |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 46 | #define I915_INTERRUPT_ENABLE_FIX \ |
| 47 | (I915_ASLE_INTERRUPT | \ |
| 48 | I915_DISPLAY_PIPE_A_EVENT_INTERRUPT | \ |
| 49 | I915_DISPLAY_PIPE_B_EVENT_INTERRUPT | \ |
| 50 | I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT | \ |
| 51 | I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT | \ |
| 52 | I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT) |
Keith Packard | 7c46358 | 2008-11-04 02:03:27 -0800 | [diff] [blame] | 53 | |
| 54 | /** Interrupts that we mask and unmask at runtime. */ |
| 55 | #define I915_INTERRUPT_ENABLE_VAR (I915_USER_INTERRUPT) |
| 56 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 57 | #define I915_PIPE_VBLANK_STATUS (PIPE_START_VBLANK_INTERRUPT_STATUS |\ |
| 58 | PIPE_VBLANK_INTERRUPT_STATUS) |
| 59 | |
| 60 | #define I915_PIPE_VBLANK_ENABLE (PIPE_START_VBLANK_INTERRUPT_ENABLE |\ |
| 61 | PIPE_VBLANK_INTERRUPT_ENABLE) |
| 62 | |
| 63 | #define DRM_I915_VBLANK_PIPE_ALL (DRM_I915_VBLANK_PIPE_A | \ |
| 64 | DRM_I915_VBLANK_PIPE_B) |
| 65 | |
Matthew Garrett | 8ee1c3d | 2008-08-05 19:37:25 +0100 | [diff] [blame] | 66 | void |
Adam Jackson | f2b115e | 2009-12-03 17:14:42 -0500 | [diff] [blame] | 67 | ironlake_enable_graphics_irq(drm_i915_private_t *dev_priv, u32 mask) |
Zhenyu Wang | 036a4a7 | 2009-06-08 14:40:19 +0800 | [diff] [blame] | 68 | { |
| 69 | if ((dev_priv->gt_irq_mask_reg & mask) != 0) { |
| 70 | dev_priv->gt_irq_mask_reg &= ~mask; |
| 71 | I915_WRITE(GTIMR, dev_priv->gt_irq_mask_reg); |
| 72 | (void) I915_READ(GTIMR); |
| 73 | } |
| 74 | } |
| 75 | |
| 76 | static inline void |
Adam Jackson | f2b115e | 2009-12-03 17:14:42 -0500 | [diff] [blame] | 77 | ironlake_disable_graphics_irq(drm_i915_private_t *dev_priv, u32 mask) |
Zhenyu Wang | 036a4a7 | 2009-06-08 14:40:19 +0800 | [diff] [blame] | 78 | { |
| 79 | if ((dev_priv->gt_irq_mask_reg & mask) != mask) { |
| 80 | dev_priv->gt_irq_mask_reg |= mask; |
| 81 | I915_WRITE(GTIMR, dev_priv->gt_irq_mask_reg); |
| 82 | (void) I915_READ(GTIMR); |
| 83 | } |
| 84 | } |
| 85 | |
| 86 | /* For display hotplug interrupt */ |
| 87 | void |
Adam Jackson | f2b115e | 2009-12-03 17:14:42 -0500 | [diff] [blame] | 88 | ironlake_enable_display_irq(drm_i915_private_t *dev_priv, u32 mask) |
Zhenyu Wang | 036a4a7 | 2009-06-08 14:40:19 +0800 | [diff] [blame] | 89 | { |
| 90 | if ((dev_priv->irq_mask_reg & mask) != 0) { |
| 91 | dev_priv->irq_mask_reg &= ~mask; |
| 92 | I915_WRITE(DEIMR, dev_priv->irq_mask_reg); |
| 93 | (void) I915_READ(DEIMR); |
| 94 | } |
| 95 | } |
| 96 | |
| 97 | static inline void |
Adam Jackson | f2b115e | 2009-12-03 17:14:42 -0500 | [diff] [blame] | 98 | ironlake_disable_display_irq(drm_i915_private_t *dev_priv, u32 mask) |
Zhenyu Wang | 036a4a7 | 2009-06-08 14:40:19 +0800 | [diff] [blame] | 99 | { |
| 100 | if ((dev_priv->irq_mask_reg & mask) != mask) { |
| 101 | dev_priv->irq_mask_reg |= mask; |
| 102 | I915_WRITE(DEIMR, dev_priv->irq_mask_reg); |
| 103 | (void) I915_READ(DEIMR); |
| 104 | } |
| 105 | } |
| 106 | |
| 107 | void |
Eric Anholt | ed4cb41 | 2008-07-29 12:10:39 -0700 | [diff] [blame] | 108 | i915_enable_irq(drm_i915_private_t *dev_priv, u32 mask) |
| 109 | { |
| 110 | if ((dev_priv->irq_mask_reg & mask) != 0) { |
| 111 | dev_priv->irq_mask_reg &= ~mask; |
| 112 | I915_WRITE(IMR, dev_priv->irq_mask_reg); |
| 113 | (void) I915_READ(IMR); |
| 114 | } |
| 115 | } |
| 116 | |
| 117 | static inline void |
| 118 | i915_disable_irq(drm_i915_private_t *dev_priv, u32 mask) |
| 119 | { |
| 120 | if ((dev_priv->irq_mask_reg & mask) != mask) { |
| 121 | dev_priv->irq_mask_reg |= mask; |
| 122 | I915_WRITE(IMR, dev_priv->irq_mask_reg); |
| 123 | (void) I915_READ(IMR); |
| 124 | } |
| 125 | } |
| 126 | |
Keith Packard | 7c46358 | 2008-11-04 02:03:27 -0800 | [diff] [blame] | 127 | static inline u32 |
| 128 | i915_pipestat(int pipe) |
| 129 | { |
| 130 | if (pipe == 0) |
| 131 | return PIPEASTAT; |
| 132 | if (pipe == 1) |
| 133 | return PIPEBSTAT; |
Andrew Morton | 9c84ba4 | 2008-12-01 13:14:08 -0800 | [diff] [blame] | 134 | BUG(); |
Keith Packard | 7c46358 | 2008-11-04 02:03:27 -0800 | [diff] [blame] | 135 | } |
| 136 | |
| 137 | void |
| 138 | i915_enable_pipestat(drm_i915_private_t *dev_priv, int pipe, u32 mask) |
| 139 | { |
| 140 | if ((dev_priv->pipestat[pipe] & mask) != mask) { |
| 141 | u32 reg = i915_pipestat(pipe); |
| 142 | |
| 143 | dev_priv->pipestat[pipe] |= mask; |
| 144 | /* Enable the interrupt, clear any pending status */ |
| 145 | I915_WRITE(reg, dev_priv->pipestat[pipe] | (mask >> 16)); |
| 146 | (void) I915_READ(reg); |
| 147 | } |
| 148 | } |
| 149 | |
| 150 | void |
| 151 | i915_disable_pipestat(drm_i915_private_t *dev_priv, int pipe, u32 mask) |
| 152 | { |
| 153 | if ((dev_priv->pipestat[pipe] & mask) != 0) { |
| 154 | u32 reg = i915_pipestat(pipe); |
| 155 | |
| 156 | dev_priv->pipestat[pipe] &= ~mask; |
| 157 | I915_WRITE(reg, dev_priv->pipestat[pipe]); |
| 158 | (void) I915_READ(reg); |
| 159 | } |
| 160 | } |
| 161 | |
=?utf-8?q?Michel_D=C3=A4nzer?= | a6b54f3 | 2006-10-24 23:37:43 +1000 | [diff] [blame] | 162 | /** |
Zhao Yakui | 01c6688 | 2009-10-28 05:10:00 +0000 | [diff] [blame] | 163 | * intel_enable_asle - enable ASLE interrupt for OpRegion |
| 164 | */ |
| 165 | void intel_enable_asle (struct drm_device *dev) |
| 166 | { |
| 167 | drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private; |
| 168 | |
Adam Jackson | f2b115e | 2009-12-03 17:14:42 -0500 | [diff] [blame] | 169 | if (IS_IRONLAKE(dev)) |
| 170 | ironlake_enable_display_irq(dev_priv, DE_GSE); |
Zhao Yakui | 01c6688 | 2009-10-28 05:10:00 +0000 | [diff] [blame] | 171 | else |
| 172 | i915_enable_pipestat(dev_priv, 1, |
| 173 | I915_LEGACY_BLC_EVENT_ENABLE); |
| 174 | } |
| 175 | |
| 176 | /** |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 177 | * i915_pipe_enabled - check if a pipe is enabled |
| 178 | * @dev: DRM device |
| 179 | * @pipe: pipe to check |
| 180 | * |
| 181 | * Reading certain registers when the pipe is disabled can hang the chip. |
| 182 | * Use this routine to make sure the PLL is running and the pipe is active |
| 183 | * before reading such registers if unsure. |
| 184 | */ |
| 185 | static int |
| 186 | i915_pipe_enabled(struct drm_device *dev, int pipe) |
| 187 | { |
| 188 | drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private; |
| 189 | unsigned long pipeconf = pipe ? PIPEBCONF : PIPEACONF; |
| 190 | |
| 191 | if (I915_READ(pipeconf) & PIPEACONF_ENABLE) |
| 192 | return 1; |
| 193 | |
| 194 | return 0; |
| 195 | } |
| 196 | |
Keith Packard | 42f52ef | 2008-10-18 19:39:29 -0700 | [diff] [blame] | 197 | /* Called from drm generic code, passed a 'crtc', which |
| 198 | * we use as a pipe index |
| 199 | */ |
| 200 | u32 i915_get_vblank_counter(struct drm_device *dev, int pipe) |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 201 | { |
| 202 | drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private; |
| 203 | unsigned long high_frame; |
| 204 | unsigned long low_frame; |
| 205 | u32 high1, high2, low, count; |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 206 | |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 207 | high_frame = pipe ? PIPEBFRAMEHIGH : PIPEAFRAMEHIGH; |
| 208 | low_frame = pipe ? PIPEBFRAMEPIXEL : PIPEAFRAMEPIXEL; |
| 209 | |
| 210 | if (!i915_pipe_enabled(dev, pipe)) { |
Zhao Yakui | 44d98a6 | 2009-10-09 11:39:40 +0800 | [diff] [blame] | 211 | DRM_DEBUG_DRIVER("trying to get vblank count for disabled " |
| 212 | "pipe %d\n", pipe); |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 213 | return 0; |
| 214 | } |
| 215 | |
| 216 | /* |
| 217 | * High & low register fields aren't synchronized, so make sure |
| 218 | * we get a low value that's stable across two reads of the high |
| 219 | * register. |
| 220 | */ |
| 221 | do { |
| 222 | high1 = ((I915_READ(high_frame) & PIPE_FRAME_HIGH_MASK) >> |
| 223 | PIPE_FRAME_HIGH_SHIFT); |
| 224 | low = ((I915_READ(low_frame) & PIPE_FRAME_LOW_MASK) >> |
| 225 | PIPE_FRAME_LOW_SHIFT); |
| 226 | high2 = ((I915_READ(high_frame) & PIPE_FRAME_HIGH_MASK) >> |
| 227 | PIPE_FRAME_HIGH_SHIFT); |
| 228 | } while (high1 != high2); |
| 229 | |
| 230 | count = (high1 << 8) | low; |
| 231 | |
| 232 | return count; |
| 233 | } |
| 234 | |
Jesse Barnes | 9880b7a | 2009-02-06 10:22:41 -0800 | [diff] [blame] | 235 | u32 gm45_get_vblank_counter(struct drm_device *dev, int pipe) |
| 236 | { |
| 237 | drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private; |
| 238 | int reg = pipe ? PIPEB_FRMCOUNT_GM45 : PIPEA_FRMCOUNT_GM45; |
| 239 | |
| 240 | if (!i915_pipe_enabled(dev, pipe)) { |
Zhao Yakui | 44d98a6 | 2009-10-09 11:39:40 +0800 | [diff] [blame] | 241 | DRM_DEBUG_DRIVER("trying to get vblank count for disabled " |
| 242 | "pipe %d\n", pipe); |
Jesse Barnes | 9880b7a | 2009-02-06 10:22:41 -0800 | [diff] [blame] | 243 | return 0; |
| 244 | } |
| 245 | |
| 246 | return I915_READ(reg); |
| 247 | } |
| 248 | |
Jesse Barnes | 5ca5828 | 2009-03-31 14:11:15 -0700 | [diff] [blame] | 249 | /* |
| 250 | * Handle hotplug events outside the interrupt handler proper. |
| 251 | */ |
| 252 | static void i915_hotplug_work_func(struct work_struct *work) |
| 253 | { |
| 254 | drm_i915_private_t *dev_priv = container_of(work, drm_i915_private_t, |
| 255 | hotplug_work); |
| 256 | struct drm_device *dev = dev_priv->dev; |
Keith Packard | c31c4ba | 2009-05-06 11:48:58 -0700 | [diff] [blame] | 257 | struct drm_mode_config *mode_config = &dev->mode_config; |
| 258 | struct drm_connector *connector; |
Jesse Barnes | 5ca5828 | 2009-03-31 14:11:15 -0700 | [diff] [blame] | 259 | |
Keith Packard | c31c4ba | 2009-05-06 11:48:58 -0700 | [diff] [blame] | 260 | if (mode_config->num_connector) { |
| 261 | list_for_each_entry(connector, &mode_config->connector_list, head) { |
| 262 | struct intel_output *intel_output = to_intel_output(connector); |
| 263 | |
| 264 | if (intel_output->hot_plug) |
| 265 | (*intel_output->hot_plug) (intel_output); |
| 266 | } |
| 267 | } |
Jesse Barnes | 5ca5828 | 2009-03-31 14:11:15 -0700 | [diff] [blame] | 268 | /* Just fire off a uevent and let userspace tell us what to do */ |
| 269 | drm_sysfs_hotplug_event(dev); |
| 270 | } |
| 271 | |
Adam Jackson | f2b115e | 2009-12-03 17:14:42 -0500 | [diff] [blame] | 272 | irqreturn_t ironlake_irq_handler(struct drm_device *dev) |
Zhenyu Wang | 036a4a7 | 2009-06-08 14:40:19 +0800 | [diff] [blame] | 273 | { |
| 274 | drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private; |
| 275 | int ret = IRQ_NONE; |
Dave Airlie | 3ff9916 | 2009-12-08 14:03:47 +1000 | [diff] [blame] | 276 | u32 de_iir, gt_iir, de_ier, pch_iir; |
Zhenyu Wang | 036a4a7 | 2009-06-08 14:40:19 +0800 | [diff] [blame] | 277 | struct drm_i915_master_private *master_priv; |
| 278 | |
Zou, Nanhai | 2d109a8 | 2009-11-06 02:13:01 +0000 | [diff] [blame] | 279 | /* disable master interrupt before clearing iir */ |
| 280 | de_ier = I915_READ(DEIER); |
| 281 | I915_WRITE(DEIER, de_ier & ~DE_MASTER_IRQ_CONTROL); |
| 282 | (void)I915_READ(DEIER); |
| 283 | |
Zhenyu Wang | 036a4a7 | 2009-06-08 14:40:19 +0800 | [diff] [blame] | 284 | de_iir = I915_READ(DEIIR); |
| 285 | gt_iir = I915_READ(GTIIR); |
Zhenyu Wang | c650156 | 2009-11-03 18:57:21 +0000 | [diff] [blame] | 286 | pch_iir = I915_READ(SDEIIR); |
Zhenyu Wang | 036a4a7 | 2009-06-08 14:40:19 +0800 | [diff] [blame] | 287 | |
Zou Nan hai | c7c8510 | 2010-01-15 10:29:06 +0800 | [diff] [blame] | 288 | if (de_iir == 0 && gt_iir == 0 && pch_iir == 0) |
| 289 | goto done; |
Zhenyu Wang | 036a4a7 | 2009-06-08 14:40:19 +0800 | [diff] [blame] | 290 | |
Zou Nan hai | c7c8510 | 2010-01-15 10:29:06 +0800 | [diff] [blame] | 291 | ret = IRQ_HANDLED; |
Zhenyu Wang | 036a4a7 | 2009-06-08 14:40:19 +0800 | [diff] [blame] | 292 | |
Zou Nan hai | c7c8510 | 2010-01-15 10:29:06 +0800 | [diff] [blame] | 293 | if (dev->primary->master) { |
| 294 | master_priv = dev->primary->master->driver_priv; |
| 295 | if (master_priv->sarea_priv) |
| 296 | master_priv->sarea_priv->last_dispatch = |
| 297 | READ_BREADCRUMB(dev_priv); |
Zhenyu Wang | 036a4a7 | 2009-06-08 14:40:19 +0800 | [diff] [blame] | 298 | } |
| 299 | |
Zou Nan hai | c7c8510 | 2010-01-15 10:29:06 +0800 | [diff] [blame] | 300 | if (gt_iir & GT_USER_INTERRUPT) { |
| 301 | u32 seqno = i915_get_gem_seqno(dev); |
| 302 | dev_priv->mm.irq_gem_seqno = seqno; |
| 303 | trace_i915_gem_request_complete(dev, seqno); |
| 304 | DRM_WAKEUP(&dev_priv->irq_queue); |
| 305 | dev_priv->hangcheck_count = 0; |
| 306 | mod_timer(&dev_priv->hangcheck_timer, jiffies + DRM_I915_HANGCHECK_PERIOD); |
| 307 | } |
| 308 | |
| 309 | if (de_iir & DE_GSE) |
| 310 | ironlake_opregion_gse_intr(dev); |
| 311 | |
Li Peng | c062df6 | 2010-01-23 00:12:58 +0800 | [diff] [blame] | 312 | if (de_iir & DE_PIPEA_VBLANK) |
| 313 | drm_handle_vblank(dev, 0); |
| 314 | |
| 315 | if (de_iir & DE_PIPEB_VBLANK) |
| 316 | drm_handle_vblank(dev, 1); |
| 317 | |
Zou Nan hai | c7c8510 | 2010-01-15 10:29:06 +0800 | [diff] [blame] | 318 | /* check event from PCH */ |
| 319 | if ((de_iir & DE_PCH_EVENT) && |
| 320 | (pch_iir & SDE_HOTPLUG_MASK)) { |
| 321 | queue_work(dev_priv->wq, &dev_priv->hotplug_work); |
| 322 | } |
| 323 | |
| 324 | /* should clear PCH hotplug event before clear CPU irq */ |
| 325 | I915_WRITE(SDEIIR, pch_iir); |
| 326 | I915_WRITE(GTIIR, gt_iir); |
| 327 | I915_WRITE(DEIIR, de_iir); |
| 328 | |
| 329 | done: |
Zou, Nanhai | 2d109a8 | 2009-11-06 02:13:01 +0000 | [diff] [blame] | 330 | I915_WRITE(DEIER, de_ier); |
| 331 | (void)I915_READ(DEIER); |
| 332 | |
Zhenyu Wang | 036a4a7 | 2009-06-08 14:40:19 +0800 | [diff] [blame] | 333 | return ret; |
| 334 | } |
| 335 | |
Jesse Barnes | 8a90523 | 2009-07-11 16:48:03 -0400 | [diff] [blame] | 336 | /** |
| 337 | * i915_error_work_func - do process context error handling work |
| 338 | * @work: work struct |
| 339 | * |
| 340 | * Fire an error uevent so userspace can see that a hang or error |
| 341 | * was detected. |
| 342 | */ |
| 343 | static void i915_error_work_func(struct work_struct *work) |
| 344 | { |
| 345 | drm_i915_private_t *dev_priv = container_of(work, drm_i915_private_t, |
| 346 | error_work); |
| 347 | struct drm_device *dev = dev_priv->dev; |
Ben Gamari | f316a42 | 2009-09-14 17:48:46 -0400 | [diff] [blame] | 348 | char *error_event[] = { "ERROR=1", NULL }; |
| 349 | char *reset_event[] = { "RESET=1", NULL }; |
| 350 | char *reset_done_event[] = { "ERROR=0", NULL }; |
Jesse Barnes | 8a90523 | 2009-07-11 16:48:03 -0400 | [diff] [blame] | 351 | |
Zhao Yakui | 44d98a6 | 2009-10-09 11:39:40 +0800 | [diff] [blame] | 352 | DRM_DEBUG_DRIVER("generating error event\n"); |
Ben Gamari | f316a42 | 2009-09-14 17:48:46 -0400 | [diff] [blame] | 353 | kobject_uevent_env(&dev->primary->kdev.kobj, KOBJ_CHANGE, error_event); |
Jesse Barnes | 8a90523 | 2009-07-11 16:48:03 -0400 | [diff] [blame] | 354 | |
Ben Gamari | ba1234d | 2009-09-14 17:48:47 -0400 | [diff] [blame] | 355 | if (atomic_read(&dev_priv->mm.wedged)) { |
Ben Gamari | f316a42 | 2009-09-14 17:48:46 -0400 | [diff] [blame] | 356 | if (IS_I965G(dev)) { |
Zhao Yakui | 44d98a6 | 2009-10-09 11:39:40 +0800 | [diff] [blame] | 357 | DRM_DEBUG_DRIVER("resetting chip\n"); |
Ben Gamari | f316a42 | 2009-09-14 17:48:46 -0400 | [diff] [blame] | 358 | kobject_uevent_env(&dev->primary->kdev.kobj, KOBJ_CHANGE, reset_event); |
| 359 | if (!i965_reset(dev, GDRST_RENDER)) { |
Ben Gamari | ba1234d | 2009-09-14 17:48:47 -0400 | [diff] [blame] | 360 | atomic_set(&dev_priv->mm.wedged, 0); |
Ben Gamari | f316a42 | 2009-09-14 17:48:46 -0400 | [diff] [blame] | 361 | kobject_uevent_env(&dev->primary->kdev.kobj, KOBJ_CHANGE, reset_done_event); |
| 362 | } |
| 363 | } else { |
Zhao Yakui | 44d98a6 | 2009-10-09 11:39:40 +0800 | [diff] [blame] | 364 | DRM_DEBUG_DRIVER("reboot required\n"); |
Ben Gamari | f316a42 | 2009-09-14 17:48:46 -0400 | [diff] [blame] | 365 | } |
| 366 | } |
Jesse Barnes | 8a90523 | 2009-07-11 16:48:03 -0400 | [diff] [blame] | 367 | } |
| 368 | |
| 369 | /** |
| 370 | * i915_capture_error_state - capture an error record for later analysis |
| 371 | * @dev: drm device |
| 372 | * |
| 373 | * Should be called when an error is detected (either a hang or an error |
| 374 | * interrupt) to capture error state from the time of the error. Fills |
| 375 | * out a structure which becomes available in debugfs for user level tools |
| 376 | * to pick up. |
| 377 | */ |
Jesse Barnes | 63eeaf3 | 2009-06-18 16:56:52 -0700 | [diff] [blame] | 378 | static void i915_capture_error_state(struct drm_device *dev) |
| 379 | { |
| 380 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 381 | struct drm_i915_error_state *error; |
| 382 | unsigned long flags; |
| 383 | |
| 384 | spin_lock_irqsave(&dev_priv->error_lock, flags); |
| 385 | if (dev_priv->first_error) |
| 386 | goto out; |
| 387 | |
| 388 | error = kmalloc(sizeof(*error), GFP_ATOMIC); |
| 389 | if (!error) { |
Zhao Yakui | 44d98a6 | 2009-10-09 11:39:40 +0800 | [diff] [blame] | 390 | DRM_DEBUG_DRIVER("out ot memory, not capturing error state\n"); |
Jesse Barnes | 63eeaf3 | 2009-06-18 16:56:52 -0700 | [diff] [blame] | 391 | goto out; |
| 392 | } |
| 393 | |
| 394 | error->eir = I915_READ(EIR); |
| 395 | error->pgtbl_er = I915_READ(PGTBL_ER); |
| 396 | error->pipeastat = I915_READ(PIPEASTAT); |
| 397 | error->pipebstat = I915_READ(PIPEBSTAT); |
| 398 | error->instpm = I915_READ(INSTPM); |
| 399 | if (!IS_I965G(dev)) { |
| 400 | error->ipeir = I915_READ(IPEIR); |
| 401 | error->ipehr = I915_READ(IPEHR); |
| 402 | error->instdone = I915_READ(INSTDONE); |
| 403 | error->acthd = I915_READ(ACTHD); |
| 404 | } else { |
| 405 | error->ipeir = I915_READ(IPEIR_I965); |
| 406 | error->ipehr = I915_READ(IPEHR_I965); |
| 407 | error->instdone = I915_READ(INSTDONE_I965); |
| 408 | error->instps = I915_READ(INSTPS); |
| 409 | error->instdone1 = I915_READ(INSTDONE1); |
| 410 | error->acthd = I915_READ(ACTHD_I965); |
| 411 | } |
| 412 | |
Jesse Barnes | 8a90523 | 2009-07-11 16:48:03 -0400 | [diff] [blame] | 413 | do_gettimeofday(&error->time); |
| 414 | |
Jesse Barnes | 63eeaf3 | 2009-06-18 16:56:52 -0700 | [diff] [blame] | 415 | dev_priv->first_error = error; |
| 416 | |
| 417 | out: |
| 418 | spin_unlock_irqrestore(&dev_priv->error_lock, flags); |
| 419 | } |
| 420 | |
Jesse Barnes | 8a90523 | 2009-07-11 16:48:03 -0400 | [diff] [blame] | 421 | /** |
| 422 | * i915_handle_error - handle an error interrupt |
| 423 | * @dev: drm device |
| 424 | * |
| 425 | * Do some basic checking of regsiter state at error interrupt time and |
| 426 | * dump it to the syslog. Also call i915_capture_error_state() to make |
| 427 | * sure we get a record and make it available in debugfs. Fire a uevent |
| 428 | * so userspace knows something bad happened (should trigger collection |
| 429 | * of a ring dump etc.). |
| 430 | */ |
Ben Gamari | ba1234d | 2009-09-14 17:48:47 -0400 | [diff] [blame] | 431 | static void i915_handle_error(struct drm_device *dev, bool wedged) |
Jesse Barnes | 8a90523 | 2009-07-11 16:48:03 -0400 | [diff] [blame] | 432 | { |
| 433 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 434 | u32 eir = I915_READ(EIR); |
| 435 | u32 pipea_stats = I915_READ(PIPEASTAT); |
| 436 | u32 pipeb_stats = I915_READ(PIPEBSTAT); |
| 437 | |
| 438 | i915_capture_error_state(dev); |
| 439 | |
| 440 | printk(KERN_ERR "render error detected, EIR: 0x%08x\n", |
| 441 | eir); |
| 442 | |
| 443 | if (IS_G4X(dev)) { |
| 444 | if (eir & (GM45_ERROR_MEM_PRIV | GM45_ERROR_CP_PRIV)) { |
| 445 | u32 ipeir = I915_READ(IPEIR_I965); |
| 446 | |
| 447 | printk(KERN_ERR " IPEIR: 0x%08x\n", |
| 448 | I915_READ(IPEIR_I965)); |
| 449 | printk(KERN_ERR " IPEHR: 0x%08x\n", |
| 450 | I915_READ(IPEHR_I965)); |
| 451 | printk(KERN_ERR " INSTDONE: 0x%08x\n", |
| 452 | I915_READ(INSTDONE_I965)); |
| 453 | printk(KERN_ERR " INSTPS: 0x%08x\n", |
| 454 | I915_READ(INSTPS)); |
| 455 | printk(KERN_ERR " INSTDONE1: 0x%08x\n", |
| 456 | I915_READ(INSTDONE1)); |
| 457 | printk(KERN_ERR " ACTHD: 0x%08x\n", |
| 458 | I915_READ(ACTHD_I965)); |
| 459 | I915_WRITE(IPEIR_I965, ipeir); |
| 460 | (void)I915_READ(IPEIR_I965); |
| 461 | } |
| 462 | if (eir & GM45_ERROR_PAGE_TABLE) { |
| 463 | u32 pgtbl_err = I915_READ(PGTBL_ER); |
| 464 | printk(KERN_ERR "page table error\n"); |
| 465 | printk(KERN_ERR " PGTBL_ER: 0x%08x\n", |
| 466 | pgtbl_err); |
| 467 | I915_WRITE(PGTBL_ER, pgtbl_err); |
| 468 | (void)I915_READ(PGTBL_ER); |
| 469 | } |
| 470 | } |
| 471 | |
| 472 | if (IS_I9XX(dev)) { |
| 473 | if (eir & I915_ERROR_PAGE_TABLE) { |
| 474 | u32 pgtbl_err = I915_READ(PGTBL_ER); |
| 475 | printk(KERN_ERR "page table error\n"); |
| 476 | printk(KERN_ERR " PGTBL_ER: 0x%08x\n", |
| 477 | pgtbl_err); |
| 478 | I915_WRITE(PGTBL_ER, pgtbl_err); |
| 479 | (void)I915_READ(PGTBL_ER); |
| 480 | } |
| 481 | } |
| 482 | |
| 483 | if (eir & I915_ERROR_MEMORY_REFRESH) { |
| 484 | printk(KERN_ERR "memory refresh error\n"); |
| 485 | printk(KERN_ERR "PIPEASTAT: 0x%08x\n", |
| 486 | pipea_stats); |
| 487 | printk(KERN_ERR "PIPEBSTAT: 0x%08x\n", |
| 488 | pipeb_stats); |
| 489 | /* pipestat has already been acked */ |
| 490 | } |
| 491 | if (eir & I915_ERROR_INSTRUCTION) { |
| 492 | printk(KERN_ERR "instruction error\n"); |
| 493 | printk(KERN_ERR " INSTPM: 0x%08x\n", |
| 494 | I915_READ(INSTPM)); |
| 495 | if (!IS_I965G(dev)) { |
| 496 | u32 ipeir = I915_READ(IPEIR); |
| 497 | |
| 498 | printk(KERN_ERR " IPEIR: 0x%08x\n", |
| 499 | I915_READ(IPEIR)); |
| 500 | printk(KERN_ERR " IPEHR: 0x%08x\n", |
| 501 | I915_READ(IPEHR)); |
| 502 | printk(KERN_ERR " INSTDONE: 0x%08x\n", |
| 503 | I915_READ(INSTDONE)); |
| 504 | printk(KERN_ERR " ACTHD: 0x%08x\n", |
| 505 | I915_READ(ACTHD)); |
| 506 | I915_WRITE(IPEIR, ipeir); |
| 507 | (void)I915_READ(IPEIR); |
| 508 | } else { |
| 509 | u32 ipeir = I915_READ(IPEIR_I965); |
| 510 | |
| 511 | printk(KERN_ERR " IPEIR: 0x%08x\n", |
| 512 | I915_READ(IPEIR_I965)); |
| 513 | printk(KERN_ERR " IPEHR: 0x%08x\n", |
| 514 | I915_READ(IPEHR_I965)); |
| 515 | printk(KERN_ERR " INSTDONE: 0x%08x\n", |
| 516 | I915_READ(INSTDONE_I965)); |
| 517 | printk(KERN_ERR " INSTPS: 0x%08x\n", |
| 518 | I915_READ(INSTPS)); |
| 519 | printk(KERN_ERR " INSTDONE1: 0x%08x\n", |
| 520 | I915_READ(INSTDONE1)); |
| 521 | printk(KERN_ERR " ACTHD: 0x%08x\n", |
| 522 | I915_READ(ACTHD_I965)); |
| 523 | I915_WRITE(IPEIR_I965, ipeir); |
| 524 | (void)I915_READ(IPEIR_I965); |
| 525 | } |
| 526 | } |
| 527 | |
| 528 | I915_WRITE(EIR, eir); |
| 529 | (void)I915_READ(EIR); |
| 530 | eir = I915_READ(EIR); |
| 531 | if (eir) { |
| 532 | /* |
| 533 | * some errors might have become stuck, |
| 534 | * mask them. |
| 535 | */ |
| 536 | DRM_ERROR("EIR stuck: 0x%08x, masking\n", eir); |
| 537 | I915_WRITE(EMR, I915_READ(EMR) | eir); |
| 538 | I915_WRITE(IIR, I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT); |
| 539 | } |
| 540 | |
Ben Gamari | ba1234d | 2009-09-14 17:48:47 -0400 | [diff] [blame] | 541 | if (wedged) { |
| 542 | atomic_set(&dev_priv->mm.wedged, 1); |
| 543 | |
Ben Gamari | 11ed50e | 2009-09-14 17:48:45 -0400 | [diff] [blame] | 544 | /* |
| 545 | * Wakeup waiting processes so they don't hang |
| 546 | */ |
Ben Gamari | 11ed50e | 2009-09-14 17:48:45 -0400 | [diff] [blame] | 547 | DRM_WAKEUP(&dev_priv->irq_queue); |
| 548 | } |
| 549 | |
Eric Anholt | 9c9fe1f | 2009-08-03 16:09:16 -0700 | [diff] [blame] | 550 | queue_work(dev_priv->wq, &dev_priv->error_work); |
Jesse Barnes | 8a90523 | 2009-07-11 16:48:03 -0400 | [diff] [blame] | 551 | } |
| 552 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 553 | irqreturn_t i915_driver_irq_handler(DRM_IRQ_ARGS) |
| 554 | { |
Dave Airlie | 84b1fd1 | 2007-07-11 15:53:27 +1000 | [diff] [blame] | 555 | struct drm_device *dev = (struct drm_device *) arg; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 556 | 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] | 557 | struct drm_i915_master_private *master_priv; |
Eric Anholt | cdfbc41 | 2008-11-04 15:50:30 -0800 | [diff] [blame] | 558 | u32 iir, new_iir; |
| 559 | u32 pipea_stats, pipeb_stats; |
Keith Packard | 05eff84 | 2008-11-19 14:03:05 -0800 | [diff] [blame] | 560 | u32 vblank_status; |
| 561 | u32 vblank_enable; |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 562 | int vblank = 0; |
Keith Packard | 7c46358 | 2008-11-04 02:03:27 -0800 | [diff] [blame] | 563 | unsigned long irqflags; |
Keith Packard | 05eff84 | 2008-11-19 14:03:05 -0800 | [diff] [blame] | 564 | int irq_received; |
| 565 | int ret = IRQ_NONE; |
Dave Airlie | af6061a | 2008-05-07 12:15:39 +1000 | [diff] [blame] | 566 | |
Eric Anholt | 630681d | 2008-10-06 15:14:12 -0700 | [diff] [blame] | 567 | atomic_inc(&dev_priv->irq_received); |
| 568 | |
Adam Jackson | f2b115e | 2009-12-03 17:14:42 -0500 | [diff] [blame] | 569 | if (IS_IRONLAKE(dev)) |
| 570 | return ironlake_irq_handler(dev); |
Zhenyu Wang | 036a4a7 | 2009-06-08 14:40:19 +0800 | [diff] [blame] | 571 | |
Eric Anholt | ed4cb41 | 2008-07-29 12:10:39 -0700 | [diff] [blame] | 572 | iir = I915_READ(IIR); |
Dave Airlie | af6061a | 2008-05-07 12:15:39 +1000 | [diff] [blame] | 573 | |
Keith Packard | 05eff84 | 2008-11-19 14:03:05 -0800 | [diff] [blame] | 574 | if (IS_I965G(dev)) { |
| 575 | vblank_status = I915_START_VBLANK_INTERRUPT_STATUS; |
| 576 | vblank_enable = PIPE_START_VBLANK_INTERRUPT_ENABLE; |
| 577 | } else { |
| 578 | vblank_status = I915_VBLANK_INTERRUPT_STATUS; |
| 579 | vblank_enable = I915_VBLANK_INTERRUPT_ENABLE; |
| 580 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 581 | |
Keith Packard | 05eff84 | 2008-11-19 14:03:05 -0800 | [diff] [blame] | 582 | for (;;) { |
| 583 | irq_received = iir != 0; |
| 584 | |
| 585 | /* Can't rely on pipestat interrupt bit in iir as it might |
| 586 | * have been cleared after the pipestat interrupt was received. |
| 587 | * It doesn't set the bit in iir again, but it still produces |
| 588 | * interrupts (for non-MSI). |
| 589 | */ |
| 590 | spin_lock_irqsave(&dev_priv->user_irq_lock, irqflags); |
| 591 | pipea_stats = I915_READ(PIPEASTAT); |
| 592 | pipeb_stats = I915_READ(PIPEBSTAT); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 593 | |
Jesse Barnes | 8a90523 | 2009-07-11 16:48:03 -0400 | [diff] [blame] | 594 | if (iir & I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT) |
Ben Gamari | ba1234d | 2009-09-14 17:48:47 -0400 | [diff] [blame] | 595 | i915_handle_error(dev, false); |
Jesse Barnes | 8a90523 | 2009-07-11 16:48:03 -0400 | [diff] [blame] | 596 | |
Eric Anholt | cdfbc41 | 2008-11-04 15:50:30 -0800 | [diff] [blame] | 597 | /* |
| 598 | * Clear the PIPE(A|B)STAT regs before the IIR |
| 599 | */ |
Keith Packard | 05eff84 | 2008-11-19 14:03:05 -0800 | [diff] [blame] | 600 | if (pipea_stats & 0x8000ffff) { |
Shaohua Li | 7662c8b | 2009-06-26 11:23:55 +0800 | [diff] [blame] | 601 | if (pipea_stats & PIPE_FIFO_UNDERRUN_STATUS) |
Zhao Yakui | 44d98a6 | 2009-10-09 11:39:40 +0800 | [diff] [blame] | 602 | DRM_DEBUG_DRIVER("pipe a underrun\n"); |
Eric Anholt | cdfbc41 | 2008-11-04 15:50:30 -0800 | [diff] [blame] | 603 | I915_WRITE(PIPEASTAT, pipea_stats); |
Keith Packard | 05eff84 | 2008-11-19 14:03:05 -0800 | [diff] [blame] | 604 | irq_received = 1; |
Eric Anholt | cdfbc41 | 2008-11-04 15:50:30 -0800 | [diff] [blame] | 605 | } |
Keith Packard | 7c46358 | 2008-11-04 02:03:27 -0800 | [diff] [blame] | 606 | |
Keith Packard | 05eff84 | 2008-11-19 14:03:05 -0800 | [diff] [blame] | 607 | if (pipeb_stats & 0x8000ffff) { |
Shaohua Li | 7662c8b | 2009-06-26 11:23:55 +0800 | [diff] [blame] | 608 | if (pipeb_stats & PIPE_FIFO_UNDERRUN_STATUS) |
Zhao Yakui | 44d98a6 | 2009-10-09 11:39:40 +0800 | [diff] [blame] | 609 | DRM_DEBUG_DRIVER("pipe b underrun\n"); |
Eric Anholt | cdfbc41 | 2008-11-04 15:50:30 -0800 | [diff] [blame] | 610 | I915_WRITE(PIPEBSTAT, pipeb_stats); |
Keith Packard | 05eff84 | 2008-11-19 14:03:05 -0800 | [diff] [blame] | 611 | irq_received = 1; |
Eric Anholt | cdfbc41 | 2008-11-04 15:50:30 -0800 | [diff] [blame] | 612 | } |
Keith Packard | 05eff84 | 2008-11-19 14:03:05 -0800 | [diff] [blame] | 613 | spin_unlock_irqrestore(&dev_priv->user_irq_lock, irqflags); |
| 614 | |
| 615 | if (!irq_received) |
| 616 | break; |
| 617 | |
| 618 | ret = IRQ_HANDLED; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 619 | |
Jesse Barnes | 5ca5828 | 2009-03-31 14:11:15 -0700 | [diff] [blame] | 620 | /* Consume port. Then clear IIR or we'll miss events */ |
| 621 | if ((I915_HAS_HOTPLUG(dev)) && |
| 622 | (iir & I915_DISPLAY_PORT_INTERRUPT)) { |
| 623 | u32 hotplug_status = I915_READ(PORT_HOTPLUG_STAT); |
| 624 | |
Zhao Yakui | 44d98a6 | 2009-10-09 11:39:40 +0800 | [diff] [blame] | 625 | DRM_DEBUG_DRIVER("hotplug event received, stat 0x%08x\n", |
Jesse Barnes | 5ca5828 | 2009-03-31 14:11:15 -0700 | [diff] [blame] | 626 | hotplug_status); |
| 627 | if (hotplug_status & dev_priv->hotplug_supported_mask) |
Eric Anholt | 9c9fe1f | 2009-08-03 16:09:16 -0700 | [diff] [blame] | 628 | queue_work(dev_priv->wq, |
| 629 | &dev_priv->hotplug_work); |
Jesse Barnes | 5ca5828 | 2009-03-31 14:11:15 -0700 | [diff] [blame] | 630 | |
| 631 | I915_WRITE(PORT_HOTPLUG_STAT, hotplug_status); |
| 632 | I915_READ(PORT_HOTPLUG_STAT); |
| 633 | } |
| 634 | |
Eric Anholt | cdfbc41 | 2008-11-04 15:50:30 -0800 | [diff] [blame] | 635 | I915_WRITE(IIR, iir); |
| 636 | new_iir = I915_READ(IIR); /* Flush posted writes */ |
Matthew Garrett | 8ee1c3d | 2008-08-05 19:37:25 +0100 | [diff] [blame] | 637 | |
Dave Airlie | 7c1c287 | 2008-11-28 14:22:24 +1000 | [diff] [blame] | 638 | if (dev->primary->master) { |
| 639 | master_priv = dev->primary->master->driver_priv; |
| 640 | if (master_priv->sarea_priv) |
| 641 | master_priv->sarea_priv->last_dispatch = |
| 642 | READ_BREADCRUMB(dev_priv); |
| 643 | } |
Keith Packard | 7c46358 | 2008-11-04 02:03:27 -0800 | [diff] [blame] | 644 | |
Eric Anholt | cdfbc41 | 2008-11-04 15:50:30 -0800 | [diff] [blame] | 645 | if (iir & I915_USER_INTERRUPT) { |
Chris Wilson | 1c5d22f | 2009-08-25 11:15:50 +0100 | [diff] [blame] | 646 | u32 seqno = i915_get_gem_seqno(dev); |
| 647 | dev_priv->mm.irq_gem_seqno = seqno; |
| 648 | trace_i915_gem_request_complete(dev, seqno); |
Eric Anholt | cdfbc41 | 2008-11-04 15:50:30 -0800 | [diff] [blame] | 649 | DRM_WAKEUP(&dev_priv->irq_queue); |
Ben Gamari | f65d942 | 2009-09-14 17:48:44 -0400 | [diff] [blame] | 650 | dev_priv->hangcheck_count = 0; |
| 651 | mod_timer(&dev_priv->hangcheck_timer, jiffies + DRM_I915_HANGCHECK_PERIOD); |
Eric Anholt | cdfbc41 | 2008-11-04 15:50:30 -0800 | [diff] [blame] | 652 | } |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 653 | |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 654 | if (iir & I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT) |
| 655 | intel_prepare_page_flip(dev, 0); |
| 656 | |
| 657 | if (iir & I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT) |
| 658 | intel_prepare_page_flip(dev, 1); |
| 659 | |
Keith Packard | 05eff84 | 2008-11-19 14:03:05 -0800 | [diff] [blame] | 660 | if (pipea_stats & vblank_status) { |
Eric Anholt | cdfbc41 | 2008-11-04 15:50:30 -0800 | [diff] [blame] | 661 | vblank++; |
| 662 | drm_handle_vblank(dev, 0); |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 663 | intel_finish_page_flip(dev, 0); |
Eric Anholt | cdfbc41 | 2008-11-04 15:50:30 -0800 | [diff] [blame] | 664 | } |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 665 | |
Keith Packard | 05eff84 | 2008-11-19 14:03:05 -0800 | [diff] [blame] | 666 | if (pipeb_stats & vblank_status) { |
Eric Anholt | cdfbc41 | 2008-11-04 15:50:30 -0800 | [diff] [blame] | 667 | vblank++; |
| 668 | drm_handle_vblank(dev, 1); |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 669 | intel_finish_page_flip(dev, 1); |
Eric Anholt | cdfbc41 | 2008-11-04 15:50:30 -0800 | [diff] [blame] | 670 | } |
Keith Packard | 7c46358 | 2008-11-04 02:03:27 -0800 | [diff] [blame] | 671 | |
Eric Anholt | cdfbc41 | 2008-11-04 15:50:30 -0800 | [diff] [blame] | 672 | if ((pipeb_stats & I915_LEGACY_BLC_EVENT_STATUS) || |
| 673 | (iir & I915_ASLE_INTERRUPT)) |
| 674 | opregion_asle_intr(dev); |
Keith Packard | 7c46358 | 2008-11-04 02:03:27 -0800 | [diff] [blame] | 675 | |
Eric Anholt | cdfbc41 | 2008-11-04 15:50:30 -0800 | [diff] [blame] | 676 | /* With MSI, interrupts are only generated when iir |
| 677 | * transitions from zero to nonzero. If another bit got |
| 678 | * set while we were handling the existing iir bits, then |
| 679 | * we would never get another interrupt. |
| 680 | * |
| 681 | * This is fine on non-MSI as well, as if we hit this path |
| 682 | * we avoid exiting the interrupt handler only to generate |
| 683 | * another one. |
| 684 | * |
| 685 | * Note that for MSI this could cause a stray interrupt report |
| 686 | * if an interrupt landed in the time between writing IIR and |
| 687 | * the posting read. This should be rare enough to never |
| 688 | * trigger the 99% of 100,000 interrupts test for disabling |
| 689 | * stray interrupts. |
| 690 | */ |
| 691 | iir = new_iir; |
Keith Packard | 05eff84 | 2008-11-19 14:03:05 -0800 | [diff] [blame] | 692 | } |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 693 | |
Keith Packard | 05eff84 | 2008-11-19 14:03:05 -0800 | [diff] [blame] | 694 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 695 | } |
| 696 | |
Dave Airlie | af6061a | 2008-05-07 12:15:39 +1000 | [diff] [blame] | 697 | static int i915_emit_irq(struct drm_device * dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 698 | { |
| 699 | drm_i915_private_t *dev_priv = dev->dev_private; |
Dave Airlie | 7c1c287 | 2008-11-28 14:22:24 +1000 | [diff] [blame] | 700 | struct drm_i915_master_private *master_priv = dev->primary->master->driver_priv; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 701 | RING_LOCALS; |
| 702 | |
| 703 | i915_kernel_lost_context(dev); |
| 704 | |
Zhao Yakui | 44d98a6 | 2009-10-09 11:39:40 +0800 | [diff] [blame] | 705 | DRM_DEBUG_DRIVER("\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 706 | |
Kristian Høgsberg | c99b058 | 2008-08-20 11:20:13 -0400 | [diff] [blame] | 707 | dev_priv->counter++; |
Alan Hourihane | c29b669 | 2006-08-12 16:29:24 +1000 | [diff] [blame] | 708 | if (dev_priv->counter > 0x7FFFFFFFUL) |
Kristian Høgsberg | c99b058 | 2008-08-20 11:20:13 -0400 | [diff] [blame] | 709 | dev_priv->counter = 1; |
Dave Airlie | 7c1c287 | 2008-11-28 14:22:24 +1000 | [diff] [blame] | 710 | if (master_priv->sarea_priv) |
| 711 | master_priv->sarea_priv->last_enqueue = dev_priv->counter; |
Alan Hourihane | c29b669 | 2006-08-12 16:29:24 +1000 | [diff] [blame] | 712 | |
Keith Packard | 0baf823 | 2008-11-08 11:44:14 +1000 | [diff] [blame] | 713 | BEGIN_LP_RING(4); |
Jesse Barnes | 585fb11 | 2008-07-29 11:54:06 -0700 | [diff] [blame] | 714 | OUT_RING(MI_STORE_DWORD_INDEX); |
Keith Packard | 0baf823 | 2008-11-08 11:44:14 +1000 | [diff] [blame] | 715 | OUT_RING(I915_BREADCRUMB_INDEX << MI_STORE_DWORD_INDEX_SHIFT); |
Alan Hourihane | c29b669 | 2006-08-12 16:29:24 +1000 | [diff] [blame] | 716 | OUT_RING(dev_priv->counter); |
Jesse Barnes | 585fb11 | 2008-07-29 11:54:06 -0700 | [diff] [blame] | 717 | OUT_RING(MI_USER_INTERRUPT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 718 | ADVANCE_LP_RING(); |
Dave Airlie | bc5f452 | 2007-11-05 12:50:58 +1000 | [diff] [blame] | 719 | |
Alan Hourihane | c29b669 | 2006-08-12 16:29:24 +1000 | [diff] [blame] | 720 | return dev_priv->counter; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 721 | } |
| 722 | |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 723 | void i915_user_irq_get(struct drm_device *dev) |
Eric Anholt | ed4cb41 | 2008-07-29 12:10:39 -0700 | [diff] [blame] | 724 | { |
| 725 | 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] | 726 | unsigned long irqflags; |
Eric Anholt | ed4cb41 | 2008-07-29 12:10:39 -0700 | [diff] [blame] | 727 | |
Keith Packard | e9d21d7 | 2008-10-16 11:31:38 -0700 | [diff] [blame] | 728 | spin_lock_irqsave(&dev_priv->user_irq_lock, irqflags); |
Zhenyu Wang | 036a4a7 | 2009-06-08 14:40:19 +0800 | [diff] [blame] | 729 | if (dev->irq_enabled && (++dev_priv->user_irq_refcount == 1)) { |
Adam Jackson | f2b115e | 2009-12-03 17:14:42 -0500 | [diff] [blame] | 730 | if (IS_IRONLAKE(dev)) |
| 731 | ironlake_enable_graphics_irq(dev_priv, GT_USER_INTERRUPT); |
Zhenyu Wang | 036a4a7 | 2009-06-08 14:40:19 +0800 | [diff] [blame] | 732 | else |
| 733 | i915_enable_irq(dev_priv, I915_USER_INTERRUPT); |
| 734 | } |
Keith Packard | e9d21d7 | 2008-10-16 11:31:38 -0700 | [diff] [blame] | 735 | spin_unlock_irqrestore(&dev_priv->user_irq_lock, irqflags); |
Eric Anholt | ed4cb41 | 2008-07-29 12:10:39 -0700 | [diff] [blame] | 736 | } |
| 737 | |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 738 | void i915_user_irq_put(struct drm_device *dev) |
Eric Anholt | ed4cb41 | 2008-07-29 12:10:39 -0700 | [diff] [blame] | 739 | { |
| 740 | 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] | 741 | unsigned long irqflags; |
Eric Anholt | ed4cb41 | 2008-07-29 12:10:39 -0700 | [diff] [blame] | 742 | |
Keith Packard | e9d21d7 | 2008-10-16 11:31:38 -0700 | [diff] [blame] | 743 | spin_lock_irqsave(&dev_priv->user_irq_lock, irqflags); |
Eric Anholt | ed4cb41 | 2008-07-29 12:10:39 -0700 | [diff] [blame] | 744 | BUG_ON(dev->irq_enabled && dev_priv->user_irq_refcount <= 0); |
Zhenyu Wang | 036a4a7 | 2009-06-08 14:40:19 +0800 | [diff] [blame] | 745 | if (dev->irq_enabled && (--dev_priv->user_irq_refcount == 0)) { |
Adam Jackson | f2b115e | 2009-12-03 17:14:42 -0500 | [diff] [blame] | 746 | if (IS_IRONLAKE(dev)) |
| 747 | ironlake_disable_graphics_irq(dev_priv, GT_USER_INTERRUPT); |
Zhenyu Wang | 036a4a7 | 2009-06-08 14:40:19 +0800 | [diff] [blame] | 748 | else |
| 749 | i915_disable_irq(dev_priv, I915_USER_INTERRUPT); |
| 750 | } |
Keith Packard | e9d21d7 | 2008-10-16 11:31:38 -0700 | [diff] [blame] | 751 | spin_unlock_irqrestore(&dev_priv->user_irq_lock, irqflags); |
Eric Anholt | ed4cb41 | 2008-07-29 12:10:39 -0700 | [diff] [blame] | 752 | } |
| 753 | |
Chris Wilson | 9d34e5d | 2009-09-24 05:26:06 +0100 | [diff] [blame] | 754 | void i915_trace_irq_get(struct drm_device *dev, u32 seqno) |
| 755 | { |
| 756 | drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private; |
| 757 | |
| 758 | if (dev_priv->trace_irq_seqno == 0) |
| 759 | i915_user_irq_get(dev); |
| 760 | |
| 761 | dev_priv->trace_irq_seqno = seqno; |
| 762 | } |
| 763 | |
Dave Airlie | 84b1fd1 | 2007-07-11 15:53:27 +1000 | [diff] [blame] | 764 | static int i915_wait_irq(struct drm_device * dev, int irq_nr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 765 | { |
| 766 | 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] | 767 | struct drm_i915_master_private *master_priv = dev->primary->master->driver_priv; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 768 | int ret = 0; |
| 769 | |
Zhao Yakui | 44d98a6 | 2009-10-09 11:39:40 +0800 | [diff] [blame] | 770 | DRM_DEBUG_DRIVER("irq_nr=%d breadcrumb=%d\n", irq_nr, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 771 | READ_BREADCRUMB(dev_priv)); |
| 772 | |
Eric Anholt | ed4cb41 | 2008-07-29 12:10:39 -0700 | [diff] [blame] | 773 | if (READ_BREADCRUMB(dev_priv) >= irq_nr) { |
Dave Airlie | 7c1c287 | 2008-11-28 14:22:24 +1000 | [diff] [blame] | 774 | if (master_priv->sarea_priv) |
| 775 | master_priv->sarea_priv->last_dispatch = READ_BREADCRUMB(dev_priv); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 776 | return 0; |
Eric Anholt | ed4cb41 | 2008-07-29 12:10:39 -0700 | [diff] [blame] | 777 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 778 | |
Dave Airlie | 7c1c287 | 2008-11-28 14:22:24 +1000 | [diff] [blame] | 779 | if (master_priv->sarea_priv) |
| 780 | master_priv->sarea_priv->perf_boxes |= I915_BOX_WAIT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 781 | |
Eric Anholt | ed4cb41 | 2008-07-29 12:10:39 -0700 | [diff] [blame] | 782 | i915_user_irq_get(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 783 | DRM_WAIT_ON(ret, dev_priv->irq_queue, 3 * DRM_HZ, |
| 784 | READ_BREADCRUMB(dev_priv) >= irq_nr); |
Eric Anholt | ed4cb41 | 2008-07-29 12:10:39 -0700 | [diff] [blame] | 785 | i915_user_irq_put(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 786 | |
Eric Anholt | 20caafa | 2007-08-25 19:22:43 +1000 | [diff] [blame] | 787 | if (ret == -EBUSY) { |
Márton Németh | 3e684ea | 2008-01-24 15:58:57 +1000 | [diff] [blame] | 788 | DRM_ERROR("EBUSY -- rec: %d emitted: %d\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 789 | READ_BREADCRUMB(dev_priv), (int)dev_priv->counter); |
| 790 | } |
| 791 | |
Dave Airlie | af6061a | 2008-05-07 12:15:39 +1000 | [diff] [blame] | 792 | return ret; |
| 793 | } |
| 794 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 795 | /* Needs the lock as it touches the ring. |
| 796 | */ |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 797 | int i915_irq_emit(struct drm_device *dev, void *data, |
| 798 | struct drm_file *file_priv) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 799 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 800 | drm_i915_private_t *dev_priv = dev->dev_private; |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 801 | drm_i915_irq_emit_t *emit = data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 802 | int result; |
| 803 | |
Eric Anholt | 07f4f8b | 2009-04-16 13:46:12 -0700 | [diff] [blame] | 804 | if (!dev_priv || !dev_priv->ring.virtual_start) { |
Márton Németh | 3e684ea | 2008-01-24 15:58:57 +1000 | [diff] [blame] | 805 | DRM_ERROR("called with no initialization\n"); |
Eric Anholt | 20caafa | 2007-08-25 19:22:43 +1000 | [diff] [blame] | 806 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 807 | } |
Eric Anholt | 299eb93 | 2009-02-24 22:14:12 -0800 | [diff] [blame] | 808 | |
| 809 | RING_LOCK_TEST_WITH_RETURN(dev, file_priv); |
| 810 | |
Eric Anholt | 546b097 | 2008-09-01 16:45:29 -0700 | [diff] [blame] | 811 | mutex_lock(&dev->struct_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 812 | result = i915_emit_irq(dev); |
Eric Anholt | 546b097 | 2008-09-01 16:45:29 -0700 | [diff] [blame] | 813 | mutex_unlock(&dev->struct_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 814 | |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 815 | if (DRM_COPY_TO_USER(emit->irq_seq, &result, sizeof(int))) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 816 | DRM_ERROR("copy_to_user\n"); |
Eric Anholt | 20caafa | 2007-08-25 19:22:43 +1000 | [diff] [blame] | 817 | return -EFAULT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 818 | } |
| 819 | |
| 820 | return 0; |
| 821 | } |
| 822 | |
| 823 | /* Doesn't need the hardware lock. |
| 824 | */ |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 825 | int i915_irq_wait(struct drm_device *dev, void *data, |
| 826 | struct drm_file *file_priv) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 827 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 828 | drm_i915_private_t *dev_priv = dev->dev_private; |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 829 | drm_i915_irq_wait_t *irqwait = data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 830 | |
| 831 | if (!dev_priv) { |
Márton Németh | 3e684ea | 2008-01-24 15:58:57 +1000 | [diff] [blame] | 832 | DRM_ERROR("called with no initialization\n"); |
Eric Anholt | 20caafa | 2007-08-25 19:22:43 +1000 | [diff] [blame] | 833 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 834 | } |
| 835 | |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 836 | return i915_wait_irq(dev, irqwait->irq_seq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 837 | } |
| 838 | |
Keith Packard | 42f52ef | 2008-10-18 19:39:29 -0700 | [diff] [blame] | 839 | /* Called from drm generic code, passed 'crtc' which |
| 840 | * we use as a pipe index |
| 841 | */ |
| 842 | int i915_enable_vblank(struct drm_device *dev, int pipe) |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 843 | { |
| 844 | 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] | 845 | unsigned long irqflags; |
Jesse Barnes | 71e0ffa | 2009-01-08 10:42:15 -0800 | [diff] [blame] | 846 | int pipeconf_reg = (pipe == 0) ? PIPEACONF : PIPEBCONF; |
| 847 | u32 pipeconf; |
| 848 | |
| 849 | pipeconf = I915_READ(pipeconf_reg); |
| 850 | if (!(pipeconf & PIPEACONF_ENABLE)) |
| 851 | return -EINVAL; |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 852 | |
Keith Packard | e9d21d7 | 2008-10-16 11:31:38 -0700 | [diff] [blame] | 853 | spin_lock_irqsave(&dev_priv->user_irq_lock, irqflags); |
Li Peng | c062df6 | 2010-01-23 00:12:58 +0800 | [diff] [blame] | 854 | if (IS_IRONLAKE(dev)) |
| 855 | ironlake_enable_display_irq(dev_priv, (pipe == 0) ? |
| 856 | DE_PIPEA_VBLANK: DE_PIPEB_VBLANK); |
| 857 | else if (IS_I965G(dev)) |
Keith Packard | 7c46358 | 2008-11-04 02:03:27 -0800 | [diff] [blame] | 858 | i915_enable_pipestat(dev_priv, pipe, |
| 859 | PIPE_START_VBLANK_INTERRUPT_ENABLE); |
Keith Packard | e9d21d7 | 2008-10-16 11:31:38 -0700 | [diff] [blame] | 860 | else |
Keith Packard | 7c46358 | 2008-11-04 02:03:27 -0800 | [diff] [blame] | 861 | i915_enable_pipestat(dev_priv, pipe, |
| 862 | PIPE_VBLANK_INTERRUPT_ENABLE); |
Keith Packard | e9d21d7 | 2008-10-16 11:31:38 -0700 | [diff] [blame] | 863 | spin_unlock_irqrestore(&dev_priv->user_irq_lock, irqflags); |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 864 | return 0; |
| 865 | } |
| 866 | |
Keith Packard | 42f52ef | 2008-10-18 19:39:29 -0700 | [diff] [blame] | 867 | /* Called from drm generic code, passed 'crtc' which |
| 868 | * we use as a pipe index |
| 869 | */ |
| 870 | void i915_disable_vblank(struct drm_device *dev, int pipe) |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 871 | { |
| 872 | 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] | 873 | unsigned long irqflags; |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 874 | |
Keith Packard | e9d21d7 | 2008-10-16 11:31:38 -0700 | [diff] [blame] | 875 | spin_lock_irqsave(&dev_priv->user_irq_lock, irqflags); |
Li Peng | c062df6 | 2010-01-23 00:12:58 +0800 | [diff] [blame] | 876 | if (IS_IRONLAKE(dev)) |
| 877 | ironlake_disable_display_irq(dev_priv, (pipe == 0) ? |
| 878 | DE_PIPEA_VBLANK: DE_PIPEB_VBLANK); |
| 879 | else |
| 880 | i915_disable_pipestat(dev_priv, pipe, |
| 881 | PIPE_VBLANK_INTERRUPT_ENABLE | |
| 882 | PIPE_START_VBLANK_INTERRUPT_ENABLE); |
Keith Packard | e9d21d7 | 2008-10-16 11:31:38 -0700 | [diff] [blame] | 883 | spin_unlock_irqrestore(&dev_priv->user_irq_lock, irqflags); |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 884 | } |
| 885 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 886 | void i915_enable_interrupt (struct drm_device *dev) |
| 887 | { |
| 888 | struct drm_i915_private *dev_priv = dev->dev_private; |
Zhenyu Wang | e170b03 | 2009-06-05 15:38:40 +0800 | [diff] [blame] | 889 | |
Adam Jackson | f2b115e | 2009-12-03 17:14:42 -0500 | [diff] [blame] | 890 | if (!IS_IRONLAKE(dev)) |
Zhenyu Wang | e170b03 | 2009-06-05 15:38:40 +0800 | [diff] [blame] | 891 | opregion_enable_asle(dev); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 892 | dev_priv->irq_enabled = 1; |
| 893 | } |
| 894 | |
| 895 | |
Dave Airlie | 702880f | 2006-06-24 17:07:34 +1000 | [diff] [blame] | 896 | /* Set the vblank monitor pipe |
| 897 | */ |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 898 | int i915_vblank_pipe_set(struct drm_device *dev, void *data, |
| 899 | struct drm_file *file_priv) |
Dave Airlie | 702880f | 2006-06-24 17:07:34 +1000 | [diff] [blame] | 900 | { |
Dave Airlie | 702880f | 2006-06-24 17:07:34 +1000 | [diff] [blame] | 901 | drm_i915_private_t *dev_priv = dev->dev_private; |
Dave Airlie | 702880f | 2006-06-24 17:07:34 +1000 | [diff] [blame] | 902 | |
| 903 | if (!dev_priv) { |
Márton Németh | 3e684ea | 2008-01-24 15:58:57 +1000 | [diff] [blame] | 904 | DRM_ERROR("called with no initialization\n"); |
Eric Anholt | 20caafa | 2007-08-25 19:22:43 +1000 | [diff] [blame] | 905 | return -EINVAL; |
Dave Airlie | 702880f | 2006-06-24 17:07:34 +1000 | [diff] [blame] | 906 | } |
| 907 | |
=?utf-8?q?Michel_D=C3=A4nzer?= | 5b51694 | 2006-10-25 00:08:23 +1000 | [diff] [blame] | 908 | return 0; |
Dave Airlie | 702880f | 2006-06-24 17:07:34 +1000 | [diff] [blame] | 909 | } |
| 910 | |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 911 | int i915_vblank_pipe_get(struct drm_device *dev, void *data, |
| 912 | struct drm_file *file_priv) |
Dave Airlie | 702880f | 2006-06-24 17:07:34 +1000 | [diff] [blame] | 913 | { |
Dave Airlie | 702880f | 2006-06-24 17:07:34 +1000 | [diff] [blame] | 914 | drm_i915_private_t *dev_priv = dev->dev_private; |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 915 | drm_i915_vblank_pipe_t *pipe = data; |
Dave Airlie | 702880f | 2006-06-24 17:07:34 +1000 | [diff] [blame] | 916 | |
| 917 | if (!dev_priv) { |
Márton Németh | 3e684ea | 2008-01-24 15:58:57 +1000 | [diff] [blame] | 918 | DRM_ERROR("called with no initialization\n"); |
Eric Anholt | 20caafa | 2007-08-25 19:22:43 +1000 | [diff] [blame] | 919 | return -EINVAL; |
Dave Airlie | 702880f | 2006-06-24 17:07:34 +1000 | [diff] [blame] | 920 | } |
| 921 | |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 922 | pipe->pipe = DRM_I915_VBLANK_PIPE_A | DRM_I915_VBLANK_PIPE_B; |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 923 | |
Dave Airlie | 702880f | 2006-06-24 17:07:34 +1000 | [diff] [blame] | 924 | return 0; |
| 925 | } |
| 926 | |
=?utf-8?q?Michel_D=C3=A4nzer?= | a6b54f3 | 2006-10-24 23:37:43 +1000 | [diff] [blame] | 927 | /** |
| 928 | * Schedule buffer swap at given vertical blank. |
| 929 | */ |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 930 | int i915_vblank_swap(struct drm_device *dev, void *data, |
| 931 | struct drm_file *file_priv) |
=?utf-8?q?Michel_D=C3=A4nzer?= | a6b54f3 | 2006-10-24 23:37:43 +1000 | [diff] [blame] | 932 | { |
Eric Anholt | bd95e0a | 2008-11-04 12:01:24 -0800 | [diff] [blame] | 933 | /* The delayed swap mechanism was fundamentally racy, and has been |
| 934 | * removed. The model was that the client requested a delayed flip/swap |
| 935 | * from the kernel, then waited for vblank before continuing to perform |
| 936 | * rendering. The problem was that the kernel might wake the client |
| 937 | * up before it dispatched the vblank swap (since the lock has to be |
| 938 | * held while touching the ringbuffer), in which case the client would |
| 939 | * clear and start the next frame before the swap occurred, and |
| 940 | * flicker would occur in addition to likely missing the vblank. |
| 941 | * |
| 942 | * In the absence of this ioctl, userland falls back to a correct path |
| 943 | * of waiting for a vblank, then dispatching the swap on its own. |
| 944 | * Context switching to userland and back is plenty fast enough for |
| 945 | * meeting the requirements of vblank swapping. |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 946 | */ |
Eric Anholt | bd95e0a | 2008-11-04 12:01:24 -0800 | [diff] [blame] | 947 | return -EINVAL; |
=?utf-8?q?Michel_D=C3=A4nzer?= | a6b54f3 | 2006-10-24 23:37:43 +1000 | [diff] [blame] | 948 | } |
| 949 | |
Ben Gamari | f65d942 | 2009-09-14 17:48:44 -0400 | [diff] [blame] | 950 | struct drm_i915_gem_request *i915_get_tail_request(struct drm_device *dev) { |
| 951 | drm_i915_private_t *dev_priv = dev->dev_private; |
| 952 | return list_entry(dev_priv->mm.request_list.prev, struct drm_i915_gem_request, list); |
| 953 | } |
| 954 | |
| 955 | /** |
| 956 | * This is called when the chip hasn't reported back with completed |
| 957 | * batchbuffers in a long time. The first time this is called we simply record |
| 958 | * ACTHD. If ACTHD hasn't changed by the time the hangcheck timer elapses |
| 959 | * again, we assume the chip is wedged and try to fix it. |
| 960 | */ |
| 961 | void i915_hangcheck_elapsed(unsigned long data) |
| 962 | { |
| 963 | struct drm_device *dev = (struct drm_device *)data; |
| 964 | drm_i915_private_t *dev_priv = dev->dev_private; |
| 965 | uint32_t acthd; |
| 966 | |
| 967 | if (!IS_I965G(dev)) |
| 968 | acthd = I915_READ(ACTHD); |
| 969 | else |
| 970 | acthd = I915_READ(ACTHD_I965); |
| 971 | |
| 972 | /* If all work is done then ACTHD clearly hasn't advanced. */ |
| 973 | if (list_empty(&dev_priv->mm.request_list) || |
| 974 | i915_seqno_passed(i915_get_gem_seqno(dev), i915_get_tail_request(dev)->seqno)) { |
| 975 | dev_priv->hangcheck_count = 0; |
| 976 | return; |
| 977 | } |
| 978 | |
| 979 | if (dev_priv->last_acthd == acthd && dev_priv->hangcheck_count > 0) { |
| 980 | DRM_ERROR("Hangcheck timer elapsed... GPU hung\n"); |
Ben Gamari | ba1234d | 2009-09-14 17:48:47 -0400 | [diff] [blame] | 981 | i915_handle_error(dev, true); |
Ben Gamari | f65d942 | 2009-09-14 17:48:44 -0400 | [diff] [blame] | 982 | return; |
| 983 | } |
| 984 | |
| 985 | /* Reset timer case chip hangs without another request being added */ |
| 986 | mod_timer(&dev_priv->hangcheck_timer, jiffies + DRM_I915_HANGCHECK_PERIOD); |
| 987 | |
| 988 | if (acthd != dev_priv->last_acthd) |
| 989 | dev_priv->hangcheck_count = 0; |
| 990 | else |
| 991 | dev_priv->hangcheck_count++; |
| 992 | |
| 993 | dev_priv->last_acthd = acthd; |
| 994 | } |
| 995 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 996 | /* drm_dma.h hooks |
| 997 | */ |
Adam Jackson | f2b115e | 2009-12-03 17:14:42 -0500 | [diff] [blame] | 998 | static void ironlake_irq_preinstall(struct drm_device *dev) |
Zhenyu Wang | 036a4a7 | 2009-06-08 14:40:19 +0800 | [diff] [blame] | 999 | { |
| 1000 | drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private; |
| 1001 | |
| 1002 | I915_WRITE(HWSTAM, 0xeffe); |
| 1003 | |
| 1004 | /* XXX hotplug from PCH */ |
| 1005 | |
| 1006 | I915_WRITE(DEIMR, 0xffffffff); |
| 1007 | I915_WRITE(DEIER, 0x0); |
| 1008 | (void) I915_READ(DEIER); |
| 1009 | |
| 1010 | /* and GT */ |
| 1011 | I915_WRITE(GTIMR, 0xffffffff); |
| 1012 | I915_WRITE(GTIER, 0x0); |
| 1013 | (void) I915_READ(GTIER); |
Zhenyu Wang | c650156 | 2009-11-03 18:57:21 +0000 | [diff] [blame] | 1014 | |
| 1015 | /* south display irq */ |
| 1016 | I915_WRITE(SDEIMR, 0xffffffff); |
| 1017 | I915_WRITE(SDEIER, 0x0); |
| 1018 | (void) I915_READ(SDEIER); |
Zhenyu Wang | 036a4a7 | 2009-06-08 14:40:19 +0800 | [diff] [blame] | 1019 | } |
| 1020 | |
Adam Jackson | f2b115e | 2009-12-03 17:14:42 -0500 | [diff] [blame] | 1021 | static int ironlake_irq_postinstall(struct drm_device *dev) |
Zhenyu Wang | 036a4a7 | 2009-06-08 14:40:19 +0800 | [diff] [blame] | 1022 | { |
| 1023 | drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private; |
| 1024 | /* enable kind of interrupts always enabled */ |
Li Peng | 643ced9 | 2010-01-28 01:05:09 +0800 | [diff] [blame^] | 1025 | u32 display_mask = DE_MASTER_IRQ_CONTROL | DE_GSE | DE_PCH_EVENT; |
Zhenyu Wang | 036a4a7 | 2009-06-08 14:40:19 +0800 | [diff] [blame] | 1026 | u32 render_mask = GT_USER_INTERRUPT; |
Zhenyu Wang | c650156 | 2009-11-03 18:57:21 +0000 | [diff] [blame] | 1027 | u32 hotplug_mask = SDE_CRT_HOTPLUG | SDE_PORTB_HOTPLUG | |
| 1028 | SDE_PORTC_HOTPLUG | SDE_PORTD_HOTPLUG; |
Zhenyu Wang | 036a4a7 | 2009-06-08 14:40:19 +0800 | [diff] [blame] | 1029 | |
| 1030 | dev_priv->irq_mask_reg = ~display_mask; |
Li Peng | 643ced9 | 2010-01-28 01:05:09 +0800 | [diff] [blame^] | 1031 | 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] | 1032 | |
| 1033 | /* should always can generate irq */ |
| 1034 | I915_WRITE(DEIIR, I915_READ(DEIIR)); |
| 1035 | I915_WRITE(DEIMR, dev_priv->irq_mask_reg); |
| 1036 | I915_WRITE(DEIER, dev_priv->de_irq_enable_reg); |
| 1037 | (void) I915_READ(DEIER); |
| 1038 | |
| 1039 | /* user interrupt should be enabled, but masked initial */ |
| 1040 | dev_priv->gt_irq_mask_reg = 0xffffffff; |
| 1041 | dev_priv->gt_irq_enable_reg = render_mask; |
| 1042 | |
| 1043 | I915_WRITE(GTIIR, I915_READ(GTIIR)); |
| 1044 | I915_WRITE(GTIMR, dev_priv->gt_irq_mask_reg); |
| 1045 | I915_WRITE(GTIER, dev_priv->gt_irq_enable_reg); |
| 1046 | (void) I915_READ(GTIER); |
| 1047 | |
Zhenyu Wang | c650156 | 2009-11-03 18:57:21 +0000 | [diff] [blame] | 1048 | dev_priv->pch_irq_mask_reg = ~hotplug_mask; |
| 1049 | dev_priv->pch_irq_enable_reg = hotplug_mask; |
| 1050 | |
| 1051 | I915_WRITE(SDEIIR, I915_READ(SDEIIR)); |
| 1052 | I915_WRITE(SDEIMR, dev_priv->pch_irq_mask_reg); |
| 1053 | I915_WRITE(SDEIER, dev_priv->pch_irq_enable_reg); |
| 1054 | (void) I915_READ(SDEIER); |
| 1055 | |
Zhenyu Wang | 036a4a7 | 2009-06-08 14:40:19 +0800 | [diff] [blame] | 1056 | return 0; |
| 1057 | } |
| 1058 | |
Dave Airlie | 84b1fd1 | 2007-07-11 15:53:27 +1000 | [diff] [blame] | 1059 | void i915_driver_irq_preinstall(struct drm_device * dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1060 | { |
| 1061 | drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private; |
| 1062 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1063 | atomic_set(&dev_priv->irq_received, 0); |
| 1064 | |
Zhenyu Wang | 036a4a7 | 2009-06-08 14:40:19 +0800 | [diff] [blame] | 1065 | INIT_WORK(&dev_priv->hotplug_work, i915_hotplug_work_func); |
Jesse Barnes | 8a90523 | 2009-07-11 16:48:03 -0400 | [diff] [blame] | 1066 | INIT_WORK(&dev_priv->error_work, i915_error_work_func); |
Zhenyu Wang | 036a4a7 | 2009-06-08 14:40:19 +0800 | [diff] [blame] | 1067 | |
Adam Jackson | f2b115e | 2009-12-03 17:14:42 -0500 | [diff] [blame] | 1068 | if (IS_IRONLAKE(dev)) { |
| 1069 | ironlake_irq_preinstall(dev); |
Zhenyu Wang | 036a4a7 | 2009-06-08 14:40:19 +0800 | [diff] [blame] | 1070 | return; |
| 1071 | } |
| 1072 | |
Jesse Barnes | 5ca5828 | 2009-03-31 14:11:15 -0700 | [diff] [blame] | 1073 | if (I915_HAS_HOTPLUG(dev)) { |
| 1074 | I915_WRITE(PORT_HOTPLUG_EN, 0); |
| 1075 | I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT)); |
| 1076 | } |
| 1077 | |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 1078 | I915_WRITE(HWSTAM, 0xeffe); |
Keith Packard | 7c46358 | 2008-11-04 02:03:27 -0800 | [diff] [blame] | 1079 | I915_WRITE(PIPEASTAT, 0); |
| 1080 | I915_WRITE(PIPEBSTAT, 0); |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 1081 | I915_WRITE(IMR, 0xffffffff); |
Eric Anholt | ed4cb41 | 2008-07-29 12:10:39 -0700 | [diff] [blame] | 1082 | I915_WRITE(IER, 0x0); |
Keith Packard | 7c46358 | 2008-11-04 02:03:27 -0800 | [diff] [blame] | 1083 | (void) I915_READ(IER); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1084 | } |
| 1085 | |
Jesse Barnes | b01f2c3 | 2009-12-11 11:07:17 -0800 | [diff] [blame] | 1086 | /* |
| 1087 | * Must be called after intel_modeset_init or hotplug interrupts won't be |
| 1088 | * enabled correctly. |
| 1089 | */ |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 1090 | int i915_driver_irq_postinstall(struct drm_device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1091 | { |
| 1092 | 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] | 1093 | u32 enable_mask = I915_INTERRUPT_ENABLE_FIX | I915_INTERRUPT_ENABLE_VAR; |
Jesse Barnes | 63eeaf3 | 2009-06-18 16:56:52 -0700 | [diff] [blame] | 1094 | u32 error_mask; |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 1095 | |
Zhenyu Wang | 036a4a7 | 2009-06-08 14:40:19 +0800 | [diff] [blame] | 1096 | DRM_INIT_WAITQUEUE(&dev_priv->irq_queue); |
| 1097 | |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 1098 | 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] | 1099 | |
Adam Jackson | f2b115e | 2009-12-03 17:14:42 -0500 | [diff] [blame] | 1100 | if (IS_IRONLAKE(dev)) |
| 1101 | return ironlake_irq_postinstall(dev); |
Zhenyu Wang | 036a4a7 | 2009-06-08 14:40:19 +0800 | [diff] [blame] | 1102 | |
Keith Packard | 7c46358 | 2008-11-04 02:03:27 -0800 | [diff] [blame] | 1103 | /* Unmask the interrupts that we always want on. */ |
| 1104 | dev_priv->irq_mask_reg = ~I915_INTERRUPT_ENABLE_FIX; |
Matthew Garrett | 8ee1c3d | 2008-08-05 19:37:25 +0100 | [diff] [blame] | 1105 | |
Keith Packard | 7c46358 | 2008-11-04 02:03:27 -0800 | [diff] [blame] | 1106 | dev_priv->pipestat[0] = 0; |
| 1107 | dev_priv->pipestat[1] = 0; |
| 1108 | |
Jesse Barnes | 5ca5828 | 2009-03-31 14:11:15 -0700 | [diff] [blame] | 1109 | if (I915_HAS_HOTPLUG(dev)) { |
| 1110 | u32 hotplug_en = I915_READ(PORT_HOTPLUG_EN); |
| 1111 | |
Jesse Barnes | b01f2c3 | 2009-12-11 11:07:17 -0800 | [diff] [blame] | 1112 | /* Note HDMI and DP share bits */ |
| 1113 | if (dev_priv->hotplug_supported_mask & HDMIB_HOTPLUG_INT_STATUS) |
| 1114 | hotplug_en |= HDMIB_HOTPLUG_INT_EN; |
| 1115 | if (dev_priv->hotplug_supported_mask & HDMIC_HOTPLUG_INT_STATUS) |
| 1116 | hotplug_en |= HDMIC_HOTPLUG_INT_EN; |
| 1117 | if (dev_priv->hotplug_supported_mask & HDMID_HOTPLUG_INT_STATUS) |
| 1118 | hotplug_en |= HDMID_HOTPLUG_INT_EN; |
| 1119 | if (dev_priv->hotplug_supported_mask & SDVOC_HOTPLUG_INT_STATUS) |
| 1120 | hotplug_en |= SDVOC_HOTPLUG_INT_EN; |
| 1121 | if (dev_priv->hotplug_supported_mask & SDVOB_HOTPLUG_INT_STATUS) |
| 1122 | hotplug_en |= SDVOB_HOTPLUG_INT_EN; |
| 1123 | if (dev_priv->hotplug_supported_mask & CRT_HOTPLUG_INT_STATUS) |
| 1124 | hotplug_en |= CRT_HOTPLUG_INT_EN; |
| 1125 | /* Ignore TV since it's buggy */ |
| 1126 | |
Jesse Barnes | 5ca5828 | 2009-03-31 14:11:15 -0700 | [diff] [blame] | 1127 | I915_WRITE(PORT_HOTPLUG_EN, hotplug_en); |
| 1128 | |
Jesse Barnes | 5ca5828 | 2009-03-31 14:11:15 -0700 | [diff] [blame] | 1129 | /* Enable in IER... */ |
| 1130 | enable_mask |= I915_DISPLAY_PORT_INTERRUPT; |
| 1131 | /* and unmask in IMR */ |
| 1132 | i915_enable_irq(dev_priv, I915_DISPLAY_PORT_INTERRUPT); |
| 1133 | } |
| 1134 | |
Jesse Barnes | 63eeaf3 | 2009-06-18 16:56:52 -0700 | [diff] [blame] | 1135 | /* |
| 1136 | * Enable some error detection, note the instruction error mask |
| 1137 | * bit is reserved, so we leave it masked. |
| 1138 | */ |
| 1139 | if (IS_G4X(dev)) { |
| 1140 | error_mask = ~(GM45_ERROR_PAGE_TABLE | |
| 1141 | GM45_ERROR_MEM_PRIV | |
| 1142 | GM45_ERROR_CP_PRIV | |
| 1143 | I915_ERROR_MEMORY_REFRESH); |
| 1144 | } else { |
| 1145 | error_mask = ~(I915_ERROR_PAGE_TABLE | |
| 1146 | I915_ERROR_MEMORY_REFRESH); |
| 1147 | } |
| 1148 | I915_WRITE(EMR, error_mask); |
| 1149 | |
Keith Packard | 7c46358 | 2008-11-04 02:03:27 -0800 | [diff] [blame] | 1150 | /* Disable pipe interrupt enables, clear pending pipe status */ |
| 1151 | I915_WRITE(PIPEASTAT, I915_READ(PIPEASTAT) & 0x8000ffff); |
| 1152 | I915_WRITE(PIPEBSTAT, I915_READ(PIPEBSTAT) & 0x8000ffff); |
| 1153 | /* Clear pending interrupt status */ |
| 1154 | I915_WRITE(IIR, I915_READ(IIR)); |
| 1155 | |
Jesse Barnes | 5ca5828 | 2009-03-31 14:11:15 -0700 | [diff] [blame] | 1156 | I915_WRITE(IER, enable_mask); |
Keith Packard | 7c46358 | 2008-11-04 02:03:27 -0800 | [diff] [blame] | 1157 | I915_WRITE(IMR, dev_priv->irq_mask_reg); |
Eric Anholt | ed4cb41 | 2008-07-29 12:10:39 -0700 | [diff] [blame] | 1158 | (void) I915_READ(IER); |
| 1159 | |
Matthew Garrett | 8ee1c3d | 2008-08-05 19:37:25 +0100 | [diff] [blame] | 1160 | opregion_enable_asle(dev); |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 1161 | |
| 1162 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1163 | } |
| 1164 | |
Adam Jackson | f2b115e | 2009-12-03 17:14:42 -0500 | [diff] [blame] | 1165 | static void ironlake_irq_uninstall(struct drm_device *dev) |
Zhenyu Wang | 036a4a7 | 2009-06-08 14:40:19 +0800 | [diff] [blame] | 1166 | { |
| 1167 | drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private; |
| 1168 | I915_WRITE(HWSTAM, 0xffffffff); |
| 1169 | |
| 1170 | I915_WRITE(DEIMR, 0xffffffff); |
| 1171 | I915_WRITE(DEIER, 0x0); |
| 1172 | I915_WRITE(DEIIR, I915_READ(DEIIR)); |
| 1173 | |
| 1174 | I915_WRITE(GTIMR, 0xffffffff); |
| 1175 | I915_WRITE(GTIER, 0x0); |
| 1176 | I915_WRITE(GTIIR, I915_READ(GTIIR)); |
| 1177 | } |
| 1178 | |
Dave Airlie | 84b1fd1 | 2007-07-11 15:53:27 +1000 | [diff] [blame] | 1179 | void i915_driver_irq_uninstall(struct drm_device * dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1180 | { |
| 1181 | 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] | 1182 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1183 | if (!dev_priv) |
| 1184 | return; |
| 1185 | |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 1186 | dev_priv->vblank_pipe = 0; |
| 1187 | |
Adam Jackson | f2b115e | 2009-12-03 17:14:42 -0500 | [diff] [blame] | 1188 | if (IS_IRONLAKE(dev)) { |
| 1189 | ironlake_irq_uninstall(dev); |
Zhenyu Wang | 036a4a7 | 2009-06-08 14:40:19 +0800 | [diff] [blame] | 1190 | return; |
| 1191 | } |
| 1192 | |
Jesse Barnes | 5ca5828 | 2009-03-31 14:11:15 -0700 | [diff] [blame] | 1193 | if (I915_HAS_HOTPLUG(dev)) { |
| 1194 | I915_WRITE(PORT_HOTPLUG_EN, 0); |
| 1195 | I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT)); |
| 1196 | } |
| 1197 | |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 1198 | I915_WRITE(HWSTAM, 0xffffffff); |
Keith Packard | 7c46358 | 2008-11-04 02:03:27 -0800 | [diff] [blame] | 1199 | I915_WRITE(PIPEASTAT, 0); |
| 1200 | I915_WRITE(PIPEBSTAT, 0); |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 1201 | I915_WRITE(IMR, 0xffffffff); |
Eric Anholt | ed4cb41 | 2008-07-29 12:10:39 -0700 | [diff] [blame] | 1202 | I915_WRITE(IER, 0x0); |
Dave Airlie | 91e3738 | 2006-02-18 15:17:04 +1100 | [diff] [blame] | 1203 | |
Keith Packard | 7c46358 | 2008-11-04 02:03:27 -0800 | [diff] [blame] | 1204 | I915_WRITE(PIPEASTAT, I915_READ(PIPEASTAT) & 0x8000ffff); |
| 1205 | I915_WRITE(PIPEBSTAT, I915_READ(PIPEBSTAT) & 0x8000ffff); |
| 1206 | I915_WRITE(IIR, I915_READ(IIR)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1207 | } |