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 | |
Joe Perches | a70491c | 2012-03-18 13:00:11 -0700 | [diff] [blame] | 29 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
| 30 | |
Jesse Barnes | 63eeaf3 | 2009-06-18 16:56:52 -0700 | [diff] [blame] | 31 | #include <linux/sysrq.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 32 | #include <linux/slab.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | #include "drmP.h" |
| 34 | #include "drm.h" |
| 35 | #include "i915_drm.h" |
| 36 | #include "i915_drv.h" |
Chris Wilson | 1c5d22f | 2009-08-25 11:15:50 +0100 | [diff] [blame] | 37 | #include "i915_trace.h" |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 38 | #include "intel_drv.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | |
Zhenyu Wang | 036a4a7 | 2009-06-08 14:40:19 +0800 | [diff] [blame] | 40 | /* For display hotplug interrupt */ |
Chris Wilson | 995b676 | 2010-08-20 13:23:26 +0100 | [diff] [blame] | 41 | static void |
Adam Jackson | f2b115e | 2009-12-03 17:14:42 -0500 | [diff] [blame] | 42 | ironlake_enable_display_irq(drm_i915_private_t *dev_priv, u32 mask) |
Zhenyu Wang | 036a4a7 | 2009-06-08 14:40:19 +0800 | [diff] [blame] | 43 | { |
Chris Wilson | 1ec14ad | 2010-12-04 11:30:53 +0000 | [diff] [blame] | 44 | if ((dev_priv->irq_mask & mask) != 0) { |
| 45 | dev_priv->irq_mask &= ~mask; |
| 46 | I915_WRITE(DEIMR, dev_priv->irq_mask); |
Chris Wilson | 3143a2b | 2010-11-16 15:55:10 +0000 | [diff] [blame] | 47 | POSTING_READ(DEIMR); |
Zhenyu Wang | 036a4a7 | 2009-06-08 14:40:19 +0800 | [diff] [blame] | 48 | } |
| 49 | } |
| 50 | |
| 51 | static inline void |
Adam Jackson | f2b115e | 2009-12-03 17:14:42 -0500 | [diff] [blame] | 52 | ironlake_disable_display_irq(drm_i915_private_t *dev_priv, u32 mask) |
Zhenyu Wang | 036a4a7 | 2009-06-08 14:40:19 +0800 | [diff] [blame] | 53 | { |
Chris Wilson | 1ec14ad | 2010-12-04 11:30:53 +0000 | [diff] [blame] | 54 | if ((dev_priv->irq_mask & mask) != mask) { |
| 55 | dev_priv->irq_mask |= mask; |
| 56 | I915_WRITE(DEIMR, dev_priv->irq_mask); |
Chris Wilson | 3143a2b | 2010-11-16 15:55:10 +0000 | [diff] [blame] | 57 | POSTING_READ(DEIMR); |
Zhenyu Wang | 036a4a7 | 2009-06-08 14:40:19 +0800 | [diff] [blame] | 58 | } |
| 59 | } |
| 60 | |
Keith Packard | 7c46358 | 2008-11-04 02:03:27 -0800 | [diff] [blame] | 61 | void |
| 62 | i915_enable_pipestat(drm_i915_private_t *dev_priv, int pipe, u32 mask) |
| 63 | { |
| 64 | if ((dev_priv->pipestat[pipe] & mask) != mask) { |
Jesse Barnes | 9db4a9c | 2011-02-07 12:26:52 -0800 | [diff] [blame] | 65 | u32 reg = PIPESTAT(pipe); |
Keith Packard | 7c46358 | 2008-11-04 02:03:27 -0800 | [diff] [blame] | 66 | |
| 67 | dev_priv->pipestat[pipe] |= mask; |
| 68 | /* Enable the interrupt, clear any pending status */ |
| 69 | I915_WRITE(reg, dev_priv->pipestat[pipe] | (mask >> 16)); |
Chris Wilson | 3143a2b | 2010-11-16 15:55:10 +0000 | [diff] [blame] | 70 | POSTING_READ(reg); |
Keith Packard | 7c46358 | 2008-11-04 02:03:27 -0800 | [diff] [blame] | 71 | } |
| 72 | } |
| 73 | |
| 74 | void |
| 75 | i915_disable_pipestat(drm_i915_private_t *dev_priv, int pipe, u32 mask) |
| 76 | { |
| 77 | if ((dev_priv->pipestat[pipe] & mask) != 0) { |
Jesse Barnes | 9db4a9c | 2011-02-07 12:26:52 -0800 | [diff] [blame] | 78 | u32 reg = PIPESTAT(pipe); |
Keith Packard | 7c46358 | 2008-11-04 02:03:27 -0800 | [diff] [blame] | 79 | |
| 80 | dev_priv->pipestat[pipe] &= ~mask; |
| 81 | I915_WRITE(reg, dev_priv->pipestat[pipe]); |
Chris Wilson | 3143a2b | 2010-11-16 15:55:10 +0000 | [diff] [blame] | 82 | POSTING_READ(reg); |
Keith Packard | 7c46358 | 2008-11-04 02:03:27 -0800 | [diff] [blame] | 83 | } |
| 84 | } |
| 85 | |
=?utf-8?q?Michel_D=C3=A4nzer?= | a6b54f3 | 2006-10-24 23:37:43 +1000 | [diff] [blame] | 86 | /** |
Zhao Yakui | 01c6688 | 2009-10-28 05:10:00 +0000 | [diff] [blame] | 87 | * intel_enable_asle - enable ASLE interrupt for OpRegion |
| 88 | */ |
Chris Wilson | 1ec14ad | 2010-12-04 11:30:53 +0000 | [diff] [blame] | 89 | void intel_enable_asle(struct drm_device *dev) |
Zhao Yakui | 01c6688 | 2009-10-28 05:10:00 +0000 | [diff] [blame] | 90 | { |
Chris Wilson | 1ec14ad | 2010-12-04 11:30:53 +0000 | [diff] [blame] | 91 | drm_i915_private_t *dev_priv = dev->dev_private; |
| 92 | unsigned long irqflags; |
| 93 | |
Jesse Barnes | 7e231dbe | 2012-03-28 13:39:38 -0700 | [diff] [blame] | 94 | /* FIXME: opregion/asle for VLV */ |
| 95 | if (IS_VALLEYVIEW(dev)) |
| 96 | return; |
| 97 | |
Chris Wilson | 1ec14ad | 2010-12-04 11:30:53 +0000 | [diff] [blame] | 98 | spin_lock_irqsave(&dev_priv->irq_lock, irqflags); |
Zhao Yakui | 01c6688 | 2009-10-28 05:10:00 +0000 | [diff] [blame] | 99 | |
Eric Anholt | c619eed | 2010-01-28 16:45:52 -0800 | [diff] [blame] | 100 | if (HAS_PCH_SPLIT(dev)) |
Adam Jackson | f2b115e | 2009-12-03 17:14:42 -0500 | [diff] [blame] | 101 | ironlake_enable_display_irq(dev_priv, DE_GSE); |
Zhao Yakui | edcb49c | 2010-04-07 17:11:21 +0800 | [diff] [blame] | 102 | else { |
Zhao Yakui | 01c6688 | 2009-10-28 05:10:00 +0000 | [diff] [blame] | 103 | i915_enable_pipestat(dev_priv, 1, |
Jesse Barnes | d874bcf | 2010-06-30 13:16:00 -0700 | [diff] [blame] | 104 | PIPE_LEGACY_BLC_EVENT_ENABLE); |
Chris Wilson | a6c45cf | 2010-09-17 00:32:17 +0100 | [diff] [blame] | 105 | if (INTEL_INFO(dev)->gen >= 4) |
Zhao Yakui | edcb49c | 2010-04-07 17:11:21 +0800 | [diff] [blame] | 106 | i915_enable_pipestat(dev_priv, 0, |
Jesse Barnes | d874bcf | 2010-06-30 13:16:00 -0700 | [diff] [blame] | 107 | PIPE_LEGACY_BLC_EVENT_ENABLE); |
Zhao Yakui | edcb49c | 2010-04-07 17:11:21 +0800 | [diff] [blame] | 108 | } |
Chris Wilson | 1ec14ad | 2010-12-04 11:30:53 +0000 | [diff] [blame] | 109 | |
| 110 | spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags); |
Zhao Yakui | 01c6688 | 2009-10-28 05:10:00 +0000 | [diff] [blame] | 111 | } |
| 112 | |
| 113 | /** |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 114 | * i915_pipe_enabled - check if a pipe is enabled |
| 115 | * @dev: DRM device |
| 116 | * @pipe: pipe to check |
| 117 | * |
| 118 | * Reading certain registers when the pipe is disabled can hang the chip. |
| 119 | * Use this routine to make sure the PLL is running and the pipe is active |
| 120 | * before reading such registers if unsure. |
| 121 | */ |
| 122 | static int |
| 123 | i915_pipe_enabled(struct drm_device *dev, int pipe) |
| 124 | { |
| 125 | drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private; |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 126 | return I915_READ(PIPECONF(pipe)) & PIPECONF_ENABLE; |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 127 | } |
| 128 | |
Keith Packard | 42f52ef | 2008-10-18 19:39:29 -0700 | [diff] [blame] | 129 | /* Called from drm generic code, passed a 'crtc', which |
| 130 | * we use as a pipe index |
| 131 | */ |
Jesse Barnes | f71d4af | 2011-06-28 13:00:41 -0700 | [diff] [blame] | 132 | static u32 i915_get_vblank_counter(struct drm_device *dev, int pipe) |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 133 | { |
| 134 | drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private; |
| 135 | unsigned long high_frame; |
| 136 | unsigned long low_frame; |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 137 | u32 high1, high2, low; |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 138 | |
| 139 | if (!i915_pipe_enabled(dev, pipe)) { |
Zhao Yakui | 44d98a6 | 2009-10-09 11:39:40 +0800 | [diff] [blame] | 140 | DRM_DEBUG_DRIVER("trying to get vblank count for disabled " |
Jesse Barnes | 9db4a9c | 2011-02-07 12:26:52 -0800 | [diff] [blame] | 141 | "pipe %c\n", pipe_name(pipe)); |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 142 | return 0; |
| 143 | } |
| 144 | |
Jesse Barnes | 9db4a9c | 2011-02-07 12:26:52 -0800 | [diff] [blame] | 145 | high_frame = PIPEFRAME(pipe); |
| 146 | low_frame = PIPEFRAMEPIXEL(pipe); |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 147 | |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 148 | /* |
| 149 | * High & low register fields aren't synchronized, so make sure |
| 150 | * we get a low value that's stable across two reads of the high |
| 151 | * register. |
| 152 | */ |
| 153 | do { |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 154 | high1 = I915_READ(high_frame) & PIPE_FRAME_HIGH_MASK; |
| 155 | low = I915_READ(low_frame) & PIPE_FRAME_LOW_MASK; |
| 156 | high2 = I915_READ(high_frame) & PIPE_FRAME_HIGH_MASK; |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 157 | } while (high1 != high2); |
| 158 | |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 159 | high1 >>= PIPE_FRAME_HIGH_SHIFT; |
| 160 | low >>= PIPE_FRAME_LOW_SHIFT; |
| 161 | return (high1 << 8) | low; |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 162 | } |
| 163 | |
Jesse Barnes | f71d4af | 2011-06-28 13:00:41 -0700 | [diff] [blame] | 164 | static u32 gm45_get_vblank_counter(struct drm_device *dev, int pipe) |
Jesse Barnes | 9880b7a | 2009-02-06 10:22:41 -0800 | [diff] [blame] | 165 | { |
| 166 | drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private; |
Jesse Barnes | 9db4a9c | 2011-02-07 12:26:52 -0800 | [diff] [blame] | 167 | int reg = PIPE_FRMCOUNT_GM45(pipe); |
Jesse Barnes | 9880b7a | 2009-02-06 10:22:41 -0800 | [diff] [blame] | 168 | |
| 169 | if (!i915_pipe_enabled(dev, pipe)) { |
Zhao Yakui | 44d98a6 | 2009-10-09 11:39:40 +0800 | [diff] [blame] | 170 | DRM_DEBUG_DRIVER("trying to get vblank count for disabled " |
Jesse Barnes | 9db4a9c | 2011-02-07 12:26:52 -0800 | [diff] [blame] | 171 | "pipe %c\n", pipe_name(pipe)); |
Jesse Barnes | 9880b7a | 2009-02-06 10:22:41 -0800 | [diff] [blame] | 172 | return 0; |
| 173 | } |
| 174 | |
| 175 | return I915_READ(reg); |
| 176 | } |
| 177 | |
Jesse Barnes | f71d4af | 2011-06-28 13:00:41 -0700 | [diff] [blame] | 178 | static int i915_get_crtc_scanoutpos(struct drm_device *dev, int pipe, |
Mario Kleiner | 0af7e4d | 2010-12-08 04:07:19 +0100 | [diff] [blame] | 179 | int *vpos, int *hpos) |
| 180 | { |
| 181 | drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private; |
| 182 | u32 vbl = 0, position = 0; |
| 183 | int vbl_start, vbl_end, htotal, vtotal; |
| 184 | bool in_vbl = true; |
| 185 | int ret = 0; |
| 186 | |
| 187 | if (!i915_pipe_enabled(dev, pipe)) { |
| 188 | DRM_DEBUG_DRIVER("trying to get scanoutpos for disabled " |
Jesse Barnes | 9db4a9c | 2011-02-07 12:26:52 -0800 | [diff] [blame] | 189 | "pipe %c\n", pipe_name(pipe)); |
Mario Kleiner | 0af7e4d | 2010-12-08 04:07:19 +0100 | [diff] [blame] | 190 | return 0; |
| 191 | } |
| 192 | |
| 193 | /* Get vtotal. */ |
| 194 | vtotal = 1 + ((I915_READ(VTOTAL(pipe)) >> 16) & 0x1fff); |
| 195 | |
| 196 | if (INTEL_INFO(dev)->gen >= 4) { |
| 197 | /* No obvious pixelcount register. Only query vertical |
| 198 | * scanout position from Display scan line register. |
| 199 | */ |
| 200 | position = I915_READ(PIPEDSL(pipe)); |
| 201 | |
| 202 | /* Decode into vertical scanout position. Don't have |
| 203 | * horizontal scanout position. |
| 204 | */ |
| 205 | *vpos = position & 0x1fff; |
| 206 | *hpos = 0; |
| 207 | } else { |
| 208 | /* Have access to pixelcount since start of frame. |
| 209 | * We can split this into vertical and horizontal |
| 210 | * scanout position. |
| 211 | */ |
| 212 | position = (I915_READ(PIPEFRAMEPIXEL(pipe)) & PIPE_PIXEL_MASK) >> PIPE_PIXEL_SHIFT; |
| 213 | |
| 214 | htotal = 1 + ((I915_READ(HTOTAL(pipe)) >> 16) & 0x1fff); |
| 215 | *vpos = position / htotal; |
| 216 | *hpos = position - (*vpos * htotal); |
| 217 | } |
| 218 | |
| 219 | /* Query vblank area. */ |
| 220 | vbl = I915_READ(VBLANK(pipe)); |
| 221 | |
| 222 | /* Test position against vblank region. */ |
| 223 | vbl_start = vbl & 0x1fff; |
| 224 | vbl_end = (vbl >> 16) & 0x1fff; |
| 225 | |
| 226 | if ((*vpos < vbl_start) || (*vpos > vbl_end)) |
| 227 | in_vbl = false; |
| 228 | |
| 229 | /* Inside "upper part" of vblank area? Apply corrective offset: */ |
| 230 | if (in_vbl && (*vpos >= vbl_start)) |
| 231 | *vpos = *vpos - vtotal; |
| 232 | |
| 233 | /* Readouts valid? */ |
| 234 | if (vbl > 0) |
| 235 | ret |= DRM_SCANOUTPOS_VALID | DRM_SCANOUTPOS_ACCURATE; |
| 236 | |
| 237 | /* In vblank? */ |
| 238 | if (in_vbl) |
| 239 | ret |= DRM_SCANOUTPOS_INVBL; |
| 240 | |
| 241 | return ret; |
| 242 | } |
| 243 | |
Jesse Barnes | f71d4af | 2011-06-28 13:00:41 -0700 | [diff] [blame] | 244 | static int i915_get_vblank_timestamp(struct drm_device *dev, int pipe, |
Mario Kleiner | 0af7e4d | 2010-12-08 04:07:19 +0100 | [diff] [blame] | 245 | int *max_error, |
| 246 | struct timeval *vblank_time, |
| 247 | unsigned flags) |
| 248 | { |
Chris Wilson | 4041b85 | 2011-01-22 10:07:56 +0000 | [diff] [blame] | 249 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 250 | struct drm_crtc *crtc; |
Mario Kleiner | 0af7e4d | 2010-12-08 04:07:19 +0100 | [diff] [blame] | 251 | |
Chris Wilson | 4041b85 | 2011-01-22 10:07:56 +0000 | [diff] [blame] | 252 | if (pipe < 0 || pipe >= dev_priv->num_pipe) { |
| 253 | DRM_ERROR("Invalid crtc %d\n", pipe); |
Mario Kleiner | 0af7e4d | 2010-12-08 04:07:19 +0100 | [diff] [blame] | 254 | return -EINVAL; |
| 255 | } |
| 256 | |
| 257 | /* Get drm_crtc to timestamp: */ |
Chris Wilson | 4041b85 | 2011-01-22 10:07:56 +0000 | [diff] [blame] | 258 | crtc = intel_get_crtc_for_pipe(dev, pipe); |
| 259 | if (crtc == NULL) { |
| 260 | DRM_ERROR("Invalid crtc %d\n", pipe); |
| 261 | return -EINVAL; |
| 262 | } |
| 263 | |
| 264 | if (!crtc->enabled) { |
| 265 | DRM_DEBUG_KMS("crtc %d is disabled\n", pipe); |
| 266 | return -EBUSY; |
| 267 | } |
Mario Kleiner | 0af7e4d | 2010-12-08 04:07:19 +0100 | [diff] [blame] | 268 | |
| 269 | /* Helper routine in DRM core does all the work: */ |
Chris Wilson | 4041b85 | 2011-01-22 10:07:56 +0000 | [diff] [blame] | 270 | return drm_calc_vbltimestamp_from_scanoutpos(dev, pipe, max_error, |
| 271 | vblank_time, flags, |
| 272 | crtc); |
Mario Kleiner | 0af7e4d | 2010-12-08 04:07:19 +0100 | [diff] [blame] | 273 | } |
| 274 | |
Jesse Barnes | 5ca5828 | 2009-03-31 14:11:15 -0700 | [diff] [blame] | 275 | /* |
| 276 | * Handle hotplug events outside the interrupt handler proper. |
| 277 | */ |
| 278 | static void i915_hotplug_work_func(struct work_struct *work) |
| 279 | { |
| 280 | drm_i915_private_t *dev_priv = container_of(work, drm_i915_private_t, |
| 281 | hotplug_work); |
| 282 | struct drm_device *dev = dev_priv->dev; |
Keith Packard | c31c4ba | 2009-05-06 11:48:58 -0700 | [diff] [blame] | 283 | struct drm_mode_config *mode_config = &dev->mode_config; |
Chris Wilson | 4ef69c7 | 2010-09-09 15:14:28 +0100 | [diff] [blame] | 284 | struct intel_encoder *encoder; |
Jesse Barnes | 5ca5828 | 2009-03-31 14:11:15 -0700 | [diff] [blame] | 285 | |
Keith Packard | a65e34c | 2011-07-25 10:04:56 -0700 | [diff] [blame] | 286 | mutex_lock(&mode_config->mutex); |
Jesse Barnes | e67189ab | 2011-02-11 14:44:51 -0800 | [diff] [blame] | 287 | DRM_DEBUG_KMS("running encoder hotplug functions\n"); |
| 288 | |
Chris Wilson | 4ef69c7 | 2010-09-09 15:14:28 +0100 | [diff] [blame] | 289 | list_for_each_entry(encoder, &mode_config->encoder_list, base.head) |
| 290 | if (encoder->hot_plug) |
| 291 | encoder->hot_plug(encoder); |
| 292 | |
Keith Packard | 40ee338 | 2011-07-28 15:31:19 -0700 | [diff] [blame] | 293 | mutex_unlock(&mode_config->mutex); |
| 294 | |
Jesse Barnes | 5ca5828 | 2009-03-31 14:11:15 -0700 | [diff] [blame] | 295 | /* 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] | 296 | drm_helper_hpd_irq_event(dev); |
Jesse Barnes | 5ca5828 | 2009-03-31 14:11:15 -0700 | [diff] [blame] | 297 | } |
| 298 | |
Jesse Barnes | f97108d | 2010-01-29 11:27:07 -0800 | [diff] [blame] | 299 | static void i915_handle_rps_change(struct drm_device *dev) |
| 300 | { |
| 301 | drm_i915_private_t *dev_priv = dev->dev_private; |
Matthew Garrett | b5b72e8 | 2010-02-02 18:30:47 +0000 | [diff] [blame] | 302 | u32 busy_up, busy_down, max_avg, min_avg; |
Jesse Barnes | f97108d | 2010-01-29 11:27:07 -0800 | [diff] [blame] | 303 | u8 new_delay = dev_priv->cur_delay; |
| 304 | |
Jesse Barnes | 7648fa9 | 2010-05-20 14:28:11 -0700 | [diff] [blame] | 305 | I915_WRITE16(MEMINTRSTS, MEMINT_EVAL_CHG); |
Matthew Garrett | b5b72e8 | 2010-02-02 18:30:47 +0000 | [diff] [blame] | 306 | busy_up = I915_READ(RCPREVBSYTUPAVG); |
| 307 | busy_down = I915_READ(RCPREVBSYTDNAVG); |
Jesse Barnes | f97108d | 2010-01-29 11:27:07 -0800 | [diff] [blame] | 308 | max_avg = I915_READ(RCBMAXAVG); |
| 309 | min_avg = I915_READ(RCBMINAVG); |
| 310 | |
| 311 | /* Handle RCS change request from hw */ |
Matthew Garrett | b5b72e8 | 2010-02-02 18:30:47 +0000 | [diff] [blame] | 312 | if (busy_up > max_avg) { |
Jesse Barnes | f97108d | 2010-01-29 11:27:07 -0800 | [diff] [blame] | 313 | if (dev_priv->cur_delay != dev_priv->max_delay) |
| 314 | new_delay = dev_priv->cur_delay - 1; |
| 315 | if (new_delay < dev_priv->max_delay) |
| 316 | new_delay = dev_priv->max_delay; |
Matthew Garrett | b5b72e8 | 2010-02-02 18:30:47 +0000 | [diff] [blame] | 317 | } else if (busy_down < min_avg) { |
Jesse Barnes | f97108d | 2010-01-29 11:27:07 -0800 | [diff] [blame] | 318 | if (dev_priv->cur_delay != dev_priv->min_delay) |
| 319 | new_delay = dev_priv->cur_delay + 1; |
| 320 | if (new_delay > dev_priv->min_delay) |
| 321 | new_delay = dev_priv->min_delay; |
| 322 | } |
| 323 | |
Jesse Barnes | 7648fa9 | 2010-05-20 14:28:11 -0700 | [diff] [blame] | 324 | if (ironlake_set_drps(dev, new_delay)) |
| 325 | dev_priv->cur_delay = new_delay; |
Jesse Barnes | f97108d | 2010-01-29 11:27:07 -0800 | [diff] [blame] | 326 | |
| 327 | return; |
| 328 | } |
| 329 | |
Chris Wilson | 549f736 | 2010-10-19 11:19:32 +0100 | [diff] [blame] | 330 | static void notify_ring(struct drm_device *dev, |
| 331 | struct intel_ring_buffer *ring) |
| 332 | { |
| 333 | struct drm_i915_private *dev_priv = dev->dev_private; |
Chris Wilson | 9862e60 | 2011-01-04 22:22:17 +0000 | [diff] [blame] | 334 | |
Chris Wilson | 475553d | 2011-01-20 09:52:56 +0000 | [diff] [blame] | 335 | if (ring->obj == NULL) |
| 336 | return; |
| 337 | |
Chris Wilson | 6d171cb | 2012-04-28 09:00:03 +0100 | [diff] [blame] | 338 | trace_i915_gem_request_complete(ring, ring->get_seqno(ring)); |
Chris Wilson | 9862e60 | 2011-01-04 22:22:17 +0000 | [diff] [blame] | 339 | |
Chris Wilson | 549f736 | 2010-10-19 11:19:32 +0100 | [diff] [blame] | 340 | wake_up_all(&ring->irq_queue); |
Ben Widawsky | 3e0dc6b | 2011-06-29 10:26:42 -0700 | [diff] [blame] | 341 | if (i915_enable_hangcheck) { |
| 342 | dev_priv->hangcheck_count = 0; |
| 343 | mod_timer(&dev_priv->hangcheck_timer, |
| 344 | jiffies + |
| 345 | msecs_to_jiffies(DRM_I915_HANGCHECK_PERIOD)); |
| 346 | } |
Chris Wilson | 549f736 | 2010-10-19 11:19:32 +0100 | [diff] [blame] | 347 | } |
| 348 | |
Ben Widawsky | 4912d04 | 2011-04-25 11:25:20 -0700 | [diff] [blame] | 349 | static void gen6_pm_rps_work(struct work_struct *work) |
Jesse Barnes | 3b8d8d9 | 2010-12-17 14:19:02 -0800 | [diff] [blame] | 350 | { |
Ben Widawsky | 4912d04 | 2011-04-25 11:25:20 -0700 | [diff] [blame] | 351 | drm_i915_private_t *dev_priv = container_of(work, drm_i915_private_t, |
| 352 | rps_work); |
Jesse Barnes | 3b8d8d9 | 2010-12-17 14:19:02 -0800 | [diff] [blame] | 353 | u8 new_delay = dev_priv->cur_delay; |
Ben Widawsky | 4912d04 | 2011-04-25 11:25:20 -0700 | [diff] [blame] | 354 | u32 pm_iir, pm_imr; |
Jesse Barnes | 3b8d8d9 | 2010-12-17 14:19:02 -0800 | [diff] [blame] | 355 | |
Ben Widawsky | 4912d04 | 2011-04-25 11:25:20 -0700 | [diff] [blame] | 356 | spin_lock_irq(&dev_priv->rps_lock); |
| 357 | pm_iir = dev_priv->pm_iir; |
| 358 | dev_priv->pm_iir = 0; |
| 359 | pm_imr = I915_READ(GEN6_PMIMR); |
Daniel Vetter | a9e2641 | 2011-09-08 14:00:21 +0200 | [diff] [blame] | 360 | I915_WRITE(GEN6_PMIMR, 0); |
Ben Widawsky | 4912d04 | 2011-04-25 11:25:20 -0700 | [diff] [blame] | 361 | spin_unlock_irq(&dev_priv->rps_lock); |
| 362 | |
Jesse Barnes | 3b8d8d9 | 2010-12-17 14:19:02 -0800 | [diff] [blame] | 363 | if (!pm_iir) |
| 364 | return; |
| 365 | |
Ben Widawsky | 4912d04 | 2011-04-25 11:25:20 -0700 | [diff] [blame] | 366 | mutex_lock(&dev_priv->dev->struct_mutex); |
Jesse Barnes | 3b8d8d9 | 2010-12-17 14:19:02 -0800 | [diff] [blame] | 367 | if (pm_iir & GEN6_PM_RP_UP_THRESHOLD) { |
| 368 | if (dev_priv->cur_delay != dev_priv->max_delay) |
| 369 | new_delay = dev_priv->cur_delay + 1; |
| 370 | if (new_delay > dev_priv->max_delay) |
| 371 | new_delay = dev_priv->max_delay; |
| 372 | } else if (pm_iir & (GEN6_PM_RP_DOWN_THRESHOLD | GEN6_PM_RP_DOWN_TIMEOUT)) { |
Ben Widawsky | 4912d04 | 2011-04-25 11:25:20 -0700 | [diff] [blame] | 373 | gen6_gt_force_wake_get(dev_priv); |
Jesse Barnes | 3b8d8d9 | 2010-12-17 14:19:02 -0800 | [diff] [blame] | 374 | if (dev_priv->cur_delay != dev_priv->min_delay) |
| 375 | new_delay = dev_priv->cur_delay - 1; |
| 376 | if (new_delay < dev_priv->min_delay) { |
| 377 | new_delay = dev_priv->min_delay; |
| 378 | I915_WRITE(GEN6_RP_INTERRUPT_LIMITS, |
| 379 | I915_READ(GEN6_RP_INTERRUPT_LIMITS) | |
| 380 | ((new_delay << 16) & 0x3f0000)); |
| 381 | } else { |
| 382 | /* Make sure we continue to get down interrupts |
| 383 | * until we hit the minimum frequency */ |
| 384 | I915_WRITE(GEN6_RP_INTERRUPT_LIMITS, |
| 385 | I915_READ(GEN6_RP_INTERRUPT_LIMITS) & ~0x3f0000); |
| 386 | } |
Ben Widawsky | 4912d04 | 2011-04-25 11:25:20 -0700 | [diff] [blame] | 387 | gen6_gt_force_wake_put(dev_priv); |
Jesse Barnes | 3b8d8d9 | 2010-12-17 14:19:02 -0800 | [diff] [blame] | 388 | } |
| 389 | |
Ben Widawsky | 4912d04 | 2011-04-25 11:25:20 -0700 | [diff] [blame] | 390 | gen6_set_rps(dev_priv->dev, new_delay); |
Jesse Barnes | 3b8d8d9 | 2010-12-17 14:19:02 -0800 | [diff] [blame] | 391 | dev_priv->cur_delay = new_delay; |
| 392 | |
Ben Widawsky | 4912d04 | 2011-04-25 11:25:20 -0700 | [diff] [blame] | 393 | /* |
| 394 | * rps_lock not held here because clearing is non-destructive. There is |
| 395 | * an *extremely* unlikely race with gen6_rps_enable() that is prevented |
| 396 | * by holding struct_mutex for the duration of the write. |
| 397 | */ |
Ben Widawsky | 4912d04 | 2011-04-25 11:25:20 -0700 | [diff] [blame] | 398 | mutex_unlock(&dev_priv->dev->struct_mutex); |
Jesse Barnes | 3b8d8d9 | 2010-12-17 14:19:02 -0800 | [diff] [blame] | 399 | } |
| 400 | |
Daniel Vetter | e7b4c6b | 2012-03-30 20:24:35 +0200 | [diff] [blame] | 401 | static void snb_gt_irq_handler(struct drm_device *dev, |
| 402 | struct drm_i915_private *dev_priv, |
| 403 | u32 gt_iir) |
| 404 | { |
| 405 | |
| 406 | if (gt_iir & (GEN6_RENDER_USER_INTERRUPT | |
| 407 | GEN6_RENDER_PIPE_CONTROL_NOTIFY_INTERRUPT)) |
| 408 | notify_ring(dev, &dev_priv->ring[RCS]); |
| 409 | if (gt_iir & GEN6_BSD_USER_INTERRUPT) |
| 410 | notify_ring(dev, &dev_priv->ring[VCS]); |
| 411 | if (gt_iir & GEN6_BLITTER_USER_INTERRUPT) |
| 412 | notify_ring(dev, &dev_priv->ring[BCS]); |
| 413 | |
| 414 | if (gt_iir & (GT_GEN6_BLT_CS_ERROR_INTERRUPT | |
| 415 | GT_GEN6_BSD_CS_ERROR_INTERRUPT | |
| 416 | GT_RENDER_CS_ERROR_INTERRUPT)) { |
| 417 | DRM_ERROR("GT error interrupt 0x%08x\n", gt_iir); |
| 418 | i915_handle_error(dev, false); |
| 419 | } |
| 420 | } |
| 421 | |
Chris Wilson | fc6826d | 2012-04-15 11:56:03 +0100 | [diff] [blame] | 422 | static void gen6_queue_rps_work(struct drm_i915_private *dev_priv, |
| 423 | u32 pm_iir) |
| 424 | { |
| 425 | unsigned long flags; |
| 426 | |
| 427 | /* |
| 428 | * IIR bits should never already be set because IMR should |
| 429 | * prevent an interrupt from being shown in IIR. The warning |
| 430 | * displays a case where we've unsafely cleared |
| 431 | * dev_priv->pm_iir. Although missing an interrupt of the same |
| 432 | * type is not a problem, it displays a problem in the logic. |
| 433 | * |
| 434 | * The mask bit in IMR is cleared by rps_work. |
| 435 | */ |
| 436 | |
| 437 | spin_lock_irqsave(&dev_priv->rps_lock, flags); |
| 438 | WARN(dev_priv->pm_iir & pm_iir, "Missed a PM interrupt\n"); |
| 439 | dev_priv->pm_iir |= pm_iir; |
| 440 | I915_WRITE(GEN6_PMIMR, dev_priv->pm_iir); |
| 441 | POSTING_READ(GEN6_PMIMR); |
| 442 | spin_unlock_irqrestore(&dev_priv->rps_lock, flags); |
| 443 | |
| 444 | queue_work(dev_priv->wq, &dev_priv->rps_work); |
| 445 | } |
| 446 | |
Jesse Barnes | 7e231dbe | 2012-03-28 13:39:38 -0700 | [diff] [blame] | 447 | static irqreturn_t valleyview_irq_handler(DRM_IRQ_ARGS) |
| 448 | { |
| 449 | struct drm_device *dev = (struct drm_device *) arg; |
| 450 | drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private; |
| 451 | u32 iir, gt_iir, pm_iir; |
| 452 | irqreturn_t ret = IRQ_NONE; |
| 453 | unsigned long irqflags; |
| 454 | int pipe; |
| 455 | u32 pipe_stats[I915_MAX_PIPES]; |
| 456 | u32 vblank_status; |
| 457 | int vblank = 0; |
| 458 | bool blc_event; |
| 459 | |
| 460 | atomic_inc(&dev_priv->irq_received); |
| 461 | |
| 462 | vblank_status = PIPE_START_VBLANK_INTERRUPT_STATUS | |
| 463 | PIPE_VBLANK_INTERRUPT_STATUS; |
| 464 | |
| 465 | while (true) { |
| 466 | iir = I915_READ(VLV_IIR); |
| 467 | gt_iir = I915_READ(GTIIR); |
| 468 | pm_iir = I915_READ(GEN6_PMIIR); |
| 469 | |
| 470 | if (gt_iir == 0 && pm_iir == 0 && iir == 0) |
| 471 | goto out; |
| 472 | |
| 473 | ret = IRQ_HANDLED; |
| 474 | |
Daniel Vetter | e7b4c6b | 2012-03-30 20:24:35 +0200 | [diff] [blame] | 475 | snb_gt_irq_handler(dev, dev_priv, gt_iir); |
Jesse Barnes | 7e231dbe | 2012-03-28 13:39:38 -0700 | [diff] [blame] | 476 | |
| 477 | spin_lock_irqsave(&dev_priv->irq_lock, irqflags); |
| 478 | for_each_pipe(pipe) { |
| 479 | int reg = PIPESTAT(pipe); |
| 480 | pipe_stats[pipe] = I915_READ(reg); |
| 481 | |
| 482 | /* |
| 483 | * Clear the PIPE*STAT regs before the IIR |
| 484 | */ |
| 485 | if (pipe_stats[pipe] & 0x8000ffff) { |
| 486 | if (pipe_stats[pipe] & PIPE_FIFO_UNDERRUN_STATUS) |
| 487 | DRM_DEBUG_DRIVER("pipe %c underrun\n", |
| 488 | pipe_name(pipe)); |
| 489 | I915_WRITE(reg, pipe_stats[pipe]); |
| 490 | } |
| 491 | } |
| 492 | spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags); |
| 493 | |
| 494 | /* Consume port. Then clear IIR or we'll miss events */ |
| 495 | if (iir & I915_DISPLAY_PORT_INTERRUPT) { |
| 496 | u32 hotplug_status = I915_READ(PORT_HOTPLUG_STAT); |
| 497 | |
| 498 | DRM_DEBUG_DRIVER("hotplug event received, stat 0x%08x\n", |
| 499 | hotplug_status); |
| 500 | if (hotplug_status & dev_priv->hotplug_supported_mask) |
| 501 | queue_work(dev_priv->wq, |
| 502 | &dev_priv->hotplug_work); |
| 503 | |
| 504 | I915_WRITE(PORT_HOTPLUG_STAT, hotplug_status); |
| 505 | I915_READ(PORT_HOTPLUG_STAT); |
| 506 | } |
| 507 | |
| 508 | |
| 509 | if (iir & I915_DISPLAY_PIPE_A_VBLANK_INTERRUPT) { |
| 510 | drm_handle_vblank(dev, 0); |
| 511 | vblank++; |
Chris Wilson | e0f608d | 2012-04-24 22:59:43 +0100 | [diff] [blame] | 512 | intel_finish_page_flip(dev, 0); |
Jesse Barnes | 7e231dbe | 2012-03-28 13:39:38 -0700 | [diff] [blame] | 513 | } |
| 514 | |
| 515 | if (iir & I915_DISPLAY_PIPE_B_VBLANK_INTERRUPT) { |
| 516 | drm_handle_vblank(dev, 1); |
| 517 | vblank++; |
Chris Wilson | e0f608d | 2012-04-24 22:59:43 +0100 | [diff] [blame] | 518 | intel_finish_page_flip(dev, 0); |
Jesse Barnes | 7e231dbe | 2012-03-28 13:39:38 -0700 | [diff] [blame] | 519 | } |
| 520 | |
| 521 | if (pipe_stats[pipe] & PIPE_LEGACY_BLC_EVENT_STATUS) |
| 522 | blc_event = true; |
| 523 | |
Chris Wilson | fc6826d | 2012-04-15 11:56:03 +0100 | [diff] [blame] | 524 | if (pm_iir & GEN6_PM_DEFERRED_EVENTS) |
| 525 | gen6_queue_rps_work(dev_priv, pm_iir); |
Jesse Barnes | 7e231dbe | 2012-03-28 13:39:38 -0700 | [diff] [blame] | 526 | |
| 527 | I915_WRITE(GTIIR, gt_iir); |
| 528 | I915_WRITE(GEN6_PMIIR, pm_iir); |
| 529 | I915_WRITE(VLV_IIR, iir); |
| 530 | } |
| 531 | |
| 532 | out: |
| 533 | return ret; |
| 534 | } |
| 535 | |
Jesse Barnes | 776ad80 | 2011-01-04 15:09:39 -0800 | [diff] [blame] | 536 | static void pch_irq_handler(struct drm_device *dev) |
| 537 | { |
| 538 | drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private; |
| 539 | u32 pch_iir; |
Jesse Barnes | 9db4a9c | 2011-02-07 12:26:52 -0800 | [diff] [blame] | 540 | int pipe; |
Jesse Barnes | 776ad80 | 2011-01-04 15:09:39 -0800 | [diff] [blame] | 541 | |
| 542 | pch_iir = I915_READ(SDEIIR); |
| 543 | |
| 544 | if (pch_iir & SDE_AUDIO_POWER_MASK) |
| 545 | DRM_DEBUG_DRIVER("PCH audio power change on port %d\n", |
| 546 | (pch_iir & SDE_AUDIO_POWER_MASK) >> |
| 547 | SDE_AUDIO_POWER_SHIFT); |
| 548 | |
| 549 | if (pch_iir & SDE_GMBUS) |
| 550 | DRM_DEBUG_DRIVER("PCH GMBUS interrupt\n"); |
| 551 | |
| 552 | if (pch_iir & SDE_AUDIO_HDCP_MASK) |
| 553 | DRM_DEBUG_DRIVER("PCH HDCP audio interrupt\n"); |
| 554 | |
| 555 | if (pch_iir & SDE_AUDIO_TRANS_MASK) |
| 556 | DRM_DEBUG_DRIVER("PCH transcoder audio interrupt\n"); |
| 557 | |
| 558 | if (pch_iir & SDE_POISON) |
| 559 | DRM_ERROR("PCH poison interrupt\n"); |
| 560 | |
Jesse Barnes | 9db4a9c | 2011-02-07 12:26:52 -0800 | [diff] [blame] | 561 | if (pch_iir & SDE_FDI_MASK) |
| 562 | for_each_pipe(pipe) |
| 563 | DRM_DEBUG_DRIVER(" pipe %c FDI IIR: 0x%08x\n", |
| 564 | pipe_name(pipe), |
| 565 | I915_READ(FDI_RX_IIR(pipe))); |
Jesse Barnes | 776ad80 | 2011-01-04 15:09:39 -0800 | [diff] [blame] | 566 | |
| 567 | if (pch_iir & (SDE_TRANSB_CRC_DONE | SDE_TRANSA_CRC_DONE)) |
| 568 | DRM_DEBUG_DRIVER("PCH transcoder CRC done interrupt\n"); |
| 569 | |
| 570 | if (pch_iir & (SDE_TRANSB_CRC_ERR | SDE_TRANSA_CRC_ERR)) |
| 571 | DRM_DEBUG_DRIVER("PCH transcoder CRC error interrupt\n"); |
| 572 | |
| 573 | if (pch_iir & SDE_TRANSB_FIFO_UNDER) |
| 574 | DRM_DEBUG_DRIVER("PCH transcoder B underrun interrupt\n"); |
| 575 | if (pch_iir & SDE_TRANSA_FIFO_UNDER) |
| 576 | DRM_DEBUG_DRIVER("PCH transcoder A underrun interrupt\n"); |
| 577 | } |
| 578 | |
Jesse Barnes | f71d4af | 2011-06-28 13:00:41 -0700 | [diff] [blame] | 579 | static irqreturn_t ivybridge_irq_handler(DRM_IRQ_ARGS) |
Jesse Barnes | b1f14ad | 2011-04-06 12:13:38 -0700 | [diff] [blame] | 580 | { |
| 581 | struct drm_device *dev = (struct drm_device *) arg; |
| 582 | drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private; |
| 583 | int ret = IRQ_NONE; |
| 584 | u32 de_iir, gt_iir, de_ier, pch_iir, pm_iir; |
| 585 | struct drm_i915_master_private *master_priv; |
| 586 | |
| 587 | atomic_inc(&dev_priv->irq_received); |
| 588 | |
| 589 | /* disable master interrupt before clearing iir */ |
| 590 | de_ier = I915_READ(DEIER); |
| 591 | I915_WRITE(DEIER, de_ier & ~DE_MASTER_IRQ_CONTROL); |
| 592 | POSTING_READ(DEIER); |
| 593 | |
| 594 | de_iir = I915_READ(DEIIR); |
| 595 | gt_iir = I915_READ(GTIIR); |
| 596 | pch_iir = I915_READ(SDEIIR); |
| 597 | pm_iir = I915_READ(GEN6_PMIIR); |
| 598 | |
| 599 | if (de_iir == 0 && gt_iir == 0 && pch_iir == 0 && pm_iir == 0) |
| 600 | goto done; |
| 601 | |
| 602 | ret = IRQ_HANDLED; |
| 603 | |
| 604 | if (dev->primary->master) { |
| 605 | master_priv = dev->primary->master->driver_priv; |
| 606 | if (master_priv->sarea_priv) |
| 607 | master_priv->sarea_priv->last_dispatch = |
| 608 | READ_BREADCRUMB(dev_priv); |
| 609 | } |
| 610 | |
Daniel Vetter | e7b4c6b | 2012-03-30 20:24:35 +0200 | [diff] [blame] | 611 | snb_gt_irq_handler(dev, dev_priv, gt_iir); |
Jesse Barnes | b1f14ad | 2011-04-06 12:13:38 -0700 | [diff] [blame] | 612 | |
| 613 | if (de_iir & DE_GSE_IVB) |
| 614 | intel_opregion_gse_intr(dev); |
| 615 | |
| 616 | if (de_iir & DE_PLANEA_FLIP_DONE_IVB) { |
| 617 | intel_prepare_page_flip(dev, 0); |
| 618 | intel_finish_page_flip_plane(dev, 0); |
| 619 | } |
| 620 | |
| 621 | if (de_iir & DE_PLANEB_FLIP_DONE_IVB) { |
| 622 | intel_prepare_page_flip(dev, 1); |
| 623 | intel_finish_page_flip_plane(dev, 1); |
| 624 | } |
| 625 | |
| 626 | if (de_iir & DE_PIPEA_VBLANK_IVB) |
| 627 | drm_handle_vblank(dev, 0); |
| 628 | |
Dan Carpenter | f6b07f4 | 2011-05-25 12:56:56 +0300 | [diff] [blame] | 629 | if (de_iir & DE_PIPEB_VBLANK_IVB) |
Jesse Barnes | b1f14ad | 2011-04-06 12:13:38 -0700 | [diff] [blame] | 630 | drm_handle_vblank(dev, 1); |
| 631 | |
| 632 | /* check event from PCH */ |
| 633 | if (de_iir & DE_PCH_EVENT_IVB) { |
| 634 | if (pch_iir & SDE_HOTPLUG_MASK_CPT) |
| 635 | queue_work(dev_priv->wq, &dev_priv->hotplug_work); |
| 636 | pch_irq_handler(dev); |
| 637 | } |
| 638 | |
Chris Wilson | fc6826d | 2012-04-15 11:56:03 +0100 | [diff] [blame] | 639 | if (pm_iir & GEN6_PM_DEFERRED_EVENTS) |
| 640 | gen6_queue_rps_work(dev_priv, pm_iir); |
Jesse Barnes | b1f14ad | 2011-04-06 12:13:38 -0700 | [diff] [blame] | 641 | |
| 642 | /* should clear PCH hotplug event before clear CPU irq */ |
| 643 | I915_WRITE(SDEIIR, pch_iir); |
| 644 | I915_WRITE(GTIIR, gt_iir); |
| 645 | I915_WRITE(DEIIR, de_iir); |
| 646 | I915_WRITE(GEN6_PMIIR, pm_iir); |
| 647 | |
| 648 | done: |
| 649 | I915_WRITE(DEIER, de_ier); |
| 650 | POSTING_READ(DEIER); |
| 651 | |
| 652 | return ret; |
| 653 | } |
| 654 | |
Daniel Vetter | e7b4c6b | 2012-03-30 20:24:35 +0200 | [diff] [blame] | 655 | static void ilk_gt_irq_handler(struct drm_device *dev, |
| 656 | struct drm_i915_private *dev_priv, |
| 657 | u32 gt_iir) |
| 658 | { |
| 659 | if (gt_iir & (GT_USER_INTERRUPT | GT_PIPE_NOTIFY)) |
| 660 | notify_ring(dev, &dev_priv->ring[RCS]); |
| 661 | if (gt_iir & GT_BSD_USER_INTERRUPT) |
| 662 | notify_ring(dev, &dev_priv->ring[VCS]); |
| 663 | } |
| 664 | |
Jesse Barnes | f71d4af | 2011-06-28 13:00:41 -0700 | [diff] [blame] | 665 | static irqreturn_t ironlake_irq_handler(DRM_IRQ_ARGS) |
Zhenyu Wang | 036a4a7 | 2009-06-08 14:40:19 +0800 | [diff] [blame] | 666 | { |
Jesse Barnes | 4697995 | 2011-04-07 13:53:55 -0700 | [diff] [blame] | 667 | struct drm_device *dev = (struct drm_device *) arg; |
Zhenyu Wang | 036a4a7 | 2009-06-08 14:40:19 +0800 | [diff] [blame] | 668 | drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private; |
| 669 | int ret = IRQ_NONE; |
Jesse Barnes | 3b8d8d9 | 2010-12-17 14:19:02 -0800 | [diff] [blame] | 670 | u32 de_iir, gt_iir, de_ier, pch_iir, pm_iir; |
Yuanhan Liu | 2d7b836 | 2010-10-08 10:21:06 +0100 | [diff] [blame] | 671 | u32 hotplug_mask; |
Zhenyu Wang | 036a4a7 | 2009-06-08 14:40:19 +0800 | [diff] [blame] | 672 | struct drm_i915_master_private *master_priv; |
Xiang, Haihao | 881f47b | 2010-09-19 14:40:43 +0100 | [diff] [blame] | 673 | |
Jesse Barnes | 4697995 | 2011-04-07 13:53:55 -0700 | [diff] [blame] | 674 | atomic_inc(&dev_priv->irq_received); |
| 675 | |
Zou, Nanhai | 2d109a8 | 2009-11-06 02:13:01 +0000 | [diff] [blame] | 676 | /* disable master interrupt before clearing iir */ |
| 677 | de_ier = I915_READ(DEIER); |
| 678 | I915_WRITE(DEIER, de_ier & ~DE_MASTER_IRQ_CONTROL); |
Chris Wilson | 3143a2b | 2010-11-16 15:55:10 +0000 | [diff] [blame] | 679 | POSTING_READ(DEIER); |
Zou, Nanhai | 2d109a8 | 2009-11-06 02:13:01 +0000 | [diff] [blame] | 680 | |
Zhenyu Wang | 036a4a7 | 2009-06-08 14:40:19 +0800 | [diff] [blame] | 681 | de_iir = I915_READ(DEIIR); |
| 682 | gt_iir = I915_READ(GTIIR); |
Zhenyu Wang | c650156 | 2009-11-03 18:57:21 +0000 | [diff] [blame] | 683 | pch_iir = I915_READ(SDEIIR); |
Jesse Barnes | 3b8d8d9 | 2010-12-17 14:19:02 -0800 | [diff] [blame] | 684 | pm_iir = I915_READ(GEN6_PMIIR); |
Zhenyu Wang | 036a4a7 | 2009-06-08 14:40:19 +0800 | [diff] [blame] | 685 | |
Jesse Barnes | 3b8d8d9 | 2010-12-17 14:19:02 -0800 | [diff] [blame] | 686 | if (de_iir == 0 && gt_iir == 0 && pch_iir == 0 && |
| 687 | (!IS_GEN6(dev) || pm_iir == 0)) |
Zou Nan hai | c7c8510 | 2010-01-15 10:29:06 +0800 | [diff] [blame] | 688 | goto done; |
Zhenyu Wang | 036a4a7 | 2009-06-08 14:40:19 +0800 | [diff] [blame] | 689 | |
Yuanhan Liu | 2d7b836 | 2010-10-08 10:21:06 +0100 | [diff] [blame] | 690 | if (HAS_PCH_CPT(dev)) |
| 691 | hotplug_mask = SDE_HOTPLUG_MASK_CPT; |
| 692 | else |
| 693 | hotplug_mask = SDE_HOTPLUG_MASK; |
| 694 | |
Zou Nan hai | c7c8510 | 2010-01-15 10:29:06 +0800 | [diff] [blame] | 695 | ret = IRQ_HANDLED; |
Zhenyu Wang | 036a4a7 | 2009-06-08 14:40:19 +0800 | [diff] [blame] | 696 | |
Zou Nan hai | c7c8510 | 2010-01-15 10:29:06 +0800 | [diff] [blame] | 697 | if (dev->primary->master) { |
| 698 | master_priv = dev->primary->master->driver_priv; |
| 699 | if (master_priv->sarea_priv) |
| 700 | master_priv->sarea_priv->last_dispatch = |
| 701 | READ_BREADCRUMB(dev_priv); |
Zhenyu Wang | 036a4a7 | 2009-06-08 14:40:19 +0800 | [diff] [blame] | 702 | } |
| 703 | |
Daniel Vetter | e7b4c6b | 2012-03-30 20:24:35 +0200 | [diff] [blame] | 704 | if (IS_GEN5(dev)) |
| 705 | ilk_gt_irq_handler(dev, dev_priv, gt_iir); |
| 706 | else |
| 707 | snb_gt_irq_handler(dev, dev_priv, gt_iir); |
Zou Nan hai | c7c8510 | 2010-01-15 10:29:06 +0800 | [diff] [blame] | 708 | |
| 709 | if (de_iir & DE_GSE) |
Chris Wilson | 3b61796 | 2010-08-24 09:02:58 +0100 | [diff] [blame] | 710 | intel_opregion_gse_intr(dev); |
Zou Nan hai | c7c8510 | 2010-01-15 10:29:06 +0800 | [diff] [blame] | 711 | |
Zhenyu Wang | f072d2e | 2010-02-09 09:46:19 +0800 | [diff] [blame] | 712 | if (de_iir & DE_PLANEA_FLIP_DONE) { |
Jesse Barnes | 013d5aa | 2010-01-29 11:18:31 -0800 | [diff] [blame] | 713 | intel_prepare_page_flip(dev, 0); |
Chris Wilson | 2bbda38 | 2010-09-02 17:59:39 +0100 | [diff] [blame] | 714 | intel_finish_page_flip_plane(dev, 0); |
Jesse Barnes | 013d5aa | 2010-01-29 11:18:31 -0800 | [diff] [blame] | 715 | } |
| 716 | |
Zhenyu Wang | f072d2e | 2010-02-09 09:46:19 +0800 | [diff] [blame] | 717 | if (de_iir & DE_PLANEB_FLIP_DONE) { |
| 718 | intel_prepare_page_flip(dev, 1); |
Chris Wilson | 2bbda38 | 2010-09-02 17:59:39 +0100 | [diff] [blame] | 719 | intel_finish_page_flip_plane(dev, 1); |
Jesse Barnes | 013d5aa | 2010-01-29 11:18:31 -0800 | [diff] [blame] | 720 | } |
Li Peng | c062df6 | 2010-01-23 00:12:58 +0800 | [diff] [blame] | 721 | |
Zhenyu Wang | f072d2e | 2010-02-09 09:46:19 +0800 | [diff] [blame] | 722 | if (de_iir & DE_PIPEA_VBLANK) |
| 723 | drm_handle_vblank(dev, 0); |
| 724 | |
| 725 | if (de_iir & DE_PIPEB_VBLANK) |
| 726 | drm_handle_vblank(dev, 1); |
| 727 | |
Zou Nan hai | c7c8510 | 2010-01-15 10:29:06 +0800 | [diff] [blame] | 728 | /* check event from PCH */ |
Jesse Barnes | 776ad80 | 2011-01-04 15:09:39 -0800 | [diff] [blame] | 729 | if (de_iir & DE_PCH_EVENT) { |
| 730 | if (pch_iir & hotplug_mask) |
| 731 | queue_work(dev_priv->wq, &dev_priv->hotplug_work); |
| 732 | pch_irq_handler(dev); |
| 733 | } |
Zou Nan hai | c7c8510 | 2010-01-15 10:29:06 +0800 | [diff] [blame] | 734 | |
Jesse Barnes | f97108d | 2010-01-29 11:27:07 -0800 | [diff] [blame] | 735 | if (de_iir & DE_PCU_EVENT) { |
Jesse Barnes | 7648fa9 | 2010-05-20 14:28:11 -0700 | [diff] [blame] | 736 | I915_WRITE16(MEMINTRSTS, I915_READ(MEMINTRSTS)); |
Jesse Barnes | f97108d | 2010-01-29 11:27:07 -0800 | [diff] [blame] | 737 | i915_handle_rps_change(dev); |
| 738 | } |
| 739 | |
Chris Wilson | fc6826d | 2012-04-15 11:56:03 +0100 | [diff] [blame] | 740 | if (IS_GEN6(dev) && pm_iir & GEN6_PM_DEFERRED_EVENTS) |
| 741 | gen6_queue_rps_work(dev_priv, pm_iir); |
Jesse Barnes | 3b8d8d9 | 2010-12-17 14:19:02 -0800 | [diff] [blame] | 742 | |
Zou Nan hai | c7c8510 | 2010-01-15 10:29:06 +0800 | [diff] [blame] | 743 | /* should clear PCH hotplug event before clear CPU irq */ |
| 744 | I915_WRITE(SDEIIR, pch_iir); |
| 745 | I915_WRITE(GTIIR, gt_iir); |
| 746 | I915_WRITE(DEIIR, de_iir); |
Ben Widawsky | 4912d04 | 2011-04-25 11:25:20 -0700 | [diff] [blame] | 747 | I915_WRITE(GEN6_PMIIR, pm_iir); |
Zou Nan hai | c7c8510 | 2010-01-15 10:29:06 +0800 | [diff] [blame] | 748 | |
| 749 | done: |
Zou, Nanhai | 2d109a8 | 2009-11-06 02:13:01 +0000 | [diff] [blame] | 750 | I915_WRITE(DEIER, de_ier); |
Chris Wilson | 3143a2b | 2010-11-16 15:55:10 +0000 | [diff] [blame] | 751 | POSTING_READ(DEIER); |
Zou, Nanhai | 2d109a8 | 2009-11-06 02:13:01 +0000 | [diff] [blame] | 752 | |
Zhenyu Wang | 036a4a7 | 2009-06-08 14:40:19 +0800 | [diff] [blame] | 753 | return ret; |
| 754 | } |
| 755 | |
Jesse Barnes | 8a90523 | 2009-07-11 16:48:03 -0400 | [diff] [blame] | 756 | /** |
| 757 | * i915_error_work_func - do process context error handling work |
| 758 | * @work: work struct |
| 759 | * |
| 760 | * Fire an error uevent so userspace can see that a hang or error |
| 761 | * was detected. |
| 762 | */ |
| 763 | static void i915_error_work_func(struct work_struct *work) |
| 764 | { |
| 765 | drm_i915_private_t *dev_priv = container_of(work, drm_i915_private_t, |
| 766 | error_work); |
| 767 | struct drm_device *dev = dev_priv->dev; |
Ben Gamari | f316a42 | 2009-09-14 17:48:46 -0400 | [diff] [blame] | 768 | char *error_event[] = { "ERROR=1", NULL }; |
| 769 | char *reset_event[] = { "RESET=1", NULL }; |
| 770 | char *reset_done_event[] = { "ERROR=0", NULL }; |
Jesse Barnes | 8a90523 | 2009-07-11 16:48:03 -0400 | [diff] [blame] | 771 | |
Ben Gamari | f316a42 | 2009-09-14 17:48:46 -0400 | [diff] [blame] | 772 | kobject_uevent_env(&dev->primary->kdev.kobj, KOBJ_CHANGE, error_event); |
Jesse Barnes | 8a90523 | 2009-07-11 16:48:03 -0400 | [diff] [blame] | 773 | |
Ben Gamari | ba1234d | 2009-09-14 17:48:47 -0400 | [diff] [blame] | 774 | if (atomic_read(&dev_priv->mm.wedged)) { |
Chris Wilson | f803aa5 | 2010-09-19 12:38:26 +0100 | [diff] [blame] | 775 | DRM_DEBUG_DRIVER("resetting chip\n"); |
| 776 | kobject_uevent_env(&dev->primary->kdev.kobj, KOBJ_CHANGE, reset_event); |
| 777 | if (!i915_reset(dev, GRDOM_RENDER)) { |
| 778 | atomic_set(&dev_priv->mm.wedged, 0); |
| 779 | kobject_uevent_env(&dev->primary->kdev.kobj, KOBJ_CHANGE, reset_done_event); |
Ben Gamari | f316a42 | 2009-09-14 17:48:46 -0400 | [diff] [blame] | 780 | } |
Chris Wilson | 30dbf0c | 2010-09-25 10:19:17 +0100 | [diff] [blame] | 781 | complete_all(&dev_priv->error_completion); |
Ben Gamari | f316a42 | 2009-09-14 17:48:46 -0400 | [diff] [blame] | 782 | } |
Jesse Barnes | 8a90523 | 2009-07-11 16:48:03 -0400 | [diff] [blame] | 783 | } |
| 784 | |
Chris Wilson | 3bd3c93 | 2010-08-19 08:19:30 +0100 | [diff] [blame] | 785 | #ifdef CONFIG_DEBUG_FS |
Chris Wilson | 9df3079 | 2010-02-18 10:24:56 +0000 | [diff] [blame] | 786 | static struct drm_i915_error_object * |
Chris Wilson | bcfb2e2 | 2011-01-07 21:06:07 +0000 | [diff] [blame] | 787 | i915_error_object_create(struct drm_i915_private *dev_priv, |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 788 | struct drm_i915_gem_object *src) |
Chris Wilson | 9df3079 | 2010-02-18 10:24:56 +0000 | [diff] [blame] | 789 | { |
| 790 | struct drm_i915_error_object *dst; |
Chris Wilson | 9df3079 | 2010-02-18 10:24:56 +0000 | [diff] [blame] | 791 | int page, page_count; |
Chris Wilson | e56660d | 2010-08-07 11:01:26 +0100 | [diff] [blame] | 792 | u32 reloc_offset; |
Chris Wilson | 9df3079 | 2010-02-18 10:24:56 +0000 | [diff] [blame] | 793 | |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 794 | if (src == NULL || src->pages == NULL) |
Chris Wilson | 9df3079 | 2010-02-18 10:24:56 +0000 | [diff] [blame] | 795 | return NULL; |
| 796 | |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 797 | page_count = src->base.size / PAGE_SIZE; |
Chris Wilson | 9df3079 | 2010-02-18 10:24:56 +0000 | [diff] [blame] | 798 | |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 799 | dst = kmalloc(sizeof(*dst) + page_count * sizeof(u32 *), GFP_ATOMIC); |
Chris Wilson | 9df3079 | 2010-02-18 10:24:56 +0000 | [diff] [blame] | 800 | if (dst == NULL) |
| 801 | return NULL; |
| 802 | |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 803 | reloc_offset = src->gtt_offset; |
Chris Wilson | 9df3079 | 2010-02-18 10:24:56 +0000 | [diff] [blame] | 804 | for (page = 0; page < page_count; page++) { |
Andrew Morton | 788885a | 2010-05-11 14:07:05 -0700 | [diff] [blame] | 805 | unsigned long flags; |
Chris Wilson | e56660d | 2010-08-07 11:01:26 +0100 | [diff] [blame] | 806 | void *d; |
Andrew Morton | 788885a | 2010-05-11 14:07:05 -0700 | [diff] [blame] | 807 | |
Chris Wilson | e56660d | 2010-08-07 11:01:26 +0100 | [diff] [blame] | 808 | d = kmalloc(PAGE_SIZE, GFP_ATOMIC); |
Chris Wilson | 9df3079 | 2010-02-18 10:24:56 +0000 | [diff] [blame] | 809 | if (d == NULL) |
| 810 | goto unwind; |
Chris Wilson | e56660d | 2010-08-07 11:01:26 +0100 | [diff] [blame] | 811 | |
Andrew Morton | 788885a | 2010-05-11 14:07:05 -0700 | [diff] [blame] | 812 | local_irq_save(flags); |
Daniel Vetter | 74898d7 | 2012-02-15 23:50:22 +0100 | [diff] [blame] | 813 | if (reloc_offset < dev_priv->mm.gtt_mappable_end && |
| 814 | src->has_global_gtt_mapping) { |
Chris Wilson | 172975aa | 2011-12-14 13:57:25 +0100 | [diff] [blame] | 815 | void __iomem *s; |
| 816 | |
| 817 | /* Simply ignore tiling or any overlapping fence. |
| 818 | * It's part of the error state, and this hopefully |
| 819 | * captures what the GPU read. |
| 820 | */ |
| 821 | |
| 822 | s = io_mapping_map_atomic_wc(dev_priv->mm.gtt_mapping, |
| 823 | reloc_offset); |
| 824 | memcpy_fromio(d, s, PAGE_SIZE); |
| 825 | io_mapping_unmap_atomic(s); |
| 826 | } else { |
| 827 | void *s; |
| 828 | |
| 829 | drm_clflush_pages(&src->pages[page], 1); |
| 830 | |
| 831 | s = kmap_atomic(src->pages[page]); |
| 832 | memcpy(d, s, PAGE_SIZE); |
| 833 | kunmap_atomic(s); |
| 834 | |
| 835 | drm_clflush_pages(&src->pages[page], 1); |
| 836 | } |
Andrew Morton | 788885a | 2010-05-11 14:07:05 -0700 | [diff] [blame] | 837 | local_irq_restore(flags); |
Chris Wilson | e56660d | 2010-08-07 11:01:26 +0100 | [diff] [blame] | 838 | |
Chris Wilson | 9df3079 | 2010-02-18 10:24:56 +0000 | [diff] [blame] | 839 | dst->pages[page] = d; |
Chris Wilson | e56660d | 2010-08-07 11:01:26 +0100 | [diff] [blame] | 840 | |
| 841 | reloc_offset += PAGE_SIZE; |
Chris Wilson | 9df3079 | 2010-02-18 10:24:56 +0000 | [diff] [blame] | 842 | } |
| 843 | dst->page_count = page_count; |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 844 | dst->gtt_offset = src->gtt_offset; |
Chris Wilson | 9df3079 | 2010-02-18 10:24:56 +0000 | [diff] [blame] | 845 | |
| 846 | return dst; |
| 847 | |
| 848 | unwind: |
| 849 | while (page--) |
| 850 | kfree(dst->pages[page]); |
| 851 | kfree(dst); |
| 852 | return NULL; |
| 853 | } |
| 854 | |
| 855 | static void |
| 856 | i915_error_object_free(struct drm_i915_error_object *obj) |
| 857 | { |
| 858 | int page; |
| 859 | |
| 860 | if (obj == NULL) |
| 861 | return; |
| 862 | |
| 863 | for (page = 0; page < obj->page_count; page++) |
| 864 | kfree(obj->pages[page]); |
| 865 | |
| 866 | kfree(obj); |
| 867 | } |
| 868 | |
| 869 | static void |
| 870 | i915_error_state_free(struct drm_device *dev, |
| 871 | struct drm_i915_error_state *error) |
| 872 | { |
Chris Wilson | e2f973d | 2011-01-27 19:15:11 +0000 | [diff] [blame] | 873 | int i; |
| 874 | |
Chris Wilson | 52d39a2 | 2012-02-15 11:25:37 +0000 | [diff] [blame] | 875 | for (i = 0; i < ARRAY_SIZE(error->ring); i++) { |
| 876 | i915_error_object_free(error->ring[i].batchbuffer); |
| 877 | i915_error_object_free(error->ring[i].ringbuffer); |
| 878 | kfree(error->ring[i].requests); |
| 879 | } |
Chris Wilson | e2f973d | 2011-01-27 19:15:11 +0000 | [diff] [blame] | 880 | |
Chris Wilson | 9df3079 | 2010-02-18 10:24:56 +0000 | [diff] [blame] | 881 | kfree(error->active_bo); |
Chris Wilson | 6ef3d42 | 2010-08-04 20:26:07 +0100 | [diff] [blame] | 882 | kfree(error->overlay); |
Chris Wilson | 9df3079 | 2010-02-18 10:24:56 +0000 | [diff] [blame] | 883 | kfree(error); |
| 884 | } |
Chris Wilson | 1b50247 | 2012-04-24 15:47:30 +0100 | [diff] [blame] | 885 | static void capture_bo(struct drm_i915_error_buffer *err, |
| 886 | struct drm_i915_gem_object *obj) |
| 887 | { |
| 888 | err->size = obj->base.size; |
| 889 | err->name = obj->base.name; |
| 890 | err->seqno = obj->last_rendering_seqno; |
| 891 | err->gtt_offset = obj->gtt_offset; |
| 892 | err->read_domains = obj->base.read_domains; |
| 893 | err->write_domain = obj->base.write_domain; |
| 894 | err->fence_reg = obj->fence_reg; |
| 895 | err->pinned = 0; |
| 896 | if (obj->pin_count > 0) |
| 897 | err->pinned = 1; |
| 898 | if (obj->user_pin_count > 0) |
| 899 | err->pinned = -1; |
| 900 | err->tiling = obj->tiling_mode; |
| 901 | err->dirty = obj->dirty; |
| 902 | err->purgeable = obj->madv != I915_MADV_WILLNEED; |
| 903 | err->ring = obj->ring ? obj->ring->id : -1; |
| 904 | err->cache_level = obj->cache_level; |
| 905 | } |
Chris Wilson | 9df3079 | 2010-02-18 10:24:56 +0000 | [diff] [blame] | 906 | |
Chris Wilson | 1b50247 | 2012-04-24 15:47:30 +0100 | [diff] [blame] | 907 | static u32 capture_active_bo(struct drm_i915_error_buffer *err, |
| 908 | int count, struct list_head *head) |
Chris Wilson | c724e8a | 2010-11-22 08:07:02 +0000 | [diff] [blame] | 909 | { |
| 910 | struct drm_i915_gem_object *obj; |
| 911 | int i = 0; |
| 912 | |
| 913 | list_for_each_entry(obj, head, mm_list) { |
Chris Wilson | 1b50247 | 2012-04-24 15:47:30 +0100 | [diff] [blame] | 914 | capture_bo(err++, obj); |
Chris Wilson | c724e8a | 2010-11-22 08:07:02 +0000 | [diff] [blame] | 915 | if (++i == count) |
| 916 | break; |
Chris Wilson | 1b50247 | 2012-04-24 15:47:30 +0100 | [diff] [blame] | 917 | } |
Chris Wilson | c724e8a | 2010-11-22 08:07:02 +0000 | [diff] [blame] | 918 | |
Chris Wilson | 1b50247 | 2012-04-24 15:47:30 +0100 | [diff] [blame] | 919 | return i; |
| 920 | } |
| 921 | |
| 922 | static u32 capture_pinned_bo(struct drm_i915_error_buffer *err, |
| 923 | int count, struct list_head *head) |
| 924 | { |
| 925 | struct drm_i915_gem_object *obj; |
| 926 | int i = 0; |
| 927 | |
| 928 | list_for_each_entry(obj, head, gtt_list) { |
| 929 | if (obj->pin_count == 0) |
| 930 | continue; |
| 931 | |
| 932 | capture_bo(err++, obj); |
| 933 | if (++i == count) |
| 934 | break; |
Chris Wilson | c724e8a | 2010-11-22 08:07:02 +0000 | [diff] [blame] | 935 | } |
| 936 | |
| 937 | return i; |
| 938 | } |
| 939 | |
Chris Wilson | 748ebc6 | 2010-10-24 10:28:47 +0100 | [diff] [blame] | 940 | static void i915_gem_record_fences(struct drm_device *dev, |
| 941 | struct drm_i915_error_state *error) |
| 942 | { |
| 943 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 944 | int i; |
| 945 | |
| 946 | /* Fences */ |
| 947 | switch (INTEL_INFO(dev)->gen) { |
Daniel Vetter | 775d17b | 2011-10-09 21:52:01 +0200 | [diff] [blame] | 948 | case 7: |
Chris Wilson | 748ebc6 | 2010-10-24 10:28:47 +0100 | [diff] [blame] | 949 | case 6: |
| 950 | for (i = 0; i < 16; i++) |
| 951 | error->fence[i] = I915_READ64(FENCE_REG_SANDYBRIDGE_0 + (i * 8)); |
| 952 | break; |
| 953 | case 5: |
| 954 | case 4: |
| 955 | for (i = 0; i < 16; i++) |
| 956 | error->fence[i] = I915_READ64(FENCE_REG_965_0 + (i * 8)); |
| 957 | break; |
| 958 | case 3: |
| 959 | if (IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev)) |
| 960 | for (i = 0; i < 8; i++) |
| 961 | error->fence[i+8] = I915_READ(FENCE_REG_945_8 + (i * 4)); |
| 962 | case 2: |
| 963 | for (i = 0; i < 8; i++) |
| 964 | error->fence[i] = I915_READ(FENCE_REG_830_0 + (i * 4)); |
| 965 | break; |
| 966 | |
| 967 | } |
| 968 | } |
| 969 | |
Chris Wilson | bcfb2e2 | 2011-01-07 21:06:07 +0000 | [diff] [blame] | 970 | static struct drm_i915_error_object * |
| 971 | i915_error_first_batchbuffer(struct drm_i915_private *dev_priv, |
| 972 | struct intel_ring_buffer *ring) |
| 973 | { |
| 974 | struct drm_i915_gem_object *obj; |
| 975 | u32 seqno; |
| 976 | |
| 977 | if (!ring->get_seqno) |
| 978 | return NULL; |
| 979 | |
| 980 | seqno = ring->get_seqno(ring); |
| 981 | list_for_each_entry(obj, &dev_priv->mm.active_list, mm_list) { |
| 982 | if (obj->ring != ring) |
| 983 | continue; |
| 984 | |
Chris Wilson | c37d9a5 | 2011-01-12 20:33:01 +0000 | [diff] [blame] | 985 | if (i915_seqno_passed(seqno, obj->last_rendering_seqno)) |
Chris Wilson | bcfb2e2 | 2011-01-07 21:06:07 +0000 | [diff] [blame] | 986 | continue; |
| 987 | |
| 988 | if ((obj->base.read_domains & I915_GEM_DOMAIN_COMMAND) == 0) |
| 989 | continue; |
| 990 | |
| 991 | /* We need to copy these to an anonymous buffer as the simplest |
| 992 | * method to avoid being overwritten by userspace. |
| 993 | */ |
| 994 | return i915_error_object_create(dev_priv, obj); |
| 995 | } |
| 996 | |
| 997 | return NULL; |
| 998 | } |
| 999 | |
Daniel Vetter | d27b1e0 | 2011-12-14 13:57:01 +0100 | [diff] [blame] | 1000 | static void i915_record_ring_state(struct drm_device *dev, |
| 1001 | struct drm_i915_error_state *error, |
| 1002 | struct intel_ring_buffer *ring) |
| 1003 | { |
| 1004 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 1005 | |
Daniel Vetter | 33f3f51 | 2011-12-14 13:57:39 +0100 | [diff] [blame] | 1006 | if (INTEL_INFO(dev)->gen >= 6) { |
Daniel Vetter | 33f3f51 | 2011-12-14 13:57:39 +0100 | [diff] [blame] | 1007 | error->fault_reg[ring->id] = I915_READ(RING_FAULT_REG(ring)); |
Daniel Vetter | 7e3b873 | 2012-02-01 22:26:45 +0100 | [diff] [blame] | 1008 | error->semaphore_mboxes[ring->id][0] |
| 1009 | = I915_READ(RING_SYNC_0(ring->mmio_base)); |
| 1010 | error->semaphore_mboxes[ring->id][1] |
| 1011 | = I915_READ(RING_SYNC_1(ring->mmio_base)); |
Daniel Vetter | 33f3f51 | 2011-12-14 13:57:39 +0100 | [diff] [blame] | 1012 | } |
Daniel Vetter | c1cd90e | 2011-12-14 13:57:02 +0100 | [diff] [blame] | 1013 | |
Daniel Vetter | d27b1e0 | 2011-12-14 13:57:01 +0100 | [diff] [blame] | 1014 | if (INTEL_INFO(dev)->gen >= 4) { |
Daniel Vetter | 9d2f41f | 2012-04-02 21:41:45 +0200 | [diff] [blame] | 1015 | error->faddr[ring->id] = I915_READ(RING_DMA_FADD(ring->mmio_base)); |
Daniel Vetter | d27b1e0 | 2011-12-14 13:57:01 +0100 | [diff] [blame] | 1016 | error->ipeir[ring->id] = I915_READ(RING_IPEIR(ring->mmio_base)); |
| 1017 | error->ipehr[ring->id] = I915_READ(RING_IPEHR(ring->mmio_base)); |
| 1018 | error->instdone[ring->id] = I915_READ(RING_INSTDONE(ring->mmio_base)); |
Daniel Vetter | c1cd90e | 2011-12-14 13:57:02 +0100 | [diff] [blame] | 1019 | error->instps[ring->id] = I915_READ(RING_INSTPS(ring->mmio_base)); |
Daniel Vetter | d27b1e0 | 2011-12-14 13:57:01 +0100 | [diff] [blame] | 1020 | if (ring->id == RCS) { |
Daniel Vetter | d27b1e0 | 2011-12-14 13:57:01 +0100 | [diff] [blame] | 1021 | error->instdone1 = I915_READ(INSTDONE1); |
| 1022 | error->bbaddr = I915_READ64(BB_ADDR); |
| 1023 | } |
| 1024 | } else { |
Daniel Vetter | 9d2f41f | 2012-04-02 21:41:45 +0200 | [diff] [blame] | 1025 | error->faddr[ring->id] = I915_READ(DMA_FADD_I8XX); |
Daniel Vetter | d27b1e0 | 2011-12-14 13:57:01 +0100 | [diff] [blame] | 1026 | error->ipeir[ring->id] = I915_READ(IPEIR); |
| 1027 | error->ipehr[ring->id] = I915_READ(IPEHR); |
| 1028 | error->instdone[ring->id] = I915_READ(INSTDONE); |
Daniel Vetter | d27b1e0 | 2011-12-14 13:57:01 +0100 | [diff] [blame] | 1029 | } |
| 1030 | |
Ben Widawsky | 9574b3f | 2012-04-26 16:03:01 -0700 | [diff] [blame] | 1031 | error->waiting[ring->id] = waitqueue_active(&ring->irq_queue); |
Daniel Vetter | c1cd90e | 2011-12-14 13:57:02 +0100 | [diff] [blame] | 1032 | error->instpm[ring->id] = I915_READ(RING_INSTPM(ring->mmio_base)); |
Daniel Vetter | d27b1e0 | 2011-12-14 13:57:01 +0100 | [diff] [blame] | 1033 | error->seqno[ring->id] = ring->get_seqno(ring); |
| 1034 | error->acthd[ring->id] = intel_ring_get_active_head(ring); |
Daniel Vetter | c1cd90e | 2011-12-14 13:57:02 +0100 | [diff] [blame] | 1035 | error->head[ring->id] = I915_READ_HEAD(ring); |
| 1036 | error->tail[ring->id] = I915_READ_TAIL(ring); |
Daniel Vetter | 7e3b873 | 2012-02-01 22:26:45 +0100 | [diff] [blame] | 1037 | |
| 1038 | error->cpu_ring_head[ring->id] = ring->head; |
| 1039 | error->cpu_ring_tail[ring->id] = ring->tail; |
Daniel Vetter | d27b1e0 | 2011-12-14 13:57:01 +0100 | [diff] [blame] | 1040 | } |
| 1041 | |
Chris Wilson | 52d39a2 | 2012-02-15 11:25:37 +0000 | [diff] [blame] | 1042 | static void i915_gem_record_rings(struct drm_device *dev, |
| 1043 | struct drm_i915_error_state *error) |
| 1044 | { |
| 1045 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 1046 | struct drm_i915_gem_request *request; |
| 1047 | int i, count; |
| 1048 | |
| 1049 | for (i = 0; i < I915_NUM_RINGS; i++) { |
| 1050 | struct intel_ring_buffer *ring = &dev_priv->ring[i]; |
| 1051 | |
| 1052 | if (ring->obj == NULL) |
| 1053 | continue; |
| 1054 | |
| 1055 | i915_record_ring_state(dev, error, ring); |
| 1056 | |
| 1057 | error->ring[i].batchbuffer = |
| 1058 | i915_error_first_batchbuffer(dev_priv, ring); |
| 1059 | |
| 1060 | error->ring[i].ringbuffer = |
| 1061 | i915_error_object_create(dev_priv, ring->obj); |
| 1062 | |
| 1063 | count = 0; |
| 1064 | list_for_each_entry(request, &ring->request_list, list) |
| 1065 | count++; |
| 1066 | |
| 1067 | error->ring[i].num_requests = count; |
| 1068 | error->ring[i].requests = |
| 1069 | kmalloc(count*sizeof(struct drm_i915_error_request), |
| 1070 | GFP_ATOMIC); |
| 1071 | if (error->ring[i].requests == NULL) { |
| 1072 | error->ring[i].num_requests = 0; |
| 1073 | continue; |
| 1074 | } |
| 1075 | |
| 1076 | count = 0; |
| 1077 | list_for_each_entry(request, &ring->request_list, list) { |
| 1078 | struct drm_i915_error_request *erq; |
| 1079 | |
| 1080 | erq = &error->ring[i].requests[count++]; |
| 1081 | erq->seqno = request->seqno; |
| 1082 | erq->jiffies = request->emitted_jiffies; |
Chris Wilson | ee4f42b | 2012-02-15 11:25:38 +0000 | [diff] [blame] | 1083 | erq->tail = request->tail; |
Chris Wilson | 52d39a2 | 2012-02-15 11:25:37 +0000 | [diff] [blame] | 1084 | } |
| 1085 | } |
| 1086 | } |
| 1087 | |
Jesse Barnes | 8a90523 | 2009-07-11 16:48:03 -0400 | [diff] [blame] | 1088 | /** |
| 1089 | * i915_capture_error_state - capture an error record for later analysis |
| 1090 | * @dev: drm device |
| 1091 | * |
| 1092 | * Should be called when an error is detected (either a hang or an error |
| 1093 | * interrupt) to capture error state from the time of the error. Fills |
| 1094 | * out a structure which becomes available in debugfs for user level tools |
| 1095 | * to pick up. |
| 1096 | */ |
Jesse Barnes | 63eeaf3 | 2009-06-18 16:56:52 -0700 | [diff] [blame] | 1097 | static void i915_capture_error_state(struct drm_device *dev) |
| 1098 | { |
| 1099 | struct drm_i915_private *dev_priv = dev->dev_private; |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 1100 | struct drm_i915_gem_object *obj; |
Jesse Barnes | 63eeaf3 | 2009-06-18 16:56:52 -0700 | [diff] [blame] | 1101 | struct drm_i915_error_state *error; |
| 1102 | unsigned long flags; |
Jesse Barnes | 9db4a9c | 2011-02-07 12:26:52 -0800 | [diff] [blame] | 1103 | int i, pipe; |
Jesse Barnes | 63eeaf3 | 2009-06-18 16:56:52 -0700 | [diff] [blame] | 1104 | |
| 1105 | spin_lock_irqsave(&dev_priv->error_lock, flags); |
Chris Wilson | 9df3079 | 2010-02-18 10:24:56 +0000 | [diff] [blame] | 1106 | error = dev_priv->first_error; |
| 1107 | spin_unlock_irqrestore(&dev_priv->error_lock, flags); |
| 1108 | if (error) |
| 1109 | return; |
Jesse Barnes | 63eeaf3 | 2009-06-18 16:56:52 -0700 | [diff] [blame] | 1110 | |
Jesse Barnes | 9db4a9c | 2011-02-07 12:26:52 -0800 | [diff] [blame] | 1111 | /* Account for pipe specific data like PIPE*STAT */ |
Daniel Vetter | 33f3f51 | 2011-12-14 13:57:39 +0100 | [diff] [blame] | 1112 | error = kzalloc(sizeof(*error), GFP_ATOMIC); |
Jesse Barnes | 63eeaf3 | 2009-06-18 16:56:52 -0700 | [diff] [blame] | 1113 | if (!error) { |
Chris Wilson | 9df3079 | 2010-02-18 10:24:56 +0000 | [diff] [blame] | 1114 | DRM_DEBUG_DRIVER("out of memory, not capturing error state\n"); |
| 1115 | return; |
Jesse Barnes | 63eeaf3 | 2009-06-18 16:56:52 -0700 | [diff] [blame] | 1116 | } |
| 1117 | |
Chris Wilson | b6f7833 | 2011-02-01 14:15:55 +0000 | [diff] [blame] | 1118 | DRM_INFO("capturing error event; look for more information in /debug/dri/%d/i915_error_state\n", |
| 1119 | dev->primary->index); |
Chris Wilson | 2fa772f | 2010-10-01 13:23:27 +0100 | [diff] [blame] | 1120 | |
Jesse Barnes | 63eeaf3 | 2009-06-18 16:56:52 -0700 | [diff] [blame] | 1121 | error->eir = I915_READ(EIR); |
| 1122 | error->pgtbl_er = I915_READ(PGTBL_ER); |
Ben Widawsky | be998e2 | 2012-04-26 16:03:00 -0700 | [diff] [blame] | 1123 | |
| 1124 | if (HAS_PCH_SPLIT(dev)) |
| 1125 | error->ier = I915_READ(DEIER) | I915_READ(GTIER); |
| 1126 | else if (IS_VALLEYVIEW(dev)) |
| 1127 | error->ier = I915_READ(GTIER) | I915_READ(VLV_IER); |
| 1128 | else if (IS_GEN2(dev)) |
| 1129 | error->ier = I915_READ16(IER); |
| 1130 | else |
| 1131 | error->ier = I915_READ(IER); |
| 1132 | |
Jesse Barnes | 9db4a9c | 2011-02-07 12:26:52 -0800 | [diff] [blame] | 1133 | for_each_pipe(pipe) |
| 1134 | error->pipestat[pipe] = I915_READ(PIPESTAT(pipe)); |
Daniel Vetter | d27b1e0 | 2011-12-14 13:57:01 +0100 | [diff] [blame] | 1135 | |
Daniel Vetter | 33f3f51 | 2011-12-14 13:57:39 +0100 | [diff] [blame] | 1136 | if (INTEL_INFO(dev)->gen >= 6) { |
Chris Wilson | f406839 | 2010-10-27 20:36:41 +0100 | [diff] [blame] | 1137 | error->error = I915_READ(ERROR_GEN6); |
Daniel Vetter | 33f3f51 | 2011-12-14 13:57:39 +0100 | [diff] [blame] | 1138 | error->done_reg = I915_READ(DONE_REG); |
| 1139 | } |
Chris Wilson | add354d | 2010-10-29 19:00:51 +0100 | [diff] [blame] | 1140 | |
Chris Wilson | 748ebc6 | 2010-10-24 10:28:47 +0100 | [diff] [blame] | 1141 | i915_gem_record_fences(dev, error); |
Chris Wilson | 52d39a2 | 2012-02-15 11:25:37 +0000 | [diff] [blame] | 1142 | i915_gem_record_rings(dev, error); |
Chris Wilson | 9df3079 | 2010-02-18 10:24:56 +0000 | [diff] [blame] | 1143 | |
Chris Wilson | c724e8a | 2010-11-22 08:07:02 +0000 | [diff] [blame] | 1144 | /* Record buffers on the active and pinned lists. */ |
Chris Wilson | 9df3079 | 2010-02-18 10:24:56 +0000 | [diff] [blame] | 1145 | error->active_bo = NULL; |
Chris Wilson | c724e8a | 2010-11-22 08:07:02 +0000 | [diff] [blame] | 1146 | error->pinned_bo = NULL; |
Chris Wilson | 9df3079 | 2010-02-18 10:24:56 +0000 | [diff] [blame] | 1147 | |
Chris Wilson | bcfb2e2 | 2011-01-07 21:06:07 +0000 | [diff] [blame] | 1148 | i = 0; |
| 1149 | list_for_each_entry(obj, &dev_priv->mm.active_list, mm_list) |
| 1150 | i++; |
| 1151 | error->active_bo_count = i; |
Chris Wilson | 1b50247 | 2012-04-24 15:47:30 +0100 | [diff] [blame] | 1152 | list_for_each_entry(obj, &dev_priv->mm.gtt_list, gtt_list) |
| 1153 | if (obj->pin_count) |
| 1154 | i++; |
Chris Wilson | bcfb2e2 | 2011-01-07 21:06:07 +0000 | [diff] [blame] | 1155 | error->pinned_bo_count = i - error->active_bo_count; |
Chris Wilson | c724e8a | 2010-11-22 08:07:02 +0000 | [diff] [blame] | 1156 | |
Chris Wilson | 8e934db | 2011-01-24 12:34:00 +0000 | [diff] [blame] | 1157 | error->active_bo = NULL; |
| 1158 | error->pinned_bo = NULL; |
Chris Wilson | bcfb2e2 | 2011-01-07 21:06:07 +0000 | [diff] [blame] | 1159 | if (i) { |
| 1160 | error->active_bo = kmalloc(sizeof(*error->active_bo)*i, |
Chris Wilson | 9df3079 | 2010-02-18 10:24:56 +0000 | [diff] [blame] | 1161 | GFP_ATOMIC); |
Chris Wilson | c724e8a | 2010-11-22 08:07:02 +0000 | [diff] [blame] | 1162 | if (error->active_bo) |
| 1163 | error->pinned_bo = |
| 1164 | error->active_bo + error->active_bo_count; |
Jesse Barnes | 63eeaf3 | 2009-06-18 16:56:52 -0700 | [diff] [blame] | 1165 | } |
| 1166 | |
Chris Wilson | c724e8a | 2010-11-22 08:07:02 +0000 | [diff] [blame] | 1167 | if (error->active_bo) |
| 1168 | error->active_bo_count = |
Chris Wilson | 1b50247 | 2012-04-24 15:47:30 +0100 | [diff] [blame] | 1169 | capture_active_bo(error->active_bo, |
| 1170 | error->active_bo_count, |
| 1171 | &dev_priv->mm.active_list); |
Chris Wilson | c724e8a | 2010-11-22 08:07:02 +0000 | [diff] [blame] | 1172 | |
| 1173 | if (error->pinned_bo) |
| 1174 | error->pinned_bo_count = |
Chris Wilson | 1b50247 | 2012-04-24 15:47:30 +0100 | [diff] [blame] | 1175 | capture_pinned_bo(error->pinned_bo, |
| 1176 | error->pinned_bo_count, |
| 1177 | &dev_priv->mm.gtt_list); |
Chris Wilson | c724e8a | 2010-11-22 08:07:02 +0000 | [diff] [blame] | 1178 | |
Jesse Barnes | 8a90523 | 2009-07-11 16:48:03 -0400 | [diff] [blame] | 1179 | do_gettimeofday(&error->time); |
| 1180 | |
Chris Wilson | 6ef3d42 | 2010-08-04 20:26:07 +0100 | [diff] [blame] | 1181 | error->overlay = intel_overlay_capture_error_state(dev); |
Chris Wilson | c4a1d9e | 2010-11-21 13:12:35 +0000 | [diff] [blame] | 1182 | error->display = intel_display_capture_error_state(dev); |
Chris Wilson | 6ef3d42 | 2010-08-04 20:26:07 +0100 | [diff] [blame] | 1183 | |
Chris Wilson | 9df3079 | 2010-02-18 10:24:56 +0000 | [diff] [blame] | 1184 | spin_lock_irqsave(&dev_priv->error_lock, flags); |
| 1185 | if (dev_priv->first_error == NULL) { |
| 1186 | dev_priv->first_error = error; |
| 1187 | error = NULL; |
| 1188 | } |
Jesse Barnes | 63eeaf3 | 2009-06-18 16:56:52 -0700 | [diff] [blame] | 1189 | spin_unlock_irqrestore(&dev_priv->error_lock, flags); |
Chris Wilson | 9df3079 | 2010-02-18 10:24:56 +0000 | [diff] [blame] | 1190 | |
| 1191 | if (error) |
| 1192 | i915_error_state_free(dev, error); |
| 1193 | } |
| 1194 | |
| 1195 | void i915_destroy_error_state(struct drm_device *dev) |
| 1196 | { |
| 1197 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 1198 | struct drm_i915_error_state *error; |
Ben Widawsky | 6dc0e81 | 2012-01-23 15:30:02 -0800 | [diff] [blame] | 1199 | unsigned long flags; |
Chris Wilson | 9df3079 | 2010-02-18 10:24:56 +0000 | [diff] [blame] | 1200 | |
Ben Widawsky | 6dc0e81 | 2012-01-23 15:30:02 -0800 | [diff] [blame] | 1201 | spin_lock_irqsave(&dev_priv->error_lock, flags); |
Chris Wilson | 9df3079 | 2010-02-18 10:24:56 +0000 | [diff] [blame] | 1202 | error = dev_priv->first_error; |
| 1203 | dev_priv->first_error = NULL; |
Ben Widawsky | 6dc0e81 | 2012-01-23 15:30:02 -0800 | [diff] [blame] | 1204 | spin_unlock_irqrestore(&dev_priv->error_lock, flags); |
Chris Wilson | 9df3079 | 2010-02-18 10:24:56 +0000 | [diff] [blame] | 1205 | |
| 1206 | if (error) |
| 1207 | i915_error_state_free(dev, error); |
Jesse Barnes | 63eeaf3 | 2009-06-18 16:56:52 -0700 | [diff] [blame] | 1208 | } |
Chris Wilson | 3bd3c93 | 2010-08-19 08:19:30 +0100 | [diff] [blame] | 1209 | #else |
| 1210 | #define i915_capture_error_state(x) |
| 1211 | #endif |
Jesse Barnes | 63eeaf3 | 2009-06-18 16:56:52 -0700 | [diff] [blame] | 1212 | |
Chris Wilson | 35aed2e | 2010-05-27 13:18:12 +0100 | [diff] [blame] | 1213 | static void i915_report_and_clear_eir(struct drm_device *dev) |
Jesse Barnes | 8a90523 | 2009-07-11 16:48:03 -0400 | [diff] [blame] | 1214 | { |
| 1215 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 1216 | u32 eir = I915_READ(EIR); |
Jesse Barnes | 9db4a9c | 2011-02-07 12:26:52 -0800 | [diff] [blame] | 1217 | int pipe; |
Jesse Barnes | 8a90523 | 2009-07-11 16:48:03 -0400 | [diff] [blame] | 1218 | |
Chris Wilson | 35aed2e | 2010-05-27 13:18:12 +0100 | [diff] [blame] | 1219 | if (!eir) |
| 1220 | return; |
Jesse Barnes | 8a90523 | 2009-07-11 16:48:03 -0400 | [diff] [blame] | 1221 | |
Joe Perches | a70491c | 2012-03-18 13:00:11 -0700 | [diff] [blame] | 1222 | pr_err("render error detected, EIR: 0x%08x\n", eir); |
Jesse Barnes | 8a90523 | 2009-07-11 16:48:03 -0400 | [diff] [blame] | 1223 | |
| 1224 | if (IS_G4X(dev)) { |
| 1225 | if (eir & (GM45_ERROR_MEM_PRIV | GM45_ERROR_CP_PRIV)) { |
| 1226 | u32 ipeir = I915_READ(IPEIR_I965); |
| 1227 | |
Joe Perches | a70491c | 2012-03-18 13:00:11 -0700 | [diff] [blame] | 1228 | pr_err(" IPEIR: 0x%08x\n", I915_READ(IPEIR_I965)); |
| 1229 | pr_err(" IPEHR: 0x%08x\n", I915_READ(IPEHR_I965)); |
| 1230 | pr_err(" INSTDONE: 0x%08x\n", |
Jesse Barnes | 8a90523 | 2009-07-11 16:48:03 -0400 | [diff] [blame] | 1231 | I915_READ(INSTDONE_I965)); |
Joe Perches | a70491c | 2012-03-18 13:00:11 -0700 | [diff] [blame] | 1232 | pr_err(" INSTPS: 0x%08x\n", I915_READ(INSTPS)); |
| 1233 | pr_err(" INSTDONE1: 0x%08x\n", I915_READ(INSTDONE1)); |
| 1234 | pr_err(" ACTHD: 0x%08x\n", I915_READ(ACTHD_I965)); |
Jesse Barnes | 8a90523 | 2009-07-11 16:48:03 -0400 | [diff] [blame] | 1235 | I915_WRITE(IPEIR_I965, ipeir); |
Chris Wilson | 3143a2b | 2010-11-16 15:55:10 +0000 | [diff] [blame] | 1236 | POSTING_READ(IPEIR_I965); |
Jesse Barnes | 8a90523 | 2009-07-11 16:48:03 -0400 | [diff] [blame] | 1237 | } |
| 1238 | if (eir & GM45_ERROR_PAGE_TABLE) { |
| 1239 | u32 pgtbl_err = I915_READ(PGTBL_ER); |
Joe Perches | a70491c | 2012-03-18 13:00:11 -0700 | [diff] [blame] | 1240 | pr_err("page table error\n"); |
| 1241 | pr_err(" PGTBL_ER: 0x%08x\n", pgtbl_err); |
Jesse Barnes | 8a90523 | 2009-07-11 16:48:03 -0400 | [diff] [blame] | 1242 | I915_WRITE(PGTBL_ER, pgtbl_err); |
Chris Wilson | 3143a2b | 2010-11-16 15:55:10 +0000 | [diff] [blame] | 1243 | POSTING_READ(PGTBL_ER); |
Jesse Barnes | 8a90523 | 2009-07-11 16:48:03 -0400 | [diff] [blame] | 1244 | } |
| 1245 | } |
| 1246 | |
Chris Wilson | a6c45cf | 2010-09-17 00:32:17 +0100 | [diff] [blame] | 1247 | if (!IS_GEN2(dev)) { |
Jesse Barnes | 8a90523 | 2009-07-11 16:48:03 -0400 | [diff] [blame] | 1248 | if (eir & I915_ERROR_PAGE_TABLE) { |
| 1249 | u32 pgtbl_err = I915_READ(PGTBL_ER); |
Joe Perches | a70491c | 2012-03-18 13:00:11 -0700 | [diff] [blame] | 1250 | pr_err("page table error\n"); |
| 1251 | pr_err(" PGTBL_ER: 0x%08x\n", pgtbl_err); |
Jesse Barnes | 8a90523 | 2009-07-11 16:48:03 -0400 | [diff] [blame] | 1252 | I915_WRITE(PGTBL_ER, pgtbl_err); |
Chris Wilson | 3143a2b | 2010-11-16 15:55:10 +0000 | [diff] [blame] | 1253 | POSTING_READ(PGTBL_ER); |
Jesse Barnes | 8a90523 | 2009-07-11 16:48:03 -0400 | [diff] [blame] | 1254 | } |
| 1255 | } |
| 1256 | |
| 1257 | if (eir & I915_ERROR_MEMORY_REFRESH) { |
Joe Perches | a70491c | 2012-03-18 13:00:11 -0700 | [diff] [blame] | 1258 | pr_err("memory refresh error:\n"); |
Jesse Barnes | 9db4a9c | 2011-02-07 12:26:52 -0800 | [diff] [blame] | 1259 | for_each_pipe(pipe) |
Joe Perches | a70491c | 2012-03-18 13:00:11 -0700 | [diff] [blame] | 1260 | pr_err("pipe %c stat: 0x%08x\n", |
Jesse Barnes | 9db4a9c | 2011-02-07 12:26:52 -0800 | [diff] [blame] | 1261 | pipe_name(pipe), I915_READ(PIPESTAT(pipe))); |
Jesse Barnes | 8a90523 | 2009-07-11 16:48:03 -0400 | [diff] [blame] | 1262 | /* pipestat has already been acked */ |
| 1263 | } |
| 1264 | if (eir & I915_ERROR_INSTRUCTION) { |
Joe Perches | a70491c | 2012-03-18 13:00:11 -0700 | [diff] [blame] | 1265 | pr_err("instruction error\n"); |
| 1266 | pr_err(" INSTPM: 0x%08x\n", I915_READ(INSTPM)); |
Chris Wilson | a6c45cf | 2010-09-17 00:32:17 +0100 | [diff] [blame] | 1267 | if (INTEL_INFO(dev)->gen < 4) { |
Jesse Barnes | 8a90523 | 2009-07-11 16:48:03 -0400 | [diff] [blame] | 1268 | u32 ipeir = I915_READ(IPEIR); |
| 1269 | |
Joe Perches | a70491c | 2012-03-18 13:00:11 -0700 | [diff] [blame] | 1270 | pr_err(" IPEIR: 0x%08x\n", I915_READ(IPEIR)); |
| 1271 | pr_err(" IPEHR: 0x%08x\n", I915_READ(IPEHR)); |
| 1272 | pr_err(" INSTDONE: 0x%08x\n", I915_READ(INSTDONE)); |
| 1273 | pr_err(" ACTHD: 0x%08x\n", I915_READ(ACTHD)); |
Jesse Barnes | 8a90523 | 2009-07-11 16:48:03 -0400 | [diff] [blame] | 1274 | I915_WRITE(IPEIR, ipeir); |
Chris Wilson | 3143a2b | 2010-11-16 15:55:10 +0000 | [diff] [blame] | 1275 | POSTING_READ(IPEIR); |
Jesse Barnes | 8a90523 | 2009-07-11 16:48:03 -0400 | [diff] [blame] | 1276 | } else { |
| 1277 | u32 ipeir = I915_READ(IPEIR_I965); |
| 1278 | |
Joe Perches | a70491c | 2012-03-18 13:00:11 -0700 | [diff] [blame] | 1279 | pr_err(" IPEIR: 0x%08x\n", I915_READ(IPEIR_I965)); |
| 1280 | pr_err(" IPEHR: 0x%08x\n", I915_READ(IPEHR_I965)); |
| 1281 | pr_err(" INSTDONE: 0x%08x\n", |
Jesse Barnes | 8a90523 | 2009-07-11 16:48:03 -0400 | [diff] [blame] | 1282 | I915_READ(INSTDONE_I965)); |
Joe Perches | a70491c | 2012-03-18 13:00:11 -0700 | [diff] [blame] | 1283 | pr_err(" INSTPS: 0x%08x\n", I915_READ(INSTPS)); |
| 1284 | pr_err(" INSTDONE1: 0x%08x\n", I915_READ(INSTDONE1)); |
| 1285 | pr_err(" ACTHD: 0x%08x\n", I915_READ(ACTHD_I965)); |
Jesse Barnes | 8a90523 | 2009-07-11 16:48:03 -0400 | [diff] [blame] | 1286 | I915_WRITE(IPEIR_I965, ipeir); |
Chris Wilson | 3143a2b | 2010-11-16 15:55:10 +0000 | [diff] [blame] | 1287 | POSTING_READ(IPEIR_I965); |
Jesse Barnes | 8a90523 | 2009-07-11 16:48:03 -0400 | [diff] [blame] | 1288 | } |
| 1289 | } |
| 1290 | |
| 1291 | I915_WRITE(EIR, eir); |
Chris Wilson | 3143a2b | 2010-11-16 15:55:10 +0000 | [diff] [blame] | 1292 | POSTING_READ(EIR); |
Jesse Barnes | 8a90523 | 2009-07-11 16:48:03 -0400 | [diff] [blame] | 1293 | eir = I915_READ(EIR); |
| 1294 | if (eir) { |
| 1295 | /* |
| 1296 | * some errors might have become stuck, |
| 1297 | * mask them. |
| 1298 | */ |
| 1299 | DRM_ERROR("EIR stuck: 0x%08x, masking\n", eir); |
| 1300 | I915_WRITE(EMR, I915_READ(EMR) | eir); |
| 1301 | I915_WRITE(IIR, I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT); |
| 1302 | } |
Chris Wilson | 35aed2e | 2010-05-27 13:18:12 +0100 | [diff] [blame] | 1303 | } |
| 1304 | |
| 1305 | /** |
| 1306 | * i915_handle_error - handle an error interrupt |
| 1307 | * @dev: drm device |
| 1308 | * |
| 1309 | * Do some basic checking of regsiter state at error interrupt time and |
| 1310 | * dump it to the syslog. Also call i915_capture_error_state() to make |
| 1311 | * sure we get a record and make it available in debugfs. Fire a uevent |
| 1312 | * so userspace knows something bad happened (should trigger collection |
| 1313 | * of a ring dump etc.). |
| 1314 | */ |
Chris Wilson | 527f9e9 | 2010-11-11 01:16:58 +0000 | [diff] [blame] | 1315 | void i915_handle_error(struct drm_device *dev, bool wedged) |
Chris Wilson | 35aed2e | 2010-05-27 13:18:12 +0100 | [diff] [blame] | 1316 | { |
| 1317 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 1318 | |
| 1319 | i915_capture_error_state(dev); |
| 1320 | i915_report_and_clear_eir(dev); |
Jesse Barnes | 8a90523 | 2009-07-11 16:48:03 -0400 | [diff] [blame] | 1321 | |
Ben Gamari | ba1234d | 2009-09-14 17:48:47 -0400 | [diff] [blame] | 1322 | if (wedged) { |
Chris Wilson | 30dbf0c | 2010-09-25 10:19:17 +0100 | [diff] [blame] | 1323 | INIT_COMPLETION(dev_priv->error_completion); |
Ben Gamari | ba1234d | 2009-09-14 17:48:47 -0400 | [diff] [blame] | 1324 | atomic_set(&dev_priv->mm.wedged, 1); |
| 1325 | |
Ben Gamari | 11ed50e | 2009-09-14 17:48:45 -0400 | [diff] [blame] | 1326 | /* |
| 1327 | * Wakeup waiting processes so they don't hang |
| 1328 | */ |
Chris Wilson | 1ec14ad | 2010-12-04 11:30:53 +0000 | [diff] [blame] | 1329 | wake_up_all(&dev_priv->ring[RCS].irq_queue); |
Chris Wilson | f787a5f | 2010-09-24 16:02:42 +0100 | [diff] [blame] | 1330 | if (HAS_BSD(dev)) |
Chris Wilson | 1ec14ad | 2010-12-04 11:30:53 +0000 | [diff] [blame] | 1331 | wake_up_all(&dev_priv->ring[VCS].irq_queue); |
Chris Wilson | 549f736 | 2010-10-19 11:19:32 +0100 | [diff] [blame] | 1332 | if (HAS_BLT(dev)) |
Chris Wilson | 1ec14ad | 2010-12-04 11:30:53 +0000 | [diff] [blame] | 1333 | wake_up_all(&dev_priv->ring[BCS].irq_queue); |
Ben Gamari | 11ed50e | 2009-09-14 17:48:45 -0400 | [diff] [blame] | 1334 | } |
| 1335 | |
Eric Anholt | 9c9fe1f | 2009-08-03 16:09:16 -0700 | [diff] [blame] | 1336 | queue_work(dev_priv->wq, &dev_priv->error_work); |
Jesse Barnes | 8a90523 | 2009-07-11 16:48:03 -0400 | [diff] [blame] | 1337 | } |
| 1338 | |
Simon Farnsworth | 4e5359c | 2010-09-01 17:47:52 +0100 | [diff] [blame] | 1339 | static void i915_pageflip_stall_check(struct drm_device *dev, int pipe) |
| 1340 | { |
| 1341 | drm_i915_private_t *dev_priv = dev->dev_private; |
| 1342 | struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe]; |
| 1343 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 1344 | struct drm_i915_gem_object *obj; |
Simon Farnsworth | 4e5359c | 2010-09-01 17:47:52 +0100 | [diff] [blame] | 1345 | struct intel_unpin_work *work; |
| 1346 | unsigned long flags; |
| 1347 | bool stall_detected; |
| 1348 | |
| 1349 | /* Ignore early vblank irqs */ |
| 1350 | if (intel_crtc == NULL) |
| 1351 | return; |
| 1352 | |
| 1353 | spin_lock_irqsave(&dev->event_lock, flags); |
| 1354 | work = intel_crtc->unpin_work; |
| 1355 | |
| 1356 | if (work == NULL || work->pending || !work->enable_stall_check) { |
| 1357 | /* Either the pending flip IRQ arrived, or we're too early. Don't check */ |
| 1358 | spin_unlock_irqrestore(&dev->event_lock, flags); |
| 1359 | return; |
| 1360 | } |
| 1361 | |
| 1362 | /* Potential stall - if we see that the flip has happened, assume a missed interrupt */ |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 1363 | obj = work->pending_flip_obj; |
Chris Wilson | a6c45cf | 2010-09-17 00:32:17 +0100 | [diff] [blame] | 1364 | if (INTEL_INFO(dev)->gen >= 4) { |
Jesse Barnes | 9db4a9c | 2011-02-07 12:26:52 -0800 | [diff] [blame] | 1365 | int dspsurf = DSPSURF(intel_crtc->plane); |
Armin Reese | 446f254 | 2012-03-30 16:20:16 -0700 | [diff] [blame] | 1366 | stall_detected = I915_HI_DISPBASE(I915_READ(dspsurf)) == |
| 1367 | obj->gtt_offset; |
Simon Farnsworth | 4e5359c | 2010-09-01 17:47:52 +0100 | [diff] [blame] | 1368 | } else { |
Jesse Barnes | 9db4a9c | 2011-02-07 12:26:52 -0800 | [diff] [blame] | 1369 | int dspaddr = DSPADDR(intel_crtc->plane); |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 1370 | stall_detected = I915_READ(dspaddr) == (obj->gtt_offset + |
Ville Syrjälä | 01f2c77 | 2011-12-20 00:06:49 +0200 | [diff] [blame] | 1371 | crtc->y * crtc->fb->pitches[0] + |
Simon Farnsworth | 4e5359c | 2010-09-01 17:47:52 +0100 | [diff] [blame] | 1372 | crtc->x * crtc->fb->bits_per_pixel/8); |
| 1373 | } |
| 1374 | |
| 1375 | spin_unlock_irqrestore(&dev->event_lock, flags); |
| 1376 | |
| 1377 | if (stall_detected) { |
| 1378 | DRM_DEBUG_DRIVER("Pageflip stall detected\n"); |
| 1379 | intel_prepare_page_flip(dev, intel_crtc->plane); |
| 1380 | } |
| 1381 | } |
| 1382 | |
Dave Airlie | af6061a | 2008-05-07 12:15:39 +1000 | [diff] [blame] | 1383 | static int i915_emit_irq(struct drm_device * dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1384 | { |
| 1385 | drm_i915_private_t *dev_priv = dev->dev_private; |
Dave Airlie | 7c1c287 | 2008-11-28 14:22:24 +1000 | [diff] [blame] | 1386 | struct drm_i915_master_private *master_priv = dev->primary->master->driver_priv; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1387 | |
| 1388 | i915_kernel_lost_context(dev); |
| 1389 | |
Zhao Yakui | 44d98a6 | 2009-10-09 11:39:40 +0800 | [diff] [blame] | 1390 | DRM_DEBUG_DRIVER("\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1391 | |
Kristian Høgsberg | c99b058 | 2008-08-20 11:20:13 -0400 | [diff] [blame] | 1392 | dev_priv->counter++; |
Alan Hourihane | c29b669 | 2006-08-12 16:29:24 +1000 | [diff] [blame] | 1393 | if (dev_priv->counter > 0x7FFFFFFFUL) |
Kristian Høgsberg | c99b058 | 2008-08-20 11:20:13 -0400 | [diff] [blame] | 1394 | dev_priv->counter = 1; |
Dave Airlie | 7c1c287 | 2008-11-28 14:22:24 +1000 | [diff] [blame] | 1395 | if (master_priv->sarea_priv) |
| 1396 | master_priv->sarea_priv->last_enqueue = dev_priv->counter; |
Alan Hourihane | c29b669 | 2006-08-12 16:29:24 +1000 | [diff] [blame] | 1397 | |
Chris Wilson | e1f99ce | 2010-10-27 12:45:26 +0100 | [diff] [blame] | 1398 | if (BEGIN_LP_RING(4) == 0) { |
| 1399 | OUT_RING(MI_STORE_DWORD_INDEX); |
| 1400 | OUT_RING(I915_BREADCRUMB_INDEX << MI_STORE_DWORD_INDEX_SHIFT); |
| 1401 | OUT_RING(dev_priv->counter); |
| 1402 | OUT_RING(MI_USER_INTERRUPT); |
| 1403 | ADVANCE_LP_RING(); |
| 1404 | } |
Dave Airlie | bc5f452 | 2007-11-05 12:50:58 +1000 | [diff] [blame] | 1405 | |
Alan Hourihane | c29b669 | 2006-08-12 16:29:24 +1000 | [diff] [blame] | 1406 | return dev_priv->counter; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1407 | } |
| 1408 | |
Dave Airlie | 84b1fd1 | 2007-07-11 15:53:27 +1000 | [diff] [blame] | 1409 | static int i915_wait_irq(struct drm_device * dev, int irq_nr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1410 | { |
| 1411 | 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] | 1412 | struct drm_i915_master_private *master_priv = dev->primary->master->driver_priv; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1413 | int ret = 0; |
Chris Wilson | 1ec14ad | 2010-12-04 11:30:53 +0000 | [diff] [blame] | 1414 | struct intel_ring_buffer *ring = LP_RING(dev_priv); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1415 | |
Zhao Yakui | 44d98a6 | 2009-10-09 11:39:40 +0800 | [diff] [blame] | 1416 | DRM_DEBUG_DRIVER("irq_nr=%d breadcrumb=%d\n", irq_nr, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1417 | READ_BREADCRUMB(dev_priv)); |
| 1418 | |
Eric Anholt | ed4cb41 | 2008-07-29 12:10:39 -0700 | [diff] [blame] | 1419 | if (READ_BREADCRUMB(dev_priv) >= irq_nr) { |
Dave Airlie | 7c1c287 | 2008-11-28 14:22:24 +1000 | [diff] [blame] | 1420 | if (master_priv->sarea_priv) |
| 1421 | master_priv->sarea_priv->last_dispatch = READ_BREADCRUMB(dev_priv); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1422 | return 0; |
Eric Anholt | ed4cb41 | 2008-07-29 12:10:39 -0700 | [diff] [blame] | 1423 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1424 | |
Dave Airlie | 7c1c287 | 2008-11-28 14:22:24 +1000 | [diff] [blame] | 1425 | if (master_priv->sarea_priv) |
| 1426 | master_priv->sarea_priv->perf_boxes |= I915_BOX_WAIT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1427 | |
Chris Wilson | b13c2b9 | 2010-12-13 16:54:50 +0000 | [diff] [blame] | 1428 | if (ring->irq_get(ring)) { |
| 1429 | DRM_WAIT_ON(ret, ring->irq_queue, 3 * DRM_HZ, |
| 1430 | READ_BREADCRUMB(dev_priv) >= irq_nr); |
| 1431 | ring->irq_put(ring); |
Chris Wilson | 5a9a8d1 | 2011-01-23 13:03:24 +0000 | [diff] [blame] | 1432 | } else if (wait_for(READ_BREADCRUMB(dev_priv) >= irq_nr, 3000)) |
| 1433 | ret = -EBUSY; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1434 | |
Eric Anholt | 20caafa | 2007-08-25 19:22:43 +1000 | [diff] [blame] | 1435 | if (ret == -EBUSY) { |
Márton Németh | 3e684ea | 2008-01-24 15:58:57 +1000 | [diff] [blame] | 1436 | DRM_ERROR("EBUSY -- rec: %d emitted: %d\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1437 | READ_BREADCRUMB(dev_priv), (int)dev_priv->counter); |
| 1438 | } |
| 1439 | |
Dave Airlie | af6061a | 2008-05-07 12:15:39 +1000 | [diff] [blame] | 1440 | return ret; |
| 1441 | } |
| 1442 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1443 | /* Needs the lock as it touches the ring. |
| 1444 | */ |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 1445 | int i915_irq_emit(struct drm_device *dev, void *data, |
| 1446 | struct drm_file *file_priv) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1447 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1448 | drm_i915_private_t *dev_priv = dev->dev_private; |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 1449 | drm_i915_irq_emit_t *emit = data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1450 | int result; |
| 1451 | |
Daniel Vetter | cd9d4e9 | 2012-04-24 08:29:42 +0200 | [diff] [blame] | 1452 | if (drm_core_check_feature(dev, DRIVER_MODESET)) |
| 1453 | return -ENODEV; |
| 1454 | |
Chris Wilson | 1ec14ad | 2010-12-04 11:30:53 +0000 | [diff] [blame] | 1455 | if (!dev_priv || !LP_RING(dev_priv)->virtual_start) { |
Márton Németh | 3e684ea | 2008-01-24 15:58:57 +1000 | [diff] [blame] | 1456 | DRM_ERROR("called with no initialization\n"); |
Eric Anholt | 20caafa | 2007-08-25 19:22:43 +1000 | [diff] [blame] | 1457 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1458 | } |
Eric Anholt | 299eb93 | 2009-02-24 22:14:12 -0800 | [diff] [blame] | 1459 | |
| 1460 | RING_LOCK_TEST_WITH_RETURN(dev, file_priv); |
| 1461 | |
Eric Anholt | 546b097 | 2008-09-01 16:45:29 -0700 | [diff] [blame] | 1462 | mutex_lock(&dev->struct_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1463 | result = i915_emit_irq(dev); |
Eric Anholt | 546b097 | 2008-09-01 16:45:29 -0700 | [diff] [blame] | 1464 | mutex_unlock(&dev->struct_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1465 | |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 1466 | if (DRM_COPY_TO_USER(emit->irq_seq, &result, sizeof(int))) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1467 | DRM_ERROR("copy_to_user\n"); |
Eric Anholt | 20caafa | 2007-08-25 19:22:43 +1000 | [diff] [blame] | 1468 | return -EFAULT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1469 | } |
| 1470 | |
| 1471 | return 0; |
| 1472 | } |
| 1473 | |
| 1474 | /* Doesn't need the hardware lock. |
| 1475 | */ |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 1476 | int i915_irq_wait(struct drm_device *dev, void *data, |
| 1477 | struct drm_file *file_priv) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1478 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1479 | drm_i915_private_t *dev_priv = dev->dev_private; |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 1480 | drm_i915_irq_wait_t *irqwait = data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1481 | |
Daniel Vetter | cd9d4e9 | 2012-04-24 08:29:42 +0200 | [diff] [blame] | 1482 | if (drm_core_check_feature(dev, DRIVER_MODESET)) |
| 1483 | return -ENODEV; |
| 1484 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1485 | if (!dev_priv) { |
Márton Németh | 3e684ea | 2008-01-24 15:58:57 +1000 | [diff] [blame] | 1486 | DRM_ERROR("called with no initialization\n"); |
Eric Anholt | 20caafa | 2007-08-25 19:22:43 +1000 | [diff] [blame] | 1487 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1488 | } |
| 1489 | |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 1490 | return i915_wait_irq(dev, irqwait->irq_seq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1491 | } |
| 1492 | |
Keith Packard | 42f52ef | 2008-10-18 19:39:29 -0700 | [diff] [blame] | 1493 | /* Called from drm generic code, passed 'crtc' which |
| 1494 | * we use as a pipe index |
| 1495 | */ |
Jesse Barnes | f71d4af | 2011-06-28 13:00:41 -0700 | [diff] [blame] | 1496 | static int i915_enable_vblank(struct drm_device *dev, int pipe) |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 1497 | { |
| 1498 | 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] | 1499 | unsigned long irqflags; |
Jesse Barnes | 71e0ffa | 2009-01-08 10:42:15 -0800 | [diff] [blame] | 1500 | |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 1501 | if (!i915_pipe_enabled(dev, pipe)) |
Jesse Barnes | 71e0ffa | 2009-01-08 10:42:15 -0800 | [diff] [blame] | 1502 | return -EINVAL; |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 1503 | |
Chris Wilson | 1ec14ad | 2010-12-04 11:30:53 +0000 | [diff] [blame] | 1504 | spin_lock_irqsave(&dev_priv->irq_lock, irqflags); |
Jesse Barnes | f796cf8 | 2011-04-07 13:58:17 -0700 | [diff] [blame] | 1505 | if (INTEL_INFO(dev)->gen >= 4) |
Keith Packard | 7c46358 | 2008-11-04 02:03:27 -0800 | [diff] [blame] | 1506 | i915_enable_pipestat(dev_priv, pipe, |
| 1507 | PIPE_START_VBLANK_INTERRUPT_ENABLE); |
Keith Packard | e9d21d7 | 2008-10-16 11:31:38 -0700 | [diff] [blame] | 1508 | else |
Keith Packard | 7c46358 | 2008-11-04 02:03:27 -0800 | [diff] [blame] | 1509 | i915_enable_pipestat(dev_priv, pipe, |
| 1510 | PIPE_VBLANK_INTERRUPT_ENABLE); |
Chris Wilson | 8692d00e | 2011-02-05 10:08:21 +0000 | [diff] [blame] | 1511 | |
| 1512 | /* maintain vblank delivery even in deep C-states */ |
| 1513 | if (dev_priv->info->gen == 3) |
Daniel Vetter | 6b26c86 | 2012-04-24 14:04:12 +0200 | [diff] [blame] | 1514 | I915_WRITE(INSTPM, _MASKED_BIT_DISABLE(INSTPM_AGPBUSY_DIS)); |
Chris Wilson | 1ec14ad | 2010-12-04 11:30:53 +0000 | [diff] [blame] | 1515 | spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags); |
Chris Wilson | 8692d00e | 2011-02-05 10:08:21 +0000 | [diff] [blame] | 1516 | |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 1517 | return 0; |
| 1518 | } |
| 1519 | |
Jesse Barnes | f71d4af | 2011-06-28 13:00:41 -0700 | [diff] [blame] | 1520 | static int ironlake_enable_vblank(struct drm_device *dev, int pipe) |
Jesse Barnes | f796cf8 | 2011-04-07 13:58:17 -0700 | [diff] [blame] | 1521 | { |
| 1522 | drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private; |
| 1523 | unsigned long irqflags; |
| 1524 | |
| 1525 | if (!i915_pipe_enabled(dev, pipe)) |
| 1526 | return -EINVAL; |
| 1527 | |
| 1528 | spin_lock_irqsave(&dev_priv->irq_lock, irqflags); |
| 1529 | ironlake_enable_display_irq(dev_priv, (pipe == 0) ? |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 1530 | DE_PIPEA_VBLANK : DE_PIPEB_VBLANK); |
Jesse Barnes | f796cf8 | 2011-04-07 13:58:17 -0700 | [diff] [blame] | 1531 | spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags); |
| 1532 | |
| 1533 | return 0; |
| 1534 | } |
| 1535 | |
Jesse Barnes | f71d4af | 2011-06-28 13:00:41 -0700 | [diff] [blame] | 1536 | static int ivybridge_enable_vblank(struct drm_device *dev, int pipe) |
Jesse Barnes | b1f14ad | 2011-04-06 12:13:38 -0700 | [diff] [blame] | 1537 | { |
| 1538 | drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private; |
| 1539 | unsigned long irqflags; |
| 1540 | |
| 1541 | if (!i915_pipe_enabled(dev, pipe)) |
| 1542 | return -EINVAL; |
| 1543 | |
| 1544 | spin_lock_irqsave(&dev_priv->irq_lock, irqflags); |
| 1545 | ironlake_enable_display_irq(dev_priv, (pipe == 0) ? |
| 1546 | DE_PIPEA_VBLANK_IVB : DE_PIPEB_VBLANK_IVB); |
| 1547 | spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags); |
| 1548 | |
| 1549 | return 0; |
| 1550 | } |
| 1551 | |
Jesse Barnes | 7e231dbe | 2012-03-28 13:39:38 -0700 | [diff] [blame] | 1552 | static int valleyview_enable_vblank(struct drm_device *dev, int pipe) |
| 1553 | { |
| 1554 | drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private; |
| 1555 | unsigned long irqflags; |
| 1556 | u32 dpfl, imr; |
| 1557 | |
| 1558 | if (!i915_pipe_enabled(dev, pipe)) |
| 1559 | return -EINVAL; |
| 1560 | |
| 1561 | spin_lock_irqsave(&dev_priv->irq_lock, irqflags); |
| 1562 | dpfl = I915_READ(VLV_DPFLIPSTAT); |
| 1563 | imr = I915_READ(VLV_IMR); |
| 1564 | if (pipe == 0) { |
| 1565 | dpfl |= PIPEA_VBLANK_INT_EN; |
| 1566 | imr &= ~I915_DISPLAY_PIPE_A_VBLANK_INTERRUPT; |
| 1567 | } else { |
| 1568 | dpfl |= PIPEA_VBLANK_INT_EN; |
| 1569 | imr &= ~I915_DISPLAY_PIPE_B_VBLANK_INTERRUPT; |
| 1570 | } |
| 1571 | I915_WRITE(VLV_DPFLIPSTAT, dpfl); |
| 1572 | I915_WRITE(VLV_IMR, imr); |
| 1573 | spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags); |
| 1574 | |
| 1575 | return 0; |
| 1576 | } |
| 1577 | |
Keith Packard | 42f52ef | 2008-10-18 19:39:29 -0700 | [diff] [blame] | 1578 | /* Called from drm generic code, passed 'crtc' which |
| 1579 | * we use as a pipe index |
| 1580 | */ |
Jesse Barnes | f71d4af | 2011-06-28 13:00:41 -0700 | [diff] [blame] | 1581 | static void i915_disable_vblank(struct drm_device *dev, int pipe) |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 1582 | { |
| 1583 | 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] | 1584 | unsigned long irqflags; |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 1585 | |
Chris Wilson | 1ec14ad | 2010-12-04 11:30:53 +0000 | [diff] [blame] | 1586 | spin_lock_irqsave(&dev_priv->irq_lock, irqflags); |
Chris Wilson | 8692d00e | 2011-02-05 10:08:21 +0000 | [diff] [blame] | 1587 | if (dev_priv->info->gen == 3) |
Daniel Vetter | 6b26c86 | 2012-04-24 14:04:12 +0200 | [diff] [blame] | 1588 | I915_WRITE(INSTPM, _MASKED_BIT_ENABLE(INSTPM_AGPBUSY_DIS)); |
Chris Wilson | 8692d00e | 2011-02-05 10:08:21 +0000 | [diff] [blame] | 1589 | |
Jesse Barnes | f796cf8 | 2011-04-07 13:58:17 -0700 | [diff] [blame] | 1590 | i915_disable_pipestat(dev_priv, pipe, |
| 1591 | PIPE_VBLANK_INTERRUPT_ENABLE | |
| 1592 | PIPE_START_VBLANK_INTERRUPT_ENABLE); |
| 1593 | spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags); |
| 1594 | } |
| 1595 | |
Jesse Barnes | f71d4af | 2011-06-28 13:00:41 -0700 | [diff] [blame] | 1596 | static void ironlake_disable_vblank(struct drm_device *dev, int pipe) |
Jesse Barnes | f796cf8 | 2011-04-07 13:58:17 -0700 | [diff] [blame] | 1597 | { |
| 1598 | drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private; |
| 1599 | unsigned long irqflags; |
| 1600 | |
| 1601 | spin_lock_irqsave(&dev_priv->irq_lock, irqflags); |
| 1602 | ironlake_disable_display_irq(dev_priv, (pipe == 0) ? |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 1603 | DE_PIPEA_VBLANK : DE_PIPEB_VBLANK); |
Chris Wilson | 1ec14ad | 2010-12-04 11:30:53 +0000 | [diff] [blame] | 1604 | spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags); |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 1605 | } |
| 1606 | |
Jesse Barnes | f71d4af | 2011-06-28 13:00:41 -0700 | [diff] [blame] | 1607 | static void ivybridge_disable_vblank(struct drm_device *dev, int pipe) |
Jesse Barnes | b1f14ad | 2011-04-06 12:13:38 -0700 | [diff] [blame] | 1608 | { |
| 1609 | drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private; |
| 1610 | unsigned long irqflags; |
| 1611 | |
| 1612 | spin_lock_irqsave(&dev_priv->irq_lock, irqflags); |
| 1613 | ironlake_disable_display_irq(dev_priv, (pipe == 0) ? |
| 1614 | DE_PIPEA_VBLANK_IVB : DE_PIPEB_VBLANK_IVB); |
| 1615 | spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags); |
| 1616 | } |
| 1617 | |
Jesse Barnes | 7e231dbe | 2012-03-28 13:39:38 -0700 | [diff] [blame] | 1618 | static void valleyview_disable_vblank(struct drm_device *dev, int pipe) |
| 1619 | { |
| 1620 | drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private; |
| 1621 | unsigned long irqflags; |
| 1622 | u32 dpfl, imr; |
| 1623 | |
| 1624 | spin_lock_irqsave(&dev_priv->irq_lock, irqflags); |
| 1625 | dpfl = I915_READ(VLV_DPFLIPSTAT); |
| 1626 | imr = I915_READ(VLV_IMR); |
| 1627 | if (pipe == 0) { |
| 1628 | dpfl &= ~PIPEA_VBLANK_INT_EN; |
| 1629 | imr |= I915_DISPLAY_PIPE_A_VBLANK_INTERRUPT; |
| 1630 | } else { |
| 1631 | dpfl &= ~PIPEB_VBLANK_INT_EN; |
| 1632 | imr |= I915_DISPLAY_PIPE_B_VBLANK_INTERRUPT; |
| 1633 | } |
| 1634 | I915_WRITE(VLV_IMR, imr); |
| 1635 | I915_WRITE(VLV_DPFLIPSTAT, dpfl); |
| 1636 | spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags); |
| 1637 | } |
| 1638 | |
Chris Wilson | 893eead | 2010-10-27 14:44:35 +0100 | [diff] [blame] | 1639 | static u32 |
| 1640 | ring_last_seqno(struct intel_ring_buffer *ring) |
Zou Nan hai | 852835f | 2010-05-21 09:08:56 +0800 | [diff] [blame] | 1641 | { |
Chris Wilson | 893eead | 2010-10-27 14:44:35 +0100 | [diff] [blame] | 1642 | return list_entry(ring->request_list.prev, |
| 1643 | struct drm_i915_gem_request, list)->seqno; |
| 1644 | } |
| 1645 | |
| 1646 | static bool i915_hangcheck_ring_idle(struct intel_ring_buffer *ring, bool *err) |
| 1647 | { |
Ben Widawsky | 9574b3f | 2012-04-26 16:03:01 -0700 | [diff] [blame] | 1648 | /* We don't check whether the ring even exists before calling this |
| 1649 | * function. Hence check whether it's initialized. */ |
| 1650 | if (ring->obj == NULL) |
| 1651 | return true; |
| 1652 | |
Chris Wilson | 893eead | 2010-10-27 14:44:35 +0100 | [diff] [blame] | 1653 | if (list_empty(&ring->request_list) || |
| 1654 | i915_seqno_passed(ring->get_seqno(ring), ring_last_seqno(ring))) { |
| 1655 | /* Issue a wake-up to catch stuck h/w. */ |
Ben Widawsky | 9574b3f | 2012-04-26 16:03:01 -0700 | [diff] [blame] | 1656 | if (waitqueue_active(&ring->irq_queue)) { |
| 1657 | DRM_ERROR("Hangcheck timer elapsed... %s idle\n", |
| 1658 | ring->name); |
Chris Wilson | 893eead | 2010-10-27 14:44:35 +0100 | [diff] [blame] | 1659 | wake_up_all(&ring->irq_queue); |
| 1660 | *err = true; |
| 1661 | } |
| 1662 | return true; |
| 1663 | } |
| 1664 | return false; |
Ben Gamari | f65d942 | 2009-09-14 17:48:44 -0400 | [diff] [blame] | 1665 | } |
| 1666 | |
Chris Wilson | 1ec14ad | 2010-12-04 11:30:53 +0000 | [diff] [blame] | 1667 | static bool kick_ring(struct intel_ring_buffer *ring) |
| 1668 | { |
| 1669 | struct drm_device *dev = ring->dev; |
| 1670 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 1671 | u32 tmp = I915_READ_CTL(ring); |
| 1672 | if (tmp & RING_WAIT) { |
| 1673 | DRM_ERROR("Kicking stuck wait on %s\n", |
| 1674 | ring->name); |
| 1675 | I915_WRITE_CTL(ring, tmp); |
| 1676 | return true; |
| 1677 | } |
Chris Wilson | 1ec14ad | 2010-12-04 11:30:53 +0000 | [diff] [blame] | 1678 | return false; |
| 1679 | } |
| 1680 | |
Chris Wilson | d1e61e7 | 2012-04-10 17:00:41 +0100 | [diff] [blame] | 1681 | static bool i915_hangcheck_hung(struct drm_device *dev) |
| 1682 | { |
| 1683 | drm_i915_private_t *dev_priv = dev->dev_private; |
| 1684 | |
| 1685 | if (dev_priv->hangcheck_count++ > 1) { |
| 1686 | DRM_ERROR("Hangcheck timer elapsed... GPU hung\n"); |
| 1687 | i915_handle_error(dev, true); |
| 1688 | |
| 1689 | if (!IS_GEN2(dev)) { |
| 1690 | /* Is the chip hanging on a WAIT_FOR_EVENT? |
| 1691 | * If so we can simply poke the RB_WAIT bit |
| 1692 | * and break the hang. This should work on |
| 1693 | * all but the second generation chipsets. |
| 1694 | */ |
| 1695 | if (kick_ring(&dev_priv->ring[RCS])) |
| 1696 | return false; |
| 1697 | |
| 1698 | if (HAS_BSD(dev) && kick_ring(&dev_priv->ring[VCS])) |
| 1699 | return false; |
| 1700 | |
| 1701 | if (HAS_BLT(dev) && kick_ring(&dev_priv->ring[BCS])) |
| 1702 | return false; |
| 1703 | } |
| 1704 | |
| 1705 | return true; |
| 1706 | } |
| 1707 | |
| 1708 | return false; |
| 1709 | } |
| 1710 | |
Ben Gamari | f65d942 | 2009-09-14 17:48:44 -0400 | [diff] [blame] | 1711 | /** |
| 1712 | * This is called when the chip hasn't reported back with completed |
| 1713 | * batchbuffers in a long time. The first time this is called we simply record |
| 1714 | * ACTHD. If ACTHD hasn't changed by the time the hangcheck timer elapses |
| 1715 | * again, we assume the chip is wedged and try to fix it. |
| 1716 | */ |
| 1717 | void i915_hangcheck_elapsed(unsigned long data) |
| 1718 | { |
| 1719 | struct drm_device *dev = (struct drm_device *)data; |
| 1720 | drm_i915_private_t *dev_priv = dev->dev_private; |
Daniel Vetter | 097354e | 2011-11-27 18:58:17 +0100 | [diff] [blame] | 1721 | uint32_t acthd, instdone, instdone1, acthd_bsd, acthd_blt; |
Chris Wilson | 893eead | 2010-10-27 14:44:35 +0100 | [diff] [blame] | 1722 | bool err = false; |
| 1723 | |
Ben Widawsky | 3e0dc6b | 2011-06-29 10:26:42 -0700 | [diff] [blame] | 1724 | if (!i915_enable_hangcheck) |
| 1725 | return; |
| 1726 | |
Chris Wilson | 893eead | 2010-10-27 14:44:35 +0100 | [diff] [blame] | 1727 | /* If all work is done then ACTHD clearly hasn't advanced. */ |
Chris Wilson | 1ec14ad | 2010-12-04 11:30:53 +0000 | [diff] [blame] | 1728 | if (i915_hangcheck_ring_idle(&dev_priv->ring[RCS], &err) && |
| 1729 | i915_hangcheck_ring_idle(&dev_priv->ring[VCS], &err) && |
| 1730 | i915_hangcheck_ring_idle(&dev_priv->ring[BCS], &err)) { |
Chris Wilson | d1e61e7 | 2012-04-10 17:00:41 +0100 | [diff] [blame] | 1731 | if (err) { |
| 1732 | if (i915_hangcheck_hung(dev)) |
| 1733 | return; |
| 1734 | |
Chris Wilson | 893eead | 2010-10-27 14:44:35 +0100 | [diff] [blame] | 1735 | goto repeat; |
Chris Wilson | d1e61e7 | 2012-04-10 17:00:41 +0100 | [diff] [blame] | 1736 | } |
| 1737 | |
| 1738 | dev_priv->hangcheck_count = 0; |
Chris Wilson | 893eead | 2010-10-27 14:44:35 +0100 | [diff] [blame] | 1739 | return; |
| 1740 | } |
Eric Anholt | b9201c1 | 2010-01-08 14:25:16 -0800 | [diff] [blame] | 1741 | |
Chris Wilson | a6c45cf | 2010-09-17 00:32:17 +0100 | [diff] [blame] | 1742 | if (INTEL_INFO(dev)->gen < 4) { |
Chris Wilson | cbb465e | 2010-06-06 12:16:24 +0100 | [diff] [blame] | 1743 | instdone = I915_READ(INSTDONE); |
| 1744 | instdone1 = 0; |
| 1745 | } else { |
Chris Wilson | cbb465e | 2010-06-06 12:16:24 +0100 | [diff] [blame] | 1746 | instdone = I915_READ(INSTDONE_I965); |
| 1747 | instdone1 = I915_READ(INSTDONE1); |
| 1748 | } |
Daniel Vetter | 097354e | 2011-11-27 18:58:17 +0100 | [diff] [blame] | 1749 | acthd = intel_ring_get_active_head(&dev_priv->ring[RCS]); |
| 1750 | acthd_bsd = HAS_BSD(dev) ? |
| 1751 | intel_ring_get_active_head(&dev_priv->ring[VCS]) : 0; |
| 1752 | acthd_blt = HAS_BLT(dev) ? |
| 1753 | intel_ring_get_active_head(&dev_priv->ring[BCS]) : 0; |
Ben Gamari | f65d942 | 2009-09-14 17:48:44 -0400 | [diff] [blame] | 1754 | |
Chris Wilson | cbb465e | 2010-06-06 12:16:24 +0100 | [diff] [blame] | 1755 | if (dev_priv->last_acthd == acthd && |
Daniel Vetter | 097354e | 2011-11-27 18:58:17 +0100 | [diff] [blame] | 1756 | dev_priv->last_acthd_bsd == acthd_bsd && |
| 1757 | dev_priv->last_acthd_blt == acthd_blt && |
Chris Wilson | cbb465e | 2010-06-06 12:16:24 +0100 | [diff] [blame] | 1758 | dev_priv->last_instdone == instdone && |
| 1759 | dev_priv->last_instdone1 == instdone1) { |
Chris Wilson | d1e61e7 | 2012-04-10 17:00:41 +0100 | [diff] [blame] | 1760 | if (i915_hangcheck_hung(dev)) |
Chris Wilson | cbb465e | 2010-06-06 12:16:24 +0100 | [diff] [blame] | 1761 | return; |
Chris Wilson | cbb465e | 2010-06-06 12:16:24 +0100 | [diff] [blame] | 1762 | } else { |
| 1763 | dev_priv->hangcheck_count = 0; |
| 1764 | |
| 1765 | dev_priv->last_acthd = acthd; |
Daniel Vetter | 097354e | 2011-11-27 18:58:17 +0100 | [diff] [blame] | 1766 | dev_priv->last_acthd_bsd = acthd_bsd; |
| 1767 | dev_priv->last_acthd_blt = acthd_blt; |
Chris Wilson | cbb465e | 2010-06-06 12:16:24 +0100 | [diff] [blame] | 1768 | dev_priv->last_instdone = instdone; |
| 1769 | dev_priv->last_instdone1 = instdone1; |
| 1770 | } |
Ben Gamari | f65d942 | 2009-09-14 17:48:44 -0400 | [diff] [blame] | 1771 | |
Chris Wilson | 893eead | 2010-10-27 14:44:35 +0100 | [diff] [blame] | 1772 | repeat: |
Ben Gamari | f65d942 | 2009-09-14 17:48:44 -0400 | [diff] [blame] | 1773 | /* Reset timer case chip hangs without another request being added */ |
Chris Wilson | b3b079d | 2010-09-13 23:44:34 +0100 | [diff] [blame] | 1774 | mod_timer(&dev_priv->hangcheck_timer, |
| 1775 | jiffies + msecs_to_jiffies(DRM_I915_HANGCHECK_PERIOD)); |
Ben Gamari | f65d942 | 2009-09-14 17:48:44 -0400 | [diff] [blame] | 1776 | } |
| 1777 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1778 | /* drm_dma.h hooks |
| 1779 | */ |
Jesse Barnes | f71d4af | 2011-06-28 13:00:41 -0700 | [diff] [blame] | 1780 | static void ironlake_irq_preinstall(struct drm_device *dev) |
Zhenyu Wang | 036a4a7 | 2009-06-08 14:40:19 +0800 | [diff] [blame] | 1781 | { |
| 1782 | drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private; |
| 1783 | |
Jesse Barnes | 4697995 | 2011-04-07 13:53:55 -0700 | [diff] [blame] | 1784 | atomic_set(&dev_priv->irq_received, 0); |
| 1785 | |
Jesse Barnes | 4697995 | 2011-04-07 13:53:55 -0700 | [diff] [blame] | 1786 | |
Zhenyu Wang | 036a4a7 | 2009-06-08 14:40:19 +0800 | [diff] [blame] | 1787 | I915_WRITE(HWSTAM, 0xeffe); |
Daniel Vetter | bdfcdb6 | 2012-01-05 01:05:26 +0100 | [diff] [blame] | 1788 | |
Zhenyu Wang | 036a4a7 | 2009-06-08 14:40:19 +0800 | [diff] [blame] | 1789 | /* XXX hotplug from PCH */ |
| 1790 | |
| 1791 | I915_WRITE(DEIMR, 0xffffffff); |
| 1792 | I915_WRITE(DEIER, 0x0); |
Chris Wilson | 3143a2b | 2010-11-16 15:55:10 +0000 | [diff] [blame] | 1793 | POSTING_READ(DEIER); |
Zhenyu Wang | 036a4a7 | 2009-06-08 14:40:19 +0800 | [diff] [blame] | 1794 | |
| 1795 | /* and GT */ |
| 1796 | I915_WRITE(GTIMR, 0xffffffff); |
| 1797 | I915_WRITE(GTIER, 0x0); |
Chris Wilson | 3143a2b | 2010-11-16 15:55:10 +0000 | [diff] [blame] | 1798 | POSTING_READ(GTIER); |
Zhenyu Wang | c650156 | 2009-11-03 18:57:21 +0000 | [diff] [blame] | 1799 | |
| 1800 | /* south display irq */ |
| 1801 | I915_WRITE(SDEIMR, 0xffffffff); |
| 1802 | I915_WRITE(SDEIER, 0x0); |
Chris Wilson | 3143a2b | 2010-11-16 15:55:10 +0000 | [diff] [blame] | 1803 | POSTING_READ(SDEIER); |
Zhenyu Wang | 036a4a7 | 2009-06-08 14:40:19 +0800 | [diff] [blame] | 1804 | } |
| 1805 | |
Jesse Barnes | 7e231dbe | 2012-03-28 13:39:38 -0700 | [diff] [blame] | 1806 | static void valleyview_irq_preinstall(struct drm_device *dev) |
| 1807 | { |
| 1808 | drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private; |
| 1809 | int pipe; |
| 1810 | |
| 1811 | atomic_set(&dev_priv->irq_received, 0); |
| 1812 | |
Jesse Barnes | 7e231dbe | 2012-03-28 13:39:38 -0700 | [diff] [blame] | 1813 | /* VLV magic */ |
| 1814 | I915_WRITE(VLV_IMR, 0); |
| 1815 | I915_WRITE(RING_IMR(RENDER_RING_BASE), 0); |
| 1816 | I915_WRITE(RING_IMR(GEN6_BSD_RING_BASE), 0); |
| 1817 | I915_WRITE(RING_IMR(BLT_RING_BASE), 0); |
| 1818 | |
Jesse Barnes | 7e231dbe | 2012-03-28 13:39:38 -0700 | [diff] [blame] | 1819 | /* and GT */ |
| 1820 | I915_WRITE(GTIIR, I915_READ(GTIIR)); |
| 1821 | I915_WRITE(GTIIR, I915_READ(GTIIR)); |
| 1822 | I915_WRITE(GTIMR, 0xffffffff); |
| 1823 | I915_WRITE(GTIER, 0x0); |
| 1824 | POSTING_READ(GTIER); |
| 1825 | |
| 1826 | I915_WRITE(DPINVGTT, 0xff); |
| 1827 | |
| 1828 | I915_WRITE(PORT_HOTPLUG_EN, 0); |
| 1829 | I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT)); |
| 1830 | for_each_pipe(pipe) |
| 1831 | I915_WRITE(PIPESTAT(pipe), 0xffff); |
| 1832 | I915_WRITE(VLV_IIR, 0xffffffff); |
| 1833 | I915_WRITE(VLV_IMR, 0xffffffff); |
| 1834 | I915_WRITE(VLV_IER, 0x0); |
| 1835 | POSTING_READ(VLV_IER); |
| 1836 | } |
| 1837 | |
Keith Packard | 7fe0b97 | 2011-09-19 13:31:02 -0700 | [diff] [blame] | 1838 | /* |
| 1839 | * Enable digital hotplug on the PCH, and configure the DP short pulse |
| 1840 | * duration to 2ms (which is the minimum in the Display Port spec) |
| 1841 | * |
| 1842 | * This register is the same on all known PCH chips. |
| 1843 | */ |
| 1844 | |
| 1845 | static void ironlake_enable_pch_hotplug(struct drm_device *dev) |
| 1846 | { |
| 1847 | drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private; |
| 1848 | u32 hotplug; |
| 1849 | |
| 1850 | hotplug = I915_READ(PCH_PORT_HOTPLUG); |
| 1851 | hotplug &= ~(PORTD_PULSE_DURATION_MASK|PORTC_PULSE_DURATION_MASK|PORTB_PULSE_DURATION_MASK); |
| 1852 | hotplug |= PORTD_HOTPLUG_ENABLE | PORTD_PULSE_DURATION_2ms; |
| 1853 | hotplug |= PORTC_HOTPLUG_ENABLE | PORTC_PULSE_DURATION_2ms; |
| 1854 | hotplug |= PORTB_HOTPLUG_ENABLE | PORTB_PULSE_DURATION_2ms; |
| 1855 | I915_WRITE(PCH_PORT_HOTPLUG, hotplug); |
| 1856 | } |
| 1857 | |
Jesse Barnes | f71d4af | 2011-06-28 13:00:41 -0700 | [diff] [blame] | 1858 | static int ironlake_irq_postinstall(struct drm_device *dev) |
Zhenyu Wang | 036a4a7 | 2009-06-08 14:40:19 +0800 | [diff] [blame] | 1859 | { |
| 1860 | drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private; |
| 1861 | /* enable kind of interrupts always enabled */ |
Jesse Barnes | 013d5aa | 2010-01-29 11:18:31 -0800 | [diff] [blame] | 1862 | u32 display_mask = DE_MASTER_IRQ_CONTROL | DE_GSE | DE_PCH_EVENT | |
| 1863 | DE_PLANEA_FLIP_DONE | DE_PLANEB_FLIP_DONE; |
Chris Wilson | 1ec14ad | 2010-12-04 11:30:53 +0000 | [diff] [blame] | 1864 | u32 render_irqs; |
Yuanhan Liu | 2d7b836 | 2010-10-08 10:21:06 +0100 | [diff] [blame] | 1865 | u32 hotplug_mask; |
Zhenyu Wang | 036a4a7 | 2009-06-08 14:40:19 +0800 | [diff] [blame] | 1866 | |
Chris Wilson | 1ec14ad | 2010-12-04 11:30:53 +0000 | [diff] [blame] | 1867 | dev_priv->irq_mask = ~display_mask; |
Zhenyu Wang | 036a4a7 | 2009-06-08 14:40:19 +0800 | [diff] [blame] | 1868 | |
| 1869 | /* should always can generate irq */ |
| 1870 | I915_WRITE(DEIIR, I915_READ(DEIIR)); |
Chris Wilson | 1ec14ad | 2010-12-04 11:30:53 +0000 | [diff] [blame] | 1871 | I915_WRITE(DEIMR, dev_priv->irq_mask); |
| 1872 | I915_WRITE(DEIER, display_mask | DE_PIPEA_VBLANK | DE_PIPEB_VBLANK); |
Chris Wilson | 3143a2b | 2010-11-16 15:55:10 +0000 | [diff] [blame] | 1873 | POSTING_READ(DEIER); |
Zhenyu Wang | 036a4a7 | 2009-06-08 14:40:19 +0800 | [diff] [blame] | 1874 | |
Chris Wilson | 1ec14ad | 2010-12-04 11:30:53 +0000 | [diff] [blame] | 1875 | dev_priv->gt_irq_mask = ~0; |
Zhenyu Wang | 036a4a7 | 2009-06-08 14:40:19 +0800 | [diff] [blame] | 1876 | |
| 1877 | I915_WRITE(GTIIR, I915_READ(GTIIR)); |
Chris Wilson | 1ec14ad | 2010-12-04 11:30:53 +0000 | [diff] [blame] | 1878 | I915_WRITE(GTIMR, dev_priv->gt_irq_mask); |
Xiang, Haihao | 881f47b | 2010-09-19 14:40:43 +0100 | [diff] [blame] | 1879 | |
Chris Wilson | 1ec14ad | 2010-12-04 11:30:53 +0000 | [diff] [blame] | 1880 | if (IS_GEN6(dev)) |
| 1881 | render_irqs = |
| 1882 | GT_USER_INTERRUPT | |
Ben Widawsky | e2a1e2f | 2012-03-29 19:11:26 -0700 | [diff] [blame] | 1883 | GEN6_BSD_USER_INTERRUPT | |
| 1884 | GEN6_BLITTER_USER_INTERRUPT; |
Chris Wilson | 1ec14ad | 2010-12-04 11:30:53 +0000 | [diff] [blame] | 1885 | else |
| 1886 | render_irqs = |
Chris Wilson | 88f23b8 | 2010-12-05 15:08:31 +0000 | [diff] [blame] | 1887 | GT_USER_INTERRUPT | |
Chris Wilson | c6df541 | 2010-12-15 09:56:50 +0000 | [diff] [blame] | 1888 | GT_PIPE_NOTIFY | |
Chris Wilson | 1ec14ad | 2010-12-04 11:30:53 +0000 | [diff] [blame] | 1889 | GT_BSD_USER_INTERRUPT; |
| 1890 | I915_WRITE(GTIER, render_irqs); |
Chris Wilson | 3143a2b | 2010-11-16 15:55:10 +0000 | [diff] [blame] | 1891 | POSTING_READ(GTIER); |
Zhenyu Wang | 036a4a7 | 2009-06-08 14:40:19 +0800 | [diff] [blame] | 1892 | |
Yuanhan Liu | 2d7b836 | 2010-10-08 10:21:06 +0100 | [diff] [blame] | 1893 | if (HAS_PCH_CPT(dev)) { |
Chris Wilson | 9035a97 | 2011-02-16 09:36:05 +0000 | [diff] [blame] | 1894 | hotplug_mask = (SDE_CRT_HOTPLUG_CPT | |
| 1895 | SDE_PORTB_HOTPLUG_CPT | |
| 1896 | SDE_PORTC_HOTPLUG_CPT | |
| 1897 | SDE_PORTD_HOTPLUG_CPT); |
Yuanhan Liu | 2d7b836 | 2010-10-08 10:21:06 +0100 | [diff] [blame] | 1898 | } else { |
Chris Wilson | 9035a97 | 2011-02-16 09:36:05 +0000 | [diff] [blame] | 1899 | hotplug_mask = (SDE_CRT_HOTPLUG | |
| 1900 | SDE_PORTB_HOTPLUG | |
| 1901 | SDE_PORTC_HOTPLUG | |
| 1902 | SDE_PORTD_HOTPLUG | |
| 1903 | SDE_AUX_MASK); |
Yuanhan Liu | 2d7b836 | 2010-10-08 10:21:06 +0100 | [diff] [blame] | 1904 | } |
| 1905 | |
Chris Wilson | 1ec14ad | 2010-12-04 11:30:53 +0000 | [diff] [blame] | 1906 | dev_priv->pch_irq_mask = ~hotplug_mask; |
Zhenyu Wang | c650156 | 2009-11-03 18:57:21 +0000 | [diff] [blame] | 1907 | |
| 1908 | I915_WRITE(SDEIIR, I915_READ(SDEIIR)); |
Chris Wilson | 1ec14ad | 2010-12-04 11:30:53 +0000 | [diff] [blame] | 1909 | I915_WRITE(SDEIMR, dev_priv->pch_irq_mask); |
| 1910 | I915_WRITE(SDEIER, hotplug_mask); |
Chris Wilson | 3143a2b | 2010-11-16 15:55:10 +0000 | [diff] [blame] | 1911 | POSTING_READ(SDEIER); |
Zhenyu Wang | c650156 | 2009-11-03 18:57:21 +0000 | [diff] [blame] | 1912 | |
Keith Packard | 7fe0b97 | 2011-09-19 13:31:02 -0700 | [diff] [blame] | 1913 | ironlake_enable_pch_hotplug(dev); |
| 1914 | |
Jesse Barnes | f97108d | 2010-01-29 11:27:07 -0800 | [diff] [blame] | 1915 | if (IS_IRONLAKE_M(dev)) { |
| 1916 | /* Clear & enable PCU event interrupts */ |
| 1917 | I915_WRITE(DEIIR, DE_PCU_EVENT); |
| 1918 | I915_WRITE(DEIER, I915_READ(DEIER) | DE_PCU_EVENT); |
| 1919 | ironlake_enable_display_irq(dev_priv, DE_PCU_EVENT); |
| 1920 | } |
| 1921 | |
Zhenyu Wang | 036a4a7 | 2009-06-08 14:40:19 +0800 | [diff] [blame] | 1922 | return 0; |
| 1923 | } |
| 1924 | |
Jesse Barnes | f71d4af | 2011-06-28 13:00:41 -0700 | [diff] [blame] | 1925 | static int ivybridge_irq_postinstall(struct drm_device *dev) |
Jesse Barnes | b1f14ad | 2011-04-06 12:13:38 -0700 | [diff] [blame] | 1926 | { |
| 1927 | drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private; |
| 1928 | /* enable kind of interrupts always enabled */ |
| 1929 | u32 display_mask = DE_MASTER_IRQ_CONTROL | DE_GSE_IVB | |
| 1930 | DE_PCH_EVENT_IVB | DE_PLANEA_FLIP_DONE_IVB | |
| 1931 | DE_PLANEB_FLIP_DONE_IVB; |
| 1932 | u32 render_irqs; |
| 1933 | u32 hotplug_mask; |
| 1934 | |
Jesse Barnes | b1f14ad | 2011-04-06 12:13:38 -0700 | [diff] [blame] | 1935 | dev_priv->irq_mask = ~display_mask; |
| 1936 | |
| 1937 | /* should always can generate irq */ |
| 1938 | I915_WRITE(DEIIR, I915_READ(DEIIR)); |
| 1939 | I915_WRITE(DEIMR, dev_priv->irq_mask); |
| 1940 | I915_WRITE(DEIER, display_mask | DE_PIPEA_VBLANK_IVB | |
| 1941 | DE_PIPEB_VBLANK_IVB); |
| 1942 | POSTING_READ(DEIER); |
| 1943 | |
| 1944 | dev_priv->gt_irq_mask = ~0; |
| 1945 | |
| 1946 | I915_WRITE(GTIIR, I915_READ(GTIIR)); |
| 1947 | I915_WRITE(GTIMR, dev_priv->gt_irq_mask); |
| 1948 | |
Ben Widawsky | e2a1e2f | 2012-03-29 19:11:26 -0700 | [diff] [blame] | 1949 | render_irqs = GT_USER_INTERRUPT | GEN6_BSD_USER_INTERRUPT | |
| 1950 | GEN6_BLITTER_USER_INTERRUPT; |
Jesse Barnes | b1f14ad | 2011-04-06 12:13:38 -0700 | [diff] [blame] | 1951 | I915_WRITE(GTIER, render_irqs); |
| 1952 | POSTING_READ(GTIER); |
| 1953 | |
| 1954 | hotplug_mask = (SDE_CRT_HOTPLUG_CPT | |
| 1955 | SDE_PORTB_HOTPLUG_CPT | |
| 1956 | SDE_PORTC_HOTPLUG_CPT | |
| 1957 | SDE_PORTD_HOTPLUG_CPT); |
| 1958 | dev_priv->pch_irq_mask = ~hotplug_mask; |
| 1959 | |
| 1960 | I915_WRITE(SDEIIR, I915_READ(SDEIIR)); |
| 1961 | I915_WRITE(SDEIMR, dev_priv->pch_irq_mask); |
| 1962 | I915_WRITE(SDEIER, hotplug_mask); |
| 1963 | POSTING_READ(SDEIER); |
| 1964 | |
Keith Packard | 7fe0b97 | 2011-09-19 13:31:02 -0700 | [diff] [blame] | 1965 | ironlake_enable_pch_hotplug(dev); |
| 1966 | |
Jesse Barnes | b1f14ad | 2011-04-06 12:13:38 -0700 | [diff] [blame] | 1967 | return 0; |
| 1968 | } |
| 1969 | |
Jesse Barnes | 7e231dbe | 2012-03-28 13:39:38 -0700 | [diff] [blame] | 1970 | static int valleyview_irq_postinstall(struct drm_device *dev) |
| 1971 | { |
| 1972 | drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private; |
| 1973 | u32 render_irqs; |
| 1974 | u32 enable_mask; |
| 1975 | u32 hotplug_en = I915_READ(PORT_HOTPLUG_EN); |
| 1976 | u16 msid; |
| 1977 | |
| 1978 | enable_mask = I915_DISPLAY_PORT_INTERRUPT; |
| 1979 | enable_mask |= I915_DISPLAY_PIPE_A_VBLANK_INTERRUPT | |
| 1980 | I915_DISPLAY_PIPE_B_VBLANK_INTERRUPT; |
| 1981 | |
| 1982 | dev_priv->irq_mask = ~enable_mask; |
| 1983 | |
Jesse Barnes | 7e231dbe | 2012-03-28 13:39:38 -0700 | [diff] [blame] | 1984 | dev_priv->pipestat[0] = 0; |
| 1985 | dev_priv->pipestat[1] = 0; |
| 1986 | |
Jesse Barnes | 7e231dbe | 2012-03-28 13:39:38 -0700 | [diff] [blame] | 1987 | /* Hack for broken MSIs on VLV */ |
| 1988 | pci_write_config_dword(dev_priv->dev->pdev, 0x94, 0xfee00000); |
| 1989 | pci_read_config_word(dev->pdev, 0x98, &msid); |
| 1990 | msid &= 0xff; /* mask out delivery bits */ |
| 1991 | msid |= (1<<14); |
| 1992 | pci_write_config_word(dev_priv->dev->pdev, 0x98, msid); |
| 1993 | |
| 1994 | I915_WRITE(VLV_IMR, dev_priv->irq_mask); |
| 1995 | I915_WRITE(VLV_IER, enable_mask); |
| 1996 | I915_WRITE(VLV_IIR, 0xffffffff); |
| 1997 | I915_WRITE(PIPESTAT(0), 0xffff); |
| 1998 | I915_WRITE(PIPESTAT(1), 0xffff); |
| 1999 | POSTING_READ(VLV_IER); |
| 2000 | |
| 2001 | I915_WRITE(VLV_IIR, 0xffffffff); |
| 2002 | I915_WRITE(VLV_IIR, 0xffffffff); |
| 2003 | |
| 2004 | render_irqs = GT_GEN6_BLT_FLUSHDW_NOTIFY_INTERRUPT | |
| 2005 | GT_GEN6_BLT_CS_ERROR_INTERRUPT | |
Ben Widawsky | e2a1e2f | 2012-03-29 19:11:26 -0700 | [diff] [blame] | 2006 | GT_GEN6_BLT_USER_INTERRUPT | |
Jesse Barnes | 7e231dbe | 2012-03-28 13:39:38 -0700 | [diff] [blame] | 2007 | GT_GEN6_BSD_USER_INTERRUPT | |
| 2008 | GT_GEN6_BSD_CS_ERROR_INTERRUPT | |
| 2009 | GT_GEN7_L3_PARITY_ERROR_INTERRUPT | |
| 2010 | GT_PIPE_NOTIFY | |
| 2011 | GT_RENDER_CS_ERROR_INTERRUPT | |
| 2012 | GT_SYNC_STATUS | |
| 2013 | GT_USER_INTERRUPT; |
| 2014 | |
| 2015 | dev_priv->gt_irq_mask = ~render_irqs; |
| 2016 | |
| 2017 | I915_WRITE(GTIIR, I915_READ(GTIIR)); |
| 2018 | I915_WRITE(GTIIR, I915_READ(GTIIR)); |
| 2019 | I915_WRITE(GTIMR, 0); |
| 2020 | I915_WRITE(GTIER, render_irqs); |
| 2021 | POSTING_READ(GTIER); |
| 2022 | |
| 2023 | /* ack & enable invalid PTE error interrupts */ |
| 2024 | #if 0 /* FIXME: add support to irq handler for checking these bits */ |
| 2025 | I915_WRITE(DPINVGTT, DPINVGTT_STATUS_MASK); |
| 2026 | I915_WRITE(DPINVGTT, DPINVGTT_EN_MASK); |
| 2027 | #endif |
| 2028 | |
| 2029 | I915_WRITE(VLV_MASTER_IER, MASTER_INTERRUPT_ENABLE); |
| 2030 | #if 0 /* FIXME: check register definitions; some have moved */ |
| 2031 | /* Note HDMI and DP share bits */ |
| 2032 | if (dev_priv->hotplug_supported_mask & HDMIB_HOTPLUG_INT_STATUS) |
| 2033 | hotplug_en |= HDMIB_HOTPLUG_INT_EN; |
| 2034 | if (dev_priv->hotplug_supported_mask & HDMIC_HOTPLUG_INT_STATUS) |
| 2035 | hotplug_en |= HDMIC_HOTPLUG_INT_EN; |
| 2036 | if (dev_priv->hotplug_supported_mask & HDMID_HOTPLUG_INT_STATUS) |
| 2037 | hotplug_en |= HDMID_HOTPLUG_INT_EN; |
| 2038 | if (dev_priv->hotplug_supported_mask & SDVOC_HOTPLUG_INT_STATUS) |
| 2039 | hotplug_en |= SDVOC_HOTPLUG_INT_EN; |
| 2040 | if (dev_priv->hotplug_supported_mask & SDVOB_HOTPLUG_INT_STATUS) |
| 2041 | hotplug_en |= SDVOB_HOTPLUG_INT_EN; |
| 2042 | if (dev_priv->hotplug_supported_mask & CRT_HOTPLUG_INT_STATUS) { |
| 2043 | hotplug_en |= CRT_HOTPLUG_INT_EN; |
| 2044 | hotplug_en |= CRT_HOTPLUG_VOLTAGE_COMPARE_50; |
| 2045 | } |
| 2046 | #endif |
| 2047 | |
| 2048 | I915_WRITE(PORT_HOTPLUG_EN, hotplug_en); |
| 2049 | |
| 2050 | return 0; |
| 2051 | } |
| 2052 | |
Jesse Barnes | 7e231dbe | 2012-03-28 13:39:38 -0700 | [diff] [blame] | 2053 | static void valleyview_irq_uninstall(struct drm_device *dev) |
| 2054 | { |
| 2055 | drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private; |
| 2056 | int pipe; |
| 2057 | |
| 2058 | if (!dev_priv) |
| 2059 | return; |
| 2060 | |
Jesse Barnes | 7e231dbe | 2012-03-28 13:39:38 -0700 | [diff] [blame] | 2061 | for_each_pipe(pipe) |
| 2062 | I915_WRITE(PIPESTAT(pipe), 0xffff); |
| 2063 | |
| 2064 | I915_WRITE(HWSTAM, 0xffffffff); |
| 2065 | I915_WRITE(PORT_HOTPLUG_EN, 0); |
| 2066 | I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT)); |
| 2067 | for_each_pipe(pipe) |
| 2068 | I915_WRITE(PIPESTAT(pipe), 0xffff); |
| 2069 | I915_WRITE(VLV_IIR, 0xffffffff); |
| 2070 | I915_WRITE(VLV_IMR, 0xffffffff); |
| 2071 | I915_WRITE(VLV_IER, 0x0); |
| 2072 | POSTING_READ(VLV_IER); |
| 2073 | } |
| 2074 | |
Jesse Barnes | f71d4af | 2011-06-28 13:00:41 -0700 | [diff] [blame] | 2075 | static void ironlake_irq_uninstall(struct drm_device *dev) |
Zhenyu Wang | 036a4a7 | 2009-06-08 14:40:19 +0800 | [diff] [blame] | 2076 | { |
| 2077 | drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private; |
Jesse Barnes | 4697995 | 2011-04-07 13:53:55 -0700 | [diff] [blame] | 2078 | |
| 2079 | if (!dev_priv) |
| 2080 | return; |
| 2081 | |
Zhenyu Wang | 036a4a7 | 2009-06-08 14:40:19 +0800 | [diff] [blame] | 2082 | I915_WRITE(HWSTAM, 0xffffffff); |
| 2083 | |
| 2084 | I915_WRITE(DEIMR, 0xffffffff); |
| 2085 | I915_WRITE(DEIER, 0x0); |
| 2086 | I915_WRITE(DEIIR, I915_READ(DEIIR)); |
| 2087 | |
| 2088 | I915_WRITE(GTIMR, 0xffffffff); |
| 2089 | I915_WRITE(GTIER, 0x0); |
| 2090 | I915_WRITE(GTIIR, I915_READ(GTIIR)); |
Keith Packard | 192aac1f | 2011-09-20 10:12:44 -0700 | [diff] [blame] | 2091 | |
| 2092 | I915_WRITE(SDEIMR, 0xffffffff); |
| 2093 | I915_WRITE(SDEIER, 0x0); |
| 2094 | I915_WRITE(SDEIIR, I915_READ(SDEIIR)); |
Zhenyu Wang | 036a4a7 | 2009-06-08 14:40:19 +0800 | [diff] [blame] | 2095 | } |
| 2096 | |
Chris Wilson | c2798b1 | 2012-04-22 21:13:57 +0100 | [diff] [blame] | 2097 | static void i8xx_irq_preinstall(struct drm_device * dev) |
| 2098 | { |
| 2099 | drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private; |
| 2100 | int pipe; |
| 2101 | |
| 2102 | atomic_set(&dev_priv->irq_received, 0); |
| 2103 | |
| 2104 | for_each_pipe(pipe) |
| 2105 | I915_WRITE(PIPESTAT(pipe), 0); |
| 2106 | I915_WRITE16(IMR, 0xffff); |
| 2107 | I915_WRITE16(IER, 0x0); |
| 2108 | POSTING_READ16(IER); |
| 2109 | } |
| 2110 | |
| 2111 | static int i8xx_irq_postinstall(struct drm_device *dev) |
| 2112 | { |
| 2113 | drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private; |
| 2114 | |
Chris Wilson | c2798b1 | 2012-04-22 21:13:57 +0100 | [diff] [blame] | 2115 | dev_priv->pipestat[0] = 0; |
| 2116 | dev_priv->pipestat[1] = 0; |
| 2117 | |
| 2118 | I915_WRITE16(EMR, |
| 2119 | ~(I915_ERROR_PAGE_TABLE | I915_ERROR_MEMORY_REFRESH)); |
| 2120 | |
| 2121 | /* Unmask the interrupts that we always want on. */ |
| 2122 | dev_priv->irq_mask = |
| 2123 | ~(I915_DISPLAY_PIPE_A_EVENT_INTERRUPT | |
| 2124 | I915_DISPLAY_PIPE_B_EVENT_INTERRUPT | |
| 2125 | I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT | |
| 2126 | I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT | |
| 2127 | I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT); |
| 2128 | I915_WRITE16(IMR, dev_priv->irq_mask); |
| 2129 | |
| 2130 | I915_WRITE16(IER, |
| 2131 | I915_DISPLAY_PIPE_A_EVENT_INTERRUPT | |
| 2132 | I915_DISPLAY_PIPE_B_EVENT_INTERRUPT | |
| 2133 | I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT | |
| 2134 | I915_USER_INTERRUPT); |
| 2135 | POSTING_READ16(IER); |
| 2136 | |
| 2137 | return 0; |
| 2138 | } |
| 2139 | |
| 2140 | static irqreturn_t i8xx_irq_handler(DRM_IRQ_ARGS) |
| 2141 | { |
| 2142 | struct drm_device *dev = (struct drm_device *) arg; |
| 2143 | drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private; |
| 2144 | struct drm_i915_master_private *master_priv; |
| 2145 | u16 iir, new_iir; |
| 2146 | u32 pipe_stats[2]; |
| 2147 | unsigned long irqflags; |
| 2148 | int irq_received; |
| 2149 | int pipe; |
| 2150 | u16 flip_mask = |
| 2151 | I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT | |
| 2152 | I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT; |
| 2153 | |
| 2154 | atomic_inc(&dev_priv->irq_received); |
| 2155 | |
| 2156 | iir = I915_READ16(IIR); |
| 2157 | if (iir == 0) |
| 2158 | return IRQ_NONE; |
| 2159 | |
| 2160 | while (iir & ~flip_mask) { |
| 2161 | /* Can't rely on pipestat interrupt bit in iir as it might |
| 2162 | * have been cleared after the pipestat interrupt was received. |
| 2163 | * It doesn't set the bit in iir again, but it still produces |
| 2164 | * interrupts (for non-MSI). |
| 2165 | */ |
| 2166 | spin_lock_irqsave(&dev_priv->irq_lock, irqflags); |
| 2167 | if (iir & I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT) |
| 2168 | i915_handle_error(dev, false); |
| 2169 | |
| 2170 | for_each_pipe(pipe) { |
| 2171 | int reg = PIPESTAT(pipe); |
| 2172 | pipe_stats[pipe] = I915_READ(reg); |
| 2173 | |
| 2174 | /* |
| 2175 | * Clear the PIPE*STAT regs before the IIR |
| 2176 | */ |
| 2177 | if (pipe_stats[pipe] & 0x8000ffff) { |
| 2178 | if (pipe_stats[pipe] & PIPE_FIFO_UNDERRUN_STATUS) |
| 2179 | DRM_DEBUG_DRIVER("pipe %c underrun\n", |
| 2180 | pipe_name(pipe)); |
| 2181 | I915_WRITE(reg, pipe_stats[pipe]); |
| 2182 | irq_received = 1; |
| 2183 | } |
| 2184 | } |
| 2185 | spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags); |
| 2186 | |
| 2187 | I915_WRITE16(IIR, iir & ~flip_mask); |
| 2188 | new_iir = I915_READ16(IIR); /* Flush posted writes */ |
| 2189 | |
| 2190 | if (dev->primary->master) { |
| 2191 | master_priv = dev->primary->master->driver_priv; |
| 2192 | if (master_priv->sarea_priv) |
| 2193 | master_priv->sarea_priv->last_dispatch = |
| 2194 | READ_BREADCRUMB(dev_priv); |
| 2195 | } |
| 2196 | |
| 2197 | if (iir & I915_USER_INTERRUPT) |
| 2198 | notify_ring(dev, &dev_priv->ring[RCS]); |
| 2199 | |
| 2200 | if (pipe_stats[0] & PIPE_VBLANK_INTERRUPT_STATUS && |
| 2201 | drm_handle_vblank(dev, 0)) { |
| 2202 | if (iir & I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT) { |
| 2203 | intel_prepare_page_flip(dev, 0); |
| 2204 | intel_finish_page_flip(dev, 0); |
| 2205 | flip_mask &= ~I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT; |
| 2206 | } |
| 2207 | } |
| 2208 | |
| 2209 | if (pipe_stats[1] & PIPE_VBLANK_INTERRUPT_STATUS && |
| 2210 | drm_handle_vblank(dev, 1)) { |
| 2211 | if (iir & I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT) { |
| 2212 | intel_prepare_page_flip(dev, 1); |
| 2213 | intel_finish_page_flip(dev, 1); |
| 2214 | flip_mask &= ~I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT; |
| 2215 | } |
| 2216 | } |
| 2217 | |
| 2218 | iir = new_iir; |
| 2219 | } |
| 2220 | |
| 2221 | return IRQ_HANDLED; |
| 2222 | } |
| 2223 | |
| 2224 | static void i8xx_irq_uninstall(struct drm_device * dev) |
| 2225 | { |
| 2226 | drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private; |
| 2227 | int pipe; |
| 2228 | |
Chris Wilson | c2798b1 | 2012-04-22 21:13:57 +0100 | [diff] [blame] | 2229 | for_each_pipe(pipe) { |
| 2230 | /* Clear enable bits; then clear status bits */ |
| 2231 | I915_WRITE(PIPESTAT(pipe), 0); |
| 2232 | I915_WRITE(PIPESTAT(pipe), I915_READ(PIPESTAT(pipe))); |
| 2233 | } |
| 2234 | I915_WRITE16(IMR, 0xffff); |
| 2235 | I915_WRITE16(IER, 0x0); |
| 2236 | I915_WRITE16(IIR, I915_READ16(IIR)); |
| 2237 | } |
| 2238 | |
Chris Wilson | a266c7d | 2012-04-24 22:59:44 +0100 | [diff] [blame] | 2239 | static void i915_irq_preinstall(struct drm_device * dev) |
| 2240 | { |
| 2241 | drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private; |
| 2242 | int pipe; |
| 2243 | |
| 2244 | atomic_set(&dev_priv->irq_received, 0); |
| 2245 | |
| 2246 | if (I915_HAS_HOTPLUG(dev)) { |
| 2247 | I915_WRITE(PORT_HOTPLUG_EN, 0); |
| 2248 | I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT)); |
| 2249 | } |
| 2250 | |
Chris Wilson | 00d98eb | 2012-04-24 22:59:48 +0100 | [diff] [blame] | 2251 | I915_WRITE16(HWSTAM, 0xeffe); |
Chris Wilson | a266c7d | 2012-04-24 22:59:44 +0100 | [diff] [blame] | 2252 | for_each_pipe(pipe) |
| 2253 | I915_WRITE(PIPESTAT(pipe), 0); |
| 2254 | I915_WRITE(IMR, 0xffffffff); |
| 2255 | I915_WRITE(IER, 0x0); |
| 2256 | POSTING_READ(IER); |
| 2257 | } |
| 2258 | |
| 2259 | static int i915_irq_postinstall(struct drm_device *dev) |
| 2260 | { |
| 2261 | drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private; |
Chris Wilson | 38bde18 | 2012-04-24 22:59:50 +0100 | [diff] [blame] | 2262 | u32 enable_mask; |
Chris Wilson | a266c7d | 2012-04-24 22:59:44 +0100 | [diff] [blame] | 2263 | |
Chris Wilson | a266c7d | 2012-04-24 22:59:44 +0100 | [diff] [blame] | 2264 | dev_priv->pipestat[0] = 0; |
| 2265 | dev_priv->pipestat[1] = 0; |
| 2266 | |
Chris Wilson | 38bde18 | 2012-04-24 22:59:50 +0100 | [diff] [blame] | 2267 | I915_WRITE(EMR, ~(I915_ERROR_PAGE_TABLE | I915_ERROR_MEMORY_REFRESH)); |
| 2268 | |
| 2269 | /* Unmask the interrupts that we always want on. */ |
| 2270 | dev_priv->irq_mask = |
| 2271 | ~(I915_ASLE_INTERRUPT | |
| 2272 | I915_DISPLAY_PIPE_A_EVENT_INTERRUPT | |
| 2273 | I915_DISPLAY_PIPE_B_EVENT_INTERRUPT | |
| 2274 | I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT | |
| 2275 | I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT | |
| 2276 | I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT); |
| 2277 | |
| 2278 | enable_mask = |
| 2279 | I915_ASLE_INTERRUPT | |
| 2280 | I915_DISPLAY_PIPE_A_EVENT_INTERRUPT | |
| 2281 | I915_DISPLAY_PIPE_B_EVENT_INTERRUPT | |
| 2282 | I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT | |
| 2283 | I915_USER_INTERRUPT; |
| 2284 | |
Chris Wilson | a266c7d | 2012-04-24 22:59:44 +0100 | [diff] [blame] | 2285 | if (I915_HAS_HOTPLUG(dev)) { |
| 2286 | /* Enable in IER... */ |
| 2287 | enable_mask |= I915_DISPLAY_PORT_INTERRUPT; |
| 2288 | /* and unmask in IMR */ |
| 2289 | dev_priv->irq_mask &= ~I915_DISPLAY_PORT_INTERRUPT; |
| 2290 | } |
| 2291 | |
Chris Wilson | a266c7d | 2012-04-24 22:59:44 +0100 | [diff] [blame] | 2292 | I915_WRITE(IMR, dev_priv->irq_mask); |
| 2293 | I915_WRITE(IER, enable_mask); |
| 2294 | POSTING_READ(IER); |
| 2295 | |
| 2296 | if (I915_HAS_HOTPLUG(dev)) { |
| 2297 | u32 hotplug_en = I915_READ(PORT_HOTPLUG_EN); |
| 2298 | |
Chris Wilson | a266c7d | 2012-04-24 22:59:44 +0100 | [diff] [blame] | 2299 | if (dev_priv->hotplug_supported_mask & HDMIB_HOTPLUG_INT_STATUS) |
| 2300 | hotplug_en |= HDMIB_HOTPLUG_INT_EN; |
| 2301 | if (dev_priv->hotplug_supported_mask & HDMIC_HOTPLUG_INT_STATUS) |
| 2302 | hotplug_en |= HDMIC_HOTPLUG_INT_EN; |
| 2303 | if (dev_priv->hotplug_supported_mask & HDMID_HOTPLUG_INT_STATUS) |
| 2304 | hotplug_en |= HDMID_HOTPLUG_INT_EN; |
| 2305 | if (dev_priv->hotplug_supported_mask & SDVOC_HOTPLUG_INT_STATUS) |
| 2306 | hotplug_en |= SDVOC_HOTPLUG_INT_EN; |
| 2307 | if (dev_priv->hotplug_supported_mask & SDVOB_HOTPLUG_INT_STATUS) |
| 2308 | hotplug_en |= SDVOB_HOTPLUG_INT_EN; |
| 2309 | if (dev_priv->hotplug_supported_mask & CRT_HOTPLUG_INT_STATUS) { |
| 2310 | hotplug_en |= CRT_HOTPLUG_INT_EN; |
Chris Wilson | a266c7d | 2012-04-24 22:59:44 +0100 | [diff] [blame] | 2311 | hotplug_en |= CRT_HOTPLUG_VOLTAGE_COMPARE_50; |
| 2312 | } |
| 2313 | |
| 2314 | /* Ignore TV since it's buggy */ |
| 2315 | |
| 2316 | I915_WRITE(PORT_HOTPLUG_EN, hotplug_en); |
| 2317 | } |
| 2318 | |
| 2319 | intel_opregion_enable_asle(dev); |
| 2320 | |
| 2321 | return 0; |
| 2322 | } |
| 2323 | |
| 2324 | static irqreturn_t i915_irq_handler(DRM_IRQ_ARGS) |
| 2325 | { |
| 2326 | struct drm_device *dev = (struct drm_device *) arg; |
| 2327 | drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private; |
| 2328 | struct drm_i915_master_private *master_priv; |
Chris Wilson | 8291ee9 | 2012-04-24 22:59:47 +0100 | [diff] [blame] | 2329 | u32 iir, new_iir, pipe_stats[I915_MAX_PIPES]; |
Chris Wilson | a266c7d | 2012-04-24 22:59:44 +0100 | [diff] [blame] | 2330 | unsigned long irqflags; |
Chris Wilson | 38bde18 | 2012-04-24 22:59:50 +0100 | [diff] [blame] | 2331 | u32 flip_mask = |
| 2332 | I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT | |
| 2333 | I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT; |
| 2334 | u32 flip[2] = { |
| 2335 | I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT, |
| 2336 | I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT |
| 2337 | }; |
| 2338 | int pipe, ret = IRQ_NONE; |
Chris Wilson | a266c7d | 2012-04-24 22:59:44 +0100 | [diff] [blame] | 2339 | |
| 2340 | atomic_inc(&dev_priv->irq_received); |
| 2341 | |
| 2342 | iir = I915_READ(IIR); |
Chris Wilson | 38bde18 | 2012-04-24 22:59:50 +0100 | [diff] [blame] | 2343 | do { |
| 2344 | bool irq_received = (iir & ~flip_mask) != 0; |
Chris Wilson | 8291ee9 | 2012-04-24 22:59:47 +0100 | [diff] [blame] | 2345 | bool blc_event = false; |
Chris Wilson | a266c7d | 2012-04-24 22:59:44 +0100 | [diff] [blame] | 2346 | |
| 2347 | /* Can't rely on pipestat interrupt bit in iir as it might |
| 2348 | * have been cleared after the pipestat interrupt was received. |
| 2349 | * It doesn't set the bit in iir again, but it still produces |
| 2350 | * interrupts (for non-MSI). |
| 2351 | */ |
| 2352 | spin_lock_irqsave(&dev_priv->irq_lock, irqflags); |
| 2353 | if (iir & I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT) |
| 2354 | i915_handle_error(dev, false); |
| 2355 | |
| 2356 | for_each_pipe(pipe) { |
| 2357 | int reg = PIPESTAT(pipe); |
| 2358 | pipe_stats[pipe] = I915_READ(reg); |
| 2359 | |
Chris Wilson | 38bde18 | 2012-04-24 22:59:50 +0100 | [diff] [blame] | 2360 | /* Clear the PIPE*STAT regs before the IIR */ |
Chris Wilson | a266c7d | 2012-04-24 22:59:44 +0100 | [diff] [blame] | 2361 | if (pipe_stats[pipe] & 0x8000ffff) { |
| 2362 | if (pipe_stats[pipe] & PIPE_FIFO_UNDERRUN_STATUS) |
| 2363 | DRM_DEBUG_DRIVER("pipe %c underrun\n", |
| 2364 | pipe_name(pipe)); |
| 2365 | I915_WRITE(reg, pipe_stats[pipe]); |
Chris Wilson | 38bde18 | 2012-04-24 22:59:50 +0100 | [diff] [blame] | 2366 | irq_received = true; |
Chris Wilson | a266c7d | 2012-04-24 22:59:44 +0100 | [diff] [blame] | 2367 | } |
| 2368 | } |
| 2369 | spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags); |
| 2370 | |
| 2371 | if (!irq_received) |
| 2372 | break; |
| 2373 | |
Chris Wilson | a266c7d | 2012-04-24 22:59:44 +0100 | [diff] [blame] | 2374 | /* Consume port. Then clear IIR or we'll miss events */ |
| 2375 | if ((I915_HAS_HOTPLUG(dev)) && |
| 2376 | (iir & I915_DISPLAY_PORT_INTERRUPT)) { |
| 2377 | u32 hotplug_status = I915_READ(PORT_HOTPLUG_STAT); |
| 2378 | |
| 2379 | DRM_DEBUG_DRIVER("hotplug event received, stat 0x%08x\n", |
| 2380 | hotplug_status); |
| 2381 | if (hotplug_status & dev_priv->hotplug_supported_mask) |
| 2382 | queue_work(dev_priv->wq, |
| 2383 | &dev_priv->hotplug_work); |
| 2384 | |
| 2385 | I915_WRITE(PORT_HOTPLUG_STAT, hotplug_status); |
Chris Wilson | 38bde18 | 2012-04-24 22:59:50 +0100 | [diff] [blame] | 2386 | POSTING_READ(PORT_HOTPLUG_STAT); |
Chris Wilson | a266c7d | 2012-04-24 22:59:44 +0100 | [diff] [blame] | 2387 | } |
| 2388 | |
Chris Wilson | 38bde18 | 2012-04-24 22:59:50 +0100 | [diff] [blame] | 2389 | I915_WRITE(IIR, iir & ~flip_mask); |
Chris Wilson | a266c7d | 2012-04-24 22:59:44 +0100 | [diff] [blame] | 2390 | new_iir = I915_READ(IIR); /* Flush posted writes */ |
| 2391 | |
Chris Wilson | a266c7d | 2012-04-24 22:59:44 +0100 | [diff] [blame] | 2392 | if (iir & I915_USER_INTERRUPT) |
| 2393 | notify_ring(dev, &dev_priv->ring[RCS]); |
Chris Wilson | a266c7d | 2012-04-24 22:59:44 +0100 | [diff] [blame] | 2394 | |
Chris Wilson | a266c7d | 2012-04-24 22:59:44 +0100 | [diff] [blame] | 2395 | for_each_pipe(pipe) { |
Chris Wilson | 38bde18 | 2012-04-24 22:59:50 +0100 | [diff] [blame] | 2396 | int plane = pipe; |
| 2397 | if (IS_MOBILE(dev)) |
| 2398 | plane = !plane; |
Chris Wilson | 8291ee9 | 2012-04-24 22:59:47 +0100 | [diff] [blame] | 2399 | if (pipe_stats[pipe] & PIPE_VBLANK_INTERRUPT_STATUS && |
Chris Wilson | a266c7d | 2012-04-24 22:59:44 +0100 | [diff] [blame] | 2400 | drm_handle_vblank(dev, pipe)) { |
Chris Wilson | 38bde18 | 2012-04-24 22:59:50 +0100 | [diff] [blame] | 2401 | if (iir & flip[plane]) { |
| 2402 | intel_prepare_page_flip(dev, plane); |
| 2403 | intel_finish_page_flip(dev, pipe); |
| 2404 | flip_mask &= ~flip[plane]; |
| 2405 | } |
Chris Wilson | a266c7d | 2012-04-24 22:59:44 +0100 | [diff] [blame] | 2406 | } |
| 2407 | |
| 2408 | if (pipe_stats[pipe] & PIPE_LEGACY_BLC_EVENT_STATUS) |
| 2409 | blc_event = true; |
| 2410 | } |
| 2411 | |
Chris Wilson | a266c7d | 2012-04-24 22:59:44 +0100 | [diff] [blame] | 2412 | if (blc_event || (iir & I915_ASLE_INTERRUPT)) |
| 2413 | intel_opregion_asle_intr(dev); |
| 2414 | |
| 2415 | /* With MSI, interrupts are only generated when iir |
| 2416 | * transitions from zero to nonzero. If another bit got |
| 2417 | * set while we were handling the existing iir bits, then |
| 2418 | * we would never get another interrupt. |
| 2419 | * |
| 2420 | * This is fine on non-MSI as well, as if we hit this path |
| 2421 | * we avoid exiting the interrupt handler only to generate |
| 2422 | * another one. |
| 2423 | * |
| 2424 | * Note that for MSI this could cause a stray interrupt report |
| 2425 | * if an interrupt landed in the time between writing IIR and |
| 2426 | * the posting read. This should be rare enough to never |
| 2427 | * trigger the 99% of 100,000 interrupts test for disabling |
| 2428 | * stray interrupts. |
| 2429 | */ |
Chris Wilson | 38bde18 | 2012-04-24 22:59:50 +0100 | [diff] [blame] | 2430 | ret = IRQ_HANDLED; |
Chris Wilson | a266c7d | 2012-04-24 22:59:44 +0100 | [diff] [blame] | 2431 | iir = new_iir; |
Chris Wilson | 38bde18 | 2012-04-24 22:59:50 +0100 | [diff] [blame] | 2432 | } while (iir & ~flip_mask); |
Chris Wilson | a266c7d | 2012-04-24 22:59:44 +0100 | [diff] [blame] | 2433 | |
Chris Wilson | 8291ee9 | 2012-04-24 22:59:47 +0100 | [diff] [blame] | 2434 | if (dev->primary->master) { |
| 2435 | master_priv = dev->primary->master->driver_priv; |
| 2436 | if (master_priv->sarea_priv) |
| 2437 | master_priv->sarea_priv->last_dispatch = |
| 2438 | READ_BREADCRUMB(dev_priv); |
| 2439 | } |
| 2440 | |
Chris Wilson | a266c7d | 2012-04-24 22:59:44 +0100 | [diff] [blame] | 2441 | return ret; |
| 2442 | } |
| 2443 | |
| 2444 | static void i915_irq_uninstall(struct drm_device * dev) |
| 2445 | { |
| 2446 | drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private; |
| 2447 | int pipe; |
| 2448 | |
Chris Wilson | a266c7d | 2012-04-24 22:59:44 +0100 | [diff] [blame] | 2449 | if (I915_HAS_HOTPLUG(dev)) { |
| 2450 | I915_WRITE(PORT_HOTPLUG_EN, 0); |
| 2451 | I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT)); |
| 2452 | } |
| 2453 | |
Chris Wilson | 00d98eb | 2012-04-24 22:59:48 +0100 | [diff] [blame] | 2454 | I915_WRITE16(HWSTAM, 0xffff); |
Chris Wilson | 55b3975 | 2012-04-24 22:59:49 +0100 | [diff] [blame] | 2455 | for_each_pipe(pipe) { |
| 2456 | /* Clear enable bits; then clear status bits */ |
Chris Wilson | a266c7d | 2012-04-24 22:59:44 +0100 | [diff] [blame] | 2457 | I915_WRITE(PIPESTAT(pipe), 0); |
Chris Wilson | 55b3975 | 2012-04-24 22:59:49 +0100 | [diff] [blame] | 2458 | I915_WRITE(PIPESTAT(pipe), I915_READ(PIPESTAT(pipe))); |
| 2459 | } |
Chris Wilson | a266c7d | 2012-04-24 22:59:44 +0100 | [diff] [blame] | 2460 | I915_WRITE(IMR, 0xffffffff); |
| 2461 | I915_WRITE(IER, 0x0); |
| 2462 | |
Chris Wilson | a266c7d | 2012-04-24 22:59:44 +0100 | [diff] [blame] | 2463 | I915_WRITE(IIR, I915_READ(IIR)); |
| 2464 | } |
| 2465 | |
| 2466 | static void i965_irq_preinstall(struct drm_device * dev) |
| 2467 | { |
| 2468 | drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private; |
| 2469 | int pipe; |
| 2470 | |
| 2471 | atomic_set(&dev_priv->irq_received, 0); |
| 2472 | |
| 2473 | if (I915_HAS_HOTPLUG(dev)) { |
| 2474 | I915_WRITE(PORT_HOTPLUG_EN, 0); |
| 2475 | I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT)); |
| 2476 | } |
| 2477 | |
| 2478 | I915_WRITE(HWSTAM, 0xeffe); |
| 2479 | for_each_pipe(pipe) |
| 2480 | I915_WRITE(PIPESTAT(pipe), 0); |
| 2481 | I915_WRITE(IMR, 0xffffffff); |
| 2482 | I915_WRITE(IER, 0x0); |
| 2483 | POSTING_READ(IER); |
| 2484 | } |
| 2485 | |
| 2486 | static int i965_irq_postinstall(struct drm_device *dev) |
| 2487 | { |
| 2488 | drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private; |
Chris Wilson | bbba0a9 | 2012-04-24 22:59:51 +0100 | [diff] [blame] | 2489 | u32 enable_mask; |
Chris Wilson | a266c7d | 2012-04-24 22:59:44 +0100 | [diff] [blame] | 2490 | u32 error_mask; |
| 2491 | |
Chris Wilson | a266c7d | 2012-04-24 22:59:44 +0100 | [diff] [blame] | 2492 | /* Unmask the interrupts that we always want on. */ |
Chris Wilson | bbba0a9 | 2012-04-24 22:59:51 +0100 | [diff] [blame] | 2493 | dev_priv->irq_mask = ~(I915_ASLE_INTERRUPT | |
| 2494 | I915_DISPLAY_PIPE_A_EVENT_INTERRUPT | |
| 2495 | I915_DISPLAY_PIPE_B_EVENT_INTERRUPT | |
| 2496 | I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT | |
| 2497 | I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT | |
| 2498 | I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT); |
| 2499 | |
| 2500 | enable_mask = ~dev_priv->irq_mask; |
| 2501 | enable_mask |= I915_USER_INTERRUPT; |
| 2502 | |
| 2503 | if (IS_G4X(dev)) |
| 2504 | enable_mask |= I915_BSD_USER_INTERRUPT; |
Chris Wilson | a266c7d | 2012-04-24 22:59:44 +0100 | [diff] [blame] | 2505 | |
| 2506 | dev_priv->pipestat[0] = 0; |
| 2507 | dev_priv->pipestat[1] = 0; |
| 2508 | |
| 2509 | if (I915_HAS_HOTPLUG(dev)) { |
| 2510 | /* Enable in IER... */ |
| 2511 | enable_mask |= I915_DISPLAY_PORT_INTERRUPT; |
| 2512 | /* and unmask in IMR */ |
| 2513 | dev_priv->irq_mask &= ~I915_DISPLAY_PORT_INTERRUPT; |
| 2514 | } |
| 2515 | |
| 2516 | /* |
| 2517 | * Enable some error detection, note the instruction error mask |
| 2518 | * bit is reserved, so we leave it masked. |
| 2519 | */ |
| 2520 | if (IS_G4X(dev)) { |
| 2521 | error_mask = ~(GM45_ERROR_PAGE_TABLE | |
| 2522 | GM45_ERROR_MEM_PRIV | |
| 2523 | GM45_ERROR_CP_PRIV | |
| 2524 | I915_ERROR_MEMORY_REFRESH); |
| 2525 | } else { |
| 2526 | error_mask = ~(I915_ERROR_PAGE_TABLE | |
| 2527 | I915_ERROR_MEMORY_REFRESH); |
| 2528 | } |
| 2529 | I915_WRITE(EMR, error_mask); |
| 2530 | |
| 2531 | I915_WRITE(IMR, dev_priv->irq_mask); |
| 2532 | I915_WRITE(IER, enable_mask); |
| 2533 | POSTING_READ(IER); |
| 2534 | |
| 2535 | if (I915_HAS_HOTPLUG(dev)) { |
| 2536 | u32 hotplug_en = I915_READ(PORT_HOTPLUG_EN); |
| 2537 | |
| 2538 | /* Note HDMI and DP share bits */ |
| 2539 | if (dev_priv->hotplug_supported_mask & HDMIB_HOTPLUG_INT_STATUS) |
| 2540 | hotplug_en |= HDMIB_HOTPLUG_INT_EN; |
| 2541 | if (dev_priv->hotplug_supported_mask & HDMIC_HOTPLUG_INT_STATUS) |
| 2542 | hotplug_en |= HDMIC_HOTPLUG_INT_EN; |
| 2543 | if (dev_priv->hotplug_supported_mask & HDMID_HOTPLUG_INT_STATUS) |
| 2544 | hotplug_en |= HDMID_HOTPLUG_INT_EN; |
| 2545 | if (dev_priv->hotplug_supported_mask & SDVOC_HOTPLUG_INT_STATUS) |
| 2546 | hotplug_en |= SDVOC_HOTPLUG_INT_EN; |
| 2547 | if (dev_priv->hotplug_supported_mask & SDVOB_HOTPLUG_INT_STATUS) |
| 2548 | hotplug_en |= SDVOB_HOTPLUG_INT_EN; |
| 2549 | if (dev_priv->hotplug_supported_mask & CRT_HOTPLUG_INT_STATUS) { |
| 2550 | hotplug_en |= CRT_HOTPLUG_INT_EN; |
| 2551 | |
| 2552 | /* Programming the CRT detection parameters tends |
| 2553 | to generate a spurious hotplug event about three |
| 2554 | seconds later. So just do it once. |
| 2555 | */ |
| 2556 | if (IS_G4X(dev)) |
| 2557 | hotplug_en |= CRT_HOTPLUG_ACTIVATION_PERIOD_64; |
| 2558 | hotplug_en |= CRT_HOTPLUG_VOLTAGE_COMPARE_50; |
| 2559 | } |
| 2560 | |
| 2561 | /* Ignore TV since it's buggy */ |
| 2562 | |
| 2563 | I915_WRITE(PORT_HOTPLUG_EN, hotplug_en); |
| 2564 | } |
| 2565 | |
| 2566 | intel_opregion_enable_asle(dev); |
| 2567 | |
| 2568 | return 0; |
| 2569 | } |
| 2570 | |
| 2571 | static irqreturn_t i965_irq_handler(DRM_IRQ_ARGS) |
| 2572 | { |
| 2573 | struct drm_device *dev = (struct drm_device *) arg; |
| 2574 | drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private; |
| 2575 | struct drm_i915_master_private *master_priv; |
| 2576 | u32 iir, new_iir; |
| 2577 | u32 pipe_stats[I915_MAX_PIPES]; |
Chris Wilson | a266c7d | 2012-04-24 22:59:44 +0100 | [diff] [blame] | 2578 | unsigned long irqflags; |
| 2579 | int irq_received; |
| 2580 | int ret = IRQ_NONE, pipe; |
Chris Wilson | a266c7d | 2012-04-24 22:59:44 +0100 | [diff] [blame] | 2581 | |
| 2582 | atomic_inc(&dev_priv->irq_received); |
| 2583 | |
| 2584 | iir = I915_READ(IIR); |
| 2585 | |
Chris Wilson | a266c7d | 2012-04-24 22:59:44 +0100 | [diff] [blame] | 2586 | for (;;) { |
Chris Wilson | 2c8ba29 | 2012-04-24 22:59:46 +0100 | [diff] [blame] | 2587 | bool blc_event = false; |
| 2588 | |
Chris Wilson | a266c7d | 2012-04-24 22:59:44 +0100 | [diff] [blame] | 2589 | irq_received = iir != 0; |
| 2590 | |
| 2591 | /* Can't rely on pipestat interrupt bit in iir as it might |
| 2592 | * have been cleared after the pipestat interrupt was received. |
| 2593 | * It doesn't set the bit in iir again, but it still produces |
| 2594 | * interrupts (for non-MSI). |
| 2595 | */ |
| 2596 | spin_lock_irqsave(&dev_priv->irq_lock, irqflags); |
| 2597 | if (iir & I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT) |
| 2598 | i915_handle_error(dev, false); |
| 2599 | |
| 2600 | for_each_pipe(pipe) { |
| 2601 | int reg = PIPESTAT(pipe); |
| 2602 | pipe_stats[pipe] = I915_READ(reg); |
| 2603 | |
| 2604 | /* |
| 2605 | * Clear the PIPE*STAT regs before the IIR |
| 2606 | */ |
| 2607 | if (pipe_stats[pipe] & 0x8000ffff) { |
| 2608 | if (pipe_stats[pipe] & PIPE_FIFO_UNDERRUN_STATUS) |
| 2609 | DRM_DEBUG_DRIVER("pipe %c underrun\n", |
| 2610 | pipe_name(pipe)); |
| 2611 | I915_WRITE(reg, pipe_stats[pipe]); |
| 2612 | irq_received = 1; |
| 2613 | } |
| 2614 | } |
| 2615 | spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags); |
| 2616 | |
| 2617 | if (!irq_received) |
| 2618 | break; |
| 2619 | |
| 2620 | ret = IRQ_HANDLED; |
| 2621 | |
| 2622 | /* Consume port. Then clear IIR or we'll miss events */ |
| 2623 | if ((I915_HAS_HOTPLUG(dev)) && |
| 2624 | (iir & I915_DISPLAY_PORT_INTERRUPT)) { |
| 2625 | u32 hotplug_status = I915_READ(PORT_HOTPLUG_STAT); |
| 2626 | |
| 2627 | DRM_DEBUG_DRIVER("hotplug event received, stat 0x%08x\n", |
| 2628 | hotplug_status); |
| 2629 | if (hotplug_status & dev_priv->hotplug_supported_mask) |
| 2630 | queue_work(dev_priv->wq, |
| 2631 | &dev_priv->hotplug_work); |
| 2632 | |
| 2633 | I915_WRITE(PORT_HOTPLUG_STAT, hotplug_status); |
| 2634 | I915_READ(PORT_HOTPLUG_STAT); |
| 2635 | } |
| 2636 | |
| 2637 | I915_WRITE(IIR, iir); |
| 2638 | new_iir = I915_READ(IIR); /* Flush posted writes */ |
| 2639 | |
Chris Wilson | a266c7d | 2012-04-24 22:59:44 +0100 | [diff] [blame] | 2640 | if (iir & I915_USER_INTERRUPT) |
| 2641 | notify_ring(dev, &dev_priv->ring[RCS]); |
| 2642 | if (iir & I915_BSD_USER_INTERRUPT) |
| 2643 | notify_ring(dev, &dev_priv->ring[VCS]); |
| 2644 | |
Chris Wilson | 4f7d1e7 | 2012-04-24 22:59:45 +0100 | [diff] [blame] | 2645 | if (iir & I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT) |
Chris Wilson | a266c7d | 2012-04-24 22:59:44 +0100 | [diff] [blame] | 2646 | intel_prepare_page_flip(dev, 0); |
Chris Wilson | a266c7d | 2012-04-24 22:59:44 +0100 | [diff] [blame] | 2647 | |
Chris Wilson | 4f7d1e7 | 2012-04-24 22:59:45 +0100 | [diff] [blame] | 2648 | if (iir & I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT) |
Chris Wilson | a266c7d | 2012-04-24 22:59:44 +0100 | [diff] [blame] | 2649 | intel_prepare_page_flip(dev, 1); |
Chris Wilson | a266c7d | 2012-04-24 22:59:44 +0100 | [diff] [blame] | 2650 | |
| 2651 | for_each_pipe(pipe) { |
Chris Wilson | 2c8ba29 | 2012-04-24 22:59:46 +0100 | [diff] [blame] | 2652 | if (pipe_stats[pipe] & PIPE_START_VBLANK_INTERRUPT_STATUS && |
Chris Wilson | a266c7d | 2012-04-24 22:59:44 +0100 | [diff] [blame] | 2653 | drm_handle_vblank(dev, pipe)) { |
Chris Wilson | 4f7d1e7 | 2012-04-24 22:59:45 +0100 | [diff] [blame] | 2654 | i915_pageflip_stall_check(dev, pipe); |
| 2655 | intel_finish_page_flip(dev, pipe); |
Chris Wilson | a266c7d | 2012-04-24 22:59:44 +0100 | [diff] [blame] | 2656 | } |
| 2657 | |
| 2658 | if (pipe_stats[pipe] & PIPE_LEGACY_BLC_EVENT_STATUS) |
| 2659 | blc_event = true; |
| 2660 | } |
| 2661 | |
| 2662 | |
| 2663 | if (blc_event || (iir & I915_ASLE_INTERRUPT)) |
| 2664 | intel_opregion_asle_intr(dev); |
| 2665 | |
| 2666 | /* With MSI, interrupts are only generated when iir |
| 2667 | * transitions from zero to nonzero. If another bit got |
| 2668 | * set while we were handling the existing iir bits, then |
| 2669 | * we would never get another interrupt. |
| 2670 | * |
| 2671 | * This is fine on non-MSI as well, as if we hit this path |
| 2672 | * we avoid exiting the interrupt handler only to generate |
| 2673 | * another one. |
| 2674 | * |
| 2675 | * Note that for MSI this could cause a stray interrupt report |
| 2676 | * if an interrupt landed in the time between writing IIR and |
| 2677 | * the posting read. This should be rare enough to never |
| 2678 | * trigger the 99% of 100,000 interrupts test for disabling |
| 2679 | * stray interrupts. |
| 2680 | */ |
| 2681 | iir = new_iir; |
| 2682 | } |
| 2683 | |
Chris Wilson | 2c8ba29 | 2012-04-24 22:59:46 +0100 | [diff] [blame] | 2684 | if (dev->primary->master) { |
| 2685 | master_priv = dev->primary->master->driver_priv; |
| 2686 | if (master_priv->sarea_priv) |
| 2687 | master_priv->sarea_priv->last_dispatch = |
| 2688 | READ_BREADCRUMB(dev_priv); |
| 2689 | } |
| 2690 | |
Chris Wilson | a266c7d | 2012-04-24 22:59:44 +0100 | [diff] [blame] | 2691 | return ret; |
| 2692 | } |
| 2693 | |
| 2694 | static void i965_irq_uninstall(struct drm_device * dev) |
| 2695 | { |
| 2696 | drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private; |
| 2697 | int pipe; |
| 2698 | |
| 2699 | if (!dev_priv) |
| 2700 | return; |
| 2701 | |
Chris Wilson | a266c7d | 2012-04-24 22:59:44 +0100 | [diff] [blame] | 2702 | if (I915_HAS_HOTPLUG(dev)) { |
| 2703 | I915_WRITE(PORT_HOTPLUG_EN, 0); |
| 2704 | I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT)); |
| 2705 | } |
| 2706 | |
| 2707 | I915_WRITE(HWSTAM, 0xffffffff); |
| 2708 | for_each_pipe(pipe) |
| 2709 | I915_WRITE(PIPESTAT(pipe), 0); |
| 2710 | I915_WRITE(IMR, 0xffffffff); |
| 2711 | I915_WRITE(IER, 0x0); |
| 2712 | |
| 2713 | for_each_pipe(pipe) |
| 2714 | I915_WRITE(PIPESTAT(pipe), |
| 2715 | I915_READ(PIPESTAT(pipe)) & 0x8000ffff); |
| 2716 | I915_WRITE(IIR, I915_READ(IIR)); |
| 2717 | } |
| 2718 | |
Jesse Barnes | f71d4af | 2011-06-28 13:00:41 -0700 | [diff] [blame] | 2719 | void intel_irq_init(struct drm_device *dev) |
| 2720 | { |
Chris Wilson | 8b2e326 | 2012-04-24 22:59:41 +0100 | [diff] [blame] | 2721 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 2722 | |
| 2723 | INIT_WORK(&dev_priv->hotplug_work, i915_hotplug_work_func); |
| 2724 | INIT_WORK(&dev_priv->error_work, i915_error_work_func); |
| 2725 | INIT_WORK(&dev_priv->rps_work, gen6_pm_rps_work); |
| 2726 | |
Jesse Barnes | f71d4af | 2011-06-28 13:00:41 -0700 | [diff] [blame] | 2727 | dev->driver->get_vblank_counter = i915_get_vblank_counter; |
| 2728 | dev->max_vblank_count = 0xffffff; /* only 24 bits of frame count */ |
Jesse Barnes | 7e231dbe | 2012-03-28 13:39:38 -0700 | [diff] [blame] | 2729 | if (IS_G4X(dev) || IS_GEN5(dev) || IS_GEN6(dev) || IS_IVYBRIDGE(dev) || |
| 2730 | IS_VALLEYVIEW(dev)) { |
Jesse Barnes | f71d4af | 2011-06-28 13:00:41 -0700 | [diff] [blame] | 2731 | dev->max_vblank_count = 0xffffffff; /* full 32 bit counter */ |
| 2732 | dev->driver->get_vblank_counter = gm45_get_vblank_counter; |
| 2733 | } |
| 2734 | |
Keith Packard | c3613de | 2011-08-12 17:05:54 -0700 | [diff] [blame] | 2735 | if (drm_core_check_feature(dev, DRIVER_MODESET)) |
| 2736 | dev->driver->get_vblank_timestamp = i915_get_vblank_timestamp; |
| 2737 | else |
| 2738 | dev->driver->get_vblank_timestamp = NULL; |
Jesse Barnes | f71d4af | 2011-06-28 13:00:41 -0700 | [diff] [blame] | 2739 | dev->driver->get_scanout_position = i915_get_crtc_scanoutpos; |
| 2740 | |
Jesse Barnes | 7e231dbe | 2012-03-28 13:39:38 -0700 | [diff] [blame] | 2741 | if (IS_VALLEYVIEW(dev)) { |
| 2742 | dev->driver->irq_handler = valleyview_irq_handler; |
| 2743 | dev->driver->irq_preinstall = valleyview_irq_preinstall; |
| 2744 | dev->driver->irq_postinstall = valleyview_irq_postinstall; |
| 2745 | dev->driver->irq_uninstall = valleyview_irq_uninstall; |
| 2746 | dev->driver->enable_vblank = valleyview_enable_vblank; |
| 2747 | dev->driver->disable_vblank = valleyview_disable_vblank; |
| 2748 | } else if (IS_IVYBRIDGE(dev)) { |
Jesse Barnes | f71d4af | 2011-06-28 13:00:41 -0700 | [diff] [blame] | 2749 | /* Share pre & uninstall handlers with ILK/SNB */ |
| 2750 | dev->driver->irq_handler = ivybridge_irq_handler; |
| 2751 | dev->driver->irq_preinstall = ironlake_irq_preinstall; |
| 2752 | dev->driver->irq_postinstall = ivybridge_irq_postinstall; |
| 2753 | dev->driver->irq_uninstall = ironlake_irq_uninstall; |
| 2754 | dev->driver->enable_vblank = ivybridge_enable_vblank; |
| 2755 | dev->driver->disable_vblank = ivybridge_disable_vblank; |
| 2756 | } else if (HAS_PCH_SPLIT(dev)) { |
| 2757 | dev->driver->irq_handler = ironlake_irq_handler; |
| 2758 | dev->driver->irq_preinstall = ironlake_irq_preinstall; |
| 2759 | dev->driver->irq_postinstall = ironlake_irq_postinstall; |
| 2760 | dev->driver->irq_uninstall = ironlake_irq_uninstall; |
| 2761 | dev->driver->enable_vblank = ironlake_enable_vblank; |
| 2762 | dev->driver->disable_vblank = ironlake_disable_vblank; |
| 2763 | } else { |
Chris Wilson | c2798b1 | 2012-04-22 21:13:57 +0100 | [diff] [blame] | 2764 | if (INTEL_INFO(dev)->gen == 2) { |
| 2765 | dev->driver->irq_preinstall = i8xx_irq_preinstall; |
| 2766 | dev->driver->irq_postinstall = i8xx_irq_postinstall; |
| 2767 | dev->driver->irq_handler = i8xx_irq_handler; |
| 2768 | dev->driver->irq_uninstall = i8xx_irq_uninstall; |
Chris Wilson | a266c7d | 2012-04-24 22:59:44 +0100 | [diff] [blame] | 2769 | } else if (INTEL_INFO(dev)->gen == 3) { |
Chris Wilson | 4f7d1e7 | 2012-04-24 22:59:45 +0100 | [diff] [blame] | 2770 | /* IIR "flip pending" means done if this bit is set */ |
| 2771 | I915_WRITE(ECOSKPD, _MASKED_BIT_DISABLE(ECO_FLIP_DONE)); |
| 2772 | |
Chris Wilson | a266c7d | 2012-04-24 22:59:44 +0100 | [diff] [blame] | 2773 | dev->driver->irq_preinstall = i915_irq_preinstall; |
| 2774 | dev->driver->irq_postinstall = i915_irq_postinstall; |
| 2775 | dev->driver->irq_uninstall = i915_irq_uninstall; |
| 2776 | dev->driver->irq_handler = i915_irq_handler; |
Chris Wilson | c2798b1 | 2012-04-22 21:13:57 +0100 | [diff] [blame] | 2777 | } else { |
Chris Wilson | a266c7d | 2012-04-24 22:59:44 +0100 | [diff] [blame] | 2778 | dev->driver->irq_preinstall = i965_irq_preinstall; |
| 2779 | dev->driver->irq_postinstall = i965_irq_postinstall; |
| 2780 | dev->driver->irq_uninstall = i965_irq_uninstall; |
| 2781 | dev->driver->irq_handler = i965_irq_handler; |
Chris Wilson | c2798b1 | 2012-04-22 21:13:57 +0100 | [diff] [blame] | 2782 | } |
Jesse Barnes | f71d4af | 2011-06-28 13:00:41 -0700 | [diff] [blame] | 2783 | dev->driver->enable_vblank = i915_enable_vblank; |
| 2784 | dev->driver->disable_vblank = i915_disable_vblank; |
| 2785 | } |
| 2786 | } |