blob: b1fe0edda955565d27026bccc52eb9e47358d2d5 [file] [log] [blame]
Dave Airlie0d6aa602006-01-02 20:14:23 +11001/* i915_irq.c -- IRQ support for the I915 -*- linux-c -*-
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 */
Dave Airlie0d6aa602006-01-02 20:14:23 +11003/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 * Copyright 2003 Tungsten Graphics, Inc., Cedar Park, Texas.
5 * All Rights Reserved.
Dave Airliebc54fd12005-06-23 22:46:46 +10006 *
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 Airlie0d6aa602006-01-02 20:14:23 +110027 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070028
Joe Perchesa70491c2012-03-18 13:00:11 -070029#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
30
Jesse Barnes63eeaf32009-06-18 16:56:52 -070031#include <linux/sysrq.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090032#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include "drmP.h"
34#include "drm.h"
35#include "i915_drm.h"
36#include "i915_drv.h"
Chris Wilson1c5d22f2009-08-25 11:15:50 +010037#include "i915_trace.h"
Jesse Barnes79e53942008-11-07 14:24:08 -080038#include "intel_drv.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
Zhenyu Wang036a4a72009-06-08 14:40:19 +080040/* For display hotplug interrupt */
Chris Wilson995b6762010-08-20 13:23:26 +010041static void
Adam Jacksonf2b115e2009-12-03 17:14:42 -050042ironlake_enable_display_irq(drm_i915_private_t *dev_priv, u32 mask)
Zhenyu Wang036a4a72009-06-08 14:40:19 +080043{
Chris Wilson1ec14ad2010-12-04 11:30:53 +000044 if ((dev_priv->irq_mask & mask) != 0) {
45 dev_priv->irq_mask &= ~mask;
46 I915_WRITE(DEIMR, dev_priv->irq_mask);
Chris Wilson3143a2b2010-11-16 15:55:10 +000047 POSTING_READ(DEIMR);
Zhenyu Wang036a4a72009-06-08 14:40:19 +080048 }
49}
50
51static inline void
Adam Jacksonf2b115e2009-12-03 17:14:42 -050052ironlake_disable_display_irq(drm_i915_private_t *dev_priv, u32 mask)
Zhenyu Wang036a4a72009-06-08 14:40:19 +080053{
Chris Wilson1ec14ad2010-12-04 11:30:53 +000054 if ((dev_priv->irq_mask & mask) != mask) {
55 dev_priv->irq_mask |= mask;
56 I915_WRITE(DEIMR, dev_priv->irq_mask);
Chris Wilson3143a2b2010-11-16 15:55:10 +000057 POSTING_READ(DEIMR);
Zhenyu Wang036a4a72009-06-08 14:40:19 +080058 }
59}
60
Keith Packard7c463582008-11-04 02:03:27 -080061void
62i915_enable_pipestat(drm_i915_private_t *dev_priv, int pipe, u32 mask)
63{
64 if ((dev_priv->pipestat[pipe] & mask) != mask) {
Jesse Barnes9db4a9c2011-02-07 12:26:52 -080065 u32 reg = PIPESTAT(pipe);
Keith Packard7c463582008-11-04 02:03:27 -080066
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 Wilson3143a2b2010-11-16 15:55:10 +000070 POSTING_READ(reg);
Keith Packard7c463582008-11-04 02:03:27 -080071 }
72}
73
74void
75i915_disable_pipestat(drm_i915_private_t *dev_priv, int pipe, u32 mask)
76{
77 if ((dev_priv->pipestat[pipe] & mask) != 0) {
Jesse Barnes9db4a9c2011-02-07 12:26:52 -080078 u32 reg = PIPESTAT(pipe);
Keith Packard7c463582008-11-04 02:03:27 -080079
80 dev_priv->pipestat[pipe] &= ~mask;
81 I915_WRITE(reg, dev_priv->pipestat[pipe]);
Chris Wilson3143a2b2010-11-16 15:55:10 +000082 POSTING_READ(reg);
Keith Packard7c463582008-11-04 02:03:27 -080083 }
84}
85
=?utf-8?q?Michel_D=C3=A4nzer?=a6b54f32006-10-24 23:37:43 +100086/**
Zhao Yakui01c66882009-10-28 05:10:00 +000087 * intel_enable_asle - enable ASLE interrupt for OpRegion
88 */
Chris Wilson1ec14ad2010-12-04 11:30:53 +000089void intel_enable_asle(struct drm_device *dev)
Zhao Yakui01c66882009-10-28 05:10:00 +000090{
Chris Wilson1ec14ad2010-12-04 11:30:53 +000091 drm_i915_private_t *dev_priv = dev->dev_private;
92 unsigned long irqflags;
93
Jesse Barnes7e231dbe2012-03-28 13:39:38 -070094 /* FIXME: opregion/asle for VLV */
95 if (IS_VALLEYVIEW(dev))
96 return;
97
Chris Wilson1ec14ad2010-12-04 11:30:53 +000098 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Zhao Yakui01c66882009-10-28 05:10:00 +000099
Eric Anholtc619eed2010-01-28 16:45:52 -0800100 if (HAS_PCH_SPLIT(dev))
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500101 ironlake_enable_display_irq(dev_priv, DE_GSE);
Zhao Yakuiedcb49c2010-04-07 17:11:21 +0800102 else {
Zhao Yakui01c66882009-10-28 05:10:00 +0000103 i915_enable_pipestat(dev_priv, 1,
Jesse Barnesd874bcf2010-06-30 13:16:00 -0700104 PIPE_LEGACY_BLC_EVENT_ENABLE);
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100105 if (INTEL_INFO(dev)->gen >= 4)
Zhao Yakuiedcb49c2010-04-07 17:11:21 +0800106 i915_enable_pipestat(dev_priv, 0,
Jesse Barnesd874bcf2010-06-30 13:16:00 -0700107 PIPE_LEGACY_BLC_EVENT_ENABLE);
Zhao Yakuiedcb49c2010-04-07 17:11:21 +0800108 }
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000109
110 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
Zhao Yakui01c66882009-10-28 05:10:00 +0000111}
112
113/**
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700114 * 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 */
122static int
123i915_pipe_enabled(struct drm_device *dev, int pipe)
124{
125 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Chris Wilson5eddb702010-09-11 13:48:45 +0100126 return I915_READ(PIPECONF(pipe)) & PIPECONF_ENABLE;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700127}
128
Keith Packard42f52ef2008-10-18 19:39:29 -0700129/* Called from drm generic code, passed a 'crtc', which
130 * we use as a pipe index
131 */
Jesse Barnesf71d4af2011-06-28 13:00:41 -0700132static u32 i915_get_vblank_counter(struct drm_device *dev, int pipe)
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700133{
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 Wilson5eddb702010-09-11 13:48:45 +0100137 u32 high1, high2, low;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700138
139 if (!i915_pipe_enabled(dev, pipe)) {
Zhao Yakui44d98a62009-10-09 11:39:40 +0800140 DRM_DEBUG_DRIVER("trying to get vblank count for disabled "
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800141 "pipe %c\n", pipe_name(pipe));
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700142 return 0;
143 }
144
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800145 high_frame = PIPEFRAME(pipe);
146 low_frame = PIPEFRAMEPIXEL(pipe);
Chris Wilson5eddb702010-09-11 13:48:45 +0100147
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700148 /*
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 Wilson5eddb702010-09-11 13:48:45 +0100154 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 Barnes0a3e67a2008-09-30 12:14:26 -0700157 } while (high1 != high2);
158
Chris Wilson5eddb702010-09-11 13:48:45 +0100159 high1 >>= PIPE_FRAME_HIGH_SHIFT;
160 low >>= PIPE_FRAME_LOW_SHIFT;
161 return (high1 << 8) | low;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700162}
163
Jesse Barnesf71d4af2011-06-28 13:00:41 -0700164static u32 gm45_get_vblank_counter(struct drm_device *dev, int pipe)
Jesse Barnes9880b7a2009-02-06 10:22:41 -0800165{
166 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800167 int reg = PIPE_FRMCOUNT_GM45(pipe);
Jesse Barnes9880b7a2009-02-06 10:22:41 -0800168
169 if (!i915_pipe_enabled(dev, pipe)) {
Zhao Yakui44d98a62009-10-09 11:39:40 +0800170 DRM_DEBUG_DRIVER("trying to get vblank count for disabled "
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800171 "pipe %c\n", pipe_name(pipe));
Jesse Barnes9880b7a2009-02-06 10:22:41 -0800172 return 0;
173 }
174
175 return I915_READ(reg);
176}
177
Jesse Barnesf71d4af2011-06-28 13:00:41 -0700178static int i915_get_crtc_scanoutpos(struct drm_device *dev, int pipe,
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100179 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 Barnes9db4a9c2011-02-07 12:26:52 -0800189 "pipe %c\n", pipe_name(pipe));
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100190 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 Barnesf71d4af2011-06-28 13:00:41 -0700244static int i915_get_vblank_timestamp(struct drm_device *dev, int pipe,
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100245 int *max_error,
246 struct timeval *vblank_time,
247 unsigned flags)
248{
Chris Wilson4041b852011-01-22 10:07:56 +0000249 struct drm_i915_private *dev_priv = dev->dev_private;
250 struct drm_crtc *crtc;
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100251
Chris Wilson4041b852011-01-22 10:07:56 +0000252 if (pipe < 0 || pipe >= dev_priv->num_pipe) {
253 DRM_ERROR("Invalid crtc %d\n", pipe);
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100254 return -EINVAL;
255 }
256
257 /* Get drm_crtc to timestamp: */
Chris Wilson4041b852011-01-22 10:07:56 +0000258 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 Kleiner0af7e4d2010-12-08 04:07:19 +0100268
269 /* Helper routine in DRM core does all the work: */
Chris Wilson4041b852011-01-22 10:07:56 +0000270 return drm_calc_vbltimestamp_from_scanoutpos(dev, pipe, max_error,
271 vblank_time, flags,
272 crtc);
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100273}
274
Jesse Barnes5ca58282009-03-31 14:11:15 -0700275/*
276 * Handle hotplug events outside the interrupt handler proper.
277 */
278static 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 Packardc31c4ba2009-05-06 11:48:58 -0700283 struct drm_mode_config *mode_config = &dev->mode_config;
Chris Wilson4ef69c72010-09-09 15:14:28 +0100284 struct intel_encoder *encoder;
Jesse Barnes5ca58282009-03-31 14:11:15 -0700285
Keith Packarda65e34c2011-07-25 10:04:56 -0700286 mutex_lock(&mode_config->mutex);
Jesse Barnese67189ab2011-02-11 14:44:51 -0800287 DRM_DEBUG_KMS("running encoder hotplug functions\n");
288
Chris Wilson4ef69c72010-09-09 15:14:28 +0100289 list_for_each_entry(encoder, &mode_config->encoder_list, base.head)
290 if (encoder->hot_plug)
291 encoder->hot_plug(encoder);
292
Keith Packard40ee3382011-07-28 15:31:19 -0700293 mutex_unlock(&mode_config->mutex);
294
Jesse Barnes5ca58282009-03-31 14:11:15 -0700295 /* Just fire off a uevent and let userspace tell us what to do */
Dave Airlieeb1f8e42010-05-07 06:42:51 +0000296 drm_helper_hpd_irq_event(dev);
Jesse Barnes5ca58282009-03-31 14:11:15 -0700297}
298
Jesse Barnesf97108d2010-01-29 11:27:07 -0800299static void i915_handle_rps_change(struct drm_device *dev)
300{
301 drm_i915_private_t *dev_priv = dev->dev_private;
Matthew Garrettb5b72e82010-02-02 18:30:47 +0000302 u32 busy_up, busy_down, max_avg, min_avg;
Jesse Barnesf97108d2010-01-29 11:27:07 -0800303 u8 new_delay = dev_priv->cur_delay;
304
Jesse Barnes7648fa92010-05-20 14:28:11 -0700305 I915_WRITE16(MEMINTRSTS, MEMINT_EVAL_CHG);
Matthew Garrettb5b72e82010-02-02 18:30:47 +0000306 busy_up = I915_READ(RCPREVBSYTUPAVG);
307 busy_down = I915_READ(RCPREVBSYTDNAVG);
Jesse Barnesf97108d2010-01-29 11:27:07 -0800308 max_avg = I915_READ(RCBMAXAVG);
309 min_avg = I915_READ(RCBMINAVG);
310
311 /* Handle RCS change request from hw */
Matthew Garrettb5b72e82010-02-02 18:30:47 +0000312 if (busy_up > max_avg) {
Jesse Barnesf97108d2010-01-29 11:27:07 -0800313 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 Garrettb5b72e82010-02-02 18:30:47 +0000317 } else if (busy_down < min_avg) {
Jesse Barnesf97108d2010-01-29 11:27:07 -0800318 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 Barnes7648fa92010-05-20 14:28:11 -0700324 if (ironlake_set_drps(dev, new_delay))
325 dev_priv->cur_delay = new_delay;
Jesse Barnesf97108d2010-01-29 11:27:07 -0800326
327 return;
328}
329
Chris Wilson549f7362010-10-19 11:19:32 +0100330static 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 Wilson9862e602011-01-04 22:22:17 +0000334
Chris Wilson475553d2011-01-20 09:52:56 +0000335 if (ring->obj == NULL)
336 return;
337
Chris Wilson6d171cb2012-04-28 09:00:03 +0100338 trace_i915_gem_request_complete(ring, ring->get_seqno(ring));
Chris Wilson9862e602011-01-04 22:22:17 +0000339
Chris Wilson549f7362010-10-19 11:19:32 +0100340 wake_up_all(&ring->irq_queue);
Ben Widawsky3e0dc6b2011-06-29 10:26:42 -0700341 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 Wilson549f7362010-10-19 11:19:32 +0100347}
348
Ben Widawsky4912d042011-04-25 11:25:20 -0700349static void gen6_pm_rps_work(struct work_struct *work)
Jesse Barnes3b8d8d92010-12-17 14:19:02 -0800350{
Ben Widawsky4912d042011-04-25 11:25:20 -0700351 drm_i915_private_t *dev_priv = container_of(work, drm_i915_private_t,
352 rps_work);
Ben Widawsky4912d042011-04-25 11:25:20 -0700353 u32 pm_iir, pm_imr;
Chris Wilson7b9e0ae2012-04-28 08:56:39 +0100354 u8 new_delay;
Jesse Barnes3b8d8d92010-12-17 14:19:02 -0800355
Ben Widawsky4912d042011-04-25 11:25:20 -0700356 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 Vettera9e26412011-09-08 14:00:21 +0200360 I915_WRITE(GEN6_PMIMR, 0);
Ben Widawsky4912d042011-04-25 11:25:20 -0700361 spin_unlock_irq(&dev_priv->rps_lock);
362
Chris Wilson7b9e0ae2012-04-28 08:56:39 +0100363 if ((pm_iir & GEN6_PM_DEFERRED_EVENTS) == 0)
Jesse Barnes3b8d8d92010-12-17 14:19:02 -0800364 return;
365
Ben Widawsky4912d042011-04-25 11:25:20 -0700366 mutex_lock(&dev_priv->dev->struct_mutex);
Chris Wilson7b9e0ae2012-04-28 08:56:39 +0100367
368 if (pm_iir & GEN6_PM_RP_UP_THRESHOLD)
369 new_delay = dev_priv->cur_delay + 1;
370 else
371 new_delay = dev_priv->cur_delay - 1;
Jesse Barnes3b8d8d92010-12-17 14:19:02 -0800372
Ben Widawsky4912d042011-04-25 11:25:20 -0700373 gen6_set_rps(dev_priv->dev, new_delay);
Jesse Barnes3b8d8d92010-12-17 14:19:02 -0800374
Ben Widawsky4912d042011-04-25 11:25:20 -0700375 mutex_unlock(&dev_priv->dev->struct_mutex);
Jesse Barnes3b8d8d92010-12-17 14:19:02 -0800376}
377
Daniel Vettere7b4c6b2012-03-30 20:24:35 +0200378static void snb_gt_irq_handler(struct drm_device *dev,
379 struct drm_i915_private *dev_priv,
380 u32 gt_iir)
381{
382
383 if (gt_iir & (GEN6_RENDER_USER_INTERRUPT |
384 GEN6_RENDER_PIPE_CONTROL_NOTIFY_INTERRUPT))
385 notify_ring(dev, &dev_priv->ring[RCS]);
386 if (gt_iir & GEN6_BSD_USER_INTERRUPT)
387 notify_ring(dev, &dev_priv->ring[VCS]);
388 if (gt_iir & GEN6_BLITTER_USER_INTERRUPT)
389 notify_ring(dev, &dev_priv->ring[BCS]);
390
391 if (gt_iir & (GT_GEN6_BLT_CS_ERROR_INTERRUPT |
392 GT_GEN6_BSD_CS_ERROR_INTERRUPT |
393 GT_RENDER_CS_ERROR_INTERRUPT)) {
394 DRM_ERROR("GT error interrupt 0x%08x\n", gt_iir);
395 i915_handle_error(dev, false);
396 }
397}
398
Chris Wilsonfc6826d2012-04-15 11:56:03 +0100399static void gen6_queue_rps_work(struct drm_i915_private *dev_priv,
400 u32 pm_iir)
401{
402 unsigned long flags;
403
404 /*
405 * IIR bits should never already be set because IMR should
406 * prevent an interrupt from being shown in IIR. The warning
407 * displays a case where we've unsafely cleared
408 * dev_priv->pm_iir. Although missing an interrupt of the same
409 * type is not a problem, it displays a problem in the logic.
410 *
411 * The mask bit in IMR is cleared by rps_work.
412 */
413
414 spin_lock_irqsave(&dev_priv->rps_lock, flags);
415 WARN(dev_priv->pm_iir & pm_iir, "Missed a PM interrupt\n");
416 dev_priv->pm_iir |= pm_iir;
417 I915_WRITE(GEN6_PMIMR, dev_priv->pm_iir);
418 POSTING_READ(GEN6_PMIMR);
419 spin_unlock_irqrestore(&dev_priv->rps_lock, flags);
420
421 queue_work(dev_priv->wq, &dev_priv->rps_work);
422}
423
Jesse Barnes7e231dbe2012-03-28 13:39:38 -0700424static irqreturn_t valleyview_irq_handler(DRM_IRQ_ARGS)
425{
426 struct drm_device *dev = (struct drm_device *) arg;
427 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
428 u32 iir, gt_iir, pm_iir;
429 irqreturn_t ret = IRQ_NONE;
430 unsigned long irqflags;
431 int pipe;
432 u32 pipe_stats[I915_MAX_PIPES];
433 u32 vblank_status;
434 int vblank = 0;
435 bool blc_event;
436
437 atomic_inc(&dev_priv->irq_received);
438
439 vblank_status = PIPE_START_VBLANK_INTERRUPT_STATUS |
440 PIPE_VBLANK_INTERRUPT_STATUS;
441
442 while (true) {
443 iir = I915_READ(VLV_IIR);
444 gt_iir = I915_READ(GTIIR);
445 pm_iir = I915_READ(GEN6_PMIIR);
446
447 if (gt_iir == 0 && pm_iir == 0 && iir == 0)
448 goto out;
449
450 ret = IRQ_HANDLED;
451
Daniel Vettere7b4c6b2012-03-30 20:24:35 +0200452 snb_gt_irq_handler(dev, dev_priv, gt_iir);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -0700453
454 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
455 for_each_pipe(pipe) {
456 int reg = PIPESTAT(pipe);
457 pipe_stats[pipe] = I915_READ(reg);
458
459 /*
460 * Clear the PIPE*STAT regs before the IIR
461 */
462 if (pipe_stats[pipe] & 0x8000ffff) {
463 if (pipe_stats[pipe] & PIPE_FIFO_UNDERRUN_STATUS)
464 DRM_DEBUG_DRIVER("pipe %c underrun\n",
465 pipe_name(pipe));
466 I915_WRITE(reg, pipe_stats[pipe]);
467 }
468 }
469 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
470
471 /* Consume port. Then clear IIR or we'll miss events */
472 if (iir & I915_DISPLAY_PORT_INTERRUPT) {
473 u32 hotplug_status = I915_READ(PORT_HOTPLUG_STAT);
474
475 DRM_DEBUG_DRIVER("hotplug event received, stat 0x%08x\n",
476 hotplug_status);
477 if (hotplug_status & dev_priv->hotplug_supported_mask)
478 queue_work(dev_priv->wq,
479 &dev_priv->hotplug_work);
480
481 I915_WRITE(PORT_HOTPLUG_STAT, hotplug_status);
482 I915_READ(PORT_HOTPLUG_STAT);
483 }
484
485
486 if (iir & I915_DISPLAY_PIPE_A_VBLANK_INTERRUPT) {
487 drm_handle_vblank(dev, 0);
488 vblank++;
Chris Wilsone0f608d2012-04-24 22:59:43 +0100489 intel_finish_page_flip(dev, 0);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -0700490 }
491
492 if (iir & I915_DISPLAY_PIPE_B_VBLANK_INTERRUPT) {
493 drm_handle_vblank(dev, 1);
494 vblank++;
Chris Wilsone0f608d2012-04-24 22:59:43 +0100495 intel_finish_page_flip(dev, 0);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -0700496 }
497
498 if (pipe_stats[pipe] & PIPE_LEGACY_BLC_EVENT_STATUS)
499 blc_event = true;
500
Chris Wilsonfc6826d2012-04-15 11:56:03 +0100501 if (pm_iir & GEN6_PM_DEFERRED_EVENTS)
502 gen6_queue_rps_work(dev_priv, pm_iir);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -0700503
504 I915_WRITE(GTIIR, gt_iir);
505 I915_WRITE(GEN6_PMIIR, pm_iir);
506 I915_WRITE(VLV_IIR, iir);
507 }
508
509out:
510 return ret;
511}
512
Adam Jackson23e81d62012-06-06 15:45:44 -0400513static void ibx_irq_handler(struct drm_device *dev, u32 pch_iir)
Jesse Barnes776ad802011-01-04 15:09:39 -0800514{
515 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800516 int pipe;
Jesse Barnes776ad802011-01-04 15:09:39 -0800517
Jesse Barnes776ad802011-01-04 15:09:39 -0800518 if (pch_iir & SDE_AUDIO_POWER_MASK)
519 DRM_DEBUG_DRIVER("PCH audio power change on port %d\n",
520 (pch_iir & SDE_AUDIO_POWER_MASK) >>
521 SDE_AUDIO_POWER_SHIFT);
522
523 if (pch_iir & SDE_GMBUS)
524 DRM_DEBUG_DRIVER("PCH GMBUS interrupt\n");
525
526 if (pch_iir & SDE_AUDIO_HDCP_MASK)
527 DRM_DEBUG_DRIVER("PCH HDCP audio interrupt\n");
528
529 if (pch_iir & SDE_AUDIO_TRANS_MASK)
530 DRM_DEBUG_DRIVER("PCH transcoder audio interrupt\n");
531
532 if (pch_iir & SDE_POISON)
533 DRM_ERROR("PCH poison interrupt\n");
534
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800535 if (pch_iir & SDE_FDI_MASK)
536 for_each_pipe(pipe)
537 DRM_DEBUG_DRIVER(" pipe %c FDI IIR: 0x%08x\n",
538 pipe_name(pipe),
539 I915_READ(FDI_RX_IIR(pipe)));
Jesse Barnes776ad802011-01-04 15:09:39 -0800540
541 if (pch_iir & (SDE_TRANSB_CRC_DONE | SDE_TRANSA_CRC_DONE))
542 DRM_DEBUG_DRIVER("PCH transcoder CRC done interrupt\n");
543
544 if (pch_iir & (SDE_TRANSB_CRC_ERR | SDE_TRANSA_CRC_ERR))
545 DRM_DEBUG_DRIVER("PCH transcoder CRC error interrupt\n");
546
547 if (pch_iir & SDE_TRANSB_FIFO_UNDER)
548 DRM_DEBUG_DRIVER("PCH transcoder B underrun interrupt\n");
549 if (pch_iir & SDE_TRANSA_FIFO_UNDER)
550 DRM_DEBUG_DRIVER("PCH transcoder A underrun interrupt\n");
551}
552
Adam Jackson23e81d62012-06-06 15:45:44 -0400553static void cpt_irq_handler(struct drm_device *dev, u32 pch_iir)
554{
555 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
556 int pipe;
557
558 if (pch_iir & SDE_AUDIO_POWER_MASK_CPT)
559 DRM_DEBUG_DRIVER("PCH audio power change on port %d\n",
560 (pch_iir & SDE_AUDIO_POWER_MASK_CPT) >>
561 SDE_AUDIO_POWER_SHIFT_CPT);
562
563 if (pch_iir & SDE_AUX_MASK_CPT)
564 DRM_DEBUG_DRIVER("AUX channel interrupt\n");
565
566 if (pch_iir & SDE_GMBUS_CPT)
567 DRM_DEBUG_DRIVER("PCH GMBUS interrupt\n");
568
569 if (pch_iir & SDE_AUDIO_CP_REQ_CPT)
570 DRM_DEBUG_DRIVER("Audio CP request interrupt\n");
571
572 if (pch_iir & SDE_AUDIO_CP_CHG_CPT)
573 DRM_DEBUG_DRIVER("Audio CP change interrupt\n");
574
575 if (pch_iir & SDE_FDI_MASK_CPT)
576 for_each_pipe(pipe)
577 DRM_DEBUG_DRIVER(" pipe %c FDI IIR: 0x%08x\n",
578 pipe_name(pipe),
579 I915_READ(FDI_RX_IIR(pipe)));
580}
581
Jesse Barnesf71d4af2011-06-28 13:00:41 -0700582static irqreturn_t ivybridge_irq_handler(DRM_IRQ_ARGS)
Jesse Barnesb1f14ad2011-04-06 12:13:38 -0700583{
584 struct drm_device *dev = (struct drm_device *) arg;
585 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Chris Wilson0e434062012-05-09 21:45:44 +0100586 u32 de_iir, gt_iir, de_ier, pm_iir;
587 irqreturn_t ret = IRQ_NONE;
588 int i;
Jesse Barnesb1f14ad2011-04-06 12:13:38 -0700589
590 atomic_inc(&dev_priv->irq_received);
591
592 /* disable master interrupt before clearing iir */
593 de_ier = I915_READ(DEIER);
594 I915_WRITE(DEIER, de_ier & ~DE_MASTER_IRQ_CONTROL);
Chris Wilson0e434062012-05-09 21:45:44 +0100595
596 gt_iir = I915_READ(GTIIR);
597 if (gt_iir) {
598 snb_gt_irq_handler(dev, dev_priv, gt_iir);
599 I915_WRITE(GTIIR, gt_iir);
600 ret = IRQ_HANDLED;
601 }
Jesse Barnesb1f14ad2011-04-06 12:13:38 -0700602
603 de_iir = I915_READ(DEIIR);
Chris Wilson0e434062012-05-09 21:45:44 +0100604 if (de_iir) {
605 if (de_iir & DE_GSE_IVB)
606 intel_opregion_gse_intr(dev);
607
608 for (i = 0; i < 3; i++) {
609 if (de_iir & (DE_PLANEA_FLIP_DONE_IVB << (5 * i))) {
610 intel_prepare_page_flip(dev, i);
611 intel_finish_page_flip_plane(dev, i);
612 }
613 if (de_iir & (DE_PIPEA_VBLANK_IVB << (5 * i)))
614 drm_handle_vblank(dev, i);
615 }
616
617 /* check event from PCH */
618 if (de_iir & DE_PCH_EVENT_IVB) {
619 u32 pch_iir = I915_READ(SDEIIR);
620
621 if (pch_iir & SDE_HOTPLUG_MASK_CPT)
622 queue_work(dev_priv->wq, &dev_priv->hotplug_work);
Adam Jackson23e81d62012-06-06 15:45:44 -0400623 cpt_irq_handler(dev, pch_iir);
Chris Wilson0e434062012-05-09 21:45:44 +0100624
625 /* clear PCH hotplug event before clear CPU irq */
626 I915_WRITE(SDEIIR, pch_iir);
627 }
628
629 I915_WRITE(DEIIR, de_iir);
630 ret = IRQ_HANDLED;
631 }
632
Jesse Barnesb1f14ad2011-04-06 12:13:38 -0700633 pm_iir = I915_READ(GEN6_PMIIR);
Chris Wilson0e434062012-05-09 21:45:44 +0100634 if (pm_iir) {
635 if (pm_iir & GEN6_PM_DEFERRED_EVENTS)
636 gen6_queue_rps_work(dev_priv, pm_iir);
637 I915_WRITE(GEN6_PMIIR, pm_iir);
638 ret = IRQ_HANDLED;
Jesse Barnesb1f14ad2011-04-06 12:13:38 -0700639 }
640
Jesse Barnesb1f14ad2011-04-06 12:13:38 -0700641 I915_WRITE(DEIER, de_ier);
642 POSTING_READ(DEIER);
643
644 return ret;
645}
646
Daniel Vettere7b4c6b2012-03-30 20:24:35 +0200647static void ilk_gt_irq_handler(struct drm_device *dev,
648 struct drm_i915_private *dev_priv,
649 u32 gt_iir)
650{
651 if (gt_iir & (GT_USER_INTERRUPT | GT_PIPE_NOTIFY))
652 notify_ring(dev, &dev_priv->ring[RCS]);
653 if (gt_iir & GT_BSD_USER_INTERRUPT)
654 notify_ring(dev, &dev_priv->ring[VCS]);
655}
656
Jesse Barnesf71d4af2011-06-28 13:00:41 -0700657static irqreturn_t ironlake_irq_handler(DRM_IRQ_ARGS)
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800658{
Jesse Barnes46979952011-04-07 13:53:55 -0700659 struct drm_device *dev = (struct drm_device *) arg;
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800660 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
661 int ret = IRQ_NONE;
Jesse Barnes3b8d8d92010-12-17 14:19:02 -0800662 u32 de_iir, gt_iir, de_ier, pch_iir, pm_iir;
Yuanhan Liu2d7b8362010-10-08 10:21:06 +0100663 u32 hotplug_mask;
Xiang, Haihao881f47b2010-09-19 14:40:43 +0100664
Jesse Barnes46979952011-04-07 13:53:55 -0700665 atomic_inc(&dev_priv->irq_received);
666
Zou, Nanhai2d109a82009-11-06 02:13:01 +0000667 /* disable master interrupt before clearing iir */
668 de_ier = I915_READ(DEIER);
669 I915_WRITE(DEIER, de_ier & ~DE_MASTER_IRQ_CONTROL);
Chris Wilson3143a2b2010-11-16 15:55:10 +0000670 POSTING_READ(DEIER);
Zou, Nanhai2d109a82009-11-06 02:13:01 +0000671
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800672 de_iir = I915_READ(DEIIR);
673 gt_iir = I915_READ(GTIIR);
Zhenyu Wangc6501562009-11-03 18:57:21 +0000674 pch_iir = I915_READ(SDEIIR);
Jesse Barnes3b8d8d92010-12-17 14:19:02 -0800675 pm_iir = I915_READ(GEN6_PMIIR);
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800676
Jesse Barnes3b8d8d92010-12-17 14:19:02 -0800677 if (de_iir == 0 && gt_iir == 0 && pch_iir == 0 &&
678 (!IS_GEN6(dev) || pm_iir == 0))
Zou Nan haic7c85102010-01-15 10:29:06 +0800679 goto done;
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800680
Yuanhan Liu2d7b8362010-10-08 10:21:06 +0100681 if (HAS_PCH_CPT(dev))
682 hotplug_mask = SDE_HOTPLUG_MASK_CPT;
683 else
684 hotplug_mask = SDE_HOTPLUG_MASK;
685
Zou Nan haic7c85102010-01-15 10:29:06 +0800686 ret = IRQ_HANDLED;
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800687
Daniel Vettere7b4c6b2012-03-30 20:24:35 +0200688 if (IS_GEN5(dev))
689 ilk_gt_irq_handler(dev, dev_priv, gt_iir);
690 else
691 snb_gt_irq_handler(dev, dev_priv, gt_iir);
Zou Nan haic7c85102010-01-15 10:29:06 +0800692
693 if (de_iir & DE_GSE)
Chris Wilson3b617962010-08-24 09:02:58 +0100694 intel_opregion_gse_intr(dev);
Zou Nan haic7c85102010-01-15 10:29:06 +0800695
Zhenyu Wangf072d2e2010-02-09 09:46:19 +0800696 if (de_iir & DE_PLANEA_FLIP_DONE) {
Jesse Barnes013d5aa2010-01-29 11:18:31 -0800697 intel_prepare_page_flip(dev, 0);
Chris Wilson2bbda382010-09-02 17:59:39 +0100698 intel_finish_page_flip_plane(dev, 0);
Jesse Barnes013d5aa2010-01-29 11:18:31 -0800699 }
700
Zhenyu Wangf072d2e2010-02-09 09:46:19 +0800701 if (de_iir & DE_PLANEB_FLIP_DONE) {
702 intel_prepare_page_flip(dev, 1);
Chris Wilson2bbda382010-09-02 17:59:39 +0100703 intel_finish_page_flip_plane(dev, 1);
Jesse Barnes013d5aa2010-01-29 11:18:31 -0800704 }
Li Pengc062df62010-01-23 00:12:58 +0800705
Zhenyu Wangf072d2e2010-02-09 09:46:19 +0800706 if (de_iir & DE_PIPEA_VBLANK)
707 drm_handle_vblank(dev, 0);
708
709 if (de_iir & DE_PIPEB_VBLANK)
710 drm_handle_vblank(dev, 1);
711
Zou Nan haic7c85102010-01-15 10:29:06 +0800712 /* check event from PCH */
Jesse Barnes776ad802011-01-04 15:09:39 -0800713 if (de_iir & DE_PCH_EVENT) {
714 if (pch_iir & hotplug_mask)
715 queue_work(dev_priv->wq, &dev_priv->hotplug_work);
Adam Jackson23e81d62012-06-06 15:45:44 -0400716 if (HAS_PCH_CPT(dev))
717 cpt_irq_handler(dev, pch_iir);
718 else
719 ibx_irq_handler(dev, pch_iir);
Jesse Barnes776ad802011-01-04 15:09:39 -0800720 }
Zou Nan haic7c85102010-01-15 10:29:06 +0800721
Jesse Barnesf97108d2010-01-29 11:27:07 -0800722 if (de_iir & DE_PCU_EVENT) {
Jesse Barnes7648fa92010-05-20 14:28:11 -0700723 I915_WRITE16(MEMINTRSTS, I915_READ(MEMINTRSTS));
Jesse Barnesf97108d2010-01-29 11:27:07 -0800724 i915_handle_rps_change(dev);
725 }
726
Chris Wilsonfc6826d2012-04-15 11:56:03 +0100727 if (IS_GEN6(dev) && pm_iir & GEN6_PM_DEFERRED_EVENTS)
728 gen6_queue_rps_work(dev_priv, pm_iir);
Jesse Barnes3b8d8d92010-12-17 14:19:02 -0800729
Zou Nan haic7c85102010-01-15 10:29:06 +0800730 /* should clear PCH hotplug event before clear CPU irq */
731 I915_WRITE(SDEIIR, pch_iir);
732 I915_WRITE(GTIIR, gt_iir);
733 I915_WRITE(DEIIR, de_iir);
Ben Widawsky4912d042011-04-25 11:25:20 -0700734 I915_WRITE(GEN6_PMIIR, pm_iir);
Zou Nan haic7c85102010-01-15 10:29:06 +0800735
736done:
Zou, Nanhai2d109a82009-11-06 02:13:01 +0000737 I915_WRITE(DEIER, de_ier);
Chris Wilson3143a2b2010-11-16 15:55:10 +0000738 POSTING_READ(DEIER);
Zou, Nanhai2d109a82009-11-06 02:13:01 +0000739
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800740 return ret;
741}
742
Jesse Barnes8a905232009-07-11 16:48:03 -0400743/**
744 * i915_error_work_func - do process context error handling work
745 * @work: work struct
746 *
747 * Fire an error uevent so userspace can see that a hang or error
748 * was detected.
749 */
750static void i915_error_work_func(struct work_struct *work)
751{
752 drm_i915_private_t *dev_priv = container_of(work, drm_i915_private_t,
753 error_work);
754 struct drm_device *dev = dev_priv->dev;
Ben Gamarif316a422009-09-14 17:48:46 -0400755 char *error_event[] = { "ERROR=1", NULL };
756 char *reset_event[] = { "RESET=1", NULL };
757 char *reset_done_event[] = { "ERROR=0", NULL };
Jesse Barnes8a905232009-07-11 16:48:03 -0400758
Ben Gamarif316a422009-09-14 17:48:46 -0400759 kobject_uevent_env(&dev->primary->kdev.kobj, KOBJ_CHANGE, error_event);
Jesse Barnes8a905232009-07-11 16:48:03 -0400760
Ben Gamariba1234d2009-09-14 17:48:47 -0400761 if (atomic_read(&dev_priv->mm.wedged)) {
Chris Wilsonf803aa52010-09-19 12:38:26 +0100762 DRM_DEBUG_DRIVER("resetting chip\n");
763 kobject_uevent_env(&dev->primary->kdev.kobj, KOBJ_CHANGE, reset_event);
Daniel Vetterd4b8bb22012-04-27 15:17:44 +0200764 if (!i915_reset(dev)) {
Chris Wilsonf803aa52010-09-19 12:38:26 +0100765 atomic_set(&dev_priv->mm.wedged, 0);
766 kobject_uevent_env(&dev->primary->kdev.kobj, KOBJ_CHANGE, reset_done_event);
Ben Gamarif316a422009-09-14 17:48:46 -0400767 }
Chris Wilson30dbf0c2010-09-25 10:19:17 +0100768 complete_all(&dev_priv->error_completion);
Ben Gamarif316a422009-09-14 17:48:46 -0400769 }
Jesse Barnes8a905232009-07-11 16:48:03 -0400770}
771
Chris Wilson3bd3c932010-08-19 08:19:30 +0100772#ifdef CONFIG_DEBUG_FS
Chris Wilson9df30792010-02-18 10:24:56 +0000773static struct drm_i915_error_object *
Chris Wilsonbcfb2e22011-01-07 21:06:07 +0000774i915_error_object_create(struct drm_i915_private *dev_priv,
Chris Wilson05394f32010-11-08 19:18:58 +0000775 struct drm_i915_gem_object *src)
Chris Wilson9df30792010-02-18 10:24:56 +0000776{
777 struct drm_i915_error_object *dst;
Chris Wilson9df30792010-02-18 10:24:56 +0000778 int page, page_count;
Chris Wilsone56660d2010-08-07 11:01:26 +0100779 u32 reloc_offset;
Chris Wilson9df30792010-02-18 10:24:56 +0000780
Chris Wilson05394f32010-11-08 19:18:58 +0000781 if (src == NULL || src->pages == NULL)
Chris Wilson9df30792010-02-18 10:24:56 +0000782 return NULL;
783
Chris Wilson05394f32010-11-08 19:18:58 +0000784 page_count = src->base.size / PAGE_SIZE;
Chris Wilson9df30792010-02-18 10:24:56 +0000785
Akshay Joshi0206e352011-08-16 15:34:10 -0400786 dst = kmalloc(sizeof(*dst) + page_count * sizeof(u32 *), GFP_ATOMIC);
Chris Wilson9df30792010-02-18 10:24:56 +0000787 if (dst == NULL)
788 return NULL;
789
Chris Wilson05394f32010-11-08 19:18:58 +0000790 reloc_offset = src->gtt_offset;
Chris Wilson9df30792010-02-18 10:24:56 +0000791 for (page = 0; page < page_count; page++) {
Andrew Morton788885a2010-05-11 14:07:05 -0700792 unsigned long flags;
Chris Wilsone56660d2010-08-07 11:01:26 +0100793 void *d;
Andrew Morton788885a2010-05-11 14:07:05 -0700794
Chris Wilsone56660d2010-08-07 11:01:26 +0100795 d = kmalloc(PAGE_SIZE, GFP_ATOMIC);
Chris Wilson9df30792010-02-18 10:24:56 +0000796 if (d == NULL)
797 goto unwind;
Chris Wilsone56660d2010-08-07 11:01:26 +0100798
Andrew Morton788885a2010-05-11 14:07:05 -0700799 local_irq_save(flags);
Daniel Vetter74898d72012-02-15 23:50:22 +0100800 if (reloc_offset < dev_priv->mm.gtt_mappable_end &&
801 src->has_global_gtt_mapping) {
Chris Wilson172975aa2011-12-14 13:57:25 +0100802 void __iomem *s;
803
804 /* Simply ignore tiling or any overlapping fence.
805 * It's part of the error state, and this hopefully
806 * captures what the GPU read.
807 */
808
809 s = io_mapping_map_atomic_wc(dev_priv->mm.gtt_mapping,
810 reloc_offset);
811 memcpy_fromio(d, s, PAGE_SIZE);
812 io_mapping_unmap_atomic(s);
813 } else {
814 void *s;
815
816 drm_clflush_pages(&src->pages[page], 1);
817
818 s = kmap_atomic(src->pages[page]);
819 memcpy(d, s, PAGE_SIZE);
820 kunmap_atomic(s);
821
822 drm_clflush_pages(&src->pages[page], 1);
823 }
Andrew Morton788885a2010-05-11 14:07:05 -0700824 local_irq_restore(flags);
Chris Wilsone56660d2010-08-07 11:01:26 +0100825
Chris Wilson9df30792010-02-18 10:24:56 +0000826 dst->pages[page] = d;
Chris Wilsone56660d2010-08-07 11:01:26 +0100827
828 reloc_offset += PAGE_SIZE;
Chris Wilson9df30792010-02-18 10:24:56 +0000829 }
830 dst->page_count = page_count;
Chris Wilson05394f32010-11-08 19:18:58 +0000831 dst->gtt_offset = src->gtt_offset;
Chris Wilson9df30792010-02-18 10:24:56 +0000832
833 return dst;
834
835unwind:
836 while (page--)
837 kfree(dst->pages[page]);
838 kfree(dst);
839 return NULL;
840}
841
842static void
843i915_error_object_free(struct drm_i915_error_object *obj)
844{
845 int page;
846
847 if (obj == NULL)
848 return;
849
850 for (page = 0; page < obj->page_count; page++)
851 kfree(obj->pages[page]);
852
853 kfree(obj);
854}
855
Daniel Vetter742cbee2012-04-27 15:17:39 +0200856void
857i915_error_state_free(struct kref *error_ref)
Chris Wilson9df30792010-02-18 10:24:56 +0000858{
Daniel Vetter742cbee2012-04-27 15:17:39 +0200859 struct drm_i915_error_state *error = container_of(error_ref,
860 typeof(*error), ref);
Chris Wilsone2f973d2011-01-27 19:15:11 +0000861 int i;
862
Chris Wilson52d39a22012-02-15 11:25:37 +0000863 for (i = 0; i < ARRAY_SIZE(error->ring); i++) {
864 i915_error_object_free(error->ring[i].batchbuffer);
865 i915_error_object_free(error->ring[i].ringbuffer);
866 kfree(error->ring[i].requests);
867 }
Chris Wilsone2f973d2011-01-27 19:15:11 +0000868
Chris Wilson9df30792010-02-18 10:24:56 +0000869 kfree(error->active_bo);
Chris Wilson6ef3d422010-08-04 20:26:07 +0100870 kfree(error->overlay);
Chris Wilson9df30792010-02-18 10:24:56 +0000871 kfree(error);
872}
Chris Wilson1b502472012-04-24 15:47:30 +0100873static void capture_bo(struct drm_i915_error_buffer *err,
874 struct drm_i915_gem_object *obj)
875{
876 err->size = obj->base.size;
877 err->name = obj->base.name;
878 err->seqno = obj->last_rendering_seqno;
879 err->gtt_offset = obj->gtt_offset;
880 err->read_domains = obj->base.read_domains;
881 err->write_domain = obj->base.write_domain;
882 err->fence_reg = obj->fence_reg;
883 err->pinned = 0;
884 if (obj->pin_count > 0)
885 err->pinned = 1;
886 if (obj->user_pin_count > 0)
887 err->pinned = -1;
888 err->tiling = obj->tiling_mode;
889 err->dirty = obj->dirty;
890 err->purgeable = obj->madv != I915_MADV_WILLNEED;
891 err->ring = obj->ring ? obj->ring->id : -1;
892 err->cache_level = obj->cache_level;
893}
Chris Wilson9df30792010-02-18 10:24:56 +0000894
Chris Wilson1b502472012-04-24 15:47:30 +0100895static u32 capture_active_bo(struct drm_i915_error_buffer *err,
896 int count, struct list_head *head)
Chris Wilsonc724e8a2010-11-22 08:07:02 +0000897{
898 struct drm_i915_gem_object *obj;
899 int i = 0;
900
901 list_for_each_entry(obj, head, mm_list) {
Chris Wilson1b502472012-04-24 15:47:30 +0100902 capture_bo(err++, obj);
Chris Wilsonc724e8a2010-11-22 08:07:02 +0000903 if (++i == count)
904 break;
Chris Wilson1b502472012-04-24 15:47:30 +0100905 }
Chris Wilsonc724e8a2010-11-22 08:07:02 +0000906
Chris Wilson1b502472012-04-24 15:47:30 +0100907 return i;
908}
909
910static u32 capture_pinned_bo(struct drm_i915_error_buffer *err,
911 int count, struct list_head *head)
912{
913 struct drm_i915_gem_object *obj;
914 int i = 0;
915
916 list_for_each_entry(obj, head, gtt_list) {
917 if (obj->pin_count == 0)
918 continue;
919
920 capture_bo(err++, obj);
921 if (++i == count)
922 break;
Chris Wilsonc724e8a2010-11-22 08:07:02 +0000923 }
924
925 return i;
926}
927
Chris Wilson748ebc62010-10-24 10:28:47 +0100928static void i915_gem_record_fences(struct drm_device *dev,
929 struct drm_i915_error_state *error)
930{
931 struct drm_i915_private *dev_priv = dev->dev_private;
932 int i;
933
934 /* Fences */
935 switch (INTEL_INFO(dev)->gen) {
Daniel Vetter775d17b2011-10-09 21:52:01 +0200936 case 7:
Chris Wilson748ebc62010-10-24 10:28:47 +0100937 case 6:
938 for (i = 0; i < 16; i++)
939 error->fence[i] = I915_READ64(FENCE_REG_SANDYBRIDGE_0 + (i * 8));
940 break;
941 case 5:
942 case 4:
943 for (i = 0; i < 16; i++)
944 error->fence[i] = I915_READ64(FENCE_REG_965_0 + (i * 8));
945 break;
946 case 3:
947 if (IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev))
948 for (i = 0; i < 8; i++)
949 error->fence[i+8] = I915_READ(FENCE_REG_945_8 + (i * 4));
950 case 2:
951 for (i = 0; i < 8; i++)
952 error->fence[i] = I915_READ(FENCE_REG_830_0 + (i * 4));
953 break;
954
955 }
956}
957
Chris Wilsonbcfb2e22011-01-07 21:06:07 +0000958static struct drm_i915_error_object *
959i915_error_first_batchbuffer(struct drm_i915_private *dev_priv,
960 struct intel_ring_buffer *ring)
961{
962 struct drm_i915_gem_object *obj;
963 u32 seqno;
964
965 if (!ring->get_seqno)
966 return NULL;
967
968 seqno = ring->get_seqno(ring);
969 list_for_each_entry(obj, &dev_priv->mm.active_list, mm_list) {
970 if (obj->ring != ring)
971 continue;
972
Chris Wilsonc37d9a52011-01-12 20:33:01 +0000973 if (i915_seqno_passed(seqno, obj->last_rendering_seqno))
Chris Wilsonbcfb2e22011-01-07 21:06:07 +0000974 continue;
975
976 if ((obj->base.read_domains & I915_GEM_DOMAIN_COMMAND) == 0)
977 continue;
978
979 /* We need to copy these to an anonymous buffer as the simplest
980 * method to avoid being overwritten by userspace.
981 */
982 return i915_error_object_create(dev_priv, obj);
983 }
984
985 return NULL;
986}
987
Daniel Vetterd27b1e02011-12-14 13:57:01 +0100988static void i915_record_ring_state(struct drm_device *dev,
989 struct drm_i915_error_state *error,
990 struct intel_ring_buffer *ring)
991{
992 struct drm_i915_private *dev_priv = dev->dev_private;
993
Daniel Vetter33f3f512011-12-14 13:57:39 +0100994 if (INTEL_INFO(dev)->gen >= 6) {
Daniel Vetter33f3f512011-12-14 13:57:39 +0100995 error->fault_reg[ring->id] = I915_READ(RING_FAULT_REG(ring));
Daniel Vetter7e3b8732012-02-01 22:26:45 +0100996 error->semaphore_mboxes[ring->id][0]
997 = I915_READ(RING_SYNC_0(ring->mmio_base));
998 error->semaphore_mboxes[ring->id][1]
999 = I915_READ(RING_SYNC_1(ring->mmio_base));
Daniel Vetter33f3f512011-12-14 13:57:39 +01001000 }
Daniel Vetterc1cd90e2011-12-14 13:57:02 +01001001
Daniel Vetterd27b1e02011-12-14 13:57:01 +01001002 if (INTEL_INFO(dev)->gen >= 4) {
Daniel Vetter9d2f41f2012-04-02 21:41:45 +02001003 error->faddr[ring->id] = I915_READ(RING_DMA_FADD(ring->mmio_base));
Daniel Vetterd27b1e02011-12-14 13:57:01 +01001004 error->ipeir[ring->id] = I915_READ(RING_IPEIR(ring->mmio_base));
1005 error->ipehr[ring->id] = I915_READ(RING_IPEHR(ring->mmio_base));
1006 error->instdone[ring->id] = I915_READ(RING_INSTDONE(ring->mmio_base));
Daniel Vetterc1cd90e2011-12-14 13:57:02 +01001007 error->instps[ring->id] = I915_READ(RING_INSTPS(ring->mmio_base));
Daniel Vetterd27b1e02011-12-14 13:57:01 +01001008 if (ring->id == RCS) {
Daniel Vetterd27b1e02011-12-14 13:57:01 +01001009 error->instdone1 = I915_READ(INSTDONE1);
1010 error->bbaddr = I915_READ64(BB_ADDR);
1011 }
1012 } else {
Daniel Vetter9d2f41f2012-04-02 21:41:45 +02001013 error->faddr[ring->id] = I915_READ(DMA_FADD_I8XX);
Daniel Vetterd27b1e02011-12-14 13:57:01 +01001014 error->ipeir[ring->id] = I915_READ(IPEIR);
1015 error->ipehr[ring->id] = I915_READ(IPEHR);
1016 error->instdone[ring->id] = I915_READ(INSTDONE);
Daniel Vetterd27b1e02011-12-14 13:57:01 +01001017 }
1018
Ben Widawsky9574b3f2012-04-26 16:03:01 -07001019 error->waiting[ring->id] = waitqueue_active(&ring->irq_queue);
Daniel Vetterc1cd90e2011-12-14 13:57:02 +01001020 error->instpm[ring->id] = I915_READ(RING_INSTPM(ring->mmio_base));
Daniel Vetterd27b1e02011-12-14 13:57:01 +01001021 error->seqno[ring->id] = ring->get_seqno(ring);
1022 error->acthd[ring->id] = intel_ring_get_active_head(ring);
Daniel Vetterc1cd90e2011-12-14 13:57:02 +01001023 error->head[ring->id] = I915_READ_HEAD(ring);
1024 error->tail[ring->id] = I915_READ_TAIL(ring);
Daniel Vetter7e3b8732012-02-01 22:26:45 +01001025
1026 error->cpu_ring_head[ring->id] = ring->head;
1027 error->cpu_ring_tail[ring->id] = ring->tail;
Daniel Vetterd27b1e02011-12-14 13:57:01 +01001028}
1029
Chris Wilson52d39a22012-02-15 11:25:37 +00001030static void i915_gem_record_rings(struct drm_device *dev,
1031 struct drm_i915_error_state *error)
1032{
1033 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonb4519512012-05-11 14:29:30 +01001034 struct intel_ring_buffer *ring;
Chris Wilson52d39a22012-02-15 11:25:37 +00001035 struct drm_i915_gem_request *request;
1036 int i, count;
1037
Chris Wilsonb4519512012-05-11 14:29:30 +01001038 for_each_ring(ring, dev_priv, i) {
Chris Wilson52d39a22012-02-15 11:25:37 +00001039 i915_record_ring_state(dev, error, ring);
1040
1041 error->ring[i].batchbuffer =
1042 i915_error_first_batchbuffer(dev_priv, ring);
1043
1044 error->ring[i].ringbuffer =
1045 i915_error_object_create(dev_priv, ring->obj);
1046
1047 count = 0;
1048 list_for_each_entry(request, &ring->request_list, list)
1049 count++;
1050
1051 error->ring[i].num_requests = count;
1052 error->ring[i].requests =
1053 kmalloc(count*sizeof(struct drm_i915_error_request),
1054 GFP_ATOMIC);
1055 if (error->ring[i].requests == NULL) {
1056 error->ring[i].num_requests = 0;
1057 continue;
1058 }
1059
1060 count = 0;
1061 list_for_each_entry(request, &ring->request_list, list) {
1062 struct drm_i915_error_request *erq;
1063
1064 erq = &error->ring[i].requests[count++];
1065 erq->seqno = request->seqno;
1066 erq->jiffies = request->emitted_jiffies;
Chris Wilsonee4f42b2012-02-15 11:25:38 +00001067 erq->tail = request->tail;
Chris Wilson52d39a22012-02-15 11:25:37 +00001068 }
1069 }
1070}
1071
Jesse Barnes8a905232009-07-11 16:48:03 -04001072/**
1073 * i915_capture_error_state - capture an error record for later analysis
1074 * @dev: drm device
1075 *
1076 * Should be called when an error is detected (either a hang or an error
1077 * interrupt) to capture error state from the time of the error. Fills
1078 * out a structure which becomes available in debugfs for user level tools
1079 * to pick up.
1080 */
Jesse Barnes63eeaf32009-06-18 16:56:52 -07001081static void i915_capture_error_state(struct drm_device *dev)
1082{
1083 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson05394f32010-11-08 19:18:58 +00001084 struct drm_i915_gem_object *obj;
Jesse Barnes63eeaf32009-06-18 16:56:52 -07001085 struct drm_i915_error_state *error;
1086 unsigned long flags;
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001087 int i, pipe;
Jesse Barnes63eeaf32009-06-18 16:56:52 -07001088
1089 spin_lock_irqsave(&dev_priv->error_lock, flags);
Chris Wilson9df30792010-02-18 10:24:56 +00001090 error = dev_priv->first_error;
1091 spin_unlock_irqrestore(&dev_priv->error_lock, flags);
1092 if (error)
1093 return;
Jesse Barnes63eeaf32009-06-18 16:56:52 -07001094
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001095 /* Account for pipe specific data like PIPE*STAT */
Daniel Vetter33f3f512011-12-14 13:57:39 +01001096 error = kzalloc(sizeof(*error), GFP_ATOMIC);
Jesse Barnes63eeaf32009-06-18 16:56:52 -07001097 if (!error) {
Chris Wilson9df30792010-02-18 10:24:56 +00001098 DRM_DEBUG_DRIVER("out of memory, not capturing error state\n");
1099 return;
Jesse Barnes63eeaf32009-06-18 16:56:52 -07001100 }
1101
Chris Wilsonb6f78332011-02-01 14:15:55 +00001102 DRM_INFO("capturing error event; look for more information in /debug/dri/%d/i915_error_state\n",
1103 dev->primary->index);
Chris Wilson2fa772f2010-10-01 13:23:27 +01001104
Daniel Vetter742cbee2012-04-27 15:17:39 +02001105 kref_init(&error->ref);
Jesse Barnes63eeaf32009-06-18 16:56:52 -07001106 error->eir = I915_READ(EIR);
1107 error->pgtbl_er = I915_READ(PGTBL_ER);
Ben Widawskybe998e22012-04-26 16:03:00 -07001108
1109 if (HAS_PCH_SPLIT(dev))
1110 error->ier = I915_READ(DEIER) | I915_READ(GTIER);
1111 else if (IS_VALLEYVIEW(dev))
1112 error->ier = I915_READ(GTIER) | I915_READ(VLV_IER);
1113 else if (IS_GEN2(dev))
1114 error->ier = I915_READ16(IER);
1115 else
1116 error->ier = I915_READ(IER);
1117
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001118 for_each_pipe(pipe)
1119 error->pipestat[pipe] = I915_READ(PIPESTAT(pipe));
Daniel Vetterd27b1e02011-12-14 13:57:01 +01001120
Daniel Vetter33f3f512011-12-14 13:57:39 +01001121 if (INTEL_INFO(dev)->gen >= 6) {
Chris Wilsonf4068392010-10-27 20:36:41 +01001122 error->error = I915_READ(ERROR_GEN6);
Daniel Vetter33f3f512011-12-14 13:57:39 +01001123 error->done_reg = I915_READ(DONE_REG);
1124 }
Chris Wilsonadd354d2010-10-29 19:00:51 +01001125
Chris Wilson748ebc62010-10-24 10:28:47 +01001126 i915_gem_record_fences(dev, error);
Chris Wilson52d39a22012-02-15 11:25:37 +00001127 i915_gem_record_rings(dev, error);
Chris Wilson9df30792010-02-18 10:24:56 +00001128
Chris Wilsonc724e8a2010-11-22 08:07:02 +00001129 /* Record buffers on the active and pinned lists. */
Chris Wilson9df30792010-02-18 10:24:56 +00001130 error->active_bo = NULL;
Chris Wilsonc724e8a2010-11-22 08:07:02 +00001131 error->pinned_bo = NULL;
Chris Wilson9df30792010-02-18 10:24:56 +00001132
Chris Wilsonbcfb2e22011-01-07 21:06:07 +00001133 i = 0;
1134 list_for_each_entry(obj, &dev_priv->mm.active_list, mm_list)
1135 i++;
1136 error->active_bo_count = i;
Chris Wilson1b502472012-04-24 15:47:30 +01001137 list_for_each_entry(obj, &dev_priv->mm.gtt_list, gtt_list)
1138 if (obj->pin_count)
1139 i++;
Chris Wilsonbcfb2e22011-01-07 21:06:07 +00001140 error->pinned_bo_count = i - error->active_bo_count;
Chris Wilsonc724e8a2010-11-22 08:07:02 +00001141
Chris Wilson8e934db2011-01-24 12:34:00 +00001142 error->active_bo = NULL;
1143 error->pinned_bo = NULL;
Chris Wilsonbcfb2e22011-01-07 21:06:07 +00001144 if (i) {
1145 error->active_bo = kmalloc(sizeof(*error->active_bo)*i,
Chris Wilson9df30792010-02-18 10:24:56 +00001146 GFP_ATOMIC);
Chris Wilsonc724e8a2010-11-22 08:07:02 +00001147 if (error->active_bo)
1148 error->pinned_bo =
1149 error->active_bo + error->active_bo_count;
Jesse Barnes63eeaf32009-06-18 16:56:52 -07001150 }
1151
Chris Wilsonc724e8a2010-11-22 08:07:02 +00001152 if (error->active_bo)
1153 error->active_bo_count =
Chris Wilson1b502472012-04-24 15:47:30 +01001154 capture_active_bo(error->active_bo,
1155 error->active_bo_count,
1156 &dev_priv->mm.active_list);
Chris Wilsonc724e8a2010-11-22 08:07:02 +00001157
1158 if (error->pinned_bo)
1159 error->pinned_bo_count =
Chris Wilson1b502472012-04-24 15:47:30 +01001160 capture_pinned_bo(error->pinned_bo,
1161 error->pinned_bo_count,
1162 &dev_priv->mm.gtt_list);
Chris Wilsonc724e8a2010-11-22 08:07:02 +00001163
Jesse Barnes8a905232009-07-11 16:48:03 -04001164 do_gettimeofday(&error->time);
1165
Chris Wilson6ef3d422010-08-04 20:26:07 +01001166 error->overlay = intel_overlay_capture_error_state(dev);
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +00001167 error->display = intel_display_capture_error_state(dev);
Chris Wilson6ef3d422010-08-04 20:26:07 +01001168
Chris Wilson9df30792010-02-18 10:24:56 +00001169 spin_lock_irqsave(&dev_priv->error_lock, flags);
1170 if (dev_priv->first_error == NULL) {
1171 dev_priv->first_error = error;
1172 error = NULL;
1173 }
Jesse Barnes63eeaf32009-06-18 16:56:52 -07001174 spin_unlock_irqrestore(&dev_priv->error_lock, flags);
Chris Wilson9df30792010-02-18 10:24:56 +00001175
1176 if (error)
Daniel Vetter742cbee2012-04-27 15:17:39 +02001177 i915_error_state_free(&error->ref);
Chris Wilson9df30792010-02-18 10:24:56 +00001178}
1179
1180void i915_destroy_error_state(struct drm_device *dev)
1181{
1182 struct drm_i915_private *dev_priv = dev->dev_private;
1183 struct drm_i915_error_state *error;
Ben Widawsky6dc0e812012-01-23 15:30:02 -08001184 unsigned long flags;
Chris Wilson9df30792010-02-18 10:24:56 +00001185
Ben Widawsky6dc0e812012-01-23 15:30:02 -08001186 spin_lock_irqsave(&dev_priv->error_lock, flags);
Chris Wilson9df30792010-02-18 10:24:56 +00001187 error = dev_priv->first_error;
1188 dev_priv->first_error = NULL;
Ben Widawsky6dc0e812012-01-23 15:30:02 -08001189 spin_unlock_irqrestore(&dev_priv->error_lock, flags);
Chris Wilson9df30792010-02-18 10:24:56 +00001190
1191 if (error)
Daniel Vetter742cbee2012-04-27 15:17:39 +02001192 kref_put(&error->ref, i915_error_state_free);
Jesse Barnes63eeaf32009-06-18 16:56:52 -07001193}
Chris Wilson3bd3c932010-08-19 08:19:30 +01001194#else
1195#define i915_capture_error_state(x)
1196#endif
Jesse Barnes63eeaf32009-06-18 16:56:52 -07001197
Chris Wilson35aed2e2010-05-27 13:18:12 +01001198static void i915_report_and_clear_eir(struct drm_device *dev)
Jesse Barnes8a905232009-07-11 16:48:03 -04001199{
1200 struct drm_i915_private *dev_priv = dev->dev_private;
1201 u32 eir = I915_READ(EIR);
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001202 int pipe;
Jesse Barnes8a905232009-07-11 16:48:03 -04001203
Chris Wilson35aed2e2010-05-27 13:18:12 +01001204 if (!eir)
1205 return;
Jesse Barnes8a905232009-07-11 16:48:03 -04001206
Joe Perchesa70491c2012-03-18 13:00:11 -07001207 pr_err("render error detected, EIR: 0x%08x\n", eir);
Jesse Barnes8a905232009-07-11 16:48:03 -04001208
1209 if (IS_G4X(dev)) {
1210 if (eir & (GM45_ERROR_MEM_PRIV | GM45_ERROR_CP_PRIV)) {
1211 u32 ipeir = I915_READ(IPEIR_I965);
1212
Joe Perchesa70491c2012-03-18 13:00:11 -07001213 pr_err(" IPEIR: 0x%08x\n", I915_READ(IPEIR_I965));
1214 pr_err(" IPEHR: 0x%08x\n", I915_READ(IPEHR_I965));
1215 pr_err(" INSTDONE: 0x%08x\n",
Jesse Barnes8a905232009-07-11 16:48:03 -04001216 I915_READ(INSTDONE_I965));
Joe Perchesa70491c2012-03-18 13:00:11 -07001217 pr_err(" INSTPS: 0x%08x\n", I915_READ(INSTPS));
1218 pr_err(" INSTDONE1: 0x%08x\n", I915_READ(INSTDONE1));
1219 pr_err(" ACTHD: 0x%08x\n", I915_READ(ACTHD_I965));
Jesse Barnes8a905232009-07-11 16:48:03 -04001220 I915_WRITE(IPEIR_I965, ipeir);
Chris Wilson3143a2b2010-11-16 15:55:10 +00001221 POSTING_READ(IPEIR_I965);
Jesse Barnes8a905232009-07-11 16:48:03 -04001222 }
1223 if (eir & GM45_ERROR_PAGE_TABLE) {
1224 u32 pgtbl_err = I915_READ(PGTBL_ER);
Joe Perchesa70491c2012-03-18 13:00:11 -07001225 pr_err("page table error\n");
1226 pr_err(" PGTBL_ER: 0x%08x\n", pgtbl_err);
Jesse Barnes8a905232009-07-11 16:48:03 -04001227 I915_WRITE(PGTBL_ER, pgtbl_err);
Chris Wilson3143a2b2010-11-16 15:55:10 +00001228 POSTING_READ(PGTBL_ER);
Jesse Barnes8a905232009-07-11 16:48:03 -04001229 }
1230 }
1231
Chris Wilsona6c45cf2010-09-17 00:32:17 +01001232 if (!IS_GEN2(dev)) {
Jesse Barnes8a905232009-07-11 16:48:03 -04001233 if (eir & I915_ERROR_PAGE_TABLE) {
1234 u32 pgtbl_err = I915_READ(PGTBL_ER);
Joe Perchesa70491c2012-03-18 13:00:11 -07001235 pr_err("page table error\n");
1236 pr_err(" PGTBL_ER: 0x%08x\n", pgtbl_err);
Jesse Barnes8a905232009-07-11 16:48:03 -04001237 I915_WRITE(PGTBL_ER, pgtbl_err);
Chris Wilson3143a2b2010-11-16 15:55:10 +00001238 POSTING_READ(PGTBL_ER);
Jesse Barnes8a905232009-07-11 16:48:03 -04001239 }
1240 }
1241
1242 if (eir & I915_ERROR_MEMORY_REFRESH) {
Joe Perchesa70491c2012-03-18 13:00:11 -07001243 pr_err("memory refresh error:\n");
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001244 for_each_pipe(pipe)
Joe Perchesa70491c2012-03-18 13:00:11 -07001245 pr_err("pipe %c stat: 0x%08x\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001246 pipe_name(pipe), I915_READ(PIPESTAT(pipe)));
Jesse Barnes8a905232009-07-11 16:48:03 -04001247 /* pipestat has already been acked */
1248 }
1249 if (eir & I915_ERROR_INSTRUCTION) {
Joe Perchesa70491c2012-03-18 13:00:11 -07001250 pr_err("instruction error\n");
1251 pr_err(" INSTPM: 0x%08x\n", I915_READ(INSTPM));
Chris Wilsona6c45cf2010-09-17 00:32:17 +01001252 if (INTEL_INFO(dev)->gen < 4) {
Jesse Barnes8a905232009-07-11 16:48:03 -04001253 u32 ipeir = I915_READ(IPEIR);
1254
Joe Perchesa70491c2012-03-18 13:00:11 -07001255 pr_err(" IPEIR: 0x%08x\n", I915_READ(IPEIR));
1256 pr_err(" IPEHR: 0x%08x\n", I915_READ(IPEHR));
1257 pr_err(" INSTDONE: 0x%08x\n", I915_READ(INSTDONE));
1258 pr_err(" ACTHD: 0x%08x\n", I915_READ(ACTHD));
Jesse Barnes8a905232009-07-11 16:48:03 -04001259 I915_WRITE(IPEIR, ipeir);
Chris Wilson3143a2b2010-11-16 15:55:10 +00001260 POSTING_READ(IPEIR);
Jesse Barnes8a905232009-07-11 16:48:03 -04001261 } else {
1262 u32 ipeir = I915_READ(IPEIR_I965);
1263
Joe Perchesa70491c2012-03-18 13:00:11 -07001264 pr_err(" IPEIR: 0x%08x\n", I915_READ(IPEIR_I965));
1265 pr_err(" IPEHR: 0x%08x\n", I915_READ(IPEHR_I965));
1266 pr_err(" INSTDONE: 0x%08x\n",
Jesse Barnes8a905232009-07-11 16:48:03 -04001267 I915_READ(INSTDONE_I965));
Joe Perchesa70491c2012-03-18 13:00:11 -07001268 pr_err(" INSTPS: 0x%08x\n", I915_READ(INSTPS));
1269 pr_err(" INSTDONE1: 0x%08x\n", I915_READ(INSTDONE1));
1270 pr_err(" ACTHD: 0x%08x\n", I915_READ(ACTHD_I965));
Jesse Barnes8a905232009-07-11 16:48:03 -04001271 I915_WRITE(IPEIR_I965, ipeir);
Chris Wilson3143a2b2010-11-16 15:55:10 +00001272 POSTING_READ(IPEIR_I965);
Jesse Barnes8a905232009-07-11 16:48:03 -04001273 }
1274 }
1275
1276 I915_WRITE(EIR, eir);
Chris Wilson3143a2b2010-11-16 15:55:10 +00001277 POSTING_READ(EIR);
Jesse Barnes8a905232009-07-11 16:48:03 -04001278 eir = I915_READ(EIR);
1279 if (eir) {
1280 /*
1281 * some errors might have become stuck,
1282 * mask them.
1283 */
1284 DRM_ERROR("EIR stuck: 0x%08x, masking\n", eir);
1285 I915_WRITE(EMR, I915_READ(EMR) | eir);
1286 I915_WRITE(IIR, I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT);
1287 }
Chris Wilson35aed2e2010-05-27 13:18:12 +01001288}
1289
1290/**
1291 * i915_handle_error - handle an error interrupt
1292 * @dev: drm device
1293 *
1294 * Do some basic checking of regsiter state at error interrupt time and
1295 * dump it to the syslog. Also call i915_capture_error_state() to make
1296 * sure we get a record and make it available in debugfs. Fire a uevent
1297 * so userspace knows something bad happened (should trigger collection
1298 * of a ring dump etc.).
1299 */
Chris Wilson527f9e92010-11-11 01:16:58 +00001300void i915_handle_error(struct drm_device *dev, bool wedged)
Chris Wilson35aed2e2010-05-27 13:18:12 +01001301{
1302 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonb4519512012-05-11 14:29:30 +01001303 struct intel_ring_buffer *ring;
1304 int i;
Chris Wilson35aed2e2010-05-27 13:18:12 +01001305
1306 i915_capture_error_state(dev);
1307 i915_report_and_clear_eir(dev);
Jesse Barnes8a905232009-07-11 16:48:03 -04001308
Ben Gamariba1234d2009-09-14 17:48:47 -04001309 if (wedged) {
Chris Wilson30dbf0c2010-09-25 10:19:17 +01001310 INIT_COMPLETION(dev_priv->error_completion);
Ben Gamariba1234d2009-09-14 17:48:47 -04001311 atomic_set(&dev_priv->mm.wedged, 1);
1312
Ben Gamari11ed50e2009-09-14 17:48:45 -04001313 /*
1314 * Wakeup waiting processes so they don't hang
1315 */
Chris Wilsonb4519512012-05-11 14:29:30 +01001316 for_each_ring(ring, dev_priv, i)
1317 wake_up_all(&ring->irq_queue);
Ben Gamari11ed50e2009-09-14 17:48:45 -04001318 }
1319
Eric Anholt9c9fe1f2009-08-03 16:09:16 -07001320 queue_work(dev_priv->wq, &dev_priv->error_work);
Jesse Barnes8a905232009-07-11 16:48:03 -04001321}
1322
Simon Farnsworth4e5359c2010-09-01 17:47:52 +01001323static void i915_pageflip_stall_check(struct drm_device *dev, int pipe)
1324{
1325 drm_i915_private_t *dev_priv = dev->dev_private;
1326 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
1327 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Chris Wilson05394f32010-11-08 19:18:58 +00001328 struct drm_i915_gem_object *obj;
Simon Farnsworth4e5359c2010-09-01 17:47:52 +01001329 struct intel_unpin_work *work;
1330 unsigned long flags;
1331 bool stall_detected;
1332
1333 /* Ignore early vblank irqs */
1334 if (intel_crtc == NULL)
1335 return;
1336
1337 spin_lock_irqsave(&dev->event_lock, flags);
1338 work = intel_crtc->unpin_work;
1339
1340 if (work == NULL || work->pending || !work->enable_stall_check) {
1341 /* Either the pending flip IRQ arrived, or we're too early. Don't check */
1342 spin_unlock_irqrestore(&dev->event_lock, flags);
1343 return;
1344 }
1345
1346 /* Potential stall - if we see that the flip has happened, assume a missed interrupt */
Chris Wilson05394f32010-11-08 19:18:58 +00001347 obj = work->pending_flip_obj;
Chris Wilsona6c45cf2010-09-17 00:32:17 +01001348 if (INTEL_INFO(dev)->gen >= 4) {
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001349 int dspsurf = DSPSURF(intel_crtc->plane);
Armin Reese446f2542012-03-30 16:20:16 -07001350 stall_detected = I915_HI_DISPBASE(I915_READ(dspsurf)) ==
1351 obj->gtt_offset;
Simon Farnsworth4e5359c2010-09-01 17:47:52 +01001352 } else {
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001353 int dspaddr = DSPADDR(intel_crtc->plane);
Chris Wilson05394f32010-11-08 19:18:58 +00001354 stall_detected = I915_READ(dspaddr) == (obj->gtt_offset +
Ville Syrjälä01f2c772011-12-20 00:06:49 +02001355 crtc->y * crtc->fb->pitches[0] +
Simon Farnsworth4e5359c2010-09-01 17:47:52 +01001356 crtc->x * crtc->fb->bits_per_pixel/8);
1357 }
1358
1359 spin_unlock_irqrestore(&dev->event_lock, flags);
1360
1361 if (stall_detected) {
1362 DRM_DEBUG_DRIVER("Pageflip stall detected\n");
1363 intel_prepare_page_flip(dev, intel_crtc->plane);
1364 }
1365}
1366
Keith Packard42f52ef2008-10-18 19:39:29 -07001367/* Called from drm generic code, passed 'crtc' which
1368 * we use as a pipe index
1369 */
Jesse Barnesf71d4af2011-06-28 13:00:41 -07001370static int i915_enable_vblank(struct drm_device *dev, int pipe)
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001371{
1372 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Keith Packarde9d21d72008-10-16 11:31:38 -07001373 unsigned long irqflags;
Jesse Barnes71e0ffa2009-01-08 10:42:15 -08001374
Chris Wilson5eddb702010-09-11 13:48:45 +01001375 if (!i915_pipe_enabled(dev, pipe))
Jesse Barnes71e0ffa2009-01-08 10:42:15 -08001376 return -EINVAL;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001377
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001378 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Jesse Barnesf796cf82011-04-07 13:58:17 -07001379 if (INTEL_INFO(dev)->gen >= 4)
Keith Packard7c463582008-11-04 02:03:27 -08001380 i915_enable_pipestat(dev_priv, pipe,
1381 PIPE_START_VBLANK_INTERRUPT_ENABLE);
Keith Packarde9d21d72008-10-16 11:31:38 -07001382 else
Keith Packard7c463582008-11-04 02:03:27 -08001383 i915_enable_pipestat(dev_priv, pipe,
1384 PIPE_VBLANK_INTERRUPT_ENABLE);
Chris Wilson8692d00e2011-02-05 10:08:21 +00001385
1386 /* maintain vblank delivery even in deep C-states */
1387 if (dev_priv->info->gen == 3)
Daniel Vetter6b26c862012-04-24 14:04:12 +02001388 I915_WRITE(INSTPM, _MASKED_BIT_DISABLE(INSTPM_AGPBUSY_DIS));
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001389 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
Chris Wilson8692d00e2011-02-05 10:08:21 +00001390
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001391 return 0;
1392}
1393
Jesse Barnesf71d4af2011-06-28 13:00:41 -07001394static int ironlake_enable_vblank(struct drm_device *dev, int pipe)
Jesse Barnesf796cf82011-04-07 13:58:17 -07001395{
1396 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
1397 unsigned long irqflags;
1398
1399 if (!i915_pipe_enabled(dev, pipe))
1400 return -EINVAL;
1401
1402 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
1403 ironlake_enable_display_irq(dev_priv, (pipe == 0) ?
Akshay Joshi0206e352011-08-16 15:34:10 -04001404 DE_PIPEA_VBLANK : DE_PIPEB_VBLANK);
Jesse Barnesf796cf82011-04-07 13:58:17 -07001405 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
1406
1407 return 0;
1408}
1409
Jesse Barnesf71d4af2011-06-28 13:00:41 -07001410static int ivybridge_enable_vblank(struct drm_device *dev, int pipe)
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07001411{
1412 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
1413 unsigned long irqflags;
1414
1415 if (!i915_pipe_enabled(dev, pipe))
1416 return -EINVAL;
1417
1418 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Chris Wilsonb615b572012-05-02 09:52:12 +01001419 ironlake_enable_display_irq(dev_priv,
1420 DE_PIPEA_VBLANK_IVB << (5 * pipe));
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07001421 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
1422
1423 return 0;
1424}
1425
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07001426static int valleyview_enable_vblank(struct drm_device *dev, int pipe)
1427{
1428 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
1429 unsigned long irqflags;
1430 u32 dpfl, imr;
1431
1432 if (!i915_pipe_enabled(dev, pipe))
1433 return -EINVAL;
1434
1435 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
1436 dpfl = I915_READ(VLV_DPFLIPSTAT);
1437 imr = I915_READ(VLV_IMR);
1438 if (pipe == 0) {
1439 dpfl |= PIPEA_VBLANK_INT_EN;
1440 imr &= ~I915_DISPLAY_PIPE_A_VBLANK_INTERRUPT;
1441 } else {
1442 dpfl |= PIPEA_VBLANK_INT_EN;
1443 imr &= ~I915_DISPLAY_PIPE_B_VBLANK_INTERRUPT;
1444 }
1445 I915_WRITE(VLV_DPFLIPSTAT, dpfl);
1446 I915_WRITE(VLV_IMR, imr);
1447 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
1448
1449 return 0;
1450}
1451
Keith Packard42f52ef2008-10-18 19:39:29 -07001452/* Called from drm generic code, passed 'crtc' which
1453 * we use as a pipe index
1454 */
Jesse Barnesf71d4af2011-06-28 13:00:41 -07001455static void i915_disable_vblank(struct drm_device *dev, int pipe)
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001456{
1457 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Keith Packarde9d21d72008-10-16 11:31:38 -07001458 unsigned long irqflags;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001459
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001460 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Chris Wilson8692d00e2011-02-05 10:08:21 +00001461 if (dev_priv->info->gen == 3)
Daniel Vetter6b26c862012-04-24 14:04:12 +02001462 I915_WRITE(INSTPM, _MASKED_BIT_ENABLE(INSTPM_AGPBUSY_DIS));
Chris Wilson8692d00e2011-02-05 10:08:21 +00001463
Jesse Barnesf796cf82011-04-07 13:58:17 -07001464 i915_disable_pipestat(dev_priv, pipe,
1465 PIPE_VBLANK_INTERRUPT_ENABLE |
1466 PIPE_START_VBLANK_INTERRUPT_ENABLE);
1467 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
1468}
1469
Jesse Barnesf71d4af2011-06-28 13:00:41 -07001470static void ironlake_disable_vblank(struct drm_device *dev, int pipe)
Jesse Barnesf796cf82011-04-07 13:58:17 -07001471{
1472 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
1473 unsigned long irqflags;
1474
1475 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
1476 ironlake_disable_display_irq(dev_priv, (pipe == 0) ?
Akshay Joshi0206e352011-08-16 15:34:10 -04001477 DE_PIPEA_VBLANK : DE_PIPEB_VBLANK);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001478 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001479}
1480
Jesse Barnesf71d4af2011-06-28 13:00:41 -07001481static void ivybridge_disable_vblank(struct drm_device *dev, int pipe)
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07001482{
1483 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
1484 unsigned long irqflags;
1485
1486 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Chris Wilsonb615b572012-05-02 09:52:12 +01001487 ironlake_disable_display_irq(dev_priv,
1488 DE_PIPEA_VBLANK_IVB << (pipe * 5));
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07001489 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
1490}
1491
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07001492static void valleyview_disable_vblank(struct drm_device *dev, int pipe)
1493{
1494 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
1495 unsigned long irqflags;
1496 u32 dpfl, imr;
1497
1498 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
1499 dpfl = I915_READ(VLV_DPFLIPSTAT);
1500 imr = I915_READ(VLV_IMR);
1501 if (pipe == 0) {
1502 dpfl &= ~PIPEA_VBLANK_INT_EN;
1503 imr |= I915_DISPLAY_PIPE_A_VBLANK_INTERRUPT;
1504 } else {
1505 dpfl &= ~PIPEB_VBLANK_INT_EN;
1506 imr |= I915_DISPLAY_PIPE_B_VBLANK_INTERRUPT;
1507 }
1508 I915_WRITE(VLV_IMR, imr);
1509 I915_WRITE(VLV_DPFLIPSTAT, dpfl);
1510 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
1511}
1512
Chris Wilson893eead2010-10-27 14:44:35 +01001513static u32
1514ring_last_seqno(struct intel_ring_buffer *ring)
Zou Nan hai852835f2010-05-21 09:08:56 +08001515{
Chris Wilson893eead2010-10-27 14:44:35 +01001516 return list_entry(ring->request_list.prev,
1517 struct drm_i915_gem_request, list)->seqno;
1518}
1519
1520static bool i915_hangcheck_ring_idle(struct intel_ring_buffer *ring, bool *err)
1521{
1522 if (list_empty(&ring->request_list) ||
1523 i915_seqno_passed(ring->get_seqno(ring), ring_last_seqno(ring))) {
1524 /* Issue a wake-up to catch stuck h/w. */
Ben Widawsky9574b3f2012-04-26 16:03:01 -07001525 if (waitqueue_active(&ring->irq_queue)) {
1526 DRM_ERROR("Hangcheck timer elapsed... %s idle\n",
1527 ring->name);
Chris Wilson893eead2010-10-27 14:44:35 +01001528 wake_up_all(&ring->irq_queue);
1529 *err = true;
1530 }
1531 return true;
1532 }
1533 return false;
Ben Gamarif65d9422009-09-14 17:48:44 -04001534}
1535
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001536static bool kick_ring(struct intel_ring_buffer *ring)
1537{
1538 struct drm_device *dev = ring->dev;
1539 struct drm_i915_private *dev_priv = dev->dev_private;
1540 u32 tmp = I915_READ_CTL(ring);
1541 if (tmp & RING_WAIT) {
1542 DRM_ERROR("Kicking stuck wait on %s\n",
1543 ring->name);
1544 I915_WRITE_CTL(ring, tmp);
1545 return true;
1546 }
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001547 return false;
1548}
1549
Chris Wilsond1e61e72012-04-10 17:00:41 +01001550static bool i915_hangcheck_hung(struct drm_device *dev)
1551{
1552 drm_i915_private_t *dev_priv = dev->dev_private;
1553
1554 if (dev_priv->hangcheck_count++ > 1) {
Chris Wilsonb4519512012-05-11 14:29:30 +01001555 bool hung = true;
1556
Chris Wilsond1e61e72012-04-10 17:00:41 +01001557 DRM_ERROR("Hangcheck timer elapsed... GPU hung\n");
1558 i915_handle_error(dev, true);
1559
1560 if (!IS_GEN2(dev)) {
Chris Wilsonb4519512012-05-11 14:29:30 +01001561 struct intel_ring_buffer *ring;
1562 int i;
1563
Chris Wilsond1e61e72012-04-10 17:00:41 +01001564 /* Is the chip hanging on a WAIT_FOR_EVENT?
1565 * If so we can simply poke the RB_WAIT bit
1566 * and break the hang. This should work on
1567 * all but the second generation chipsets.
1568 */
Chris Wilsonb4519512012-05-11 14:29:30 +01001569 for_each_ring(ring, dev_priv, i)
1570 hung &= !kick_ring(ring);
Chris Wilsond1e61e72012-04-10 17:00:41 +01001571 }
1572
Chris Wilsonb4519512012-05-11 14:29:30 +01001573 return hung;
Chris Wilsond1e61e72012-04-10 17:00:41 +01001574 }
1575
1576 return false;
1577}
1578
Ben Gamarif65d9422009-09-14 17:48:44 -04001579/**
1580 * This is called when the chip hasn't reported back with completed
1581 * batchbuffers in a long time. The first time this is called we simply record
1582 * ACTHD. If ACTHD hasn't changed by the time the hangcheck timer elapses
1583 * again, we assume the chip is wedged and try to fix it.
1584 */
1585void i915_hangcheck_elapsed(unsigned long data)
1586{
1587 struct drm_device *dev = (struct drm_device *)data;
1588 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsonb4519512012-05-11 14:29:30 +01001589 uint32_t acthd[I915_NUM_RINGS], instdone, instdone1;
1590 struct intel_ring_buffer *ring;
1591 bool err = false, idle;
1592 int i;
Chris Wilson893eead2010-10-27 14:44:35 +01001593
Ben Widawsky3e0dc6b2011-06-29 10:26:42 -07001594 if (!i915_enable_hangcheck)
1595 return;
1596
Chris Wilsonb4519512012-05-11 14:29:30 +01001597 memset(acthd, 0, sizeof(acthd));
1598 idle = true;
1599 for_each_ring(ring, dev_priv, i) {
1600 idle &= i915_hangcheck_ring_idle(ring, &err);
1601 acthd[i] = intel_ring_get_active_head(ring);
1602 }
1603
Chris Wilson893eead2010-10-27 14:44:35 +01001604 /* If all work is done then ACTHD clearly hasn't advanced. */
Chris Wilsonb4519512012-05-11 14:29:30 +01001605 if (idle) {
Chris Wilsond1e61e72012-04-10 17:00:41 +01001606 if (err) {
1607 if (i915_hangcheck_hung(dev))
1608 return;
1609
Chris Wilson893eead2010-10-27 14:44:35 +01001610 goto repeat;
Chris Wilsond1e61e72012-04-10 17:00:41 +01001611 }
1612
1613 dev_priv->hangcheck_count = 0;
Chris Wilson893eead2010-10-27 14:44:35 +01001614 return;
1615 }
Eric Anholtb9201c12010-01-08 14:25:16 -08001616
Chris Wilsona6c45cf2010-09-17 00:32:17 +01001617 if (INTEL_INFO(dev)->gen < 4) {
Chris Wilsoncbb465e2010-06-06 12:16:24 +01001618 instdone = I915_READ(INSTDONE);
1619 instdone1 = 0;
1620 } else {
Chris Wilsoncbb465e2010-06-06 12:16:24 +01001621 instdone = I915_READ(INSTDONE_I965);
1622 instdone1 = I915_READ(INSTDONE1);
1623 }
Ben Gamarif65d9422009-09-14 17:48:44 -04001624
Chris Wilsonb4519512012-05-11 14:29:30 +01001625 if (memcmp(dev_priv->last_acthd, acthd, sizeof(acthd)) == 0 &&
Chris Wilsoncbb465e2010-06-06 12:16:24 +01001626 dev_priv->last_instdone == instdone &&
1627 dev_priv->last_instdone1 == instdone1) {
Chris Wilsond1e61e72012-04-10 17:00:41 +01001628 if (i915_hangcheck_hung(dev))
Chris Wilsoncbb465e2010-06-06 12:16:24 +01001629 return;
Chris Wilsoncbb465e2010-06-06 12:16:24 +01001630 } else {
1631 dev_priv->hangcheck_count = 0;
1632
Chris Wilsonb4519512012-05-11 14:29:30 +01001633 memcpy(dev_priv->last_acthd, acthd, sizeof(acthd));
Chris Wilsoncbb465e2010-06-06 12:16:24 +01001634 dev_priv->last_instdone = instdone;
1635 dev_priv->last_instdone1 = instdone1;
1636 }
Ben Gamarif65d9422009-09-14 17:48:44 -04001637
Chris Wilson893eead2010-10-27 14:44:35 +01001638repeat:
Ben Gamarif65d9422009-09-14 17:48:44 -04001639 /* Reset timer case chip hangs without another request being added */
Chris Wilsonb3b079d2010-09-13 23:44:34 +01001640 mod_timer(&dev_priv->hangcheck_timer,
1641 jiffies + msecs_to_jiffies(DRM_I915_HANGCHECK_PERIOD));
Ben Gamarif65d9422009-09-14 17:48:44 -04001642}
1643
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644/* drm_dma.h hooks
1645*/
Jesse Barnesf71d4af2011-06-28 13:00:41 -07001646static void ironlake_irq_preinstall(struct drm_device *dev)
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001647{
1648 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
1649
Jesse Barnes46979952011-04-07 13:53:55 -07001650 atomic_set(&dev_priv->irq_received, 0);
1651
Jesse Barnes46979952011-04-07 13:53:55 -07001652
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001653 I915_WRITE(HWSTAM, 0xeffe);
Daniel Vetterbdfcdb62012-01-05 01:05:26 +01001654
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001655 /* XXX hotplug from PCH */
1656
1657 I915_WRITE(DEIMR, 0xffffffff);
1658 I915_WRITE(DEIER, 0x0);
Chris Wilson3143a2b2010-11-16 15:55:10 +00001659 POSTING_READ(DEIER);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001660
1661 /* and GT */
1662 I915_WRITE(GTIMR, 0xffffffff);
1663 I915_WRITE(GTIER, 0x0);
Chris Wilson3143a2b2010-11-16 15:55:10 +00001664 POSTING_READ(GTIER);
Zhenyu Wangc6501562009-11-03 18:57:21 +00001665
1666 /* south display irq */
1667 I915_WRITE(SDEIMR, 0xffffffff);
1668 I915_WRITE(SDEIER, 0x0);
Chris Wilson3143a2b2010-11-16 15:55:10 +00001669 POSTING_READ(SDEIER);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001670}
1671
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07001672static void valleyview_irq_preinstall(struct drm_device *dev)
1673{
1674 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
1675 int pipe;
1676
1677 atomic_set(&dev_priv->irq_received, 0);
1678
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07001679 /* VLV magic */
1680 I915_WRITE(VLV_IMR, 0);
1681 I915_WRITE(RING_IMR(RENDER_RING_BASE), 0);
1682 I915_WRITE(RING_IMR(GEN6_BSD_RING_BASE), 0);
1683 I915_WRITE(RING_IMR(BLT_RING_BASE), 0);
1684
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07001685 /* and GT */
1686 I915_WRITE(GTIIR, I915_READ(GTIIR));
1687 I915_WRITE(GTIIR, I915_READ(GTIIR));
1688 I915_WRITE(GTIMR, 0xffffffff);
1689 I915_WRITE(GTIER, 0x0);
1690 POSTING_READ(GTIER);
1691
1692 I915_WRITE(DPINVGTT, 0xff);
1693
1694 I915_WRITE(PORT_HOTPLUG_EN, 0);
1695 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
1696 for_each_pipe(pipe)
1697 I915_WRITE(PIPESTAT(pipe), 0xffff);
1698 I915_WRITE(VLV_IIR, 0xffffffff);
1699 I915_WRITE(VLV_IMR, 0xffffffff);
1700 I915_WRITE(VLV_IER, 0x0);
1701 POSTING_READ(VLV_IER);
1702}
1703
Keith Packard7fe0b972011-09-19 13:31:02 -07001704/*
1705 * Enable digital hotplug on the PCH, and configure the DP short pulse
1706 * duration to 2ms (which is the minimum in the Display Port spec)
1707 *
1708 * This register is the same on all known PCH chips.
1709 */
1710
1711static void ironlake_enable_pch_hotplug(struct drm_device *dev)
1712{
1713 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
1714 u32 hotplug;
1715
1716 hotplug = I915_READ(PCH_PORT_HOTPLUG);
1717 hotplug &= ~(PORTD_PULSE_DURATION_MASK|PORTC_PULSE_DURATION_MASK|PORTB_PULSE_DURATION_MASK);
1718 hotplug |= PORTD_HOTPLUG_ENABLE | PORTD_PULSE_DURATION_2ms;
1719 hotplug |= PORTC_HOTPLUG_ENABLE | PORTC_PULSE_DURATION_2ms;
1720 hotplug |= PORTB_HOTPLUG_ENABLE | PORTB_PULSE_DURATION_2ms;
1721 I915_WRITE(PCH_PORT_HOTPLUG, hotplug);
1722}
1723
Jesse Barnesf71d4af2011-06-28 13:00:41 -07001724static int ironlake_irq_postinstall(struct drm_device *dev)
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001725{
1726 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
1727 /* enable kind of interrupts always enabled */
Jesse Barnes013d5aa2010-01-29 11:18:31 -08001728 u32 display_mask = DE_MASTER_IRQ_CONTROL | DE_GSE | DE_PCH_EVENT |
1729 DE_PLANEA_FLIP_DONE | DE_PLANEB_FLIP_DONE;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001730 u32 render_irqs;
Yuanhan Liu2d7b8362010-10-08 10:21:06 +01001731 u32 hotplug_mask;
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001732
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001733 dev_priv->irq_mask = ~display_mask;
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001734
1735 /* should always can generate irq */
1736 I915_WRITE(DEIIR, I915_READ(DEIIR));
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001737 I915_WRITE(DEIMR, dev_priv->irq_mask);
1738 I915_WRITE(DEIER, display_mask | DE_PIPEA_VBLANK | DE_PIPEB_VBLANK);
Chris Wilson3143a2b2010-11-16 15:55:10 +00001739 POSTING_READ(DEIER);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001740
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001741 dev_priv->gt_irq_mask = ~0;
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001742
1743 I915_WRITE(GTIIR, I915_READ(GTIIR));
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001744 I915_WRITE(GTIMR, dev_priv->gt_irq_mask);
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001745
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001746 if (IS_GEN6(dev))
1747 render_irqs =
1748 GT_USER_INTERRUPT |
Ben Widawskye2a1e2f2012-03-29 19:11:26 -07001749 GEN6_BSD_USER_INTERRUPT |
1750 GEN6_BLITTER_USER_INTERRUPT;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001751 else
1752 render_irqs =
Chris Wilson88f23b82010-12-05 15:08:31 +00001753 GT_USER_INTERRUPT |
Chris Wilsonc6df5412010-12-15 09:56:50 +00001754 GT_PIPE_NOTIFY |
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001755 GT_BSD_USER_INTERRUPT;
1756 I915_WRITE(GTIER, render_irqs);
Chris Wilson3143a2b2010-11-16 15:55:10 +00001757 POSTING_READ(GTIER);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001758
Yuanhan Liu2d7b8362010-10-08 10:21:06 +01001759 if (HAS_PCH_CPT(dev)) {
Chris Wilson9035a972011-02-16 09:36:05 +00001760 hotplug_mask = (SDE_CRT_HOTPLUG_CPT |
1761 SDE_PORTB_HOTPLUG_CPT |
1762 SDE_PORTC_HOTPLUG_CPT |
1763 SDE_PORTD_HOTPLUG_CPT);
Yuanhan Liu2d7b8362010-10-08 10:21:06 +01001764 } else {
Chris Wilson9035a972011-02-16 09:36:05 +00001765 hotplug_mask = (SDE_CRT_HOTPLUG |
1766 SDE_PORTB_HOTPLUG |
1767 SDE_PORTC_HOTPLUG |
1768 SDE_PORTD_HOTPLUG |
1769 SDE_AUX_MASK);
Yuanhan Liu2d7b8362010-10-08 10:21:06 +01001770 }
1771
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001772 dev_priv->pch_irq_mask = ~hotplug_mask;
Zhenyu Wangc6501562009-11-03 18:57:21 +00001773
1774 I915_WRITE(SDEIIR, I915_READ(SDEIIR));
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001775 I915_WRITE(SDEIMR, dev_priv->pch_irq_mask);
1776 I915_WRITE(SDEIER, hotplug_mask);
Chris Wilson3143a2b2010-11-16 15:55:10 +00001777 POSTING_READ(SDEIER);
Zhenyu Wangc6501562009-11-03 18:57:21 +00001778
Keith Packard7fe0b972011-09-19 13:31:02 -07001779 ironlake_enable_pch_hotplug(dev);
1780
Jesse Barnesf97108d2010-01-29 11:27:07 -08001781 if (IS_IRONLAKE_M(dev)) {
1782 /* Clear & enable PCU event interrupts */
1783 I915_WRITE(DEIIR, DE_PCU_EVENT);
1784 I915_WRITE(DEIER, I915_READ(DEIER) | DE_PCU_EVENT);
1785 ironlake_enable_display_irq(dev_priv, DE_PCU_EVENT);
1786 }
1787
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001788 return 0;
1789}
1790
Jesse Barnesf71d4af2011-06-28 13:00:41 -07001791static int ivybridge_irq_postinstall(struct drm_device *dev)
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07001792{
1793 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
1794 /* enable kind of interrupts always enabled */
Chris Wilsonb615b572012-05-02 09:52:12 +01001795 u32 display_mask =
1796 DE_MASTER_IRQ_CONTROL | DE_GSE_IVB | DE_PCH_EVENT_IVB |
1797 DE_PLANEC_FLIP_DONE_IVB |
1798 DE_PLANEB_FLIP_DONE_IVB |
1799 DE_PLANEA_FLIP_DONE_IVB;
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07001800 u32 render_irqs;
1801 u32 hotplug_mask;
1802
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07001803 dev_priv->irq_mask = ~display_mask;
1804
1805 /* should always can generate irq */
1806 I915_WRITE(DEIIR, I915_READ(DEIIR));
1807 I915_WRITE(DEIMR, dev_priv->irq_mask);
Chris Wilsonb615b572012-05-02 09:52:12 +01001808 I915_WRITE(DEIER,
1809 display_mask |
1810 DE_PIPEC_VBLANK_IVB |
1811 DE_PIPEB_VBLANK_IVB |
1812 DE_PIPEA_VBLANK_IVB);
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07001813 POSTING_READ(DEIER);
1814
1815 dev_priv->gt_irq_mask = ~0;
1816
1817 I915_WRITE(GTIIR, I915_READ(GTIIR));
1818 I915_WRITE(GTIMR, dev_priv->gt_irq_mask);
1819
Ben Widawskye2a1e2f2012-03-29 19:11:26 -07001820 render_irqs = GT_USER_INTERRUPT | GEN6_BSD_USER_INTERRUPT |
1821 GEN6_BLITTER_USER_INTERRUPT;
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07001822 I915_WRITE(GTIER, render_irqs);
1823 POSTING_READ(GTIER);
1824
1825 hotplug_mask = (SDE_CRT_HOTPLUG_CPT |
1826 SDE_PORTB_HOTPLUG_CPT |
1827 SDE_PORTC_HOTPLUG_CPT |
1828 SDE_PORTD_HOTPLUG_CPT);
1829 dev_priv->pch_irq_mask = ~hotplug_mask;
1830
1831 I915_WRITE(SDEIIR, I915_READ(SDEIIR));
1832 I915_WRITE(SDEIMR, dev_priv->pch_irq_mask);
1833 I915_WRITE(SDEIER, hotplug_mask);
1834 POSTING_READ(SDEIER);
1835
Keith Packard7fe0b972011-09-19 13:31:02 -07001836 ironlake_enable_pch_hotplug(dev);
1837
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07001838 return 0;
1839}
1840
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07001841static int valleyview_irq_postinstall(struct drm_device *dev)
1842{
1843 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
1844 u32 render_irqs;
1845 u32 enable_mask;
1846 u32 hotplug_en = I915_READ(PORT_HOTPLUG_EN);
1847 u16 msid;
1848
1849 enable_mask = I915_DISPLAY_PORT_INTERRUPT;
1850 enable_mask |= I915_DISPLAY_PIPE_A_VBLANK_INTERRUPT |
1851 I915_DISPLAY_PIPE_B_VBLANK_INTERRUPT;
1852
1853 dev_priv->irq_mask = ~enable_mask;
1854
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07001855 dev_priv->pipestat[0] = 0;
1856 dev_priv->pipestat[1] = 0;
1857
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07001858 /* Hack for broken MSIs on VLV */
1859 pci_write_config_dword(dev_priv->dev->pdev, 0x94, 0xfee00000);
1860 pci_read_config_word(dev->pdev, 0x98, &msid);
1861 msid &= 0xff; /* mask out delivery bits */
1862 msid |= (1<<14);
1863 pci_write_config_word(dev_priv->dev->pdev, 0x98, msid);
1864
1865 I915_WRITE(VLV_IMR, dev_priv->irq_mask);
1866 I915_WRITE(VLV_IER, enable_mask);
1867 I915_WRITE(VLV_IIR, 0xffffffff);
1868 I915_WRITE(PIPESTAT(0), 0xffff);
1869 I915_WRITE(PIPESTAT(1), 0xffff);
1870 POSTING_READ(VLV_IER);
1871
1872 I915_WRITE(VLV_IIR, 0xffffffff);
1873 I915_WRITE(VLV_IIR, 0xffffffff);
1874
1875 render_irqs = GT_GEN6_BLT_FLUSHDW_NOTIFY_INTERRUPT |
1876 GT_GEN6_BLT_CS_ERROR_INTERRUPT |
Ben Widawskye2a1e2f2012-03-29 19:11:26 -07001877 GT_GEN6_BLT_USER_INTERRUPT |
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07001878 GT_GEN6_BSD_USER_INTERRUPT |
1879 GT_GEN6_BSD_CS_ERROR_INTERRUPT |
1880 GT_GEN7_L3_PARITY_ERROR_INTERRUPT |
1881 GT_PIPE_NOTIFY |
1882 GT_RENDER_CS_ERROR_INTERRUPT |
1883 GT_SYNC_STATUS |
1884 GT_USER_INTERRUPT;
1885
1886 dev_priv->gt_irq_mask = ~render_irqs;
1887
1888 I915_WRITE(GTIIR, I915_READ(GTIIR));
1889 I915_WRITE(GTIIR, I915_READ(GTIIR));
1890 I915_WRITE(GTIMR, 0);
1891 I915_WRITE(GTIER, render_irqs);
1892 POSTING_READ(GTIER);
1893
1894 /* ack & enable invalid PTE error interrupts */
1895#if 0 /* FIXME: add support to irq handler for checking these bits */
1896 I915_WRITE(DPINVGTT, DPINVGTT_STATUS_MASK);
1897 I915_WRITE(DPINVGTT, DPINVGTT_EN_MASK);
1898#endif
1899
1900 I915_WRITE(VLV_MASTER_IER, MASTER_INTERRUPT_ENABLE);
1901#if 0 /* FIXME: check register definitions; some have moved */
1902 /* Note HDMI and DP share bits */
1903 if (dev_priv->hotplug_supported_mask & HDMIB_HOTPLUG_INT_STATUS)
1904 hotplug_en |= HDMIB_HOTPLUG_INT_EN;
1905 if (dev_priv->hotplug_supported_mask & HDMIC_HOTPLUG_INT_STATUS)
1906 hotplug_en |= HDMIC_HOTPLUG_INT_EN;
1907 if (dev_priv->hotplug_supported_mask & HDMID_HOTPLUG_INT_STATUS)
1908 hotplug_en |= HDMID_HOTPLUG_INT_EN;
1909 if (dev_priv->hotplug_supported_mask & SDVOC_HOTPLUG_INT_STATUS)
1910 hotplug_en |= SDVOC_HOTPLUG_INT_EN;
1911 if (dev_priv->hotplug_supported_mask & SDVOB_HOTPLUG_INT_STATUS)
1912 hotplug_en |= SDVOB_HOTPLUG_INT_EN;
1913 if (dev_priv->hotplug_supported_mask & CRT_HOTPLUG_INT_STATUS) {
1914 hotplug_en |= CRT_HOTPLUG_INT_EN;
1915 hotplug_en |= CRT_HOTPLUG_VOLTAGE_COMPARE_50;
1916 }
1917#endif
1918
1919 I915_WRITE(PORT_HOTPLUG_EN, hotplug_en);
1920
1921 return 0;
1922}
1923
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07001924static void valleyview_irq_uninstall(struct drm_device *dev)
1925{
1926 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
1927 int pipe;
1928
1929 if (!dev_priv)
1930 return;
1931
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07001932 for_each_pipe(pipe)
1933 I915_WRITE(PIPESTAT(pipe), 0xffff);
1934
1935 I915_WRITE(HWSTAM, 0xffffffff);
1936 I915_WRITE(PORT_HOTPLUG_EN, 0);
1937 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
1938 for_each_pipe(pipe)
1939 I915_WRITE(PIPESTAT(pipe), 0xffff);
1940 I915_WRITE(VLV_IIR, 0xffffffff);
1941 I915_WRITE(VLV_IMR, 0xffffffff);
1942 I915_WRITE(VLV_IER, 0x0);
1943 POSTING_READ(VLV_IER);
1944}
1945
Jesse Barnesf71d4af2011-06-28 13:00:41 -07001946static void ironlake_irq_uninstall(struct drm_device *dev)
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001947{
1948 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Jesse Barnes46979952011-04-07 13:53:55 -07001949
1950 if (!dev_priv)
1951 return;
1952
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001953 I915_WRITE(HWSTAM, 0xffffffff);
1954
1955 I915_WRITE(DEIMR, 0xffffffff);
1956 I915_WRITE(DEIER, 0x0);
1957 I915_WRITE(DEIIR, I915_READ(DEIIR));
1958
1959 I915_WRITE(GTIMR, 0xffffffff);
1960 I915_WRITE(GTIER, 0x0);
1961 I915_WRITE(GTIIR, I915_READ(GTIIR));
Keith Packard192aac1f2011-09-20 10:12:44 -07001962
1963 I915_WRITE(SDEIMR, 0xffffffff);
1964 I915_WRITE(SDEIER, 0x0);
1965 I915_WRITE(SDEIIR, I915_READ(SDEIIR));
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001966}
1967
Chris Wilsonc2798b12012-04-22 21:13:57 +01001968static void i8xx_irq_preinstall(struct drm_device * dev)
1969{
1970 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
1971 int pipe;
1972
1973 atomic_set(&dev_priv->irq_received, 0);
1974
1975 for_each_pipe(pipe)
1976 I915_WRITE(PIPESTAT(pipe), 0);
1977 I915_WRITE16(IMR, 0xffff);
1978 I915_WRITE16(IER, 0x0);
1979 POSTING_READ16(IER);
1980}
1981
1982static int i8xx_irq_postinstall(struct drm_device *dev)
1983{
1984 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
1985
Chris Wilsonc2798b12012-04-22 21:13:57 +01001986 dev_priv->pipestat[0] = 0;
1987 dev_priv->pipestat[1] = 0;
1988
1989 I915_WRITE16(EMR,
1990 ~(I915_ERROR_PAGE_TABLE | I915_ERROR_MEMORY_REFRESH));
1991
1992 /* Unmask the interrupts that we always want on. */
1993 dev_priv->irq_mask =
1994 ~(I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
1995 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
1996 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
1997 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT |
1998 I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT);
1999 I915_WRITE16(IMR, dev_priv->irq_mask);
2000
2001 I915_WRITE16(IER,
2002 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
2003 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
2004 I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT |
2005 I915_USER_INTERRUPT);
2006 POSTING_READ16(IER);
2007
2008 return 0;
2009}
2010
2011static irqreturn_t i8xx_irq_handler(DRM_IRQ_ARGS)
2012{
2013 struct drm_device *dev = (struct drm_device *) arg;
2014 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Chris Wilsonc2798b12012-04-22 21:13:57 +01002015 u16 iir, new_iir;
2016 u32 pipe_stats[2];
2017 unsigned long irqflags;
2018 int irq_received;
2019 int pipe;
2020 u16 flip_mask =
2021 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
2022 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT;
2023
2024 atomic_inc(&dev_priv->irq_received);
2025
2026 iir = I915_READ16(IIR);
2027 if (iir == 0)
2028 return IRQ_NONE;
2029
2030 while (iir & ~flip_mask) {
2031 /* Can't rely on pipestat interrupt bit in iir as it might
2032 * have been cleared after the pipestat interrupt was received.
2033 * It doesn't set the bit in iir again, but it still produces
2034 * interrupts (for non-MSI).
2035 */
2036 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
2037 if (iir & I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT)
2038 i915_handle_error(dev, false);
2039
2040 for_each_pipe(pipe) {
2041 int reg = PIPESTAT(pipe);
2042 pipe_stats[pipe] = I915_READ(reg);
2043
2044 /*
2045 * Clear the PIPE*STAT regs before the IIR
2046 */
2047 if (pipe_stats[pipe] & 0x8000ffff) {
2048 if (pipe_stats[pipe] & PIPE_FIFO_UNDERRUN_STATUS)
2049 DRM_DEBUG_DRIVER("pipe %c underrun\n",
2050 pipe_name(pipe));
2051 I915_WRITE(reg, pipe_stats[pipe]);
2052 irq_received = 1;
2053 }
2054 }
2055 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2056
2057 I915_WRITE16(IIR, iir & ~flip_mask);
2058 new_iir = I915_READ16(IIR); /* Flush posted writes */
2059
Daniel Vetterd05c6172012-04-26 23:28:09 +02002060 i915_update_dri1_breadcrumb(dev);
Chris Wilsonc2798b12012-04-22 21:13:57 +01002061
2062 if (iir & I915_USER_INTERRUPT)
2063 notify_ring(dev, &dev_priv->ring[RCS]);
2064
2065 if (pipe_stats[0] & PIPE_VBLANK_INTERRUPT_STATUS &&
2066 drm_handle_vblank(dev, 0)) {
2067 if (iir & I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT) {
2068 intel_prepare_page_flip(dev, 0);
2069 intel_finish_page_flip(dev, 0);
2070 flip_mask &= ~I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT;
2071 }
2072 }
2073
2074 if (pipe_stats[1] & PIPE_VBLANK_INTERRUPT_STATUS &&
2075 drm_handle_vblank(dev, 1)) {
2076 if (iir & I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT) {
2077 intel_prepare_page_flip(dev, 1);
2078 intel_finish_page_flip(dev, 1);
2079 flip_mask &= ~I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT;
2080 }
2081 }
2082
2083 iir = new_iir;
2084 }
2085
2086 return IRQ_HANDLED;
2087}
2088
2089static void i8xx_irq_uninstall(struct drm_device * dev)
2090{
2091 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2092 int pipe;
2093
Chris Wilsonc2798b12012-04-22 21:13:57 +01002094 for_each_pipe(pipe) {
2095 /* Clear enable bits; then clear status bits */
2096 I915_WRITE(PIPESTAT(pipe), 0);
2097 I915_WRITE(PIPESTAT(pipe), I915_READ(PIPESTAT(pipe)));
2098 }
2099 I915_WRITE16(IMR, 0xffff);
2100 I915_WRITE16(IER, 0x0);
2101 I915_WRITE16(IIR, I915_READ16(IIR));
2102}
2103
Chris Wilsona266c7d2012-04-24 22:59:44 +01002104static void i915_irq_preinstall(struct drm_device * dev)
2105{
2106 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2107 int pipe;
2108
2109 atomic_set(&dev_priv->irq_received, 0);
2110
2111 if (I915_HAS_HOTPLUG(dev)) {
2112 I915_WRITE(PORT_HOTPLUG_EN, 0);
2113 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
2114 }
2115
Chris Wilson00d98eb2012-04-24 22:59:48 +01002116 I915_WRITE16(HWSTAM, 0xeffe);
Chris Wilsona266c7d2012-04-24 22:59:44 +01002117 for_each_pipe(pipe)
2118 I915_WRITE(PIPESTAT(pipe), 0);
2119 I915_WRITE(IMR, 0xffffffff);
2120 I915_WRITE(IER, 0x0);
2121 POSTING_READ(IER);
2122}
2123
2124static int i915_irq_postinstall(struct drm_device *dev)
2125{
2126 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Chris Wilson38bde182012-04-24 22:59:50 +01002127 u32 enable_mask;
Chris Wilsona266c7d2012-04-24 22:59:44 +01002128
Chris Wilsona266c7d2012-04-24 22:59:44 +01002129 dev_priv->pipestat[0] = 0;
2130 dev_priv->pipestat[1] = 0;
2131
Chris Wilson38bde182012-04-24 22:59:50 +01002132 I915_WRITE(EMR, ~(I915_ERROR_PAGE_TABLE | I915_ERROR_MEMORY_REFRESH));
2133
2134 /* Unmask the interrupts that we always want on. */
2135 dev_priv->irq_mask =
2136 ~(I915_ASLE_INTERRUPT |
2137 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
2138 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
2139 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
2140 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT |
2141 I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT);
2142
2143 enable_mask =
2144 I915_ASLE_INTERRUPT |
2145 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
2146 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
2147 I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT |
2148 I915_USER_INTERRUPT;
2149
Chris Wilsona266c7d2012-04-24 22:59:44 +01002150 if (I915_HAS_HOTPLUG(dev)) {
2151 /* Enable in IER... */
2152 enable_mask |= I915_DISPLAY_PORT_INTERRUPT;
2153 /* and unmask in IMR */
2154 dev_priv->irq_mask &= ~I915_DISPLAY_PORT_INTERRUPT;
2155 }
2156
Chris Wilsona266c7d2012-04-24 22:59:44 +01002157 I915_WRITE(IMR, dev_priv->irq_mask);
2158 I915_WRITE(IER, enable_mask);
2159 POSTING_READ(IER);
2160
2161 if (I915_HAS_HOTPLUG(dev)) {
2162 u32 hotplug_en = I915_READ(PORT_HOTPLUG_EN);
2163
Chris Wilsona266c7d2012-04-24 22:59:44 +01002164 if (dev_priv->hotplug_supported_mask & HDMIB_HOTPLUG_INT_STATUS)
2165 hotplug_en |= HDMIB_HOTPLUG_INT_EN;
2166 if (dev_priv->hotplug_supported_mask & HDMIC_HOTPLUG_INT_STATUS)
2167 hotplug_en |= HDMIC_HOTPLUG_INT_EN;
2168 if (dev_priv->hotplug_supported_mask & HDMID_HOTPLUG_INT_STATUS)
2169 hotplug_en |= HDMID_HOTPLUG_INT_EN;
2170 if (dev_priv->hotplug_supported_mask & SDVOC_HOTPLUG_INT_STATUS)
2171 hotplug_en |= SDVOC_HOTPLUG_INT_EN;
2172 if (dev_priv->hotplug_supported_mask & SDVOB_HOTPLUG_INT_STATUS)
2173 hotplug_en |= SDVOB_HOTPLUG_INT_EN;
2174 if (dev_priv->hotplug_supported_mask & CRT_HOTPLUG_INT_STATUS) {
2175 hotplug_en |= CRT_HOTPLUG_INT_EN;
Chris Wilsona266c7d2012-04-24 22:59:44 +01002176 hotplug_en |= CRT_HOTPLUG_VOLTAGE_COMPARE_50;
2177 }
2178
2179 /* Ignore TV since it's buggy */
2180
2181 I915_WRITE(PORT_HOTPLUG_EN, hotplug_en);
2182 }
2183
2184 intel_opregion_enable_asle(dev);
2185
2186 return 0;
2187}
2188
2189static irqreturn_t i915_irq_handler(DRM_IRQ_ARGS)
2190{
2191 struct drm_device *dev = (struct drm_device *) arg;
2192 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Chris Wilson8291ee92012-04-24 22:59:47 +01002193 u32 iir, new_iir, pipe_stats[I915_MAX_PIPES];
Chris Wilsona266c7d2012-04-24 22:59:44 +01002194 unsigned long irqflags;
Chris Wilson38bde182012-04-24 22:59:50 +01002195 u32 flip_mask =
2196 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
2197 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT;
2198 u32 flip[2] = {
2199 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT,
2200 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT
2201 };
2202 int pipe, ret = IRQ_NONE;
Chris Wilsona266c7d2012-04-24 22:59:44 +01002203
2204 atomic_inc(&dev_priv->irq_received);
2205
2206 iir = I915_READ(IIR);
Chris Wilson38bde182012-04-24 22:59:50 +01002207 do {
2208 bool irq_received = (iir & ~flip_mask) != 0;
Chris Wilson8291ee92012-04-24 22:59:47 +01002209 bool blc_event = false;
Chris Wilsona266c7d2012-04-24 22:59:44 +01002210
2211 /* Can't rely on pipestat interrupt bit in iir as it might
2212 * have been cleared after the pipestat interrupt was received.
2213 * It doesn't set the bit in iir again, but it still produces
2214 * interrupts (for non-MSI).
2215 */
2216 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
2217 if (iir & I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT)
2218 i915_handle_error(dev, false);
2219
2220 for_each_pipe(pipe) {
2221 int reg = PIPESTAT(pipe);
2222 pipe_stats[pipe] = I915_READ(reg);
2223
Chris Wilson38bde182012-04-24 22:59:50 +01002224 /* Clear the PIPE*STAT regs before the IIR */
Chris Wilsona266c7d2012-04-24 22:59:44 +01002225 if (pipe_stats[pipe] & 0x8000ffff) {
2226 if (pipe_stats[pipe] & PIPE_FIFO_UNDERRUN_STATUS)
2227 DRM_DEBUG_DRIVER("pipe %c underrun\n",
2228 pipe_name(pipe));
2229 I915_WRITE(reg, pipe_stats[pipe]);
Chris Wilson38bde182012-04-24 22:59:50 +01002230 irq_received = true;
Chris Wilsona266c7d2012-04-24 22:59:44 +01002231 }
2232 }
2233 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2234
2235 if (!irq_received)
2236 break;
2237
Chris Wilsona266c7d2012-04-24 22:59:44 +01002238 /* Consume port. Then clear IIR or we'll miss events */
2239 if ((I915_HAS_HOTPLUG(dev)) &&
2240 (iir & I915_DISPLAY_PORT_INTERRUPT)) {
2241 u32 hotplug_status = I915_READ(PORT_HOTPLUG_STAT);
2242
2243 DRM_DEBUG_DRIVER("hotplug event received, stat 0x%08x\n",
2244 hotplug_status);
2245 if (hotplug_status & dev_priv->hotplug_supported_mask)
2246 queue_work(dev_priv->wq,
2247 &dev_priv->hotplug_work);
2248
2249 I915_WRITE(PORT_HOTPLUG_STAT, hotplug_status);
Chris Wilson38bde182012-04-24 22:59:50 +01002250 POSTING_READ(PORT_HOTPLUG_STAT);
Chris Wilsona266c7d2012-04-24 22:59:44 +01002251 }
2252
Chris Wilson38bde182012-04-24 22:59:50 +01002253 I915_WRITE(IIR, iir & ~flip_mask);
Chris Wilsona266c7d2012-04-24 22:59:44 +01002254 new_iir = I915_READ(IIR); /* Flush posted writes */
2255
Chris Wilsona266c7d2012-04-24 22:59:44 +01002256 if (iir & I915_USER_INTERRUPT)
2257 notify_ring(dev, &dev_priv->ring[RCS]);
Chris Wilsona266c7d2012-04-24 22:59:44 +01002258
Chris Wilsona266c7d2012-04-24 22:59:44 +01002259 for_each_pipe(pipe) {
Chris Wilson38bde182012-04-24 22:59:50 +01002260 int plane = pipe;
2261 if (IS_MOBILE(dev))
2262 plane = !plane;
Chris Wilson8291ee92012-04-24 22:59:47 +01002263 if (pipe_stats[pipe] & PIPE_VBLANK_INTERRUPT_STATUS &&
Chris Wilsona266c7d2012-04-24 22:59:44 +01002264 drm_handle_vblank(dev, pipe)) {
Chris Wilson38bde182012-04-24 22:59:50 +01002265 if (iir & flip[plane]) {
2266 intel_prepare_page_flip(dev, plane);
2267 intel_finish_page_flip(dev, pipe);
2268 flip_mask &= ~flip[plane];
2269 }
Chris Wilsona266c7d2012-04-24 22:59:44 +01002270 }
2271
2272 if (pipe_stats[pipe] & PIPE_LEGACY_BLC_EVENT_STATUS)
2273 blc_event = true;
2274 }
2275
Chris Wilsona266c7d2012-04-24 22:59:44 +01002276 if (blc_event || (iir & I915_ASLE_INTERRUPT))
2277 intel_opregion_asle_intr(dev);
2278
2279 /* With MSI, interrupts are only generated when iir
2280 * transitions from zero to nonzero. If another bit got
2281 * set while we were handling the existing iir bits, then
2282 * we would never get another interrupt.
2283 *
2284 * This is fine on non-MSI as well, as if we hit this path
2285 * we avoid exiting the interrupt handler only to generate
2286 * another one.
2287 *
2288 * Note that for MSI this could cause a stray interrupt report
2289 * if an interrupt landed in the time between writing IIR and
2290 * the posting read. This should be rare enough to never
2291 * trigger the 99% of 100,000 interrupts test for disabling
2292 * stray interrupts.
2293 */
Chris Wilson38bde182012-04-24 22:59:50 +01002294 ret = IRQ_HANDLED;
Chris Wilsona266c7d2012-04-24 22:59:44 +01002295 iir = new_iir;
Chris Wilson38bde182012-04-24 22:59:50 +01002296 } while (iir & ~flip_mask);
Chris Wilsona266c7d2012-04-24 22:59:44 +01002297
Daniel Vetterd05c6172012-04-26 23:28:09 +02002298 i915_update_dri1_breadcrumb(dev);
Chris Wilson8291ee92012-04-24 22:59:47 +01002299
Chris Wilsona266c7d2012-04-24 22:59:44 +01002300 return ret;
2301}
2302
2303static void i915_irq_uninstall(struct drm_device * dev)
2304{
2305 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2306 int pipe;
2307
Chris Wilsona266c7d2012-04-24 22:59:44 +01002308 if (I915_HAS_HOTPLUG(dev)) {
2309 I915_WRITE(PORT_HOTPLUG_EN, 0);
2310 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
2311 }
2312
Chris Wilson00d98eb2012-04-24 22:59:48 +01002313 I915_WRITE16(HWSTAM, 0xffff);
Chris Wilson55b39752012-04-24 22:59:49 +01002314 for_each_pipe(pipe) {
2315 /* Clear enable bits; then clear status bits */
Chris Wilsona266c7d2012-04-24 22:59:44 +01002316 I915_WRITE(PIPESTAT(pipe), 0);
Chris Wilson55b39752012-04-24 22:59:49 +01002317 I915_WRITE(PIPESTAT(pipe), I915_READ(PIPESTAT(pipe)));
2318 }
Chris Wilsona266c7d2012-04-24 22:59:44 +01002319 I915_WRITE(IMR, 0xffffffff);
2320 I915_WRITE(IER, 0x0);
2321
Chris Wilsona266c7d2012-04-24 22:59:44 +01002322 I915_WRITE(IIR, I915_READ(IIR));
2323}
2324
2325static void i965_irq_preinstall(struct drm_device * dev)
2326{
2327 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2328 int pipe;
2329
2330 atomic_set(&dev_priv->irq_received, 0);
2331
2332 if (I915_HAS_HOTPLUG(dev)) {
2333 I915_WRITE(PORT_HOTPLUG_EN, 0);
2334 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
2335 }
2336
2337 I915_WRITE(HWSTAM, 0xeffe);
2338 for_each_pipe(pipe)
2339 I915_WRITE(PIPESTAT(pipe), 0);
2340 I915_WRITE(IMR, 0xffffffff);
2341 I915_WRITE(IER, 0x0);
2342 POSTING_READ(IER);
2343}
2344
2345static int i965_irq_postinstall(struct drm_device *dev)
2346{
2347 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Chris Wilsonbbba0a92012-04-24 22:59:51 +01002348 u32 enable_mask;
Chris Wilsona266c7d2012-04-24 22:59:44 +01002349 u32 error_mask;
2350
Chris Wilsona266c7d2012-04-24 22:59:44 +01002351 /* Unmask the interrupts that we always want on. */
Chris Wilsonbbba0a92012-04-24 22:59:51 +01002352 dev_priv->irq_mask = ~(I915_ASLE_INTERRUPT |
2353 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
2354 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
2355 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
2356 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT |
2357 I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT);
2358
2359 enable_mask = ~dev_priv->irq_mask;
2360 enable_mask |= I915_USER_INTERRUPT;
2361
2362 if (IS_G4X(dev))
2363 enable_mask |= I915_BSD_USER_INTERRUPT;
Chris Wilsona266c7d2012-04-24 22:59:44 +01002364
2365 dev_priv->pipestat[0] = 0;
2366 dev_priv->pipestat[1] = 0;
2367
2368 if (I915_HAS_HOTPLUG(dev)) {
2369 /* Enable in IER... */
2370 enable_mask |= I915_DISPLAY_PORT_INTERRUPT;
2371 /* and unmask in IMR */
2372 dev_priv->irq_mask &= ~I915_DISPLAY_PORT_INTERRUPT;
2373 }
2374
2375 /*
2376 * Enable some error detection, note the instruction error mask
2377 * bit is reserved, so we leave it masked.
2378 */
2379 if (IS_G4X(dev)) {
2380 error_mask = ~(GM45_ERROR_PAGE_TABLE |
2381 GM45_ERROR_MEM_PRIV |
2382 GM45_ERROR_CP_PRIV |
2383 I915_ERROR_MEMORY_REFRESH);
2384 } else {
2385 error_mask = ~(I915_ERROR_PAGE_TABLE |
2386 I915_ERROR_MEMORY_REFRESH);
2387 }
2388 I915_WRITE(EMR, error_mask);
2389
2390 I915_WRITE(IMR, dev_priv->irq_mask);
2391 I915_WRITE(IER, enable_mask);
2392 POSTING_READ(IER);
2393
2394 if (I915_HAS_HOTPLUG(dev)) {
2395 u32 hotplug_en = I915_READ(PORT_HOTPLUG_EN);
2396
2397 /* Note HDMI and DP share bits */
2398 if (dev_priv->hotplug_supported_mask & HDMIB_HOTPLUG_INT_STATUS)
2399 hotplug_en |= HDMIB_HOTPLUG_INT_EN;
2400 if (dev_priv->hotplug_supported_mask & HDMIC_HOTPLUG_INT_STATUS)
2401 hotplug_en |= HDMIC_HOTPLUG_INT_EN;
2402 if (dev_priv->hotplug_supported_mask & HDMID_HOTPLUG_INT_STATUS)
2403 hotplug_en |= HDMID_HOTPLUG_INT_EN;
2404 if (dev_priv->hotplug_supported_mask & SDVOC_HOTPLUG_INT_STATUS)
2405 hotplug_en |= SDVOC_HOTPLUG_INT_EN;
2406 if (dev_priv->hotplug_supported_mask & SDVOB_HOTPLUG_INT_STATUS)
2407 hotplug_en |= SDVOB_HOTPLUG_INT_EN;
2408 if (dev_priv->hotplug_supported_mask & CRT_HOTPLUG_INT_STATUS) {
2409 hotplug_en |= CRT_HOTPLUG_INT_EN;
2410
2411 /* Programming the CRT detection parameters tends
2412 to generate a spurious hotplug event about three
2413 seconds later. So just do it once.
2414 */
2415 if (IS_G4X(dev))
2416 hotplug_en |= CRT_HOTPLUG_ACTIVATION_PERIOD_64;
2417 hotplug_en |= CRT_HOTPLUG_VOLTAGE_COMPARE_50;
2418 }
2419
2420 /* Ignore TV since it's buggy */
2421
2422 I915_WRITE(PORT_HOTPLUG_EN, hotplug_en);
2423 }
2424
2425 intel_opregion_enable_asle(dev);
2426
2427 return 0;
2428}
2429
2430static irqreturn_t i965_irq_handler(DRM_IRQ_ARGS)
2431{
2432 struct drm_device *dev = (struct drm_device *) arg;
2433 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Chris Wilsona266c7d2012-04-24 22:59:44 +01002434 u32 iir, new_iir;
2435 u32 pipe_stats[I915_MAX_PIPES];
Chris Wilsona266c7d2012-04-24 22:59:44 +01002436 unsigned long irqflags;
2437 int irq_received;
2438 int ret = IRQ_NONE, pipe;
Chris Wilsona266c7d2012-04-24 22:59:44 +01002439
2440 atomic_inc(&dev_priv->irq_received);
2441
2442 iir = I915_READ(IIR);
2443
Chris Wilsona266c7d2012-04-24 22:59:44 +01002444 for (;;) {
Chris Wilson2c8ba292012-04-24 22:59:46 +01002445 bool blc_event = false;
2446
Chris Wilsona266c7d2012-04-24 22:59:44 +01002447 irq_received = iir != 0;
2448
2449 /* Can't rely on pipestat interrupt bit in iir as it might
2450 * have been cleared after the pipestat interrupt was received.
2451 * It doesn't set the bit in iir again, but it still produces
2452 * interrupts (for non-MSI).
2453 */
2454 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
2455 if (iir & I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT)
2456 i915_handle_error(dev, false);
2457
2458 for_each_pipe(pipe) {
2459 int reg = PIPESTAT(pipe);
2460 pipe_stats[pipe] = I915_READ(reg);
2461
2462 /*
2463 * Clear the PIPE*STAT regs before the IIR
2464 */
2465 if (pipe_stats[pipe] & 0x8000ffff) {
2466 if (pipe_stats[pipe] & PIPE_FIFO_UNDERRUN_STATUS)
2467 DRM_DEBUG_DRIVER("pipe %c underrun\n",
2468 pipe_name(pipe));
2469 I915_WRITE(reg, pipe_stats[pipe]);
2470 irq_received = 1;
2471 }
2472 }
2473 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2474
2475 if (!irq_received)
2476 break;
2477
2478 ret = IRQ_HANDLED;
2479
2480 /* Consume port. Then clear IIR or we'll miss events */
2481 if ((I915_HAS_HOTPLUG(dev)) &&
2482 (iir & I915_DISPLAY_PORT_INTERRUPT)) {
2483 u32 hotplug_status = I915_READ(PORT_HOTPLUG_STAT);
2484
2485 DRM_DEBUG_DRIVER("hotplug event received, stat 0x%08x\n",
2486 hotplug_status);
2487 if (hotplug_status & dev_priv->hotplug_supported_mask)
2488 queue_work(dev_priv->wq,
2489 &dev_priv->hotplug_work);
2490
2491 I915_WRITE(PORT_HOTPLUG_STAT, hotplug_status);
2492 I915_READ(PORT_HOTPLUG_STAT);
2493 }
2494
2495 I915_WRITE(IIR, iir);
2496 new_iir = I915_READ(IIR); /* Flush posted writes */
2497
Chris Wilsona266c7d2012-04-24 22:59:44 +01002498 if (iir & I915_USER_INTERRUPT)
2499 notify_ring(dev, &dev_priv->ring[RCS]);
2500 if (iir & I915_BSD_USER_INTERRUPT)
2501 notify_ring(dev, &dev_priv->ring[VCS]);
2502
Chris Wilson4f7d1e72012-04-24 22:59:45 +01002503 if (iir & I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT)
Chris Wilsona266c7d2012-04-24 22:59:44 +01002504 intel_prepare_page_flip(dev, 0);
Chris Wilsona266c7d2012-04-24 22:59:44 +01002505
Chris Wilson4f7d1e72012-04-24 22:59:45 +01002506 if (iir & I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT)
Chris Wilsona266c7d2012-04-24 22:59:44 +01002507 intel_prepare_page_flip(dev, 1);
Chris Wilsona266c7d2012-04-24 22:59:44 +01002508
2509 for_each_pipe(pipe) {
Chris Wilson2c8ba292012-04-24 22:59:46 +01002510 if (pipe_stats[pipe] & PIPE_START_VBLANK_INTERRUPT_STATUS &&
Chris Wilsona266c7d2012-04-24 22:59:44 +01002511 drm_handle_vblank(dev, pipe)) {
Chris Wilson4f7d1e72012-04-24 22:59:45 +01002512 i915_pageflip_stall_check(dev, pipe);
2513 intel_finish_page_flip(dev, pipe);
Chris Wilsona266c7d2012-04-24 22:59:44 +01002514 }
2515
2516 if (pipe_stats[pipe] & PIPE_LEGACY_BLC_EVENT_STATUS)
2517 blc_event = true;
2518 }
2519
2520
2521 if (blc_event || (iir & I915_ASLE_INTERRUPT))
2522 intel_opregion_asle_intr(dev);
2523
2524 /* With MSI, interrupts are only generated when iir
2525 * transitions from zero to nonzero. If another bit got
2526 * set while we were handling the existing iir bits, then
2527 * we would never get another interrupt.
2528 *
2529 * This is fine on non-MSI as well, as if we hit this path
2530 * we avoid exiting the interrupt handler only to generate
2531 * another one.
2532 *
2533 * Note that for MSI this could cause a stray interrupt report
2534 * if an interrupt landed in the time between writing IIR and
2535 * the posting read. This should be rare enough to never
2536 * trigger the 99% of 100,000 interrupts test for disabling
2537 * stray interrupts.
2538 */
2539 iir = new_iir;
2540 }
2541
Daniel Vetterd05c6172012-04-26 23:28:09 +02002542 i915_update_dri1_breadcrumb(dev);
Chris Wilson2c8ba292012-04-24 22:59:46 +01002543
Chris Wilsona266c7d2012-04-24 22:59:44 +01002544 return ret;
2545}
2546
2547static void i965_irq_uninstall(struct drm_device * dev)
2548{
2549 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2550 int pipe;
2551
2552 if (!dev_priv)
2553 return;
2554
Chris Wilsona266c7d2012-04-24 22:59:44 +01002555 if (I915_HAS_HOTPLUG(dev)) {
2556 I915_WRITE(PORT_HOTPLUG_EN, 0);
2557 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
2558 }
2559
2560 I915_WRITE(HWSTAM, 0xffffffff);
2561 for_each_pipe(pipe)
2562 I915_WRITE(PIPESTAT(pipe), 0);
2563 I915_WRITE(IMR, 0xffffffff);
2564 I915_WRITE(IER, 0x0);
2565
2566 for_each_pipe(pipe)
2567 I915_WRITE(PIPESTAT(pipe),
2568 I915_READ(PIPESTAT(pipe)) & 0x8000ffff);
2569 I915_WRITE(IIR, I915_READ(IIR));
2570}
2571
Jesse Barnesf71d4af2011-06-28 13:00:41 -07002572void intel_irq_init(struct drm_device *dev)
2573{
Chris Wilson8b2e3262012-04-24 22:59:41 +01002574 struct drm_i915_private *dev_priv = dev->dev_private;
2575
2576 INIT_WORK(&dev_priv->hotplug_work, i915_hotplug_work_func);
2577 INIT_WORK(&dev_priv->error_work, i915_error_work_func);
2578 INIT_WORK(&dev_priv->rps_work, gen6_pm_rps_work);
2579
Jesse Barnesf71d4af2011-06-28 13:00:41 -07002580 dev->driver->get_vblank_counter = i915_get_vblank_counter;
2581 dev->max_vblank_count = 0xffffff; /* only 24 bits of frame count */
Eugeni Dodonov7d4e1462012-05-09 15:37:09 -03002582 if (IS_G4X(dev) || INTEL_INFO(dev)->gen >= 5) {
Jesse Barnesf71d4af2011-06-28 13:00:41 -07002583 dev->max_vblank_count = 0xffffffff; /* full 32 bit counter */
2584 dev->driver->get_vblank_counter = gm45_get_vblank_counter;
2585 }
2586
Keith Packardc3613de2011-08-12 17:05:54 -07002587 if (drm_core_check_feature(dev, DRIVER_MODESET))
2588 dev->driver->get_vblank_timestamp = i915_get_vblank_timestamp;
2589 else
2590 dev->driver->get_vblank_timestamp = NULL;
Jesse Barnesf71d4af2011-06-28 13:00:41 -07002591 dev->driver->get_scanout_position = i915_get_crtc_scanoutpos;
2592
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002593 if (IS_VALLEYVIEW(dev)) {
2594 dev->driver->irq_handler = valleyview_irq_handler;
2595 dev->driver->irq_preinstall = valleyview_irq_preinstall;
2596 dev->driver->irq_postinstall = valleyview_irq_postinstall;
2597 dev->driver->irq_uninstall = valleyview_irq_uninstall;
2598 dev->driver->enable_vblank = valleyview_enable_vblank;
2599 dev->driver->disable_vblank = valleyview_disable_vblank;
2600 } else if (IS_IVYBRIDGE(dev)) {
Jesse Barnesf71d4af2011-06-28 13:00:41 -07002601 /* Share pre & uninstall handlers with ILK/SNB */
2602 dev->driver->irq_handler = ivybridge_irq_handler;
2603 dev->driver->irq_preinstall = ironlake_irq_preinstall;
2604 dev->driver->irq_postinstall = ivybridge_irq_postinstall;
2605 dev->driver->irq_uninstall = ironlake_irq_uninstall;
2606 dev->driver->enable_vblank = ivybridge_enable_vblank;
2607 dev->driver->disable_vblank = ivybridge_disable_vblank;
Eugeni Dodonov7d4e1462012-05-09 15:37:09 -03002608 } else if (IS_HASWELL(dev)) {
2609 /* Share interrupts handling with IVB */
2610 dev->driver->irq_handler = ivybridge_irq_handler;
2611 dev->driver->irq_preinstall = ironlake_irq_preinstall;
2612 dev->driver->irq_postinstall = ivybridge_irq_postinstall;
2613 dev->driver->irq_uninstall = ironlake_irq_uninstall;
2614 dev->driver->enable_vblank = ivybridge_enable_vblank;
2615 dev->driver->disable_vblank = ivybridge_disable_vblank;
Jesse Barnesf71d4af2011-06-28 13:00:41 -07002616 } else if (HAS_PCH_SPLIT(dev)) {
2617 dev->driver->irq_handler = ironlake_irq_handler;
2618 dev->driver->irq_preinstall = ironlake_irq_preinstall;
2619 dev->driver->irq_postinstall = ironlake_irq_postinstall;
2620 dev->driver->irq_uninstall = ironlake_irq_uninstall;
2621 dev->driver->enable_vblank = ironlake_enable_vblank;
2622 dev->driver->disable_vblank = ironlake_disable_vblank;
2623 } else {
Chris Wilsonc2798b12012-04-22 21:13:57 +01002624 if (INTEL_INFO(dev)->gen == 2) {
2625 dev->driver->irq_preinstall = i8xx_irq_preinstall;
2626 dev->driver->irq_postinstall = i8xx_irq_postinstall;
2627 dev->driver->irq_handler = i8xx_irq_handler;
2628 dev->driver->irq_uninstall = i8xx_irq_uninstall;
Chris Wilsona266c7d2012-04-24 22:59:44 +01002629 } else if (INTEL_INFO(dev)->gen == 3) {
Chris Wilson4f7d1e72012-04-24 22:59:45 +01002630 /* IIR "flip pending" means done if this bit is set */
2631 I915_WRITE(ECOSKPD, _MASKED_BIT_DISABLE(ECO_FLIP_DONE));
2632
Chris Wilsona266c7d2012-04-24 22:59:44 +01002633 dev->driver->irq_preinstall = i915_irq_preinstall;
2634 dev->driver->irq_postinstall = i915_irq_postinstall;
2635 dev->driver->irq_uninstall = i915_irq_uninstall;
2636 dev->driver->irq_handler = i915_irq_handler;
Chris Wilsonc2798b12012-04-22 21:13:57 +01002637 } else {
Chris Wilsona266c7d2012-04-24 22:59:44 +01002638 dev->driver->irq_preinstall = i965_irq_preinstall;
2639 dev->driver->irq_postinstall = i965_irq_postinstall;
2640 dev->driver->irq_uninstall = i965_irq_uninstall;
2641 dev->driver->irq_handler = i965_irq_handler;
Chris Wilsonc2798b12012-04-22 21:13:57 +01002642 }
Jesse Barnesf71d4af2011-06-28 13:00:41 -07002643 dev->driver->enable_vblank = i915_enable_vblank;
2644 dev->driver->disable_vblank = i915_disable_vblank;
2645 }
2646}