blob: 852a2d848bf42b49cdcf831e36f863d7c79d2041 [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 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 Wilson549f7362010-10-19 11:19:32 +0100301 ring->irq_gem_seqno = seqno;
302 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);
324 (void)I915_READ(DEIER);
325
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);
389 (void)I915_READ(DEIER);
390
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,
426 struct drm_gem_object *src)
427{
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;
430 struct drm_i915_gem_object *src_priv;
431 int page, page_count;
Chris Wilsone56660d2010-08-07 11:01:26 +0100432 u32 reloc_offset;
Chris Wilson9df30792010-02-18 10:24:56 +0000433
434 if (src == NULL)
435 return NULL;
436
Daniel Vetter23010e42010-03-08 13:35:02 +0100437 src_priv = to_intel_bo(src);
Chris Wilson9df30792010-02-18 10:24:56 +0000438 if (src_priv->pages == NULL)
439 return NULL;
440
441 page_count = src->size / PAGE_SIZE;
442
443 dst = kmalloc(sizeof(*dst) + page_count * sizeof (u32 *), GFP_ATOMIC);
444 if (dst == NULL)
445 return NULL;
446
Chris Wilsone56660d2010-08-07 11:01:26 +0100447 reloc_offset = src_priv->gtt_offset;
Chris Wilson9df30792010-02-18 10:24:56 +0000448 for (page = 0; page < page_count; page++) {
Andrew Morton788885a2010-05-11 14:07:05 -0700449 unsigned long flags;
Chris Wilsone56660d2010-08-07 11:01:26 +0100450 void __iomem *s;
451 void *d;
Andrew Morton788885a2010-05-11 14:07:05 -0700452
Chris Wilsone56660d2010-08-07 11:01:26 +0100453 d = kmalloc(PAGE_SIZE, GFP_ATOMIC);
Chris Wilson9df30792010-02-18 10:24:56 +0000454 if (d == NULL)
455 goto unwind;
Chris Wilsone56660d2010-08-07 11:01:26 +0100456
Andrew Morton788885a2010-05-11 14:07:05 -0700457 local_irq_save(flags);
Chris Wilsone56660d2010-08-07 11:01:26 +0100458 s = io_mapping_map_atomic_wc(dev_priv->mm.gtt_mapping,
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -0700459 reloc_offset);
Chris Wilsone56660d2010-08-07 11:01:26 +0100460 memcpy_fromio(d, s, PAGE_SIZE);
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -0700461 io_mapping_unmap_atomic(s);
Andrew Morton788885a2010-05-11 14:07:05 -0700462 local_irq_restore(flags);
Chris Wilsone56660d2010-08-07 11:01:26 +0100463
Chris Wilson9df30792010-02-18 10:24:56 +0000464 dst->pages[page] = d;
Chris Wilsone56660d2010-08-07 11:01:26 +0100465
466 reloc_offset += PAGE_SIZE;
Chris Wilson9df30792010-02-18 10:24:56 +0000467 }
468 dst->page_count = page_count;
469 dst->gtt_offset = src_priv->gtt_offset;
470
471 return dst;
472
473unwind:
474 while (page--)
475 kfree(dst->pages[page]);
476 kfree(dst);
477 return NULL;
478}
479
480static void
481i915_error_object_free(struct drm_i915_error_object *obj)
482{
483 int page;
484
485 if (obj == NULL)
486 return;
487
488 for (page = 0; page < obj->page_count; page++)
489 kfree(obj->pages[page]);
490
491 kfree(obj);
492}
493
494static void
495i915_error_state_free(struct drm_device *dev,
496 struct drm_i915_error_state *error)
497{
498 i915_error_object_free(error->batchbuffer[0]);
499 i915_error_object_free(error->batchbuffer[1]);
500 i915_error_object_free(error->ringbuffer);
501 kfree(error->active_bo);
Chris Wilson6ef3d422010-08-04 20:26:07 +0100502 kfree(error->overlay);
Chris Wilson9df30792010-02-18 10:24:56 +0000503 kfree(error);
504}
505
506static u32
507i915_get_bbaddr(struct drm_device *dev, u32 *ring)
508{
509 u32 cmd;
510
511 if (IS_I830(dev) || IS_845G(dev))
512 cmd = MI_BATCH_BUFFER;
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100513 else if (INTEL_INFO(dev)->gen >= 4)
Chris Wilson9df30792010-02-18 10:24:56 +0000514 cmd = (MI_BATCH_BUFFER_START | (2 << 6) |
515 MI_BATCH_NON_SECURE_I965);
516 else
517 cmd = (MI_BATCH_BUFFER_START | (2 << 6));
518
519 return ring[0] == cmd ? ring[1] : 0;
520}
521
522static u32
523i915_ringbuffer_last_batch(struct drm_device *dev)
524{
525 struct drm_i915_private *dev_priv = dev->dev_private;
526 u32 head, bbaddr;
527 u32 *ring;
528
529 /* Locate the current position in the ringbuffer and walk back
530 * to find the most recently dispatched batch buffer.
531 */
532 bbaddr = 0;
533 head = I915_READ(PRB0_HEAD) & HEAD_ADDR;
Eric Anholtd3301d82010-05-21 13:55:54 -0700534 ring = (u32 *)(dev_priv->render_ring.virtual_start + head);
Chris Wilson9df30792010-02-18 10:24:56 +0000535
Eric Anholtd3301d82010-05-21 13:55:54 -0700536 while (--ring >= (u32 *)dev_priv->render_ring.virtual_start) {
Chris Wilson9df30792010-02-18 10:24:56 +0000537 bbaddr = i915_get_bbaddr(dev, ring);
538 if (bbaddr)
539 break;
540 }
541
542 if (bbaddr == 0) {
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800543 ring = (u32 *)(dev_priv->render_ring.virtual_start
544 + dev_priv->render_ring.size);
Eric Anholtd3301d82010-05-21 13:55:54 -0700545 while (--ring >= (u32 *)dev_priv->render_ring.virtual_start) {
Chris Wilson9df30792010-02-18 10:24:56 +0000546 bbaddr = i915_get_bbaddr(dev, ring);
547 if (bbaddr)
548 break;
549 }
550 }
551
552 return bbaddr;
553}
554
Jesse Barnes8a905232009-07-11 16:48:03 -0400555/**
556 * i915_capture_error_state - capture an error record for later analysis
557 * @dev: drm device
558 *
559 * Should be called when an error is detected (either a hang or an error
560 * interrupt) to capture error state from the time of the error. Fills
561 * out a structure which becomes available in debugfs for user level tools
562 * to pick up.
563 */
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700564static void i915_capture_error_state(struct drm_device *dev)
565{
566 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson9df30792010-02-18 10:24:56 +0000567 struct drm_i915_gem_object *obj_priv;
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700568 struct drm_i915_error_state *error;
Chris Wilson9df30792010-02-18 10:24:56 +0000569 struct drm_gem_object *batchbuffer[2];
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700570 unsigned long flags;
Chris Wilson9df30792010-02-18 10:24:56 +0000571 u32 bbaddr;
572 int count;
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700573
574 spin_lock_irqsave(&dev_priv->error_lock, flags);
Chris Wilson9df30792010-02-18 10:24:56 +0000575 error = dev_priv->first_error;
576 spin_unlock_irqrestore(&dev_priv->error_lock, flags);
577 if (error)
578 return;
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700579
580 error = kmalloc(sizeof(*error), GFP_ATOMIC);
581 if (!error) {
Chris Wilson9df30792010-02-18 10:24:56 +0000582 DRM_DEBUG_DRIVER("out of memory, not capturing error state\n");
583 return;
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700584 }
585
Chris Wilson2fa772f2010-10-01 13:23:27 +0100586 DRM_DEBUG_DRIVER("generating error event\n");
587
Chris Wilsonf787a5f2010-09-24 16:02:42 +0100588 error->seqno =
Chris Wilson78501ea2010-10-27 12:18:21 +0100589 dev_priv->render_ring.get_seqno(&dev_priv->render_ring);
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700590 error->eir = I915_READ(EIR);
591 error->pgtbl_er = I915_READ(PGTBL_ER);
592 error->pipeastat = I915_READ(PIPEASTAT);
593 error->pipebstat = I915_READ(PIPEBSTAT);
594 error->instpm = I915_READ(INSTPM);
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100595 if (INTEL_INFO(dev)->gen < 4) {
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700596 error->ipeir = I915_READ(IPEIR);
597 error->ipehr = I915_READ(IPEHR);
598 error->instdone = I915_READ(INSTDONE);
599 error->acthd = I915_READ(ACTHD);
Chris Wilson9df30792010-02-18 10:24:56 +0000600 error->bbaddr = 0;
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700601 } else {
602 error->ipeir = I915_READ(IPEIR_I965);
603 error->ipehr = I915_READ(IPEHR_I965);
604 error->instdone = I915_READ(INSTDONE_I965);
605 error->instps = I915_READ(INSTPS);
606 error->instdone1 = I915_READ(INSTDONE1);
607 error->acthd = I915_READ(ACTHD_I965);
Chris Wilson9df30792010-02-18 10:24:56 +0000608 error->bbaddr = I915_READ64(BB_ADDR);
609 }
610
611 bbaddr = i915_ringbuffer_last_batch(dev);
612
613 /* Grab the current batchbuffer, most likely to have crashed. */
614 batchbuffer[0] = NULL;
615 batchbuffer[1] = NULL;
616 count = 0;
Chris Wilson69dc4982010-10-19 10:36:51 +0100617 list_for_each_entry(obj_priv, &dev_priv->mm.active_list, mm_list) {
Daniel Vettera8089e82010-04-09 19:05:09 +0000618 struct drm_gem_object *obj = &obj_priv->base;
Chris Wilson9df30792010-02-18 10:24:56 +0000619
620 if (batchbuffer[0] == NULL &&
621 bbaddr >= obj_priv->gtt_offset &&
622 bbaddr < obj_priv->gtt_offset + obj->size)
623 batchbuffer[0] = obj;
624
625 if (batchbuffer[1] == NULL &&
626 error->acthd >= obj_priv->gtt_offset &&
Chris Wilsone56660d2010-08-07 11:01:26 +0100627 error->acthd < obj_priv->gtt_offset + obj->size)
Chris Wilson9df30792010-02-18 10:24:56 +0000628 batchbuffer[1] = obj;
629
630 count++;
631 }
Chris Wilsone56660d2010-08-07 11:01:26 +0100632 /* Scan the other lists for completeness for those bizarre errors. */
633 if (batchbuffer[0] == NULL || batchbuffer[1] == NULL) {
Chris Wilson69dc4982010-10-19 10:36:51 +0100634 list_for_each_entry(obj_priv, &dev_priv->mm.flushing_list, mm_list) {
Chris Wilsone56660d2010-08-07 11:01:26 +0100635 struct drm_gem_object *obj = &obj_priv->base;
636
637 if (batchbuffer[0] == NULL &&
638 bbaddr >= obj_priv->gtt_offset &&
639 bbaddr < obj_priv->gtt_offset + obj->size)
640 batchbuffer[0] = obj;
641
642 if (batchbuffer[1] == NULL &&
643 error->acthd >= obj_priv->gtt_offset &&
644 error->acthd < obj_priv->gtt_offset + obj->size)
645 batchbuffer[1] = obj;
646
647 if (batchbuffer[0] && batchbuffer[1])
648 break;
649 }
650 }
651 if (batchbuffer[0] == NULL || batchbuffer[1] == NULL) {
Chris Wilson69dc4982010-10-19 10:36:51 +0100652 list_for_each_entry(obj_priv, &dev_priv->mm.inactive_list, mm_list) {
Chris Wilsone56660d2010-08-07 11:01:26 +0100653 struct drm_gem_object *obj = &obj_priv->base;
654
655 if (batchbuffer[0] == NULL &&
656 bbaddr >= obj_priv->gtt_offset &&
657 bbaddr < obj_priv->gtt_offset + obj->size)
658 batchbuffer[0] = obj;
659
660 if (batchbuffer[1] == NULL &&
661 error->acthd >= obj_priv->gtt_offset &&
662 error->acthd < obj_priv->gtt_offset + obj->size)
663 batchbuffer[1] = obj;
664
665 if (batchbuffer[0] && batchbuffer[1])
666 break;
667 }
668 }
Chris Wilson9df30792010-02-18 10:24:56 +0000669
670 /* We need to copy these to an anonymous buffer as the simplest
Andrea Gelmini139d3632010-10-15 17:14:33 +0200671 * method to avoid being overwritten by userspace.
Chris Wilson9df30792010-02-18 10:24:56 +0000672 */
673 error->batchbuffer[0] = i915_error_object_create(dev, batchbuffer[0]);
Chris Wilsone56660d2010-08-07 11:01:26 +0100674 if (batchbuffer[1] != batchbuffer[0])
675 error->batchbuffer[1] = i915_error_object_create(dev, batchbuffer[1]);
676 else
677 error->batchbuffer[1] = NULL;
Chris Wilson9df30792010-02-18 10:24:56 +0000678
679 /* Record the ringbuffer */
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800680 error->ringbuffer = i915_error_object_create(dev,
681 dev_priv->render_ring.gem_object);
Chris Wilson9df30792010-02-18 10:24:56 +0000682
683 /* Record buffers on the active list. */
684 error->active_bo = NULL;
685 error->active_bo_count = 0;
686
687 if (count)
688 error->active_bo = kmalloc(sizeof(*error->active_bo)*count,
689 GFP_ATOMIC);
690
691 if (error->active_bo) {
692 int i = 0;
Chris Wilson69dc4982010-10-19 10:36:51 +0100693 list_for_each_entry(obj_priv, &dev_priv->mm.active_list, mm_list) {
Daniel Vettera8089e82010-04-09 19:05:09 +0000694 struct drm_gem_object *obj = &obj_priv->base;
Chris Wilson9df30792010-02-18 10:24:56 +0000695
696 error->active_bo[i].size = obj->size;
697 error->active_bo[i].name = obj->name;
698 error->active_bo[i].seqno = obj_priv->last_rendering_seqno;
699 error->active_bo[i].gtt_offset = obj_priv->gtt_offset;
700 error->active_bo[i].read_domains = obj->read_domains;
701 error->active_bo[i].write_domain = obj->write_domain;
702 error->active_bo[i].fence_reg = obj_priv->fence_reg;
703 error->active_bo[i].pinned = 0;
704 if (obj_priv->pin_count > 0)
705 error->active_bo[i].pinned = 1;
706 if (obj_priv->user_pin_count > 0)
707 error->active_bo[i].pinned = -1;
708 error->active_bo[i].tiling = obj_priv->tiling_mode;
709 error->active_bo[i].dirty = obj_priv->dirty;
710 error->active_bo[i].purgeable = obj_priv->madv != I915_MADV_WILLNEED;
711
712 if (++i == count)
713 break;
714 }
715 error->active_bo_count = i;
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700716 }
717
Jesse Barnes8a905232009-07-11 16:48:03 -0400718 do_gettimeofday(&error->time);
719
Chris Wilson6ef3d422010-08-04 20:26:07 +0100720 error->overlay = intel_overlay_capture_error_state(dev);
721
Chris Wilson9df30792010-02-18 10:24:56 +0000722 spin_lock_irqsave(&dev_priv->error_lock, flags);
723 if (dev_priv->first_error == NULL) {
724 dev_priv->first_error = error;
725 error = NULL;
726 }
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700727 spin_unlock_irqrestore(&dev_priv->error_lock, flags);
Chris Wilson9df30792010-02-18 10:24:56 +0000728
729 if (error)
730 i915_error_state_free(dev, error);
731}
732
733void i915_destroy_error_state(struct drm_device *dev)
734{
735 struct drm_i915_private *dev_priv = dev->dev_private;
736 struct drm_i915_error_state *error;
737
738 spin_lock(&dev_priv->error_lock);
739 error = dev_priv->first_error;
740 dev_priv->first_error = NULL;
741 spin_unlock(&dev_priv->error_lock);
742
743 if (error)
744 i915_error_state_free(dev, error);
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700745}
Chris Wilson3bd3c932010-08-19 08:19:30 +0100746#else
747#define i915_capture_error_state(x)
748#endif
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700749
Chris Wilson35aed2e2010-05-27 13:18:12 +0100750static void i915_report_and_clear_eir(struct drm_device *dev)
Jesse Barnes8a905232009-07-11 16:48:03 -0400751{
752 struct drm_i915_private *dev_priv = dev->dev_private;
753 u32 eir = I915_READ(EIR);
Jesse Barnes8a905232009-07-11 16:48:03 -0400754
Chris Wilson35aed2e2010-05-27 13:18:12 +0100755 if (!eir)
756 return;
Jesse Barnes8a905232009-07-11 16:48:03 -0400757
758 printk(KERN_ERR "render error detected, EIR: 0x%08x\n",
759 eir);
760
761 if (IS_G4X(dev)) {
762 if (eir & (GM45_ERROR_MEM_PRIV | GM45_ERROR_CP_PRIV)) {
763 u32 ipeir = I915_READ(IPEIR_I965);
764
765 printk(KERN_ERR " IPEIR: 0x%08x\n",
766 I915_READ(IPEIR_I965));
767 printk(KERN_ERR " IPEHR: 0x%08x\n",
768 I915_READ(IPEHR_I965));
769 printk(KERN_ERR " INSTDONE: 0x%08x\n",
770 I915_READ(INSTDONE_I965));
771 printk(KERN_ERR " INSTPS: 0x%08x\n",
772 I915_READ(INSTPS));
773 printk(KERN_ERR " INSTDONE1: 0x%08x\n",
774 I915_READ(INSTDONE1));
775 printk(KERN_ERR " ACTHD: 0x%08x\n",
776 I915_READ(ACTHD_I965));
777 I915_WRITE(IPEIR_I965, ipeir);
778 (void)I915_READ(IPEIR_I965);
779 }
780 if (eir & GM45_ERROR_PAGE_TABLE) {
781 u32 pgtbl_err = I915_READ(PGTBL_ER);
782 printk(KERN_ERR "page table error\n");
783 printk(KERN_ERR " PGTBL_ER: 0x%08x\n",
784 pgtbl_err);
785 I915_WRITE(PGTBL_ER, pgtbl_err);
786 (void)I915_READ(PGTBL_ER);
787 }
788 }
789
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100790 if (!IS_GEN2(dev)) {
Jesse Barnes8a905232009-07-11 16:48:03 -0400791 if (eir & I915_ERROR_PAGE_TABLE) {
792 u32 pgtbl_err = I915_READ(PGTBL_ER);
793 printk(KERN_ERR "page table error\n");
794 printk(KERN_ERR " PGTBL_ER: 0x%08x\n",
795 pgtbl_err);
796 I915_WRITE(PGTBL_ER, pgtbl_err);
797 (void)I915_READ(PGTBL_ER);
798 }
799 }
800
801 if (eir & I915_ERROR_MEMORY_REFRESH) {
Chris Wilson35aed2e2010-05-27 13:18:12 +0100802 u32 pipea_stats = I915_READ(PIPEASTAT);
803 u32 pipeb_stats = I915_READ(PIPEBSTAT);
804
Jesse Barnes8a905232009-07-11 16:48:03 -0400805 printk(KERN_ERR "memory refresh error\n");
806 printk(KERN_ERR "PIPEASTAT: 0x%08x\n",
807 pipea_stats);
808 printk(KERN_ERR "PIPEBSTAT: 0x%08x\n",
809 pipeb_stats);
810 /* pipestat has already been acked */
811 }
812 if (eir & I915_ERROR_INSTRUCTION) {
813 printk(KERN_ERR "instruction error\n");
814 printk(KERN_ERR " INSTPM: 0x%08x\n",
815 I915_READ(INSTPM));
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100816 if (INTEL_INFO(dev)->gen < 4) {
Jesse Barnes8a905232009-07-11 16:48:03 -0400817 u32 ipeir = I915_READ(IPEIR);
818
819 printk(KERN_ERR " IPEIR: 0x%08x\n",
820 I915_READ(IPEIR));
821 printk(KERN_ERR " IPEHR: 0x%08x\n",
822 I915_READ(IPEHR));
823 printk(KERN_ERR " INSTDONE: 0x%08x\n",
824 I915_READ(INSTDONE));
825 printk(KERN_ERR " ACTHD: 0x%08x\n",
826 I915_READ(ACTHD));
827 I915_WRITE(IPEIR, ipeir);
828 (void)I915_READ(IPEIR);
829 } else {
830 u32 ipeir = I915_READ(IPEIR_I965);
831
832 printk(KERN_ERR " IPEIR: 0x%08x\n",
833 I915_READ(IPEIR_I965));
834 printk(KERN_ERR " IPEHR: 0x%08x\n",
835 I915_READ(IPEHR_I965));
836 printk(KERN_ERR " INSTDONE: 0x%08x\n",
837 I915_READ(INSTDONE_I965));
838 printk(KERN_ERR " INSTPS: 0x%08x\n",
839 I915_READ(INSTPS));
840 printk(KERN_ERR " INSTDONE1: 0x%08x\n",
841 I915_READ(INSTDONE1));
842 printk(KERN_ERR " ACTHD: 0x%08x\n",
843 I915_READ(ACTHD_I965));
844 I915_WRITE(IPEIR_I965, ipeir);
845 (void)I915_READ(IPEIR_I965);
846 }
847 }
848
849 I915_WRITE(EIR, eir);
850 (void)I915_READ(EIR);
851 eir = I915_READ(EIR);
852 if (eir) {
853 /*
854 * some errors might have become stuck,
855 * mask them.
856 */
857 DRM_ERROR("EIR stuck: 0x%08x, masking\n", eir);
858 I915_WRITE(EMR, I915_READ(EMR) | eir);
859 I915_WRITE(IIR, I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT);
860 }
Chris Wilson35aed2e2010-05-27 13:18:12 +0100861}
862
863/**
864 * i915_handle_error - handle an error interrupt
865 * @dev: drm device
866 *
867 * Do some basic checking of regsiter state at error interrupt time and
868 * dump it to the syslog. Also call i915_capture_error_state() to make
869 * sure we get a record and make it available in debugfs. Fire a uevent
870 * so userspace knows something bad happened (should trigger collection
871 * of a ring dump etc.).
872 */
873static void i915_handle_error(struct drm_device *dev, bool wedged)
874{
875 struct drm_i915_private *dev_priv = dev->dev_private;
876
877 i915_capture_error_state(dev);
878 i915_report_and_clear_eir(dev);
Jesse Barnes8a905232009-07-11 16:48:03 -0400879
Ben Gamariba1234d2009-09-14 17:48:47 -0400880 if (wedged) {
Chris Wilson30dbf0c2010-09-25 10:19:17 +0100881 INIT_COMPLETION(dev_priv->error_completion);
Ben Gamariba1234d2009-09-14 17:48:47 -0400882 atomic_set(&dev_priv->mm.wedged, 1);
883
Ben Gamari11ed50e2009-09-14 17:48:45 -0400884 /*
885 * Wakeup waiting processes so they don't hang
886 */
Chris Wilsonf787a5f2010-09-24 16:02:42 +0100887 wake_up_all(&dev_priv->render_ring.irq_queue);
888 if (HAS_BSD(dev))
889 wake_up_all(&dev_priv->bsd_ring.irq_queue);
Chris Wilson549f7362010-10-19 11:19:32 +0100890 if (HAS_BLT(dev))
891 wake_up_all(&dev_priv->blt_ring.irq_queue);
Ben Gamari11ed50e2009-09-14 17:48:45 -0400892 }
893
Eric Anholt9c9fe1f2009-08-03 16:09:16 -0700894 queue_work(dev_priv->wq, &dev_priv->error_work);
Jesse Barnes8a905232009-07-11 16:48:03 -0400895}
896
Simon Farnsworth4e5359c2010-09-01 17:47:52 +0100897static void i915_pageflip_stall_check(struct drm_device *dev, int pipe)
898{
899 drm_i915_private_t *dev_priv = dev->dev_private;
900 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
901 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
902 struct drm_i915_gem_object *obj_priv;
903 struct intel_unpin_work *work;
904 unsigned long flags;
905 bool stall_detected;
906
907 /* Ignore early vblank irqs */
908 if (intel_crtc == NULL)
909 return;
910
911 spin_lock_irqsave(&dev->event_lock, flags);
912 work = intel_crtc->unpin_work;
913
914 if (work == NULL || work->pending || !work->enable_stall_check) {
915 /* Either the pending flip IRQ arrived, or we're too early. Don't check */
916 spin_unlock_irqrestore(&dev->event_lock, flags);
917 return;
918 }
919
920 /* Potential stall - if we see that the flip has happened, assume a missed interrupt */
921 obj_priv = to_intel_bo(work->pending_flip_obj);
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100922 if (INTEL_INFO(dev)->gen >= 4) {
Simon Farnsworth4e5359c2010-09-01 17:47:52 +0100923 int dspsurf = intel_crtc->plane == 0 ? DSPASURF : DSPBSURF;
924 stall_detected = I915_READ(dspsurf) == obj_priv->gtt_offset;
925 } else {
926 int dspaddr = intel_crtc->plane == 0 ? DSPAADDR : DSPBADDR;
927 stall_detected = I915_READ(dspaddr) == (obj_priv->gtt_offset +
928 crtc->y * crtc->fb->pitch +
929 crtc->x * crtc->fb->bits_per_pixel/8);
930 }
931
932 spin_unlock_irqrestore(&dev->event_lock, flags);
933
934 if (stall_detected) {
935 DRM_DEBUG_DRIVER("Pageflip stall detected\n");
936 intel_prepare_page_flip(dev, intel_crtc->plane);
937 }
938}
939
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940irqreturn_t i915_driver_irq_handler(DRM_IRQ_ARGS)
941{
Dave Airlie84b1fd12007-07-11 15:53:27 +1000942 struct drm_device *dev = (struct drm_device *) arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000944 struct drm_i915_master_private *master_priv;
Eric Anholtcdfbc412008-11-04 15:50:30 -0800945 u32 iir, new_iir;
946 u32 pipea_stats, pipeb_stats;
Keith Packard05eff842008-11-19 14:03:05 -0800947 u32 vblank_status;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700948 int vblank = 0;
Keith Packard7c463582008-11-04 02:03:27 -0800949 unsigned long irqflags;
Keith Packard05eff842008-11-19 14:03:05 -0800950 int irq_received;
951 int ret = IRQ_NONE;
Dave Airlieaf6061a2008-05-07 12:15:39 +1000952
Eric Anholt630681d2008-10-06 15:14:12 -0700953 atomic_inc(&dev_priv->irq_received);
954
Eric Anholtbad720f2009-10-22 16:11:14 -0700955 if (HAS_PCH_SPLIT(dev))
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500956 return ironlake_irq_handler(dev);
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800957
Eric Anholted4cb412008-07-29 12:10:39 -0700958 iir = I915_READ(IIR);
Dave Airlieaf6061a2008-05-07 12:15:39 +1000959
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100960 if (INTEL_INFO(dev)->gen >= 4)
Jesse Barnesd874bcf2010-06-30 13:16:00 -0700961 vblank_status = PIPE_START_VBLANK_INTERRUPT_STATUS;
Jesse Barnese25e6602010-06-30 13:15:19 -0700962 else
Jesse Barnesd874bcf2010-06-30 13:16:00 -0700963 vblank_status = PIPE_VBLANK_INTERRUPT_STATUS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964
Keith Packard05eff842008-11-19 14:03:05 -0800965 for (;;) {
966 irq_received = iir != 0;
967
968 /* Can't rely on pipestat interrupt bit in iir as it might
969 * have been cleared after the pipestat interrupt was received.
970 * It doesn't set the bit in iir again, but it still produces
971 * interrupts (for non-MSI).
972 */
973 spin_lock_irqsave(&dev_priv->user_irq_lock, irqflags);
974 pipea_stats = I915_READ(PIPEASTAT);
975 pipeb_stats = I915_READ(PIPEBSTAT);
Jesse Barnes79e53942008-11-07 14:24:08 -0800976
Jesse Barnes8a905232009-07-11 16:48:03 -0400977 if (iir & I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT)
Ben Gamariba1234d2009-09-14 17:48:47 -0400978 i915_handle_error(dev, false);
Jesse Barnes8a905232009-07-11 16:48:03 -0400979
Eric Anholtcdfbc412008-11-04 15:50:30 -0800980 /*
981 * Clear the PIPE(A|B)STAT regs before the IIR
982 */
Keith Packard05eff842008-11-19 14:03:05 -0800983 if (pipea_stats & 0x8000ffff) {
Shaohua Li7662c8b2009-06-26 11:23:55 +0800984 if (pipea_stats & PIPE_FIFO_UNDERRUN_STATUS)
Zhao Yakui44d98a62009-10-09 11:39:40 +0800985 DRM_DEBUG_DRIVER("pipe a underrun\n");
Eric Anholtcdfbc412008-11-04 15:50:30 -0800986 I915_WRITE(PIPEASTAT, pipea_stats);
Keith Packard05eff842008-11-19 14:03:05 -0800987 irq_received = 1;
Eric Anholtcdfbc412008-11-04 15:50:30 -0800988 }
Keith Packard7c463582008-11-04 02:03:27 -0800989
Keith Packard05eff842008-11-19 14:03:05 -0800990 if (pipeb_stats & 0x8000ffff) {
Shaohua Li7662c8b2009-06-26 11:23:55 +0800991 if (pipeb_stats & PIPE_FIFO_UNDERRUN_STATUS)
Zhao Yakui44d98a62009-10-09 11:39:40 +0800992 DRM_DEBUG_DRIVER("pipe b underrun\n");
Eric Anholtcdfbc412008-11-04 15:50:30 -0800993 I915_WRITE(PIPEBSTAT, pipeb_stats);
Keith Packard05eff842008-11-19 14:03:05 -0800994 irq_received = 1;
Eric Anholtcdfbc412008-11-04 15:50:30 -0800995 }
Keith Packard05eff842008-11-19 14:03:05 -0800996 spin_unlock_irqrestore(&dev_priv->user_irq_lock, irqflags);
997
998 if (!irq_received)
999 break;
1000
1001 ret = IRQ_HANDLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002
Jesse Barnes5ca58282009-03-31 14:11:15 -07001003 /* Consume port. Then clear IIR or we'll miss events */
1004 if ((I915_HAS_HOTPLUG(dev)) &&
1005 (iir & I915_DISPLAY_PORT_INTERRUPT)) {
1006 u32 hotplug_status = I915_READ(PORT_HOTPLUG_STAT);
1007
Zhao Yakui44d98a62009-10-09 11:39:40 +08001008 DRM_DEBUG_DRIVER("hotplug event received, stat 0x%08x\n",
Jesse Barnes5ca58282009-03-31 14:11:15 -07001009 hotplug_status);
1010 if (hotplug_status & dev_priv->hotplug_supported_mask)
Eric Anholt9c9fe1f2009-08-03 16:09:16 -07001011 queue_work(dev_priv->wq,
1012 &dev_priv->hotplug_work);
Jesse Barnes5ca58282009-03-31 14:11:15 -07001013
1014 I915_WRITE(PORT_HOTPLUG_STAT, hotplug_status);
1015 I915_READ(PORT_HOTPLUG_STAT);
1016 }
1017
Eric Anholtcdfbc412008-11-04 15:50:30 -08001018 I915_WRITE(IIR, iir);
1019 new_iir = I915_READ(IIR); /* Flush posted writes */
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +01001020
Dave Airlie7c1c2872008-11-28 14:22:24 +10001021 if (dev->primary->master) {
1022 master_priv = dev->primary->master->driver_priv;
1023 if (master_priv->sarea_priv)
1024 master_priv->sarea_priv->last_dispatch =
1025 READ_BREADCRUMB(dev_priv);
1026 }
Keith Packard7c463582008-11-04 02:03:27 -08001027
Chris Wilson549f7362010-10-19 11:19:32 +01001028 if (iir & I915_USER_INTERRUPT)
1029 notify_ring(dev, &dev_priv->render_ring);
Zou Nan haid1b851f2010-05-21 09:08:57 +08001030 if (HAS_BSD(dev) && (iir & I915_BSD_USER_INTERRUPT))
Chris Wilson549f7362010-10-19 11:19:32 +01001031 notify_ring(dev, &dev_priv->bsd_ring);
Zou Nan haid1b851f2010-05-21 09:08:57 +08001032
Jesse Barnes1afe3e92010-03-26 10:35:20 -07001033 if (iir & I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT) {
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001034 intel_prepare_page_flip(dev, 0);
Jesse Barnes1afe3e92010-03-26 10:35:20 -07001035 if (dev_priv->flip_pending_is_done)
1036 intel_finish_page_flip_plane(dev, 0);
1037 }
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001038
Jesse Barnes1afe3e92010-03-26 10:35:20 -07001039 if (iir & I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT) {
Jesse Barnes70565d02010-07-01 04:45:43 -07001040 intel_prepare_page_flip(dev, 1);
Jesse Barnes1afe3e92010-03-26 10:35:20 -07001041 if (dev_priv->flip_pending_is_done)
1042 intel_finish_page_flip_plane(dev, 1);
Jesse Barnes1afe3e92010-03-26 10:35:20 -07001043 }
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001044
Keith Packard05eff842008-11-19 14:03:05 -08001045 if (pipea_stats & vblank_status) {
Eric Anholtcdfbc412008-11-04 15:50:30 -08001046 vblank++;
1047 drm_handle_vblank(dev, 0);
Simon Farnsworth4e5359c2010-09-01 17:47:52 +01001048 if (!dev_priv->flip_pending_is_done) {
1049 i915_pageflip_stall_check(dev, 0);
Jesse Barnes1afe3e92010-03-26 10:35:20 -07001050 intel_finish_page_flip(dev, 0);
Simon Farnsworth4e5359c2010-09-01 17:47:52 +01001051 }
Eric Anholtcdfbc412008-11-04 15:50:30 -08001052 }
Eric Anholt673a3942008-07-30 12:06:12 -07001053
Keith Packard05eff842008-11-19 14:03:05 -08001054 if (pipeb_stats & vblank_status) {
Eric Anholtcdfbc412008-11-04 15:50:30 -08001055 vblank++;
1056 drm_handle_vblank(dev, 1);
Simon Farnsworth4e5359c2010-09-01 17:47:52 +01001057 if (!dev_priv->flip_pending_is_done) {
1058 i915_pageflip_stall_check(dev, 1);
Jesse Barnes1afe3e92010-03-26 10:35:20 -07001059 intel_finish_page_flip(dev, 1);
Simon Farnsworth4e5359c2010-09-01 17:47:52 +01001060 }
Eric Anholtcdfbc412008-11-04 15:50:30 -08001061 }
Keith Packard7c463582008-11-04 02:03:27 -08001062
Jesse Barnesd874bcf2010-06-30 13:16:00 -07001063 if ((pipea_stats & PIPE_LEGACY_BLC_EVENT_STATUS) ||
1064 (pipeb_stats & PIPE_LEGACY_BLC_EVENT_STATUS) ||
Eric Anholtcdfbc412008-11-04 15:50:30 -08001065 (iir & I915_ASLE_INTERRUPT))
Chris Wilson3b617962010-08-24 09:02:58 +01001066 intel_opregion_asle_intr(dev);
Keith Packard7c463582008-11-04 02:03:27 -08001067
Eric Anholtcdfbc412008-11-04 15:50:30 -08001068 /* With MSI, interrupts are only generated when iir
1069 * transitions from zero to nonzero. If another bit got
1070 * set while we were handling the existing iir bits, then
1071 * we would never get another interrupt.
1072 *
1073 * This is fine on non-MSI as well, as if we hit this path
1074 * we avoid exiting the interrupt handler only to generate
1075 * another one.
1076 *
1077 * Note that for MSI this could cause a stray interrupt report
1078 * if an interrupt landed in the time between writing IIR and
1079 * the posting read. This should be rare enough to never
1080 * trigger the 99% of 100,000 interrupts test for disabling
1081 * stray interrupts.
1082 */
1083 iir = new_iir;
Keith Packard05eff842008-11-19 14:03:05 -08001084 }
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001085
Keith Packard05eff842008-11-19 14:03:05 -08001086 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087}
1088
Dave Airlieaf6061a2008-05-07 12:15:39 +10001089static int i915_emit_irq(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090{
1091 drm_i915_private_t *dev_priv = dev->dev_private;
Dave Airlie7c1c2872008-11-28 14:22:24 +10001092 struct drm_i915_master_private *master_priv = dev->primary->master->driver_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093
1094 i915_kernel_lost_context(dev);
1095
Zhao Yakui44d98a62009-10-09 11:39:40 +08001096 DRM_DEBUG_DRIVER("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097
Kristian Høgsbergc99b0582008-08-20 11:20:13 -04001098 dev_priv->counter++;
Alan Hourihanec29b6692006-08-12 16:29:24 +10001099 if (dev_priv->counter > 0x7FFFFFFFUL)
Kristian Høgsbergc99b0582008-08-20 11:20:13 -04001100 dev_priv->counter = 1;
Dave Airlie7c1c2872008-11-28 14:22:24 +10001101 if (master_priv->sarea_priv)
1102 master_priv->sarea_priv->last_enqueue = dev_priv->counter;
Alan Hourihanec29b6692006-08-12 16:29:24 +10001103
Keith Packard0baf8232008-11-08 11:44:14 +10001104 BEGIN_LP_RING(4);
Jesse Barnes585fb112008-07-29 11:54:06 -07001105 OUT_RING(MI_STORE_DWORD_INDEX);
Keith Packard0baf8232008-11-08 11:44:14 +10001106 OUT_RING(I915_BREADCRUMB_INDEX << MI_STORE_DWORD_INDEX_SHIFT);
Alan Hourihanec29b6692006-08-12 16:29:24 +10001107 OUT_RING(dev_priv->counter);
Jesse Barnes585fb112008-07-29 11:54:06 -07001108 OUT_RING(MI_USER_INTERRUPT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109 ADVANCE_LP_RING();
Dave Airliebc5f4522007-11-05 12:50:58 +10001110
Alan Hourihanec29b6692006-08-12 16:29:24 +10001111 return dev_priv->counter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112}
1113
Chris Wilson9d34e5d2009-09-24 05:26:06 +01001114void i915_trace_irq_get(struct drm_device *dev, u32 seqno)
1115{
1116 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001117 struct intel_ring_buffer *render_ring = &dev_priv->render_ring;
Chris Wilson9d34e5d2009-09-24 05:26:06 +01001118
1119 if (dev_priv->trace_irq_seqno == 0)
Chris Wilson78501ea2010-10-27 12:18:21 +01001120 render_ring->user_irq_get(render_ring);
Chris Wilson9d34e5d2009-09-24 05:26:06 +01001121
1122 dev_priv->trace_irq_seqno = seqno;
1123}
1124
Dave Airlie84b1fd12007-07-11 15:53:27 +10001125static int i915_wait_irq(struct drm_device * dev, int irq_nr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126{
1127 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Dave Airlie7c1c2872008-11-28 14:22:24 +10001128 struct drm_i915_master_private *master_priv = dev->primary->master->driver_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 int ret = 0;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001130 struct intel_ring_buffer *render_ring = &dev_priv->render_ring;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131
Zhao Yakui44d98a62009-10-09 11:39:40 +08001132 DRM_DEBUG_DRIVER("irq_nr=%d breadcrumb=%d\n", irq_nr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 READ_BREADCRUMB(dev_priv));
1134
Eric Anholted4cb412008-07-29 12:10:39 -07001135 if (READ_BREADCRUMB(dev_priv) >= irq_nr) {
Dave Airlie7c1c2872008-11-28 14:22:24 +10001136 if (master_priv->sarea_priv)
1137 master_priv->sarea_priv->last_dispatch = READ_BREADCRUMB(dev_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138 return 0;
Eric Anholted4cb412008-07-29 12:10:39 -07001139 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140
Dave Airlie7c1c2872008-11-28 14:22:24 +10001141 if (master_priv->sarea_priv)
1142 master_priv->sarea_priv->perf_boxes |= I915_BOX_WAIT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143
Chris Wilson78501ea2010-10-27 12:18:21 +01001144 render_ring->user_irq_get(render_ring);
Zou Nan hai852835f2010-05-21 09:08:56 +08001145 DRM_WAIT_ON(ret, dev_priv->render_ring.irq_queue, 3 * DRM_HZ,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 READ_BREADCRUMB(dev_priv) >= irq_nr);
Chris Wilson78501ea2010-10-27 12:18:21 +01001147 render_ring->user_irq_put(render_ring);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148
Eric Anholt20caafa2007-08-25 19:22:43 +10001149 if (ret == -EBUSY) {
Márton Németh3e684ea2008-01-24 15:58:57 +10001150 DRM_ERROR("EBUSY -- rec: %d emitted: %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 READ_BREADCRUMB(dev_priv), (int)dev_priv->counter);
1152 }
1153
Dave Airlieaf6061a2008-05-07 12:15:39 +10001154 return ret;
1155}
1156
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157/* Needs the lock as it touches the ring.
1158 */
Eric Anholtc153f452007-09-03 12:06:45 +10001159int i915_irq_emit(struct drm_device *dev, void *data,
1160 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholtc153f452007-09-03 12:06:45 +10001163 drm_i915_irq_emit_t *emit = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164 int result;
1165
Eric Anholtd3301d82010-05-21 13:55:54 -07001166 if (!dev_priv || !dev_priv->render_ring.virtual_start) {
Márton Németh3e684ea2008-01-24 15:58:57 +10001167 DRM_ERROR("called with no initialization\n");
Eric Anholt20caafa2007-08-25 19:22:43 +10001168 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169 }
Eric Anholt299eb932009-02-24 22:14:12 -08001170
1171 RING_LOCK_TEST_WITH_RETURN(dev, file_priv);
1172
Eric Anholt546b0972008-09-01 16:45:29 -07001173 mutex_lock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 result = i915_emit_irq(dev);
Eric Anholt546b0972008-09-01 16:45:29 -07001175 mutex_unlock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176
Eric Anholtc153f452007-09-03 12:06:45 +10001177 if (DRM_COPY_TO_USER(emit->irq_seq, &result, sizeof(int))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178 DRM_ERROR("copy_to_user\n");
Eric Anholt20caafa2007-08-25 19:22:43 +10001179 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 }
1181
1182 return 0;
1183}
1184
1185/* Doesn't need the hardware lock.
1186 */
Eric Anholtc153f452007-09-03 12:06:45 +10001187int i915_irq_wait(struct drm_device *dev, void *data,
1188 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholtc153f452007-09-03 12:06:45 +10001191 drm_i915_irq_wait_t *irqwait = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192
1193 if (!dev_priv) {
Márton Németh3e684ea2008-01-24 15:58:57 +10001194 DRM_ERROR("called with no initialization\n");
Eric Anholt20caafa2007-08-25 19:22:43 +10001195 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196 }
1197
Eric Anholtc153f452007-09-03 12:06:45 +10001198 return i915_wait_irq(dev, irqwait->irq_seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199}
1200
Keith Packard42f52ef2008-10-18 19:39:29 -07001201/* Called from drm generic code, passed 'crtc' which
1202 * we use as a pipe index
1203 */
1204int i915_enable_vblank(struct drm_device *dev, int pipe)
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001205{
1206 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Keith Packarde9d21d72008-10-16 11:31:38 -07001207 unsigned long irqflags;
Jesse Barnes71e0ffa2009-01-08 10:42:15 -08001208
Chris Wilson5eddb702010-09-11 13:48:45 +01001209 if (!i915_pipe_enabled(dev, pipe))
Jesse Barnes71e0ffa2009-01-08 10:42:15 -08001210 return -EINVAL;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001211
Keith Packarde9d21d72008-10-16 11:31:38 -07001212 spin_lock_irqsave(&dev_priv->user_irq_lock, irqflags);
Eric Anholtbad720f2009-10-22 16:11:14 -07001213 if (HAS_PCH_SPLIT(dev))
Li Pengc062df62010-01-23 00:12:58 +08001214 ironlake_enable_display_irq(dev_priv, (pipe == 0) ?
1215 DE_PIPEA_VBLANK: DE_PIPEB_VBLANK);
Chris Wilsona6c45cf2010-09-17 00:32:17 +01001216 else if (INTEL_INFO(dev)->gen >= 4)
Keith Packard7c463582008-11-04 02:03:27 -08001217 i915_enable_pipestat(dev_priv, pipe,
1218 PIPE_START_VBLANK_INTERRUPT_ENABLE);
Keith Packarde9d21d72008-10-16 11:31:38 -07001219 else
Keith Packard7c463582008-11-04 02:03:27 -08001220 i915_enable_pipestat(dev_priv, pipe,
1221 PIPE_VBLANK_INTERRUPT_ENABLE);
Keith Packarde9d21d72008-10-16 11:31:38 -07001222 spin_unlock_irqrestore(&dev_priv->user_irq_lock, irqflags);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001223 return 0;
1224}
1225
Keith Packard42f52ef2008-10-18 19:39:29 -07001226/* Called from drm generic code, passed 'crtc' which
1227 * we use as a pipe index
1228 */
1229void i915_disable_vblank(struct drm_device *dev, int pipe)
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001230{
1231 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Keith Packarde9d21d72008-10-16 11:31:38 -07001232 unsigned long irqflags;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001233
Keith Packarde9d21d72008-10-16 11:31:38 -07001234 spin_lock_irqsave(&dev_priv->user_irq_lock, irqflags);
Eric Anholtbad720f2009-10-22 16:11:14 -07001235 if (HAS_PCH_SPLIT(dev))
Li Pengc062df62010-01-23 00:12:58 +08001236 ironlake_disable_display_irq(dev_priv, (pipe == 0) ?
1237 DE_PIPEA_VBLANK: DE_PIPEB_VBLANK);
1238 else
1239 i915_disable_pipestat(dev_priv, pipe,
1240 PIPE_VBLANK_INTERRUPT_ENABLE |
1241 PIPE_START_VBLANK_INTERRUPT_ENABLE);
Keith Packarde9d21d72008-10-16 11:31:38 -07001242 spin_unlock_irqrestore(&dev_priv->user_irq_lock, irqflags);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001243}
1244
Jesse Barnes79e53942008-11-07 14:24:08 -08001245void i915_enable_interrupt (struct drm_device *dev)
1246{
1247 struct drm_i915_private *dev_priv = dev->dev_private;
Zhenyu Wange170b032009-06-05 15:38:40 +08001248
Eric Anholtbad720f2009-10-22 16:11:14 -07001249 if (!HAS_PCH_SPLIT(dev))
Chris Wilson3b617962010-08-24 09:02:58 +01001250 intel_opregion_enable_asle(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08001251 dev_priv->irq_enabled = 1;
1252}
1253
1254
Dave Airlie702880f2006-06-24 17:07:34 +10001255/* Set the vblank monitor pipe
1256 */
Eric Anholtc153f452007-09-03 12:06:45 +10001257int i915_vblank_pipe_set(struct drm_device *dev, void *data,
1258 struct drm_file *file_priv)
Dave Airlie702880f2006-06-24 17:07:34 +10001259{
Dave Airlie702880f2006-06-24 17:07:34 +10001260 drm_i915_private_t *dev_priv = dev->dev_private;
Dave Airlie702880f2006-06-24 17:07:34 +10001261
1262 if (!dev_priv) {
Márton Németh3e684ea2008-01-24 15:58:57 +10001263 DRM_ERROR("called with no initialization\n");
Eric Anholt20caafa2007-08-25 19:22:43 +10001264 return -EINVAL;
Dave Airlie702880f2006-06-24 17:07:34 +10001265 }
1266
=?utf-8?q?Michel_D=C3=A4nzer?=5b516942006-10-25 00:08:23 +10001267 return 0;
Dave Airlie702880f2006-06-24 17:07:34 +10001268}
1269
Eric Anholtc153f452007-09-03 12:06:45 +10001270int i915_vblank_pipe_get(struct drm_device *dev, void *data,
1271 struct drm_file *file_priv)
Dave Airlie702880f2006-06-24 17:07:34 +10001272{
Dave Airlie702880f2006-06-24 17:07:34 +10001273 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholtc153f452007-09-03 12:06:45 +10001274 drm_i915_vblank_pipe_t *pipe = data;
Dave Airlie702880f2006-06-24 17:07:34 +10001275
1276 if (!dev_priv) {
Márton Németh3e684ea2008-01-24 15:58:57 +10001277 DRM_ERROR("called with no initialization\n");
Eric Anholt20caafa2007-08-25 19:22:43 +10001278 return -EINVAL;
Dave Airlie702880f2006-06-24 17:07:34 +10001279 }
1280
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001281 pipe->pipe = DRM_I915_VBLANK_PIPE_A | DRM_I915_VBLANK_PIPE_B;
Eric Anholtc153f452007-09-03 12:06:45 +10001282
Dave Airlie702880f2006-06-24 17:07:34 +10001283 return 0;
1284}
1285
=?utf-8?q?Michel_D=C3=A4nzer?=a6b54f32006-10-24 23:37:43 +10001286/**
1287 * Schedule buffer swap at given vertical blank.
1288 */
Eric Anholtc153f452007-09-03 12:06:45 +10001289int i915_vblank_swap(struct drm_device *dev, void *data,
1290 struct drm_file *file_priv)
=?utf-8?q?Michel_D=C3=A4nzer?=a6b54f32006-10-24 23:37:43 +10001291{
Eric Anholtbd95e0a2008-11-04 12:01:24 -08001292 /* The delayed swap mechanism was fundamentally racy, and has been
1293 * removed. The model was that the client requested a delayed flip/swap
1294 * from the kernel, then waited for vblank before continuing to perform
1295 * rendering. The problem was that the kernel might wake the client
1296 * up before it dispatched the vblank swap (since the lock has to be
1297 * held while touching the ringbuffer), in which case the client would
1298 * clear and start the next frame before the swap occurred, and
1299 * flicker would occur in addition to likely missing the vblank.
1300 *
1301 * In the absence of this ioctl, userland falls back to a correct path
1302 * of waiting for a vblank, then dispatching the swap on its own.
1303 * Context switching to userland and back is plenty fast enough for
1304 * meeting the requirements of vblank swapping.
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001305 */
Eric Anholtbd95e0a2008-11-04 12:01:24 -08001306 return -EINVAL;
=?utf-8?q?Michel_D=C3=A4nzer?=a6b54f32006-10-24 23:37:43 +10001307}
1308
Chris Wilson995b6762010-08-20 13:23:26 +01001309static struct drm_i915_gem_request *
Zou Nan hai852835f2010-05-21 09:08:56 +08001310i915_get_tail_request(struct drm_device *dev)
1311{
Ben Gamarif65d9422009-09-14 17:48:44 -04001312 drm_i915_private_t *dev_priv = dev->dev_private;
Zou Nan hai852835f2010-05-21 09:08:56 +08001313 return list_entry(dev_priv->render_ring.request_list.prev,
1314 struct drm_i915_gem_request, list);
Ben Gamarif65d9422009-09-14 17:48:44 -04001315}
1316
1317/**
1318 * This is called when the chip hasn't reported back with completed
1319 * batchbuffers in a long time. The first time this is called we simply record
1320 * ACTHD. If ACTHD hasn't changed by the time the hangcheck timer elapses
1321 * again, we assume the chip is wedged and try to fix it.
1322 */
1323void i915_hangcheck_elapsed(unsigned long data)
1324{
1325 struct drm_device *dev = (struct drm_device *)data;
1326 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsoncbb465e2010-06-06 12:16:24 +01001327 uint32_t acthd, instdone, instdone1;
Eric Anholtb9201c12010-01-08 14:25:16 -08001328
Chris Wilsona6c45cf2010-09-17 00:32:17 +01001329 if (INTEL_INFO(dev)->gen < 4) {
Ben Gamarif65d9422009-09-14 17:48:44 -04001330 acthd = I915_READ(ACTHD);
Chris Wilsoncbb465e2010-06-06 12:16:24 +01001331 instdone = I915_READ(INSTDONE);
1332 instdone1 = 0;
1333 } else {
Ben Gamarif65d9422009-09-14 17:48:44 -04001334 acthd = I915_READ(ACTHD_I965);
Chris Wilsoncbb465e2010-06-06 12:16:24 +01001335 instdone = I915_READ(INSTDONE_I965);
1336 instdone1 = I915_READ(INSTDONE1);
1337 }
Ben Gamarif65d9422009-09-14 17:48:44 -04001338
1339 /* If all work is done then ACTHD clearly hasn't advanced. */
Zou Nan hai852835f2010-05-21 09:08:56 +08001340 if (list_empty(&dev_priv->render_ring.request_list) ||
Chris Wilson78501ea2010-10-27 12:18:21 +01001341 i915_seqno_passed(dev_priv->render_ring.get_seqno(&dev_priv->render_ring),
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001342 i915_get_tail_request(dev)->seqno)) {
Chris Wilson7839d952010-09-09 00:02:03 +01001343 bool missed_wakeup = false;
1344
Ben Gamarif65d9422009-09-14 17:48:44 -04001345 dev_priv->hangcheck_count = 0;
Chris Wilsone78d73b2010-08-07 14:18:47 +01001346
1347 /* Issue a wake-up to catch stuck h/w. */
Chris Wilson7839d952010-09-09 00:02:03 +01001348 if (dev_priv->render_ring.waiting_gem_seqno &&
1349 waitqueue_active(&dev_priv->render_ring.irq_queue)) {
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001350 wake_up_all(&dev_priv->render_ring.irq_queue);
Chris Wilson7839d952010-09-09 00:02:03 +01001351 missed_wakeup = true;
Chris Wilsone78d73b2010-08-07 14:18:47 +01001352 }
Chris Wilson7839d952010-09-09 00:02:03 +01001353
1354 if (dev_priv->bsd_ring.waiting_gem_seqno &&
1355 waitqueue_active(&dev_priv->bsd_ring.irq_queue)) {
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001356 wake_up_all(&dev_priv->bsd_ring.irq_queue);
Chris Wilson7839d952010-09-09 00:02:03 +01001357 missed_wakeup = true;
1358 }
1359
Chris Wilson549f7362010-10-19 11:19:32 +01001360 if (dev_priv->blt_ring.waiting_gem_seqno &&
1361 waitqueue_active(&dev_priv->blt_ring.irq_queue)) {
1362 wake_up_all(&dev_priv->blt_ring.irq_queue);
Chris Wilson7839d952010-09-09 00:02:03 +01001363 missed_wakeup = true;
1364 }
1365
1366 if (missed_wakeup)
1367 DRM_ERROR("Hangcheck timer elapsed... GPU idle, missed IRQ.\n");
Ben Gamarif65d9422009-09-14 17:48:44 -04001368 return;
1369 }
1370
Chris Wilsoncbb465e2010-06-06 12:16:24 +01001371 if (dev_priv->last_acthd == acthd &&
1372 dev_priv->last_instdone == instdone &&
1373 dev_priv->last_instdone1 == instdone1) {
1374 if (dev_priv->hangcheck_count++ > 1) {
1375 DRM_ERROR("Hangcheck timer elapsed... GPU hung\n");
Chris Wilson8c80b592010-08-08 20:38:12 +01001376
1377 if (!IS_GEN2(dev)) {
1378 /* Is the chip hanging on a WAIT_FOR_EVENT?
1379 * If so we can simply poke the RB_WAIT bit
1380 * and break the hang. This should work on
1381 * all but the second generation chipsets.
1382 */
1383 u32 tmp = I915_READ(PRB0_CTL);
1384 if (tmp & RING_WAIT) {
1385 I915_WRITE(PRB0_CTL, tmp);
1386 POSTING_READ(PRB0_CTL);
1387 goto out;
1388 }
1389 }
1390
Chris Wilsoncbb465e2010-06-06 12:16:24 +01001391 i915_handle_error(dev, true);
1392 return;
1393 }
1394 } else {
1395 dev_priv->hangcheck_count = 0;
1396
1397 dev_priv->last_acthd = acthd;
1398 dev_priv->last_instdone = instdone;
1399 dev_priv->last_instdone1 = instdone1;
1400 }
Ben Gamarif65d9422009-09-14 17:48:44 -04001401
Chris Wilson8c80b592010-08-08 20:38:12 +01001402out:
Ben Gamarif65d9422009-09-14 17:48:44 -04001403 /* Reset timer case chip hangs without another request being added */
Chris Wilsonb3b079d2010-09-13 23:44:34 +01001404 mod_timer(&dev_priv->hangcheck_timer,
1405 jiffies + msecs_to_jiffies(DRM_I915_HANGCHECK_PERIOD));
Ben Gamarif65d9422009-09-14 17:48:44 -04001406}
1407
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408/* drm_dma.h hooks
1409*/
Adam Jacksonf2b115e2009-12-03 17:14:42 -05001410static void ironlake_irq_preinstall(struct drm_device *dev)
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001411{
1412 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
1413
1414 I915_WRITE(HWSTAM, 0xeffe);
1415
1416 /* XXX hotplug from PCH */
1417
1418 I915_WRITE(DEIMR, 0xffffffff);
1419 I915_WRITE(DEIER, 0x0);
1420 (void) I915_READ(DEIER);
1421
1422 /* and GT */
1423 I915_WRITE(GTIMR, 0xffffffff);
1424 I915_WRITE(GTIER, 0x0);
1425 (void) I915_READ(GTIER);
Zhenyu Wangc6501562009-11-03 18:57:21 +00001426
1427 /* south display irq */
1428 I915_WRITE(SDEIMR, 0xffffffff);
1429 I915_WRITE(SDEIER, 0x0);
1430 (void) I915_READ(SDEIER);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001431}
1432
Adam Jacksonf2b115e2009-12-03 17:14:42 -05001433static int ironlake_irq_postinstall(struct drm_device *dev)
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001434{
1435 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
1436 /* enable kind of interrupts always enabled */
Jesse Barnes013d5aa2010-01-29 11:18:31 -08001437 u32 display_mask = DE_MASTER_IRQ_CONTROL | DE_GSE | DE_PCH_EVENT |
1438 DE_PLANEA_FLIP_DONE | DE_PLANEB_FLIP_DONE;
Zou Nan haid1b851f2010-05-21 09:08:57 +08001439 u32 render_mask = GT_PIPE_NOTIFY | GT_BSD_USER_INTERRUPT;
Yuanhan Liu2d7b8362010-10-08 10:21:06 +01001440 u32 hotplug_mask;
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001441
1442 dev_priv->irq_mask_reg = ~display_mask;
Li Peng643ced92010-01-28 01:05:09 +08001443 dev_priv->de_irq_enable_reg = display_mask | DE_PIPEA_VBLANK | DE_PIPEB_VBLANK;
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001444
1445 /* should always can generate irq */
1446 I915_WRITE(DEIIR, I915_READ(DEIIR));
1447 I915_WRITE(DEIMR, dev_priv->irq_mask_reg);
1448 I915_WRITE(DEIER, dev_priv->de_irq_enable_reg);
1449 (void) I915_READ(DEIER);
1450
Chris Wilson549f7362010-10-19 11:19:32 +01001451 if (IS_GEN6(dev)) {
1452 render_mask =
1453 GT_PIPE_NOTIFY |
1454 GT_GEN6_BSD_USER_INTERRUPT |
1455 GT_BLT_USER_INTERRUPT;
1456 }
Zhenyu Wang3fdef022010-08-19 09:46:15 +08001457
Zou Nan hai852835f2010-05-21 09:08:56 +08001458 dev_priv->gt_irq_mask_reg = ~render_mask;
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001459 dev_priv->gt_irq_enable_reg = render_mask;
1460
1461 I915_WRITE(GTIIR, I915_READ(GTIIR));
1462 I915_WRITE(GTIMR, dev_priv->gt_irq_mask_reg);
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001463 if (IS_GEN6(dev)) {
Zhenyu Wang3fdef022010-08-19 09:46:15 +08001464 I915_WRITE(GEN6_RENDER_IMR, ~GEN6_RENDER_PIPE_CONTROL_NOTIFY_INTERRUPT);
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001465 I915_WRITE(GEN6_BSD_IMR, ~GEN6_BSD_IMR_USER_INTERRUPT);
Chris Wilson549f7362010-10-19 11:19:32 +01001466 I915_WRITE(GEN6_BLITTER_IMR, ~GEN6_BLITTER_USER_INTERRUPT);
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001467 }
1468
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001469 I915_WRITE(GTIER, dev_priv->gt_irq_enable_reg);
1470 (void) I915_READ(GTIER);
1471
Yuanhan Liu2d7b8362010-10-08 10:21:06 +01001472 if (HAS_PCH_CPT(dev)) {
1473 hotplug_mask = SDE_CRT_HOTPLUG_CPT | SDE_PORTB_HOTPLUG_CPT |
1474 SDE_PORTC_HOTPLUG_CPT | SDE_PORTD_HOTPLUG_CPT ;
1475 } else {
1476 hotplug_mask = SDE_CRT_HOTPLUG | SDE_PORTB_HOTPLUG |
1477 SDE_PORTC_HOTPLUG | SDE_PORTD_HOTPLUG;
1478 }
1479
Zhenyu Wangc6501562009-11-03 18:57:21 +00001480 dev_priv->pch_irq_mask_reg = ~hotplug_mask;
1481 dev_priv->pch_irq_enable_reg = hotplug_mask;
1482
1483 I915_WRITE(SDEIIR, I915_READ(SDEIIR));
1484 I915_WRITE(SDEIMR, dev_priv->pch_irq_mask_reg);
1485 I915_WRITE(SDEIER, dev_priv->pch_irq_enable_reg);
1486 (void) I915_READ(SDEIER);
1487
Jesse Barnesf97108d2010-01-29 11:27:07 -08001488 if (IS_IRONLAKE_M(dev)) {
1489 /* Clear & enable PCU event interrupts */
1490 I915_WRITE(DEIIR, DE_PCU_EVENT);
1491 I915_WRITE(DEIER, I915_READ(DEIER) | DE_PCU_EVENT);
1492 ironlake_enable_display_irq(dev_priv, DE_PCU_EVENT);
1493 }
1494
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001495 return 0;
1496}
1497
Dave Airlie84b1fd12007-07-11 15:53:27 +10001498void i915_driver_irq_preinstall(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499{
1500 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
1501
Jesse Barnes79e53942008-11-07 14:24:08 -08001502 atomic_set(&dev_priv->irq_received, 0);
1503
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001504 INIT_WORK(&dev_priv->hotplug_work, i915_hotplug_work_func);
Jesse Barnes8a905232009-07-11 16:48:03 -04001505 INIT_WORK(&dev_priv->error_work, i915_error_work_func);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001506
Eric Anholtbad720f2009-10-22 16:11:14 -07001507 if (HAS_PCH_SPLIT(dev)) {
Adam Jacksonf2b115e2009-12-03 17:14:42 -05001508 ironlake_irq_preinstall(dev);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001509 return;
1510 }
1511
Jesse Barnes5ca58282009-03-31 14:11:15 -07001512 if (I915_HAS_HOTPLUG(dev)) {
1513 I915_WRITE(PORT_HOTPLUG_EN, 0);
1514 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
1515 }
1516
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001517 I915_WRITE(HWSTAM, 0xeffe);
Keith Packard7c463582008-11-04 02:03:27 -08001518 I915_WRITE(PIPEASTAT, 0);
1519 I915_WRITE(PIPEBSTAT, 0);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001520 I915_WRITE(IMR, 0xffffffff);
Eric Anholted4cb412008-07-29 12:10:39 -07001521 I915_WRITE(IER, 0x0);
Keith Packard7c463582008-11-04 02:03:27 -08001522 (void) I915_READ(IER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523}
1524
Jesse Barnesb01f2c32009-12-11 11:07:17 -08001525/*
1526 * Must be called after intel_modeset_init or hotplug interrupts won't be
1527 * enabled correctly.
1528 */
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001529int i915_driver_irq_postinstall(struct drm_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530{
1531 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Jesse Barnes5ca58282009-03-31 14:11:15 -07001532 u32 enable_mask = I915_INTERRUPT_ENABLE_FIX | I915_INTERRUPT_ENABLE_VAR;
Jesse Barnes63eeaf32009-06-18 16:56:52 -07001533 u32 error_mask;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001534
Zou Nan hai852835f2010-05-21 09:08:56 +08001535 DRM_INIT_WAITQUEUE(&dev_priv->render_ring.irq_queue);
Zou Nan haid1b851f2010-05-21 09:08:57 +08001536 if (HAS_BSD(dev))
1537 DRM_INIT_WAITQUEUE(&dev_priv->bsd_ring.irq_queue);
Chris Wilson549f7362010-10-19 11:19:32 +01001538 if (HAS_BLT(dev))
1539 DRM_INIT_WAITQUEUE(&dev_priv->blt_ring.irq_queue);
Zou Nan haid1b851f2010-05-21 09:08:57 +08001540
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001541 dev_priv->vblank_pipe = DRM_I915_VBLANK_PIPE_A | DRM_I915_VBLANK_PIPE_B;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001542
Eric Anholtbad720f2009-10-22 16:11:14 -07001543 if (HAS_PCH_SPLIT(dev))
Adam Jacksonf2b115e2009-12-03 17:14:42 -05001544 return ironlake_irq_postinstall(dev);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001545
Keith Packard7c463582008-11-04 02:03:27 -08001546 /* Unmask the interrupts that we always want on. */
1547 dev_priv->irq_mask_reg = ~I915_INTERRUPT_ENABLE_FIX;
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +01001548
Keith Packard7c463582008-11-04 02:03:27 -08001549 dev_priv->pipestat[0] = 0;
1550 dev_priv->pipestat[1] = 0;
1551
Jesse Barnes5ca58282009-03-31 14:11:15 -07001552 if (I915_HAS_HOTPLUG(dev)) {
Adam Jacksonc496fa12010-05-27 17:26:45 -04001553 /* Enable in IER... */
1554 enable_mask |= I915_DISPLAY_PORT_INTERRUPT;
1555 /* and unmask in IMR */
1556 dev_priv->irq_mask_reg &= ~I915_DISPLAY_PORT_INTERRUPT;
1557 }
1558
1559 /*
1560 * Enable some error detection, note the instruction error mask
1561 * bit is reserved, so we leave it masked.
1562 */
1563 if (IS_G4X(dev)) {
1564 error_mask = ~(GM45_ERROR_PAGE_TABLE |
1565 GM45_ERROR_MEM_PRIV |
1566 GM45_ERROR_CP_PRIV |
1567 I915_ERROR_MEMORY_REFRESH);
1568 } else {
1569 error_mask = ~(I915_ERROR_PAGE_TABLE |
1570 I915_ERROR_MEMORY_REFRESH);
1571 }
1572 I915_WRITE(EMR, error_mask);
1573
1574 I915_WRITE(IMR, dev_priv->irq_mask_reg);
1575 I915_WRITE(IER, enable_mask);
1576 (void) I915_READ(IER);
1577
1578 if (I915_HAS_HOTPLUG(dev)) {
Jesse Barnes5ca58282009-03-31 14:11:15 -07001579 u32 hotplug_en = I915_READ(PORT_HOTPLUG_EN);
1580
Jesse Barnesb01f2c32009-12-11 11:07:17 -08001581 /* Note HDMI and DP share bits */
1582 if (dev_priv->hotplug_supported_mask & HDMIB_HOTPLUG_INT_STATUS)
1583 hotplug_en |= HDMIB_HOTPLUG_INT_EN;
1584 if (dev_priv->hotplug_supported_mask & HDMIC_HOTPLUG_INT_STATUS)
1585 hotplug_en |= HDMIC_HOTPLUG_INT_EN;
1586 if (dev_priv->hotplug_supported_mask & HDMID_HOTPLUG_INT_STATUS)
1587 hotplug_en |= HDMID_HOTPLUG_INT_EN;
1588 if (dev_priv->hotplug_supported_mask & SDVOC_HOTPLUG_INT_STATUS)
1589 hotplug_en |= SDVOC_HOTPLUG_INT_EN;
1590 if (dev_priv->hotplug_supported_mask & SDVOB_HOTPLUG_INT_STATUS)
1591 hotplug_en |= SDVOB_HOTPLUG_INT_EN;
Andy Lutomirski2d1c9752010-06-12 05:21:18 -04001592 if (dev_priv->hotplug_supported_mask & CRT_HOTPLUG_INT_STATUS) {
Jesse Barnesb01f2c32009-12-11 11:07:17 -08001593 hotplug_en |= CRT_HOTPLUG_INT_EN;
Andy Lutomirski2d1c9752010-06-12 05:21:18 -04001594
1595 /* Programming the CRT detection parameters tends
1596 to generate a spurious hotplug event about three
1597 seconds later. So just do it once.
1598 */
1599 if (IS_G4X(dev))
1600 hotplug_en |= CRT_HOTPLUG_ACTIVATION_PERIOD_64;
1601 hotplug_en |= CRT_HOTPLUG_VOLTAGE_COMPARE_50;
1602 }
1603
Jesse Barnesb01f2c32009-12-11 11:07:17 -08001604 /* Ignore TV since it's buggy */
1605
Jesse Barnes5ca58282009-03-31 14:11:15 -07001606 I915_WRITE(PORT_HOTPLUG_EN, hotplug_en);
Jesse Barnes5ca58282009-03-31 14:11:15 -07001607 }
1608
Chris Wilson3b617962010-08-24 09:02:58 +01001609 intel_opregion_enable_asle(dev);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001610
1611 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612}
1613
Adam Jacksonf2b115e2009-12-03 17:14:42 -05001614static void ironlake_irq_uninstall(struct drm_device *dev)
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001615{
1616 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
1617 I915_WRITE(HWSTAM, 0xffffffff);
1618
1619 I915_WRITE(DEIMR, 0xffffffff);
1620 I915_WRITE(DEIER, 0x0);
1621 I915_WRITE(DEIIR, I915_READ(DEIIR));
1622
1623 I915_WRITE(GTIMR, 0xffffffff);
1624 I915_WRITE(GTIER, 0x0);
1625 I915_WRITE(GTIIR, I915_READ(GTIIR));
1626}
1627
Dave Airlie84b1fd12007-07-11 15:53:27 +10001628void i915_driver_irq_uninstall(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629{
1630 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Dave Airlie91e37382006-02-18 15:17:04 +11001631
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632 if (!dev_priv)
1633 return;
1634
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001635 dev_priv->vblank_pipe = 0;
1636
Eric Anholtbad720f2009-10-22 16:11:14 -07001637 if (HAS_PCH_SPLIT(dev)) {
Adam Jacksonf2b115e2009-12-03 17:14:42 -05001638 ironlake_irq_uninstall(dev);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001639 return;
1640 }
1641
Jesse Barnes5ca58282009-03-31 14:11:15 -07001642 if (I915_HAS_HOTPLUG(dev)) {
1643 I915_WRITE(PORT_HOTPLUG_EN, 0);
1644 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
1645 }
1646
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001647 I915_WRITE(HWSTAM, 0xffffffff);
Keith Packard7c463582008-11-04 02:03:27 -08001648 I915_WRITE(PIPEASTAT, 0);
1649 I915_WRITE(PIPEBSTAT, 0);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001650 I915_WRITE(IMR, 0xffffffff);
Eric Anholted4cb412008-07-29 12:10:39 -07001651 I915_WRITE(IER, 0x0);
Dave Airlie91e37382006-02-18 15:17:04 +11001652
Keith Packard7c463582008-11-04 02:03:27 -08001653 I915_WRITE(PIPEASTAT, I915_READ(PIPEASTAT) & 0x8000ffff);
1654 I915_WRITE(PIPEBSTAT, I915_READ(PIPEBSTAT) & 0x8000ffff);
1655 I915_WRITE(IIR, I915_READ(IIR));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656}