blob: b1e7655288d874e666ac12e4262a72a680555ea7 [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>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090030#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include "drmP.h"
32#include "drm.h"
33#include "i915_drm.h"
34#include "i915_drv.h"
Chris Wilson1c5d22f2009-08-25 11:15:50 +010035#include "i915_trace.h"
Jesse Barnes79e53942008-11-07 14:24:08 -080036#include "intel_drv.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#define MAX_NOPID ((u32)~0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
Keith Packard7c463582008-11-04 02:03:27 -080040/**
41 * Interrupts that are always left unmasked.
42 *
43 * Since pipe events are edge-triggered from the PIPESTAT register to IIR,
44 * we leave them always unmasked in IMR and then control enabling them through
45 * PIPESTAT alone.
46 */
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050047#define I915_INTERRUPT_ENABLE_FIX \
48 (I915_ASLE_INTERRUPT | \
49 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT | \
50 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT | \
51 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT | \
52 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT | \
53 I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT)
Keith Packard7c463582008-11-04 02:03:27 -080054
55/** Interrupts that we mask and unmask at runtime. */
Zou Nan haid1b851f2010-05-21 09:08:57 +080056#define I915_INTERRUPT_ENABLE_VAR (I915_USER_INTERRUPT | I915_BSD_USER_INTERRUPT)
Keith Packard7c463582008-11-04 02:03:27 -080057
Jesse Barnes79e53942008-11-07 14:24:08 -080058#define I915_PIPE_VBLANK_STATUS (PIPE_START_VBLANK_INTERRUPT_STATUS |\
59 PIPE_VBLANK_INTERRUPT_STATUS)
60
61#define I915_PIPE_VBLANK_ENABLE (PIPE_START_VBLANK_INTERRUPT_ENABLE |\
62 PIPE_VBLANK_INTERRUPT_ENABLE)
63
64#define DRM_I915_VBLANK_PIPE_ALL (DRM_I915_VBLANK_PIPE_A | \
65 DRM_I915_VBLANK_PIPE_B)
66
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +010067void
Adam Jacksonf2b115e2009-12-03 17:14:42 -050068ironlake_enable_graphics_irq(drm_i915_private_t *dev_priv, u32 mask)
Zhenyu Wang036a4a72009-06-08 14:40:19 +080069{
70 if ((dev_priv->gt_irq_mask_reg & mask) != 0) {
71 dev_priv->gt_irq_mask_reg &= ~mask;
72 I915_WRITE(GTIMR, dev_priv->gt_irq_mask_reg);
73 (void) I915_READ(GTIMR);
74 }
75}
76
Eric Anholt62fdfea2010-05-21 13:26:39 -070077void
Adam Jacksonf2b115e2009-12-03 17:14:42 -050078ironlake_disable_graphics_irq(drm_i915_private_t *dev_priv, u32 mask)
Zhenyu Wang036a4a72009-06-08 14:40:19 +080079{
80 if ((dev_priv->gt_irq_mask_reg & mask) != mask) {
81 dev_priv->gt_irq_mask_reg |= mask;
82 I915_WRITE(GTIMR, dev_priv->gt_irq_mask_reg);
83 (void) I915_READ(GTIMR);
84 }
85}
86
87/* For display hotplug interrupt */
Chris Wilson995b6762010-08-20 13:23:26 +010088static void
Adam Jacksonf2b115e2009-12-03 17:14:42 -050089ironlake_enable_display_irq(drm_i915_private_t *dev_priv, u32 mask)
Zhenyu Wang036a4a72009-06-08 14:40:19 +080090{
91 if ((dev_priv->irq_mask_reg & mask) != 0) {
92 dev_priv->irq_mask_reg &= ~mask;
93 I915_WRITE(DEIMR, dev_priv->irq_mask_reg);
94 (void) I915_READ(DEIMR);
95 }
96}
97
98static inline void
Adam Jacksonf2b115e2009-12-03 17:14:42 -050099ironlake_disable_display_irq(drm_i915_private_t *dev_priv, u32 mask)
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800100{
101 if ((dev_priv->irq_mask_reg & mask) != mask) {
102 dev_priv->irq_mask_reg |= mask;
103 I915_WRITE(DEIMR, dev_priv->irq_mask_reg);
104 (void) I915_READ(DEIMR);
105 }
106}
107
108void
Eric Anholted4cb412008-07-29 12:10:39 -0700109i915_enable_irq(drm_i915_private_t *dev_priv, u32 mask)
110{
111 if ((dev_priv->irq_mask_reg & mask) != 0) {
112 dev_priv->irq_mask_reg &= ~mask;
113 I915_WRITE(IMR, dev_priv->irq_mask_reg);
114 (void) I915_READ(IMR);
115 }
116}
117
Eric Anholt62fdfea2010-05-21 13:26:39 -0700118void
Eric Anholted4cb412008-07-29 12:10:39 -0700119i915_disable_irq(drm_i915_private_t *dev_priv, u32 mask)
120{
121 if ((dev_priv->irq_mask_reg & mask) != mask) {
122 dev_priv->irq_mask_reg |= mask;
123 I915_WRITE(IMR, dev_priv->irq_mask_reg);
124 (void) I915_READ(IMR);
125 }
126}
127
Keith Packard7c463582008-11-04 02:03:27 -0800128static inline u32
129i915_pipestat(int pipe)
130{
131 if (pipe == 0)
132 return PIPEASTAT;
133 if (pipe == 1)
134 return PIPEBSTAT;
Andrew Morton9c84ba42008-12-01 13:14:08 -0800135 BUG();
Keith Packard7c463582008-11-04 02:03:27 -0800136}
137
138void
139i915_enable_pipestat(drm_i915_private_t *dev_priv, int pipe, u32 mask)
140{
141 if ((dev_priv->pipestat[pipe] & mask) != mask) {
142 u32 reg = i915_pipestat(pipe);
143
144 dev_priv->pipestat[pipe] |= mask;
145 /* Enable the interrupt, clear any pending status */
146 I915_WRITE(reg, dev_priv->pipestat[pipe] | (mask >> 16));
147 (void) I915_READ(reg);
148 }
149}
150
151void
152i915_disable_pipestat(drm_i915_private_t *dev_priv, int pipe, u32 mask)
153{
154 if ((dev_priv->pipestat[pipe] & mask) != 0) {
155 u32 reg = i915_pipestat(pipe);
156
157 dev_priv->pipestat[pipe] &= ~mask;
158 I915_WRITE(reg, dev_priv->pipestat[pipe]);
159 (void) I915_READ(reg);
160 }
161}
162
=?utf-8?q?Michel_D=C3=A4nzer?=a6b54f32006-10-24 23:37:43 +1000163/**
Zhao Yakui01c66882009-10-28 05:10:00 +0000164 * intel_enable_asle - enable ASLE interrupt for OpRegion
165 */
166void intel_enable_asle (struct drm_device *dev)
167{
168 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
169
Eric Anholtc619eed2010-01-28 16:45:52 -0800170 if (HAS_PCH_SPLIT(dev))
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500171 ironlake_enable_display_irq(dev_priv, DE_GSE);
Zhao Yakuiedcb49c2010-04-07 17:11:21 +0800172 else {
Zhao Yakui01c66882009-10-28 05:10:00 +0000173 i915_enable_pipestat(dev_priv, 1,
Jesse Barnesd874bcf2010-06-30 13:16:00 -0700174 PIPE_LEGACY_BLC_EVENT_ENABLE);
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100175 if (INTEL_INFO(dev)->gen >= 4)
Zhao Yakuiedcb49c2010-04-07 17:11:21 +0800176 i915_enable_pipestat(dev_priv, 0,
Jesse Barnesd874bcf2010-06-30 13:16:00 -0700177 PIPE_LEGACY_BLC_EVENT_ENABLE);
Zhao Yakuiedcb49c2010-04-07 17:11:21 +0800178 }
Zhao Yakui01c66882009-10-28 05:10:00 +0000179}
180
181/**
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700182 * i915_pipe_enabled - check if a pipe is enabled
183 * @dev: DRM device
184 * @pipe: pipe to check
185 *
186 * Reading certain registers when the pipe is disabled can hang the chip.
187 * Use this routine to make sure the PLL is running and the pipe is active
188 * before reading such registers if unsure.
189 */
190static int
191i915_pipe_enabled(struct drm_device *dev, int pipe)
192{
193 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Chris Wilson5eddb702010-09-11 13:48:45 +0100194 return I915_READ(PIPECONF(pipe)) & PIPECONF_ENABLE;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700195}
196
Keith Packard42f52ef2008-10-18 19:39:29 -0700197/* Called from drm generic code, passed a 'crtc', which
198 * we use as a pipe index
199 */
200u32 i915_get_vblank_counter(struct drm_device *dev, int pipe)
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700201{
202 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
203 unsigned long high_frame;
204 unsigned long low_frame;
Chris Wilson5eddb702010-09-11 13:48:45 +0100205 u32 high1, high2, low;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700206
207 if (!i915_pipe_enabled(dev, pipe)) {
Zhao Yakui44d98a62009-10-09 11:39:40 +0800208 DRM_DEBUG_DRIVER("trying to get vblank count for disabled "
209 "pipe %d\n", pipe);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700210 return 0;
211 }
212
Chris Wilson5eddb702010-09-11 13:48:45 +0100213 high_frame = pipe ? PIPEBFRAMEHIGH : PIPEAFRAMEHIGH;
214 low_frame = pipe ? PIPEBFRAMEPIXEL : PIPEAFRAMEPIXEL;
215
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700216 /*
217 * High & low register fields aren't synchronized, so make sure
218 * we get a low value that's stable across two reads of the high
219 * register.
220 */
221 do {
Chris Wilson5eddb702010-09-11 13:48:45 +0100222 high1 = I915_READ(high_frame) & PIPE_FRAME_HIGH_MASK;
223 low = I915_READ(low_frame) & PIPE_FRAME_LOW_MASK;
224 high2 = I915_READ(high_frame) & PIPE_FRAME_HIGH_MASK;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700225 } while (high1 != high2);
226
Chris Wilson5eddb702010-09-11 13:48:45 +0100227 high1 >>= PIPE_FRAME_HIGH_SHIFT;
228 low >>= PIPE_FRAME_LOW_SHIFT;
229 return (high1 << 8) | low;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700230}
231
Jesse Barnes9880b7a2009-02-06 10:22:41 -0800232u32 gm45_get_vblank_counter(struct drm_device *dev, int pipe)
233{
234 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
235 int reg = pipe ? PIPEB_FRMCOUNT_GM45 : PIPEA_FRMCOUNT_GM45;
236
237 if (!i915_pipe_enabled(dev, pipe)) {
Zhao Yakui44d98a62009-10-09 11:39:40 +0800238 DRM_DEBUG_DRIVER("trying to get vblank count for disabled "
239 "pipe %d\n", pipe);
Jesse Barnes9880b7a2009-02-06 10:22:41 -0800240 return 0;
241 }
242
243 return I915_READ(reg);
244}
245
Jesse Barnes5ca58282009-03-31 14:11:15 -0700246/*
247 * Handle hotplug events outside the interrupt handler proper.
248 */
249static void i915_hotplug_work_func(struct work_struct *work)
250{
251 drm_i915_private_t *dev_priv = container_of(work, drm_i915_private_t,
252 hotplug_work);
253 struct drm_device *dev = dev_priv->dev;
Keith Packardc31c4ba2009-05-06 11:48:58 -0700254 struct drm_mode_config *mode_config = &dev->mode_config;
Chris Wilson4ef69c72010-09-09 15:14:28 +0100255 struct intel_encoder *encoder;
Jesse Barnes5ca58282009-03-31 14:11:15 -0700256
Chris Wilson4ef69c72010-09-09 15:14:28 +0100257 list_for_each_entry(encoder, &mode_config->encoder_list, base.head)
258 if (encoder->hot_plug)
259 encoder->hot_plug(encoder);
260
Jesse Barnes5ca58282009-03-31 14:11:15 -0700261 /* Just fire off a uevent and let userspace tell us what to do */
Dave Airlieeb1f8e42010-05-07 06:42:51 +0000262 drm_helper_hpd_irq_event(dev);
Jesse Barnes5ca58282009-03-31 14:11:15 -0700263}
264
Jesse Barnesf97108d2010-01-29 11:27:07 -0800265static void i915_handle_rps_change(struct drm_device *dev)
266{
267 drm_i915_private_t *dev_priv = dev->dev_private;
Matthew Garrettb5b72e82010-02-02 18:30:47 +0000268 u32 busy_up, busy_down, max_avg, min_avg;
Jesse Barnesf97108d2010-01-29 11:27:07 -0800269 u8 new_delay = dev_priv->cur_delay;
270
Jesse Barnes7648fa92010-05-20 14:28:11 -0700271 I915_WRITE16(MEMINTRSTS, MEMINT_EVAL_CHG);
Matthew Garrettb5b72e82010-02-02 18:30:47 +0000272 busy_up = I915_READ(RCPREVBSYTUPAVG);
273 busy_down = I915_READ(RCPREVBSYTDNAVG);
Jesse Barnesf97108d2010-01-29 11:27:07 -0800274 max_avg = I915_READ(RCBMAXAVG);
275 min_avg = I915_READ(RCBMINAVG);
276
277 /* Handle RCS change request from hw */
Matthew Garrettb5b72e82010-02-02 18:30:47 +0000278 if (busy_up > max_avg) {
Jesse Barnesf97108d2010-01-29 11:27:07 -0800279 if (dev_priv->cur_delay != dev_priv->max_delay)
280 new_delay = dev_priv->cur_delay - 1;
281 if (new_delay < dev_priv->max_delay)
282 new_delay = dev_priv->max_delay;
Matthew Garrettb5b72e82010-02-02 18:30:47 +0000283 } else if (busy_down < min_avg) {
Jesse Barnesf97108d2010-01-29 11:27:07 -0800284 if (dev_priv->cur_delay != dev_priv->min_delay)
285 new_delay = dev_priv->cur_delay + 1;
286 if (new_delay > dev_priv->min_delay)
287 new_delay = dev_priv->min_delay;
288 }
289
Jesse Barnes7648fa92010-05-20 14:28:11 -0700290 if (ironlake_set_drps(dev, new_delay))
291 dev_priv->cur_delay = new_delay;
Jesse Barnesf97108d2010-01-29 11:27:07 -0800292
293 return;
294}
295
Chris Wilson995b6762010-08-20 13:23:26 +0100296static irqreturn_t ironlake_irq_handler(struct drm_device *dev)
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800297{
298 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
299 int ret = IRQ_NONE;
Dave Airlie3ff99162009-12-08 14:03:47 +1000300 u32 de_iir, gt_iir, de_ier, pch_iir;
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800301 struct drm_i915_master_private *master_priv;
Zou Nan hai852835f2010-05-21 09:08:56 +0800302 struct intel_ring_buffer *render_ring = &dev_priv->render_ring;
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800303
Zou, Nanhai2d109a82009-11-06 02:13:01 +0000304 /* disable master interrupt before clearing iir */
305 de_ier = I915_READ(DEIER);
306 I915_WRITE(DEIER, de_ier & ~DE_MASTER_IRQ_CONTROL);
307 (void)I915_READ(DEIER);
308
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800309 de_iir = I915_READ(DEIIR);
310 gt_iir = I915_READ(GTIIR);
Zhenyu Wangc6501562009-11-03 18:57:21 +0000311 pch_iir = I915_READ(SDEIIR);
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800312
Zou Nan haic7c85102010-01-15 10:29:06 +0800313 if (de_iir == 0 && gt_iir == 0 && pch_iir == 0)
314 goto done;
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800315
Zou Nan haic7c85102010-01-15 10:29:06 +0800316 ret = IRQ_HANDLED;
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800317
Zou Nan haic7c85102010-01-15 10:29:06 +0800318 if (dev->primary->master) {
319 master_priv = dev->primary->master->driver_priv;
320 if (master_priv->sarea_priv)
321 master_priv->sarea_priv->last_dispatch =
322 READ_BREADCRUMB(dev_priv);
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800323 }
324
Jesse Barnese552eb72010-04-21 11:39:23 -0700325 if (gt_iir & GT_PIPE_NOTIFY) {
Zou Nan hai852835f2010-05-21 09:08:56 +0800326 u32 seqno = render_ring->get_gem_seqno(dev, render_ring);
327 render_ring->irq_gem_seqno = seqno;
Zou Nan haic7c85102010-01-15 10:29:06 +0800328 trace_i915_gem_request_complete(dev, seqno);
Zou Nan hai852835f2010-05-21 09:08:56 +0800329 DRM_WAKEUP(&dev_priv->render_ring.irq_queue);
Zou Nan haic7c85102010-01-15 10:29:06 +0800330 dev_priv->hangcheck_count = 0;
Chris Wilsonb3b079d2010-09-13 23:44:34 +0100331 mod_timer(&dev_priv->hangcheck_timer,
332 jiffies + msecs_to_jiffies(DRM_I915_HANGCHECK_PERIOD));
Zou Nan haic7c85102010-01-15 10:29:06 +0800333 }
Zou Nan haid1b851f2010-05-21 09:08:57 +0800334 if (gt_iir & GT_BSD_USER_INTERRUPT)
335 DRM_WAKEUP(&dev_priv->bsd_ring.irq_queue);
336
Zou Nan haic7c85102010-01-15 10:29:06 +0800337
338 if (de_iir & DE_GSE)
Chris Wilson3b617962010-08-24 09:02:58 +0100339 intel_opregion_gse_intr(dev);
Zou Nan haic7c85102010-01-15 10:29:06 +0800340
Zhenyu Wangf072d2e2010-02-09 09:46:19 +0800341 if (de_iir & DE_PLANEA_FLIP_DONE) {
Jesse Barnes013d5aa2010-01-29 11:18:31 -0800342 intel_prepare_page_flip(dev, 0);
Chris Wilson2bbda382010-09-02 17:59:39 +0100343 intel_finish_page_flip_plane(dev, 0);
Jesse Barnes013d5aa2010-01-29 11:18:31 -0800344 }
345
Zhenyu Wangf072d2e2010-02-09 09:46:19 +0800346 if (de_iir & DE_PLANEB_FLIP_DONE) {
347 intel_prepare_page_flip(dev, 1);
Chris Wilson2bbda382010-09-02 17:59:39 +0100348 intel_finish_page_flip_plane(dev, 1);
Jesse Barnes013d5aa2010-01-29 11:18:31 -0800349 }
Li Pengc062df62010-01-23 00:12:58 +0800350
Zhenyu Wangf072d2e2010-02-09 09:46:19 +0800351 if (de_iir & DE_PIPEA_VBLANK)
352 drm_handle_vblank(dev, 0);
353
354 if (de_iir & DE_PIPEB_VBLANK)
355 drm_handle_vblank(dev, 1);
356
Zou Nan haic7c85102010-01-15 10:29:06 +0800357 /* check event from PCH */
358 if ((de_iir & DE_PCH_EVENT) &&
359 (pch_iir & SDE_HOTPLUG_MASK)) {
360 queue_work(dev_priv->wq, &dev_priv->hotplug_work);
361 }
362
Jesse Barnesf97108d2010-01-29 11:27:07 -0800363 if (de_iir & DE_PCU_EVENT) {
Jesse Barnes7648fa92010-05-20 14:28:11 -0700364 I915_WRITE16(MEMINTRSTS, I915_READ(MEMINTRSTS));
Jesse Barnesf97108d2010-01-29 11:27:07 -0800365 i915_handle_rps_change(dev);
366 }
367
Zou Nan haic7c85102010-01-15 10:29:06 +0800368 /* should clear PCH hotplug event before clear CPU irq */
369 I915_WRITE(SDEIIR, pch_iir);
370 I915_WRITE(GTIIR, gt_iir);
371 I915_WRITE(DEIIR, de_iir);
372
373done:
Zou, Nanhai2d109a82009-11-06 02:13:01 +0000374 I915_WRITE(DEIER, de_ier);
375 (void)I915_READ(DEIER);
376
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800377 return ret;
378}
379
Jesse Barnes8a905232009-07-11 16:48:03 -0400380/**
381 * i915_error_work_func - do process context error handling work
382 * @work: work struct
383 *
384 * Fire an error uevent so userspace can see that a hang or error
385 * was detected.
386 */
387static void i915_error_work_func(struct work_struct *work)
388{
389 drm_i915_private_t *dev_priv = container_of(work, drm_i915_private_t,
390 error_work);
391 struct drm_device *dev = dev_priv->dev;
Ben Gamarif316a422009-09-14 17:48:46 -0400392 char *error_event[] = { "ERROR=1", NULL };
393 char *reset_event[] = { "RESET=1", NULL };
394 char *reset_done_event[] = { "ERROR=0", NULL };
Jesse Barnes8a905232009-07-11 16:48:03 -0400395
Zhao Yakui44d98a62009-10-09 11:39:40 +0800396 DRM_DEBUG_DRIVER("generating error event\n");
Ben Gamarif316a422009-09-14 17:48:46 -0400397 kobject_uevent_env(&dev->primary->kdev.kobj, KOBJ_CHANGE, error_event);
Jesse Barnes8a905232009-07-11 16:48:03 -0400398
Ben Gamariba1234d2009-09-14 17:48:47 -0400399 if (atomic_read(&dev_priv->mm.wedged)) {
Chris Wilsonf803aa52010-09-19 12:38:26 +0100400 DRM_DEBUG_DRIVER("resetting chip\n");
401 kobject_uevent_env(&dev->primary->kdev.kobj, KOBJ_CHANGE, reset_event);
402 if (!i915_reset(dev, GRDOM_RENDER)) {
403 atomic_set(&dev_priv->mm.wedged, 0);
404 kobject_uevent_env(&dev->primary->kdev.kobj, KOBJ_CHANGE, reset_done_event);
Ben Gamarif316a422009-09-14 17:48:46 -0400405 }
406 }
Jesse Barnes8a905232009-07-11 16:48:03 -0400407}
408
Chris Wilson3bd3c932010-08-19 08:19:30 +0100409#ifdef CONFIG_DEBUG_FS
Chris Wilson9df30792010-02-18 10:24:56 +0000410static struct drm_i915_error_object *
411i915_error_object_create(struct drm_device *dev,
412 struct drm_gem_object *src)
413{
Chris Wilsone56660d2010-08-07 11:01:26 +0100414 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson9df30792010-02-18 10:24:56 +0000415 struct drm_i915_error_object *dst;
416 struct drm_i915_gem_object *src_priv;
417 int page, page_count;
Chris Wilsone56660d2010-08-07 11:01:26 +0100418 u32 reloc_offset;
Chris Wilson9df30792010-02-18 10:24:56 +0000419
420 if (src == NULL)
421 return NULL;
422
Daniel Vetter23010e42010-03-08 13:35:02 +0100423 src_priv = to_intel_bo(src);
Chris Wilson9df30792010-02-18 10:24:56 +0000424 if (src_priv->pages == NULL)
425 return NULL;
426
427 page_count = src->size / PAGE_SIZE;
428
429 dst = kmalloc(sizeof(*dst) + page_count * sizeof (u32 *), GFP_ATOMIC);
430 if (dst == NULL)
431 return NULL;
432
Chris Wilsone56660d2010-08-07 11:01:26 +0100433 reloc_offset = src_priv->gtt_offset;
Chris Wilson9df30792010-02-18 10:24:56 +0000434 for (page = 0; page < page_count; page++) {
Andrew Morton788885a2010-05-11 14:07:05 -0700435 unsigned long flags;
Chris Wilsone56660d2010-08-07 11:01:26 +0100436 void __iomem *s;
437 void *d;
Andrew Morton788885a2010-05-11 14:07:05 -0700438
Chris Wilsone56660d2010-08-07 11:01:26 +0100439 d = kmalloc(PAGE_SIZE, GFP_ATOMIC);
Chris Wilson9df30792010-02-18 10:24:56 +0000440 if (d == NULL)
441 goto unwind;
Chris Wilsone56660d2010-08-07 11:01:26 +0100442
Andrew Morton788885a2010-05-11 14:07:05 -0700443 local_irq_save(flags);
Chris Wilsone56660d2010-08-07 11:01:26 +0100444 s = io_mapping_map_atomic_wc(dev_priv->mm.gtt_mapping,
445 reloc_offset,
446 KM_IRQ0);
447 memcpy_fromio(d, s, PAGE_SIZE);
448 io_mapping_unmap_atomic(s, KM_IRQ0);
Andrew Morton788885a2010-05-11 14:07:05 -0700449 local_irq_restore(flags);
Chris Wilsone56660d2010-08-07 11:01:26 +0100450
Chris Wilson9df30792010-02-18 10:24:56 +0000451 dst->pages[page] = d;
Chris Wilsone56660d2010-08-07 11:01:26 +0100452
453 reloc_offset += PAGE_SIZE;
Chris Wilson9df30792010-02-18 10:24:56 +0000454 }
455 dst->page_count = page_count;
456 dst->gtt_offset = src_priv->gtt_offset;
457
458 return dst;
459
460unwind:
461 while (page--)
462 kfree(dst->pages[page]);
463 kfree(dst);
464 return NULL;
465}
466
467static void
468i915_error_object_free(struct drm_i915_error_object *obj)
469{
470 int page;
471
472 if (obj == NULL)
473 return;
474
475 for (page = 0; page < obj->page_count; page++)
476 kfree(obj->pages[page]);
477
478 kfree(obj);
479}
480
481static void
482i915_error_state_free(struct drm_device *dev,
483 struct drm_i915_error_state *error)
484{
485 i915_error_object_free(error->batchbuffer[0]);
486 i915_error_object_free(error->batchbuffer[1]);
487 i915_error_object_free(error->ringbuffer);
488 kfree(error->active_bo);
Chris Wilson6ef3d422010-08-04 20:26:07 +0100489 kfree(error->overlay);
Chris Wilson9df30792010-02-18 10:24:56 +0000490 kfree(error);
491}
492
493static u32
494i915_get_bbaddr(struct drm_device *dev, u32 *ring)
495{
496 u32 cmd;
497
498 if (IS_I830(dev) || IS_845G(dev))
499 cmd = MI_BATCH_BUFFER;
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100500 else if (INTEL_INFO(dev)->gen >= 4)
Chris Wilson9df30792010-02-18 10:24:56 +0000501 cmd = (MI_BATCH_BUFFER_START | (2 << 6) |
502 MI_BATCH_NON_SECURE_I965);
503 else
504 cmd = (MI_BATCH_BUFFER_START | (2 << 6));
505
506 return ring[0] == cmd ? ring[1] : 0;
507}
508
509static u32
510i915_ringbuffer_last_batch(struct drm_device *dev)
511{
512 struct drm_i915_private *dev_priv = dev->dev_private;
513 u32 head, bbaddr;
514 u32 *ring;
515
516 /* Locate the current position in the ringbuffer and walk back
517 * to find the most recently dispatched batch buffer.
518 */
519 bbaddr = 0;
520 head = I915_READ(PRB0_HEAD) & HEAD_ADDR;
Eric Anholtd3301d82010-05-21 13:55:54 -0700521 ring = (u32 *)(dev_priv->render_ring.virtual_start + head);
Chris Wilson9df30792010-02-18 10:24:56 +0000522
Eric Anholtd3301d82010-05-21 13:55:54 -0700523 while (--ring >= (u32 *)dev_priv->render_ring.virtual_start) {
Chris Wilson9df30792010-02-18 10:24:56 +0000524 bbaddr = i915_get_bbaddr(dev, ring);
525 if (bbaddr)
526 break;
527 }
528
529 if (bbaddr == 0) {
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800530 ring = (u32 *)(dev_priv->render_ring.virtual_start
531 + dev_priv->render_ring.size);
Eric Anholtd3301d82010-05-21 13:55:54 -0700532 while (--ring >= (u32 *)dev_priv->render_ring.virtual_start) {
Chris Wilson9df30792010-02-18 10:24:56 +0000533 bbaddr = i915_get_bbaddr(dev, ring);
534 if (bbaddr)
535 break;
536 }
537 }
538
539 return bbaddr;
540}
541
Jesse Barnes8a905232009-07-11 16:48:03 -0400542/**
543 * i915_capture_error_state - capture an error record for later analysis
544 * @dev: drm device
545 *
546 * Should be called when an error is detected (either a hang or an error
547 * interrupt) to capture error state from the time of the error. Fills
548 * out a structure which becomes available in debugfs for user level tools
549 * to pick up.
550 */
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700551static void i915_capture_error_state(struct drm_device *dev)
552{
553 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson9df30792010-02-18 10:24:56 +0000554 struct drm_i915_gem_object *obj_priv;
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700555 struct drm_i915_error_state *error;
Chris Wilson9df30792010-02-18 10:24:56 +0000556 struct drm_gem_object *batchbuffer[2];
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700557 unsigned long flags;
Chris Wilson9df30792010-02-18 10:24:56 +0000558 u32 bbaddr;
559 int count;
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700560
561 spin_lock_irqsave(&dev_priv->error_lock, flags);
Chris Wilson9df30792010-02-18 10:24:56 +0000562 error = dev_priv->first_error;
563 spin_unlock_irqrestore(&dev_priv->error_lock, flags);
564 if (error)
565 return;
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700566
567 error = kmalloc(sizeof(*error), GFP_ATOMIC);
568 if (!error) {
Chris Wilson9df30792010-02-18 10:24:56 +0000569 DRM_DEBUG_DRIVER("out of memory, not capturing error state\n");
570 return;
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700571 }
572
Zou Nan hai852835f2010-05-21 09:08:56 +0800573 error->seqno = i915_get_gem_seqno(dev, &dev_priv->render_ring);
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700574 error->eir = I915_READ(EIR);
575 error->pgtbl_er = I915_READ(PGTBL_ER);
576 error->pipeastat = I915_READ(PIPEASTAT);
577 error->pipebstat = I915_READ(PIPEBSTAT);
578 error->instpm = I915_READ(INSTPM);
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100579 if (INTEL_INFO(dev)->gen < 4) {
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700580 error->ipeir = I915_READ(IPEIR);
581 error->ipehr = I915_READ(IPEHR);
582 error->instdone = I915_READ(INSTDONE);
583 error->acthd = I915_READ(ACTHD);
Chris Wilson9df30792010-02-18 10:24:56 +0000584 error->bbaddr = 0;
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700585 } else {
586 error->ipeir = I915_READ(IPEIR_I965);
587 error->ipehr = I915_READ(IPEHR_I965);
588 error->instdone = I915_READ(INSTDONE_I965);
589 error->instps = I915_READ(INSTPS);
590 error->instdone1 = I915_READ(INSTDONE1);
591 error->acthd = I915_READ(ACTHD_I965);
Chris Wilson9df30792010-02-18 10:24:56 +0000592 error->bbaddr = I915_READ64(BB_ADDR);
593 }
594
595 bbaddr = i915_ringbuffer_last_batch(dev);
596
597 /* Grab the current batchbuffer, most likely to have crashed. */
598 batchbuffer[0] = NULL;
599 batchbuffer[1] = NULL;
600 count = 0;
Zou Nan hai852835f2010-05-21 09:08:56 +0800601 list_for_each_entry(obj_priv,
602 &dev_priv->render_ring.active_list, list) {
603
Daniel Vettera8089e82010-04-09 19:05:09 +0000604 struct drm_gem_object *obj = &obj_priv->base;
Chris Wilson9df30792010-02-18 10:24:56 +0000605
606 if (batchbuffer[0] == NULL &&
607 bbaddr >= obj_priv->gtt_offset &&
608 bbaddr < obj_priv->gtt_offset + obj->size)
609 batchbuffer[0] = obj;
610
611 if (batchbuffer[1] == NULL &&
612 error->acthd >= obj_priv->gtt_offset &&
Chris Wilsone56660d2010-08-07 11:01:26 +0100613 error->acthd < obj_priv->gtt_offset + obj->size)
Chris Wilson9df30792010-02-18 10:24:56 +0000614 batchbuffer[1] = obj;
615
616 count++;
617 }
Chris Wilsone56660d2010-08-07 11:01:26 +0100618 /* Scan the other lists for completeness for those bizarre errors. */
619 if (batchbuffer[0] == NULL || batchbuffer[1] == NULL) {
620 list_for_each_entry(obj_priv, &dev_priv->mm.flushing_list, list) {
621 struct drm_gem_object *obj = &obj_priv->base;
622
623 if (batchbuffer[0] == NULL &&
624 bbaddr >= obj_priv->gtt_offset &&
625 bbaddr < obj_priv->gtt_offset + obj->size)
626 batchbuffer[0] = obj;
627
628 if (batchbuffer[1] == NULL &&
629 error->acthd >= obj_priv->gtt_offset &&
630 error->acthd < obj_priv->gtt_offset + obj->size)
631 batchbuffer[1] = obj;
632
633 if (batchbuffer[0] && batchbuffer[1])
634 break;
635 }
636 }
637 if (batchbuffer[0] == NULL || batchbuffer[1] == NULL) {
638 list_for_each_entry(obj_priv, &dev_priv->mm.inactive_list, list) {
639 struct drm_gem_object *obj = &obj_priv->base;
640
641 if (batchbuffer[0] == NULL &&
642 bbaddr >= obj_priv->gtt_offset &&
643 bbaddr < obj_priv->gtt_offset + obj->size)
644 batchbuffer[0] = obj;
645
646 if (batchbuffer[1] == NULL &&
647 error->acthd >= obj_priv->gtt_offset &&
648 error->acthd < obj_priv->gtt_offset + obj->size)
649 batchbuffer[1] = obj;
650
651 if (batchbuffer[0] && batchbuffer[1])
652 break;
653 }
654 }
Chris Wilson9df30792010-02-18 10:24:56 +0000655
656 /* We need to copy these to an anonymous buffer as the simplest
657 * method to avoid being overwritten by userpace.
658 */
659 error->batchbuffer[0] = i915_error_object_create(dev, batchbuffer[0]);
Chris Wilsone56660d2010-08-07 11:01:26 +0100660 if (batchbuffer[1] != batchbuffer[0])
661 error->batchbuffer[1] = i915_error_object_create(dev, batchbuffer[1]);
662 else
663 error->batchbuffer[1] = NULL;
Chris Wilson9df30792010-02-18 10:24:56 +0000664
665 /* Record the ringbuffer */
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800666 error->ringbuffer = i915_error_object_create(dev,
667 dev_priv->render_ring.gem_object);
Chris Wilson9df30792010-02-18 10:24:56 +0000668
669 /* Record buffers on the active list. */
670 error->active_bo = NULL;
671 error->active_bo_count = 0;
672
673 if (count)
674 error->active_bo = kmalloc(sizeof(*error->active_bo)*count,
675 GFP_ATOMIC);
676
677 if (error->active_bo) {
678 int i = 0;
Zou Nan hai852835f2010-05-21 09:08:56 +0800679 list_for_each_entry(obj_priv,
680 &dev_priv->render_ring.active_list, list) {
Daniel Vettera8089e82010-04-09 19:05:09 +0000681 struct drm_gem_object *obj = &obj_priv->base;
Chris Wilson9df30792010-02-18 10:24:56 +0000682
683 error->active_bo[i].size = obj->size;
684 error->active_bo[i].name = obj->name;
685 error->active_bo[i].seqno = obj_priv->last_rendering_seqno;
686 error->active_bo[i].gtt_offset = obj_priv->gtt_offset;
687 error->active_bo[i].read_domains = obj->read_domains;
688 error->active_bo[i].write_domain = obj->write_domain;
689 error->active_bo[i].fence_reg = obj_priv->fence_reg;
690 error->active_bo[i].pinned = 0;
691 if (obj_priv->pin_count > 0)
692 error->active_bo[i].pinned = 1;
693 if (obj_priv->user_pin_count > 0)
694 error->active_bo[i].pinned = -1;
695 error->active_bo[i].tiling = obj_priv->tiling_mode;
696 error->active_bo[i].dirty = obj_priv->dirty;
697 error->active_bo[i].purgeable = obj_priv->madv != I915_MADV_WILLNEED;
698
699 if (++i == count)
700 break;
701 }
702 error->active_bo_count = i;
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700703 }
704
Jesse Barnes8a905232009-07-11 16:48:03 -0400705 do_gettimeofday(&error->time);
706
Chris Wilson6ef3d422010-08-04 20:26:07 +0100707 error->overlay = intel_overlay_capture_error_state(dev);
708
Chris Wilson9df30792010-02-18 10:24:56 +0000709 spin_lock_irqsave(&dev_priv->error_lock, flags);
710 if (dev_priv->first_error == NULL) {
711 dev_priv->first_error = error;
712 error = NULL;
713 }
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700714 spin_unlock_irqrestore(&dev_priv->error_lock, flags);
Chris Wilson9df30792010-02-18 10:24:56 +0000715
716 if (error)
717 i915_error_state_free(dev, error);
718}
719
720void i915_destroy_error_state(struct drm_device *dev)
721{
722 struct drm_i915_private *dev_priv = dev->dev_private;
723 struct drm_i915_error_state *error;
724
725 spin_lock(&dev_priv->error_lock);
726 error = dev_priv->first_error;
727 dev_priv->first_error = NULL;
728 spin_unlock(&dev_priv->error_lock);
729
730 if (error)
731 i915_error_state_free(dev, error);
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700732}
Chris Wilson3bd3c932010-08-19 08:19:30 +0100733#else
734#define i915_capture_error_state(x)
735#endif
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700736
Chris Wilson35aed2e2010-05-27 13:18:12 +0100737static void i915_report_and_clear_eir(struct drm_device *dev)
Jesse Barnes8a905232009-07-11 16:48:03 -0400738{
739 struct drm_i915_private *dev_priv = dev->dev_private;
740 u32 eir = I915_READ(EIR);
Jesse Barnes8a905232009-07-11 16:48:03 -0400741
Chris Wilson35aed2e2010-05-27 13:18:12 +0100742 if (!eir)
743 return;
Jesse Barnes8a905232009-07-11 16:48:03 -0400744
745 printk(KERN_ERR "render error detected, EIR: 0x%08x\n",
746 eir);
747
748 if (IS_G4X(dev)) {
749 if (eir & (GM45_ERROR_MEM_PRIV | GM45_ERROR_CP_PRIV)) {
750 u32 ipeir = I915_READ(IPEIR_I965);
751
752 printk(KERN_ERR " IPEIR: 0x%08x\n",
753 I915_READ(IPEIR_I965));
754 printk(KERN_ERR " IPEHR: 0x%08x\n",
755 I915_READ(IPEHR_I965));
756 printk(KERN_ERR " INSTDONE: 0x%08x\n",
757 I915_READ(INSTDONE_I965));
758 printk(KERN_ERR " INSTPS: 0x%08x\n",
759 I915_READ(INSTPS));
760 printk(KERN_ERR " INSTDONE1: 0x%08x\n",
761 I915_READ(INSTDONE1));
762 printk(KERN_ERR " ACTHD: 0x%08x\n",
763 I915_READ(ACTHD_I965));
764 I915_WRITE(IPEIR_I965, ipeir);
765 (void)I915_READ(IPEIR_I965);
766 }
767 if (eir & GM45_ERROR_PAGE_TABLE) {
768 u32 pgtbl_err = I915_READ(PGTBL_ER);
769 printk(KERN_ERR "page table error\n");
770 printk(KERN_ERR " PGTBL_ER: 0x%08x\n",
771 pgtbl_err);
772 I915_WRITE(PGTBL_ER, pgtbl_err);
773 (void)I915_READ(PGTBL_ER);
774 }
775 }
776
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100777 if (!IS_GEN2(dev)) {
Jesse Barnes8a905232009-07-11 16:48:03 -0400778 if (eir & I915_ERROR_PAGE_TABLE) {
779 u32 pgtbl_err = I915_READ(PGTBL_ER);
780 printk(KERN_ERR "page table error\n");
781 printk(KERN_ERR " PGTBL_ER: 0x%08x\n",
782 pgtbl_err);
783 I915_WRITE(PGTBL_ER, pgtbl_err);
784 (void)I915_READ(PGTBL_ER);
785 }
786 }
787
788 if (eir & I915_ERROR_MEMORY_REFRESH) {
Chris Wilson35aed2e2010-05-27 13:18:12 +0100789 u32 pipea_stats = I915_READ(PIPEASTAT);
790 u32 pipeb_stats = I915_READ(PIPEBSTAT);
791
Jesse Barnes8a905232009-07-11 16:48:03 -0400792 printk(KERN_ERR "memory refresh error\n");
793 printk(KERN_ERR "PIPEASTAT: 0x%08x\n",
794 pipea_stats);
795 printk(KERN_ERR "PIPEBSTAT: 0x%08x\n",
796 pipeb_stats);
797 /* pipestat has already been acked */
798 }
799 if (eir & I915_ERROR_INSTRUCTION) {
800 printk(KERN_ERR "instruction error\n");
801 printk(KERN_ERR " INSTPM: 0x%08x\n",
802 I915_READ(INSTPM));
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100803 if (INTEL_INFO(dev)->gen < 4) {
Jesse Barnes8a905232009-07-11 16:48:03 -0400804 u32 ipeir = I915_READ(IPEIR);
805
806 printk(KERN_ERR " IPEIR: 0x%08x\n",
807 I915_READ(IPEIR));
808 printk(KERN_ERR " IPEHR: 0x%08x\n",
809 I915_READ(IPEHR));
810 printk(KERN_ERR " INSTDONE: 0x%08x\n",
811 I915_READ(INSTDONE));
812 printk(KERN_ERR " ACTHD: 0x%08x\n",
813 I915_READ(ACTHD));
814 I915_WRITE(IPEIR, ipeir);
815 (void)I915_READ(IPEIR);
816 } else {
817 u32 ipeir = I915_READ(IPEIR_I965);
818
819 printk(KERN_ERR " IPEIR: 0x%08x\n",
820 I915_READ(IPEIR_I965));
821 printk(KERN_ERR " IPEHR: 0x%08x\n",
822 I915_READ(IPEHR_I965));
823 printk(KERN_ERR " INSTDONE: 0x%08x\n",
824 I915_READ(INSTDONE_I965));
825 printk(KERN_ERR " INSTPS: 0x%08x\n",
826 I915_READ(INSTPS));
827 printk(KERN_ERR " INSTDONE1: 0x%08x\n",
828 I915_READ(INSTDONE1));
829 printk(KERN_ERR " ACTHD: 0x%08x\n",
830 I915_READ(ACTHD_I965));
831 I915_WRITE(IPEIR_I965, ipeir);
832 (void)I915_READ(IPEIR_I965);
833 }
834 }
835
836 I915_WRITE(EIR, eir);
837 (void)I915_READ(EIR);
838 eir = I915_READ(EIR);
839 if (eir) {
840 /*
841 * some errors might have become stuck,
842 * mask them.
843 */
844 DRM_ERROR("EIR stuck: 0x%08x, masking\n", eir);
845 I915_WRITE(EMR, I915_READ(EMR) | eir);
846 I915_WRITE(IIR, I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT);
847 }
Chris Wilson35aed2e2010-05-27 13:18:12 +0100848}
849
850/**
851 * i915_handle_error - handle an error interrupt
852 * @dev: drm device
853 *
854 * Do some basic checking of regsiter state at error interrupt time and
855 * dump it to the syslog. Also call i915_capture_error_state() to make
856 * sure we get a record and make it available in debugfs. Fire a uevent
857 * so userspace knows something bad happened (should trigger collection
858 * of a ring dump etc.).
859 */
860static void i915_handle_error(struct drm_device *dev, bool wedged)
861{
862 struct drm_i915_private *dev_priv = dev->dev_private;
863
864 i915_capture_error_state(dev);
865 i915_report_and_clear_eir(dev);
Jesse Barnes8a905232009-07-11 16:48:03 -0400866
Ben Gamariba1234d2009-09-14 17:48:47 -0400867 if (wedged) {
868 atomic_set(&dev_priv->mm.wedged, 1);
869
Ben Gamari11ed50e2009-09-14 17:48:45 -0400870 /*
871 * Wakeup waiting processes so they don't hang
872 */
Zou Nan hai852835f2010-05-21 09:08:56 +0800873 DRM_WAKEUP(&dev_priv->render_ring.irq_queue);
Ben Gamari11ed50e2009-09-14 17:48:45 -0400874 }
875
Eric Anholt9c9fe1f2009-08-03 16:09:16 -0700876 queue_work(dev_priv->wq, &dev_priv->error_work);
Jesse Barnes8a905232009-07-11 16:48:03 -0400877}
878
Simon Farnsworth4e5359c2010-09-01 17:47:52 +0100879static void i915_pageflip_stall_check(struct drm_device *dev, int pipe)
880{
881 drm_i915_private_t *dev_priv = dev->dev_private;
882 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
883 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
884 struct drm_i915_gem_object *obj_priv;
885 struct intel_unpin_work *work;
886 unsigned long flags;
887 bool stall_detected;
888
889 /* Ignore early vblank irqs */
890 if (intel_crtc == NULL)
891 return;
892
893 spin_lock_irqsave(&dev->event_lock, flags);
894 work = intel_crtc->unpin_work;
895
896 if (work == NULL || work->pending || !work->enable_stall_check) {
897 /* Either the pending flip IRQ arrived, or we're too early. Don't check */
898 spin_unlock_irqrestore(&dev->event_lock, flags);
899 return;
900 }
901
902 /* Potential stall - if we see that the flip has happened, assume a missed interrupt */
903 obj_priv = to_intel_bo(work->pending_flip_obj);
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100904 if (INTEL_INFO(dev)->gen >= 4) {
Simon Farnsworth4e5359c2010-09-01 17:47:52 +0100905 int dspsurf = intel_crtc->plane == 0 ? DSPASURF : DSPBSURF;
906 stall_detected = I915_READ(dspsurf) == obj_priv->gtt_offset;
907 } else {
908 int dspaddr = intel_crtc->plane == 0 ? DSPAADDR : DSPBADDR;
909 stall_detected = I915_READ(dspaddr) == (obj_priv->gtt_offset +
910 crtc->y * crtc->fb->pitch +
911 crtc->x * crtc->fb->bits_per_pixel/8);
912 }
913
914 spin_unlock_irqrestore(&dev->event_lock, flags);
915
916 if (stall_detected) {
917 DRM_DEBUG_DRIVER("Pageflip stall detected\n");
918 intel_prepare_page_flip(dev, intel_crtc->plane);
919 }
920}
921
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922irqreturn_t i915_driver_irq_handler(DRM_IRQ_ARGS)
923{
Dave Airlie84b1fd12007-07-11 15:53:27 +1000924 struct drm_device *dev = (struct drm_device *) arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000926 struct drm_i915_master_private *master_priv;
Eric Anholtcdfbc412008-11-04 15:50:30 -0800927 u32 iir, new_iir;
928 u32 pipea_stats, pipeb_stats;
Keith Packard05eff842008-11-19 14:03:05 -0800929 u32 vblank_status;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700930 int vblank = 0;
Keith Packard7c463582008-11-04 02:03:27 -0800931 unsigned long irqflags;
Keith Packard05eff842008-11-19 14:03:05 -0800932 int irq_received;
933 int ret = IRQ_NONE;
Zou Nan hai852835f2010-05-21 09:08:56 +0800934 struct intel_ring_buffer *render_ring = &dev_priv->render_ring;
Dave Airlieaf6061a2008-05-07 12:15:39 +1000935
Eric Anholt630681d2008-10-06 15:14:12 -0700936 atomic_inc(&dev_priv->irq_received);
937
Eric Anholtbad720f2009-10-22 16:11:14 -0700938 if (HAS_PCH_SPLIT(dev))
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500939 return ironlake_irq_handler(dev);
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800940
Eric Anholted4cb412008-07-29 12:10:39 -0700941 iir = I915_READ(IIR);
Dave Airlieaf6061a2008-05-07 12:15:39 +1000942
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100943 if (INTEL_INFO(dev)->gen >= 4)
Jesse Barnesd874bcf2010-06-30 13:16:00 -0700944 vblank_status = PIPE_START_VBLANK_INTERRUPT_STATUS;
Jesse Barnese25e6602010-06-30 13:15:19 -0700945 else
Jesse Barnesd874bcf2010-06-30 13:16:00 -0700946 vblank_status = PIPE_VBLANK_INTERRUPT_STATUS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947
Keith Packard05eff842008-11-19 14:03:05 -0800948 for (;;) {
949 irq_received = iir != 0;
950
951 /* Can't rely on pipestat interrupt bit in iir as it might
952 * have been cleared after the pipestat interrupt was received.
953 * It doesn't set the bit in iir again, but it still produces
954 * interrupts (for non-MSI).
955 */
956 spin_lock_irqsave(&dev_priv->user_irq_lock, irqflags);
957 pipea_stats = I915_READ(PIPEASTAT);
958 pipeb_stats = I915_READ(PIPEBSTAT);
Jesse Barnes79e53942008-11-07 14:24:08 -0800959
Jesse Barnes8a905232009-07-11 16:48:03 -0400960 if (iir & I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT)
Ben Gamariba1234d2009-09-14 17:48:47 -0400961 i915_handle_error(dev, false);
Jesse Barnes8a905232009-07-11 16:48:03 -0400962
Eric Anholtcdfbc412008-11-04 15:50:30 -0800963 /*
964 * Clear the PIPE(A|B)STAT regs before the IIR
965 */
Keith Packard05eff842008-11-19 14:03:05 -0800966 if (pipea_stats & 0x8000ffff) {
Shaohua Li7662c8b2009-06-26 11:23:55 +0800967 if (pipea_stats & PIPE_FIFO_UNDERRUN_STATUS)
Zhao Yakui44d98a62009-10-09 11:39:40 +0800968 DRM_DEBUG_DRIVER("pipe a underrun\n");
Eric Anholtcdfbc412008-11-04 15:50:30 -0800969 I915_WRITE(PIPEASTAT, pipea_stats);
Keith Packard05eff842008-11-19 14:03:05 -0800970 irq_received = 1;
Eric Anholtcdfbc412008-11-04 15:50:30 -0800971 }
Keith Packard7c463582008-11-04 02:03:27 -0800972
Keith Packard05eff842008-11-19 14:03:05 -0800973 if (pipeb_stats & 0x8000ffff) {
Shaohua Li7662c8b2009-06-26 11:23:55 +0800974 if (pipeb_stats & PIPE_FIFO_UNDERRUN_STATUS)
Zhao Yakui44d98a62009-10-09 11:39:40 +0800975 DRM_DEBUG_DRIVER("pipe b underrun\n");
Eric Anholtcdfbc412008-11-04 15:50:30 -0800976 I915_WRITE(PIPEBSTAT, pipeb_stats);
Keith Packard05eff842008-11-19 14:03:05 -0800977 irq_received = 1;
Eric Anholtcdfbc412008-11-04 15:50:30 -0800978 }
Keith Packard05eff842008-11-19 14:03:05 -0800979 spin_unlock_irqrestore(&dev_priv->user_irq_lock, irqflags);
980
981 if (!irq_received)
982 break;
983
984 ret = IRQ_HANDLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985
Jesse Barnes5ca58282009-03-31 14:11:15 -0700986 /* Consume port. Then clear IIR or we'll miss events */
987 if ((I915_HAS_HOTPLUG(dev)) &&
988 (iir & I915_DISPLAY_PORT_INTERRUPT)) {
989 u32 hotplug_status = I915_READ(PORT_HOTPLUG_STAT);
990
Zhao Yakui44d98a62009-10-09 11:39:40 +0800991 DRM_DEBUG_DRIVER("hotplug event received, stat 0x%08x\n",
Jesse Barnes5ca58282009-03-31 14:11:15 -0700992 hotplug_status);
993 if (hotplug_status & dev_priv->hotplug_supported_mask)
Eric Anholt9c9fe1f2009-08-03 16:09:16 -0700994 queue_work(dev_priv->wq,
995 &dev_priv->hotplug_work);
Jesse Barnes5ca58282009-03-31 14:11:15 -0700996
997 I915_WRITE(PORT_HOTPLUG_STAT, hotplug_status);
998 I915_READ(PORT_HOTPLUG_STAT);
999 }
1000
Eric Anholtcdfbc412008-11-04 15:50:30 -08001001 I915_WRITE(IIR, iir);
1002 new_iir = I915_READ(IIR); /* Flush posted writes */
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +01001003
Dave Airlie7c1c2872008-11-28 14:22:24 +10001004 if (dev->primary->master) {
1005 master_priv = dev->primary->master->driver_priv;
1006 if (master_priv->sarea_priv)
1007 master_priv->sarea_priv->last_dispatch =
1008 READ_BREADCRUMB(dev_priv);
1009 }
Keith Packard7c463582008-11-04 02:03:27 -08001010
Eric Anholtcdfbc412008-11-04 15:50:30 -08001011 if (iir & I915_USER_INTERRUPT) {
Zou Nan hai852835f2010-05-21 09:08:56 +08001012 u32 seqno =
1013 render_ring->get_gem_seqno(dev, render_ring);
1014 render_ring->irq_gem_seqno = seqno;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01001015 trace_i915_gem_request_complete(dev, seqno);
Zou Nan hai852835f2010-05-21 09:08:56 +08001016 DRM_WAKEUP(&dev_priv->render_ring.irq_queue);
Ben Gamarif65d9422009-09-14 17:48:44 -04001017 dev_priv->hangcheck_count = 0;
Chris Wilsonb3b079d2010-09-13 23:44:34 +01001018 mod_timer(&dev_priv->hangcheck_timer,
1019 jiffies + msecs_to_jiffies(DRM_I915_HANGCHECK_PERIOD));
Eric Anholtcdfbc412008-11-04 15:50:30 -08001020 }
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001021
Zou Nan haid1b851f2010-05-21 09:08:57 +08001022 if (HAS_BSD(dev) && (iir & I915_BSD_USER_INTERRUPT))
1023 DRM_WAKEUP(&dev_priv->bsd_ring.irq_queue);
1024
Jesse Barnes1afe3e92010-03-26 10:35:20 -07001025 if (iir & I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT) {
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001026 intel_prepare_page_flip(dev, 0);
Jesse Barnes1afe3e92010-03-26 10:35:20 -07001027 if (dev_priv->flip_pending_is_done)
1028 intel_finish_page_flip_plane(dev, 0);
1029 }
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001030
Jesse Barnes1afe3e92010-03-26 10:35:20 -07001031 if (iir & I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT) {
Jesse Barnes70565d02010-07-01 04:45:43 -07001032 intel_prepare_page_flip(dev, 1);
Jesse Barnes1afe3e92010-03-26 10:35:20 -07001033 if (dev_priv->flip_pending_is_done)
1034 intel_finish_page_flip_plane(dev, 1);
Jesse Barnes1afe3e92010-03-26 10:35:20 -07001035 }
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001036
Keith Packard05eff842008-11-19 14:03:05 -08001037 if (pipea_stats & vblank_status) {
Eric Anholtcdfbc412008-11-04 15:50:30 -08001038 vblank++;
1039 drm_handle_vblank(dev, 0);
Simon Farnsworth4e5359c2010-09-01 17:47:52 +01001040 if (!dev_priv->flip_pending_is_done) {
1041 i915_pageflip_stall_check(dev, 0);
Jesse Barnes1afe3e92010-03-26 10:35:20 -07001042 intel_finish_page_flip(dev, 0);
Simon Farnsworth4e5359c2010-09-01 17:47:52 +01001043 }
Eric Anholtcdfbc412008-11-04 15:50:30 -08001044 }
Eric Anholt673a3942008-07-30 12:06:12 -07001045
Keith Packard05eff842008-11-19 14:03:05 -08001046 if (pipeb_stats & vblank_status) {
Eric Anholtcdfbc412008-11-04 15:50:30 -08001047 vblank++;
1048 drm_handle_vblank(dev, 1);
Simon Farnsworth4e5359c2010-09-01 17:47:52 +01001049 if (!dev_priv->flip_pending_is_done) {
1050 i915_pageflip_stall_check(dev, 1);
Jesse Barnes1afe3e92010-03-26 10:35:20 -07001051 intel_finish_page_flip(dev, 1);
Simon Farnsworth4e5359c2010-09-01 17:47:52 +01001052 }
Eric Anholtcdfbc412008-11-04 15:50:30 -08001053 }
Keith Packard7c463582008-11-04 02:03:27 -08001054
Jesse Barnesd874bcf2010-06-30 13:16:00 -07001055 if ((pipea_stats & PIPE_LEGACY_BLC_EVENT_STATUS) ||
1056 (pipeb_stats & PIPE_LEGACY_BLC_EVENT_STATUS) ||
Eric Anholtcdfbc412008-11-04 15:50:30 -08001057 (iir & I915_ASLE_INTERRUPT))
Chris Wilson3b617962010-08-24 09:02:58 +01001058 intel_opregion_asle_intr(dev);
Keith Packard7c463582008-11-04 02:03:27 -08001059
Eric Anholtcdfbc412008-11-04 15:50:30 -08001060 /* With MSI, interrupts are only generated when iir
1061 * transitions from zero to nonzero. If another bit got
1062 * set while we were handling the existing iir bits, then
1063 * we would never get another interrupt.
1064 *
1065 * This is fine on non-MSI as well, as if we hit this path
1066 * we avoid exiting the interrupt handler only to generate
1067 * another one.
1068 *
1069 * Note that for MSI this could cause a stray interrupt report
1070 * if an interrupt landed in the time between writing IIR and
1071 * the posting read. This should be rare enough to never
1072 * trigger the 99% of 100,000 interrupts test for disabling
1073 * stray interrupts.
1074 */
1075 iir = new_iir;
Keith Packard05eff842008-11-19 14:03:05 -08001076 }
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001077
Keith Packard05eff842008-11-19 14:03:05 -08001078 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079}
1080
Dave Airlieaf6061a2008-05-07 12:15:39 +10001081static int i915_emit_irq(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082{
1083 drm_i915_private_t *dev_priv = dev->dev_private;
Dave Airlie7c1c2872008-11-28 14:22:24 +10001084 struct drm_i915_master_private *master_priv = dev->primary->master->driver_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085
1086 i915_kernel_lost_context(dev);
1087
Zhao Yakui44d98a62009-10-09 11:39:40 +08001088 DRM_DEBUG_DRIVER("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089
Kristian Høgsbergc99b0582008-08-20 11:20:13 -04001090 dev_priv->counter++;
Alan Hourihanec29b6692006-08-12 16:29:24 +10001091 if (dev_priv->counter > 0x7FFFFFFFUL)
Kristian Høgsbergc99b0582008-08-20 11:20:13 -04001092 dev_priv->counter = 1;
Dave Airlie7c1c2872008-11-28 14:22:24 +10001093 if (master_priv->sarea_priv)
1094 master_priv->sarea_priv->last_enqueue = dev_priv->counter;
Alan Hourihanec29b6692006-08-12 16:29:24 +10001095
Keith Packard0baf8232008-11-08 11:44:14 +10001096 BEGIN_LP_RING(4);
Jesse Barnes585fb112008-07-29 11:54:06 -07001097 OUT_RING(MI_STORE_DWORD_INDEX);
Keith Packard0baf8232008-11-08 11:44:14 +10001098 OUT_RING(I915_BREADCRUMB_INDEX << MI_STORE_DWORD_INDEX_SHIFT);
Alan Hourihanec29b6692006-08-12 16:29:24 +10001099 OUT_RING(dev_priv->counter);
Jesse Barnes585fb112008-07-29 11:54:06 -07001100 OUT_RING(MI_USER_INTERRUPT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101 ADVANCE_LP_RING();
Dave Airliebc5f4522007-11-05 12:50:58 +10001102
Alan Hourihanec29b6692006-08-12 16:29:24 +10001103 return dev_priv->counter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104}
1105
Chris Wilson9d34e5d2009-09-24 05:26:06 +01001106void i915_trace_irq_get(struct drm_device *dev, u32 seqno)
1107{
1108 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001109 struct intel_ring_buffer *render_ring = &dev_priv->render_ring;
Chris Wilson9d34e5d2009-09-24 05:26:06 +01001110
1111 if (dev_priv->trace_irq_seqno == 0)
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001112 render_ring->user_irq_get(dev, render_ring);
Chris Wilson9d34e5d2009-09-24 05:26:06 +01001113
1114 dev_priv->trace_irq_seqno = seqno;
1115}
1116
Dave Airlie84b1fd12007-07-11 15:53:27 +10001117static int i915_wait_irq(struct drm_device * dev, int irq_nr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118{
1119 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Dave Airlie7c1c2872008-11-28 14:22:24 +10001120 struct drm_i915_master_private *master_priv = dev->primary->master->driver_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121 int ret = 0;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001122 struct intel_ring_buffer *render_ring = &dev_priv->render_ring;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123
Zhao Yakui44d98a62009-10-09 11:39:40 +08001124 DRM_DEBUG_DRIVER("irq_nr=%d breadcrumb=%d\n", irq_nr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 READ_BREADCRUMB(dev_priv));
1126
Eric Anholted4cb412008-07-29 12:10:39 -07001127 if (READ_BREADCRUMB(dev_priv) >= irq_nr) {
Dave Airlie7c1c2872008-11-28 14:22:24 +10001128 if (master_priv->sarea_priv)
1129 master_priv->sarea_priv->last_dispatch = READ_BREADCRUMB(dev_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130 return 0;
Eric Anholted4cb412008-07-29 12:10:39 -07001131 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132
Dave Airlie7c1c2872008-11-28 14:22:24 +10001133 if (master_priv->sarea_priv)
1134 master_priv->sarea_priv->perf_boxes |= I915_BOX_WAIT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001136 render_ring->user_irq_get(dev, render_ring);
Zou Nan hai852835f2010-05-21 09:08:56 +08001137 DRM_WAIT_ON(ret, dev_priv->render_ring.irq_queue, 3 * DRM_HZ,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138 READ_BREADCRUMB(dev_priv) >= irq_nr);
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001139 render_ring->user_irq_put(dev, render_ring);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140
Eric Anholt20caafa2007-08-25 19:22:43 +10001141 if (ret == -EBUSY) {
Márton Németh3e684ea2008-01-24 15:58:57 +10001142 DRM_ERROR("EBUSY -- rec: %d emitted: %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143 READ_BREADCRUMB(dev_priv), (int)dev_priv->counter);
1144 }
1145
Dave Airlieaf6061a2008-05-07 12:15:39 +10001146 return ret;
1147}
1148
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149/* Needs the lock as it touches the ring.
1150 */
Eric Anholtc153f452007-09-03 12:06:45 +10001151int i915_irq_emit(struct drm_device *dev, void *data,
1152 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholtc153f452007-09-03 12:06:45 +10001155 drm_i915_irq_emit_t *emit = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156 int result;
1157
Eric Anholtd3301d82010-05-21 13:55:54 -07001158 if (!dev_priv || !dev_priv->render_ring.virtual_start) {
Márton Németh3e684ea2008-01-24 15:58:57 +10001159 DRM_ERROR("called with no initialization\n");
Eric Anholt20caafa2007-08-25 19:22:43 +10001160 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 }
Eric Anholt299eb932009-02-24 22:14:12 -08001162
1163 RING_LOCK_TEST_WITH_RETURN(dev, file_priv);
1164
Eric Anholt546b0972008-09-01 16:45:29 -07001165 mutex_lock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 result = i915_emit_irq(dev);
Eric Anholt546b0972008-09-01 16:45:29 -07001167 mutex_unlock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168
Eric Anholtc153f452007-09-03 12:06:45 +10001169 if (DRM_COPY_TO_USER(emit->irq_seq, &result, sizeof(int))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 DRM_ERROR("copy_to_user\n");
Eric Anholt20caafa2007-08-25 19:22:43 +10001171 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 }
1173
1174 return 0;
1175}
1176
1177/* Doesn't need the hardware lock.
1178 */
Eric Anholtc153f452007-09-03 12:06:45 +10001179int i915_irq_wait(struct drm_device *dev, void *data,
1180 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholtc153f452007-09-03 12:06:45 +10001183 drm_i915_irq_wait_t *irqwait = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184
1185 if (!dev_priv) {
Márton Németh3e684ea2008-01-24 15:58:57 +10001186 DRM_ERROR("called with no initialization\n");
Eric Anholt20caafa2007-08-25 19:22:43 +10001187 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188 }
1189
Eric Anholtc153f452007-09-03 12:06:45 +10001190 return i915_wait_irq(dev, irqwait->irq_seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191}
1192
Keith Packard42f52ef2008-10-18 19:39:29 -07001193/* Called from drm generic code, passed 'crtc' which
1194 * we use as a pipe index
1195 */
1196int i915_enable_vblank(struct drm_device *dev, int pipe)
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001197{
1198 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Keith Packarde9d21d72008-10-16 11:31:38 -07001199 unsigned long irqflags;
Jesse Barnes71e0ffa2009-01-08 10:42:15 -08001200
Chris Wilson5eddb702010-09-11 13:48:45 +01001201 if (!i915_pipe_enabled(dev, pipe))
Jesse Barnes71e0ffa2009-01-08 10:42:15 -08001202 return -EINVAL;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001203
Keith Packarde9d21d72008-10-16 11:31:38 -07001204 spin_lock_irqsave(&dev_priv->user_irq_lock, irqflags);
Eric Anholtbad720f2009-10-22 16:11:14 -07001205 if (HAS_PCH_SPLIT(dev))
Li Pengc062df62010-01-23 00:12:58 +08001206 ironlake_enable_display_irq(dev_priv, (pipe == 0) ?
1207 DE_PIPEA_VBLANK: DE_PIPEB_VBLANK);
Chris Wilsona6c45cf2010-09-17 00:32:17 +01001208 else if (INTEL_INFO(dev)->gen >= 4)
Keith Packard7c463582008-11-04 02:03:27 -08001209 i915_enable_pipestat(dev_priv, pipe,
1210 PIPE_START_VBLANK_INTERRUPT_ENABLE);
Keith Packarde9d21d72008-10-16 11:31:38 -07001211 else
Keith Packard7c463582008-11-04 02:03:27 -08001212 i915_enable_pipestat(dev_priv, pipe,
1213 PIPE_VBLANK_INTERRUPT_ENABLE);
Keith Packarde9d21d72008-10-16 11:31:38 -07001214 spin_unlock_irqrestore(&dev_priv->user_irq_lock, irqflags);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001215 return 0;
1216}
1217
Keith Packard42f52ef2008-10-18 19:39:29 -07001218/* Called from drm generic code, passed 'crtc' which
1219 * we use as a pipe index
1220 */
1221void i915_disable_vblank(struct drm_device *dev, int pipe)
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001222{
1223 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Keith Packarde9d21d72008-10-16 11:31:38 -07001224 unsigned long irqflags;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001225
Keith Packarde9d21d72008-10-16 11:31:38 -07001226 spin_lock_irqsave(&dev_priv->user_irq_lock, irqflags);
Eric Anholtbad720f2009-10-22 16:11:14 -07001227 if (HAS_PCH_SPLIT(dev))
Li Pengc062df62010-01-23 00:12:58 +08001228 ironlake_disable_display_irq(dev_priv, (pipe == 0) ?
1229 DE_PIPEA_VBLANK: DE_PIPEB_VBLANK);
1230 else
1231 i915_disable_pipestat(dev_priv, pipe,
1232 PIPE_VBLANK_INTERRUPT_ENABLE |
1233 PIPE_START_VBLANK_INTERRUPT_ENABLE);
Keith Packarde9d21d72008-10-16 11:31:38 -07001234 spin_unlock_irqrestore(&dev_priv->user_irq_lock, irqflags);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001235}
1236
Jesse Barnes79e53942008-11-07 14:24:08 -08001237void i915_enable_interrupt (struct drm_device *dev)
1238{
1239 struct drm_i915_private *dev_priv = dev->dev_private;
Zhenyu Wange170b032009-06-05 15:38:40 +08001240
Eric Anholtbad720f2009-10-22 16:11:14 -07001241 if (!HAS_PCH_SPLIT(dev))
Chris Wilson3b617962010-08-24 09:02:58 +01001242 intel_opregion_enable_asle(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08001243 dev_priv->irq_enabled = 1;
1244}
1245
1246
Dave Airlie702880f2006-06-24 17:07:34 +10001247/* Set the vblank monitor pipe
1248 */
Eric Anholtc153f452007-09-03 12:06:45 +10001249int i915_vblank_pipe_set(struct drm_device *dev, void *data,
1250 struct drm_file *file_priv)
Dave Airlie702880f2006-06-24 17:07:34 +10001251{
Dave Airlie702880f2006-06-24 17:07:34 +10001252 drm_i915_private_t *dev_priv = dev->dev_private;
Dave Airlie702880f2006-06-24 17:07:34 +10001253
1254 if (!dev_priv) {
Márton Németh3e684ea2008-01-24 15:58:57 +10001255 DRM_ERROR("called with no initialization\n");
Eric Anholt20caafa2007-08-25 19:22:43 +10001256 return -EINVAL;
Dave Airlie702880f2006-06-24 17:07:34 +10001257 }
1258
=?utf-8?q?Michel_D=C3=A4nzer?=5b516942006-10-25 00:08:23 +10001259 return 0;
Dave Airlie702880f2006-06-24 17:07:34 +10001260}
1261
Eric Anholtc153f452007-09-03 12:06:45 +10001262int i915_vblank_pipe_get(struct drm_device *dev, void *data,
1263 struct drm_file *file_priv)
Dave Airlie702880f2006-06-24 17:07:34 +10001264{
Dave Airlie702880f2006-06-24 17:07:34 +10001265 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholtc153f452007-09-03 12:06:45 +10001266 drm_i915_vblank_pipe_t *pipe = data;
Dave Airlie702880f2006-06-24 17:07:34 +10001267
1268 if (!dev_priv) {
Márton Németh3e684ea2008-01-24 15:58:57 +10001269 DRM_ERROR("called with no initialization\n");
Eric Anholt20caafa2007-08-25 19:22:43 +10001270 return -EINVAL;
Dave Airlie702880f2006-06-24 17:07:34 +10001271 }
1272
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001273 pipe->pipe = DRM_I915_VBLANK_PIPE_A | DRM_I915_VBLANK_PIPE_B;
Eric Anholtc153f452007-09-03 12:06:45 +10001274
Dave Airlie702880f2006-06-24 17:07:34 +10001275 return 0;
1276}
1277
=?utf-8?q?Michel_D=C3=A4nzer?=a6b54f32006-10-24 23:37:43 +10001278/**
1279 * Schedule buffer swap at given vertical blank.
1280 */
Eric Anholtc153f452007-09-03 12:06:45 +10001281int i915_vblank_swap(struct drm_device *dev, void *data,
1282 struct drm_file *file_priv)
=?utf-8?q?Michel_D=C3=A4nzer?=a6b54f32006-10-24 23:37:43 +10001283{
Eric Anholtbd95e0a2008-11-04 12:01:24 -08001284 /* The delayed swap mechanism was fundamentally racy, and has been
1285 * removed. The model was that the client requested a delayed flip/swap
1286 * from the kernel, then waited for vblank before continuing to perform
1287 * rendering. The problem was that the kernel might wake the client
1288 * up before it dispatched the vblank swap (since the lock has to be
1289 * held while touching the ringbuffer), in which case the client would
1290 * clear and start the next frame before the swap occurred, and
1291 * flicker would occur in addition to likely missing the vblank.
1292 *
1293 * In the absence of this ioctl, userland falls back to a correct path
1294 * of waiting for a vblank, then dispatching the swap on its own.
1295 * Context switching to userland and back is plenty fast enough for
1296 * meeting the requirements of vblank swapping.
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001297 */
Eric Anholtbd95e0a2008-11-04 12:01:24 -08001298 return -EINVAL;
=?utf-8?q?Michel_D=C3=A4nzer?=a6b54f32006-10-24 23:37:43 +10001299}
1300
Chris Wilson995b6762010-08-20 13:23:26 +01001301static struct drm_i915_gem_request *
Zou Nan hai852835f2010-05-21 09:08:56 +08001302i915_get_tail_request(struct drm_device *dev)
1303{
Ben Gamarif65d9422009-09-14 17:48:44 -04001304 drm_i915_private_t *dev_priv = dev->dev_private;
Zou Nan hai852835f2010-05-21 09:08:56 +08001305 return list_entry(dev_priv->render_ring.request_list.prev,
1306 struct drm_i915_gem_request, list);
Ben Gamarif65d9422009-09-14 17:48:44 -04001307}
1308
1309/**
1310 * This is called when the chip hasn't reported back with completed
1311 * batchbuffers in a long time. The first time this is called we simply record
1312 * ACTHD. If ACTHD hasn't changed by the time the hangcheck timer elapses
1313 * again, we assume the chip is wedged and try to fix it.
1314 */
1315void i915_hangcheck_elapsed(unsigned long data)
1316{
1317 struct drm_device *dev = (struct drm_device *)data;
1318 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsoncbb465e2010-06-06 12:16:24 +01001319 uint32_t acthd, instdone, instdone1;
Eric Anholtb9201c12010-01-08 14:25:16 -08001320
Chris Wilsona6c45cf2010-09-17 00:32:17 +01001321 if (INTEL_INFO(dev)->gen < 4) {
Ben Gamarif65d9422009-09-14 17:48:44 -04001322 acthd = I915_READ(ACTHD);
Chris Wilsoncbb465e2010-06-06 12:16:24 +01001323 instdone = I915_READ(INSTDONE);
1324 instdone1 = 0;
1325 } else {
Ben Gamarif65d9422009-09-14 17:48:44 -04001326 acthd = I915_READ(ACTHD_I965);
Chris Wilsoncbb465e2010-06-06 12:16:24 +01001327 instdone = I915_READ(INSTDONE_I965);
1328 instdone1 = I915_READ(INSTDONE1);
1329 }
Ben Gamarif65d9422009-09-14 17:48:44 -04001330
1331 /* If all work is done then ACTHD clearly hasn't advanced. */
Zou Nan hai852835f2010-05-21 09:08:56 +08001332 if (list_empty(&dev_priv->render_ring.request_list) ||
1333 i915_seqno_passed(i915_get_gem_seqno(dev,
1334 &dev_priv->render_ring),
1335 i915_get_tail_request(dev)->seqno)) {
Chris Wilson7839d952010-09-09 00:02:03 +01001336 bool missed_wakeup = false;
1337
Ben Gamarif65d9422009-09-14 17:48:44 -04001338 dev_priv->hangcheck_count = 0;
Chris Wilsone78d73b2010-08-07 14:18:47 +01001339
1340 /* Issue a wake-up to catch stuck h/w. */
Chris Wilson7839d952010-09-09 00:02:03 +01001341 if (dev_priv->render_ring.waiting_gem_seqno &&
1342 waitqueue_active(&dev_priv->render_ring.irq_queue)) {
1343 DRM_WAKEUP(&dev_priv->render_ring.irq_queue);
1344 missed_wakeup = true;
Chris Wilsone78d73b2010-08-07 14:18:47 +01001345 }
Chris Wilson7839d952010-09-09 00:02:03 +01001346
1347 if (dev_priv->bsd_ring.waiting_gem_seqno &&
1348 waitqueue_active(&dev_priv->bsd_ring.irq_queue)) {
1349 DRM_WAKEUP(&dev_priv->bsd_ring.irq_queue);
1350 missed_wakeup = true;
1351 }
1352
1353 if (missed_wakeup)
1354 DRM_ERROR("Hangcheck timer elapsed... GPU idle, missed IRQ.\n");
Ben Gamarif65d9422009-09-14 17:48:44 -04001355 return;
1356 }
1357
Chris Wilsoncbb465e2010-06-06 12:16:24 +01001358 if (dev_priv->last_acthd == acthd &&
1359 dev_priv->last_instdone == instdone &&
1360 dev_priv->last_instdone1 == instdone1) {
1361 if (dev_priv->hangcheck_count++ > 1) {
1362 DRM_ERROR("Hangcheck timer elapsed... GPU hung\n");
Chris Wilson8c80b592010-08-08 20:38:12 +01001363
1364 if (!IS_GEN2(dev)) {
1365 /* Is the chip hanging on a WAIT_FOR_EVENT?
1366 * If so we can simply poke the RB_WAIT bit
1367 * and break the hang. This should work on
1368 * all but the second generation chipsets.
1369 */
1370 u32 tmp = I915_READ(PRB0_CTL);
1371 if (tmp & RING_WAIT) {
1372 I915_WRITE(PRB0_CTL, tmp);
1373 POSTING_READ(PRB0_CTL);
1374 goto out;
1375 }
1376 }
1377
Chris Wilsoncbb465e2010-06-06 12:16:24 +01001378 i915_handle_error(dev, true);
1379 return;
1380 }
1381 } else {
1382 dev_priv->hangcheck_count = 0;
1383
1384 dev_priv->last_acthd = acthd;
1385 dev_priv->last_instdone = instdone;
1386 dev_priv->last_instdone1 = instdone1;
1387 }
Ben Gamarif65d9422009-09-14 17:48:44 -04001388
Chris Wilson8c80b592010-08-08 20:38:12 +01001389out:
Ben Gamarif65d9422009-09-14 17:48:44 -04001390 /* Reset timer case chip hangs without another request being added */
Chris Wilsonb3b079d2010-09-13 23:44:34 +01001391 mod_timer(&dev_priv->hangcheck_timer,
1392 jiffies + msecs_to_jiffies(DRM_I915_HANGCHECK_PERIOD));
Ben Gamarif65d9422009-09-14 17:48:44 -04001393}
1394
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395/* drm_dma.h hooks
1396*/
Adam Jacksonf2b115e2009-12-03 17:14:42 -05001397static void ironlake_irq_preinstall(struct drm_device *dev)
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001398{
1399 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
1400
1401 I915_WRITE(HWSTAM, 0xeffe);
1402
1403 /* XXX hotplug from PCH */
1404
1405 I915_WRITE(DEIMR, 0xffffffff);
1406 I915_WRITE(DEIER, 0x0);
1407 (void) I915_READ(DEIER);
1408
1409 /* and GT */
1410 I915_WRITE(GTIMR, 0xffffffff);
1411 I915_WRITE(GTIER, 0x0);
1412 (void) I915_READ(GTIER);
Zhenyu Wangc6501562009-11-03 18:57:21 +00001413
1414 /* south display irq */
1415 I915_WRITE(SDEIMR, 0xffffffff);
1416 I915_WRITE(SDEIER, 0x0);
1417 (void) I915_READ(SDEIER);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001418}
1419
Adam Jacksonf2b115e2009-12-03 17:14:42 -05001420static int ironlake_irq_postinstall(struct drm_device *dev)
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001421{
1422 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
1423 /* enable kind of interrupts always enabled */
Jesse Barnes013d5aa2010-01-29 11:18:31 -08001424 u32 display_mask = DE_MASTER_IRQ_CONTROL | DE_GSE | DE_PCH_EVENT |
1425 DE_PLANEA_FLIP_DONE | DE_PLANEB_FLIP_DONE;
Zou Nan haid1b851f2010-05-21 09:08:57 +08001426 u32 render_mask = GT_PIPE_NOTIFY | GT_BSD_USER_INTERRUPT;
Zhenyu Wangc6501562009-11-03 18:57:21 +00001427 u32 hotplug_mask = SDE_CRT_HOTPLUG | SDE_PORTB_HOTPLUG |
1428 SDE_PORTC_HOTPLUG | SDE_PORTD_HOTPLUG;
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001429
1430 dev_priv->irq_mask_reg = ~display_mask;
Li Peng643ced92010-01-28 01:05:09 +08001431 dev_priv->de_irq_enable_reg = display_mask | DE_PIPEA_VBLANK | DE_PIPEB_VBLANK;
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001432
1433 /* should always can generate irq */
1434 I915_WRITE(DEIIR, I915_READ(DEIIR));
1435 I915_WRITE(DEIMR, dev_priv->irq_mask_reg);
1436 I915_WRITE(DEIER, dev_priv->de_irq_enable_reg);
1437 (void) I915_READ(DEIER);
1438
Zhenyu Wang3fdef022010-08-19 09:46:15 +08001439 /* Gen6 only needs render pipe_control now */
1440 if (IS_GEN6(dev))
1441 render_mask = GT_PIPE_NOTIFY;
1442
Zou Nan hai852835f2010-05-21 09:08:56 +08001443 dev_priv->gt_irq_mask_reg = ~render_mask;
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001444 dev_priv->gt_irq_enable_reg = render_mask;
1445
1446 I915_WRITE(GTIIR, I915_READ(GTIIR));
1447 I915_WRITE(GTIMR, dev_priv->gt_irq_mask_reg);
Zhenyu Wang3fdef022010-08-19 09:46:15 +08001448 if (IS_GEN6(dev))
1449 I915_WRITE(GEN6_RENDER_IMR, ~GEN6_RENDER_PIPE_CONTROL_NOTIFY_INTERRUPT);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001450 I915_WRITE(GTIER, dev_priv->gt_irq_enable_reg);
1451 (void) I915_READ(GTIER);
1452
Zhenyu Wangc6501562009-11-03 18:57:21 +00001453 dev_priv->pch_irq_mask_reg = ~hotplug_mask;
1454 dev_priv->pch_irq_enable_reg = hotplug_mask;
1455
1456 I915_WRITE(SDEIIR, I915_READ(SDEIIR));
1457 I915_WRITE(SDEIMR, dev_priv->pch_irq_mask_reg);
1458 I915_WRITE(SDEIER, dev_priv->pch_irq_enable_reg);
1459 (void) I915_READ(SDEIER);
1460
Jesse Barnesf97108d2010-01-29 11:27:07 -08001461 if (IS_IRONLAKE_M(dev)) {
1462 /* Clear & enable PCU event interrupts */
1463 I915_WRITE(DEIIR, DE_PCU_EVENT);
1464 I915_WRITE(DEIER, I915_READ(DEIER) | DE_PCU_EVENT);
1465 ironlake_enable_display_irq(dev_priv, DE_PCU_EVENT);
1466 }
1467
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001468 return 0;
1469}
1470
Dave Airlie84b1fd12007-07-11 15:53:27 +10001471void i915_driver_irq_preinstall(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472{
1473 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
1474
Jesse Barnes79e53942008-11-07 14:24:08 -08001475 atomic_set(&dev_priv->irq_received, 0);
1476
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001477 INIT_WORK(&dev_priv->hotplug_work, i915_hotplug_work_func);
Jesse Barnes8a905232009-07-11 16:48:03 -04001478 INIT_WORK(&dev_priv->error_work, i915_error_work_func);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001479
Eric Anholtbad720f2009-10-22 16:11:14 -07001480 if (HAS_PCH_SPLIT(dev)) {
Adam Jacksonf2b115e2009-12-03 17:14:42 -05001481 ironlake_irq_preinstall(dev);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001482 return;
1483 }
1484
Jesse Barnes5ca58282009-03-31 14:11:15 -07001485 if (I915_HAS_HOTPLUG(dev)) {
1486 I915_WRITE(PORT_HOTPLUG_EN, 0);
1487 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
1488 }
1489
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001490 I915_WRITE(HWSTAM, 0xeffe);
Keith Packard7c463582008-11-04 02:03:27 -08001491 I915_WRITE(PIPEASTAT, 0);
1492 I915_WRITE(PIPEBSTAT, 0);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001493 I915_WRITE(IMR, 0xffffffff);
Eric Anholted4cb412008-07-29 12:10:39 -07001494 I915_WRITE(IER, 0x0);
Keith Packard7c463582008-11-04 02:03:27 -08001495 (void) I915_READ(IER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496}
1497
Jesse Barnesb01f2c32009-12-11 11:07:17 -08001498/*
1499 * Must be called after intel_modeset_init or hotplug interrupts won't be
1500 * enabled correctly.
1501 */
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001502int i915_driver_irq_postinstall(struct drm_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503{
1504 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Jesse Barnes5ca58282009-03-31 14:11:15 -07001505 u32 enable_mask = I915_INTERRUPT_ENABLE_FIX | I915_INTERRUPT_ENABLE_VAR;
Jesse Barnes63eeaf32009-06-18 16:56:52 -07001506 u32 error_mask;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001507
Zou Nan hai852835f2010-05-21 09:08:56 +08001508 DRM_INIT_WAITQUEUE(&dev_priv->render_ring.irq_queue);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001509
Zou Nan haid1b851f2010-05-21 09:08:57 +08001510 if (HAS_BSD(dev))
1511 DRM_INIT_WAITQUEUE(&dev_priv->bsd_ring.irq_queue);
1512
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001513 dev_priv->vblank_pipe = DRM_I915_VBLANK_PIPE_A | DRM_I915_VBLANK_PIPE_B;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001514
Eric Anholtbad720f2009-10-22 16:11:14 -07001515 if (HAS_PCH_SPLIT(dev))
Adam Jacksonf2b115e2009-12-03 17:14:42 -05001516 return ironlake_irq_postinstall(dev);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001517
Keith Packard7c463582008-11-04 02:03:27 -08001518 /* Unmask the interrupts that we always want on. */
1519 dev_priv->irq_mask_reg = ~I915_INTERRUPT_ENABLE_FIX;
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +01001520
Keith Packard7c463582008-11-04 02:03:27 -08001521 dev_priv->pipestat[0] = 0;
1522 dev_priv->pipestat[1] = 0;
1523
Jesse Barnes5ca58282009-03-31 14:11:15 -07001524 if (I915_HAS_HOTPLUG(dev)) {
Adam Jacksonc496fa12010-05-27 17:26:45 -04001525 /* Enable in IER... */
1526 enable_mask |= I915_DISPLAY_PORT_INTERRUPT;
1527 /* and unmask in IMR */
1528 dev_priv->irq_mask_reg &= ~I915_DISPLAY_PORT_INTERRUPT;
1529 }
1530
1531 /*
1532 * Enable some error detection, note the instruction error mask
1533 * bit is reserved, so we leave it masked.
1534 */
1535 if (IS_G4X(dev)) {
1536 error_mask = ~(GM45_ERROR_PAGE_TABLE |
1537 GM45_ERROR_MEM_PRIV |
1538 GM45_ERROR_CP_PRIV |
1539 I915_ERROR_MEMORY_REFRESH);
1540 } else {
1541 error_mask = ~(I915_ERROR_PAGE_TABLE |
1542 I915_ERROR_MEMORY_REFRESH);
1543 }
1544 I915_WRITE(EMR, error_mask);
1545
1546 I915_WRITE(IMR, dev_priv->irq_mask_reg);
1547 I915_WRITE(IER, enable_mask);
1548 (void) I915_READ(IER);
1549
1550 if (I915_HAS_HOTPLUG(dev)) {
Jesse Barnes5ca58282009-03-31 14:11:15 -07001551 u32 hotplug_en = I915_READ(PORT_HOTPLUG_EN);
1552
Jesse Barnesb01f2c32009-12-11 11:07:17 -08001553 /* Note HDMI and DP share bits */
1554 if (dev_priv->hotplug_supported_mask & HDMIB_HOTPLUG_INT_STATUS)
1555 hotplug_en |= HDMIB_HOTPLUG_INT_EN;
1556 if (dev_priv->hotplug_supported_mask & HDMIC_HOTPLUG_INT_STATUS)
1557 hotplug_en |= HDMIC_HOTPLUG_INT_EN;
1558 if (dev_priv->hotplug_supported_mask & HDMID_HOTPLUG_INT_STATUS)
1559 hotplug_en |= HDMID_HOTPLUG_INT_EN;
1560 if (dev_priv->hotplug_supported_mask & SDVOC_HOTPLUG_INT_STATUS)
1561 hotplug_en |= SDVOC_HOTPLUG_INT_EN;
1562 if (dev_priv->hotplug_supported_mask & SDVOB_HOTPLUG_INT_STATUS)
1563 hotplug_en |= SDVOB_HOTPLUG_INT_EN;
Andy Lutomirski2d1c9752010-06-12 05:21:18 -04001564 if (dev_priv->hotplug_supported_mask & CRT_HOTPLUG_INT_STATUS) {
Jesse Barnesb01f2c32009-12-11 11:07:17 -08001565 hotplug_en |= CRT_HOTPLUG_INT_EN;
Andy Lutomirski2d1c9752010-06-12 05:21:18 -04001566
1567 /* Programming the CRT detection parameters tends
1568 to generate a spurious hotplug event about three
1569 seconds later. So just do it once.
1570 */
1571 if (IS_G4X(dev))
1572 hotplug_en |= CRT_HOTPLUG_ACTIVATION_PERIOD_64;
1573 hotplug_en |= CRT_HOTPLUG_VOLTAGE_COMPARE_50;
1574 }
1575
Jesse Barnesb01f2c32009-12-11 11:07:17 -08001576 /* Ignore TV since it's buggy */
1577
Jesse Barnes5ca58282009-03-31 14:11:15 -07001578 I915_WRITE(PORT_HOTPLUG_EN, hotplug_en);
Jesse Barnes5ca58282009-03-31 14:11:15 -07001579 }
1580
Chris Wilson3b617962010-08-24 09:02:58 +01001581 intel_opregion_enable_asle(dev);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001582
1583 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584}
1585
Adam Jacksonf2b115e2009-12-03 17:14:42 -05001586static void ironlake_irq_uninstall(struct drm_device *dev)
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001587{
1588 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
1589 I915_WRITE(HWSTAM, 0xffffffff);
1590
1591 I915_WRITE(DEIMR, 0xffffffff);
1592 I915_WRITE(DEIER, 0x0);
1593 I915_WRITE(DEIIR, I915_READ(DEIIR));
1594
1595 I915_WRITE(GTIMR, 0xffffffff);
1596 I915_WRITE(GTIER, 0x0);
1597 I915_WRITE(GTIIR, I915_READ(GTIIR));
1598}
1599
Dave Airlie84b1fd12007-07-11 15:53:27 +10001600void i915_driver_irq_uninstall(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601{
1602 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Dave Airlie91e37382006-02-18 15:17:04 +11001603
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604 if (!dev_priv)
1605 return;
1606
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001607 dev_priv->vblank_pipe = 0;
1608
Eric Anholtbad720f2009-10-22 16:11:14 -07001609 if (HAS_PCH_SPLIT(dev)) {
Adam Jacksonf2b115e2009-12-03 17:14:42 -05001610 ironlake_irq_uninstall(dev);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001611 return;
1612 }
1613
Jesse Barnes5ca58282009-03-31 14:11:15 -07001614 if (I915_HAS_HOTPLUG(dev)) {
1615 I915_WRITE(PORT_HOTPLUG_EN, 0);
1616 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
1617 }
1618
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001619 I915_WRITE(HWSTAM, 0xffffffff);
Keith Packard7c463582008-11-04 02:03:27 -08001620 I915_WRITE(PIPEASTAT, 0);
1621 I915_WRITE(PIPEBSTAT, 0);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001622 I915_WRITE(IMR, 0xffffffff);
Eric Anholted4cb412008-07-29 12:10:39 -07001623 I915_WRITE(IER, 0x0);
Dave Airlie91e37382006-02-18 15:17:04 +11001624
Keith Packard7c463582008-11-04 02:03:27 -08001625 I915_WRITE(PIPEASTAT, I915_READ(PIPEASTAT) & 0x8000ffff);
1626 I915_WRITE(PIPEBSTAT, I915_READ(PIPEBSTAT) & 0x8000ffff);
1627 I915_WRITE(IIR, I915_READ(IIR));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628}