blob: 7701cbd8b07a1e6ad8dec43cc85a11524f2ebe64 [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
Jesse Barnes63eeaf32009-06-18 16:56:52 -070029#include <linux/sysrq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include "drmP.h"
31#include "drm.h"
32#include "i915_drm.h"
33#include "i915_drv.h"
Chris Wilson1c5d22f2009-08-25 11:15:50 +010034#include "i915_trace.h"
Jesse Barnes79e53942008-11-07 14:24:08 -080035#include "intel_drv.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#define MAX_NOPID ((u32)~0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
Keith Packard7c463582008-11-04 02:03:27 -080039/**
40 * Interrupts that are always left unmasked.
41 *
42 * Since pipe events are edge-triggered from the PIPESTAT register to IIR,
43 * we leave them always unmasked in IMR and then control enabling them through
44 * PIPESTAT alone.
45 */
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050046#define I915_INTERRUPT_ENABLE_FIX \
47 (I915_ASLE_INTERRUPT | \
48 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT | \
49 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT | \
50 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT | \
51 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT | \
52 I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT)
Keith Packard7c463582008-11-04 02:03:27 -080053
54/** Interrupts that we mask and unmask at runtime. */
55#define I915_INTERRUPT_ENABLE_VAR (I915_USER_INTERRUPT)
56
Jesse Barnes79e53942008-11-07 14:24:08 -080057#define I915_PIPE_VBLANK_STATUS (PIPE_START_VBLANK_INTERRUPT_STATUS |\
58 PIPE_VBLANK_INTERRUPT_STATUS)
59
60#define I915_PIPE_VBLANK_ENABLE (PIPE_START_VBLANK_INTERRUPT_ENABLE |\
61 PIPE_VBLANK_INTERRUPT_ENABLE)
62
63#define DRM_I915_VBLANK_PIPE_ALL (DRM_I915_VBLANK_PIPE_A | \
64 DRM_I915_VBLANK_PIPE_B)
65
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +010066void
Adam Jacksonf2b115e2009-12-03 17:14:42 -050067ironlake_enable_graphics_irq(drm_i915_private_t *dev_priv, u32 mask)
Zhenyu Wang036a4a72009-06-08 14:40:19 +080068{
69 if ((dev_priv->gt_irq_mask_reg & mask) != 0) {
70 dev_priv->gt_irq_mask_reg &= ~mask;
71 I915_WRITE(GTIMR, dev_priv->gt_irq_mask_reg);
72 (void) I915_READ(GTIMR);
73 }
74}
75
76static inline void
Adam Jacksonf2b115e2009-12-03 17:14:42 -050077ironlake_disable_graphics_irq(drm_i915_private_t *dev_priv, u32 mask)
Zhenyu Wang036a4a72009-06-08 14:40:19 +080078{
79 if ((dev_priv->gt_irq_mask_reg & mask) != mask) {
80 dev_priv->gt_irq_mask_reg |= mask;
81 I915_WRITE(GTIMR, dev_priv->gt_irq_mask_reg);
82 (void) I915_READ(GTIMR);
83 }
84}
85
86/* For display hotplug interrupt */
87void
Adam Jacksonf2b115e2009-12-03 17:14:42 -050088ironlake_enable_display_irq(drm_i915_private_t *dev_priv, u32 mask)
Zhenyu Wang036a4a72009-06-08 14:40:19 +080089{
90 if ((dev_priv->irq_mask_reg & mask) != 0) {
91 dev_priv->irq_mask_reg &= ~mask;
92 I915_WRITE(DEIMR, dev_priv->irq_mask_reg);
93 (void) I915_READ(DEIMR);
94 }
95}
96
97static inline void
Adam Jacksonf2b115e2009-12-03 17:14:42 -050098ironlake_disable_display_irq(drm_i915_private_t *dev_priv, u32 mask)
Zhenyu Wang036a4a72009-06-08 14:40:19 +080099{
100 if ((dev_priv->irq_mask_reg & mask) != mask) {
101 dev_priv->irq_mask_reg |= mask;
102 I915_WRITE(DEIMR, dev_priv->irq_mask_reg);
103 (void) I915_READ(DEIMR);
104 }
105}
106
107void
Eric Anholted4cb412008-07-29 12:10:39 -0700108i915_enable_irq(drm_i915_private_t *dev_priv, u32 mask)
109{
110 if ((dev_priv->irq_mask_reg & mask) != 0) {
111 dev_priv->irq_mask_reg &= ~mask;
112 I915_WRITE(IMR, dev_priv->irq_mask_reg);
113 (void) I915_READ(IMR);
114 }
115}
116
117static inline void
118i915_disable_irq(drm_i915_private_t *dev_priv, u32 mask)
119{
120 if ((dev_priv->irq_mask_reg & mask) != mask) {
121 dev_priv->irq_mask_reg |= mask;
122 I915_WRITE(IMR, dev_priv->irq_mask_reg);
123 (void) I915_READ(IMR);
124 }
125}
126
Keith Packard7c463582008-11-04 02:03:27 -0800127static inline u32
128i915_pipestat(int pipe)
129{
130 if (pipe == 0)
131 return PIPEASTAT;
132 if (pipe == 1)
133 return PIPEBSTAT;
Andrew Morton9c84ba42008-12-01 13:14:08 -0800134 BUG();
Keith Packard7c463582008-11-04 02:03:27 -0800135}
136
137void
138i915_enable_pipestat(drm_i915_private_t *dev_priv, int pipe, u32 mask)
139{
140 if ((dev_priv->pipestat[pipe] & mask) != mask) {
141 u32 reg = i915_pipestat(pipe);
142
143 dev_priv->pipestat[pipe] |= mask;
144 /* Enable the interrupt, clear any pending status */
145 I915_WRITE(reg, dev_priv->pipestat[pipe] | (mask >> 16));
146 (void) I915_READ(reg);
147 }
148}
149
150void
151i915_disable_pipestat(drm_i915_private_t *dev_priv, int pipe, u32 mask)
152{
153 if ((dev_priv->pipestat[pipe] & mask) != 0) {
154 u32 reg = i915_pipestat(pipe);
155
156 dev_priv->pipestat[pipe] &= ~mask;
157 I915_WRITE(reg, dev_priv->pipestat[pipe]);
158 (void) I915_READ(reg);
159 }
160}
161
=?utf-8?q?Michel_D=C3=A4nzer?=a6b54f32006-10-24 23:37:43 +1000162/**
Zhao Yakui01c66882009-10-28 05:10:00 +0000163 * intel_enable_asle - enable ASLE interrupt for OpRegion
164 */
165void intel_enable_asle (struct drm_device *dev)
166{
167 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
168
Eric Anholtc619eed2010-01-28 16:45:52 -0800169 if (HAS_PCH_SPLIT(dev))
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500170 ironlake_enable_display_irq(dev_priv, DE_GSE);
Zhao Yakuiedcb49c2010-04-07 17:11:21 +0800171 else {
Zhao Yakui01c66882009-10-28 05:10:00 +0000172 i915_enable_pipestat(dev_priv, 1,
173 I915_LEGACY_BLC_EVENT_ENABLE);
Zhao Yakuiedcb49c2010-04-07 17:11:21 +0800174 if (IS_I965G(dev))
175 i915_enable_pipestat(dev_priv, 0,
176 I915_LEGACY_BLC_EVENT_ENABLE);
177 }
Zhao Yakui01c66882009-10-28 05:10:00 +0000178}
179
180/**
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700181 * i915_pipe_enabled - check if a pipe is enabled
182 * @dev: DRM device
183 * @pipe: pipe to check
184 *
185 * Reading certain registers when the pipe is disabled can hang the chip.
186 * Use this routine to make sure the PLL is running and the pipe is active
187 * before reading such registers if unsure.
188 */
189static int
190i915_pipe_enabled(struct drm_device *dev, int pipe)
191{
192 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
193 unsigned long pipeconf = pipe ? PIPEBCONF : PIPEACONF;
194
195 if (I915_READ(pipeconf) & PIPEACONF_ENABLE)
196 return 1;
197
198 return 0;
199}
200
Keith Packard42f52ef2008-10-18 19:39:29 -0700201/* Called from drm generic code, passed a 'crtc', which
202 * we use as a pipe index
203 */
204u32 i915_get_vblank_counter(struct drm_device *dev, int pipe)
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700205{
206 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
207 unsigned long high_frame;
208 unsigned long low_frame;
209 u32 high1, high2, low, count;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700210
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700211 high_frame = pipe ? PIPEBFRAMEHIGH : PIPEAFRAMEHIGH;
212 low_frame = pipe ? PIPEBFRAMEPIXEL : PIPEAFRAMEPIXEL;
213
214 if (!i915_pipe_enabled(dev, pipe)) {
Zhao Yakui44d98a62009-10-09 11:39:40 +0800215 DRM_DEBUG_DRIVER("trying to get vblank count for disabled "
216 "pipe %d\n", pipe);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700217 return 0;
218 }
219
220 /*
221 * High & low register fields aren't synchronized, so make sure
222 * we get a low value that's stable across two reads of the high
223 * register.
224 */
225 do {
226 high1 = ((I915_READ(high_frame) & PIPE_FRAME_HIGH_MASK) >>
227 PIPE_FRAME_HIGH_SHIFT);
228 low = ((I915_READ(low_frame) & PIPE_FRAME_LOW_MASK) >>
229 PIPE_FRAME_LOW_SHIFT);
230 high2 = ((I915_READ(high_frame) & PIPE_FRAME_HIGH_MASK) >>
231 PIPE_FRAME_HIGH_SHIFT);
232 } while (high1 != high2);
233
234 count = (high1 << 8) | low;
235
236 return count;
237}
238
Jesse Barnes9880b7a2009-02-06 10:22:41 -0800239u32 gm45_get_vblank_counter(struct drm_device *dev, int pipe)
240{
241 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
242 int reg = pipe ? PIPEB_FRMCOUNT_GM45 : PIPEA_FRMCOUNT_GM45;
243
244 if (!i915_pipe_enabled(dev, pipe)) {
Zhao Yakui44d98a62009-10-09 11:39:40 +0800245 DRM_DEBUG_DRIVER("trying to get vblank count for disabled "
246 "pipe %d\n", pipe);
Jesse Barnes9880b7a2009-02-06 10:22:41 -0800247 return 0;
248 }
249
250 return I915_READ(reg);
251}
252
Jesse Barnes5ca58282009-03-31 14:11:15 -0700253/*
254 * Handle hotplug events outside the interrupt handler proper.
255 */
256static void i915_hotplug_work_func(struct work_struct *work)
257{
258 drm_i915_private_t *dev_priv = container_of(work, drm_i915_private_t,
259 hotplug_work);
260 struct drm_device *dev = dev_priv->dev;
Keith Packardc31c4ba2009-05-06 11:48:58 -0700261 struct drm_mode_config *mode_config = &dev->mode_config;
Zhenyu Wang5bf4c9c2010-03-30 14:39:26 +0800262 struct drm_encoder *encoder;
Jesse Barnes5ca58282009-03-31 14:11:15 -0700263
Zhenyu Wang5bf4c9c2010-03-30 14:39:26 +0800264 if (mode_config->num_encoder) {
265 list_for_each_entry(encoder, &mode_config->encoder_list, head) {
266 struct intel_encoder *intel_encoder = enc_to_intel_encoder(encoder);
Keith Packardc31c4ba2009-05-06 11:48:58 -0700267
Eric Anholt21d40d32010-03-25 11:11:14 -0700268 if (intel_encoder->hot_plug)
269 (*intel_encoder->hot_plug) (intel_encoder);
Keith Packardc31c4ba2009-05-06 11:48:58 -0700270 }
271 }
Jesse Barnes5ca58282009-03-31 14:11:15 -0700272 /* Just fire off a uevent and let userspace tell us what to do */
273 drm_sysfs_hotplug_event(dev);
274}
275
Jesse Barnesf97108d2010-01-29 11:27:07 -0800276static void i915_handle_rps_change(struct drm_device *dev)
277{
278 drm_i915_private_t *dev_priv = dev->dev_private;
Matthew Garrettb5b72e82010-02-02 18:30:47 +0000279 u32 busy_up, busy_down, max_avg, min_avg;
Jesse Barnesf97108d2010-01-29 11:27:07 -0800280 u16 rgvswctl;
281 u8 new_delay = dev_priv->cur_delay;
282
283 I915_WRITE(MEMINTRSTS, I915_READ(MEMINTRSTS) & ~MEMINT_EVAL_CHG);
Matthew Garrettb5b72e82010-02-02 18:30:47 +0000284 busy_up = I915_READ(RCPREVBSYTUPAVG);
285 busy_down = I915_READ(RCPREVBSYTDNAVG);
Jesse Barnesf97108d2010-01-29 11:27:07 -0800286 max_avg = I915_READ(RCBMAXAVG);
287 min_avg = I915_READ(RCBMINAVG);
288
289 /* Handle RCS change request from hw */
Matthew Garrettb5b72e82010-02-02 18:30:47 +0000290 if (busy_up > max_avg) {
Jesse Barnesf97108d2010-01-29 11:27:07 -0800291 if (dev_priv->cur_delay != dev_priv->max_delay)
292 new_delay = dev_priv->cur_delay - 1;
293 if (new_delay < dev_priv->max_delay)
294 new_delay = dev_priv->max_delay;
Matthew Garrettb5b72e82010-02-02 18:30:47 +0000295 } else if (busy_down < min_avg) {
Jesse Barnesf97108d2010-01-29 11:27:07 -0800296 if (dev_priv->cur_delay != dev_priv->min_delay)
297 new_delay = dev_priv->cur_delay + 1;
298 if (new_delay > dev_priv->min_delay)
299 new_delay = dev_priv->min_delay;
300 }
301
302 DRM_DEBUG("rps change requested: %d -> %d\n",
303 dev_priv->cur_delay, new_delay);
304
305 rgvswctl = I915_READ(MEMSWCTL);
306 if (rgvswctl & MEMCTL_CMD_STS) {
Matthew Garrettb5b72e82010-02-02 18:30:47 +0000307 DRM_ERROR("gpu busy, RCS change rejected\n");
308 return; /* still busy with another command */
Jesse Barnesf97108d2010-01-29 11:27:07 -0800309 }
310
311 /* Program the new state */
312 rgvswctl = (MEMCTL_CMD_CHFREQ << MEMCTL_CMD_SHIFT) |
313 (new_delay << MEMCTL_FREQ_SHIFT) | MEMCTL_SFCAVM;
314 I915_WRITE(MEMSWCTL, rgvswctl);
315 POSTING_READ(MEMSWCTL);
316
317 rgvswctl |= MEMCTL_CMD_STS;
318 I915_WRITE(MEMSWCTL, rgvswctl);
319
320 dev_priv->cur_delay = new_delay;
321
322 DRM_DEBUG("rps changed\n");
323
324 return;
325}
326
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500327irqreturn_t ironlake_irq_handler(struct drm_device *dev)
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800328{
329 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
330 int ret = IRQ_NONE;
Dave Airlie3ff99162009-12-08 14:03:47 +1000331 u32 de_iir, gt_iir, de_ier, pch_iir;
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800332 struct drm_i915_master_private *master_priv;
333
Zou, Nanhai2d109a82009-11-06 02:13:01 +0000334 /* disable master interrupt before clearing iir */
335 de_ier = I915_READ(DEIER);
336 I915_WRITE(DEIER, de_ier & ~DE_MASTER_IRQ_CONTROL);
337 (void)I915_READ(DEIER);
338
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800339 de_iir = I915_READ(DEIIR);
340 gt_iir = I915_READ(GTIIR);
Zhenyu Wangc6501562009-11-03 18:57:21 +0000341 pch_iir = I915_READ(SDEIIR);
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800342
Zou Nan haic7c85102010-01-15 10:29:06 +0800343 if (de_iir == 0 && gt_iir == 0 && pch_iir == 0)
344 goto done;
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800345
Zou Nan haic7c85102010-01-15 10:29:06 +0800346 ret = IRQ_HANDLED;
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800347
Zou Nan haic7c85102010-01-15 10:29:06 +0800348 if (dev->primary->master) {
349 master_priv = dev->primary->master->driver_priv;
350 if (master_priv->sarea_priv)
351 master_priv->sarea_priv->last_dispatch =
352 READ_BREADCRUMB(dev_priv);
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800353 }
354
Zou Nan haic7c85102010-01-15 10:29:06 +0800355 if (gt_iir & GT_USER_INTERRUPT) {
356 u32 seqno = i915_get_gem_seqno(dev);
357 dev_priv->mm.irq_gem_seqno = seqno;
358 trace_i915_gem_request_complete(dev, seqno);
359 DRM_WAKEUP(&dev_priv->irq_queue);
360 dev_priv->hangcheck_count = 0;
361 mod_timer(&dev_priv->hangcheck_timer, jiffies + DRM_I915_HANGCHECK_PERIOD);
362 }
363
364 if (de_iir & DE_GSE)
365 ironlake_opregion_gse_intr(dev);
366
Zhenyu Wangf072d2e2010-02-09 09:46:19 +0800367 if (de_iir & DE_PLANEA_FLIP_DONE) {
Jesse Barnes013d5aa2010-01-29 11:18:31 -0800368 intel_prepare_page_flip(dev, 0);
Jesse Barnes013d5aa2010-01-29 11:18:31 -0800369 intel_finish_page_flip(dev, 0);
370 }
371
Zhenyu Wangf072d2e2010-02-09 09:46:19 +0800372 if (de_iir & DE_PLANEB_FLIP_DONE) {
373 intel_prepare_page_flip(dev, 1);
Jesse Barnes013d5aa2010-01-29 11:18:31 -0800374 intel_finish_page_flip(dev, 1);
375 }
Li Pengc062df62010-01-23 00:12:58 +0800376
Zhenyu Wangf072d2e2010-02-09 09:46:19 +0800377 if (de_iir & DE_PIPEA_VBLANK)
378 drm_handle_vblank(dev, 0);
379
380 if (de_iir & DE_PIPEB_VBLANK)
381 drm_handle_vblank(dev, 1);
382
Zou Nan haic7c85102010-01-15 10:29:06 +0800383 /* check event from PCH */
384 if ((de_iir & DE_PCH_EVENT) &&
385 (pch_iir & SDE_HOTPLUG_MASK)) {
386 queue_work(dev_priv->wq, &dev_priv->hotplug_work);
387 }
388
Jesse Barnesf97108d2010-01-29 11:27:07 -0800389 if (de_iir & DE_PCU_EVENT) {
390 I915_WRITE(MEMINTRSTS, I915_READ(MEMINTRSTS));
391 i915_handle_rps_change(dev);
392 }
393
Zou Nan haic7c85102010-01-15 10:29:06 +0800394 /* should clear PCH hotplug event before clear CPU irq */
395 I915_WRITE(SDEIIR, pch_iir);
396 I915_WRITE(GTIIR, gt_iir);
397 I915_WRITE(DEIIR, de_iir);
398
399done:
Zou, Nanhai2d109a82009-11-06 02:13:01 +0000400 I915_WRITE(DEIER, de_ier);
401 (void)I915_READ(DEIER);
402
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800403 return ret;
404}
405
Jesse Barnes8a905232009-07-11 16:48:03 -0400406/**
407 * i915_error_work_func - do process context error handling work
408 * @work: work struct
409 *
410 * Fire an error uevent so userspace can see that a hang or error
411 * was detected.
412 */
413static void i915_error_work_func(struct work_struct *work)
414{
415 drm_i915_private_t *dev_priv = container_of(work, drm_i915_private_t,
416 error_work);
417 struct drm_device *dev = dev_priv->dev;
Ben Gamarif316a422009-09-14 17:48:46 -0400418 char *error_event[] = { "ERROR=1", NULL };
419 char *reset_event[] = { "RESET=1", NULL };
420 char *reset_done_event[] = { "ERROR=0", NULL };
Jesse Barnes8a905232009-07-11 16:48:03 -0400421
Zhao Yakui44d98a62009-10-09 11:39:40 +0800422 DRM_DEBUG_DRIVER("generating error event\n");
Ben Gamarif316a422009-09-14 17:48:46 -0400423 kobject_uevent_env(&dev->primary->kdev.kobj, KOBJ_CHANGE, error_event);
Jesse Barnes8a905232009-07-11 16:48:03 -0400424
Ben Gamariba1234d2009-09-14 17:48:47 -0400425 if (atomic_read(&dev_priv->mm.wedged)) {
Ben Gamarif316a422009-09-14 17:48:46 -0400426 if (IS_I965G(dev)) {
Zhao Yakui44d98a62009-10-09 11:39:40 +0800427 DRM_DEBUG_DRIVER("resetting chip\n");
Ben Gamarif316a422009-09-14 17:48:46 -0400428 kobject_uevent_env(&dev->primary->kdev.kobj, KOBJ_CHANGE, reset_event);
429 if (!i965_reset(dev, GDRST_RENDER)) {
Ben Gamariba1234d2009-09-14 17:48:47 -0400430 atomic_set(&dev_priv->mm.wedged, 0);
Ben Gamarif316a422009-09-14 17:48:46 -0400431 kobject_uevent_env(&dev->primary->kdev.kobj, KOBJ_CHANGE, reset_done_event);
432 }
433 } else {
Zhao Yakui44d98a62009-10-09 11:39:40 +0800434 DRM_DEBUG_DRIVER("reboot required\n");
Ben Gamarif316a422009-09-14 17:48:46 -0400435 }
436 }
Jesse Barnes8a905232009-07-11 16:48:03 -0400437}
438
Chris Wilson9df30792010-02-18 10:24:56 +0000439static struct drm_i915_error_object *
440i915_error_object_create(struct drm_device *dev,
441 struct drm_gem_object *src)
442{
443 struct drm_i915_error_object *dst;
444 struct drm_i915_gem_object *src_priv;
445 int page, page_count;
446
447 if (src == NULL)
448 return NULL;
449
Daniel Vetter23010e42010-03-08 13:35:02 +0100450 src_priv = to_intel_bo(src);
Chris Wilson9df30792010-02-18 10:24:56 +0000451 if (src_priv->pages == NULL)
452 return NULL;
453
454 page_count = src->size / PAGE_SIZE;
455
456 dst = kmalloc(sizeof(*dst) + page_count * sizeof (u32 *), GFP_ATOMIC);
457 if (dst == NULL)
458 return NULL;
459
460 for (page = 0; page < page_count; page++) {
461 void *s, *d = kmalloc(PAGE_SIZE, GFP_ATOMIC);
462 if (d == NULL)
463 goto unwind;
464 s = kmap_atomic(src_priv->pages[page], KM_USER0);
465 memcpy(d, s, PAGE_SIZE);
466 kunmap_atomic(s, KM_USER0);
467 dst->pages[page] = d;
468 }
469 dst->page_count = page_count;
470 dst->gtt_offset = src_priv->gtt_offset;
471
472 return dst;
473
474unwind:
475 while (page--)
476 kfree(dst->pages[page]);
477 kfree(dst);
478 return NULL;
479}
480
481static void
482i915_error_object_free(struct drm_i915_error_object *obj)
483{
484 int page;
485
486 if (obj == NULL)
487 return;
488
489 for (page = 0; page < obj->page_count; page++)
490 kfree(obj->pages[page]);
491
492 kfree(obj);
493}
494
495static void
496i915_error_state_free(struct drm_device *dev,
497 struct drm_i915_error_state *error)
498{
499 i915_error_object_free(error->batchbuffer[0]);
500 i915_error_object_free(error->batchbuffer[1]);
501 i915_error_object_free(error->ringbuffer);
502 kfree(error->active_bo);
503 kfree(error);
504}
505
506static u32
507i915_get_bbaddr(struct drm_device *dev, u32 *ring)
508{
509 u32 cmd;
510
511 if (IS_I830(dev) || IS_845G(dev))
512 cmd = MI_BATCH_BUFFER;
513 else if (IS_I965G(dev))
514 cmd = (MI_BATCH_BUFFER_START | (2 << 6) |
515 MI_BATCH_NON_SECURE_I965);
516 else
517 cmd = (MI_BATCH_BUFFER_START | (2 << 6));
518
519 return ring[0] == cmd ? ring[1] : 0;
520}
521
522static u32
523i915_ringbuffer_last_batch(struct drm_device *dev)
524{
525 struct drm_i915_private *dev_priv = dev->dev_private;
526 u32 head, bbaddr;
527 u32 *ring;
528
529 /* Locate the current position in the ringbuffer and walk back
530 * to find the most recently dispatched batch buffer.
531 */
532 bbaddr = 0;
533 head = I915_READ(PRB0_HEAD) & HEAD_ADDR;
534 ring = (u32 *)(dev_priv->ring.virtual_start + head);
535
536 while (--ring >= (u32 *)dev_priv->ring.virtual_start) {
537 bbaddr = i915_get_bbaddr(dev, ring);
538 if (bbaddr)
539 break;
540 }
541
542 if (bbaddr == 0) {
543 ring = (u32 *)(dev_priv->ring.virtual_start + dev_priv->ring.Size);
544 while (--ring >= (u32 *)dev_priv->ring.virtual_start) {
545 bbaddr = i915_get_bbaddr(dev, ring);
546 if (bbaddr)
547 break;
548 }
549 }
550
551 return bbaddr;
552}
553
Jesse Barnes8a905232009-07-11 16:48:03 -0400554/**
555 * i915_capture_error_state - capture an error record for later analysis
556 * @dev: drm device
557 *
558 * Should be called when an error is detected (either a hang or an error
559 * interrupt) to capture error state from the time of the error. Fills
560 * out a structure which becomes available in debugfs for user level tools
561 * to pick up.
562 */
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700563static void i915_capture_error_state(struct drm_device *dev)
564{
565 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson9df30792010-02-18 10:24:56 +0000566 struct drm_i915_gem_object *obj_priv;
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700567 struct drm_i915_error_state *error;
Chris Wilson9df30792010-02-18 10:24:56 +0000568 struct drm_gem_object *batchbuffer[2];
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700569 unsigned long flags;
Chris Wilson9df30792010-02-18 10:24:56 +0000570 u32 bbaddr;
571 int count;
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700572
573 spin_lock_irqsave(&dev_priv->error_lock, flags);
Chris Wilson9df30792010-02-18 10:24:56 +0000574 error = dev_priv->first_error;
575 spin_unlock_irqrestore(&dev_priv->error_lock, flags);
576 if (error)
577 return;
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700578
579 error = kmalloc(sizeof(*error), GFP_ATOMIC);
580 if (!error) {
Chris Wilson9df30792010-02-18 10:24:56 +0000581 DRM_DEBUG_DRIVER("out of memory, not capturing error state\n");
582 return;
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700583 }
584
Chris Wilson9df30792010-02-18 10:24:56 +0000585 error->seqno = i915_get_gem_seqno(dev);
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700586 error->eir = I915_READ(EIR);
587 error->pgtbl_er = I915_READ(PGTBL_ER);
588 error->pipeastat = I915_READ(PIPEASTAT);
589 error->pipebstat = I915_READ(PIPEBSTAT);
590 error->instpm = I915_READ(INSTPM);
591 if (!IS_I965G(dev)) {
592 error->ipeir = I915_READ(IPEIR);
593 error->ipehr = I915_READ(IPEHR);
594 error->instdone = I915_READ(INSTDONE);
595 error->acthd = I915_READ(ACTHD);
Chris Wilson9df30792010-02-18 10:24:56 +0000596 error->bbaddr = 0;
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700597 } else {
598 error->ipeir = I915_READ(IPEIR_I965);
599 error->ipehr = I915_READ(IPEHR_I965);
600 error->instdone = I915_READ(INSTDONE_I965);
601 error->instps = I915_READ(INSTPS);
602 error->instdone1 = I915_READ(INSTDONE1);
603 error->acthd = I915_READ(ACTHD_I965);
Chris Wilson9df30792010-02-18 10:24:56 +0000604 error->bbaddr = I915_READ64(BB_ADDR);
605 }
606
607 bbaddr = i915_ringbuffer_last_batch(dev);
608
609 /* Grab the current batchbuffer, most likely to have crashed. */
610 batchbuffer[0] = NULL;
611 batchbuffer[1] = NULL;
612 count = 0;
613 list_for_each_entry(obj_priv, &dev_priv->mm.active_list, list) {
614 struct drm_gem_object *obj = obj_priv->obj;
615
616 if (batchbuffer[0] == NULL &&
617 bbaddr >= obj_priv->gtt_offset &&
618 bbaddr < obj_priv->gtt_offset + obj->size)
619 batchbuffer[0] = obj;
620
621 if (batchbuffer[1] == NULL &&
622 error->acthd >= obj_priv->gtt_offset &&
623 error->acthd < obj_priv->gtt_offset + obj->size &&
624 batchbuffer[0] != obj)
625 batchbuffer[1] = obj;
626
627 count++;
628 }
629
630 /* We need to copy these to an anonymous buffer as the simplest
631 * method to avoid being overwritten by userpace.
632 */
633 error->batchbuffer[0] = i915_error_object_create(dev, batchbuffer[0]);
634 error->batchbuffer[1] = i915_error_object_create(dev, batchbuffer[1]);
635
636 /* Record the ringbuffer */
637 error->ringbuffer = i915_error_object_create(dev, dev_priv->ring.ring_obj);
638
639 /* Record buffers on the active list. */
640 error->active_bo = NULL;
641 error->active_bo_count = 0;
642
643 if (count)
644 error->active_bo = kmalloc(sizeof(*error->active_bo)*count,
645 GFP_ATOMIC);
646
647 if (error->active_bo) {
648 int i = 0;
649 list_for_each_entry(obj_priv, &dev_priv->mm.active_list, list) {
650 struct drm_gem_object *obj = obj_priv->obj;
651
652 error->active_bo[i].size = obj->size;
653 error->active_bo[i].name = obj->name;
654 error->active_bo[i].seqno = obj_priv->last_rendering_seqno;
655 error->active_bo[i].gtt_offset = obj_priv->gtt_offset;
656 error->active_bo[i].read_domains = obj->read_domains;
657 error->active_bo[i].write_domain = obj->write_domain;
658 error->active_bo[i].fence_reg = obj_priv->fence_reg;
659 error->active_bo[i].pinned = 0;
660 if (obj_priv->pin_count > 0)
661 error->active_bo[i].pinned = 1;
662 if (obj_priv->user_pin_count > 0)
663 error->active_bo[i].pinned = -1;
664 error->active_bo[i].tiling = obj_priv->tiling_mode;
665 error->active_bo[i].dirty = obj_priv->dirty;
666 error->active_bo[i].purgeable = obj_priv->madv != I915_MADV_WILLNEED;
667
668 if (++i == count)
669 break;
670 }
671 error->active_bo_count = i;
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700672 }
673
Jesse Barnes8a905232009-07-11 16:48:03 -0400674 do_gettimeofday(&error->time);
675
Chris Wilson9df30792010-02-18 10:24:56 +0000676 spin_lock_irqsave(&dev_priv->error_lock, flags);
677 if (dev_priv->first_error == NULL) {
678 dev_priv->first_error = error;
679 error = NULL;
680 }
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700681 spin_unlock_irqrestore(&dev_priv->error_lock, flags);
Chris Wilson9df30792010-02-18 10:24:56 +0000682
683 if (error)
684 i915_error_state_free(dev, error);
685}
686
687void i915_destroy_error_state(struct drm_device *dev)
688{
689 struct drm_i915_private *dev_priv = dev->dev_private;
690 struct drm_i915_error_state *error;
691
692 spin_lock(&dev_priv->error_lock);
693 error = dev_priv->first_error;
694 dev_priv->first_error = NULL;
695 spin_unlock(&dev_priv->error_lock);
696
697 if (error)
698 i915_error_state_free(dev, error);
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700699}
700
Jesse Barnes8a905232009-07-11 16:48:03 -0400701/**
702 * i915_handle_error - handle an error interrupt
703 * @dev: drm device
704 *
705 * Do some basic checking of regsiter state at error interrupt time and
706 * dump it to the syslog. Also call i915_capture_error_state() to make
707 * sure we get a record and make it available in debugfs. Fire a uevent
708 * so userspace knows something bad happened (should trigger collection
709 * of a ring dump etc.).
710 */
Ben Gamariba1234d2009-09-14 17:48:47 -0400711static void i915_handle_error(struct drm_device *dev, bool wedged)
Jesse Barnes8a905232009-07-11 16:48:03 -0400712{
713 struct drm_i915_private *dev_priv = dev->dev_private;
714 u32 eir = I915_READ(EIR);
715 u32 pipea_stats = I915_READ(PIPEASTAT);
716 u32 pipeb_stats = I915_READ(PIPEBSTAT);
717
718 i915_capture_error_state(dev);
719
720 printk(KERN_ERR "render error detected, EIR: 0x%08x\n",
721 eir);
722
723 if (IS_G4X(dev)) {
724 if (eir & (GM45_ERROR_MEM_PRIV | GM45_ERROR_CP_PRIV)) {
725 u32 ipeir = I915_READ(IPEIR_I965);
726
727 printk(KERN_ERR " IPEIR: 0x%08x\n",
728 I915_READ(IPEIR_I965));
729 printk(KERN_ERR " IPEHR: 0x%08x\n",
730 I915_READ(IPEHR_I965));
731 printk(KERN_ERR " INSTDONE: 0x%08x\n",
732 I915_READ(INSTDONE_I965));
733 printk(KERN_ERR " INSTPS: 0x%08x\n",
734 I915_READ(INSTPS));
735 printk(KERN_ERR " INSTDONE1: 0x%08x\n",
736 I915_READ(INSTDONE1));
737 printk(KERN_ERR " ACTHD: 0x%08x\n",
738 I915_READ(ACTHD_I965));
739 I915_WRITE(IPEIR_I965, ipeir);
740 (void)I915_READ(IPEIR_I965);
741 }
742 if (eir & GM45_ERROR_PAGE_TABLE) {
743 u32 pgtbl_err = I915_READ(PGTBL_ER);
744 printk(KERN_ERR "page table error\n");
745 printk(KERN_ERR " PGTBL_ER: 0x%08x\n",
746 pgtbl_err);
747 I915_WRITE(PGTBL_ER, pgtbl_err);
748 (void)I915_READ(PGTBL_ER);
749 }
750 }
751
752 if (IS_I9XX(dev)) {
753 if (eir & I915_ERROR_PAGE_TABLE) {
754 u32 pgtbl_err = I915_READ(PGTBL_ER);
755 printk(KERN_ERR "page table error\n");
756 printk(KERN_ERR " PGTBL_ER: 0x%08x\n",
757 pgtbl_err);
758 I915_WRITE(PGTBL_ER, pgtbl_err);
759 (void)I915_READ(PGTBL_ER);
760 }
761 }
762
763 if (eir & I915_ERROR_MEMORY_REFRESH) {
764 printk(KERN_ERR "memory refresh error\n");
765 printk(KERN_ERR "PIPEASTAT: 0x%08x\n",
766 pipea_stats);
767 printk(KERN_ERR "PIPEBSTAT: 0x%08x\n",
768 pipeb_stats);
769 /* pipestat has already been acked */
770 }
771 if (eir & I915_ERROR_INSTRUCTION) {
772 printk(KERN_ERR "instruction error\n");
773 printk(KERN_ERR " INSTPM: 0x%08x\n",
774 I915_READ(INSTPM));
775 if (!IS_I965G(dev)) {
776 u32 ipeir = I915_READ(IPEIR);
777
778 printk(KERN_ERR " IPEIR: 0x%08x\n",
779 I915_READ(IPEIR));
780 printk(KERN_ERR " IPEHR: 0x%08x\n",
781 I915_READ(IPEHR));
782 printk(KERN_ERR " INSTDONE: 0x%08x\n",
783 I915_READ(INSTDONE));
784 printk(KERN_ERR " ACTHD: 0x%08x\n",
785 I915_READ(ACTHD));
786 I915_WRITE(IPEIR, ipeir);
787 (void)I915_READ(IPEIR);
788 } else {
789 u32 ipeir = I915_READ(IPEIR_I965);
790
791 printk(KERN_ERR " IPEIR: 0x%08x\n",
792 I915_READ(IPEIR_I965));
793 printk(KERN_ERR " IPEHR: 0x%08x\n",
794 I915_READ(IPEHR_I965));
795 printk(KERN_ERR " INSTDONE: 0x%08x\n",
796 I915_READ(INSTDONE_I965));
797 printk(KERN_ERR " INSTPS: 0x%08x\n",
798 I915_READ(INSTPS));
799 printk(KERN_ERR " INSTDONE1: 0x%08x\n",
800 I915_READ(INSTDONE1));
801 printk(KERN_ERR " ACTHD: 0x%08x\n",
802 I915_READ(ACTHD_I965));
803 I915_WRITE(IPEIR_I965, ipeir);
804 (void)I915_READ(IPEIR_I965);
805 }
806 }
807
808 I915_WRITE(EIR, eir);
809 (void)I915_READ(EIR);
810 eir = I915_READ(EIR);
811 if (eir) {
812 /*
813 * some errors might have become stuck,
814 * mask them.
815 */
816 DRM_ERROR("EIR stuck: 0x%08x, masking\n", eir);
817 I915_WRITE(EMR, I915_READ(EMR) | eir);
818 I915_WRITE(IIR, I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT);
819 }
820
Ben Gamariba1234d2009-09-14 17:48:47 -0400821 if (wedged) {
822 atomic_set(&dev_priv->mm.wedged, 1);
823
Ben Gamari11ed50e2009-09-14 17:48:45 -0400824 /*
825 * Wakeup waiting processes so they don't hang
826 */
Ben Gamari11ed50e2009-09-14 17:48:45 -0400827 DRM_WAKEUP(&dev_priv->irq_queue);
828 }
829
Eric Anholt9c9fe1f2009-08-03 16:09:16 -0700830 queue_work(dev_priv->wq, &dev_priv->error_work);
Jesse Barnes8a905232009-07-11 16:48:03 -0400831}
832
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833irqreturn_t i915_driver_irq_handler(DRM_IRQ_ARGS)
834{
Dave Airlie84b1fd12007-07-11 15:53:27 +1000835 struct drm_device *dev = (struct drm_device *) arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000837 struct drm_i915_master_private *master_priv;
Eric Anholtcdfbc412008-11-04 15:50:30 -0800838 u32 iir, new_iir;
839 u32 pipea_stats, pipeb_stats;
Keith Packard05eff842008-11-19 14:03:05 -0800840 u32 vblank_status;
841 u32 vblank_enable;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700842 int vblank = 0;
Keith Packard7c463582008-11-04 02:03:27 -0800843 unsigned long irqflags;
Keith Packard05eff842008-11-19 14:03:05 -0800844 int irq_received;
845 int ret = IRQ_NONE;
Dave Airlieaf6061a2008-05-07 12:15:39 +1000846
Eric Anholt630681d2008-10-06 15:14:12 -0700847 atomic_inc(&dev_priv->irq_received);
848
Eric Anholtbad720f2009-10-22 16:11:14 -0700849 if (HAS_PCH_SPLIT(dev))
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500850 return ironlake_irq_handler(dev);
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800851
Eric Anholted4cb412008-07-29 12:10:39 -0700852 iir = I915_READ(IIR);
Dave Airlieaf6061a2008-05-07 12:15:39 +1000853
Keith Packard05eff842008-11-19 14:03:05 -0800854 if (IS_I965G(dev)) {
855 vblank_status = I915_START_VBLANK_INTERRUPT_STATUS;
856 vblank_enable = PIPE_START_VBLANK_INTERRUPT_ENABLE;
857 } else {
858 vblank_status = I915_VBLANK_INTERRUPT_STATUS;
859 vblank_enable = I915_VBLANK_INTERRUPT_ENABLE;
860 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861
Keith Packard05eff842008-11-19 14:03:05 -0800862 for (;;) {
863 irq_received = iir != 0;
864
865 /* Can't rely on pipestat interrupt bit in iir as it might
866 * have been cleared after the pipestat interrupt was received.
867 * It doesn't set the bit in iir again, but it still produces
868 * interrupts (for non-MSI).
869 */
870 spin_lock_irqsave(&dev_priv->user_irq_lock, irqflags);
871 pipea_stats = I915_READ(PIPEASTAT);
872 pipeb_stats = I915_READ(PIPEBSTAT);
Jesse Barnes79e53942008-11-07 14:24:08 -0800873
Jesse Barnes8a905232009-07-11 16:48:03 -0400874 if (iir & I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT)
Ben Gamariba1234d2009-09-14 17:48:47 -0400875 i915_handle_error(dev, false);
Jesse Barnes8a905232009-07-11 16:48:03 -0400876
Eric Anholtcdfbc412008-11-04 15:50:30 -0800877 /*
878 * Clear the PIPE(A|B)STAT regs before the IIR
879 */
Keith Packard05eff842008-11-19 14:03:05 -0800880 if (pipea_stats & 0x8000ffff) {
Shaohua Li7662c8b2009-06-26 11:23:55 +0800881 if (pipea_stats & PIPE_FIFO_UNDERRUN_STATUS)
Zhao Yakui44d98a62009-10-09 11:39:40 +0800882 DRM_DEBUG_DRIVER("pipe a underrun\n");
Eric Anholtcdfbc412008-11-04 15:50:30 -0800883 I915_WRITE(PIPEASTAT, pipea_stats);
Keith Packard05eff842008-11-19 14:03:05 -0800884 irq_received = 1;
Eric Anholtcdfbc412008-11-04 15:50:30 -0800885 }
Keith Packard7c463582008-11-04 02:03:27 -0800886
Keith Packard05eff842008-11-19 14:03:05 -0800887 if (pipeb_stats & 0x8000ffff) {
Shaohua Li7662c8b2009-06-26 11:23:55 +0800888 if (pipeb_stats & PIPE_FIFO_UNDERRUN_STATUS)
Zhao Yakui44d98a62009-10-09 11:39:40 +0800889 DRM_DEBUG_DRIVER("pipe b underrun\n");
Eric Anholtcdfbc412008-11-04 15:50:30 -0800890 I915_WRITE(PIPEBSTAT, pipeb_stats);
Keith Packard05eff842008-11-19 14:03:05 -0800891 irq_received = 1;
Eric Anholtcdfbc412008-11-04 15:50:30 -0800892 }
Keith Packard05eff842008-11-19 14:03:05 -0800893 spin_unlock_irqrestore(&dev_priv->user_irq_lock, irqflags);
894
895 if (!irq_received)
896 break;
897
898 ret = IRQ_HANDLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899
Jesse Barnes5ca58282009-03-31 14:11:15 -0700900 /* Consume port. Then clear IIR or we'll miss events */
901 if ((I915_HAS_HOTPLUG(dev)) &&
902 (iir & I915_DISPLAY_PORT_INTERRUPT)) {
903 u32 hotplug_status = I915_READ(PORT_HOTPLUG_STAT);
904
Zhao Yakui44d98a62009-10-09 11:39:40 +0800905 DRM_DEBUG_DRIVER("hotplug event received, stat 0x%08x\n",
Jesse Barnes5ca58282009-03-31 14:11:15 -0700906 hotplug_status);
907 if (hotplug_status & dev_priv->hotplug_supported_mask)
Eric Anholt9c9fe1f2009-08-03 16:09:16 -0700908 queue_work(dev_priv->wq,
909 &dev_priv->hotplug_work);
Jesse Barnes5ca58282009-03-31 14:11:15 -0700910
911 I915_WRITE(PORT_HOTPLUG_STAT, hotplug_status);
912 I915_READ(PORT_HOTPLUG_STAT);
913 }
914
Eric Anholtcdfbc412008-11-04 15:50:30 -0800915 I915_WRITE(IIR, iir);
916 new_iir = I915_READ(IIR); /* Flush posted writes */
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +0100917
Dave Airlie7c1c2872008-11-28 14:22:24 +1000918 if (dev->primary->master) {
919 master_priv = dev->primary->master->driver_priv;
920 if (master_priv->sarea_priv)
921 master_priv->sarea_priv->last_dispatch =
922 READ_BREADCRUMB(dev_priv);
923 }
Keith Packard7c463582008-11-04 02:03:27 -0800924
Eric Anholtcdfbc412008-11-04 15:50:30 -0800925 if (iir & I915_USER_INTERRUPT) {
Chris Wilson1c5d22f2009-08-25 11:15:50 +0100926 u32 seqno = i915_get_gem_seqno(dev);
927 dev_priv->mm.irq_gem_seqno = seqno;
928 trace_i915_gem_request_complete(dev, seqno);
Eric Anholtcdfbc412008-11-04 15:50:30 -0800929 DRM_WAKEUP(&dev_priv->irq_queue);
Ben Gamarif65d9422009-09-14 17:48:44 -0400930 dev_priv->hangcheck_count = 0;
931 mod_timer(&dev_priv->hangcheck_timer, jiffies + DRM_I915_HANGCHECK_PERIOD);
Eric Anholtcdfbc412008-11-04 15:50:30 -0800932 }
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700933
Kristian Høgsberg6b95a202009-11-18 11:25:18 -0500934 if (iir & I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT)
935 intel_prepare_page_flip(dev, 0);
936
937 if (iir & I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT)
938 intel_prepare_page_flip(dev, 1);
939
Keith Packard05eff842008-11-19 14:03:05 -0800940 if (pipea_stats & vblank_status) {
Eric Anholtcdfbc412008-11-04 15:50:30 -0800941 vblank++;
942 drm_handle_vblank(dev, 0);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -0500943 intel_finish_page_flip(dev, 0);
Eric Anholtcdfbc412008-11-04 15:50:30 -0800944 }
Eric Anholt673a3942008-07-30 12:06:12 -0700945
Keith Packard05eff842008-11-19 14:03:05 -0800946 if (pipeb_stats & vblank_status) {
Eric Anholtcdfbc412008-11-04 15:50:30 -0800947 vblank++;
948 drm_handle_vblank(dev, 1);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -0500949 intel_finish_page_flip(dev, 1);
Eric Anholtcdfbc412008-11-04 15:50:30 -0800950 }
Keith Packard7c463582008-11-04 02:03:27 -0800951
Zhao Yakuiedcb49c2010-04-07 17:11:21 +0800952 if ((pipea_stats & I915_LEGACY_BLC_EVENT_STATUS) ||
953 (pipeb_stats & I915_LEGACY_BLC_EVENT_STATUS) ||
Eric Anholtcdfbc412008-11-04 15:50:30 -0800954 (iir & I915_ASLE_INTERRUPT))
955 opregion_asle_intr(dev);
Keith Packard7c463582008-11-04 02:03:27 -0800956
Eric Anholtcdfbc412008-11-04 15:50:30 -0800957 /* With MSI, interrupts are only generated when iir
958 * transitions from zero to nonzero. If another bit got
959 * set while we were handling the existing iir bits, then
960 * we would never get another interrupt.
961 *
962 * This is fine on non-MSI as well, as if we hit this path
963 * we avoid exiting the interrupt handler only to generate
964 * another one.
965 *
966 * Note that for MSI this could cause a stray interrupt report
967 * if an interrupt landed in the time between writing IIR and
968 * the posting read. This should be rare enough to never
969 * trigger the 99% of 100,000 interrupts test for disabling
970 * stray interrupts.
971 */
972 iir = new_iir;
Keith Packard05eff842008-11-19 14:03:05 -0800973 }
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700974
Keith Packard05eff842008-11-19 14:03:05 -0800975 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976}
977
Dave Airlieaf6061a2008-05-07 12:15:39 +1000978static int i915_emit_irq(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979{
980 drm_i915_private_t *dev_priv = dev->dev_private;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000981 struct drm_i915_master_private *master_priv = dev->primary->master->driver_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 RING_LOCALS;
983
984 i915_kernel_lost_context(dev);
985
Zhao Yakui44d98a62009-10-09 11:39:40 +0800986 DRM_DEBUG_DRIVER("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987
Kristian Høgsbergc99b0582008-08-20 11:20:13 -0400988 dev_priv->counter++;
Alan Hourihanec29b6692006-08-12 16:29:24 +1000989 if (dev_priv->counter > 0x7FFFFFFFUL)
Kristian Høgsbergc99b0582008-08-20 11:20:13 -0400990 dev_priv->counter = 1;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000991 if (master_priv->sarea_priv)
992 master_priv->sarea_priv->last_enqueue = dev_priv->counter;
Alan Hourihanec29b6692006-08-12 16:29:24 +1000993
Keith Packard0baf8232008-11-08 11:44:14 +1000994 BEGIN_LP_RING(4);
Jesse Barnes585fb112008-07-29 11:54:06 -0700995 OUT_RING(MI_STORE_DWORD_INDEX);
Keith Packard0baf8232008-11-08 11:44:14 +1000996 OUT_RING(I915_BREADCRUMB_INDEX << MI_STORE_DWORD_INDEX_SHIFT);
Alan Hourihanec29b6692006-08-12 16:29:24 +1000997 OUT_RING(dev_priv->counter);
Jesse Barnes585fb112008-07-29 11:54:06 -0700998 OUT_RING(MI_USER_INTERRUPT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 ADVANCE_LP_RING();
Dave Airliebc5f4522007-11-05 12:50:58 +10001000
Alan Hourihanec29b6692006-08-12 16:29:24 +10001001 return dev_priv->counter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002}
1003
Eric Anholt673a3942008-07-30 12:06:12 -07001004void i915_user_irq_get(struct drm_device *dev)
Eric Anholted4cb412008-07-29 12:10:39 -07001005{
1006 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Keith Packarde9d21d72008-10-16 11:31:38 -07001007 unsigned long irqflags;
Eric Anholted4cb412008-07-29 12:10:39 -07001008
Keith Packarde9d21d72008-10-16 11:31:38 -07001009 spin_lock_irqsave(&dev_priv->user_irq_lock, irqflags);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001010 if (dev->irq_enabled && (++dev_priv->user_irq_refcount == 1)) {
Eric Anholtbad720f2009-10-22 16:11:14 -07001011 if (HAS_PCH_SPLIT(dev))
Adam Jacksonf2b115e2009-12-03 17:14:42 -05001012 ironlake_enable_graphics_irq(dev_priv, GT_USER_INTERRUPT);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001013 else
1014 i915_enable_irq(dev_priv, I915_USER_INTERRUPT);
1015 }
Keith Packarde9d21d72008-10-16 11:31:38 -07001016 spin_unlock_irqrestore(&dev_priv->user_irq_lock, irqflags);
Eric Anholted4cb412008-07-29 12:10:39 -07001017}
1018
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001019void i915_user_irq_put(struct drm_device *dev)
Eric Anholted4cb412008-07-29 12:10:39 -07001020{
1021 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Keith Packarde9d21d72008-10-16 11:31:38 -07001022 unsigned long irqflags;
Eric Anholted4cb412008-07-29 12:10:39 -07001023
Keith Packarde9d21d72008-10-16 11:31:38 -07001024 spin_lock_irqsave(&dev_priv->user_irq_lock, irqflags);
Eric Anholted4cb412008-07-29 12:10:39 -07001025 BUG_ON(dev->irq_enabled && dev_priv->user_irq_refcount <= 0);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001026 if (dev->irq_enabled && (--dev_priv->user_irq_refcount == 0)) {
Eric Anholtbad720f2009-10-22 16:11:14 -07001027 if (HAS_PCH_SPLIT(dev))
Adam Jacksonf2b115e2009-12-03 17:14:42 -05001028 ironlake_disable_graphics_irq(dev_priv, GT_USER_INTERRUPT);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001029 else
1030 i915_disable_irq(dev_priv, I915_USER_INTERRUPT);
1031 }
Keith Packarde9d21d72008-10-16 11:31:38 -07001032 spin_unlock_irqrestore(&dev_priv->user_irq_lock, irqflags);
Eric Anholted4cb412008-07-29 12:10:39 -07001033}
1034
Chris Wilson9d34e5d2009-09-24 05:26:06 +01001035void i915_trace_irq_get(struct drm_device *dev, u32 seqno)
1036{
1037 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
1038
1039 if (dev_priv->trace_irq_seqno == 0)
1040 i915_user_irq_get(dev);
1041
1042 dev_priv->trace_irq_seqno = seqno;
1043}
1044
Dave Airlie84b1fd12007-07-11 15:53:27 +10001045static int i915_wait_irq(struct drm_device * dev, int irq_nr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046{
1047 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Dave Airlie7c1c2872008-11-28 14:22:24 +10001048 struct drm_i915_master_private *master_priv = dev->primary->master->driver_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 int ret = 0;
1050
Zhao Yakui44d98a62009-10-09 11:39:40 +08001051 DRM_DEBUG_DRIVER("irq_nr=%d breadcrumb=%d\n", irq_nr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052 READ_BREADCRUMB(dev_priv));
1053
Eric Anholted4cb412008-07-29 12:10:39 -07001054 if (READ_BREADCRUMB(dev_priv) >= irq_nr) {
Dave Airlie7c1c2872008-11-28 14:22:24 +10001055 if (master_priv->sarea_priv)
1056 master_priv->sarea_priv->last_dispatch = READ_BREADCRUMB(dev_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 return 0;
Eric Anholted4cb412008-07-29 12:10:39 -07001058 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059
Dave Airlie7c1c2872008-11-28 14:22:24 +10001060 if (master_priv->sarea_priv)
1061 master_priv->sarea_priv->perf_boxes |= I915_BOX_WAIT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062
Eric Anholted4cb412008-07-29 12:10:39 -07001063 i915_user_irq_get(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 DRM_WAIT_ON(ret, dev_priv->irq_queue, 3 * DRM_HZ,
1065 READ_BREADCRUMB(dev_priv) >= irq_nr);
Eric Anholted4cb412008-07-29 12:10:39 -07001066 i915_user_irq_put(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067
Eric Anholt20caafa2007-08-25 19:22:43 +10001068 if (ret == -EBUSY) {
Márton Németh3e684ea2008-01-24 15:58:57 +10001069 DRM_ERROR("EBUSY -- rec: %d emitted: %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 READ_BREADCRUMB(dev_priv), (int)dev_priv->counter);
1071 }
1072
Dave Airlieaf6061a2008-05-07 12:15:39 +10001073 return ret;
1074}
1075
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076/* Needs the lock as it touches the ring.
1077 */
Eric Anholtc153f452007-09-03 12:06:45 +10001078int i915_irq_emit(struct drm_device *dev, void *data,
1079 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholtc153f452007-09-03 12:06:45 +10001082 drm_i915_irq_emit_t *emit = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 int result;
1084
Eric Anholt07f4f8b2009-04-16 13:46:12 -07001085 if (!dev_priv || !dev_priv->ring.virtual_start) {
Márton Németh3e684ea2008-01-24 15:58:57 +10001086 DRM_ERROR("called with no initialization\n");
Eric Anholt20caafa2007-08-25 19:22:43 +10001087 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088 }
Eric Anholt299eb932009-02-24 22:14:12 -08001089
1090 RING_LOCK_TEST_WITH_RETURN(dev, file_priv);
1091
Eric Anholt546b0972008-09-01 16:45:29 -07001092 mutex_lock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 result = i915_emit_irq(dev);
Eric Anholt546b0972008-09-01 16:45:29 -07001094 mutex_unlock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095
Eric Anholtc153f452007-09-03 12:06:45 +10001096 if (DRM_COPY_TO_USER(emit->irq_seq, &result, sizeof(int))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 DRM_ERROR("copy_to_user\n");
Eric Anholt20caafa2007-08-25 19:22:43 +10001098 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 }
1100
1101 return 0;
1102}
1103
1104/* Doesn't need the hardware lock.
1105 */
Eric Anholtc153f452007-09-03 12:06:45 +10001106int i915_irq_wait(struct drm_device *dev, void *data,
1107 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholtc153f452007-09-03 12:06:45 +10001110 drm_i915_irq_wait_t *irqwait = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111
1112 if (!dev_priv) {
Márton Németh3e684ea2008-01-24 15:58:57 +10001113 DRM_ERROR("called with no initialization\n");
Eric Anholt20caafa2007-08-25 19:22:43 +10001114 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 }
1116
Eric Anholtc153f452007-09-03 12:06:45 +10001117 return i915_wait_irq(dev, irqwait->irq_seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118}
1119
Keith Packard42f52ef2008-10-18 19:39:29 -07001120/* Called from drm generic code, passed 'crtc' which
1121 * we use as a pipe index
1122 */
1123int i915_enable_vblank(struct drm_device *dev, int pipe)
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001124{
1125 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Keith Packarde9d21d72008-10-16 11:31:38 -07001126 unsigned long irqflags;
Jesse Barnes71e0ffa2009-01-08 10:42:15 -08001127 int pipeconf_reg = (pipe == 0) ? PIPEACONF : PIPEBCONF;
1128 u32 pipeconf;
1129
1130 pipeconf = I915_READ(pipeconf_reg);
1131 if (!(pipeconf & PIPEACONF_ENABLE))
1132 return -EINVAL;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001133
Keith Packarde9d21d72008-10-16 11:31:38 -07001134 spin_lock_irqsave(&dev_priv->user_irq_lock, irqflags);
Eric Anholtbad720f2009-10-22 16:11:14 -07001135 if (HAS_PCH_SPLIT(dev))
Li Pengc062df62010-01-23 00:12:58 +08001136 ironlake_enable_display_irq(dev_priv, (pipe == 0) ?
1137 DE_PIPEA_VBLANK: DE_PIPEB_VBLANK);
1138 else if (IS_I965G(dev))
Keith Packard7c463582008-11-04 02:03:27 -08001139 i915_enable_pipestat(dev_priv, pipe,
1140 PIPE_START_VBLANK_INTERRUPT_ENABLE);
Keith Packarde9d21d72008-10-16 11:31:38 -07001141 else
Keith Packard7c463582008-11-04 02:03:27 -08001142 i915_enable_pipestat(dev_priv, pipe,
1143 PIPE_VBLANK_INTERRUPT_ENABLE);
Keith Packarde9d21d72008-10-16 11:31:38 -07001144 spin_unlock_irqrestore(&dev_priv->user_irq_lock, irqflags);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001145 return 0;
1146}
1147
Keith Packard42f52ef2008-10-18 19:39:29 -07001148/* Called from drm generic code, passed 'crtc' which
1149 * we use as a pipe index
1150 */
1151void i915_disable_vblank(struct drm_device *dev, int pipe)
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001152{
1153 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Keith Packarde9d21d72008-10-16 11:31:38 -07001154 unsigned long irqflags;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001155
Keith Packarde9d21d72008-10-16 11:31:38 -07001156 spin_lock_irqsave(&dev_priv->user_irq_lock, irqflags);
Eric Anholtbad720f2009-10-22 16:11:14 -07001157 if (HAS_PCH_SPLIT(dev))
Li Pengc062df62010-01-23 00:12:58 +08001158 ironlake_disable_display_irq(dev_priv, (pipe == 0) ?
1159 DE_PIPEA_VBLANK: DE_PIPEB_VBLANK);
1160 else
1161 i915_disable_pipestat(dev_priv, pipe,
1162 PIPE_VBLANK_INTERRUPT_ENABLE |
1163 PIPE_START_VBLANK_INTERRUPT_ENABLE);
Keith Packarde9d21d72008-10-16 11:31:38 -07001164 spin_unlock_irqrestore(&dev_priv->user_irq_lock, irqflags);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001165}
1166
Jesse Barnes79e53942008-11-07 14:24:08 -08001167void i915_enable_interrupt (struct drm_device *dev)
1168{
1169 struct drm_i915_private *dev_priv = dev->dev_private;
Zhenyu Wange170b032009-06-05 15:38:40 +08001170
Eric Anholtbad720f2009-10-22 16:11:14 -07001171 if (!HAS_PCH_SPLIT(dev))
Zhenyu Wange170b032009-06-05 15:38:40 +08001172 opregion_enable_asle(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08001173 dev_priv->irq_enabled = 1;
1174}
1175
1176
Dave Airlie702880f2006-06-24 17:07:34 +10001177/* Set the vblank monitor pipe
1178 */
Eric Anholtc153f452007-09-03 12:06:45 +10001179int i915_vblank_pipe_set(struct drm_device *dev, void *data,
1180 struct drm_file *file_priv)
Dave Airlie702880f2006-06-24 17:07:34 +10001181{
Dave Airlie702880f2006-06-24 17:07:34 +10001182 drm_i915_private_t *dev_priv = dev->dev_private;
Dave Airlie702880f2006-06-24 17:07:34 +10001183
1184 if (!dev_priv) {
Márton Németh3e684ea2008-01-24 15:58:57 +10001185 DRM_ERROR("called with no initialization\n");
Eric Anholt20caafa2007-08-25 19:22:43 +10001186 return -EINVAL;
Dave Airlie702880f2006-06-24 17:07:34 +10001187 }
1188
=?utf-8?q?Michel_D=C3=A4nzer?=5b516942006-10-25 00:08:23 +10001189 return 0;
Dave Airlie702880f2006-06-24 17:07:34 +10001190}
1191
Eric Anholtc153f452007-09-03 12:06:45 +10001192int i915_vblank_pipe_get(struct drm_device *dev, void *data,
1193 struct drm_file *file_priv)
Dave Airlie702880f2006-06-24 17:07:34 +10001194{
Dave Airlie702880f2006-06-24 17:07:34 +10001195 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholtc153f452007-09-03 12:06:45 +10001196 drm_i915_vblank_pipe_t *pipe = data;
Dave Airlie702880f2006-06-24 17:07:34 +10001197
1198 if (!dev_priv) {
Márton Németh3e684ea2008-01-24 15:58:57 +10001199 DRM_ERROR("called with no initialization\n");
Eric Anholt20caafa2007-08-25 19:22:43 +10001200 return -EINVAL;
Dave Airlie702880f2006-06-24 17:07:34 +10001201 }
1202
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001203 pipe->pipe = DRM_I915_VBLANK_PIPE_A | DRM_I915_VBLANK_PIPE_B;
Eric Anholtc153f452007-09-03 12:06:45 +10001204
Dave Airlie702880f2006-06-24 17:07:34 +10001205 return 0;
1206}
1207
=?utf-8?q?Michel_D=C3=A4nzer?=a6b54f32006-10-24 23:37:43 +10001208/**
1209 * Schedule buffer swap at given vertical blank.
1210 */
Eric Anholtc153f452007-09-03 12:06:45 +10001211int i915_vblank_swap(struct drm_device *dev, void *data,
1212 struct drm_file *file_priv)
=?utf-8?q?Michel_D=C3=A4nzer?=a6b54f32006-10-24 23:37:43 +10001213{
Eric Anholtbd95e0a2008-11-04 12:01:24 -08001214 /* The delayed swap mechanism was fundamentally racy, and has been
1215 * removed. The model was that the client requested a delayed flip/swap
1216 * from the kernel, then waited for vblank before continuing to perform
1217 * rendering. The problem was that the kernel might wake the client
1218 * up before it dispatched the vblank swap (since the lock has to be
1219 * held while touching the ringbuffer), in which case the client would
1220 * clear and start the next frame before the swap occurred, and
1221 * flicker would occur in addition to likely missing the vblank.
1222 *
1223 * In the absence of this ioctl, userland falls back to a correct path
1224 * of waiting for a vblank, then dispatching the swap on its own.
1225 * Context switching to userland and back is plenty fast enough for
1226 * meeting the requirements of vblank swapping.
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001227 */
Eric Anholtbd95e0a2008-11-04 12:01:24 -08001228 return -EINVAL;
=?utf-8?q?Michel_D=C3=A4nzer?=a6b54f32006-10-24 23:37:43 +10001229}
1230
Ben Gamarif65d9422009-09-14 17:48:44 -04001231struct drm_i915_gem_request *i915_get_tail_request(struct drm_device *dev) {
1232 drm_i915_private_t *dev_priv = dev->dev_private;
1233 return list_entry(dev_priv->mm.request_list.prev, struct drm_i915_gem_request, list);
1234}
1235
1236/**
1237 * This is called when the chip hasn't reported back with completed
1238 * batchbuffers in a long time. The first time this is called we simply record
1239 * ACTHD. If ACTHD hasn't changed by the time the hangcheck timer elapses
1240 * again, we assume the chip is wedged and try to fix it.
1241 */
1242void i915_hangcheck_elapsed(unsigned long data)
1243{
1244 struct drm_device *dev = (struct drm_device *)data;
1245 drm_i915_private_t *dev_priv = dev->dev_private;
1246 uint32_t acthd;
Eric Anholtb9201c12010-01-08 14:25:16 -08001247
1248 /* No reset support on this chip yet. */
1249 if (IS_GEN6(dev))
1250 return;
1251
Ben Gamarif65d9422009-09-14 17:48:44 -04001252 if (!IS_I965G(dev))
1253 acthd = I915_READ(ACTHD);
1254 else
1255 acthd = I915_READ(ACTHD_I965);
1256
1257 /* If all work is done then ACTHD clearly hasn't advanced. */
1258 if (list_empty(&dev_priv->mm.request_list) ||
1259 i915_seqno_passed(i915_get_gem_seqno(dev), i915_get_tail_request(dev)->seqno)) {
1260 dev_priv->hangcheck_count = 0;
1261 return;
1262 }
1263
1264 if (dev_priv->last_acthd == acthd && dev_priv->hangcheck_count > 0) {
1265 DRM_ERROR("Hangcheck timer elapsed... GPU hung\n");
Ben Gamariba1234d2009-09-14 17:48:47 -04001266 i915_handle_error(dev, true);
Ben Gamarif65d9422009-09-14 17:48:44 -04001267 return;
1268 }
1269
1270 /* Reset timer case chip hangs without another request being added */
1271 mod_timer(&dev_priv->hangcheck_timer, jiffies + DRM_I915_HANGCHECK_PERIOD);
1272
1273 if (acthd != dev_priv->last_acthd)
1274 dev_priv->hangcheck_count = 0;
1275 else
1276 dev_priv->hangcheck_count++;
1277
1278 dev_priv->last_acthd = acthd;
1279}
1280
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281/* drm_dma.h hooks
1282*/
Adam Jacksonf2b115e2009-12-03 17:14:42 -05001283static void ironlake_irq_preinstall(struct drm_device *dev)
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001284{
1285 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
1286
1287 I915_WRITE(HWSTAM, 0xeffe);
1288
1289 /* XXX hotplug from PCH */
1290
1291 I915_WRITE(DEIMR, 0xffffffff);
1292 I915_WRITE(DEIER, 0x0);
1293 (void) I915_READ(DEIER);
1294
1295 /* and GT */
1296 I915_WRITE(GTIMR, 0xffffffff);
1297 I915_WRITE(GTIER, 0x0);
1298 (void) I915_READ(GTIER);
Zhenyu Wangc6501562009-11-03 18:57:21 +00001299
1300 /* south display irq */
1301 I915_WRITE(SDEIMR, 0xffffffff);
1302 I915_WRITE(SDEIER, 0x0);
1303 (void) I915_READ(SDEIER);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001304}
1305
Adam Jacksonf2b115e2009-12-03 17:14:42 -05001306static int ironlake_irq_postinstall(struct drm_device *dev)
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001307{
1308 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
1309 /* enable kind of interrupts always enabled */
Jesse Barnes013d5aa2010-01-29 11:18:31 -08001310 u32 display_mask = DE_MASTER_IRQ_CONTROL | DE_GSE | DE_PCH_EVENT |
1311 DE_PLANEA_FLIP_DONE | DE_PLANEB_FLIP_DONE;
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001312 u32 render_mask = GT_USER_INTERRUPT;
Zhenyu Wangc6501562009-11-03 18:57:21 +00001313 u32 hotplug_mask = SDE_CRT_HOTPLUG | SDE_PORTB_HOTPLUG |
1314 SDE_PORTC_HOTPLUG | SDE_PORTD_HOTPLUG;
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001315
1316 dev_priv->irq_mask_reg = ~display_mask;
Li Peng643ced92010-01-28 01:05:09 +08001317 dev_priv->de_irq_enable_reg = display_mask | DE_PIPEA_VBLANK | DE_PIPEB_VBLANK;
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001318
1319 /* should always can generate irq */
1320 I915_WRITE(DEIIR, I915_READ(DEIIR));
1321 I915_WRITE(DEIMR, dev_priv->irq_mask_reg);
1322 I915_WRITE(DEIER, dev_priv->de_irq_enable_reg);
1323 (void) I915_READ(DEIER);
1324
1325 /* user interrupt should be enabled, but masked initial */
1326 dev_priv->gt_irq_mask_reg = 0xffffffff;
1327 dev_priv->gt_irq_enable_reg = render_mask;
1328
1329 I915_WRITE(GTIIR, I915_READ(GTIIR));
1330 I915_WRITE(GTIMR, dev_priv->gt_irq_mask_reg);
1331 I915_WRITE(GTIER, dev_priv->gt_irq_enable_reg);
1332 (void) I915_READ(GTIER);
1333
Zhenyu Wangc6501562009-11-03 18:57:21 +00001334 dev_priv->pch_irq_mask_reg = ~hotplug_mask;
1335 dev_priv->pch_irq_enable_reg = hotplug_mask;
1336
1337 I915_WRITE(SDEIIR, I915_READ(SDEIIR));
1338 I915_WRITE(SDEIMR, dev_priv->pch_irq_mask_reg);
1339 I915_WRITE(SDEIER, dev_priv->pch_irq_enable_reg);
1340 (void) I915_READ(SDEIER);
1341
Jesse Barnesf97108d2010-01-29 11:27:07 -08001342 if (IS_IRONLAKE_M(dev)) {
1343 /* Clear & enable PCU event interrupts */
1344 I915_WRITE(DEIIR, DE_PCU_EVENT);
1345 I915_WRITE(DEIER, I915_READ(DEIER) | DE_PCU_EVENT);
1346 ironlake_enable_display_irq(dev_priv, DE_PCU_EVENT);
1347 }
1348
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001349 return 0;
1350}
1351
Dave Airlie84b1fd12007-07-11 15:53:27 +10001352void i915_driver_irq_preinstall(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353{
1354 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
1355
Jesse Barnes79e53942008-11-07 14:24:08 -08001356 atomic_set(&dev_priv->irq_received, 0);
1357
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001358 INIT_WORK(&dev_priv->hotplug_work, i915_hotplug_work_func);
Jesse Barnes8a905232009-07-11 16:48:03 -04001359 INIT_WORK(&dev_priv->error_work, i915_error_work_func);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001360
Eric Anholtbad720f2009-10-22 16:11:14 -07001361 if (HAS_PCH_SPLIT(dev)) {
Adam Jacksonf2b115e2009-12-03 17:14:42 -05001362 ironlake_irq_preinstall(dev);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001363 return;
1364 }
1365
Jesse Barnes5ca58282009-03-31 14:11:15 -07001366 if (I915_HAS_HOTPLUG(dev)) {
1367 I915_WRITE(PORT_HOTPLUG_EN, 0);
1368 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
1369 }
1370
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001371 I915_WRITE(HWSTAM, 0xeffe);
Keith Packard7c463582008-11-04 02:03:27 -08001372 I915_WRITE(PIPEASTAT, 0);
1373 I915_WRITE(PIPEBSTAT, 0);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001374 I915_WRITE(IMR, 0xffffffff);
Eric Anholted4cb412008-07-29 12:10:39 -07001375 I915_WRITE(IER, 0x0);
Keith Packard7c463582008-11-04 02:03:27 -08001376 (void) I915_READ(IER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377}
1378
Jesse Barnesb01f2c32009-12-11 11:07:17 -08001379/*
1380 * Must be called after intel_modeset_init or hotplug interrupts won't be
1381 * enabled correctly.
1382 */
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001383int i915_driver_irq_postinstall(struct drm_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384{
1385 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Jesse Barnes5ca58282009-03-31 14:11:15 -07001386 u32 enable_mask = I915_INTERRUPT_ENABLE_FIX | I915_INTERRUPT_ENABLE_VAR;
Jesse Barnes63eeaf32009-06-18 16:56:52 -07001387 u32 error_mask;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001388
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001389 DRM_INIT_WAITQUEUE(&dev_priv->irq_queue);
1390
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001391 dev_priv->vblank_pipe = DRM_I915_VBLANK_PIPE_A | DRM_I915_VBLANK_PIPE_B;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001392
Eric Anholtbad720f2009-10-22 16:11:14 -07001393 if (HAS_PCH_SPLIT(dev))
Adam Jacksonf2b115e2009-12-03 17:14:42 -05001394 return ironlake_irq_postinstall(dev);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001395
Keith Packard7c463582008-11-04 02:03:27 -08001396 /* Unmask the interrupts that we always want on. */
1397 dev_priv->irq_mask_reg = ~I915_INTERRUPT_ENABLE_FIX;
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +01001398
Keith Packard7c463582008-11-04 02:03:27 -08001399 dev_priv->pipestat[0] = 0;
1400 dev_priv->pipestat[1] = 0;
1401
Jesse Barnes5ca58282009-03-31 14:11:15 -07001402 if (I915_HAS_HOTPLUG(dev)) {
1403 u32 hotplug_en = I915_READ(PORT_HOTPLUG_EN);
1404
Jesse Barnesb01f2c32009-12-11 11:07:17 -08001405 /* Note HDMI and DP share bits */
1406 if (dev_priv->hotplug_supported_mask & HDMIB_HOTPLUG_INT_STATUS)
1407 hotplug_en |= HDMIB_HOTPLUG_INT_EN;
1408 if (dev_priv->hotplug_supported_mask & HDMIC_HOTPLUG_INT_STATUS)
1409 hotplug_en |= HDMIC_HOTPLUG_INT_EN;
1410 if (dev_priv->hotplug_supported_mask & HDMID_HOTPLUG_INT_STATUS)
1411 hotplug_en |= HDMID_HOTPLUG_INT_EN;
1412 if (dev_priv->hotplug_supported_mask & SDVOC_HOTPLUG_INT_STATUS)
1413 hotplug_en |= SDVOC_HOTPLUG_INT_EN;
1414 if (dev_priv->hotplug_supported_mask & SDVOB_HOTPLUG_INT_STATUS)
1415 hotplug_en |= SDVOB_HOTPLUG_INT_EN;
1416 if (dev_priv->hotplug_supported_mask & CRT_HOTPLUG_INT_STATUS)
1417 hotplug_en |= CRT_HOTPLUG_INT_EN;
1418 /* Ignore TV since it's buggy */
1419
Jesse Barnes5ca58282009-03-31 14:11:15 -07001420 I915_WRITE(PORT_HOTPLUG_EN, hotplug_en);
1421
Jesse Barnes5ca58282009-03-31 14:11:15 -07001422 /* Enable in IER... */
1423 enable_mask |= I915_DISPLAY_PORT_INTERRUPT;
1424 /* and unmask in IMR */
1425 i915_enable_irq(dev_priv, I915_DISPLAY_PORT_INTERRUPT);
1426 }
1427
Jesse Barnes63eeaf32009-06-18 16:56:52 -07001428 /*
1429 * Enable some error detection, note the instruction error mask
1430 * bit is reserved, so we leave it masked.
1431 */
1432 if (IS_G4X(dev)) {
1433 error_mask = ~(GM45_ERROR_PAGE_TABLE |
1434 GM45_ERROR_MEM_PRIV |
1435 GM45_ERROR_CP_PRIV |
1436 I915_ERROR_MEMORY_REFRESH);
1437 } else {
1438 error_mask = ~(I915_ERROR_PAGE_TABLE |
1439 I915_ERROR_MEMORY_REFRESH);
1440 }
1441 I915_WRITE(EMR, error_mask);
1442
Keith Packard7c463582008-11-04 02:03:27 -08001443 /* Disable pipe interrupt enables, clear pending pipe status */
1444 I915_WRITE(PIPEASTAT, I915_READ(PIPEASTAT) & 0x8000ffff);
1445 I915_WRITE(PIPEBSTAT, I915_READ(PIPEBSTAT) & 0x8000ffff);
1446 /* Clear pending interrupt status */
1447 I915_WRITE(IIR, I915_READ(IIR));
1448
Jesse Barnes5ca58282009-03-31 14:11:15 -07001449 I915_WRITE(IER, enable_mask);
Keith Packard7c463582008-11-04 02:03:27 -08001450 I915_WRITE(IMR, dev_priv->irq_mask_reg);
Eric Anholted4cb412008-07-29 12:10:39 -07001451 (void) I915_READ(IER);
1452
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +01001453 opregion_enable_asle(dev);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001454
1455 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456}
1457
Adam Jacksonf2b115e2009-12-03 17:14:42 -05001458static void ironlake_irq_uninstall(struct drm_device *dev)
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001459{
1460 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
1461 I915_WRITE(HWSTAM, 0xffffffff);
1462
1463 I915_WRITE(DEIMR, 0xffffffff);
1464 I915_WRITE(DEIER, 0x0);
1465 I915_WRITE(DEIIR, I915_READ(DEIIR));
1466
1467 I915_WRITE(GTIMR, 0xffffffff);
1468 I915_WRITE(GTIER, 0x0);
1469 I915_WRITE(GTIIR, I915_READ(GTIIR));
1470}
1471
Dave Airlie84b1fd12007-07-11 15:53:27 +10001472void i915_driver_irq_uninstall(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473{
1474 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Dave Airlie91e37382006-02-18 15:17:04 +11001475
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476 if (!dev_priv)
1477 return;
1478
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001479 dev_priv->vblank_pipe = 0;
1480
Eric Anholtbad720f2009-10-22 16:11:14 -07001481 if (HAS_PCH_SPLIT(dev)) {
Adam Jacksonf2b115e2009-12-03 17:14:42 -05001482 ironlake_irq_uninstall(dev);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001483 return;
1484 }
1485
Jesse Barnes5ca58282009-03-31 14:11:15 -07001486 if (I915_HAS_HOTPLUG(dev)) {
1487 I915_WRITE(PORT_HOTPLUG_EN, 0);
1488 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
1489 }
1490
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001491 I915_WRITE(HWSTAM, 0xffffffff);
Keith Packard7c463582008-11-04 02:03:27 -08001492 I915_WRITE(PIPEASTAT, 0);
1493 I915_WRITE(PIPEBSTAT, 0);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001494 I915_WRITE(IMR, 0xffffffff);
Eric Anholted4cb412008-07-29 12:10:39 -07001495 I915_WRITE(IER, 0x0);
Dave Airlie91e37382006-02-18 15:17:04 +11001496
Keith Packard7c463582008-11-04 02:03:27 -08001497 I915_WRITE(PIPEASTAT, I915_READ(PIPEASTAT) & 0x8000ffff);
1498 I915_WRITE(PIPEBSTAT, I915_READ(PIPEBSTAT) & 0x8000ffff);
1499 I915_WRITE(IIR, I915_READ(IIR));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500}