blob: 4c8914927217de564dcc83567a41fd81cbc04f76 [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
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#define MAX_NOPID ((u32)~0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
Keith Packard7c463582008-11-04 02:03:27 -080042/**
43 * Interrupts that are always left unmasked.
44 *
45 * Since pipe events are edge-triggered from the PIPESTAT register to IIR,
46 * we leave them always unmasked in IMR and then control enabling them through
47 * PIPESTAT alone.
48 */
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050049#define I915_INTERRUPT_ENABLE_FIX \
50 (I915_ASLE_INTERRUPT | \
51 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT | \
52 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT | \
53 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT | \
54 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT | \
55 I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT)
Keith Packard7c463582008-11-04 02:03:27 -080056
57/** Interrupts that we mask and unmask at runtime. */
Zou Nan haid1b851f2010-05-21 09:08:57 +080058#define I915_INTERRUPT_ENABLE_VAR (I915_USER_INTERRUPT | I915_BSD_USER_INTERRUPT)
Keith Packard7c463582008-11-04 02:03:27 -080059
Jesse Barnes79e53942008-11-07 14:24:08 -080060#define I915_PIPE_VBLANK_STATUS (PIPE_START_VBLANK_INTERRUPT_STATUS |\
61 PIPE_VBLANK_INTERRUPT_STATUS)
62
63#define I915_PIPE_VBLANK_ENABLE (PIPE_START_VBLANK_INTERRUPT_ENABLE |\
64 PIPE_VBLANK_INTERRUPT_ENABLE)
65
66#define DRM_I915_VBLANK_PIPE_ALL (DRM_I915_VBLANK_PIPE_A | \
67 DRM_I915_VBLANK_PIPE_B)
68
Zhenyu Wang036a4a72009-06-08 14:40:19 +080069/* For display hotplug interrupt */
Chris Wilson995b6762010-08-20 13:23:26 +010070static void
Adam Jacksonf2b115e2009-12-03 17:14:42 -050071ironlake_enable_display_irq(drm_i915_private_t *dev_priv, u32 mask)
Zhenyu Wang036a4a72009-06-08 14:40:19 +080072{
Chris Wilson1ec14ad2010-12-04 11:30:53 +000073 if ((dev_priv->irq_mask & mask) != 0) {
74 dev_priv->irq_mask &= ~mask;
75 I915_WRITE(DEIMR, dev_priv->irq_mask);
Chris Wilson3143a2b2010-11-16 15:55:10 +000076 POSTING_READ(DEIMR);
Zhenyu Wang036a4a72009-06-08 14:40:19 +080077 }
78}
79
80static inline void
Adam Jacksonf2b115e2009-12-03 17:14:42 -050081ironlake_disable_display_irq(drm_i915_private_t *dev_priv, u32 mask)
Zhenyu Wang036a4a72009-06-08 14:40:19 +080082{
Chris Wilson1ec14ad2010-12-04 11:30:53 +000083 if ((dev_priv->irq_mask & mask) != mask) {
84 dev_priv->irq_mask |= mask;
85 I915_WRITE(DEIMR, dev_priv->irq_mask);
Chris Wilson3143a2b2010-11-16 15:55:10 +000086 POSTING_READ(DEIMR);
Zhenyu Wang036a4a72009-06-08 14:40:19 +080087 }
88}
89
Keith Packard7c463582008-11-04 02:03:27 -080090void
91i915_enable_pipestat(drm_i915_private_t *dev_priv, int pipe, u32 mask)
92{
93 if ((dev_priv->pipestat[pipe] & mask) != mask) {
Jesse Barnes9db4a9c2011-02-07 12:26:52 -080094 u32 reg = PIPESTAT(pipe);
Keith Packard7c463582008-11-04 02:03:27 -080095
96 dev_priv->pipestat[pipe] |= mask;
97 /* Enable the interrupt, clear any pending status */
98 I915_WRITE(reg, dev_priv->pipestat[pipe] | (mask >> 16));
Chris Wilson3143a2b2010-11-16 15:55:10 +000099 POSTING_READ(reg);
Keith Packard7c463582008-11-04 02:03:27 -0800100 }
101}
102
103void
104i915_disable_pipestat(drm_i915_private_t *dev_priv, int pipe, u32 mask)
105{
106 if ((dev_priv->pipestat[pipe] & mask) != 0) {
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800107 u32 reg = PIPESTAT(pipe);
Keith Packard7c463582008-11-04 02:03:27 -0800108
109 dev_priv->pipestat[pipe] &= ~mask;
110 I915_WRITE(reg, dev_priv->pipestat[pipe]);
Chris Wilson3143a2b2010-11-16 15:55:10 +0000111 POSTING_READ(reg);
Keith Packard7c463582008-11-04 02:03:27 -0800112 }
113}
114
=?utf-8?q?Michel_D=C3=A4nzer?=a6b54f32006-10-24 23:37:43 +1000115/**
Zhao Yakui01c66882009-10-28 05:10:00 +0000116 * intel_enable_asle - enable ASLE interrupt for OpRegion
117 */
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000118void intel_enable_asle(struct drm_device *dev)
Zhao Yakui01c66882009-10-28 05:10:00 +0000119{
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000120 drm_i915_private_t *dev_priv = dev->dev_private;
121 unsigned long irqflags;
122
123 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Zhao Yakui01c66882009-10-28 05:10:00 +0000124
Eric Anholtc619eed2010-01-28 16:45:52 -0800125 if (HAS_PCH_SPLIT(dev))
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500126 ironlake_enable_display_irq(dev_priv, DE_GSE);
Zhao Yakuiedcb49c2010-04-07 17:11:21 +0800127 else {
Zhao Yakui01c66882009-10-28 05:10:00 +0000128 i915_enable_pipestat(dev_priv, 1,
Jesse Barnesd874bcf2010-06-30 13:16:00 -0700129 PIPE_LEGACY_BLC_EVENT_ENABLE);
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100130 if (INTEL_INFO(dev)->gen >= 4)
Zhao Yakuiedcb49c2010-04-07 17:11:21 +0800131 i915_enable_pipestat(dev_priv, 0,
Jesse Barnesd874bcf2010-06-30 13:16:00 -0700132 PIPE_LEGACY_BLC_EVENT_ENABLE);
Zhao Yakuiedcb49c2010-04-07 17:11:21 +0800133 }
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000134
135 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
Zhao Yakui01c66882009-10-28 05:10:00 +0000136}
137
138/**
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700139 * i915_pipe_enabled - check if a pipe is enabled
140 * @dev: DRM device
141 * @pipe: pipe to check
142 *
143 * Reading certain registers when the pipe is disabled can hang the chip.
144 * Use this routine to make sure the PLL is running and the pipe is active
145 * before reading such registers if unsure.
146 */
147static int
148i915_pipe_enabled(struct drm_device *dev, int pipe)
149{
150 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Chris Wilson5eddb702010-09-11 13:48:45 +0100151 return I915_READ(PIPECONF(pipe)) & PIPECONF_ENABLE;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700152}
153
Keith Packard42f52ef2008-10-18 19:39:29 -0700154/* Called from drm generic code, passed a 'crtc', which
155 * we use as a pipe index
156 */
Jesse Barnesf71d4af2011-06-28 13:00:41 -0700157static u32 i915_get_vblank_counter(struct drm_device *dev, int pipe)
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700158{
159 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
160 unsigned long high_frame;
161 unsigned long low_frame;
Chris Wilson5eddb702010-09-11 13:48:45 +0100162 u32 high1, high2, low;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700163
164 if (!i915_pipe_enabled(dev, pipe)) {
Zhao Yakui44d98a62009-10-09 11:39:40 +0800165 DRM_DEBUG_DRIVER("trying to get vblank count for disabled "
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800166 "pipe %c\n", pipe_name(pipe));
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700167 return 0;
168 }
169
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800170 high_frame = PIPEFRAME(pipe);
171 low_frame = PIPEFRAMEPIXEL(pipe);
Chris Wilson5eddb702010-09-11 13:48:45 +0100172
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700173 /*
174 * High & low register fields aren't synchronized, so make sure
175 * we get a low value that's stable across two reads of the high
176 * register.
177 */
178 do {
Chris Wilson5eddb702010-09-11 13:48:45 +0100179 high1 = I915_READ(high_frame) & PIPE_FRAME_HIGH_MASK;
180 low = I915_READ(low_frame) & PIPE_FRAME_LOW_MASK;
181 high2 = I915_READ(high_frame) & PIPE_FRAME_HIGH_MASK;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700182 } while (high1 != high2);
183
Chris Wilson5eddb702010-09-11 13:48:45 +0100184 high1 >>= PIPE_FRAME_HIGH_SHIFT;
185 low >>= PIPE_FRAME_LOW_SHIFT;
186 return (high1 << 8) | low;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700187}
188
Jesse Barnesf71d4af2011-06-28 13:00:41 -0700189static u32 gm45_get_vblank_counter(struct drm_device *dev, int pipe)
Jesse Barnes9880b7a2009-02-06 10:22:41 -0800190{
191 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800192 int reg = PIPE_FRMCOUNT_GM45(pipe);
Jesse Barnes9880b7a2009-02-06 10:22:41 -0800193
194 if (!i915_pipe_enabled(dev, pipe)) {
Zhao Yakui44d98a62009-10-09 11:39:40 +0800195 DRM_DEBUG_DRIVER("trying to get vblank count for disabled "
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800196 "pipe %c\n", pipe_name(pipe));
Jesse Barnes9880b7a2009-02-06 10:22:41 -0800197 return 0;
198 }
199
200 return I915_READ(reg);
201}
202
Jesse Barnesf71d4af2011-06-28 13:00:41 -0700203static int i915_get_crtc_scanoutpos(struct drm_device *dev, int pipe,
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100204 int *vpos, int *hpos)
205{
206 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
207 u32 vbl = 0, position = 0;
208 int vbl_start, vbl_end, htotal, vtotal;
209 bool in_vbl = true;
210 int ret = 0;
211
212 if (!i915_pipe_enabled(dev, pipe)) {
213 DRM_DEBUG_DRIVER("trying to get scanoutpos for disabled "
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800214 "pipe %c\n", pipe_name(pipe));
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100215 return 0;
216 }
217
218 /* Get vtotal. */
219 vtotal = 1 + ((I915_READ(VTOTAL(pipe)) >> 16) & 0x1fff);
220
221 if (INTEL_INFO(dev)->gen >= 4) {
222 /* No obvious pixelcount register. Only query vertical
223 * scanout position from Display scan line register.
224 */
225 position = I915_READ(PIPEDSL(pipe));
226
227 /* Decode into vertical scanout position. Don't have
228 * horizontal scanout position.
229 */
230 *vpos = position & 0x1fff;
231 *hpos = 0;
232 } else {
233 /* Have access to pixelcount since start of frame.
234 * We can split this into vertical and horizontal
235 * scanout position.
236 */
237 position = (I915_READ(PIPEFRAMEPIXEL(pipe)) & PIPE_PIXEL_MASK) >> PIPE_PIXEL_SHIFT;
238
239 htotal = 1 + ((I915_READ(HTOTAL(pipe)) >> 16) & 0x1fff);
240 *vpos = position / htotal;
241 *hpos = position - (*vpos * htotal);
242 }
243
244 /* Query vblank area. */
245 vbl = I915_READ(VBLANK(pipe));
246
247 /* Test position against vblank region. */
248 vbl_start = vbl & 0x1fff;
249 vbl_end = (vbl >> 16) & 0x1fff;
250
251 if ((*vpos < vbl_start) || (*vpos > vbl_end))
252 in_vbl = false;
253
254 /* Inside "upper part" of vblank area? Apply corrective offset: */
255 if (in_vbl && (*vpos >= vbl_start))
256 *vpos = *vpos - vtotal;
257
258 /* Readouts valid? */
259 if (vbl > 0)
260 ret |= DRM_SCANOUTPOS_VALID | DRM_SCANOUTPOS_ACCURATE;
261
262 /* In vblank? */
263 if (in_vbl)
264 ret |= DRM_SCANOUTPOS_INVBL;
265
266 return ret;
267}
268
Jesse Barnesf71d4af2011-06-28 13:00:41 -0700269static int i915_get_vblank_timestamp(struct drm_device *dev, int pipe,
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100270 int *max_error,
271 struct timeval *vblank_time,
272 unsigned flags)
273{
Chris Wilson4041b852011-01-22 10:07:56 +0000274 struct drm_i915_private *dev_priv = dev->dev_private;
275 struct drm_crtc *crtc;
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100276
Chris Wilson4041b852011-01-22 10:07:56 +0000277 if (pipe < 0 || pipe >= dev_priv->num_pipe) {
278 DRM_ERROR("Invalid crtc %d\n", pipe);
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100279 return -EINVAL;
280 }
281
282 /* Get drm_crtc to timestamp: */
Chris Wilson4041b852011-01-22 10:07:56 +0000283 crtc = intel_get_crtc_for_pipe(dev, pipe);
284 if (crtc == NULL) {
285 DRM_ERROR("Invalid crtc %d\n", pipe);
286 return -EINVAL;
287 }
288
289 if (!crtc->enabled) {
290 DRM_DEBUG_KMS("crtc %d is disabled\n", pipe);
291 return -EBUSY;
292 }
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100293
294 /* Helper routine in DRM core does all the work: */
Chris Wilson4041b852011-01-22 10:07:56 +0000295 return drm_calc_vbltimestamp_from_scanoutpos(dev, pipe, max_error,
296 vblank_time, flags,
297 crtc);
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100298}
299
Jesse Barnes5ca58282009-03-31 14:11:15 -0700300/*
301 * Handle hotplug events outside the interrupt handler proper.
302 */
303static void i915_hotplug_work_func(struct work_struct *work)
304{
305 drm_i915_private_t *dev_priv = container_of(work, drm_i915_private_t,
306 hotplug_work);
307 struct drm_device *dev = dev_priv->dev;
Keith Packardc31c4ba2009-05-06 11:48:58 -0700308 struct drm_mode_config *mode_config = &dev->mode_config;
Chris Wilson4ef69c72010-09-09 15:14:28 +0100309 struct intel_encoder *encoder;
Jesse Barnes5ca58282009-03-31 14:11:15 -0700310
Keith Packarda65e34c2011-07-25 10:04:56 -0700311 mutex_lock(&mode_config->mutex);
Jesse Barnese67189ab2011-02-11 14:44:51 -0800312 DRM_DEBUG_KMS("running encoder hotplug functions\n");
313
Chris Wilson4ef69c72010-09-09 15:14:28 +0100314 list_for_each_entry(encoder, &mode_config->encoder_list, base.head)
315 if (encoder->hot_plug)
316 encoder->hot_plug(encoder);
317
Keith Packard40ee3382011-07-28 15:31:19 -0700318 mutex_unlock(&mode_config->mutex);
319
Jesse Barnes5ca58282009-03-31 14:11:15 -0700320 /* Just fire off a uevent and let userspace tell us what to do */
Dave Airlieeb1f8e42010-05-07 06:42:51 +0000321 drm_helper_hpd_irq_event(dev);
Jesse Barnes5ca58282009-03-31 14:11:15 -0700322}
323
Jesse Barnesf97108d2010-01-29 11:27:07 -0800324static void i915_handle_rps_change(struct drm_device *dev)
325{
326 drm_i915_private_t *dev_priv = dev->dev_private;
Matthew Garrettb5b72e82010-02-02 18:30:47 +0000327 u32 busy_up, busy_down, max_avg, min_avg;
Jesse Barnesf97108d2010-01-29 11:27:07 -0800328 u8 new_delay = dev_priv->cur_delay;
329
Jesse Barnes7648fa92010-05-20 14:28:11 -0700330 I915_WRITE16(MEMINTRSTS, MEMINT_EVAL_CHG);
Matthew Garrettb5b72e82010-02-02 18:30:47 +0000331 busy_up = I915_READ(RCPREVBSYTUPAVG);
332 busy_down = I915_READ(RCPREVBSYTDNAVG);
Jesse Barnesf97108d2010-01-29 11:27:07 -0800333 max_avg = I915_READ(RCBMAXAVG);
334 min_avg = I915_READ(RCBMINAVG);
335
336 /* Handle RCS change request from hw */
Matthew Garrettb5b72e82010-02-02 18:30:47 +0000337 if (busy_up > max_avg) {
Jesse Barnesf97108d2010-01-29 11:27:07 -0800338 if (dev_priv->cur_delay != dev_priv->max_delay)
339 new_delay = dev_priv->cur_delay - 1;
340 if (new_delay < dev_priv->max_delay)
341 new_delay = dev_priv->max_delay;
Matthew Garrettb5b72e82010-02-02 18:30:47 +0000342 } else if (busy_down < min_avg) {
Jesse Barnesf97108d2010-01-29 11:27:07 -0800343 if (dev_priv->cur_delay != dev_priv->min_delay)
344 new_delay = dev_priv->cur_delay + 1;
345 if (new_delay > dev_priv->min_delay)
346 new_delay = dev_priv->min_delay;
347 }
348
Jesse Barnes7648fa92010-05-20 14:28:11 -0700349 if (ironlake_set_drps(dev, new_delay))
350 dev_priv->cur_delay = new_delay;
Jesse Barnesf97108d2010-01-29 11:27:07 -0800351
352 return;
353}
354
Chris Wilson549f7362010-10-19 11:19:32 +0100355static void notify_ring(struct drm_device *dev,
356 struct intel_ring_buffer *ring)
357{
358 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson475553d2011-01-20 09:52:56 +0000359 u32 seqno;
Chris Wilson9862e602011-01-04 22:22:17 +0000360
Chris Wilson475553d2011-01-20 09:52:56 +0000361 if (ring->obj == NULL)
362 return;
363
364 seqno = ring->get_seqno(ring);
Chris Wilsondb53a302011-02-03 11:57:46 +0000365 trace_i915_gem_request_complete(ring, seqno);
Chris Wilson9862e602011-01-04 22:22:17 +0000366
367 ring->irq_seqno = seqno;
Chris Wilson549f7362010-10-19 11:19:32 +0100368 wake_up_all(&ring->irq_queue);
Ben Widawsky3e0dc6b2011-06-29 10:26:42 -0700369 if (i915_enable_hangcheck) {
370 dev_priv->hangcheck_count = 0;
371 mod_timer(&dev_priv->hangcheck_timer,
372 jiffies +
373 msecs_to_jiffies(DRM_I915_HANGCHECK_PERIOD));
374 }
Chris Wilson549f7362010-10-19 11:19:32 +0100375}
376
Ben Widawsky4912d042011-04-25 11:25:20 -0700377static void gen6_pm_rps_work(struct work_struct *work)
Jesse Barnes3b8d8d92010-12-17 14:19:02 -0800378{
Ben Widawsky4912d042011-04-25 11:25:20 -0700379 drm_i915_private_t *dev_priv = container_of(work, drm_i915_private_t,
380 rps_work);
Jesse Barnes3b8d8d92010-12-17 14:19:02 -0800381 u8 new_delay = dev_priv->cur_delay;
Ben Widawsky4912d042011-04-25 11:25:20 -0700382 u32 pm_iir, pm_imr;
Jesse Barnes3b8d8d92010-12-17 14:19:02 -0800383
Ben Widawsky4912d042011-04-25 11:25:20 -0700384 spin_lock_irq(&dev_priv->rps_lock);
385 pm_iir = dev_priv->pm_iir;
386 dev_priv->pm_iir = 0;
387 pm_imr = I915_READ(GEN6_PMIMR);
Daniel Vettera9e26412011-09-08 14:00:21 +0200388 I915_WRITE(GEN6_PMIMR, 0);
Ben Widawsky4912d042011-04-25 11:25:20 -0700389 spin_unlock_irq(&dev_priv->rps_lock);
390
Jesse Barnes3b8d8d92010-12-17 14:19:02 -0800391 if (!pm_iir)
392 return;
393
Ben Widawsky4912d042011-04-25 11:25:20 -0700394 mutex_lock(&dev_priv->dev->struct_mutex);
Jesse Barnes3b8d8d92010-12-17 14:19:02 -0800395 if (pm_iir & GEN6_PM_RP_UP_THRESHOLD) {
396 if (dev_priv->cur_delay != dev_priv->max_delay)
397 new_delay = dev_priv->cur_delay + 1;
398 if (new_delay > dev_priv->max_delay)
399 new_delay = dev_priv->max_delay;
400 } else if (pm_iir & (GEN6_PM_RP_DOWN_THRESHOLD | GEN6_PM_RP_DOWN_TIMEOUT)) {
Ben Widawsky4912d042011-04-25 11:25:20 -0700401 gen6_gt_force_wake_get(dev_priv);
Jesse Barnes3b8d8d92010-12-17 14:19:02 -0800402 if (dev_priv->cur_delay != dev_priv->min_delay)
403 new_delay = dev_priv->cur_delay - 1;
404 if (new_delay < dev_priv->min_delay) {
405 new_delay = dev_priv->min_delay;
406 I915_WRITE(GEN6_RP_INTERRUPT_LIMITS,
407 I915_READ(GEN6_RP_INTERRUPT_LIMITS) |
408 ((new_delay << 16) & 0x3f0000));
409 } else {
410 /* Make sure we continue to get down interrupts
411 * until we hit the minimum frequency */
412 I915_WRITE(GEN6_RP_INTERRUPT_LIMITS,
413 I915_READ(GEN6_RP_INTERRUPT_LIMITS) & ~0x3f0000);
414 }
Ben Widawsky4912d042011-04-25 11:25:20 -0700415 gen6_gt_force_wake_put(dev_priv);
Jesse Barnes3b8d8d92010-12-17 14:19:02 -0800416 }
417
Ben Widawsky4912d042011-04-25 11:25:20 -0700418 gen6_set_rps(dev_priv->dev, new_delay);
Jesse Barnes3b8d8d92010-12-17 14:19:02 -0800419 dev_priv->cur_delay = new_delay;
420
Ben Widawsky4912d042011-04-25 11:25:20 -0700421 /*
422 * rps_lock not held here because clearing is non-destructive. There is
423 * an *extremely* unlikely race with gen6_rps_enable() that is prevented
424 * by holding struct_mutex for the duration of the write.
425 */
Ben Widawsky4912d042011-04-25 11:25:20 -0700426 mutex_unlock(&dev_priv->dev->struct_mutex);
Jesse Barnes3b8d8d92010-12-17 14:19:02 -0800427}
428
Jesse Barnes776ad802011-01-04 15:09:39 -0800429static void pch_irq_handler(struct drm_device *dev)
430{
431 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
432 u32 pch_iir;
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800433 int pipe;
Jesse Barnes776ad802011-01-04 15:09:39 -0800434
435 pch_iir = I915_READ(SDEIIR);
436
437 if (pch_iir & SDE_AUDIO_POWER_MASK)
438 DRM_DEBUG_DRIVER("PCH audio power change on port %d\n",
439 (pch_iir & SDE_AUDIO_POWER_MASK) >>
440 SDE_AUDIO_POWER_SHIFT);
441
442 if (pch_iir & SDE_GMBUS)
443 DRM_DEBUG_DRIVER("PCH GMBUS interrupt\n");
444
445 if (pch_iir & SDE_AUDIO_HDCP_MASK)
446 DRM_DEBUG_DRIVER("PCH HDCP audio interrupt\n");
447
448 if (pch_iir & SDE_AUDIO_TRANS_MASK)
449 DRM_DEBUG_DRIVER("PCH transcoder audio interrupt\n");
450
451 if (pch_iir & SDE_POISON)
452 DRM_ERROR("PCH poison interrupt\n");
453
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800454 if (pch_iir & SDE_FDI_MASK)
455 for_each_pipe(pipe)
456 DRM_DEBUG_DRIVER(" pipe %c FDI IIR: 0x%08x\n",
457 pipe_name(pipe),
458 I915_READ(FDI_RX_IIR(pipe)));
Jesse Barnes776ad802011-01-04 15:09:39 -0800459
460 if (pch_iir & (SDE_TRANSB_CRC_DONE | SDE_TRANSA_CRC_DONE))
461 DRM_DEBUG_DRIVER("PCH transcoder CRC done interrupt\n");
462
463 if (pch_iir & (SDE_TRANSB_CRC_ERR | SDE_TRANSA_CRC_ERR))
464 DRM_DEBUG_DRIVER("PCH transcoder CRC error interrupt\n");
465
466 if (pch_iir & SDE_TRANSB_FIFO_UNDER)
467 DRM_DEBUG_DRIVER("PCH transcoder B underrun interrupt\n");
468 if (pch_iir & SDE_TRANSA_FIFO_UNDER)
469 DRM_DEBUG_DRIVER("PCH transcoder A underrun interrupt\n");
470}
471
Jesse Barnesf71d4af2011-06-28 13:00:41 -0700472static irqreturn_t ivybridge_irq_handler(DRM_IRQ_ARGS)
Jesse Barnesb1f14ad2011-04-06 12:13:38 -0700473{
474 struct drm_device *dev = (struct drm_device *) arg;
475 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
476 int ret = IRQ_NONE;
477 u32 de_iir, gt_iir, de_ier, pch_iir, pm_iir;
478 struct drm_i915_master_private *master_priv;
479
480 atomic_inc(&dev_priv->irq_received);
481
482 /* disable master interrupt before clearing iir */
483 de_ier = I915_READ(DEIER);
484 I915_WRITE(DEIER, de_ier & ~DE_MASTER_IRQ_CONTROL);
485 POSTING_READ(DEIER);
486
487 de_iir = I915_READ(DEIIR);
488 gt_iir = I915_READ(GTIIR);
489 pch_iir = I915_READ(SDEIIR);
490 pm_iir = I915_READ(GEN6_PMIIR);
491
492 if (de_iir == 0 && gt_iir == 0 && pch_iir == 0 && pm_iir == 0)
493 goto done;
494
495 ret = IRQ_HANDLED;
496
497 if (dev->primary->master) {
498 master_priv = dev->primary->master->driver_priv;
499 if (master_priv->sarea_priv)
500 master_priv->sarea_priv->last_dispatch =
501 READ_BREADCRUMB(dev_priv);
502 }
503
504 if (gt_iir & (GT_USER_INTERRUPT | GT_PIPE_NOTIFY))
505 notify_ring(dev, &dev_priv->ring[RCS]);
506 if (gt_iir & GT_GEN6_BSD_USER_INTERRUPT)
507 notify_ring(dev, &dev_priv->ring[VCS]);
508 if (gt_iir & GT_BLT_USER_INTERRUPT)
509 notify_ring(dev, &dev_priv->ring[BCS]);
510
511 if (de_iir & DE_GSE_IVB)
512 intel_opregion_gse_intr(dev);
513
514 if (de_iir & DE_PLANEA_FLIP_DONE_IVB) {
515 intel_prepare_page_flip(dev, 0);
516 intel_finish_page_flip_plane(dev, 0);
517 }
518
519 if (de_iir & DE_PLANEB_FLIP_DONE_IVB) {
520 intel_prepare_page_flip(dev, 1);
521 intel_finish_page_flip_plane(dev, 1);
522 }
523
524 if (de_iir & DE_PIPEA_VBLANK_IVB)
525 drm_handle_vblank(dev, 0);
526
Dan Carpenterf6b07f42011-05-25 12:56:56 +0300527 if (de_iir & DE_PIPEB_VBLANK_IVB)
Jesse Barnesb1f14ad2011-04-06 12:13:38 -0700528 drm_handle_vblank(dev, 1);
529
530 /* check event from PCH */
531 if (de_iir & DE_PCH_EVENT_IVB) {
532 if (pch_iir & SDE_HOTPLUG_MASK_CPT)
533 queue_work(dev_priv->wq, &dev_priv->hotplug_work);
534 pch_irq_handler(dev);
535 }
536
537 if (pm_iir & GEN6_PM_DEFERRED_EVENTS) {
538 unsigned long flags;
539 spin_lock_irqsave(&dev_priv->rps_lock, flags);
540 WARN(dev_priv->pm_iir & pm_iir, "Missed a PM interrupt\n");
Jesse Barnesb1f14ad2011-04-06 12:13:38 -0700541 dev_priv->pm_iir |= pm_iir;
Daniel Vetter4fb066a2011-09-08 14:00:20 +0200542 I915_WRITE(GEN6_PMIMR, dev_priv->pm_iir);
543 POSTING_READ(GEN6_PMIMR);
Jesse Barnesb1f14ad2011-04-06 12:13:38 -0700544 spin_unlock_irqrestore(&dev_priv->rps_lock, flags);
545 queue_work(dev_priv->wq, &dev_priv->rps_work);
546 }
547
548 /* should clear PCH hotplug event before clear CPU irq */
549 I915_WRITE(SDEIIR, pch_iir);
550 I915_WRITE(GTIIR, gt_iir);
551 I915_WRITE(DEIIR, de_iir);
552 I915_WRITE(GEN6_PMIIR, pm_iir);
553
554done:
555 I915_WRITE(DEIER, de_ier);
556 POSTING_READ(DEIER);
557
558 return ret;
559}
560
Jesse Barnesf71d4af2011-06-28 13:00:41 -0700561static irqreturn_t ironlake_irq_handler(DRM_IRQ_ARGS)
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800562{
Jesse Barnes46979952011-04-07 13:53:55 -0700563 struct drm_device *dev = (struct drm_device *) arg;
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800564 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
565 int ret = IRQ_NONE;
Jesse Barnes3b8d8d92010-12-17 14:19:02 -0800566 u32 de_iir, gt_iir, de_ier, pch_iir, pm_iir;
Yuanhan Liu2d7b8362010-10-08 10:21:06 +0100567 u32 hotplug_mask;
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800568 struct drm_i915_master_private *master_priv;
Xiang, Haihao881f47b2010-09-19 14:40:43 +0100569 u32 bsd_usr_interrupt = GT_BSD_USER_INTERRUPT;
570
Jesse Barnes46979952011-04-07 13:53:55 -0700571 atomic_inc(&dev_priv->irq_received);
572
Xiang, Haihao881f47b2010-09-19 14:40:43 +0100573 if (IS_GEN6(dev))
574 bsd_usr_interrupt = GT_GEN6_BSD_USER_INTERRUPT;
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800575
Zou, Nanhai2d109a82009-11-06 02:13:01 +0000576 /* disable master interrupt before clearing iir */
577 de_ier = I915_READ(DEIER);
578 I915_WRITE(DEIER, de_ier & ~DE_MASTER_IRQ_CONTROL);
Chris Wilson3143a2b2010-11-16 15:55:10 +0000579 POSTING_READ(DEIER);
Zou, Nanhai2d109a82009-11-06 02:13:01 +0000580
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800581 de_iir = I915_READ(DEIIR);
582 gt_iir = I915_READ(GTIIR);
Zhenyu Wangc6501562009-11-03 18:57:21 +0000583 pch_iir = I915_READ(SDEIIR);
Jesse Barnes3b8d8d92010-12-17 14:19:02 -0800584 pm_iir = I915_READ(GEN6_PMIIR);
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800585
Jesse Barnes3b8d8d92010-12-17 14:19:02 -0800586 if (de_iir == 0 && gt_iir == 0 && pch_iir == 0 &&
587 (!IS_GEN6(dev) || pm_iir == 0))
Zou Nan haic7c85102010-01-15 10:29:06 +0800588 goto done;
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800589
Yuanhan Liu2d7b8362010-10-08 10:21:06 +0100590 if (HAS_PCH_CPT(dev))
591 hotplug_mask = SDE_HOTPLUG_MASK_CPT;
592 else
593 hotplug_mask = SDE_HOTPLUG_MASK;
594
Zou Nan haic7c85102010-01-15 10:29:06 +0800595 ret = IRQ_HANDLED;
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800596
Zou Nan haic7c85102010-01-15 10:29:06 +0800597 if (dev->primary->master) {
598 master_priv = dev->primary->master->driver_priv;
599 if (master_priv->sarea_priv)
600 master_priv->sarea_priv->last_dispatch =
601 READ_BREADCRUMB(dev_priv);
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800602 }
603
Chris Wilsonc6df5412010-12-15 09:56:50 +0000604 if (gt_iir & (GT_USER_INTERRUPT | GT_PIPE_NOTIFY))
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000605 notify_ring(dev, &dev_priv->ring[RCS]);
Xiang, Haihao881f47b2010-09-19 14:40:43 +0100606 if (gt_iir & bsd_usr_interrupt)
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000607 notify_ring(dev, &dev_priv->ring[VCS]);
608 if (gt_iir & GT_BLT_USER_INTERRUPT)
609 notify_ring(dev, &dev_priv->ring[BCS]);
Zou Nan haic7c85102010-01-15 10:29:06 +0800610
611 if (de_iir & DE_GSE)
Chris Wilson3b617962010-08-24 09:02:58 +0100612 intel_opregion_gse_intr(dev);
Zou Nan haic7c85102010-01-15 10:29:06 +0800613
Zhenyu Wangf072d2e2010-02-09 09:46:19 +0800614 if (de_iir & DE_PLANEA_FLIP_DONE) {
Jesse Barnes013d5aa2010-01-29 11:18:31 -0800615 intel_prepare_page_flip(dev, 0);
Chris Wilson2bbda382010-09-02 17:59:39 +0100616 intel_finish_page_flip_plane(dev, 0);
Jesse Barnes013d5aa2010-01-29 11:18:31 -0800617 }
618
Zhenyu Wangf072d2e2010-02-09 09:46:19 +0800619 if (de_iir & DE_PLANEB_FLIP_DONE) {
620 intel_prepare_page_flip(dev, 1);
Chris Wilson2bbda382010-09-02 17:59:39 +0100621 intel_finish_page_flip_plane(dev, 1);
Jesse Barnes013d5aa2010-01-29 11:18:31 -0800622 }
Li Pengc062df62010-01-23 00:12:58 +0800623
Zhenyu Wangf072d2e2010-02-09 09:46:19 +0800624 if (de_iir & DE_PIPEA_VBLANK)
625 drm_handle_vblank(dev, 0);
626
627 if (de_iir & DE_PIPEB_VBLANK)
628 drm_handle_vblank(dev, 1);
629
Zou Nan haic7c85102010-01-15 10:29:06 +0800630 /* check event from PCH */
Jesse Barnes776ad802011-01-04 15:09:39 -0800631 if (de_iir & DE_PCH_EVENT) {
632 if (pch_iir & hotplug_mask)
633 queue_work(dev_priv->wq, &dev_priv->hotplug_work);
634 pch_irq_handler(dev);
635 }
Zou Nan haic7c85102010-01-15 10:29:06 +0800636
Jesse Barnesf97108d2010-01-29 11:27:07 -0800637 if (de_iir & DE_PCU_EVENT) {
Jesse Barnes7648fa92010-05-20 14:28:11 -0700638 I915_WRITE16(MEMINTRSTS, I915_READ(MEMINTRSTS));
Jesse Barnesf97108d2010-01-29 11:27:07 -0800639 i915_handle_rps_change(dev);
640 }
641
Ben Widawsky4912d042011-04-25 11:25:20 -0700642 if (IS_GEN6(dev) && pm_iir & GEN6_PM_DEFERRED_EVENTS) {
643 /*
644 * IIR bits should never already be set because IMR should
645 * prevent an interrupt from being shown in IIR. The warning
646 * displays a case where we've unsafely cleared
647 * dev_priv->pm_iir. Although missing an interrupt of the same
648 * type is not a problem, it displays a problem in the logic.
649 *
650 * The mask bit in IMR is cleared by rps_work.
651 */
652 unsigned long flags;
653 spin_lock_irqsave(&dev_priv->rps_lock, flags);
654 WARN(dev_priv->pm_iir & pm_iir, "Missed a PM interrupt\n");
Ben Widawsky4912d042011-04-25 11:25:20 -0700655 dev_priv->pm_iir |= pm_iir;
Daniel Vetter4fb066a2011-09-08 14:00:20 +0200656 I915_WRITE(GEN6_PMIMR, dev_priv->pm_iir);
657 POSTING_READ(GEN6_PMIMR);
Ben Widawsky4912d042011-04-25 11:25:20 -0700658 spin_unlock_irqrestore(&dev_priv->rps_lock, flags);
659 queue_work(dev_priv->wq, &dev_priv->rps_work);
660 }
Jesse Barnes3b8d8d92010-12-17 14:19:02 -0800661
Zou Nan haic7c85102010-01-15 10:29:06 +0800662 /* should clear PCH hotplug event before clear CPU irq */
663 I915_WRITE(SDEIIR, pch_iir);
664 I915_WRITE(GTIIR, gt_iir);
665 I915_WRITE(DEIIR, de_iir);
Ben Widawsky4912d042011-04-25 11:25:20 -0700666 I915_WRITE(GEN6_PMIIR, pm_iir);
Zou Nan haic7c85102010-01-15 10:29:06 +0800667
668done:
Zou, Nanhai2d109a82009-11-06 02:13:01 +0000669 I915_WRITE(DEIER, de_ier);
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 return ret;
673}
674
Jesse Barnes8a905232009-07-11 16:48:03 -0400675/**
676 * i915_error_work_func - do process context error handling work
677 * @work: work struct
678 *
679 * Fire an error uevent so userspace can see that a hang or error
680 * was detected.
681 */
682static void i915_error_work_func(struct work_struct *work)
683{
684 drm_i915_private_t *dev_priv = container_of(work, drm_i915_private_t,
685 error_work);
686 struct drm_device *dev = dev_priv->dev;
Ben Gamarif316a422009-09-14 17:48:46 -0400687 char *error_event[] = { "ERROR=1", NULL };
688 char *reset_event[] = { "RESET=1", NULL };
689 char *reset_done_event[] = { "ERROR=0", NULL };
Jesse Barnes8a905232009-07-11 16:48:03 -0400690
Ben Gamarif316a422009-09-14 17:48:46 -0400691 kobject_uevent_env(&dev->primary->kdev.kobj, KOBJ_CHANGE, error_event);
Jesse Barnes8a905232009-07-11 16:48:03 -0400692
Ben Gamariba1234d2009-09-14 17:48:47 -0400693 if (atomic_read(&dev_priv->mm.wedged)) {
Chris Wilsonf803aa52010-09-19 12:38:26 +0100694 DRM_DEBUG_DRIVER("resetting chip\n");
695 kobject_uevent_env(&dev->primary->kdev.kobj, KOBJ_CHANGE, reset_event);
696 if (!i915_reset(dev, GRDOM_RENDER)) {
697 atomic_set(&dev_priv->mm.wedged, 0);
698 kobject_uevent_env(&dev->primary->kdev.kobj, KOBJ_CHANGE, reset_done_event);
Ben Gamarif316a422009-09-14 17:48:46 -0400699 }
Chris Wilson30dbf0c2010-09-25 10:19:17 +0100700 complete_all(&dev_priv->error_completion);
Ben Gamarif316a422009-09-14 17:48:46 -0400701 }
Jesse Barnes8a905232009-07-11 16:48:03 -0400702}
703
Chris Wilson3bd3c932010-08-19 08:19:30 +0100704#ifdef CONFIG_DEBUG_FS
Chris Wilson9df30792010-02-18 10:24:56 +0000705static struct drm_i915_error_object *
Chris Wilsonbcfb2e22011-01-07 21:06:07 +0000706i915_error_object_create(struct drm_i915_private *dev_priv,
Chris Wilson05394f32010-11-08 19:18:58 +0000707 struct drm_i915_gem_object *src)
Chris Wilson9df30792010-02-18 10:24:56 +0000708{
709 struct drm_i915_error_object *dst;
Chris Wilson9df30792010-02-18 10:24:56 +0000710 int page, page_count;
Chris Wilsone56660d2010-08-07 11:01:26 +0100711 u32 reloc_offset;
Chris Wilson9df30792010-02-18 10:24:56 +0000712
Chris Wilson05394f32010-11-08 19:18:58 +0000713 if (src == NULL || src->pages == NULL)
Chris Wilson9df30792010-02-18 10:24:56 +0000714 return NULL;
715
Chris Wilson05394f32010-11-08 19:18:58 +0000716 page_count = src->base.size / PAGE_SIZE;
Chris Wilson9df30792010-02-18 10:24:56 +0000717
Akshay Joshi0206e352011-08-16 15:34:10 -0400718 dst = kmalloc(sizeof(*dst) + page_count * sizeof(u32 *), GFP_ATOMIC);
Chris Wilson9df30792010-02-18 10:24:56 +0000719 if (dst == NULL)
720 return NULL;
721
Chris Wilson05394f32010-11-08 19:18:58 +0000722 reloc_offset = src->gtt_offset;
Chris Wilson9df30792010-02-18 10:24:56 +0000723 for (page = 0; page < page_count; page++) {
Andrew Morton788885a2010-05-11 14:07:05 -0700724 unsigned long flags;
Chris Wilsone56660d2010-08-07 11:01:26 +0100725 void *d;
Andrew Morton788885a2010-05-11 14:07:05 -0700726
Chris Wilsone56660d2010-08-07 11:01:26 +0100727 d = kmalloc(PAGE_SIZE, GFP_ATOMIC);
Chris Wilson9df30792010-02-18 10:24:56 +0000728 if (d == NULL)
729 goto unwind;
Chris Wilsone56660d2010-08-07 11:01:26 +0100730
Andrew Morton788885a2010-05-11 14:07:05 -0700731 local_irq_save(flags);
Chris Wilson172975aa2011-12-14 13:57:25 +0100732 if (reloc_offset < dev_priv->mm.gtt_mappable_end) {
733 void __iomem *s;
734
735 /* Simply ignore tiling or any overlapping fence.
736 * It's part of the error state, and this hopefully
737 * captures what the GPU read.
738 */
739
740 s = io_mapping_map_atomic_wc(dev_priv->mm.gtt_mapping,
741 reloc_offset);
742 memcpy_fromio(d, s, PAGE_SIZE);
743 io_mapping_unmap_atomic(s);
744 } else {
745 void *s;
746
747 drm_clflush_pages(&src->pages[page], 1);
748
749 s = kmap_atomic(src->pages[page]);
750 memcpy(d, s, PAGE_SIZE);
751 kunmap_atomic(s);
752
753 drm_clflush_pages(&src->pages[page], 1);
754 }
Andrew Morton788885a2010-05-11 14:07:05 -0700755 local_irq_restore(flags);
Chris Wilsone56660d2010-08-07 11:01:26 +0100756
Chris Wilson9df30792010-02-18 10:24:56 +0000757 dst->pages[page] = d;
Chris Wilsone56660d2010-08-07 11:01:26 +0100758
759 reloc_offset += PAGE_SIZE;
Chris Wilson9df30792010-02-18 10:24:56 +0000760 }
761 dst->page_count = page_count;
Chris Wilson05394f32010-11-08 19:18:58 +0000762 dst->gtt_offset = src->gtt_offset;
Chris Wilson9df30792010-02-18 10:24:56 +0000763
764 return dst;
765
766unwind:
767 while (page--)
768 kfree(dst->pages[page]);
769 kfree(dst);
770 return NULL;
771}
772
773static void
774i915_error_object_free(struct drm_i915_error_object *obj)
775{
776 int page;
777
778 if (obj == NULL)
779 return;
780
781 for (page = 0; page < obj->page_count; page++)
782 kfree(obj->pages[page]);
783
784 kfree(obj);
785}
786
787static void
788i915_error_state_free(struct drm_device *dev,
789 struct drm_i915_error_state *error)
790{
Chris Wilsone2f973d2011-01-27 19:15:11 +0000791 int i;
792
Chris Wilson52d39a22012-02-15 11:25:37 +0000793 for (i = 0; i < ARRAY_SIZE(error->ring); i++) {
794 i915_error_object_free(error->ring[i].batchbuffer);
795 i915_error_object_free(error->ring[i].ringbuffer);
796 kfree(error->ring[i].requests);
797 }
Chris Wilsone2f973d2011-01-27 19:15:11 +0000798
Chris Wilson9df30792010-02-18 10:24:56 +0000799 kfree(error->active_bo);
Chris Wilson6ef3d422010-08-04 20:26:07 +0100800 kfree(error->overlay);
Chris Wilson9df30792010-02-18 10:24:56 +0000801 kfree(error);
802}
803
Chris Wilsonc724e8a2010-11-22 08:07:02 +0000804static u32 capture_bo_list(struct drm_i915_error_buffer *err,
805 int count,
806 struct list_head *head)
807{
808 struct drm_i915_gem_object *obj;
809 int i = 0;
810
811 list_for_each_entry(obj, head, mm_list) {
812 err->size = obj->base.size;
813 err->name = obj->base.name;
814 err->seqno = obj->last_rendering_seqno;
815 err->gtt_offset = obj->gtt_offset;
816 err->read_domains = obj->base.read_domains;
817 err->write_domain = obj->base.write_domain;
818 err->fence_reg = obj->fence_reg;
819 err->pinned = 0;
820 if (obj->pin_count > 0)
821 err->pinned = 1;
822 if (obj->user_pin_count > 0)
823 err->pinned = -1;
824 err->tiling = obj->tiling_mode;
825 err->dirty = obj->dirty;
826 err->purgeable = obj->madv != I915_MADV_WILLNEED;
Daniel Vetter96154f22011-12-14 13:57:00 +0100827 err->ring = obj->ring ? obj->ring->id : -1;
Chris Wilson93dfb402011-03-29 16:59:50 -0700828 err->cache_level = obj->cache_level;
Chris Wilsonc724e8a2010-11-22 08:07:02 +0000829
830 if (++i == count)
831 break;
832
833 err++;
834 }
835
836 return i;
837}
838
Chris Wilson748ebc62010-10-24 10:28:47 +0100839static void i915_gem_record_fences(struct drm_device *dev,
840 struct drm_i915_error_state *error)
841{
842 struct drm_i915_private *dev_priv = dev->dev_private;
843 int i;
844
845 /* Fences */
846 switch (INTEL_INFO(dev)->gen) {
Daniel Vetter775d17b2011-10-09 21:52:01 +0200847 case 7:
Chris Wilson748ebc62010-10-24 10:28:47 +0100848 case 6:
849 for (i = 0; i < 16; i++)
850 error->fence[i] = I915_READ64(FENCE_REG_SANDYBRIDGE_0 + (i * 8));
851 break;
852 case 5:
853 case 4:
854 for (i = 0; i < 16; i++)
855 error->fence[i] = I915_READ64(FENCE_REG_965_0 + (i * 8));
856 break;
857 case 3:
858 if (IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev))
859 for (i = 0; i < 8; i++)
860 error->fence[i+8] = I915_READ(FENCE_REG_945_8 + (i * 4));
861 case 2:
862 for (i = 0; i < 8; i++)
863 error->fence[i] = I915_READ(FENCE_REG_830_0 + (i * 4));
864 break;
865
866 }
867}
868
Chris Wilsonbcfb2e22011-01-07 21:06:07 +0000869static struct drm_i915_error_object *
870i915_error_first_batchbuffer(struct drm_i915_private *dev_priv,
871 struct intel_ring_buffer *ring)
872{
873 struct drm_i915_gem_object *obj;
874 u32 seqno;
875
876 if (!ring->get_seqno)
877 return NULL;
878
879 seqno = ring->get_seqno(ring);
880 list_for_each_entry(obj, &dev_priv->mm.active_list, mm_list) {
881 if (obj->ring != ring)
882 continue;
883
Chris Wilsonc37d9a52011-01-12 20:33:01 +0000884 if (i915_seqno_passed(seqno, obj->last_rendering_seqno))
Chris Wilsonbcfb2e22011-01-07 21:06:07 +0000885 continue;
886
887 if ((obj->base.read_domains & I915_GEM_DOMAIN_COMMAND) == 0)
888 continue;
889
890 /* We need to copy these to an anonymous buffer as the simplest
891 * method to avoid being overwritten by userspace.
892 */
893 return i915_error_object_create(dev_priv, obj);
894 }
895
896 return NULL;
897}
898
Daniel Vetterd27b1e02011-12-14 13:57:01 +0100899static void i915_record_ring_state(struct drm_device *dev,
900 struct drm_i915_error_state *error,
901 struct intel_ring_buffer *ring)
902{
903 struct drm_i915_private *dev_priv = dev->dev_private;
904
Daniel Vetter33f3f512011-12-14 13:57:39 +0100905 if (INTEL_INFO(dev)->gen >= 6) {
Daniel Vetterc1cd90e2011-12-14 13:57:02 +0100906 error->faddr[ring->id] = I915_READ(RING_DMA_FADD(ring->mmio_base));
Daniel Vetter33f3f512011-12-14 13:57:39 +0100907 error->fault_reg[ring->id] = I915_READ(RING_FAULT_REG(ring));
Daniel Vetter7e3b8732012-02-01 22:26:45 +0100908 error->semaphore_mboxes[ring->id][0]
909 = I915_READ(RING_SYNC_0(ring->mmio_base));
910 error->semaphore_mboxes[ring->id][1]
911 = I915_READ(RING_SYNC_1(ring->mmio_base));
Daniel Vetter33f3f512011-12-14 13:57:39 +0100912 }
Daniel Vetterc1cd90e2011-12-14 13:57:02 +0100913
Daniel Vetterd27b1e02011-12-14 13:57:01 +0100914 if (INTEL_INFO(dev)->gen >= 4) {
915 error->ipeir[ring->id] = I915_READ(RING_IPEIR(ring->mmio_base));
916 error->ipehr[ring->id] = I915_READ(RING_IPEHR(ring->mmio_base));
917 error->instdone[ring->id] = I915_READ(RING_INSTDONE(ring->mmio_base));
Daniel Vetterc1cd90e2011-12-14 13:57:02 +0100918 error->instps[ring->id] = I915_READ(RING_INSTPS(ring->mmio_base));
Daniel Vetterd27b1e02011-12-14 13:57:01 +0100919 if (ring->id == RCS) {
Daniel Vetterd27b1e02011-12-14 13:57:01 +0100920 error->instdone1 = I915_READ(INSTDONE1);
921 error->bbaddr = I915_READ64(BB_ADDR);
922 }
923 } else {
924 error->ipeir[ring->id] = I915_READ(IPEIR);
925 error->ipehr[ring->id] = I915_READ(IPEHR);
926 error->instdone[ring->id] = I915_READ(INSTDONE);
Daniel Vetterd27b1e02011-12-14 13:57:01 +0100927 }
928
Daniel Vetterc1cd90e2011-12-14 13:57:02 +0100929 error->instpm[ring->id] = I915_READ(RING_INSTPM(ring->mmio_base));
Daniel Vetterd27b1e02011-12-14 13:57:01 +0100930 error->seqno[ring->id] = ring->get_seqno(ring);
931 error->acthd[ring->id] = intel_ring_get_active_head(ring);
Daniel Vetterc1cd90e2011-12-14 13:57:02 +0100932 error->head[ring->id] = I915_READ_HEAD(ring);
933 error->tail[ring->id] = I915_READ_TAIL(ring);
Daniel Vetter7e3b8732012-02-01 22:26:45 +0100934
935 error->cpu_ring_head[ring->id] = ring->head;
936 error->cpu_ring_tail[ring->id] = ring->tail;
Daniel Vetterd27b1e02011-12-14 13:57:01 +0100937}
938
Chris Wilson52d39a22012-02-15 11:25:37 +0000939static void i915_gem_record_rings(struct drm_device *dev,
940 struct drm_i915_error_state *error)
941{
942 struct drm_i915_private *dev_priv = dev->dev_private;
943 struct drm_i915_gem_request *request;
944 int i, count;
945
946 for (i = 0; i < I915_NUM_RINGS; i++) {
947 struct intel_ring_buffer *ring = &dev_priv->ring[i];
948
949 if (ring->obj == NULL)
950 continue;
951
952 i915_record_ring_state(dev, error, ring);
953
954 error->ring[i].batchbuffer =
955 i915_error_first_batchbuffer(dev_priv, ring);
956
957 error->ring[i].ringbuffer =
958 i915_error_object_create(dev_priv, ring->obj);
959
960 count = 0;
961 list_for_each_entry(request, &ring->request_list, list)
962 count++;
963
964 error->ring[i].num_requests = count;
965 error->ring[i].requests =
966 kmalloc(count*sizeof(struct drm_i915_error_request),
967 GFP_ATOMIC);
968 if (error->ring[i].requests == NULL) {
969 error->ring[i].num_requests = 0;
970 continue;
971 }
972
973 count = 0;
974 list_for_each_entry(request, &ring->request_list, list) {
975 struct drm_i915_error_request *erq;
976
977 erq = &error->ring[i].requests[count++];
978 erq->seqno = request->seqno;
979 erq->jiffies = request->emitted_jiffies;
Chris Wilsonee4f42b2012-02-15 11:25:38 +0000980 erq->tail = request->tail;
Chris Wilson52d39a22012-02-15 11:25:37 +0000981 }
982 }
983}
984
Jesse Barnes8a905232009-07-11 16:48:03 -0400985/**
986 * i915_capture_error_state - capture an error record for later analysis
987 * @dev: drm device
988 *
989 * Should be called when an error is detected (either a hang or an error
990 * interrupt) to capture error state from the time of the error. Fills
991 * out a structure which becomes available in debugfs for user level tools
992 * to pick up.
993 */
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700994static void i915_capture_error_state(struct drm_device *dev)
995{
996 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson05394f32010-11-08 19:18:58 +0000997 struct drm_i915_gem_object *obj;
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700998 struct drm_i915_error_state *error;
999 unsigned long flags;
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001000 int i, pipe;
Jesse Barnes63eeaf32009-06-18 16:56:52 -07001001
1002 spin_lock_irqsave(&dev_priv->error_lock, flags);
Chris Wilson9df30792010-02-18 10:24:56 +00001003 error = dev_priv->first_error;
1004 spin_unlock_irqrestore(&dev_priv->error_lock, flags);
1005 if (error)
1006 return;
Jesse Barnes63eeaf32009-06-18 16:56:52 -07001007
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001008 /* Account for pipe specific data like PIPE*STAT */
Daniel Vetter33f3f512011-12-14 13:57:39 +01001009 error = kzalloc(sizeof(*error), GFP_ATOMIC);
Jesse Barnes63eeaf32009-06-18 16:56:52 -07001010 if (!error) {
Chris Wilson9df30792010-02-18 10:24:56 +00001011 DRM_DEBUG_DRIVER("out of memory, not capturing error state\n");
1012 return;
Jesse Barnes63eeaf32009-06-18 16:56:52 -07001013 }
1014
Chris Wilsonb6f78332011-02-01 14:15:55 +00001015 DRM_INFO("capturing error event; look for more information in /debug/dri/%d/i915_error_state\n",
1016 dev->primary->index);
Chris Wilson2fa772f2010-10-01 13:23:27 +01001017
Jesse Barnes63eeaf32009-06-18 16:56:52 -07001018 error->eir = I915_READ(EIR);
1019 error->pgtbl_er = I915_READ(PGTBL_ER);
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001020 for_each_pipe(pipe)
1021 error->pipestat[pipe] = I915_READ(PIPESTAT(pipe));
Daniel Vetterd27b1e02011-12-14 13:57:01 +01001022
Daniel Vetter33f3f512011-12-14 13:57:39 +01001023 if (INTEL_INFO(dev)->gen >= 6) {
Chris Wilsonf4068392010-10-27 20:36:41 +01001024 error->error = I915_READ(ERROR_GEN6);
Daniel Vetter33f3f512011-12-14 13:57:39 +01001025 error->done_reg = I915_READ(DONE_REG);
1026 }
Chris Wilsonadd354d2010-10-29 19:00:51 +01001027
Chris Wilson748ebc62010-10-24 10:28:47 +01001028 i915_gem_record_fences(dev, error);
Chris Wilson52d39a22012-02-15 11:25:37 +00001029 i915_gem_record_rings(dev, error);
Chris Wilson9df30792010-02-18 10:24:56 +00001030
Chris Wilsonc724e8a2010-11-22 08:07:02 +00001031 /* Record buffers on the active and pinned lists. */
Chris Wilson9df30792010-02-18 10:24:56 +00001032 error->active_bo = NULL;
Chris Wilsonc724e8a2010-11-22 08:07:02 +00001033 error->pinned_bo = NULL;
Chris Wilson9df30792010-02-18 10:24:56 +00001034
Chris Wilsonbcfb2e22011-01-07 21:06:07 +00001035 i = 0;
1036 list_for_each_entry(obj, &dev_priv->mm.active_list, mm_list)
1037 i++;
1038 error->active_bo_count = i;
Chris Wilson05394f32010-11-08 19:18:58 +00001039 list_for_each_entry(obj, &dev_priv->mm.pinned_list, mm_list)
Chris Wilsonbcfb2e22011-01-07 21:06:07 +00001040 i++;
1041 error->pinned_bo_count = i - error->active_bo_count;
Chris Wilsonc724e8a2010-11-22 08:07:02 +00001042
Chris Wilson8e934db2011-01-24 12:34:00 +00001043 error->active_bo = NULL;
1044 error->pinned_bo = NULL;
Chris Wilsonbcfb2e22011-01-07 21:06:07 +00001045 if (i) {
1046 error->active_bo = kmalloc(sizeof(*error->active_bo)*i,
Chris Wilson9df30792010-02-18 10:24:56 +00001047 GFP_ATOMIC);
Chris Wilsonc724e8a2010-11-22 08:07:02 +00001048 if (error->active_bo)
1049 error->pinned_bo =
1050 error->active_bo + error->active_bo_count;
Jesse Barnes63eeaf32009-06-18 16:56:52 -07001051 }
1052
Chris Wilsonc724e8a2010-11-22 08:07:02 +00001053 if (error->active_bo)
1054 error->active_bo_count =
1055 capture_bo_list(error->active_bo,
1056 error->active_bo_count,
1057 &dev_priv->mm.active_list);
1058
1059 if (error->pinned_bo)
1060 error->pinned_bo_count =
1061 capture_bo_list(error->pinned_bo,
1062 error->pinned_bo_count,
1063 &dev_priv->mm.pinned_list);
1064
Jesse Barnes8a905232009-07-11 16:48:03 -04001065 do_gettimeofday(&error->time);
1066
Chris Wilson6ef3d422010-08-04 20:26:07 +01001067 error->overlay = intel_overlay_capture_error_state(dev);
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +00001068 error->display = intel_display_capture_error_state(dev);
Chris Wilson6ef3d422010-08-04 20:26:07 +01001069
Chris Wilson9df30792010-02-18 10:24:56 +00001070 spin_lock_irqsave(&dev_priv->error_lock, flags);
1071 if (dev_priv->first_error == NULL) {
1072 dev_priv->first_error = error;
1073 error = NULL;
1074 }
Jesse Barnes63eeaf32009-06-18 16:56:52 -07001075 spin_unlock_irqrestore(&dev_priv->error_lock, flags);
Chris Wilson9df30792010-02-18 10:24:56 +00001076
1077 if (error)
1078 i915_error_state_free(dev, error);
1079}
1080
1081void i915_destroy_error_state(struct drm_device *dev)
1082{
1083 struct drm_i915_private *dev_priv = dev->dev_private;
1084 struct drm_i915_error_state *error;
Ben Widawsky6dc0e812012-01-23 15:30:02 -08001085 unsigned long flags;
Chris Wilson9df30792010-02-18 10:24:56 +00001086
Ben Widawsky6dc0e812012-01-23 15:30:02 -08001087 spin_lock_irqsave(&dev_priv->error_lock, flags);
Chris Wilson9df30792010-02-18 10:24:56 +00001088 error = dev_priv->first_error;
1089 dev_priv->first_error = NULL;
Ben Widawsky6dc0e812012-01-23 15:30:02 -08001090 spin_unlock_irqrestore(&dev_priv->error_lock, flags);
Chris Wilson9df30792010-02-18 10:24:56 +00001091
1092 if (error)
1093 i915_error_state_free(dev, error);
Jesse Barnes63eeaf32009-06-18 16:56:52 -07001094}
Chris Wilson3bd3c932010-08-19 08:19:30 +01001095#else
1096#define i915_capture_error_state(x)
1097#endif
Jesse Barnes63eeaf32009-06-18 16:56:52 -07001098
Chris Wilson35aed2e2010-05-27 13:18:12 +01001099static void i915_report_and_clear_eir(struct drm_device *dev)
Jesse Barnes8a905232009-07-11 16:48:03 -04001100{
1101 struct drm_i915_private *dev_priv = dev->dev_private;
1102 u32 eir = I915_READ(EIR);
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001103 int pipe;
Jesse Barnes8a905232009-07-11 16:48:03 -04001104
Chris Wilson35aed2e2010-05-27 13:18:12 +01001105 if (!eir)
1106 return;
Jesse Barnes8a905232009-07-11 16:48:03 -04001107
Joe Perchesa70491c2012-03-18 13:00:11 -07001108 pr_err("render error detected, EIR: 0x%08x\n", eir);
Jesse Barnes8a905232009-07-11 16:48:03 -04001109
1110 if (IS_G4X(dev)) {
1111 if (eir & (GM45_ERROR_MEM_PRIV | GM45_ERROR_CP_PRIV)) {
1112 u32 ipeir = I915_READ(IPEIR_I965);
1113
Joe Perchesa70491c2012-03-18 13:00:11 -07001114 pr_err(" IPEIR: 0x%08x\n", I915_READ(IPEIR_I965));
1115 pr_err(" IPEHR: 0x%08x\n", I915_READ(IPEHR_I965));
1116 pr_err(" INSTDONE: 0x%08x\n",
Jesse Barnes8a905232009-07-11 16:48:03 -04001117 I915_READ(INSTDONE_I965));
Joe Perchesa70491c2012-03-18 13:00:11 -07001118 pr_err(" INSTPS: 0x%08x\n", I915_READ(INSTPS));
1119 pr_err(" INSTDONE1: 0x%08x\n", I915_READ(INSTDONE1));
1120 pr_err(" ACTHD: 0x%08x\n", I915_READ(ACTHD_I965));
Jesse Barnes8a905232009-07-11 16:48:03 -04001121 I915_WRITE(IPEIR_I965, ipeir);
Chris Wilson3143a2b2010-11-16 15:55:10 +00001122 POSTING_READ(IPEIR_I965);
Jesse Barnes8a905232009-07-11 16:48:03 -04001123 }
1124 if (eir & GM45_ERROR_PAGE_TABLE) {
1125 u32 pgtbl_err = I915_READ(PGTBL_ER);
Joe Perchesa70491c2012-03-18 13:00:11 -07001126 pr_err("page table error\n");
1127 pr_err(" PGTBL_ER: 0x%08x\n", pgtbl_err);
Jesse Barnes8a905232009-07-11 16:48:03 -04001128 I915_WRITE(PGTBL_ER, pgtbl_err);
Chris Wilson3143a2b2010-11-16 15:55:10 +00001129 POSTING_READ(PGTBL_ER);
Jesse Barnes8a905232009-07-11 16:48:03 -04001130 }
1131 }
1132
Chris Wilsona6c45cf2010-09-17 00:32:17 +01001133 if (!IS_GEN2(dev)) {
Jesse Barnes8a905232009-07-11 16:48:03 -04001134 if (eir & I915_ERROR_PAGE_TABLE) {
1135 u32 pgtbl_err = I915_READ(PGTBL_ER);
Joe Perchesa70491c2012-03-18 13:00:11 -07001136 pr_err("page table error\n");
1137 pr_err(" PGTBL_ER: 0x%08x\n", pgtbl_err);
Jesse Barnes8a905232009-07-11 16:48:03 -04001138 I915_WRITE(PGTBL_ER, pgtbl_err);
Chris Wilson3143a2b2010-11-16 15:55:10 +00001139 POSTING_READ(PGTBL_ER);
Jesse Barnes8a905232009-07-11 16:48:03 -04001140 }
1141 }
1142
1143 if (eir & I915_ERROR_MEMORY_REFRESH) {
Joe Perchesa70491c2012-03-18 13:00:11 -07001144 pr_err("memory refresh error:\n");
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001145 for_each_pipe(pipe)
Joe Perchesa70491c2012-03-18 13:00:11 -07001146 pr_err("pipe %c stat: 0x%08x\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001147 pipe_name(pipe), I915_READ(PIPESTAT(pipe)));
Jesse Barnes8a905232009-07-11 16:48:03 -04001148 /* pipestat has already been acked */
1149 }
1150 if (eir & I915_ERROR_INSTRUCTION) {
Joe Perchesa70491c2012-03-18 13:00:11 -07001151 pr_err("instruction error\n");
1152 pr_err(" INSTPM: 0x%08x\n", I915_READ(INSTPM));
Chris Wilsona6c45cf2010-09-17 00:32:17 +01001153 if (INTEL_INFO(dev)->gen < 4) {
Jesse Barnes8a905232009-07-11 16:48:03 -04001154 u32 ipeir = I915_READ(IPEIR);
1155
Joe Perchesa70491c2012-03-18 13:00:11 -07001156 pr_err(" IPEIR: 0x%08x\n", I915_READ(IPEIR));
1157 pr_err(" IPEHR: 0x%08x\n", I915_READ(IPEHR));
1158 pr_err(" INSTDONE: 0x%08x\n", I915_READ(INSTDONE));
1159 pr_err(" ACTHD: 0x%08x\n", I915_READ(ACTHD));
Jesse Barnes8a905232009-07-11 16:48:03 -04001160 I915_WRITE(IPEIR, ipeir);
Chris Wilson3143a2b2010-11-16 15:55:10 +00001161 POSTING_READ(IPEIR);
Jesse Barnes8a905232009-07-11 16:48:03 -04001162 } else {
1163 u32 ipeir = I915_READ(IPEIR_I965);
1164
Joe Perchesa70491c2012-03-18 13:00:11 -07001165 pr_err(" IPEIR: 0x%08x\n", I915_READ(IPEIR_I965));
1166 pr_err(" IPEHR: 0x%08x\n", I915_READ(IPEHR_I965));
1167 pr_err(" INSTDONE: 0x%08x\n",
Jesse Barnes8a905232009-07-11 16:48:03 -04001168 I915_READ(INSTDONE_I965));
Joe Perchesa70491c2012-03-18 13:00:11 -07001169 pr_err(" INSTPS: 0x%08x\n", I915_READ(INSTPS));
1170 pr_err(" INSTDONE1: 0x%08x\n", I915_READ(INSTDONE1));
1171 pr_err(" ACTHD: 0x%08x\n", I915_READ(ACTHD_I965));
Jesse Barnes8a905232009-07-11 16:48:03 -04001172 I915_WRITE(IPEIR_I965, ipeir);
Chris Wilson3143a2b2010-11-16 15:55:10 +00001173 POSTING_READ(IPEIR_I965);
Jesse Barnes8a905232009-07-11 16:48:03 -04001174 }
1175 }
1176
1177 I915_WRITE(EIR, eir);
Chris Wilson3143a2b2010-11-16 15:55:10 +00001178 POSTING_READ(EIR);
Jesse Barnes8a905232009-07-11 16:48:03 -04001179 eir = I915_READ(EIR);
1180 if (eir) {
1181 /*
1182 * some errors might have become stuck,
1183 * mask them.
1184 */
1185 DRM_ERROR("EIR stuck: 0x%08x, masking\n", eir);
1186 I915_WRITE(EMR, I915_READ(EMR) | eir);
1187 I915_WRITE(IIR, I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT);
1188 }
Chris Wilson35aed2e2010-05-27 13:18:12 +01001189}
1190
1191/**
1192 * i915_handle_error - handle an error interrupt
1193 * @dev: drm device
1194 *
1195 * Do some basic checking of regsiter state at error interrupt time and
1196 * dump it to the syslog. Also call i915_capture_error_state() to make
1197 * sure we get a record and make it available in debugfs. Fire a uevent
1198 * so userspace knows something bad happened (should trigger collection
1199 * of a ring dump etc.).
1200 */
Chris Wilson527f9e92010-11-11 01:16:58 +00001201void i915_handle_error(struct drm_device *dev, bool wedged)
Chris Wilson35aed2e2010-05-27 13:18:12 +01001202{
1203 struct drm_i915_private *dev_priv = dev->dev_private;
1204
1205 i915_capture_error_state(dev);
1206 i915_report_and_clear_eir(dev);
Jesse Barnes8a905232009-07-11 16:48:03 -04001207
Ben Gamariba1234d2009-09-14 17:48:47 -04001208 if (wedged) {
Chris Wilson30dbf0c2010-09-25 10:19:17 +01001209 INIT_COMPLETION(dev_priv->error_completion);
Ben Gamariba1234d2009-09-14 17:48:47 -04001210 atomic_set(&dev_priv->mm.wedged, 1);
1211
Ben Gamari11ed50e2009-09-14 17:48:45 -04001212 /*
1213 * Wakeup waiting processes so they don't hang
1214 */
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001215 wake_up_all(&dev_priv->ring[RCS].irq_queue);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001216 if (HAS_BSD(dev))
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001217 wake_up_all(&dev_priv->ring[VCS].irq_queue);
Chris Wilson549f7362010-10-19 11:19:32 +01001218 if (HAS_BLT(dev))
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001219 wake_up_all(&dev_priv->ring[BCS].irq_queue);
Ben Gamari11ed50e2009-09-14 17:48:45 -04001220 }
1221
Eric Anholt9c9fe1f2009-08-03 16:09:16 -07001222 queue_work(dev_priv->wq, &dev_priv->error_work);
Jesse Barnes8a905232009-07-11 16:48:03 -04001223}
1224
Simon Farnsworth4e5359c2010-09-01 17:47:52 +01001225static void i915_pageflip_stall_check(struct drm_device *dev, int pipe)
1226{
1227 drm_i915_private_t *dev_priv = dev->dev_private;
1228 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
1229 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Chris Wilson05394f32010-11-08 19:18:58 +00001230 struct drm_i915_gem_object *obj;
Simon Farnsworth4e5359c2010-09-01 17:47:52 +01001231 struct intel_unpin_work *work;
1232 unsigned long flags;
1233 bool stall_detected;
1234
1235 /* Ignore early vblank irqs */
1236 if (intel_crtc == NULL)
1237 return;
1238
1239 spin_lock_irqsave(&dev->event_lock, flags);
1240 work = intel_crtc->unpin_work;
1241
1242 if (work == NULL || work->pending || !work->enable_stall_check) {
1243 /* Either the pending flip IRQ arrived, or we're too early. Don't check */
1244 spin_unlock_irqrestore(&dev->event_lock, flags);
1245 return;
1246 }
1247
1248 /* Potential stall - if we see that the flip has happened, assume a missed interrupt */
Chris Wilson05394f32010-11-08 19:18:58 +00001249 obj = work->pending_flip_obj;
Chris Wilsona6c45cf2010-09-17 00:32:17 +01001250 if (INTEL_INFO(dev)->gen >= 4) {
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001251 int dspsurf = DSPSURF(intel_crtc->plane);
Chris Wilson05394f32010-11-08 19:18:58 +00001252 stall_detected = I915_READ(dspsurf) == obj->gtt_offset;
Simon Farnsworth4e5359c2010-09-01 17:47:52 +01001253 } else {
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001254 int dspaddr = DSPADDR(intel_crtc->plane);
Chris Wilson05394f32010-11-08 19:18:58 +00001255 stall_detected = I915_READ(dspaddr) == (obj->gtt_offset +
Ville Syrjälä01f2c772011-12-20 00:06:49 +02001256 crtc->y * crtc->fb->pitches[0] +
Simon Farnsworth4e5359c2010-09-01 17:47:52 +01001257 crtc->x * crtc->fb->bits_per_pixel/8);
1258 }
1259
1260 spin_unlock_irqrestore(&dev->event_lock, flags);
1261
1262 if (stall_detected) {
1263 DRM_DEBUG_DRIVER("Pageflip stall detected\n");
1264 intel_prepare_page_flip(dev, intel_crtc->plane);
1265 }
1266}
1267
Jesse Barnesf71d4af2011-06-28 13:00:41 -07001268static irqreturn_t i915_driver_irq_handler(DRM_IRQ_ARGS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269{
Dave Airlie84b1fd12007-07-11 15:53:27 +10001270 struct drm_device *dev = (struct drm_device *) arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Dave Airlie7c1c2872008-11-28 14:22:24 +10001272 struct drm_i915_master_private *master_priv;
Eric Anholtcdfbc412008-11-04 15:50:30 -08001273 u32 iir, new_iir;
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001274 u32 pipe_stats[I915_MAX_PIPES];
Keith Packard05eff842008-11-19 14:03:05 -08001275 u32 vblank_status;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001276 int vblank = 0;
Keith Packard7c463582008-11-04 02:03:27 -08001277 unsigned long irqflags;
Keith Packard05eff842008-11-19 14:03:05 -08001278 int irq_received;
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001279 int ret = IRQ_NONE, pipe;
1280 bool blc_event = false;
Dave Airlieaf6061a2008-05-07 12:15:39 +10001281
Eric Anholt630681d2008-10-06 15:14:12 -07001282 atomic_inc(&dev_priv->irq_received);
1283
Eric Anholted4cb412008-07-29 12:10:39 -07001284 iir = I915_READ(IIR);
Dave Airlieaf6061a2008-05-07 12:15:39 +10001285
Chris Wilsona6c45cf2010-09-17 00:32:17 +01001286 if (INTEL_INFO(dev)->gen >= 4)
Jesse Barnesd874bcf2010-06-30 13:16:00 -07001287 vblank_status = PIPE_START_VBLANK_INTERRUPT_STATUS;
Jesse Barnese25e6602010-06-30 13:15:19 -07001288 else
Jesse Barnesd874bcf2010-06-30 13:16:00 -07001289 vblank_status = PIPE_VBLANK_INTERRUPT_STATUS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290
Keith Packard05eff842008-11-19 14:03:05 -08001291 for (;;) {
1292 irq_received = iir != 0;
1293
1294 /* Can't rely on pipestat interrupt bit in iir as it might
1295 * have been cleared after the pipestat interrupt was received.
1296 * It doesn't set the bit in iir again, but it still produces
1297 * interrupts (for non-MSI).
1298 */
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001299 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Jesse Barnes8a905232009-07-11 16:48:03 -04001300 if (iir & I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT)
Ben Gamariba1234d2009-09-14 17:48:47 -04001301 i915_handle_error(dev, false);
Jesse Barnes8a905232009-07-11 16:48:03 -04001302
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001303 for_each_pipe(pipe) {
1304 int reg = PIPESTAT(pipe);
1305 pipe_stats[pipe] = I915_READ(reg);
Keith Packard7c463582008-11-04 02:03:27 -08001306
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001307 /*
1308 * Clear the PIPE*STAT regs before the IIR
1309 */
1310 if (pipe_stats[pipe] & 0x8000ffff) {
1311 if (pipe_stats[pipe] & PIPE_FIFO_UNDERRUN_STATUS)
1312 DRM_DEBUG_DRIVER("pipe %c underrun\n",
1313 pipe_name(pipe));
1314 I915_WRITE(reg, pipe_stats[pipe]);
1315 irq_received = 1;
1316 }
Eric Anholtcdfbc412008-11-04 15:50:30 -08001317 }
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001318 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
Keith Packard05eff842008-11-19 14:03:05 -08001319
1320 if (!irq_received)
1321 break;
1322
1323 ret = IRQ_HANDLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324
Jesse Barnes5ca58282009-03-31 14:11:15 -07001325 /* Consume port. Then clear IIR or we'll miss events */
1326 if ((I915_HAS_HOTPLUG(dev)) &&
1327 (iir & I915_DISPLAY_PORT_INTERRUPT)) {
1328 u32 hotplug_status = I915_READ(PORT_HOTPLUG_STAT);
1329
Zhao Yakui44d98a62009-10-09 11:39:40 +08001330 DRM_DEBUG_DRIVER("hotplug event received, stat 0x%08x\n",
Jesse Barnes5ca58282009-03-31 14:11:15 -07001331 hotplug_status);
1332 if (hotplug_status & dev_priv->hotplug_supported_mask)
Eric Anholt9c9fe1f2009-08-03 16:09:16 -07001333 queue_work(dev_priv->wq,
1334 &dev_priv->hotplug_work);
Jesse Barnes5ca58282009-03-31 14:11:15 -07001335
1336 I915_WRITE(PORT_HOTPLUG_STAT, hotplug_status);
1337 I915_READ(PORT_HOTPLUG_STAT);
1338 }
1339
Eric Anholtcdfbc412008-11-04 15:50:30 -08001340 I915_WRITE(IIR, iir);
1341 new_iir = I915_READ(IIR); /* Flush posted writes */
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +01001342
Dave Airlie7c1c2872008-11-28 14:22:24 +10001343 if (dev->primary->master) {
1344 master_priv = dev->primary->master->driver_priv;
1345 if (master_priv->sarea_priv)
1346 master_priv->sarea_priv->last_dispatch =
1347 READ_BREADCRUMB(dev_priv);
1348 }
Keith Packard7c463582008-11-04 02:03:27 -08001349
Chris Wilson549f7362010-10-19 11:19:32 +01001350 if (iir & I915_USER_INTERRUPT)
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001351 notify_ring(dev, &dev_priv->ring[RCS]);
1352 if (iir & I915_BSD_USER_INTERRUPT)
1353 notify_ring(dev, &dev_priv->ring[VCS]);
Zou Nan haid1b851f2010-05-21 09:08:57 +08001354
Jesse Barnes1afe3e92010-03-26 10:35:20 -07001355 if (iir & I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT) {
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001356 intel_prepare_page_flip(dev, 0);
Jesse Barnes1afe3e92010-03-26 10:35:20 -07001357 if (dev_priv->flip_pending_is_done)
1358 intel_finish_page_flip_plane(dev, 0);
1359 }
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001360
Jesse Barnes1afe3e92010-03-26 10:35:20 -07001361 if (iir & I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT) {
Jesse Barnes70565d02010-07-01 04:45:43 -07001362 intel_prepare_page_flip(dev, 1);
Jesse Barnes1afe3e92010-03-26 10:35:20 -07001363 if (dev_priv->flip_pending_is_done)
1364 intel_finish_page_flip_plane(dev, 1);
Jesse Barnes1afe3e92010-03-26 10:35:20 -07001365 }
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001366
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001367 for_each_pipe(pipe) {
1368 if (pipe_stats[pipe] & vblank_status &&
1369 drm_handle_vblank(dev, pipe)) {
1370 vblank++;
1371 if (!dev_priv->flip_pending_is_done) {
1372 i915_pageflip_stall_check(dev, pipe);
1373 intel_finish_page_flip(dev, pipe);
1374 }
Simon Farnsworth4e5359c2010-09-01 17:47:52 +01001375 }
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001376
1377 if (pipe_stats[pipe] & PIPE_LEGACY_BLC_EVENT_STATUS)
1378 blc_event = true;
Eric Anholtcdfbc412008-11-04 15:50:30 -08001379 }
Eric Anholt673a3942008-07-30 12:06:12 -07001380
Keith Packard7c463582008-11-04 02:03:27 -08001381
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001382 if (blc_event || (iir & I915_ASLE_INTERRUPT))
Chris Wilson3b617962010-08-24 09:02:58 +01001383 intel_opregion_asle_intr(dev);
Keith Packard7c463582008-11-04 02:03:27 -08001384
Eric Anholtcdfbc412008-11-04 15:50:30 -08001385 /* With MSI, interrupts are only generated when iir
1386 * transitions from zero to nonzero. If another bit got
1387 * set while we were handling the existing iir bits, then
1388 * we would never get another interrupt.
1389 *
1390 * This is fine on non-MSI as well, as if we hit this path
1391 * we avoid exiting the interrupt handler only to generate
1392 * another one.
1393 *
1394 * Note that for MSI this could cause a stray interrupt report
1395 * if an interrupt landed in the time between writing IIR and
1396 * the posting read. This should be rare enough to never
1397 * trigger the 99% of 100,000 interrupts test for disabling
1398 * stray interrupts.
1399 */
1400 iir = new_iir;
Keith Packard05eff842008-11-19 14:03:05 -08001401 }
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001402
Keith Packard05eff842008-11-19 14:03:05 -08001403 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404}
1405
Dave Airlieaf6061a2008-05-07 12:15:39 +10001406static int i915_emit_irq(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407{
1408 drm_i915_private_t *dev_priv = dev->dev_private;
Dave Airlie7c1c2872008-11-28 14:22:24 +10001409 struct drm_i915_master_private *master_priv = dev->primary->master->driver_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410
1411 i915_kernel_lost_context(dev);
1412
Zhao Yakui44d98a62009-10-09 11:39:40 +08001413 DRM_DEBUG_DRIVER("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414
Kristian Høgsbergc99b0582008-08-20 11:20:13 -04001415 dev_priv->counter++;
Alan Hourihanec29b6692006-08-12 16:29:24 +10001416 if (dev_priv->counter > 0x7FFFFFFFUL)
Kristian Høgsbergc99b0582008-08-20 11:20:13 -04001417 dev_priv->counter = 1;
Dave Airlie7c1c2872008-11-28 14:22:24 +10001418 if (master_priv->sarea_priv)
1419 master_priv->sarea_priv->last_enqueue = dev_priv->counter;
Alan Hourihanec29b6692006-08-12 16:29:24 +10001420
Chris Wilsone1f99ce2010-10-27 12:45:26 +01001421 if (BEGIN_LP_RING(4) == 0) {
1422 OUT_RING(MI_STORE_DWORD_INDEX);
1423 OUT_RING(I915_BREADCRUMB_INDEX << MI_STORE_DWORD_INDEX_SHIFT);
1424 OUT_RING(dev_priv->counter);
1425 OUT_RING(MI_USER_INTERRUPT);
1426 ADVANCE_LP_RING();
1427 }
Dave Airliebc5f4522007-11-05 12:50:58 +10001428
Alan Hourihanec29b6692006-08-12 16:29:24 +10001429 return dev_priv->counter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430}
1431
Dave Airlie84b1fd12007-07-11 15:53:27 +10001432static int i915_wait_irq(struct drm_device * dev, int irq_nr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433{
1434 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Dave Airlie7c1c2872008-11-28 14:22:24 +10001435 struct drm_i915_master_private *master_priv = dev->primary->master->driver_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436 int ret = 0;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001437 struct intel_ring_buffer *ring = LP_RING(dev_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438
Zhao Yakui44d98a62009-10-09 11:39:40 +08001439 DRM_DEBUG_DRIVER("irq_nr=%d breadcrumb=%d\n", irq_nr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440 READ_BREADCRUMB(dev_priv));
1441
Eric Anholted4cb412008-07-29 12:10:39 -07001442 if (READ_BREADCRUMB(dev_priv) >= irq_nr) {
Dave Airlie7c1c2872008-11-28 14:22:24 +10001443 if (master_priv->sarea_priv)
1444 master_priv->sarea_priv->last_dispatch = READ_BREADCRUMB(dev_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445 return 0;
Eric Anholted4cb412008-07-29 12:10:39 -07001446 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447
Dave Airlie7c1c2872008-11-28 14:22:24 +10001448 if (master_priv->sarea_priv)
1449 master_priv->sarea_priv->perf_boxes |= I915_BOX_WAIT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450
Chris Wilsonb13c2b92010-12-13 16:54:50 +00001451 if (ring->irq_get(ring)) {
1452 DRM_WAIT_ON(ret, ring->irq_queue, 3 * DRM_HZ,
1453 READ_BREADCRUMB(dev_priv) >= irq_nr);
1454 ring->irq_put(ring);
Chris Wilson5a9a8d12011-01-23 13:03:24 +00001455 } else if (wait_for(READ_BREADCRUMB(dev_priv) >= irq_nr, 3000))
1456 ret = -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457
Eric Anholt20caafa2007-08-25 19:22:43 +10001458 if (ret == -EBUSY) {
Márton Németh3e684ea2008-01-24 15:58:57 +10001459 DRM_ERROR("EBUSY -- rec: %d emitted: %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460 READ_BREADCRUMB(dev_priv), (int)dev_priv->counter);
1461 }
1462
Dave Airlieaf6061a2008-05-07 12:15:39 +10001463 return ret;
1464}
1465
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466/* Needs the lock as it touches the ring.
1467 */
Eric Anholtc153f452007-09-03 12:06:45 +10001468int i915_irq_emit(struct drm_device *dev, void *data,
1469 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholtc153f452007-09-03 12:06:45 +10001472 drm_i915_irq_emit_t *emit = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473 int result;
1474
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001475 if (!dev_priv || !LP_RING(dev_priv)->virtual_start) {
Márton Németh3e684ea2008-01-24 15:58:57 +10001476 DRM_ERROR("called with no initialization\n");
Eric Anholt20caafa2007-08-25 19:22:43 +10001477 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478 }
Eric Anholt299eb932009-02-24 22:14:12 -08001479
1480 RING_LOCK_TEST_WITH_RETURN(dev, file_priv);
1481
Eric Anholt546b0972008-09-01 16:45:29 -07001482 mutex_lock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483 result = i915_emit_irq(dev);
Eric Anholt546b0972008-09-01 16:45:29 -07001484 mutex_unlock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485
Eric Anholtc153f452007-09-03 12:06:45 +10001486 if (DRM_COPY_TO_USER(emit->irq_seq, &result, sizeof(int))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487 DRM_ERROR("copy_to_user\n");
Eric Anholt20caafa2007-08-25 19:22:43 +10001488 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489 }
1490
1491 return 0;
1492}
1493
1494/* Doesn't need the hardware lock.
1495 */
Eric Anholtc153f452007-09-03 12:06:45 +10001496int i915_irq_wait(struct drm_device *dev, void *data,
1497 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholtc153f452007-09-03 12:06:45 +10001500 drm_i915_irq_wait_t *irqwait = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501
1502 if (!dev_priv) {
Márton Németh3e684ea2008-01-24 15:58:57 +10001503 DRM_ERROR("called with no initialization\n");
Eric Anholt20caafa2007-08-25 19:22:43 +10001504 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505 }
1506
Eric Anholtc153f452007-09-03 12:06:45 +10001507 return i915_wait_irq(dev, irqwait->irq_seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508}
1509
Keith Packard42f52ef2008-10-18 19:39:29 -07001510/* Called from drm generic code, passed 'crtc' which
1511 * we use as a pipe index
1512 */
Jesse Barnesf71d4af2011-06-28 13:00:41 -07001513static int i915_enable_vblank(struct drm_device *dev, int pipe)
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001514{
1515 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Keith Packarde9d21d72008-10-16 11:31:38 -07001516 unsigned long irqflags;
Jesse Barnes71e0ffa2009-01-08 10:42:15 -08001517
Chris Wilson5eddb702010-09-11 13:48:45 +01001518 if (!i915_pipe_enabled(dev, pipe))
Jesse Barnes71e0ffa2009-01-08 10:42:15 -08001519 return -EINVAL;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001520
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001521 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Jesse Barnesf796cf82011-04-07 13:58:17 -07001522 if (INTEL_INFO(dev)->gen >= 4)
Keith Packard7c463582008-11-04 02:03:27 -08001523 i915_enable_pipestat(dev_priv, pipe,
1524 PIPE_START_VBLANK_INTERRUPT_ENABLE);
Keith Packarde9d21d72008-10-16 11:31:38 -07001525 else
Keith Packard7c463582008-11-04 02:03:27 -08001526 i915_enable_pipestat(dev_priv, pipe,
1527 PIPE_VBLANK_INTERRUPT_ENABLE);
Chris Wilson8692d00e2011-02-05 10:08:21 +00001528
1529 /* maintain vblank delivery even in deep C-states */
1530 if (dev_priv->info->gen == 3)
1531 I915_WRITE(INSTPM, INSTPM_AGPBUSY_DIS << 16);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001532 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
Chris Wilson8692d00e2011-02-05 10:08:21 +00001533
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001534 return 0;
1535}
1536
Jesse Barnesf71d4af2011-06-28 13:00:41 -07001537static int ironlake_enable_vblank(struct drm_device *dev, int pipe)
Jesse Barnesf796cf82011-04-07 13:58:17 -07001538{
1539 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
1540 unsigned long irqflags;
1541
1542 if (!i915_pipe_enabled(dev, pipe))
1543 return -EINVAL;
1544
1545 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
1546 ironlake_enable_display_irq(dev_priv, (pipe == 0) ?
Akshay Joshi0206e352011-08-16 15:34:10 -04001547 DE_PIPEA_VBLANK : DE_PIPEB_VBLANK);
Jesse Barnesf796cf82011-04-07 13:58:17 -07001548 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
1549
1550 return 0;
1551}
1552
Jesse Barnesf71d4af2011-06-28 13:00:41 -07001553static int ivybridge_enable_vblank(struct drm_device *dev, int pipe)
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07001554{
1555 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
1556 unsigned long irqflags;
1557
1558 if (!i915_pipe_enabled(dev, pipe))
1559 return -EINVAL;
1560
1561 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
1562 ironlake_enable_display_irq(dev_priv, (pipe == 0) ?
1563 DE_PIPEA_VBLANK_IVB : DE_PIPEB_VBLANK_IVB);
1564 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
1565
1566 return 0;
1567}
1568
Keith Packard42f52ef2008-10-18 19:39:29 -07001569/* Called from drm generic code, passed 'crtc' which
1570 * we use as a pipe index
1571 */
Jesse Barnesf71d4af2011-06-28 13:00:41 -07001572static void i915_disable_vblank(struct drm_device *dev, int pipe)
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001573{
1574 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Keith Packarde9d21d72008-10-16 11:31:38 -07001575 unsigned long irqflags;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001576
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001577 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Chris Wilson8692d00e2011-02-05 10:08:21 +00001578 if (dev_priv->info->gen == 3)
1579 I915_WRITE(INSTPM,
1580 INSTPM_AGPBUSY_DIS << 16 | INSTPM_AGPBUSY_DIS);
1581
Jesse Barnesf796cf82011-04-07 13:58:17 -07001582 i915_disable_pipestat(dev_priv, pipe,
1583 PIPE_VBLANK_INTERRUPT_ENABLE |
1584 PIPE_START_VBLANK_INTERRUPT_ENABLE);
1585 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
1586}
1587
Jesse Barnesf71d4af2011-06-28 13:00:41 -07001588static void ironlake_disable_vblank(struct drm_device *dev, int pipe)
Jesse Barnesf796cf82011-04-07 13:58:17 -07001589{
1590 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
1591 unsigned long irqflags;
1592
1593 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
1594 ironlake_disable_display_irq(dev_priv, (pipe == 0) ?
Akshay Joshi0206e352011-08-16 15:34:10 -04001595 DE_PIPEA_VBLANK : DE_PIPEB_VBLANK);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001596 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001597}
1598
Jesse Barnesf71d4af2011-06-28 13:00:41 -07001599static void ivybridge_disable_vblank(struct drm_device *dev, int pipe)
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07001600{
1601 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
1602 unsigned long irqflags;
1603
1604 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
1605 ironlake_disable_display_irq(dev_priv, (pipe == 0) ?
1606 DE_PIPEA_VBLANK_IVB : DE_PIPEB_VBLANK_IVB);
1607 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
1608}
1609
Dave Airlie702880f2006-06-24 17:07:34 +10001610/* Set the vblank monitor pipe
1611 */
Eric Anholtc153f452007-09-03 12:06:45 +10001612int i915_vblank_pipe_set(struct drm_device *dev, void *data,
1613 struct drm_file *file_priv)
Dave Airlie702880f2006-06-24 17:07:34 +10001614{
Dave Airlie702880f2006-06-24 17:07:34 +10001615 drm_i915_private_t *dev_priv = dev->dev_private;
Dave Airlie702880f2006-06-24 17:07:34 +10001616
1617 if (!dev_priv) {
Márton Németh3e684ea2008-01-24 15:58:57 +10001618 DRM_ERROR("called with no initialization\n");
Eric Anholt20caafa2007-08-25 19:22:43 +10001619 return -EINVAL;
Dave Airlie702880f2006-06-24 17:07:34 +10001620 }
1621
=?utf-8?q?Michel_D=C3=A4nzer?=5b516942006-10-25 00:08:23 +10001622 return 0;
Dave Airlie702880f2006-06-24 17:07:34 +10001623}
1624
Eric Anholtc153f452007-09-03 12:06:45 +10001625int i915_vblank_pipe_get(struct drm_device *dev, void *data,
1626 struct drm_file *file_priv)
Dave Airlie702880f2006-06-24 17:07:34 +10001627{
Dave Airlie702880f2006-06-24 17:07:34 +10001628 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholtc153f452007-09-03 12:06:45 +10001629 drm_i915_vblank_pipe_t *pipe = data;
Dave Airlie702880f2006-06-24 17:07:34 +10001630
1631 if (!dev_priv) {
Márton Németh3e684ea2008-01-24 15:58:57 +10001632 DRM_ERROR("called with no initialization\n");
Eric Anholt20caafa2007-08-25 19:22:43 +10001633 return -EINVAL;
Dave Airlie702880f2006-06-24 17:07:34 +10001634 }
1635
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001636 pipe->pipe = DRM_I915_VBLANK_PIPE_A | DRM_I915_VBLANK_PIPE_B;
Eric Anholtc153f452007-09-03 12:06:45 +10001637
Dave Airlie702880f2006-06-24 17:07:34 +10001638 return 0;
1639}
1640
=?utf-8?q?Michel_D=C3=A4nzer?=a6b54f32006-10-24 23:37:43 +10001641/**
1642 * Schedule buffer swap at given vertical blank.
1643 */
Eric Anholtc153f452007-09-03 12:06:45 +10001644int i915_vblank_swap(struct drm_device *dev, void *data,
1645 struct drm_file *file_priv)
=?utf-8?q?Michel_D=C3=A4nzer?=a6b54f32006-10-24 23:37:43 +10001646{
Eric Anholtbd95e0a2008-11-04 12:01:24 -08001647 /* The delayed swap mechanism was fundamentally racy, and has been
1648 * removed. The model was that the client requested a delayed flip/swap
1649 * from the kernel, then waited for vblank before continuing to perform
1650 * rendering. The problem was that the kernel might wake the client
1651 * up before it dispatched the vblank swap (since the lock has to be
1652 * held while touching the ringbuffer), in which case the client would
1653 * clear and start the next frame before the swap occurred, and
1654 * flicker would occur in addition to likely missing the vblank.
1655 *
1656 * In the absence of this ioctl, userland falls back to a correct path
1657 * of waiting for a vblank, then dispatching the swap on its own.
1658 * Context switching to userland and back is plenty fast enough for
1659 * meeting the requirements of vblank swapping.
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001660 */
Eric Anholtbd95e0a2008-11-04 12:01:24 -08001661 return -EINVAL;
=?utf-8?q?Michel_D=C3=A4nzer?=a6b54f32006-10-24 23:37:43 +10001662}
1663
Chris Wilson893eead2010-10-27 14:44:35 +01001664static u32
1665ring_last_seqno(struct intel_ring_buffer *ring)
Zou Nan hai852835f2010-05-21 09:08:56 +08001666{
Chris Wilson893eead2010-10-27 14:44:35 +01001667 return list_entry(ring->request_list.prev,
1668 struct drm_i915_gem_request, list)->seqno;
1669}
1670
1671static bool i915_hangcheck_ring_idle(struct intel_ring_buffer *ring, bool *err)
1672{
1673 if (list_empty(&ring->request_list) ||
1674 i915_seqno_passed(ring->get_seqno(ring), ring_last_seqno(ring))) {
1675 /* Issue a wake-up to catch stuck h/w. */
Chris Wilsonb2223492010-10-27 15:27:33 +01001676 if (ring->waiting_seqno && waitqueue_active(&ring->irq_queue)) {
Chris Wilson893eead2010-10-27 14:44:35 +01001677 DRM_ERROR("Hangcheck timer elapsed... %s idle [waiting on %d, at %d], missed IRQ?\n",
1678 ring->name,
Chris Wilsonb2223492010-10-27 15:27:33 +01001679 ring->waiting_seqno,
Chris Wilson893eead2010-10-27 14:44:35 +01001680 ring->get_seqno(ring));
1681 wake_up_all(&ring->irq_queue);
1682 *err = true;
1683 }
1684 return true;
1685 }
1686 return false;
Ben Gamarif65d9422009-09-14 17:48:44 -04001687}
1688
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001689static bool kick_ring(struct intel_ring_buffer *ring)
1690{
1691 struct drm_device *dev = ring->dev;
1692 struct drm_i915_private *dev_priv = dev->dev_private;
1693 u32 tmp = I915_READ_CTL(ring);
1694 if (tmp & RING_WAIT) {
1695 DRM_ERROR("Kicking stuck wait on %s\n",
1696 ring->name);
1697 I915_WRITE_CTL(ring, tmp);
1698 return true;
1699 }
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001700 return false;
1701}
1702
Ben Gamarif65d9422009-09-14 17:48:44 -04001703/**
1704 * This is called when the chip hasn't reported back with completed
1705 * batchbuffers in a long time. The first time this is called we simply record
1706 * ACTHD. If ACTHD hasn't changed by the time the hangcheck timer elapses
1707 * again, we assume the chip is wedged and try to fix it.
1708 */
1709void i915_hangcheck_elapsed(unsigned long data)
1710{
1711 struct drm_device *dev = (struct drm_device *)data;
1712 drm_i915_private_t *dev_priv = dev->dev_private;
Daniel Vetter097354e2011-11-27 18:58:17 +01001713 uint32_t acthd, instdone, instdone1, acthd_bsd, acthd_blt;
Chris Wilson893eead2010-10-27 14:44:35 +01001714 bool err = false;
1715
Ben Widawsky3e0dc6b2011-06-29 10:26:42 -07001716 if (!i915_enable_hangcheck)
1717 return;
1718
Chris Wilson893eead2010-10-27 14:44:35 +01001719 /* If all work is done then ACTHD clearly hasn't advanced. */
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001720 if (i915_hangcheck_ring_idle(&dev_priv->ring[RCS], &err) &&
1721 i915_hangcheck_ring_idle(&dev_priv->ring[VCS], &err) &&
1722 i915_hangcheck_ring_idle(&dev_priv->ring[BCS], &err)) {
Chris Wilson893eead2010-10-27 14:44:35 +01001723 dev_priv->hangcheck_count = 0;
1724 if (err)
1725 goto repeat;
1726 return;
1727 }
Eric Anholtb9201c12010-01-08 14:25:16 -08001728
Chris Wilsona6c45cf2010-09-17 00:32:17 +01001729 if (INTEL_INFO(dev)->gen < 4) {
Chris Wilsoncbb465e2010-06-06 12:16:24 +01001730 instdone = I915_READ(INSTDONE);
1731 instdone1 = 0;
1732 } else {
Chris Wilsoncbb465e2010-06-06 12:16:24 +01001733 instdone = I915_READ(INSTDONE_I965);
1734 instdone1 = I915_READ(INSTDONE1);
1735 }
Daniel Vetter097354e2011-11-27 18:58:17 +01001736 acthd = intel_ring_get_active_head(&dev_priv->ring[RCS]);
1737 acthd_bsd = HAS_BSD(dev) ?
1738 intel_ring_get_active_head(&dev_priv->ring[VCS]) : 0;
1739 acthd_blt = HAS_BLT(dev) ?
1740 intel_ring_get_active_head(&dev_priv->ring[BCS]) : 0;
Ben Gamarif65d9422009-09-14 17:48:44 -04001741
Chris Wilsoncbb465e2010-06-06 12:16:24 +01001742 if (dev_priv->last_acthd == acthd &&
Daniel Vetter097354e2011-11-27 18:58:17 +01001743 dev_priv->last_acthd_bsd == acthd_bsd &&
1744 dev_priv->last_acthd_blt == acthd_blt &&
Chris Wilsoncbb465e2010-06-06 12:16:24 +01001745 dev_priv->last_instdone == instdone &&
1746 dev_priv->last_instdone1 == instdone1) {
1747 if (dev_priv->hangcheck_count++ > 1) {
1748 DRM_ERROR("Hangcheck timer elapsed... GPU hung\n");
Daniel Vetter653d7be2011-12-14 13:57:21 +01001749 i915_handle_error(dev, true);
Chris Wilson8c80b592010-08-08 20:38:12 +01001750
1751 if (!IS_GEN2(dev)) {
1752 /* Is the chip hanging on a WAIT_FOR_EVENT?
1753 * If so we can simply poke the RB_WAIT bit
1754 * and break the hang. This should work on
1755 * all but the second generation chipsets.
1756 */
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001757 if (kick_ring(&dev_priv->ring[RCS]))
Chris Wilson893eead2010-10-27 14:44:35 +01001758 goto repeat;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001759
1760 if (HAS_BSD(dev) &&
1761 kick_ring(&dev_priv->ring[VCS]))
1762 goto repeat;
1763
1764 if (HAS_BLT(dev) &&
1765 kick_ring(&dev_priv->ring[BCS]))
1766 goto repeat;
Chris Wilson8c80b592010-08-08 20:38:12 +01001767 }
1768
Chris Wilsoncbb465e2010-06-06 12:16:24 +01001769 return;
1770 }
1771 } else {
1772 dev_priv->hangcheck_count = 0;
1773
1774 dev_priv->last_acthd = acthd;
Daniel Vetter097354e2011-11-27 18:58:17 +01001775 dev_priv->last_acthd_bsd = acthd_bsd;
1776 dev_priv->last_acthd_blt = acthd_blt;
Chris Wilsoncbb465e2010-06-06 12:16:24 +01001777 dev_priv->last_instdone = instdone;
1778 dev_priv->last_instdone1 = instdone1;
1779 }
Ben Gamarif65d9422009-09-14 17:48:44 -04001780
Chris Wilson893eead2010-10-27 14:44:35 +01001781repeat:
Ben Gamarif65d9422009-09-14 17:48:44 -04001782 /* Reset timer case chip hangs without another request being added */
Chris Wilsonb3b079d2010-09-13 23:44:34 +01001783 mod_timer(&dev_priv->hangcheck_timer,
1784 jiffies + msecs_to_jiffies(DRM_I915_HANGCHECK_PERIOD));
Ben Gamarif65d9422009-09-14 17:48:44 -04001785}
1786
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787/* drm_dma.h hooks
1788*/
Jesse Barnesf71d4af2011-06-28 13:00:41 -07001789static void ironlake_irq_preinstall(struct drm_device *dev)
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001790{
1791 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
1792
Jesse Barnes46979952011-04-07 13:53:55 -07001793 atomic_set(&dev_priv->irq_received, 0);
1794
1795 INIT_WORK(&dev_priv->hotplug_work, i915_hotplug_work_func);
1796 INIT_WORK(&dev_priv->error_work, i915_error_work_func);
Jesse Barnes9e3c2562011-05-18 13:51:43 -07001797 if (IS_GEN6(dev) || IS_IVYBRIDGE(dev))
1798 INIT_WORK(&dev_priv->rps_work, gen6_pm_rps_work);
Jesse Barnes46979952011-04-07 13:53:55 -07001799
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001800 I915_WRITE(HWSTAM, 0xeffe);
Daniel Vetterbdfcdb62012-01-05 01:05:26 +01001801
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001802 /* XXX hotplug from PCH */
1803
1804 I915_WRITE(DEIMR, 0xffffffff);
1805 I915_WRITE(DEIER, 0x0);
Chris Wilson3143a2b2010-11-16 15:55:10 +00001806 POSTING_READ(DEIER);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001807
1808 /* and GT */
1809 I915_WRITE(GTIMR, 0xffffffff);
1810 I915_WRITE(GTIER, 0x0);
Chris Wilson3143a2b2010-11-16 15:55:10 +00001811 POSTING_READ(GTIER);
Zhenyu Wangc6501562009-11-03 18:57:21 +00001812
1813 /* south display irq */
1814 I915_WRITE(SDEIMR, 0xffffffff);
1815 I915_WRITE(SDEIER, 0x0);
Chris Wilson3143a2b2010-11-16 15:55:10 +00001816 POSTING_READ(SDEIER);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001817}
1818
Keith Packard7fe0b972011-09-19 13:31:02 -07001819/*
1820 * Enable digital hotplug on the PCH, and configure the DP short pulse
1821 * duration to 2ms (which is the minimum in the Display Port spec)
1822 *
1823 * This register is the same on all known PCH chips.
1824 */
1825
1826static void ironlake_enable_pch_hotplug(struct drm_device *dev)
1827{
1828 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
1829 u32 hotplug;
1830
1831 hotplug = I915_READ(PCH_PORT_HOTPLUG);
1832 hotplug &= ~(PORTD_PULSE_DURATION_MASK|PORTC_PULSE_DURATION_MASK|PORTB_PULSE_DURATION_MASK);
1833 hotplug |= PORTD_HOTPLUG_ENABLE | PORTD_PULSE_DURATION_2ms;
1834 hotplug |= PORTC_HOTPLUG_ENABLE | PORTC_PULSE_DURATION_2ms;
1835 hotplug |= PORTB_HOTPLUG_ENABLE | PORTB_PULSE_DURATION_2ms;
1836 I915_WRITE(PCH_PORT_HOTPLUG, hotplug);
1837}
1838
Jesse Barnesf71d4af2011-06-28 13:00:41 -07001839static int ironlake_irq_postinstall(struct drm_device *dev)
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001840{
1841 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
1842 /* enable kind of interrupts always enabled */
Jesse Barnes013d5aa2010-01-29 11:18:31 -08001843 u32 display_mask = DE_MASTER_IRQ_CONTROL | DE_GSE | DE_PCH_EVENT |
1844 DE_PLANEA_FLIP_DONE | DE_PLANEB_FLIP_DONE;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001845 u32 render_irqs;
Yuanhan Liu2d7b8362010-10-08 10:21:06 +01001846 u32 hotplug_mask;
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001847
Jesse Barnes46979952011-04-07 13:53:55 -07001848 DRM_INIT_WAITQUEUE(&dev_priv->ring[RCS].irq_queue);
1849 if (HAS_BSD(dev))
1850 DRM_INIT_WAITQUEUE(&dev_priv->ring[VCS].irq_queue);
1851 if (HAS_BLT(dev))
1852 DRM_INIT_WAITQUEUE(&dev_priv->ring[BCS].irq_queue);
1853
1854 dev_priv->vblank_pipe = DRM_I915_VBLANK_PIPE_A | DRM_I915_VBLANK_PIPE_B;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001855 dev_priv->irq_mask = ~display_mask;
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001856
1857 /* should always can generate irq */
1858 I915_WRITE(DEIIR, I915_READ(DEIIR));
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001859 I915_WRITE(DEIMR, dev_priv->irq_mask);
1860 I915_WRITE(DEIER, display_mask | DE_PIPEA_VBLANK | DE_PIPEB_VBLANK);
Chris Wilson3143a2b2010-11-16 15:55:10 +00001861 POSTING_READ(DEIER);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001862
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001863 dev_priv->gt_irq_mask = ~0;
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001864
1865 I915_WRITE(GTIIR, I915_READ(GTIIR));
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001866 I915_WRITE(GTIMR, dev_priv->gt_irq_mask);
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001867
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001868 if (IS_GEN6(dev))
1869 render_irqs =
1870 GT_USER_INTERRUPT |
1871 GT_GEN6_BSD_USER_INTERRUPT |
1872 GT_BLT_USER_INTERRUPT;
1873 else
1874 render_irqs =
Chris Wilson88f23b82010-12-05 15:08:31 +00001875 GT_USER_INTERRUPT |
Chris Wilsonc6df5412010-12-15 09:56:50 +00001876 GT_PIPE_NOTIFY |
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001877 GT_BSD_USER_INTERRUPT;
1878 I915_WRITE(GTIER, render_irqs);
Chris Wilson3143a2b2010-11-16 15:55:10 +00001879 POSTING_READ(GTIER);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001880
Yuanhan Liu2d7b8362010-10-08 10:21:06 +01001881 if (HAS_PCH_CPT(dev)) {
Chris Wilson9035a972011-02-16 09:36:05 +00001882 hotplug_mask = (SDE_CRT_HOTPLUG_CPT |
1883 SDE_PORTB_HOTPLUG_CPT |
1884 SDE_PORTC_HOTPLUG_CPT |
1885 SDE_PORTD_HOTPLUG_CPT);
Yuanhan Liu2d7b8362010-10-08 10:21:06 +01001886 } else {
Chris Wilson9035a972011-02-16 09:36:05 +00001887 hotplug_mask = (SDE_CRT_HOTPLUG |
1888 SDE_PORTB_HOTPLUG |
1889 SDE_PORTC_HOTPLUG |
1890 SDE_PORTD_HOTPLUG |
1891 SDE_AUX_MASK);
Yuanhan Liu2d7b8362010-10-08 10:21:06 +01001892 }
1893
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001894 dev_priv->pch_irq_mask = ~hotplug_mask;
Zhenyu Wangc6501562009-11-03 18:57:21 +00001895
1896 I915_WRITE(SDEIIR, I915_READ(SDEIIR));
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001897 I915_WRITE(SDEIMR, dev_priv->pch_irq_mask);
1898 I915_WRITE(SDEIER, hotplug_mask);
Chris Wilson3143a2b2010-11-16 15:55:10 +00001899 POSTING_READ(SDEIER);
Zhenyu Wangc6501562009-11-03 18:57:21 +00001900
Keith Packard7fe0b972011-09-19 13:31:02 -07001901 ironlake_enable_pch_hotplug(dev);
1902
Jesse Barnesf97108d2010-01-29 11:27:07 -08001903 if (IS_IRONLAKE_M(dev)) {
1904 /* Clear & enable PCU event interrupts */
1905 I915_WRITE(DEIIR, DE_PCU_EVENT);
1906 I915_WRITE(DEIER, I915_READ(DEIER) | DE_PCU_EVENT);
1907 ironlake_enable_display_irq(dev_priv, DE_PCU_EVENT);
1908 }
1909
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001910 return 0;
1911}
1912
Jesse Barnesf71d4af2011-06-28 13:00:41 -07001913static int ivybridge_irq_postinstall(struct drm_device *dev)
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07001914{
1915 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
1916 /* enable kind of interrupts always enabled */
1917 u32 display_mask = DE_MASTER_IRQ_CONTROL | DE_GSE_IVB |
1918 DE_PCH_EVENT_IVB | DE_PLANEA_FLIP_DONE_IVB |
1919 DE_PLANEB_FLIP_DONE_IVB;
1920 u32 render_irqs;
1921 u32 hotplug_mask;
1922
1923 DRM_INIT_WAITQUEUE(&dev_priv->ring[RCS].irq_queue);
1924 if (HAS_BSD(dev))
1925 DRM_INIT_WAITQUEUE(&dev_priv->ring[VCS].irq_queue);
1926 if (HAS_BLT(dev))
1927 DRM_INIT_WAITQUEUE(&dev_priv->ring[BCS].irq_queue);
1928
1929 dev_priv->vblank_pipe = DRM_I915_VBLANK_PIPE_A | DRM_I915_VBLANK_PIPE_B;
1930 dev_priv->irq_mask = ~display_mask;
1931
1932 /* should always can generate irq */
1933 I915_WRITE(DEIIR, I915_READ(DEIIR));
1934 I915_WRITE(DEIMR, dev_priv->irq_mask);
1935 I915_WRITE(DEIER, display_mask | DE_PIPEA_VBLANK_IVB |
1936 DE_PIPEB_VBLANK_IVB);
1937 POSTING_READ(DEIER);
1938
1939 dev_priv->gt_irq_mask = ~0;
1940
1941 I915_WRITE(GTIIR, I915_READ(GTIIR));
1942 I915_WRITE(GTIMR, dev_priv->gt_irq_mask);
1943
1944 render_irqs = GT_USER_INTERRUPT | GT_GEN6_BSD_USER_INTERRUPT |
1945 GT_BLT_USER_INTERRUPT;
1946 I915_WRITE(GTIER, render_irqs);
1947 POSTING_READ(GTIER);
1948
1949 hotplug_mask = (SDE_CRT_HOTPLUG_CPT |
1950 SDE_PORTB_HOTPLUG_CPT |
1951 SDE_PORTC_HOTPLUG_CPT |
1952 SDE_PORTD_HOTPLUG_CPT);
1953 dev_priv->pch_irq_mask = ~hotplug_mask;
1954
1955 I915_WRITE(SDEIIR, I915_READ(SDEIIR));
1956 I915_WRITE(SDEIMR, dev_priv->pch_irq_mask);
1957 I915_WRITE(SDEIER, hotplug_mask);
1958 POSTING_READ(SDEIER);
1959
Keith Packard7fe0b972011-09-19 13:31:02 -07001960 ironlake_enable_pch_hotplug(dev);
1961
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07001962 return 0;
1963}
1964
Jesse Barnesf71d4af2011-06-28 13:00:41 -07001965static void i915_driver_irq_preinstall(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966{
1967 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001968 int pipe;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969
Jesse Barnes79e53942008-11-07 14:24:08 -08001970 atomic_set(&dev_priv->irq_received, 0);
1971
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001972 INIT_WORK(&dev_priv->hotplug_work, i915_hotplug_work_func);
Jesse Barnes8a905232009-07-11 16:48:03 -04001973 INIT_WORK(&dev_priv->error_work, i915_error_work_func);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001974
Jesse Barnes5ca58282009-03-31 14:11:15 -07001975 if (I915_HAS_HOTPLUG(dev)) {
1976 I915_WRITE(PORT_HOTPLUG_EN, 0);
1977 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
1978 }
1979
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001980 I915_WRITE(HWSTAM, 0xeffe);
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001981 for_each_pipe(pipe)
1982 I915_WRITE(PIPESTAT(pipe), 0);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001983 I915_WRITE(IMR, 0xffffffff);
Eric Anholted4cb412008-07-29 12:10:39 -07001984 I915_WRITE(IER, 0x0);
Chris Wilson3143a2b2010-11-16 15:55:10 +00001985 POSTING_READ(IER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986}
1987
Jesse Barnesb01f2c32009-12-11 11:07:17 -08001988/*
1989 * Must be called after intel_modeset_init or hotplug interrupts won't be
1990 * enabled correctly.
1991 */
Jesse Barnesf71d4af2011-06-28 13:00:41 -07001992static int i915_driver_irq_postinstall(struct drm_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993{
1994 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Jesse Barnes5ca58282009-03-31 14:11:15 -07001995 u32 enable_mask = I915_INTERRUPT_ENABLE_FIX | I915_INTERRUPT_ENABLE_VAR;
Jesse Barnes63eeaf32009-06-18 16:56:52 -07001996 u32 error_mask;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001997
1998 dev_priv->vblank_pipe = DRM_I915_VBLANK_PIPE_A | DRM_I915_VBLANK_PIPE_B;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001999
Keith Packard7c463582008-11-04 02:03:27 -08002000 /* Unmask the interrupts that we always want on. */
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002001 dev_priv->irq_mask = ~I915_INTERRUPT_ENABLE_FIX;
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +01002002
Keith Packard7c463582008-11-04 02:03:27 -08002003 dev_priv->pipestat[0] = 0;
2004 dev_priv->pipestat[1] = 0;
2005
Jesse Barnes5ca58282009-03-31 14:11:15 -07002006 if (I915_HAS_HOTPLUG(dev)) {
Adam Jacksonc496fa12010-05-27 17:26:45 -04002007 /* Enable in IER... */
2008 enable_mask |= I915_DISPLAY_PORT_INTERRUPT;
2009 /* and unmask in IMR */
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002010 dev_priv->irq_mask &= ~I915_DISPLAY_PORT_INTERRUPT;
Adam Jacksonc496fa12010-05-27 17:26:45 -04002011 }
2012
2013 /*
2014 * Enable some error detection, note the instruction error mask
2015 * bit is reserved, so we leave it masked.
2016 */
2017 if (IS_G4X(dev)) {
2018 error_mask = ~(GM45_ERROR_PAGE_TABLE |
2019 GM45_ERROR_MEM_PRIV |
2020 GM45_ERROR_CP_PRIV |
2021 I915_ERROR_MEMORY_REFRESH);
2022 } else {
2023 error_mask = ~(I915_ERROR_PAGE_TABLE |
2024 I915_ERROR_MEMORY_REFRESH);
2025 }
2026 I915_WRITE(EMR, error_mask);
2027
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002028 I915_WRITE(IMR, dev_priv->irq_mask);
Adam Jacksonc496fa12010-05-27 17:26:45 -04002029 I915_WRITE(IER, enable_mask);
Chris Wilson3143a2b2010-11-16 15:55:10 +00002030 POSTING_READ(IER);
Adam Jacksonc496fa12010-05-27 17:26:45 -04002031
2032 if (I915_HAS_HOTPLUG(dev)) {
Jesse Barnes5ca58282009-03-31 14:11:15 -07002033 u32 hotplug_en = I915_READ(PORT_HOTPLUG_EN);
2034
Jesse Barnesb01f2c32009-12-11 11:07:17 -08002035 /* Note HDMI and DP share bits */
2036 if (dev_priv->hotplug_supported_mask & HDMIB_HOTPLUG_INT_STATUS)
2037 hotplug_en |= HDMIB_HOTPLUG_INT_EN;
2038 if (dev_priv->hotplug_supported_mask & HDMIC_HOTPLUG_INT_STATUS)
2039 hotplug_en |= HDMIC_HOTPLUG_INT_EN;
2040 if (dev_priv->hotplug_supported_mask & HDMID_HOTPLUG_INT_STATUS)
2041 hotplug_en |= HDMID_HOTPLUG_INT_EN;
2042 if (dev_priv->hotplug_supported_mask & SDVOC_HOTPLUG_INT_STATUS)
2043 hotplug_en |= SDVOC_HOTPLUG_INT_EN;
2044 if (dev_priv->hotplug_supported_mask & SDVOB_HOTPLUG_INT_STATUS)
2045 hotplug_en |= SDVOB_HOTPLUG_INT_EN;
Andy Lutomirski2d1c9752010-06-12 05:21:18 -04002046 if (dev_priv->hotplug_supported_mask & CRT_HOTPLUG_INT_STATUS) {
Jesse Barnesb01f2c32009-12-11 11:07:17 -08002047 hotplug_en |= CRT_HOTPLUG_INT_EN;
Andy Lutomirski2d1c9752010-06-12 05:21:18 -04002048
2049 /* Programming the CRT detection parameters tends
2050 to generate a spurious hotplug event about three
2051 seconds later. So just do it once.
2052 */
2053 if (IS_G4X(dev))
2054 hotplug_en |= CRT_HOTPLUG_ACTIVATION_PERIOD_64;
2055 hotplug_en |= CRT_HOTPLUG_VOLTAGE_COMPARE_50;
2056 }
2057
Jesse Barnesb01f2c32009-12-11 11:07:17 -08002058 /* Ignore TV since it's buggy */
2059
Jesse Barnes5ca58282009-03-31 14:11:15 -07002060 I915_WRITE(PORT_HOTPLUG_EN, hotplug_en);
Jesse Barnes5ca58282009-03-31 14:11:15 -07002061 }
2062
Chris Wilson3b617962010-08-24 09:02:58 +01002063 intel_opregion_enable_asle(dev);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07002064
2065 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066}
2067
Jesse Barnesf71d4af2011-06-28 13:00:41 -07002068static void ironlake_irq_uninstall(struct drm_device *dev)
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002069{
2070 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Jesse Barnes46979952011-04-07 13:53:55 -07002071
2072 if (!dev_priv)
2073 return;
2074
2075 dev_priv->vblank_pipe = 0;
2076
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002077 I915_WRITE(HWSTAM, 0xffffffff);
2078
2079 I915_WRITE(DEIMR, 0xffffffff);
2080 I915_WRITE(DEIER, 0x0);
2081 I915_WRITE(DEIIR, I915_READ(DEIIR));
2082
2083 I915_WRITE(GTIMR, 0xffffffff);
2084 I915_WRITE(GTIER, 0x0);
2085 I915_WRITE(GTIIR, I915_READ(GTIIR));
Keith Packard192aac1f2011-09-20 10:12:44 -07002086
2087 I915_WRITE(SDEIMR, 0xffffffff);
2088 I915_WRITE(SDEIER, 0x0);
2089 I915_WRITE(SDEIIR, I915_READ(SDEIIR));
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002090}
2091
Jesse Barnesf71d4af2011-06-28 13:00:41 -07002092static void i915_driver_irq_uninstall(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093{
2094 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08002095 int pipe;
Dave Airlie91e37382006-02-18 15:17:04 +11002096
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097 if (!dev_priv)
2098 return;
2099
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07002100 dev_priv->vblank_pipe = 0;
2101
Jesse Barnes5ca58282009-03-31 14:11:15 -07002102 if (I915_HAS_HOTPLUG(dev)) {
2103 I915_WRITE(PORT_HOTPLUG_EN, 0);
2104 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
2105 }
2106
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07002107 I915_WRITE(HWSTAM, 0xffffffff);
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08002108 for_each_pipe(pipe)
2109 I915_WRITE(PIPESTAT(pipe), 0);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07002110 I915_WRITE(IMR, 0xffffffff);
Eric Anholted4cb412008-07-29 12:10:39 -07002111 I915_WRITE(IER, 0x0);
Dave Airlie91e37382006-02-18 15:17:04 +11002112
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08002113 for_each_pipe(pipe)
2114 I915_WRITE(PIPESTAT(pipe),
2115 I915_READ(PIPESTAT(pipe)) & 0x8000ffff);
Keith Packard7c463582008-11-04 02:03:27 -08002116 I915_WRITE(IIR, I915_READ(IIR));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117}
Jesse Barnesf71d4af2011-06-28 13:00:41 -07002118
2119void intel_irq_init(struct drm_device *dev)
2120{
2121 dev->driver->get_vblank_counter = i915_get_vblank_counter;
2122 dev->max_vblank_count = 0xffffff; /* only 24 bits of frame count */
2123 if (IS_G4X(dev) || IS_GEN5(dev) || IS_GEN6(dev) || IS_IVYBRIDGE(dev)) {
2124 dev->max_vblank_count = 0xffffffff; /* full 32 bit counter */
2125 dev->driver->get_vblank_counter = gm45_get_vblank_counter;
2126 }
2127
Keith Packardc3613de2011-08-12 17:05:54 -07002128 if (drm_core_check_feature(dev, DRIVER_MODESET))
2129 dev->driver->get_vblank_timestamp = i915_get_vblank_timestamp;
2130 else
2131 dev->driver->get_vblank_timestamp = NULL;
Jesse Barnesf71d4af2011-06-28 13:00:41 -07002132 dev->driver->get_scanout_position = i915_get_crtc_scanoutpos;
2133
2134 if (IS_IVYBRIDGE(dev)) {
2135 /* Share pre & uninstall handlers with ILK/SNB */
2136 dev->driver->irq_handler = ivybridge_irq_handler;
2137 dev->driver->irq_preinstall = ironlake_irq_preinstall;
2138 dev->driver->irq_postinstall = ivybridge_irq_postinstall;
2139 dev->driver->irq_uninstall = ironlake_irq_uninstall;
2140 dev->driver->enable_vblank = ivybridge_enable_vblank;
2141 dev->driver->disable_vblank = ivybridge_disable_vblank;
2142 } else if (HAS_PCH_SPLIT(dev)) {
2143 dev->driver->irq_handler = ironlake_irq_handler;
2144 dev->driver->irq_preinstall = ironlake_irq_preinstall;
2145 dev->driver->irq_postinstall = ironlake_irq_postinstall;
2146 dev->driver->irq_uninstall = ironlake_irq_uninstall;
2147 dev->driver->enable_vblank = ironlake_enable_vblank;
2148 dev->driver->disable_vblank = ironlake_disable_vblank;
2149 } else {
2150 dev->driver->irq_preinstall = i915_driver_irq_preinstall;
2151 dev->driver->irq_postinstall = i915_driver_irq_postinstall;
2152 dev->driver->irq_uninstall = i915_driver_irq_uninstall;
2153 dev->driver->irq_handler = i915_driver_irq_handler;
2154 dev->driver->enable_vblank = i915_enable_vblank;
2155 dev->driver->disable_vblank = i915_disable_vblank;
2156 }
2157}