blob: 9aa1e1dc5fd5c5ba66a93f4f08b2550bd7c93303 [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);
Chris Wilson3143a2b2010-11-16 15:55:10 +000073 POSTING_READ(GTIMR);
Zhenyu Wang036a4a72009-06-08 14:40:19 +080074 }
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);
Chris Wilson3143a2b2010-11-16 15:55:10 +000083 POSTING_READ(GTIMR);
Zhenyu Wang036a4a72009-06-08 14:40:19 +080084 }
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);
Chris Wilson3143a2b2010-11-16 15:55:10 +000094 POSTING_READ(DEIMR);
Zhenyu Wang036a4a72009-06-08 14:40:19 +080095 }
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);
Chris Wilson3143a2b2010-11-16 15:55:10 +0000104 POSTING_READ(DEIMR);
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800105 }
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);
Chris Wilson3143a2b2010-11-16 15:55:10 +0000114 POSTING_READ(IMR);
Eric Anholted4cb412008-07-29 12:10:39 -0700115 }
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);
Chris Wilson3143a2b2010-11-16 15:55:10 +0000124 POSTING_READ(IMR);
Eric Anholted4cb412008-07-29 12:10:39 -0700125 }
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));
Chris Wilson3143a2b2010-11-16 15:55:10 +0000147 POSTING_READ(reg);
Keith Packard7c463582008-11-04 02:03:27 -0800148 }
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]);
Chris Wilson3143a2b2010-11-16 15:55:10 +0000159 POSTING_READ(reg);
Keith Packard7c463582008-11-04 02:03:27 -0800160 }
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 Yakuiedcb49ca2010-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 Yakuiedcb49ca2010-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 Yakuiedcb49ca2010-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 Wilson549f7362010-10-19 11:19:32 +0100296static void notify_ring(struct drm_device *dev,
297 struct intel_ring_buffer *ring)
298{
299 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson78501ea2010-10-27 12:18:21 +0100300 u32 seqno = ring->get_seqno(ring);
Chris Wilsonb2223492010-10-27 15:27:33 +0100301 ring->irq_seqno = seqno;
Chris Wilson549f7362010-10-19 11:19:32 +0100302 trace_i915_gem_request_complete(dev, seqno);
303 wake_up_all(&ring->irq_queue);
304 dev_priv->hangcheck_count = 0;
305 mod_timer(&dev_priv->hangcheck_timer,
306 jiffies + msecs_to_jiffies(DRM_I915_HANGCHECK_PERIOD));
307}
308
Chris Wilson995b6762010-08-20 13:23:26 +0100309static irqreturn_t ironlake_irq_handler(struct drm_device *dev)
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800310{
311 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
312 int ret = IRQ_NONE;
Dave Airlie3ff99162009-12-08 14:03:47 +1000313 u32 de_iir, gt_iir, de_ier, pch_iir;
Yuanhan Liu2d7b8362010-10-08 10:21:06 +0100314 u32 hotplug_mask;
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800315 struct drm_i915_master_private *master_priv;
Xiang, Haihao881f47b2010-09-19 14:40:43 +0100316 u32 bsd_usr_interrupt = GT_BSD_USER_INTERRUPT;
317
318 if (IS_GEN6(dev))
319 bsd_usr_interrupt = GT_GEN6_BSD_USER_INTERRUPT;
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800320
Zou, Nanhai2d109a82009-11-06 02:13:01 +0000321 /* disable master interrupt before clearing iir */
322 de_ier = I915_READ(DEIER);
323 I915_WRITE(DEIER, de_ier & ~DE_MASTER_IRQ_CONTROL);
Chris Wilson3143a2b2010-11-16 15:55:10 +0000324 POSTING_READ(DEIER);
Zou, Nanhai2d109a82009-11-06 02:13:01 +0000325
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800326 de_iir = I915_READ(DEIIR);
327 gt_iir = I915_READ(GTIIR);
Zhenyu Wangc6501562009-11-03 18:57:21 +0000328 pch_iir = I915_READ(SDEIIR);
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800329
Zou Nan haic7c85102010-01-15 10:29:06 +0800330 if (de_iir == 0 && gt_iir == 0 && pch_iir == 0)
331 goto done;
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800332
Yuanhan Liu2d7b8362010-10-08 10:21:06 +0100333 if (HAS_PCH_CPT(dev))
334 hotplug_mask = SDE_HOTPLUG_MASK_CPT;
335 else
336 hotplug_mask = SDE_HOTPLUG_MASK;
337
Zou Nan haic7c85102010-01-15 10:29:06 +0800338 ret = IRQ_HANDLED;
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800339
Zou Nan haic7c85102010-01-15 10:29:06 +0800340 if (dev->primary->master) {
341 master_priv = dev->primary->master->driver_priv;
342 if (master_priv->sarea_priv)
343 master_priv->sarea_priv->last_dispatch =
344 READ_BREADCRUMB(dev_priv);
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800345 }
346
Chris Wilson549f7362010-10-19 11:19:32 +0100347 if (gt_iir & GT_PIPE_NOTIFY)
348 notify_ring(dev, &dev_priv->render_ring);
Xiang, Haihao881f47b2010-09-19 14:40:43 +0100349 if (gt_iir & bsd_usr_interrupt)
Chris Wilson549f7362010-10-19 11:19:32 +0100350 notify_ring(dev, &dev_priv->bsd_ring);
351 if (HAS_BLT(dev) && gt_iir & GT_BLT_USER_INTERRUPT)
352 notify_ring(dev, &dev_priv->blt_ring);
Zou Nan haic7c85102010-01-15 10:29:06 +0800353
354 if (de_iir & DE_GSE)
Chris Wilson3b617962010-08-24 09:02:58 +0100355 intel_opregion_gse_intr(dev);
Zou Nan haic7c85102010-01-15 10:29:06 +0800356
Zhenyu Wangf072d2e2010-02-09 09:46:19 +0800357 if (de_iir & DE_PLANEA_FLIP_DONE) {
Jesse Barnes013d5aa2010-01-29 11:18:31 -0800358 intel_prepare_page_flip(dev, 0);
Chris Wilson2bbda382010-09-02 17:59:39 +0100359 intel_finish_page_flip_plane(dev, 0);
Jesse Barnes013d5aa2010-01-29 11:18:31 -0800360 }
361
Zhenyu Wangf072d2e2010-02-09 09:46:19 +0800362 if (de_iir & DE_PLANEB_FLIP_DONE) {
363 intel_prepare_page_flip(dev, 1);
Chris Wilson2bbda382010-09-02 17:59:39 +0100364 intel_finish_page_flip_plane(dev, 1);
Jesse Barnes013d5aa2010-01-29 11:18:31 -0800365 }
Li Pengc062df62010-01-23 00:12:58 +0800366
Zhenyu Wangf072d2e2010-02-09 09:46:19 +0800367 if (de_iir & DE_PIPEA_VBLANK)
368 drm_handle_vblank(dev, 0);
369
370 if (de_iir & DE_PIPEB_VBLANK)
371 drm_handle_vblank(dev, 1);
372
Zou Nan haic7c85102010-01-15 10:29:06 +0800373 /* check event from PCH */
Yuanhan Liu2d7b8362010-10-08 10:21:06 +0100374 if ((de_iir & DE_PCH_EVENT) && (pch_iir & hotplug_mask))
Zou Nan haic7c85102010-01-15 10:29:06 +0800375 queue_work(dev_priv->wq, &dev_priv->hotplug_work);
Zou Nan haic7c85102010-01-15 10:29:06 +0800376
Jesse Barnesf97108d2010-01-29 11:27:07 -0800377 if (de_iir & DE_PCU_EVENT) {
Jesse Barnes7648fa92010-05-20 14:28:11 -0700378 I915_WRITE16(MEMINTRSTS, I915_READ(MEMINTRSTS));
Jesse Barnesf97108d2010-01-29 11:27:07 -0800379 i915_handle_rps_change(dev);
380 }
381
Zou Nan haic7c85102010-01-15 10:29:06 +0800382 /* should clear PCH hotplug event before clear CPU irq */
383 I915_WRITE(SDEIIR, pch_iir);
384 I915_WRITE(GTIIR, gt_iir);
385 I915_WRITE(DEIIR, de_iir);
386
387done:
Zou, Nanhai2d109a82009-11-06 02:13:01 +0000388 I915_WRITE(DEIER, de_ier);
Chris Wilson3143a2b2010-11-16 15:55:10 +0000389 POSTING_READ(DEIER);
Zou, Nanhai2d109a82009-11-06 02:13:01 +0000390
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800391 return ret;
392}
393
Jesse Barnes8a905232009-07-11 16:48:03 -0400394/**
395 * i915_error_work_func - do process context error handling work
396 * @work: work struct
397 *
398 * Fire an error uevent so userspace can see that a hang or error
399 * was detected.
400 */
401static void i915_error_work_func(struct work_struct *work)
402{
403 drm_i915_private_t *dev_priv = container_of(work, drm_i915_private_t,
404 error_work);
405 struct drm_device *dev = dev_priv->dev;
Ben Gamarif316a422009-09-14 17:48:46 -0400406 char *error_event[] = { "ERROR=1", NULL };
407 char *reset_event[] = { "RESET=1", NULL };
408 char *reset_done_event[] = { "ERROR=0", NULL };
Jesse Barnes8a905232009-07-11 16:48:03 -0400409
Ben Gamarif316a422009-09-14 17:48:46 -0400410 kobject_uevent_env(&dev->primary->kdev.kobj, KOBJ_CHANGE, error_event);
Jesse Barnes8a905232009-07-11 16:48:03 -0400411
Ben Gamariba1234d2009-09-14 17:48:47 -0400412 if (atomic_read(&dev_priv->mm.wedged)) {
Chris Wilsonf803aa52010-09-19 12:38:26 +0100413 DRM_DEBUG_DRIVER("resetting chip\n");
414 kobject_uevent_env(&dev->primary->kdev.kobj, KOBJ_CHANGE, reset_event);
415 if (!i915_reset(dev, GRDOM_RENDER)) {
416 atomic_set(&dev_priv->mm.wedged, 0);
417 kobject_uevent_env(&dev->primary->kdev.kobj, KOBJ_CHANGE, reset_done_event);
Ben Gamarif316a422009-09-14 17:48:46 -0400418 }
Chris Wilson30dbf0c2010-09-25 10:19:17 +0100419 complete_all(&dev_priv->error_completion);
Ben Gamarif316a422009-09-14 17:48:46 -0400420 }
Jesse Barnes8a905232009-07-11 16:48:03 -0400421}
422
Chris Wilson3bd3c932010-08-19 08:19:30 +0100423#ifdef CONFIG_DEBUG_FS
Chris Wilson9df30792010-02-18 10:24:56 +0000424static struct drm_i915_error_object *
425i915_error_object_create(struct drm_device *dev,
Chris Wilson05394f32010-11-08 19:18:58 +0000426 struct drm_i915_gem_object *src)
Chris Wilson9df30792010-02-18 10:24:56 +0000427{
Chris Wilsone56660d2010-08-07 11:01:26 +0100428 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson9df30792010-02-18 10:24:56 +0000429 struct drm_i915_error_object *dst;
Chris Wilson9df30792010-02-18 10:24:56 +0000430 int page, page_count;
Chris Wilsone56660d2010-08-07 11:01:26 +0100431 u32 reloc_offset;
Chris Wilson9df30792010-02-18 10:24:56 +0000432
Chris Wilson05394f32010-11-08 19:18:58 +0000433 if (src == NULL || src->pages == NULL)
Chris Wilson9df30792010-02-18 10:24:56 +0000434 return NULL;
435
Chris Wilson05394f32010-11-08 19:18:58 +0000436 page_count = src->base.size / PAGE_SIZE;
Chris Wilson9df30792010-02-18 10:24:56 +0000437
438 dst = kmalloc(sizeof(*dst) + page_count * sizeof (u32 *), GFP_ATOMIC);
439 if (dst == NULL)
440 return NULL;
441
Chris Wilson05394f32010-11-08 19:18:58 +0000442 reloc_offset = src->gtt_offset;
Chris Wilson9df30792010-02-18 10:24:56 +0000443 for (page = 0; page < page_count; page++) {
Andrew Morton788885a2010-05-11 14:07:05 -0700444 unsigned long flags;
Chris Wilsone56660d2010-08-07 11:01:26 +0100445 void __iomem *s;
446 void *d;
Andrew Morton788885a2010-05-11 14:07:05 -0700447
Chris Wilsone56660d2010-08-07 11:01:26 +0100448 d = kmalloc(PAGE_SIZE, GFP_ATOMIC);
Chris Wilson9df30792010-02-18 10:24:56 +0000449 if (d == NULL)
450 goto unwind;
Chris Wilsone56660d2010-08-07 11:01:26 +0100451
Andrew Morton788885a2010-05-11 14:07:05 -0700452 local_irq_save(flags);
Chris Wilsone56660d2010-08-07 11:01:26 +0100453 s = io_mapping_map_atomic_wc(dev_priv->mm.gtt_mapping,
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -0700454 reloc_offset);
Chris Wilsone56660d2010-08-07 11:01:26 +0100455 memcpy_fromio(d, s, PAGE_SIZE);
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -0700456 io_mapping_unmap_atomic(s);
Andrew Morton788885a2010-05-11 14:07:05 -0700457 local_irq_restore(flags);
Chris Wilsone56660d2010-08-07 11:01:26 +0100458
Chris Wilson9df30792010-02-18 10:24:56 +0000459 dst->pages[page] = d;
Chris Wilsone56660d2010-08-07 11:01:26 +0100460
461 reloc_offset += PAGE_SIZE;
Chris Wilson9df30792010-02-18 10:24:56 +0000462 }
463 dst->page_count = page_count;
Chris Wilson05394f32010-11-08 19:18:58 +0000464 dst->gtt_offset = src->gtt_offset;
Chris Wilson9df30792010-02-18 10:24:56 +0000465
466 return dst;
467
468unwind:
469 while (page--)
470 kfree(dst->pages[page]);
471 kfree(dst);
472 return NULL;
473}
474
475static void
476i915_error_object_free(struct drm_i915_error_object *obj)
477{
478 int page;
479
480 if (obj == NULL)
481 return;
482
483 for (page = 0; page < obj->page_count; page++)
484 kfree(obj->pages[page]);
485
486 kfree(obj);
487}
488
489static void
490i915_error_state_free(struct drm_device *dev,
491 struct drm_i915_error_state *error)
492{
493 i915_error_object_free(error->batchbuffer[0]);
494 i915_error_object_free(error->batchbuffer[1]);
495 i915_error_object_free(error->ringbuffer);
496 kfree(error->active_bo);
Chris Wilson6ef3d422010-08-04 20:26:07 +0100497 kfree(error->overlay);
Chris Wilson9df30792010-02-18 10:24:56 +0000498 kfree(error);
499}
500
501static u32
502i915_get_bbaddr(struct drm_device *dev, u32 *ring)
503{
504 u32 cmd;
505
506 if (IS_I830(dev) || IS_845G(dev))
507 cmd = MI_BATCH_BUFFER;
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100508 else if (INTEL_INFO(dev)->gen >= 4)
Chris Wilson9df30792010-02-18 10:24:56 +0000509 cmd = (MI_BATCH_BUFFER_START | (2 << 6) |
510 MI_BATCH_NON_SECURE_I965);
511 else
512 cmd = (MI_BATCH_BUFFER_START | (2 << 6));
513
514 return ring[0] == cmd ? ring[1] : 0;
515}
516
517static u32
Chris Wilson8168bd42010-11-11 17:54:52 +0000518i915_ringbuffer_last_batch(struct drm_device *dev,
519 struct intel_ring_buffer *ring)
Chris Wilson9df30792010-02-18 10:24:56 +0000520{
521 struct drm_i915_private *dev_priv = dev->dev_private;
522 u32 head, bbaddr;
Chris Wilson8168bd42010-11-11 17:54:52 +0000523 u32 *val;
Chris Wilson9df30792010-02-18 10:24:56 +0000524
525 /* Locate the current position in the ringbuffer and walk back
526 * to find the most recently dispatched batch buffer.
527 */
Chris Wilson8168bd42010-11-11 17:54:52 +0000528 head = I915_READ_HEAD(ring) & HEAD_ADDR;
Chris Wilson9df30792010-02-18 10:24:56 +0000529
Chris Wilsonab5793a2010-11-22 13:24:13 +0000530 val = (u32 *)(ring->virtual_start + head);
Chris Wilson8168bd42010-11-11 17:54:52 +0000531 while (--val >= (u32 *)ring->virtual_start) {
532 bbaddr = i915_get_bbaddr(dev, val);
Chris Wilson9df30792010-02-18 10:24:56 +0000533 if (bbaddr)
Chris Wilsonab5793a2010-11-22 13:24:13 +0000534 return bbaddr;
Chris Wilson9df30792010-02-18 10:24:56 +0000535 }
536
Chris Wilsonab5793a2010-11-22 13:24:13 +0000537 val = (u32 *)(ring->virtual_start + ring->size);
538 while (--val >= (u32 *)ring->virtual_start) {
539 bbaddr = i915_get_bbaddr(dev, val);
540 if (bbaddr)
541 return bbaddr;
Chris Wilson9df30792010-02-18 10:24:56 +0000542 }
543
Chris Wilsonab5793a2010-11-22 13:24:13 +0000544 return 0;
Chris Wilson9df30792010-02-18 10:24:56 +0000545}
546
Chris Wilsonc724e8a2010-11-22 08:07:02 +0000547static u32 capture_bo_list(struct drm_i915_error_buffer *err,
548 int count,
549 struct list_head *head)
550{
551 struct drm_i915_gem_object *obj;
552 int i = 0;
553
554 list_for_each_entry(obj, head, mm_list) {
555 err->size = obj->base.size;
556 err->name = obj->base.name;
557 err->seqno = obj->last_rendering_seqno;
558 err->gtt_offset = obj->gtt_offset;
559 err->read_domains = obj->base.read_domains;
560 err->write_domain = obj->base.write_domain;
561 err->fence_reg = obj->fence_reg;
562 err->pinned = 0;
563 if (obj->pin_count > 0)
564 err->pinned = 1;
565 if (obj->user_pin_count > 0)
566 err->pinned = -1;
567 err->tiling = obj->tiling_mode;
568 err->dirty = obj->dirty;
569 err->purgeable = obj->madv != I915_MADV_WILLNEED;
Chris Wilson36850922010-11-23 08:49:38 +0000570 err->ring = obj->ring ? obj->ring->id : 0;
Chris Wilsonc724e8a2010-11-22 08:07:02 +0000571
572 if (++i == count)
573 break;
574
575 err++;
576 }
577
578 return i;
579}
580
Chris Wilson748ebc62010-10-24 10:28:47 +0100581static void i915_gem_record_fences(struct drm_device *dev,
582 struct drm_i915_error_state *error)
583{
584 struct drm_i915_private *dev_priv = dev->dev_private;
585 int i;
586
587 /* Fences */
588 switch (INTEL_INFO(dev)->gen) {
589 case 6:
590 for (i = 0; i < 16; i++)
591 error->fence[i] = I915_READ64(FENCE_REG_SANDYBRIDGE_0 + (i * 8));
592 break;
593 case 5:
594 case 4:
595 for (i = 0; i < 16; i++)
596 error->fence[i] = I915_READ64(FENCE_REG_965_0 + (i * 8));
597 break;
598 case 3:
599 if (IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev))
600 for (i = 0; i < 8; i++)
601 error->fence[i+8] = I915_READ(FENCE_REG_945_8 + (i * 4));
602 case 2:
603 for (i = 0; i < 8; i++)
604 error->fence[i] = I915_READ(FENCE_REG_830_0 + (i * 4));
605 break;
606
607 }
608}
609
Jesse Barnes8a905232009-07-11 16:48:03 -0400610/**
611 * i915_capture_error_state - capture an error record for later analysis
612 * @dev: drm device
613 *
614 * Should be called when an error is detected (either a hang or an error
615 * interrupt) to capture error state from the time of the error. Fills
616 * out a structure which becomes available in debugfs for user level tools
617 * to pick up.
618 */
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700619static void i915_capture_error_state(struct drm_device *dev)
620{
621 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson05394f32010-11-08 19:18:58 +0000622 struct drm_i915_gem_object *obj;
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700623 struct drm_i915_error_state *error;
Chris Wilson05394f32010-11-08 19:18:58 +0000624 struct drm_i915_gem_object *batchbuffer[2];
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700625 unsigned long flags;
Chris Wilson9df30792010-02-18 10:24:56 +0000626 u32 bbaddr;
627 int count;
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700628
629 spin_lock_irqsave(&dev_priv->error_lock, flags);
Chris Wilson9df30792010-02-18 10:24:56 +0000630 error = dev_priv->first_error;
631 spin_unlock_irqrestore(&dev_priv->error_lock, flags);
632 if (error)
633 return;
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700634
635 error = kmalloc(sizeof(*error), GFP_ATOMIC);
636 if (!error) {
Chris Wilson9df30792010-02-18 10:24:56 +0000637 DRM_DEBUG_DRIVER("out of memory, not capturing error state\n");
638 return;
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700639 }
640
Chris Wilson2fa772f32010-10-01 13:23:27 +0100641 DRM_DEBUG_DRIVER("generating error event\n");
642
Chris Wilsonf787a5f2010-09-24 16:02:42 +0100643 error->seqno =
Chris Wilson78501ea2010-10-27 12:18:21 +0100644 dev_priv->render_ring.get_seqno(&dev_priv->render_ring);
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700645 error->eir = I915_READ(EIR);
646 error->pgtbl_er = I915_READ(PGTBL_ER);
647 error->pipeastat = I915_READ(PIPEASTAT);
648 error->pipebstat = I915_READ(PIPEBSTAT);
649 error->instpm = I915_READ(INSTPM);
Chris Wilsonf4068392010-10-27 20:36:41 +0100650 error->error = 0;
651 if (INTEL_INFO(dev)->gen >= 6) {
652 error->error = I915_READ(ERROR_GEN6);
Chris Wilsonadd354d2010-10-29 19:00:51 +0100653
Chris Wilson1d8f38f2010-10-29 19:00:51 +0100654 error->bcs_acthd = I915_READ(BCS_ACTHD);
655 error->bcs_ipehr = I915_READ(BCS_IPEHR);
656 error->bcs_ipeir = I915_READ(BCS_IPEIR);
657 error->bcs_instdone = I915_READ(BCS_INSTDONE);
658 error->bcs_seqno = 0;
659 if (dev_priv->blt_ring.get_seqno)
660 error->bcs_seqno = dev_priv->blt_ring.get_seqno(&dev_priv->blt_ring);
Chris Wilsonadd354d2010-10-29 19:00:51 +0100661
662 error->vcs_acthd = I915_READ(VCS_ACTHD);
663 error->vcs_ipehr = I915_READ(VCS_IPEHR);
664 error->vcs_ipeir = I915_READ(VCS_IPEIR);
665 error->vcs_instdone = I915_READ(VCS_INSTDONE);
666 error->vcs_seqno = 0;
667 if (dev_priv->bsd_ring.get_seqno)
668 error->vcs_seqno = dev_priv->bsd_ring.get_seqno(&dev_priv->bsd_ring);
Chris Wilsonf4068392010-10-27 20:36:41 +0100669 }
670 if (INTEL_INFO(dev)->gen >= 4) {
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700671 error->ipeir = I915_READ(IPEIR_I965);
672 error->ipehr = I915_READ(IPEHR_I965);
673 error->instdone = I915_READ(INSTDONE_I965);
674 error->instps = I915_READ(INSTPS);
675 error->instdone1 = I915_READ(INSTDONE1);
676 error->acthd = I915_READ(ACTHD_I965);
Chris Wilson9df30792010-02-18 10:24:56 +0000677 error->bbaddr = I915_READ64(BB_ADDR);
Chris Wilsonf4068392010-10-27 20:36:41 +0100678 } else {
679 error->ipeir = I915_READ(IPEIR);
680 error->ipehr = I915_READ(IPEHR);
681 error->instdone = I915_READ(INSTDONE);
682 error->acthd = I915_READ(ACTHD);
683 error->bbaddr = 0;
Chris Wilson9df30792010-02-18 10:24:56 +0000684 }
Chris Wilson748ebc62010-10-24 10:28:47 +0100685 i915_gem_record_fences(dev, error);
Chris Wilson9df30792010-02-18 10:24:56 +0000686
Chris Wilson8168bd42010-11-11 17:54:52 +0000687 bbaddr = i915_ringbuffer_last_batch(dev, &dev_priv->render_ring);
Chris Wilson9df30792010-02-18 10:24:56 +0000688
689 /* Grab the current batchbuffer, most likely to have crashed. */
690 batchbuffer[0] = NULL;
691 batchbuffer[1] = NULL;
692 count = 0;
Chris Wilson05394f32010-11-08 19:18:58 +0000693 list_for_each_entry(obj, &dev_priv->mm.active_list, mm_list) {
Chris Wilson9df30792010-02-18 10:24:56 +0000694 if (batchbuffer[0] == NULL &&
Chris Wilson05394f32010-11-08 19:18:58 +0000695 bbaddr >= obj->gtt_offset &&
696 bbaddr < obj->gtt_offset + obj->base.size)
Chris Wilson9df30792010-02-18 10:24:56 +0000697 batchbuffer[0] = obj;
698
699 if (batchbuffer[1] == NULL &&
Chris Wilson05394f32010-11-08 19:18:58 +0000700 error->acthd >= obj->gtt_offset &&
701 error->acthd < obj->gtt_offset + obj->base.size)
Chris Wilson9df30792010-02-18 10:24:56 +0000702 batchbuffer[1] = obj;
703
704 count++;
705 }
Chris Wilsone56660d2010-08-07 11:01:26 +0100706 /* Scan the other lists for completeness for those bizarre errors. */
707 if (batchbuffer[0] == NULL || batchbuffer[1] == NULL) {
Chris Wilson05394f32010-11-08 19:18:58 +0000708 list_for_each_entry(obj, &dev_priv->mm.flushing_list, mm_list) {
Chris Wilsone56660d2010-08-07 11:01:26 +0100709 if (batchbuffer[0] == NULL &&
Chris Wilson05394f32010-11-08 19:18:58 +0000710 bbaddr >= obj->gtt_offset &&
711 bbaddr < obj->gtt_offset + obj->base.size)
Chris Wilsone56660d2010-08-07 11:01:26 +0100712 batchbuffer[0] = obj;
713
714 if (batchbuffer[1] == NULL &&
Chris Wilson05394f32010-11-08 19:18:58 +0000715 error->acthd >= obj->gtt_offset &&
716 error->acthd < obj->gtt_offset + obj->base.size)
Chris Wilsone56660d2010-08-07 11:01:26 +0100717 batchbuffer[1] = obj;
718
719 if (batchbuffer[0] && batchbuffer[1])
720 break;
721 }
722 }
723 if (batchbuffer[0] == NULL || batchbuffer[1] == NULL) {
Chris Wilson05394f32010-11-08 19:18:58 +0000724 list_for_each_entry(obj, &dev_priv->mm.inactive_list, mm_list) {
Chris Wilsone56660d2010-08-07 11:01:26 +0100725 if (batchbuffer[0] == NULL &&
Chris Wilson05394f32010-11-08 19:18:58 +0000726 bbaddr >= obj->gtt_offset &&
727 bbaddr < obj->gtt_offset + obj->base.size)
Chris Wilsone56660d2010-08-07 11:01:26 +0100728 batchbuffer[0] = obj;
729
730 if (batchbuffer[1] == NULL &&
Chris Wilson05394f32010-11-08 19:18:58 +0000731 error->acthd >= obj->gtt_offset &&
732 error->acthd < obj->gtt_offset + obj->base.size)
Chris Wilsone56660d2010-08-07 11:01:26 +0100733 batchbuffer[1] = obj;
734
735 if (batchbuffer[0] && batchbuffer[1])
736 break;
737 }
738 }
Chris Wilson9df30792010-02-18 10:24:56 +0000739
740 /* We need to copy these to an anonymous buffer as the simplest
Andrea Gelmini139d3632010-10-15 17:14:33 +0200741 * method to avoid being overwritten by userspace.
Chris Wilson9df30792010-02-18 10:24:56 +0000742 */
743 error->batchbuffer[0] = i915_error_object_create(dev, batchbuffer[0]);
Chris Wilsone56660d2010-08-07 11:01:26 +0100744 if (batchbuffer[1] != batchbuffer[0])
745 error->batchbuffer[1] = i915_error_object_create(dev, batchbuffer[1]);
746 else
747 error->batchbuffer[1] = NULL;
Chris Wilson9df30792010-02-18 10:24:56 +0000748
749 /* Record the ringbuffer */
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800750 error->ringbuffer = i915_error_object_create(dev,
Chris Wilson05394f32010-11-08 19:18:58 +0000751 dev_priv->render_ring.obj);
Chris Wilson9df30792010-02-18 10:24:56 +0000752
Chris Wilsonc724e8a2010-11-22 08:07:02 +0000753 /* Record buffers on the active and pinned lists. */
Chris Wilson9df30792010-02-18 10:24:56 +0000754 error->active_bo = NULL;
Chris Wilsonc724e8a2010-11-22 08:07:02 +0000755 error->pinned_bo = NULL;
Chris Wilson9df30792010-02-18 10:24:56 +0000756
Chris Wilsonc724e8a2010-11-22 08:07:02 +0000757 error->active_bo_count = count;
Chris Wilson05394f32010-11-08 19:18:58 +0000758 list_for_each_entry(obj, &dev_priv->mm.pinned_list, mm_list)
Chris Wilsonc724e8a2010-11-22 08:07:02 +0000759 count++;
760 error->pinned_bo_count = count - error->active_bo_count;
761
762 if (count) {
Chris Wilson9df30792010-02-18 10:24:56 +0000763 error->active_bo = kmalloc(sizeof(*error->active_bo)*count,
764 GFP_ATOMIC);
Chris Wilsonc724e8a2010-11-22 08:07:02 +0000765 if (error->active_bo)
766 error->pinned_bo =
767 error->active_bo + error->active_bo_count;
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700768 }
769
Chris Wilsonc724e8a2010-11-22 08:07:02 +0000770 if (error->active_bo)
771 error->active_bo_count =
772 capture_bo_list(error->active_bo,
773 error->active_bo_count,
774 &dev_priv->mm.active_list);
775
776 if (error->pinned_bo)
777 error->pinned_bo_count =
778 capture_bo_list(error->pinned_bo,
779 error->pinned_bo_count,
780 &dev_priv->mm.pinned_list);
781
Jesse Barnes8a905232009-07-11 16:48:03 -0400782 do_gettimeofday(&error->time);
783
Chris Wilson6ef3d422010-08-04 20:26:07 +0100784 error->overlay = intel_overlay_capture_error_state(dev);
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +0000785 error->display = intel_display_capture_error_state(dev);
Chris Wilson6ef3d422010-08-04 20:26:07 +0100786
Chris Wilson9df30792010-02-18 10:24:56 +0000787 spin_lock_irqsave(&dev_priv->error_lock, flags);
788 if (dev_priv->first_error == NULL) {
789 dev_priv->first_error = error;
790 error = NULL;
791 }
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700792 spin_unlock_irqrestore(&dev_priv->error_lock, flags);
Chris Wilson9df30792010-02-18 10:24:56 +0000793
794 if (error)
795 i915_error_state_free(dev, error);
796}
797
798void i915_destroy_error_state(struct drm_device *dev)
799{
800 struct drm_i915_private *dev_priv = dev->dev_private;
801 struct drm_i915_error_state *error;
802
803 spin_lock(&dev_priv->error_lock);
804 error = dev_priv->first_error;
805 dev_priv->first_error = NULL;
806 spin_unlock(&dev_priv->error_lock);
807
808 if (error)
809 i915_error_state_free(dev, error);
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700810}
Chris Wilson3bd3c932010-08-19 08:19:30 +0100811#else
812#define i915_capture_error_state(x)
813#endif
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700814
Chris Wilson35aed2e2010-05-27 13:18:12 +0100815static void i915_report_and_clear_eir(struct drm_device *dev)
Jesse Barnes8a905232009-07-11 16:48:03 -0400816{
817 struct drm_i915_private *dev_priv = dev->dev_private;
818 u32 eir = I915_READ(EIR);
Jesse Barnes8a905232009-07-11 16:48:03 -0400819
Chris Wilson35aed2e2010-05-27 13:18:12 +0100820 if (!eir)
821 return;
Jesse Barnes8a905232009-07-11 16:48:03 -0400822
823 printk(KERN_ERR "render error detected, EIR: 0x%08x\n",
824 eir);
825
826 if (IS_G4X(dev)) {
827 if (eir & (GM45_ERROR_MEM_PRIV | GM45_ERROR_CP_PRIV)) {
828 u32 ipeir = I915_READ(IPEIR_I965);
829
830 printk(KERN_ERR " IPEIR: 0x%08x\n",
831 I915_READ(IPEIR_I965));
832 printk(KERN_ERR " IPEHR: 0x%08x\n",
833 I915_READ(IPEHR_I965));
834 printk(KERN_ERR " INSTDONE: 0x%08x\n",
835 I915_READ(INSTDONE_I965));
836 printk(KERN_ERR " INSTPS: 0x%08x\n",
837 I915_READ(INSTPS));
838 printk(KERN_ERR " INSTDONE1: 0x%08x\n",
839 I915_READ(INSTDONE1));
840 printk(KERN_ERR " ACTHD: 0x%08x\n",
841 I915_READ(ACTHD_I965));
842 I915_WRITE(IPEIR_I965, ipeir);
Chris Wilson3143a2b2010-11-16 15:55:10 +0000843 POSTING_READ(IPEIR_I965);
Jesse Barnes8a905232009-07-11 16:48:03 -0400844 }
845 if (eir & GM45_ERROR_PAGE_TABLE) {
846 u32 pgtbl_err = I915_READ(PGTBL_ER);
847 printk(KERN_ERR "page table error\n");
848 printk(KERN_ERR " PGTBL_ER: 0x%08x\n",
849 pgtbl_err);
850 I915_WRITE(PGTBL_ER, pgtbl_err);
Chris Wilson3143a2b2010-11-16 15:55:10 +0000851 POSTING_READ(PGTBL_ER);
Jesse Barnes8a905232009-07-11 16:48:03 -0400852 }
853 }
854
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100855 if (!IS_GEN2(dev)) {
Jesse Barnes8a905232009-07-11 16:48:03 -0400856 if (eir & I915_ERROR_PAGE_TABLE) {
857 u32 pgtbl_err = I915_READ(PGTBL_ER);
858 printk(KERN_ERR "page table error\n");
859 printk(KERN_ERR " PGTBL_ER: 0x%08x\n",
860 pgtbl_err);
861 I915_WRITE(PGTBL_ER, pgtbl_err);
Chris Wilson3143a2b2010-11-16 15:55:10 +0000862 POSTING_READ(PGTBL_ER);
Jesse Barnes8a905232009-07-11 16:48:03 -0400863 }
864 }
865
866 if (eir & I915_ERROR_MEMORY_REFRESH) {
Chris Wilson35aed2e2010-05-27 13:18:12 +0100867 u32 pipea_stats = I915_READ(PIPEASTAT);
868 u32 pipeb_stats = I915_READ(PIPEBSTAT);
869
Jesse Barnes8a905232009-07-11 16:48:03 -0400870 printk(KERN_ERR "memory refresh error\n");
871 printk(KERN_ERR "PIPEASTAT: 0x%08x\n",
872 pipea_stats);
873 printk(KERN_ERR "PIPEBSTAT: 0x%08x\n",
874 pipeb_stats);
875 /* pipestat has already been acked */
876 }
877 if (eir & I915_ERROR_INSTRUCTION) {
878 printk(KERN_ERR "instruction error\n");
879 printk(KERN_ERR " INSTPM: 0x%08x\n",
880 I915_READ(INSTPM));
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100881 if (INTEL_INFO(dev)->gen < 4) {
Jesse Barnes8a905232009-07-11 16:48:03 -0400882 u32 ipeir = I915_READ(IPEIR);
883
884 printk(KERN_ERR " IPEIR: 0x%08x\n",
885 I915_READ(IPEIR));
886 printk(KERN_ERR " IPEHR: 0x%08x\n",
887 I915_READ(IPEHR));
888 printk(KERN_ERR " INSTDONE: 0x%08x\n",
889 I915_READ(INSTDONE));
890 printk(KERN_ERR " ACTHD: 0x%08x\n",
891 I915_READ(ACTHD));
892 I915_WRITE(IPEIR, ipeir);
Chris Wilson3143a2b2010-11-16 15:55:10 +0000893 POSTING_READ(IPEIR);
Jesse Barnes8a905232009-07-11 16:48:03 -0400894 } else {
895 u32 ipeir = I915_READ(IPEIR_I965);
896
897 printk(KERN_ERR " IPEIR: 0x%08x\n",
898 I915_READ(IPEIR_I965));
899 printk(KERN_ERR " IPEHR: 0x%08x\n",
900 I915_READ(IPEHR_I965));
901 printk(KERN_ERR " INSTDONE: 0x%08x\n",
902 I915_READ(INSTDONE_I965));
903 printk(KERN_ERR " INSTPS: 0x%08x\n",
904 I915_READ(INSTPS));
905 printk(KERN_ERR " INSTDONE1: 0x%08x\n",
906 I915_READ(INSTDONE1));
907 printk(KERN_ERR " ACTHD: 0x%08x\n",
908 I915_READ(ACTHD_I965));
909 I915_WRITE(IPEIR_I965, ipeir);
Chris Wilson3143a2b2010-11-16 15:55:10 +0000910 POSTING_READ(IPEIR_I965);
Jesse Barnes8a905232009-07-11 16:48:03 -0400911 }
912 }
913
914 I915_WRITE(EIR, eir);
Chris Wilson3143a2b2010-11-16 15:55:10 +0000915 POSTING_READ(EIR);
Jesse Barnes8a905232009-07-11 16:48:03 -0400916 eir = I915_READ(EIR);
917 if (eir) {
918 /*
919 * some errors might have become stuck,
920 * mask them.
921 */
922 DRM_ERROR("EIR stuck: 0x%08x, masking\n", eir);
923 I915_WRITE(EMR, I915_READ(EMR) | eir);
924 I915_WRITE(IIR, I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT);
925 }
Chris Wilson35aed2e2010-05-27 13:18:12 +0100926}
927
928/**
929 * i915_handle_error - handle an error interrupt
930 * @dev: drm device
931 *
932 * Do some basic checking of regsiter state at error interrupt time and
933 * dump it to the syslog. Also call i915_capture_error_state() to make
934 * sure we get a record and make it available in debugfs. Fire a uevent
935 * so userspace knows something bad happened (should trigger collection
936 * of a ring dump etc.).
937 */
Chris Wilson527f9e92010-11-11 01:16:58 +0000938void i915_handle_error(struct drm_device *dev, bool wedged)
Chris Wilson35aed2e2010-05-27 13:18:12 +0100939{
940 struct drm_i915_private *dev_priv = dev->dev_private;
941
942 i915_capture_error_state(dev);
943 i915_report_and_clear_eir(dev);
Jesse Barnes8a905232009-07-11 16:48:03 -0400944
Ben Gamariba1234d2009-09-14 17:48:47 -0400945 if (wedged) {
Chris Wilson30dbf0c2010-09-25 10:19:17 +0100946 INIT_COMPLETION(dev_priv->error_completion);
Ben Gamariba1234d2009-09-14 17:48:47 -0400947 atomic_set(&dev_priv->mm.wedged, 1);
948
Ben Gamari11ed50e2009-09-14 17:48:45 -0400949 /*
950 * Wakeup waiting processes so they don't hang
951 */
Chris Wilsonf787a5f2010-09-24 16:02:42 +0100952 wake_up_all(&dev_priv->render_ring.irq_queue);
953 if (HAS_BSD(dev))
954 wake_up_all(&dev_priv->bsd_ring.irq_queue);
Chris Wilson549f7362010-10-19 11:19:32 +0100955 if (HAS_BLT(dev))
956 wake_up_all(&dev_priv->blt_ring.irq_queue);
Ben Gamari11ed50e2009-09-14 17:48:45 -0400957 }
958
Eric Anholt9c9fe1f2009-08-03 16:09:16 -0700959 queue_work(dev_priv->wq, &dev_priv->error_work);
Jesse Barnes8a905232009-07-11 16:48:03 -0400960}
961
Simon Farnsworth4e5359c2010-09-01 17:47:52 +0100962static void i915_pageflip_stall_check(struct drm_device *dev, int pipe)
963{
964 drm_i915_private_t *dev_priv = dev->dev_private;
965 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
966 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Chris Wilson05394f32010-11-08 19:18:58 +0000967 struct drm_i915_gem_object *obj;
Simon Farnsworth4e5359c2010-09-01 17:47:52 +0100968 struct intel_unpin_work *work;
969 unsigned long flags;
970 bool stall_detected;
971
972 /* Ignore early vblank irqs */
973 if (intel_crtc == NULL)
974 return;
975
976 spin_lock_irqsave(&dev->event_lock, flags);
977 work = intel_crtc->unpin_work;
978
979 if (work == NULL || work->pending || !work->enable_stall_check) {
980 /* Either the pending flip IRQ arrived, or we're too early. Don't check */
981 spin_unlock_irqrestore(&dev->event_lock, flags);
982 return;
983 }
984
985 /* Potential stall - if we see that the flip has happened, assume a missed interrupt */
Chris Wilson05394f32010-11-08 19:18:58 +0000986 obj = work->pending_flip_obj;
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100987 if (INTEL_INFO(dev)->gen >= 4) {
Simon Farnsworth4e5359c2010-09-01 17:47:52 +0100988 int dspsurf = intel_crtc->plane == 0 ? DSPASURF : DSPBSURF;
Chris Wilson05394f32010-11-08 19:18:58 +0000989 stall_detected = I915_READ(dspsurf) == obj->gtt_offset;
Simon Farnsworth4e5359c2010-09-01 17:47:52 +0100990 } else {
991 int dspaddr = intel_crtc->plane == 0 ? DSPAADDR : DSPBADDR;
Chris Wilson05394f32010-11-08 19:18:58 +0000992 stall_detected = I915_READ(dspaddr) == (obj->gtt_offset +
Simon Farnsworth4e5359c2010-09-01 17:47:52 +0100993 crtc->y * crtc->fb->pitch +
994 crtc->x * crtc->fb->bits_per_pixel/8);
995 }
996
997 spin_unlock_irqrestore(&dev->event_lock, flags);
998
999 if (stall_detected) {
1000 DRM_DEBUG_DRIVER("Pageflip stall detected\n");
1001 intel_prepare_page_flip(dev, intel_crtc->plane);
1002 }
1003}
1004
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005irqreturn_t i915_driver_irq_handler(DRM_IRQ_ARGS)
1006{
Dave Airlie84b1fd12007-07-11 15:53:27 +10001007 struct drm_device *dev = (struct drm_device *) arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Dave Airlie7c1c2872008-11-28 14:22:24 +10001009 struct drm_i915_master_private *master_priv;
Eric Anholtcdfbc412008-11-04 15:50:30 -08001010 u32 iir, new_iir;
1011 u32 pipea_stats, pipeb_stats;
Keith Packard05eff842008-11-19 14:03:05 -08001012 u32 vblank_status;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001013 int vblank = 0;
Keith Packard7c463582008-11-04 02:03:27 -08001014 unsigned long irqflags;
Keith Packard05eff842008-11-19 14:03:05 -08001015 int irq_received;
1016 int ret = IRQ_NONE;
Dave Airlieaf6061a2008-05-07 12:15:39 +10001017
Eric Anholt630681d2008-10-06 15:14:12 -07001018 atomic_inc(&dev_priv->irq_received);
1019
Eric Anholtbad720f2009-10-22 16:11:14 -07001020 if (HAS_PCH_SPLIT(dev))
Adam Jacksonf2b115e2009-12-03 17:14:42 -05001021 return ironlake_irq_handler(dev);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001022
Eric Anholted4cb412008-07-29 12:10:39 -07001023 iir = I915_READ(IIR);
Dave Airlieaf6061a2008-05-07 12:15:39 +10001024
Chris Wilsona6c45cf2010-09-17 00:32:17 +01001025 if (INTEL_INFO(dev)->gen >= 4)
Jesse Barnesd874bcf2010-06-30 13:16:00 -07001026 vblank_status = PIPE_START_VBLANK_INTERRUPT_STATUS;
Jesse Barnese25e6602010-06-30 13:15:19 -07001027 else
Jesse Barnesd874bcf2010-06-30 13:16:00 -07001028 vblank_status = PIPE_VBLANK_INTERRUPT_STATUS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029
Keith Packard05eff842008-11-19 14:03:05 -08001030 for (;;) {
1031 irq_received = iir != 0;
1032
1033 /* Can't rely on pipestat interrupt bit in iir as it might
1034 * have been cleared after the pipestat interrupt was received.
1035 * It doesn't set the bit in iir again, but it still produces
1036 * interrupts (for non-MSI).
1037 */
1038 spin_lock_irqsave(&dev_priv->user_irq_lock, irqflags);
1039 pipea_stats = I915_READ(PIPEASTAT);
1040 pipeb_stats = I915_READ(PIPEBSTAT);
Jesse Barnes79e53942008-11-07 14:24:08 -08001041
Jesse Barnes8a905232009-07-11 16:48:03 -04001042 if (iir & I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT)
Ben Gamariba1234d2009-09-14 17:48:47 -04001043 i915_handle_error(dev, false);
Jesse Barnes8a905232009-07-11 16:48:03 -04001044
Eric Anholtcdfbc412008-11-04 15:50:30 -08001045 /*
1046 * Clear the PIPE(A|B)STAT regs before the IIR
1047 */
Keith Packard05eff842008-11-19 14:03:05 -08001048 if (pipea_stats & 0x8000ffff) {
Shaohua Li7662c8b2009-06-26 11:23:55 +08001049 if (pipea_stats & PIPE_FIFO_UNDERRUN_STATUS)
Zhao Yakui44d98a62009-10-09 11:39:40 +08001050 DRM_DEBUG_DRIVER("pipe a underrun\n");
Eric Anholtcdfbc412008-11-04 15:50:30 -08001051 I915_WRITE(PIPEASTAT, pipea_stats);
Keith Packard05eff842008-11-19 14:03:05 -08001052 irq_received = 1;
Eric Anholtcdfbc412008-11-04 15:50:30 -08001053 }
Keith Packard7c463582008-11-04 02:03:27 -08001054
Keith Packard05eff842008-11-19 14:03:05 -08001055 if (pipeb_stats & 0x8000ffff) {
Shaohua Li7662c8b2009-06-26 11:23:55 +08001056 if (pipeb_stats & PIPE_FIFO_UNDERRUN_STATUS)
Zhao Yakui44d98a62009-10-09 11:39:40 +08001057 DRM_DEBUG_DRIVER("pipe b underrun\n");
Eric Anholtcdfbc412008-11-04 15:50:30 -08001058 I915_WRITE(PIPEBSTAT, pipeb_stats);
Keith Packard05eff842008-11-19 14:03:05 -08001059 irq_received = 1;
Eric Anholtcdfbc412008-11-04 15:50:30 -08001060 }
Keith Packard05eff842008-11-19 14:03:05 -08001061 spin_unlock_irqrestore(&dev_priv->user_irq_lock, irqflags);
1062
1063 if (!irq_received)
1064 break;
1065
1066 ret = IRQ_HANDLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067
Jesse Barnes5ca58282009-03-31 14:11:15 -07001068 /* Consume port. Then clear IIR or we'll miss events */
1069 if ((I915_HAS_HOTPLUG(dev)) &&
1070 (iir & I915_DISPLAY_PORT_INTERRUPT)) {
1071 u32 hotplug_status = I915_READ(PORT_HOTPLUG_STAT);
1072
Zhao Yakui44d98a62009-10-09 11:39:40 +08001073 DRM_DEBUG_DRIVER("hotplug event received, stat 0x%08x\n",
Jesse Barnes5ca58282009-03-31 14:11:15 -07001074 hotplug_status);
1075 if (hotplug_status & dev_priv->hotplug_supported_mask)
Eric Anholt9c9fe1f2009-08-03 16:09:16 -07001076 queue_work(dev_priv->wq,
1077 &dev_priv->hotplug_work);
Jesse Barnes5ca58282009-03-31 14:11:15 -07001078
1079 I915_WRITE(PORT_HOTPLUG_STAT, hotplug_status);
1080 I915_READ(PORT_HOTPLUG_STAT);
1081 }
1082
Eric Anholtcdfbc412008-11-04 15:50:30 -08001083 I915_WRITE(IIR, iir);
1084 new_iir = I915_READ(IIR); /* Flush posted writes */
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +01001085
Dave Airlie7c1c2872008-11-28 14:22:24 +10001086 if (dev->primary->master) {
1087 master_priv = dev->primary->master->driver_priv;
1088 if (master_priv->sarea_priv)
1089 master_priv->sarea_priv->last_dispatch =
1090 READ_BREADCRUMB(dev_priv);
1091 }
Keith Packard7c463582008-11-04 02:03:27 -08001092
Chris Wilson549f7362010-10-19 11:19:32 +01001093 if (iir & I915_USER_INTERRUPT)
1094 notify_ring(dev, &dev_priv->render_ring);
Zou Nan haid1b851f2010-05-21 09:08:57 +08001095 if (HAS_BSD(dev) && (iir & I915_BSD_USER_INTERRUPT))
Chris Wilson549f7362010-10-19 11:19:32 +01001096 notify_ring(dev, &dev_priv->bsd_ring);
Zou Nan haid1b851f2010-05-21 09:08:57 +08001097
Jesse Barnes1afe3e92010-03-26 10:35:20 -07001098 if (iir & I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT) {
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001099 intel_prepare_page_flip(dev, 0);
Jesse Barnes1afe3e92010-03-26 10:35:20 -07001100 if (dev_priv->flip_pending_is_done)
1101 intel_finish_page_flip_plane(dev, 0);
1102 }
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001103
Jesse Barnes1afe3e92010-03-26 10:35:20 -07001104 if (iir & I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT) {
Jesse Barnes70565d02010-07-01 04:45:43 -07001105 intel_prepare_page_flip(dev, 1);
Jesse Barnes1afe3e92010-03-26 10:35:20 -07001106 if (dev_priv->flip_pending_is_done)
1107 intel_finish_page_flip_plane(dev, 1);
Jesse Barnes1afe3e92010-03-26 10:35:20 -07001108 }
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001109
Keith Packard05eff842008-11-19 14:03:05 -08001110 if (pipea_stats & vblank_status) {
Eric Anholtcdfbc412008-11-04 15:50:30 -08001111 vblank++;
1112 drm_handle_vblank(dev, 0);
Simon Farnsworth4e5359c2010-09-01 17:47:52 +01001113 if (!dev_priv->flip_pending_is_done) {
1114 i915_pageflip_stall_check(dev, 0);
Jesse Barnes1afe3e92010-03-26 10:35:20 -07001115 intel_finish_page_flip(dev, 0);
Simon Farnsworth4e5359c2010-09-01 17:47:52 +01001116 }
Eric Anholtcdfbc412008-11-04 15:50:30 -08001117 }
Eric Anholt673a3942008-07-30 12:06:12 -07001118
Keith Packard05eff842008-11-19 14:03:05 -08001119 if (pipeb_stats & vblank_status) {
Eric Anholtcdfbc412008-11-04 15:50:30 -08001120 vblank++;
1121 drm_handle_vblank(dev, 1);
Simon Farnsworth4e5359c2010-09-01 17:47:52 +01001122 if (!dev_priv->flip_pending_is_done) {
1123 i915_pageflip_stall_check(dev, 1);
Jesse Barnes1afe3e92010-03-26 10:35:20 -07001124 intel_finish_page_flip(dev, 1);
Simon Farnsworth4e5359c2010-09-01 17:47:52 +01001125 }
Eric Anholtcdfbc412008-11-04 15:50:30 -08001126 }
Keith Packard7c463582008-11-04 02:03:27 -08001127
Jesse Barnesd874bcf2010-06-30 13:16:00 -07001128 if ((pipea_stats & PIPE_LEGACY_BLC_EVENT_STATUS) ||
1129 (pipeb_stats & PIPE_LEGACY_BLC_EVENT_STATUS) ||
Eric Anholtcdfbc412008-11-04 15:50:30 -08001130 (iir & I915_ASLE_INTERRUPT))
Chris Wilson3b617962010-08-24 09:02:58 +01001131 intel_opregion_asle_intr(dev);
Keith Packard7c463582008-11-04 02:03:27 -08001132
Eric Anholtcdfbc412008-11-04 15:50:30 -08001133 /* With MSI, interrupts are only generated when iir
1134 * transitions from zero to nonzero. If another bit got
1135 * set while we were handling the existing iir bits, then
1136 * we would never get another interrupt.
1137 *
1138 * This is fine on non-MSI as well, as if we hit this path
1139 * we avoid exiting the interrupt handler only to generate
1140 * another one.
1141 *
1142 * Note that for MSI this could cause a stray interrupt report
1143 * if an interrupt landed in the time between writing IIR and
1144 * the posting read. This should be rare enough to never
1145 * trigger the 99% of 100,000 interrupts test for disabling
1146 * stray interrupts.
1147 */
1148 iir = new_iir;
Keith Packard05eff842008-11-19 14:03:05 -08001149 }
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001150
Keith Packard05eff842008-11-19 14:03:05 -08001151 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152}
1153
Dave Airlieaf6061a2008-05-07 12:15:39 +10001154static int i915_emit_irq(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155{
1156 drm_i915_private_t *dev_priv = dev->dev_private;
Dave Airlie7c1c2872008-11-28 14:22:24 +10001157 struct drm_i915_master_private *master_priv = dev->primary->master->driver_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158
1159 i915_kernel_lost_context(dev);
1160
Zhao Yakui44d98a62009-10-09 11:39:40 +08001161 DRM_DEBUG_DRIVER("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162
Kristian Høgsbergc99b0582008-08-20 11:20:13 -04001163 dev_priv->counter++;
Alan Hourihanec29b6692006-08-12 16:29:24 +10001164 if (dev_priv->counter > 0x7FFFFFFFUL)
Kristian Høgsbergc99b0582008-08-20 11:20:13 -04001165 dev_priv->counter = 1;
Dave Airlie7c1c2872008-11-28 14:22:24 +10001166 if (master_priv->sarea_priv)
1167 master_priv->sarea_priv->last_enqueue = dev_priv->counter;
Alan Hourihanec29b6692006-08-12 16:29:24 +10001168
Chris Wilsone1f99ce2010-10-27 12:45:26 +01001169 if (BEGIN_LP_RING(4) == 0) {
1170 OUT_RING(MI_STORE_DWORD_INDEX);
1171 OUT_RING(I915_BREADCRUMB_INDEX << MI_STORE_DWORD_INDEX_SHIFT);
1172 OUT_RING(dev_priv->counter);
1173 OUT_RING(MI_USER_INTERRUPT);
1174 ADVANCE_LP_RING();
1175 }
Dave Airliebc5f4522007-11-05 12:50:58 +10001176
Alan Hourihanec29b6692006-08-12 16:29:24 +10001177 return dev_priv->counter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178}
1179
Chris Wilson9d34e5d2009-09-24 05:26:06 +01001180void i915_trace_irq_get(struct drm_device *dev, u32 seqno)
1181{
1182 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001183 struct intel_ring_buffer *render_ring = &dev_priv->render_ring;
Chris Wilson9d34e5d2009-09-24 05:26:06 +01001184
1185 if (dev_priv->trace_irq_seqno == 0)
Chris Wilson78501ea2010-10-27 12:18:21 +01001186 render_ring->user_irq_get(render_ring);
Chris Wilson9d34e5d2009-09-24 05:26:06 +01001187
1188 dev_priv->trace_irq_seqno = seqno;
1189}
1190
Dave Airlie84b1fd12007-07-11 15:53:27 +10001191static int i915_wait_irq(struct drm_device * dev, int irq_nr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192{
1193 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Dave Airlie7c1c2872008-11-28 14:22:24 +10001194 struct drm_i915_master_private *master_priv = dev->primary->master->driver_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195 int ret = 0;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001196 struct intel_ring_buffer *render_ring = &dev_priv->render_ring;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197
Zhao Yakui44d98a62009-10-09 11:39:40 +08001198 DRM_DEBUG_DRIVER("irq_nr=%d breadcrumb=%d\n", irq_nr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199 READ_BREADCRUMB(dev_priv));
1200
Eric Anholted4cb412008-07-29 12:10:39 -07001201 if (READ_BREADCRUMB(dev_priv) >= irq_nr) {
Dave Airlie7c1c2872008-11-28 14:22:24 +10001202 if (master_priv->sarea_priv)
1203 master_priv->sarea_priv->last_dispatch = READ_BREADCRUMB(dev_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204 return 0;
Eric Anholted4cb412008-07-29 12:10:39 -07001205 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206
Dave Airlie7c1c2872008-11-28 14:22:24 +10001207 if (master_priv->sarea_priv)
1208 master_priv->sarea_priv->perf_boxes |= I915_BOX_WAIT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209
Chris Wilson78501ea2010-10-27 12:18:21 +01001210 render_ring->user_irq_get(render_ring);
Zou Nan hai852835f2010-05-21 09:08:56 +08001211 DRM_WAIT_ON(ret, dev_priv->render_ring.irq_queue, 3 * DRM_HZ,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212 READ_BREADCRUMB(dev_priv) >= irq_nr);
Chris Wilson78501ea2010-10-27 12:18:21 +01001213 render_ring->user_irq_put(render_ring);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214
Eric Anholt20caafa2007-08-25 19:22:43 +10001215 if (ret == -EBUSY) {
Márton Németh3e684ea2008-01-24 15:58:57 +10001216 DRM_ERROR("EBUSY -- rec: %d emitted: %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217 READ_BREADCRUMB(dev_priv), (int)dev_priv->counter);
1218 }
1219
Dave Airlieaf6061a2008-05-07 12:15:39 +10001220 return ret;
1221}
1222
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223/* Needs the lock as it touches the ring.
1224 */
Eric Anholtc153f452007-09-03 12:06:45 +10001225int i915_irq_emit(struct drm_device *dev, void *data,
1226 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholtc153f452007-09-03 12:06:45 +10001229 drm_i915_irq_emit_t *emit = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 int result;
1231
Eric Anholtd3301d82010-05-21 13:55:54 -07001232 if (!dev_priv || !dev_priv->render_ring.virtual_start) {
Márton Németh3e684ea2008-01-24 15:58:57 +10001233 DRM_ERROR("called with no initialization\n");
Eric Anholt20caafa2007-08-25 19:22:43 +10001234 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235 }
Eric Anholt299eb932009-02-24 22:14:12 -08001236
1237 RING_LOCK_TEST_WITH_RETURN(dev, file_priv);
1238
Eric Anholt546b0972008-09-01 16:45:29 -07001239 mutex_lock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240 result = i915_emit_irq(dev);
Eric Anholt546b0972008-09-01 16:45:29 -07001241 mutex_unlock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242
Eric Anholtc153f452007-09-03 12:06:45 +10001243 if (DRM_COPY_TO_USER(emit->irq_seq, &result, sizeof(int))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244 DRM_ERROR("copy_to_user\n");
Eric Anholt20caafa2007-08-25 19:22:43 +10001245 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246 }
1247
1248 return 0;
1249}
1250
1251/* Doesn't need the hardware lock.
1252 */
Eric Anholtc153f452007-09-03 12:06:45 +10001253int i915_irq_wait(struct drm_device *dev, void *data,
1254 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholtc153f452007-09-03 12:06:45 +10001257 drm_i915_irq_wait_t *irqwait = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258
1259 if (!dev_priv) {
Márton Németh3e684ea2008-01-24 15:58:57 +10001260 DRM_ERROR("called with no initialization\n");
Eric Anholt20caafa2007-08-25 19:22:43 +10001261 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262 }
1263
Eric Anholtc153f452007-09-03 12:06:45 +10001264 return i915_wait_irq(dev, irqwait->irq_seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265}
1266
Keith Packard42f52ef2008-10-18 19:39:29 -07001267/* Called from drm generic code, passed 'crtc' which
1268 * we use as a pipe index
1269 */
1270int i915_enable_vblank(struct drm_device *dev, int pipe)
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001271{
1272 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Keith Packarde9d21d72008-10-16 11:31:38 -07001273 unsigned long irqflags;
Jesse Barnes71e0ffa2009-01-08 10:42:15 -08001274
Chris Wilson5eddb702010-09-11 13:48:45 +01001275 if (!i915_pipe_enabled(dev, pipe))
Jesse Barnes71e0ffa2009-01-08 10:42:15 -08001276 return -EINVAL;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001277
Keith Packarde9d21d72008-10-16 11:31:38 -07001278 spin_lock_irqsave(&dev_priv->user_irq_lock, irqflags);
Eric Anholtbad720f2009-10-22 16:11:14 -07001279 if (HAS_PCH_SPLIT(dev))
Li Pengc062df62010-01-23 00:12:58 +08001280 ironlake_enable_display_irq(dev_priv, (pipe == 0) ?
1281 DE_PIPEA_VBLANK: DE_PIPEB_VBLANK);
Chris Wilsona6c45cf2010-09-17 00:32:17 +01001282 else if (INTEL_INFO(dev)->gen >= 4)
Keith Packard7c463582008-11-04 02:03:27 -08001283 i915_enable_pipestat(dev_priv, pipe,
1284 PIPE_START_VBLANK_INTERRUPT_ENABLE);
Keith Packarde9d21d72008-10-16 11:31:38 -07001285 else
Keith Packard7c463582008-11-04 02:03:27 -08001286 i915_enable_pipestat(dev_priv, pipe,
1287 PIPE_VBLANK_INTERRUPT_ENABLE);
Keith Packarde9d21d72008-10-16 11:31:38 -07001288 spin_unlock_irqrestore(&dev_priv->user_irq_lock, irqflags);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001289 return 0;
1290}
1291
Keith Packard42f52ef2008-10-18 19:39:29 -07001292/* Called from drm generic code, passed 'crtc' which
1293 * we use as a pipe index
1294 */
1295void i915_disable_vblank(struct drm_device *dev, int pipe)
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001296{
1297 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Keith Packarde9d21d72008-10-16 11:31:38 -07001298 unsigned long irqflags;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001299
Keith Packarde9d21d72008-10-16 11:31:38 -07001300 spin_lock_irqsave(&dev_priv->user_irq_lock, irqflags);
Eric Anholtbad720f2009-10-22 16:11:14 -07001301 if (HAS_PCH_SPLIT(dev))
Li Pengc062df62010-01-23 00:12:58 +08001302 ironlake_disable_display_irq(dev_priv, (pipe == 0) ?
1303 DE_PIPEA_VBLANK: DE_PIPEB_VBLANK);
1304 else
1305 i915_disable_pipestat(dev_priv, pipe,
1306 PIPE_VBLANK_INTERRUPT_ENABLE |
1307 PIPE_START_VBLANK_INTERRUPT_ENABLE);
Keith Packarde9d21d72008-10-16 11:31:38 -07001308 spin_unlock_irqrestore(&dev_priv->user_irq_lock, irqflags);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001309}
1310
Jesse Barnes79e53942008-11-07 14:24:08 -08001311void i915_enable_interrupt (struct drm_device *dev)
1312{
1313 struct drm_i915_private *dev_priv = dev->dev_private;
Zhenyu Wange170b032009-06-05 15:38:40 +08001314
Eric Anholtbad720f2009-10-22 16:11:14 -07001315 if (!HAS_PCH_SPLIT(dev))
Chris Wilson3b617962010-08-24 09:02:58 +01001316 intel_opregion_enable_asle(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08001317 dev_priv->irq_enabled = 1;
1318}
1319
1320
Dave Airlie702880f2006-06-24 17:07:34 +10001321/* Set the vblank monitor pipe
1322 */
Eric Anholtc153f452007-09-03 12:06:45 +10001323int i915_vblank_pipe_set(struct drm_device *dev, void *data,
1324 struct drm_file *file_priv)
Dave Airlie702880f2006-06-24 17:07:34 +10001325{
Dave Airlie702880f2006-06-24 17:07:34 +10001326 drm_i915_private_t *dev_priv = dev->dev_private;
Dave Airlie702880f2006-06-24 17:07:34 +10001327
1328 if (!dev_priv) {
Márton Németh3e684ea2008-01-24 15:58:57 +10001329 DRM_ERROR("called with no initialization\n");
Eric Anholt20caafa2007-08-25 19:22:43 +10001330 return -EINVAL;
Dave Airlie702880f2006-06-24 17:07:34 +10001331 }
1332
=?utf-8?q?Michel_D=C3=A4nzer?=5b516942006-10-25 00:08:23 +10001333 return 0;
Dave Airlie702880f2006-06-24 17:07:34 +10001334}
1335
Eric Anholtc153f452007-09-03 12:06:45 +10001336int i915_vblank_pipe_get(struct drm_device *dev, void *data,
1337 struct drm_file *file_priv)
Dave Airlie702880f2006-06-24 17:07:34 +10001338{
Dave Airlie702880f2006-06-24 17:07:34 +10001339 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholtc153f452007-09-03 12:06:45 +10001340 drm_i915_vblank_pipe_t *pipe = data;
Dave Airlie702880f2006-06-24 17:07:34 +10001341
1342 if (!dev_priv) {
Márton Németh3e684ea2008-01-24 15:58:57 +10001343 DRM_ERROR("called with no initialization\n");
Eric Anholt20caafa2007-08-25 19:22:43 +10001344 return -EINVAL;
Dave Airlie702880f2006-06-24 17:07:34 +10001345 }
1346
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001347 pipe->pipe = DRM_I915_VBLANK_PIPE_A | DRM_I915_VBLANK_PIPE_B;
Eric Anholtc153f452007-09-03 12:06:45 +10001348
Dave Airlie702880f2006-06-24 17:07:34 +10001349 return 0;
1350}
1351
=?utf-8?q?Michel_D=C3=A4nzer?=a6b54f32006-10-24 23:37:43 +10001352/**
1353 * Schedule buffer swap at given vertical blank.
1354 */
Eric Anholtc153f452007-09-03 12:06:45 +10001355int i915_vblank_swap(struct drm_device *dev, void *data,
1356 struct drm_file *file_priv)
=?utf-8?q?Michel_D=C3=A4nzer?=a6b54f32006-10-24 23:37:43 +10001357{
Eric Anholtbd95e0a2008-11-04 12:01:24 -08001358 /* The delayed swap mechanism was fundamentally racy, and has been
1359 * removed. The model was that the client requested a delayed flip/swap
1360 * from the kernel, then waited for vblank before continuing to perform
1361 * rendering. The problem was that the kernel might wake the client
1362 * up before it dispatched the vblank swap (since the lock has to be
1363 * held while touching the ringbuffer), in which case the client would
1364 * clear and start the next frame before the swap occurred, and
1365 * flicker would occur in addition to likely missing the vblank.
1366 *
1367 * In the absence of this ioctl, userland falls back to a correct path
1368 * of waiting for a vblank, then dispatching the swap on its own.
1369 * Context switching to userland and back is plenty fast enough for
1370 * meeting the requirements of vblank swapping.
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001371 */
Eric Anholtbd95e0a2008-11-04 12:01:24 -08001372 return -EINVAL;
=?utf-8?q?Michel_D=C3=A4nzer?=a6b54f32006-10-24 23:37:43 +10001373}
1374
Chris Wilson893eead2010-10-27 14:44:35 +01001375static u32
1376ring_last_seqno(struct intel_ring_buffer *ring)
Zou Nan hai852835f2010-05-21 09:08:56 +08001377{
Chris Wilson893eead2010-10-27 14:44:35 +01001378 return list_entry(ring->request_list.prev,
1379 struct drm_i915_gem_request, list)->seqno;
1380}
1381
1382static bool i915_hangcheck_ring_idle(struct intel_ring_buffer *ring, bool *err)
1383{
1384 if (list_empty(&ring->request_list) ||
1385 i915_seqno_passed(ring->get_seqno(ring), ring_last_seqno(ring))) {
1386 /* Issue a wake-up to catch stuck h/w. */
Chris Wilsonb2223492010-10-27 15:27:33 +01001387 if (ring->waiting_seqno && waitqueue_active(&ring->irq_queue)) {
Chris Wilson893eead2010-10-27 14:44:35 +01001388 DRM_ERROR("Hangcheck timer elapsed... %s idle [waiting on %d, at %d], missed IRQ?\n",
1389 ring->name,
Chris Wilsonb2223492010-10-27 15:27:33 +01001390 ring->waiting_seqno,
Chris Wilson893eead2010-10-27 14:44:35 +01001391 ring->get_seqno(ring));
1392 wake_up_all(&ring->irq_queue);
1393 *err = true;
1394 }
1395 return true;
1396 }
1397 return false;
Ben Gamarif65d9422009-09-14 17:48:44 -04001398}
1399
1400/**
1401 * This is called when the chip hasn't reported back with completed
1402 * batchbuffers in a long time. The first time this is called we simply record
1403 * ACTHD. If ACTHD hasn't changed by the time the hangcheck timer elapses
1404 * again, we assume the chip is wedged and try to fix it.
1405 */
1406void i915_hangcheck_elapsed(unsigned long data)
1407{
1408 struct drm_device *dev = (struct drm_device *)data;
1409 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsoncbb465e2010-06-06 12:16:24 +01001410 uint32_t acthd, instdone, instdone1;
Chris Wilson893eead2010-10-27 14:44:35 +01001411 bool err = false;
1412
1413 /* If all work is done then ACTHD clearly hasn't advanced. */
1414 if (i915_hangcheck_ring_idle(&dev_priv->render_ring, &err) &&
1415 i915_hangcheck_ring_idle(&dev_priv->bsd_ring, &err) &&
1416 i915_hangcheck_ring_idle(&dev_priv->blt_ring, &err)) {
1417 dev_priv->hangcheck_count = 0;
1418 if (err)
1419 goto repeat;
1420 return;
1421 }
Eric Anholtb9201c12010-01-08 14:25:16 -08001422
Chris Wilsona6c45cf2010-09-17 00:32:17 +01001423 if (INTEL_INFO(dev)->gen < 4) {
Ben Gamarif65d9422009-09-14 17:48:44 -04001424 acthd = I915_READ(ACTHD);
Chris Wilsoncbb465e2010-06-06 12:16:24 +01001425 instdone = I915_READ(INSTDONE);
1426 instdone1 = 0;
1427 } else {
Ben Gamarif65d9422009-09-14 17:48:44 -04001428 acthd = I915_READ(ACTHD_I965);
Chris Wilsoncbb465e2010-06-06 12:16:24 +01001429 instdone = I915_READ(INSTDONE_I965);
1430 instdone1 = I915_READ(INSTDONE1);
1431 }
Ben Gamarif65d9422009-09-14 17:48:44 -04001432
Chris Wilsoncbb465e2010-06-06 12:16:24 +01001433 if (dev_priv->last_acthd == acthd &&
1434 dev_priv->last_instdone == instdone &&
1435 dev_priv->last_instdone1 == instdone1) {
1436 if (dev_priv->hangcheck_count++ > 1) {
1437 DRM_ERROR("Hangcheck timer elapsed... GPU hung\n");
Chris Wilson8c80b592010-08-08 20:38:12 +01001438
1439 if (!IS_GEN2(dev)) {
1440 /* Is the chip hanging on a WAIT_FOR_EVENT?
1441 * If so we can simply poke the RB_WAIT bit
1442 * and break the hang. This should work on
1443 * all but the second generation chipsets.
1444 */
Chris Wilson8168bd42010-11-11 17:54:52 +00001445 struct intel_ring_buffer *ring = &dev_priv->render_ring;
1446 u32 tmp = I915_READ_CTL(ring);
Chris Wilson8c80b592010-08-08 20:38:12 +01001447 if (tmp & RING_WAIT) {
Chris Wilson8168bd42010-11-11 17:54:52 +00001448 I915_WRITE_CTL(ring, tmp);
Chris Wilson893eead2010-10-27 14:44:35 +01001449 goto repeat;
Chris Wilson8c80b592010-08-08 20:38:12 +01001450 }
1451 }
1452
Chris Wilsoncbb465e2010-06-06 12:16:24 +01001453 i915_handle_error(dev, true);
1454 return;
1455 }
1456 } else {
1457 dev_priv->hangcheck_count = 0;
1458
1459 dev_priv->last_acthd = acthd;
1460 dev_priv->last_instdone = instdone;
1461 dev_priv->last_instdone1 = instdone1;
1462 }
Ben Gamarif65d9422009-09-14 17:48:44 -04001463
Chris Wilson893eead2010-10-27 14:44:35 +01001464repeat:
Ben Gamarif65d9422009-09-14 17:48:44 -04001465 /* Reset timer case chip hangs without another request being added */
Chris Wilsonb3b079d2010-09-13 23:44:34 +01001466 mod_timer(&dev_priv->hangcheck_timer,
1467 jiffies + msecs_to_jiffies(DRM_I915_HANGCHECK_PERIOD));
Ben Gamarif65d9422009-09-14 17:48:44 -04001468}
1469
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470/* drm_dma.h hooks
1471*/
Adam Jacksonf2b115e2009-12-03 17:14:42 -05001472static void ironlake_irq_preinstall(struct drm_device *dev)
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001473{
1474 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
1475
1476 I915_WRITE(HWSTAM, 0xeffe);
1477
1478 /* XXX hotplug from PCH */
1479
1480 I915_WRITE(DEIMR, 0xffffffff);
1481 I915_WRITE(DEIER, 0x0);
Chris Wilson3143a2b2010-11-16 15:55:10 +00001482 POSTING_READ(DEIER);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001483
1484 /* and GT */
1485 I915_WRITE(GTIMR, 0xffffffff);
1486 I915_WRITE(GTIER, 0x0);
Chris Wilson3143a2b2010-11-16 15:55:10 +00001487 POSTING_READ(GTIER);
Zhenyu Wangc6501562009-11-03 18:57:21 +00001488
1489 /* south display irq */
1490 I915_WRITE(SDEIMR, 0xffffffff);
1491 I915_WRITE(SDEIER, 0x0);
Chris Wilson3143a2b2010-11-16 15:55:10 +00001492 POSTING_READ(SDEIER);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001493}
1494
Adam Jacksonf2b115e2009-12-03 17:14:42 -05001495static int ironlake_irq_postinstall(struct drm_device *dev)
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001496{
1497 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
1498 /* enable kind of interrupts always enabled */
Jesse Barnes013d5aa2010-01-29 11:18:31 -08001499 u32 display_mask = DE_MASTER_IRQ_CONTROL | DE_GSE | DE_PCH_EVENT |
1500 DE_PLANEA_FLIP_DONE | DE_PLANEB_FLIP_DONE;
Zou Nan haid1b851f2010-05-21 09:08:57 +08001501 u32 render_mask = GT_PIPE_NOTIFY | GT_BSD_USER_INTERRUPT;
Yuanhan Liu2d7b8362010-10-08 10:21:06 +01001502 u32 hotplug_mask;
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001503
1504 dev_priv->irq_mask_reg = ~display_mask;
Li Peng643ced92010-01-28 01:05:09 +08001505 dev_priv->de_irq_enable_reg = display_mask | DE_PIPEA_VBLANK | DE_PIPEB_VBLANK;
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001506
1507 /* should always can generate irq */
1508 I915_WRITE(DEIIR, I915_READ(DEIIR));
1509 I915_WRITE(DEIMR, dev_priv->irq_mask_reg);
1510 I915_WRITE(DEIER, dev_priv->de_irq_enable_reg);
Chris Wilson3143a2b2010-11-16 15:55:10 +00001511 POSTING_READ(DEIER);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001512
Chris Wilson549f7362010-10-19 11:19:32 +01001513 if (IS_GEN6(dev)) {
1514 render_mask =
1515 GT_PIPE_NOTIFY |
1516 GT_GEN6_BSD_USER_INTERRUPT |
1517 GT_BLT_USER_INTERRUPT;
1518 }
Zhenyu Wang3fdef022010-08-19 09:46:15 +08001519
Zou Nan hai852835f2010-05-21 09:08:56 +08001520 dev_priv->gt_irq_mask_reg = ~render_mask;
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001521 dev_priv->gt_irq_enable_reg = render_mask;
1522
1523 I915_WRITE(GTIIR, I915_READ(GTIIR));
1524 I915_WRITE(GTIMR, dev_priv->gt_irq_mask_reg);
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001525 if (IS_GEN6(dev)) {
Zhenyu Wang3fdef022010-08-19 09:46:15 +08001526 I915_WRITE(GEN6_RENDER_IMR, ~GEN6_RENDER_PIPE_CONTROL_NOTIFY_INTERRUPT);
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001527 I915_WRITE(GEN6_BSD_IMR, ~GEN6_BSD_IMR_USER_INTERRUPT);
Chris Wilson549f7362010-10-19 11:19:32 +01001528 I915_WRITE(GEN6_BLITTER_IMR, ~GEN6_BLITTER_USER_INTERRUPT);
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001529 }
1530
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001531 I915_WRITE(GTIER, dev_priv->gt_irq_enable_reg);
Chris Wilson3143a2b2010-11-16 15:55:10 +00001532 POSTING_READ(GTIER);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001533
Yuanhan Liu2d7b8362010-10-08 10:21:06 +01001534 if (HAS_PCH_CPT(dev)) {
1535 hotplug_mask = SDE_CRT_HOTPLUG_CPT | SDE_PORTB_HOTPLUG_CPT |
1536 SDE_PORTC_HOTPLUG_CPT | SDE_PORTD_HOTPLUG_CPT ;
1537 } else {
1538 hotplug_mask = SDE_CRT_HOTPLUG | SDE_PORTB_HOTPLUG |
1539 SDE_PORTC_HOTPLUG | SDE_PORTD_HOTPLUG;
1540 }
1541
Zhenyu Wangc6501562009-11-03 18:57:21 +00001542 dev_priv->pch_irq_mask_reg = ~hotplug_mask;
1543 dev_priv->pch_irq_enable_reg = hotplug_mask;
1544
1545 I915_WRITE(SDEIIR, I915_READ(SDEIIR));
1546 I915_WRITE(SDEIMR, dev_priv->pch_irq_mask_reg);
1547 I915_WRITE(SDEIER, dev_priv->pch_irq_enable_reg);
Chris Wilson3143a2b2010-11-16 15:55:10 +00001548 POSTING_READ(SDEIER);
Zhenyu Wangc6501562009-11-03 18:57:21 +00001549
Jesse Barnesf97108d2010-01-29 11:27:07 -08001550 if (IS_IRONLAKE_M(dev)) {
1551 /* Clear & enable PCU event interrupts */
1552 I915_WRITE(DEIIR, DE_PCU_EVENT);
1553 I915_WRITE(DEIER, I915_READ(DEIER) | DE_PCU_EVENT);
1554 ironlake_enable_display_irq(dev_priv, DE_PCU_EVENT);
1555 }
1556
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001557 return 0;
1558}
1559
Dave Airlie84b1fd12007-07-11 15:53:27 +10001560void i915_driver_irq_preinstall(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561{
1562 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
1563
Jesse Barnes79e53942008-11-07 14:24:08 -08001564 atomic_set(&dev_priv->irq_received, 0);
1565
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001566 INIT_WORK(&dev_priv->hotplug_work, i915_hotplug_work_func);
Jesse Barnes8a905232009-07-11 16:48:03 -04001567 INIT_WORK(&dev_priv->error_work, i915_error_work_func);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001568
Eric Anholtbad720f2009-10-22 16:11:14 -07001569 if (HAS_PCH_SPLIT(dev)) {
Adam Jacksonf2b115e2009-12-03 17:14:42 -05001570 ironlake_irq_preinstall(dev);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001571 return;
1572 }
1573
Jesse Barnes5ca58282009-03-31 14:11:15 -07001574 if (I915_HAS_HOTPLUG(dev)) {
1575 I915_WRITE(PORT_HOTPLUG_EN, 0);
1576 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
1577 }
1578
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001579 I915_WRITE(HWSTAM, 0xeffe);
Keith Packard7c463582008-11-04 02:03:27 -08001580 I915_WRITE(PIPEASTAT, 0);
1581 I915_WRITE(PIPEBSTAT, 0);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001582 I915_WRITE(IMR, 0xffffffff);
Eric Anholted4cb412008-07-29 12:10:39 -07001583 I915_WRITE(IER, 0x0);
Chris Wilson3143a2b2010-11-16 15:55:10 +00001584 POSTING_READ(IER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585}
1586
Jesse Barnesb01f2c32009-12-11 11:07:17 -08001587/*
1588 * Must be called after intel_modeset_init or hotplug interrupts won't be
1589 * enabled correctly.
1590 */
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001591int i915_driver_irq_postinstall(struct drm_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592{
1593 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Jesse Barnes5ca58282009-03-31 14:11:15 -07001594 u32 enable_mask = I915_INTERRUPT_ENABLE_FIX | I915_INTERRUPT_ENABLE_VAR;
Jesse Barnes63eeaf32009-06-18 16:56:52 -07001595 u32 error_mask;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001596
Zou Nan hai852835f2010-05-21 09:08:56 +08001597 DRM_INIT_WAITQUEUE(&dev_priv->render_ring.irq_queue);
Zou Nan haid1b851f2010-05-21 09:08:57 +08001598 if (HAS_BSD(dev))
1599 DRM_INIT_WAITQUEUE(&dev_priv->bsd_ring.irq_queue);
Chris Wilson549f7362010-10-19 11:19:32 +01001600 if (HAS_BLT(dev))
1601 DRM_INIT_WAITQUEUE(&dev_priv->blt_ring.irq_queue);
Zou Nan haid1b851f2010-05-21 09:08:57 +08001602
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001603 dev_priv->vblank_pipe = DRM_I915_VBLANK_PIPE_A | DRM_I915_VBLANK_PIPE_B;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001604
Eric Anholtbad720f2009-10-22 16:11:14 -07001605 if (HAS_PCH_SPLIT(dev))
Adam Jacksonf2b115e2009-12-03 17:14:42 -05001606 return ironlake_irq_postinstall(dev);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001607
Keith Packard7c463582008-11-04 02:03:27 -08001608 /* Unmask the interrupts that we always want on. */
1609 dev_priv->irq_mask_reg = ~I915_INTERRUPT_ENABLE_FIX;
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +01001610
Keith Packard7c463582008-11-04 02:03:27 -08001611 dev_priv->pipestat[0] = 0;
1612 dev_priv->pipestat[1] = 0;
1613
Jesse Barnes5ca58282009-03-31 14:11:15 -07001614 if (I915_HAS_HOTPLUG(dev)) {
Adam Jacksonc496fa12010-05-27 17:26:45 -04001615 /* Enable in IER... */
1616 enable_mask |= I915_DISPLAY_PORT_INTERRUPT;
1617 /* and unmask in IMR */
1618 dev_priv->irq_mask_reg &= ~I915_DISPLAY_PORT_INTERRUPT;
1619 }
1620
1621 /*
1622 * Enable some error detection, note the instruction error mask
1623 * bit is reserved, so we leave it masked.
1624 */
1625 if (IS_G4X(dev)) {
1626 error_mask = ~(GM45_ERROR_PAGE_TABLE |
1627 GM45_ERROR_MEM_PRIV |
1628 GM45_ERROR_CP_PRIV |
1629 I915_ERROR_MEMORY_REFRESH);
1630 } else {
1631 error_mask = ~(I915_ERROR_PAGE_TABLE |
1632 I915_ERROR_MEMORY_REFRESH);
1633 }
1634 I915_WRITE(EMR, error_mask);
1635
1636 I915_WRITE(IMR, dev_priv->irq_mask_reg);
1637 I915_WRITE(IER, enable_mask);
Chris Wilson3143a2b2010-11-16 15:55:10 +00001638 POSTING_READ(IER);
Adam Jacksonc496fa12010-05-27 17:26:45 -04001639
1640 if (I915_HAS_HOTPLUG(dev)) {
Jesse Barnes5ca58282009-03-31 14:11:15 -07001641 u32 hotplug_en = I915_READ(PORT_HOTPLUG_EN);
1642
Jesse Barnesb01f2c32009-12-11 11:07:17 -08001643 /* Note HDMI and DP share bits */
1644 if (dev_priv->hotplug_supported_mask & HDMIB_HOTPLUG_INT_STATUS)
1645 hotplug_en |= HDMIB_HOTPLUG_INT_EN;
1646 if (dev_priv->hotplug_supported_mask & HDMIC_HOTPLUG_INT_STATUS)
1647 hotplug_en |= HDMIC_HOTPLUG_INT_EN;
1648 if (dev_priv->hotplug_supported_mask & HDMID_HOTPLUG_INT_STATUS)
1649 hotplug_en |= HDMID_HOTPLUG_INT_EN;
1650 if (dev_priv->hotplug_supported_mask & SDVOC_HOTPLUG_INT_STATUS)
1651 hotplug_en |= SDVOC_HOTPLUG_INT_EN;
1652 if (dev_priv->hotplug_supported_mask & SDVOB_HOTPLUG_INT_STATUS)
1653 hotplug_en |= SDVOB_HOTPLUG_INT_EN;
Andy Lutomirski2d1c9752010-06-12 05:21:18 -04001654 if (dev_priv->hotplug_supported_mask & CRT_HOTPLUG_INT_STATUS) {
Jesse Barnesb01f2c32009-12-11 11:07:17 -08001655 hotplug_en |= CRT_HOTPLUG_INT_EN;
Andy Lutomirski2d1c9752010-06-12 05:21:18 -04001656
1657 /* Programming the CRT detection parameters tends
1658 to generate a spurious hotplug event about three
1659 seconds later. So just do it once.
1660 */
1661 if (IS_G4X(dev))
1662 hotplug_en |= CRT_HOTPLUG_ACTIVATION_PERIOD_64;
1663 hotplug_en |= CRT_HOTPLUG_VOLTAGE_COMPARE_50;
1664 }
1665
Jesse Barnesb01f2c32009-12-11 11:07:17 -08001666 /* Ignore TV since it's buggy */
1667
Jesse Barnes5ca58282009-03-31 14:11:15 -07001668 I915_WRITE(PORT_HOTPLUG_EN, hotplug_en);
Jesse Barnes5ca58282009-03-31 14:11:15 -07001669 }
1670
Chris Wilson3b617962010-08-24 09:02:58 +01001671 intel_opregion_enable_asle(dev);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001672
1673 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674}
1675
Adam Jacksonf2b115e2009-12-03 17:14:42 -05001676static void ironlake_irq_uninstall(struct drm_device *dev)
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001677{
1678 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
1679 I915_WRITE(HWSTAM, 0xffffffff);
1680
1681 I915_WRITE(DEIMR, 0xffffffff);
1682 I915_WRITE(DEIER, 0x0);
1683 I915_WRITE(DEIIR, I915_READ(DEIIR));
1684
1685 I915_WRITE(GTIMR, 0xffffffff);
1686 I915_WRITE(GTIER, 0x0);
1687 I915_WRITE(GTIIR, I915_READ(GTIIR));
1688}
1689
Dave Airlie84b1fd12007-07-11 15:53:27 +10001690void i915_driver_irq_uninstall(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691{
1692 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Dave Airlie91e37382006-02-18 15:17:04 +11001693
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694 if (!dev_priv)
1695 return;
1696
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001697 dev_priv->vblank_pipe = 0;
1698
Eric Anholtbad720f2009-10-22 16:11:14 -07001699 if (HAS_PCH_SPLIT(dev)) {
Adam Jacksonf2b115e2009-12-03 17:14:42 -05001700 ironlake_irq_uninstall(dev);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001701 return;
1702 }
1703
Jesse Barnes5ca58282009-03-31 14:11:15 -07001704 if (I915_HAS_HOTPLUG(dev)) {
1705 I915_WRITE(PORT_HOTPLUG_EN, 0);
1706 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
1707 }
1708
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001709 I915_WRITE(HWSTAM, 0xffffffff);
Keith Packard7c463582008-11-04 02:03:27 -08001710 I915_WRITE(PIPEASTAT, 0);
1711 I915_WRITE(PIPEBSTAT, 0);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001712 I915_WRITE(IMR, 0xffffffff);
Eric Anholted4cb412008-07-29 12:10:39 -07001713 I915_WRITE(IER, 0x0);
Dave Airlie91e37382006-02-18 15:17:04 +11001714
Keith Packard7c463582008-11-04 02:03:27 -08001715 I915_WRITE(PIPEASTAT, I915_READ(PIPEASTAT) & 0x8000ffff);
1716 I915_WRITE(PIPEBSTAT, I915_READ(PIPEBSTAT) & 0x8000ffff);
1717 I915_WRITE(IIR, I915_READ(IIR));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718}