blob: aaa0f1b9d6e1f8fec6be2ddf2a71faa6a47a3f2f [file] [log] [blame]
Dave Airlie0d6aa602006-01-02 20:14:23 +11001/* i915_irq.c -- IRQ support for the I915 -*- linux-c -*-
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 */
Dave Airlie0d6aa602006-01-02 20:14:23 +11003/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 * Copyright 2003 Tungsten Graphics, Inc., Cedar Park, Texas.
5 * All Rights Reserved.
Dave Airliebc54fd12005-06-23 22:46:46 +10006 *
7 * Permission is hereby granted, free of charge, to any person obtaining a
8 * copy of this software and associated documentation files (the
9 * "Software"), to deal in the Software without restriction, including
10 * without limitation the rights to use, copy, modify, merge, publish,
11 * distribute, sub license, and/or sell copies of the Software, and to
12 * permit persons to whom the Software is furnished to do so, subject to
13 * the following conditions:
14 *
15 * The above copyright notice and this permission notice (including the
16 * next paragraph) shall be included in all copies or substantial portions
17 * of the Software.
18 *
19 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
20 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
21 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
22 * IN NO EVENT SHALL TUNGSTEN GRAPHICS AND/OR ITS SUPPLIERS BE LIABLE FOR
23 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
24 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
25 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
26 *
Dave Airlie0d6aa602006-01-02 20:14:23 +110027 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070028
Jesse Barnes63eeaf32009-06-18 16:56:52 -070029#include <linux/sysrq.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090030#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include "drmP.h"
32#include "drm.h"
33#include "i915_drm.h"
34#include "i915_drv.h"
Chris Wilson1c5d22f2009-08-25 11:15:50 +010035#include "i915_trace.h"
Jesse Barnes79e53942008-11-07 14:24:08 -080036#include "intel_drv.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#define MAX_NOPID ((u32)~0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
Keith Packard7c463582008-11-04 02:03:27 -080040/**
41 * Interrupts that are always left unmasked.
42 *
43 * Since pipe events are edge-triggered from the PIPESTAT register to IIR,
44 * we leave them always unmasked in IMR and then control enabling them through
45 * PIPESTAT alone.
46 */
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050047#define I915_INTERRUPT_ENABLE_FIX \
48 (I915_ASLE_INTERRUPT | \
49 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT | \
50 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT | \
51 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT | \
52 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT | \
53 I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT)
Keith Packard7c463582008-11-04 02:03:27 -080054
55/** Interrupts that we mask and unmask at runtime. */
Zou Nan haid1b851f2010-05-21 09:08:57 +080056#define I915_INTERRUPT_ENABLE_VAR (I915_USER_INTERRUPT | I915_BSD_USER_INTERRUPT)
Keith Packard7c463582008-11-04 02:03:27 -080057
Jesse Barnes79e53942008-11-07 14:24:08 -080058#define I915_PIPE_VBLANK_STATUS (PIPE_START_VBLANK_INTERRUPT_STATUS |\
59 PIPE_VBLANK_INTERRUPT_STATUS)
60
61#define I915_PIPE_VBLANK_ENABLE (PIPE_START_VBLANK_INTERRUPT_ENABLE |\
62 PIPE_VBLANK_INTERRUPT_ENABLE)
63
64#define DRM_I915_VBLANK_PIPE_ALL (DRM_I915_VBLANK_PIPE_A | \
65 DRM_I915_VBLANK_PIPE_B)
66
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +010067void
Adam Jacksonf2b115e2009-12-03 17:14:42 -050068ironlake_enable_graphics_irq(drm_i915_private_t *dev_priv, u32 mask)
Zhenyu Wang036a4a72009-06-08 14:40:19 +080069{
70 if ((dev_priv->gt_irq_mask_reg & mask) != 0) {
71 dev_priv->gt_irq_mask_reg &= ~mask;
72 I915_WRITE(GTIMR, dev_priv->gt_irq_mask_reg);
73 (void) I915_READ(GTIMR);
74 }
75}
76
Eric Anholt62fdfea2010-05-21 13:26:39 -070077void
Adam Jacksonf2b115e2009-12-03 17:14:42 -050078ironlake_disable_graphics_irq(drm_i915_private_t *dev_priv, u32 mask)
Zhenyu Wang036a4a72009-06-08 14:40:19 +080079{
80 if ((dev_priv->gt_irq_mask_reg & mask) != mask) {
81 dev_priv->gt_irq_mask_reg |= mask;
82 I915_WRITE(GTIMR, dev_priv->gt_irq_mask_reg);
83 (void) I915_READ(GTIMR);
84 }
85}
86
87/* For display hotplug interrupt */
Chris Wilson995b6762010-08-20 13:23:26 +010088static void
Adam Jacksonf2b115e2009-12-03 17:14:42 -050089ironlake_enable_display_irq(drm_i915_private_t *dev_priv, u32 mask)
Zhenyu Wang036a4a72009-06-08 14:40:19 +080090{
91 if ((dev_priv->irq_mask_reg & mask) != 0) {
92 dev_priv->irq_mask_reg &= ~mask;
93 I915_WRITE(DEIMR, dev_priv->irq_mask_reg);
94 (void) I915_READ(DEIMR);
95 }
96}
97
98static inline void
Adam Jacksonf2b115e2009-12-03 17:14:42 -050099ironlake_disable_display_irq(drm_i915_private_t *dev_priv, u32 mask)
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800100{
101 if ((dev_priv->irq_mask_reg & mask) != mask) {
102 dev_priv->irq_mask_reg |= mask;
103 I915_WRITE(DEIMR, dev_priv->irq_mask_reg);
104 (void) I915_READ(DEIMR);
105 }
106}
107
108void
Eric Anholted4cb412008-07-29 12:10:39 -0700109i915_enable_irq(drm_i915_private_t *dev_priv, u32 mask)
110{
111 if ((dev_priv->irq_mask_reg & mask) != 0) {
112 dev_priv->irq_mask_reg &= ~mask;
113 I915_WRITE(IMR, dev_priv->irq_mask_reg);
114 (void) I915_READ(IMR);
115 }
116}
117
Eric Anholt62fdfea2010-05-21 13:26:39 -0700118void
Eric Anholted4cb412008-07-29 12:10:39 -0700119i915_disable_irq(drm_i915_private_t *dev_priv, u32 mask)
120{
121 if ((dev_priv->irq_mask_reg & mask) != mask) {
122 dev_priv->irq_mask_reg |= mask;
123 I915_WRITE(IMR, dev_priv->irq_mask_reg);
124 (void) I915_READ(IMR);
125 }
126}
127
Keith Packard7c463582008-11-04 02:03:27 -0800128static inline u32
129i915_pipestat(int pipe)
130{
131 if (pipe == 0)
132 return PIPEASTAT;
133 if (pipe == 1)
134 return PIPEBSTAT;
Andrew Morton9c84ba42008-12-01 13:14:08 -0800135 BUG();
Keith Packard7c463582008-11-04 02:03:27 -0800136}
137
138void
139i915_enable_pipestat(drm_i915_private_t *dev_priv, int pipe, u32 mask)
140{
141 if ((dev_priv->pipestat[pipe] & mask) != mask) {
142 u32 reg = i915_pipestat(pipe);
143
144 dev_priv->pipestat[pipe] |= mask;
145 /* Enable the interrupt, clear any pending status */
146 I915_WRITE(reg, dev_priv->pipestat[pipe] | (mask >> 16));
147 (void) I915_READ(reg);
148 }
149}
150
151void
152i915_disable_pipestat(drm_i915_private_t *dev_priv, int pipe, u32 mask)
153{
154 if ((dev_priv->pipestat[pipe] & mask) != 0) {
155 u32 reg = i915_pipestat(pipe);
156
157 dev_priv->pipestat[pipe] &= ~mask;
158 I915_WRITE(reg, dev_priv->pipestat[pipe]);
159 (void) I915_READ(reg);
160 }
161}
162
=?utf-8?q?Michel_D=C3=A4nzer?=a6b54f32006-10-24 23:37:43 +1000163/**
Zhao Yakui01c66882009-10-28 05:10:00 +0000164 * intel_enable_asle - enable ASLE interrupt for OpRegion
165 */
166void intel_enable_asle (struct drm_device *dev)
167{
168 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
169
Eric Anholtc619eed2010-01-28 16:45:52 -0800170 if (HAS_PCH_SPLIT(dev))
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500171 ironlake_enable_display_irq(dev_priv, DE_GSE);
Zhao Yakuiedcb49c2010-04-07 17:11:21 +0800172 else {
Zhao Yakui01c66882009-10-28 05:10:00 +0000173 i915_enable_pipestat(dev_priv, 1,
Jesse Barnesd874bcf2010-06-30 13:16:00 -0700174 PIPE_LEGACY_BLC_EVENT_ENABLE);
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100175 if (INTEL_INFO(dev)->gen >= 4)
Zhao Yakuiedcb49c2010-04-07 17:11:21 +0800176 i915_enable_pipestat(dev_priv, 0,
Jesse Barnesd874bcf2010-06-30 13:16:00 -0700177 PIPE_LEGACY_BLC_EVENT_ENABLE);
Zhao Yakuiedcb49c2010-04-07 17:11:21 +0800178 }
Zhao Yakui01c66882009-10-28 05:10:00 +0000179}
180
181/**
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700182 * i915_pipe_enabled - check if a pipe is enabled
183 * @dev: DRM device
184 * @pipe: pipe to check
185 *
186 * Reading certain registers when the pipe is disabled can hang the chip.
187 * Use this routine to make sure the PLL is running and the pipe is active
188 * before reading such registers if unsure.
189 */
190static int
191i915_pipe_enabled(struct drm_device *dev, int pipe)
192{
193 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Chris Wilson5eddb702010-09-11 13:48:45 +0100194 return I915_READ(PIPECONF(pipe)) & PIPECONF_ENABLE;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700195}
196
Keith Packard42f52ef2008-10-18 19:39:29 -0700197/* Called from drm generic code, passed a 'crtc', which
198 * we use as a pipe index
199 */
200u32 i915_get_vblank_counter(struct drm_device *dev, int pipe)
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700201{
202 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
203 unsigned long high_frame;
204 unsigned long low_frame;
Chris Wilson5eddb702010-09-11 13:48:45 +0100205 u32 high1, high2, low;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700206
207 if (!i915_pipe_enabled(dev, pipe)) {
Zhao Yakui44d98a62009-10-09 11:39:40 +0800208 DRM_DEBUG_DRIVER("trying to get vblank count for disabled "
209 "pipe %d\n", pipe);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700210 return 0;
211 }
212
Chris Wilson5eddb702010-09-11 13:48:45 +0100213 high_frame = pipe ? PIPEBFRAMEHIGH : PIPEAFRAMEHIGH;
214 low_frame = pipe ? PIPEBFRAMEPIXEL : PIPEAFRAMEPIXEL;
215
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700216 /*
217 * High & low register fields aren't synchronized, so make sure
218 * we get a low value that's stable across two reads of the high
219 * register.
220 */
221 do {
Chris Wilson5eddb702010-09-11 13:48:45 +0100222 high1 = I915_READ(high_frame) & PIPE_FRAME_HIGH_MASK;
223 low = I915_READ(low_frame) & PIPE_FRAME_LOW_MASK;
224 high2 = I915_READ(high_frame) & PIPE_FRAME_HIGH_MASK;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700225 } while (high1 != high2);
226
Chris Wilson5eddb702010-09-11 13:48:45 +0100227 high1 >>= PIPE_FRAME_HIGH_SHIFT;
228 low >>= PIPE_FRAME_LOW_SHIFT;
229 return (high1 << 8) | low;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700230}
231
Jesse Barnes9880b7a2009-02-06 10:22:41 -0800232u32 gm45_get_vblank_counter(struct drm_device *dev, int pipe)
233{
234 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
235 int reg = pipe ? PIPEB_FRMCOUNT_GM45 : PIPEA_FRMCOUNT_GM45;
236
237 if (!i915_pipe_enabled(dev, pipe)) {
Zhao Yakui44d98a62009-10-09 11:39:40 +0800238 DRM_DEBUG_DRIVER("trying to get vblank count for disabled "
239 "pipe %d\n", pipe);
Jesse Barnes9880b7a2009-02-06 10:22:41 -0800240 return 0;
241 }
242
243 return I915_READ(reg);
244}
245
Jesse Barnes5ca58282009-03-31 14:11:15 -0700246/*
247 * Handle hotplug events outside the interrupt handler proper.
248 */
249static void i915_hotplug_work_func(struct work_struct *work)
250{
251 drm_i915_private_t *dev_priv = container_of(work, drm_i915_private_t,
252 hotplug_work);
253 struct drm_device *dev = dev_priv->dev;
Keith Packardc31c4ba2009-05-06 11:48:58 -0700254 struct drm_mode_config *mode_config = &dev->mode_config;
Chris Wilson4ef69c72010-09-09 15:14:28 +0100255 struct intel_encoder *encoder;
Jesse Barnes5ca58282009-03-31 14:11:15 -0700256
Chris Wilson4ef69c72010-09-09 15:14:28 +0100257 list_for_each_entry(encoder, &mode_config->encoder_list, base.head)
258 if (encoder->hot_plug)
259 encoder->hot_plug(encoder);
260
Jesse Barnes5ca58282009-03-31 14:11:15 -0700261 /* Just fire off a uevent and let userspace tell us what to do */
Dave Airlieeb1f8e42010-05-07 06:42:51 +0000262 drm_helper_hpd_irq_event(dev);
Jesse Barnes5ca58282009-03-31 14:11:15 -0700263}
264
Jesse Barnesf97108d2010-01-29 11:27:07 -0800265static void i915_handle_rps_change(struct drm_device *dev)
266{
267 drm_i915_private_t *dev_priv = dev->dev_private;
Matthew Garrettb5b72e82010-02-02 18:30:47 +0000268 u32 busy_up, busy_down, max_avg, min_avg;
Jesse Barnesf97108d2010-01-29 11:27:07 -0800269 u8 new_delay = dev_priv->cur_delay;
270
Jesse Barnes7648fa92010-05-20 14:28:11 -0700271 I915_WRITE16(MEMINTRSTS, MEMINT_EVAL_CHG);
Matthew Garrettb5b72e82010-02-02 18:30:47 +0000272 busy_up = I915_READ(RCPREVBSYTUPAVG);
273 busy_down = I915_READ(RCPREVBSYTDNAVG);
Jesse Barnesf97108d2010-01-29 11:27:07 -0800274 max_avg = I915_READ(RCBMAXAVG);
275 min_avg = I915_READ(RCBMINAVG);
276
277 /* Handle RCS change request from hw */
Matthew Garrettb5b72e82010-02-02 18:30:47 +0000278 if (busy_up > max_avg) {
Jesse Barnesf97108d2010-01-29 11:27:07 -0800279 if (dev_priv->cur_delay != dev_priv->max_delay)
280 new_delay = dev_priv->cur_delay - 1;
281 if (new_delay < dev_priv->max_delay)
282 new_delay = dev_priv->max_delay;
Matthew Garrettb5b72e82010-02-02 18:30:47 +0000283 } else if (busy_down < min_avg) {
Jesse Barnesf97108d2010-01-29 11:27:07 -0800284 if (dev_priv->cur_delay != dev_priv->min_delay)
285 new_delay = dev_priv->cur_delay + 1;
286 if (new_delay > dev_priv->min_delay)
287 new_delay = dev_priv->min_delay;
288 }
289
Jesse Barnes7648fa92010-05-20 14:28:11 -0700290 if (ironlake_set_drps(dev, new_delay))
291 dev_priv->cur_delay = new_delay;
Jesse Barnesf97108d2010-01-29 11:27:07 -0800292
293 return;
294}
295
Chris Wilson995b6762010-08-20 13:23:26 +0100296static irqreturn_t ironlake_irq_handler(struct drm_device *dev)
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800297{
298 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
299 int ret = IRQ_NONE;
Dave Airlie3ff99162009-12-08 14:03:47 +1000300 u32 de_iir, gt_iir, de_ier, pch_iir;
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800301 struct drm_i915_master_private *master_priv;
Zou Nan hai852835f2010-05-21 09:08:56 +0800302 struct intel_ring_buffer *render_ring = &dev_priv->render_ring;
Xiang, Haihao881f47b2010-09-19 14:40:43 +0100303 u32 bsd_usr_interrupt = GT_BSD_USER_INTERRUPT;
304
305 if (IS_GEN6(dev))
306 bsd_usr_interrupt = GT_GEN6_BSD_USER_INTERRUPT;
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800307
Zou, Nanhai2d109a82009-11-06 02:13:01 +0000308 /* disable master interrupt before clearing iir */
309 de_ier = I915_READ(DEIER);
310 I915_WRITE(DEIER, de_ier & ~DE_MASTER_IRQ_CONTROL);
311 (void)I915_READ(DEIER);
312
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800313 de_iir = I915_READ(DEIIR);
314 gt_iir = I915_READ(GTIIR);
Zhenyu Wangc6501562009-11-03 18:57:21 +0000315 pch_iir = I915_READ(SDEIIR);
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800316
Zou Nan haic7c85102010-01-15 10:29:06 +0800317 if (de_iir == 0 && gt_iir == 0 && pch_iir == 0)
318 goto done;
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800319
Zou Nan haic7c85102010-01-15 10:29:06 +0800320 ret = IRQ_HANDLED;
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800321
Zou Nan haic7c85102010-01-15 10:29:06 +0800322 if (dev->primary->master) {
323 master_priv = dev->primary->master->driver_priv;
324 if (master_priv->sarea_priv)
325 master_priv->sarea_priv->last_dispatch =
326 READ_BREADCRUMB(dev_priv);
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800327 }
328
Jesse Barnese552eb72010-04-21 11:39:23 -0700329 if (gt_iir & GT_PIPE_NOTIFY) {
Chris Wilsonf787a5f2010-09-24 16:02:42 +0100330 u32 seqno = render_ring->get_seqno(dev, render_ring);
Zou Nan hai852835f2010-05-21 09:08:56 +0800331 render_ring->irq_gem_seqno = seqno;
Zou Nan haic7c85102010-01-15 10:29:06 +0800332 trace_i915_gem_request_complete(dev, seqno);
Chris Wilsonf787a5f2010-09-24 16:02:42 +0100333 wake_up_all(&dev_priv->render_ring.irq_queue);
Zou Nan haic7c85102010-01-15 10:29:06 +0800334 dev_priv->hangcheck_count = 0;
Chris Wilsonb3b079d2010-09-13 23:44:34 +0100335 mod_timer(&dev_priv->hangcheck_timer,
336 jiffies + msecs_to_jiffies(DRM_I915_HANGCHECK_PERIOD));
Zou Nan haic7c85102010-01-15 10:29:06 +0800337 }
Xiang, Haihao881f47b2010-09-19 14:40:43 +0100338 if (gt_iir & bsd_usr_interrupt)
Chris Wilsonf787a5f2010-09-24 16:02:42 +0100339 wake_up_all(&dev_priv->bsd_ring.irq_queue);
Zou Nan haid1b851f2010-05-21 09:08:57 +0800340
Zou Nan haic7c85102010-01-15 10:29:06 +0800341 if (de_iir & DE_GSE)
Chris Wilson3b617962010-08-24 09:02:58 +0100342 intel_opregion_gse_intr(dev);
Zou Nan haic7c85102010-01-15 10:29:06 +0800343
Zhenyu Wangf072d2e2010-02-09 09:46:19 +0800344 if (de_iir & DE_PLANEA_FLIP_DONE) {
Jesse Barnes013d5aa2010-01-29 11:18:31 -0800345 intel_prepare_page_flip(dev, 0);
Chris Wilson2bbda382010-09-02 17:59:39 +0100346 intel_finish_page_flip_plane(dev, 0);
Jesse Barnes013d5aa2010-01-29 11:18:31 -0800347 }
348
Zhenyu Wangf072d2e2010-02-09 09:46:19 +0800349 if (de_iir & DE_PLANEB_FLIP_DONE) {
350 intel_prepare_page_flip(dev, 1);
Chris Wilson2bbda382010-09-02 17:59:39 +0100351 intel_finish_page_flip_plane(dev, 1);
Jesse Barnes013d5aa2010-01-29 11:18:31 -0800352 }
Li Pengc062df62010-01-23 00:12:58 +0800353
Zhenyu Wangf072d2e2010-02-09 09:46:19 +0800354 if (de_iir & DE_PIPEA_VBLANK)
355 drm_handle_vblank(dev, 0);
356
357 if (de_iir & DE_PIPEB_VBLANK)
358 drm_handle_vblank(dev, 1);
359
Zou Nan haic7c85102010-01-15 10:29:06 +0800360 /* check event from PCH */
361 if ((de_iir & DE_PCH_EVENT) &&
362 (pch_iir & SDE_HOTPLUG_MASK)) {
363 queue_work(dev_priv->wq, &dev_priv->hotplug_work);
364 }
365
Jesse Barnesf97108d2010-01-29 11:27:07 -0800366 if (de_iir & DE_PCU_EVENT) {
Jesse Barnes7648fa92010-05-20 14:28:11 -0700367 I915_WRITE16(MEMINTRSTS, I915_READ(MEMINTRSTS));
Jesse Barnesf97108d2010-01-29 11:27:07 -0800368 i915_handle_rps_change(dev);
369 }
370
Zou Nan haic7c85102010-01-15 10:29:06 +0800371 /* should clear PCH hotplug event before clear CPU irq */
372 I915_WRITE(SDEIIR, pch_iir);
373 I915_WRITE(GTIIR, gt_iir);
374 I915_WRITE(DEIIR, de_iir);
375
376done:
Zou, Nanhai2d109a82009-11-06 02:13:01 +0000377 I915_WRITE(DEIER, de_ier);
378 (void)I915_READ(DEIER);
379
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800380 return ret;
381}
382
Jesse Barnes8a905232009-07-11 16:48:03 -0400383/**
384 * i915_error_work_func - do process context error handling work
385 * @work: work struct
386 *
387 * Fire an error uevent so userspace can see that a hang or error
388 * was detected.
389 */
390static void i915_error_work_func(struct work_struct *work)
391{
392 drm_i915_private_t *dev_priv = container_of(work, drm_i915_private_t,
393 error_work);
394 struct drm_device *dev = dev_priv->dev;
Ben Gamarif316a422009-09-14 17:48:46 -0400395 char *error_event[] = { "ERROR=1", NULL };
396 char *reset_event[] = { "RESET=1", NULL };
397 char *reset_done_event[] = { "ERROR=0", NULL };
Jesse Barnes8a905232009-07-11 16:48:03 -0400398
Zhao Yakui44d98a62009-10-09 11:39:40 +0800399 DRM_DEBUG_DRIVER("generating error event\n");
Ben Gamarif316a422009-09-14 17:48:46 -0400400 kobject_uevent_env(&dev->primary->kdev.kobj, KOBJ_CHANGE, error_event);
Jesse Barnes8a905232009-07-11 16:48:03 -0400401
Ben Gamariba1234d2009-09-14 17:48:47 -0400402 if (atomic_read(&dev_priv->mm.wedged)) {
Chris Wilsonf803aa52010-09-19 12:38:26 +0100403 DRM_DEBUG_DRIVER("resetting chip\n");
404 kobject_uevent_env(&dev->primary->kdev.kobj, KOBJ_CHANGE, reset_event);
405 if (!i915_reset(dev, GRDOM_RENDER)) {
406 atomic_set(&dev_priv->mm.wedged, 0);
407 kobject_uevent_env(&dev->primary->kdev.kobj, KOBJ_CHANGE, reset_done_event);
Ben Gamarif316a422009-09-14 17:48:46 -0400408 }
Chris Wilson30dbf0c2010-09-25 10:19:17 +0100409 complete_all(&dev_priv->error_completion);
Ben Gamarif316a422009-09-14 17:48:46 -0400410 }
Jesse Barnes8a905232009-07-11 16:48:03 -0400411}
412
Chris Wilson3bd3c932010-08-19 08:19:30 +0100413#ifdef CONFIG_DEBUG_FS
Chris Wilson9df30792010-02-18 10:24:56 +0000414static struct drm_i915_error_object *
415i915_error_object_create(struct drm_device *dev,
416 struct drm_gem_object *src)
417{
Chris Wilsone56660d2010-08-07 11:01:26 +0100418 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson9df30792010-02-18 10:24:56 +0000419 struct drm_i915_error_object *dst;
420 struct drm_i915_gem_object *src_priv;
421 int page, page_count;
Chris Wilsone56660d2010-08-07 11:01:26 +0100422 u32 reloc_offset;
Chris Wilson9df30792010-02-18 10:24:56 +0000423
424 if (src == NULL)
425 return NULL;
426
Daniel Vetter23010e42010-03-08 13:35:02 +0100427 src_priv = to_intel_bo(src);
Chris Wilson9df30792010-02-18 10:24:56 +0000428 if (src_priv->pages == NULL)
429 return NULL;
430
431 page_count = src->size / PAGE_SIZE;
432
433 dst = kmalloc(sizeof(*dst) + page_count * sizeof (u32 *), GFP_ATOMIC);
434 if (dst == NULL)
435 return NULL;
436
Chris Wilsone56660d2010-08-07 11:01:26 +0100437 reloc_offset = src_priv->gtt_offset;
Chris Wilson9df30792010-02-18 10:24:56 +0000438 for (page = 0; page < page_count; page++) {
Andrew Morton788885a2010-05-11 14:07:05 -0700439 unsigned long flags;
Chris Wilsone56660d2010-08-07 11:01:26 +0100440 void __iomem *s;
441 void *d;
Andrew Morton788885a2010-05-11 14:07:05 -0700442
Chris Wilsone56660d2010-08-07 11:01:26 +0100443 d = kmalloc(PAGE_SIZE, GFP_ATOMIC);
Chris Wilson9df30792010-02-18 10:24:56 +0000444 if (d == NULL)
445 goto unwind;
Chris Wilsone56660d2010-08-07 11:01:26 +0100446
Andrew Morton788885a2010-05-11 14:07:05 -0700447 local_irq_save(flags);
Chris Wilsone56660d2010-08-07 11:01:26 +0100448 s = io_mapping_map_atomic_wc(dev_priv->mm.gtt_mapping,
449 reloc_offset,
450 KM_IRQ0);
451 memcpy_fromio(d, s, PAGE_SIZE);
452 io_mapping_unmap_atomic(s, KM_IRQ0);
Andrew Morton788885a2010-05-11 14:07:05 -0700453 local_irq_restore(flags);
Chris Wilsone56660d2010-08-07 11:01:26 +0100454
Chris Wilson9df30792010-02-18 10:24:56 +0000455 dst->pages[page] = d;
Chris Wilsone56660d2010-08-07 11:01:26 +0100456
457 reloc_offset += PAGE_SIZE;
Chris Wilson9df30792010-02-18 10:24:56 +0000458 }
459 dst->page_count = page_count;
460 dst->gtt_offset = src_priv->gtt_offset;
461
462 return dst;
463
464unwind:
465 while (page--)
466 kfree(dst->pages[page]);
467 kfree(dst);
468 return NULL;
469}
470
471static void
472i915_error_object_free(struct drm_i915_error_object *obj)
473{
474 int page;
475
476 if (obj == NULL)
477 return;
478
479 for (page = 0; page < obj->page_count; page++)
480 kfree(obj->pages[page]);
481
482 kfree(obj);
483}
484
485static void
486i915_error_state_free(struct drm_device *dev,
487 struct drm_i915_error_state *error)
488{
489 i915_error_object_free(error->batchbuffer[0]);
490 i915_error_object_free(error->batchbuffer[1]);
491 i915_error_object_free(error->ringbuffer);
492 kfree(error->active_bo);
Chris Wilson6ef3d422010-08-04 20:26:07 +0100493 kfree(error->overlay);
Chris Wilson9df30792010-02-18 10:24:56 +0000494 kfree(error);
495}
496
497static u32
498i915_get_bbaddr(struct drm_device *dev, u32 *ring)
499{
500 u32 cmd;
501
502 if (IS_I830(dev) || IS_845G(dev))
503 cmd = MI_BATCH_BUFFER;
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100504 else if (INTEL_INFO(dev)->gen >= 4)
Chris Wilson9df30792010-02-18 10:24:56 +0000505 cmd = (MI_BATCH_BUFFER_START | (2 << 6) |
506 MI_BATCH_NON_SECURE_I965);
507 else
508 cmd = (MI_BATCH_BUFFER_START | (2 << 6));
509
510 return ring[0] == cmd ? ring[1] : 0;
511}
512
513static u32
514i915_ringbuffer_last_batch(struct drm_device *dev)
515{
516 struct drm_i915_private *dev_priv = dev->dev_private;
517 u32 head, bbaddr;
518 u32 *ring;
519
520 /* Locate the current position in the ringbuffer and walk back
521 * to find the most recently dispatched batch buffer.
522 */
523 bbaddr = 0;
524 head = I915_READ(PRB0_HEAD) & HEAD_ADDR;
Eric Anholtd3301d82010-05-21 13:55:54 -0700525 ring = (u32 *)(dev_priv->render_ring.virtual_start + head);
Chris Wilson9df30792010-02-18 10:24:56 +0000526
Eric Anholtd3301d82010-05-21 13:55:54 -0700527 while (--ring >= (u32 *)dev_priv->render_ring.virtual_start) {
Chris Wilson9df30792010-02-18 10:24:56 +0000528 bbaddr = i915_get_bbaddr(dev, ring);
529 if (bbaddr)
530 break;
531 }
532
533 if (bbaddr == 0) {
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800534 ring = (u32 *)(dev_priv->render_ring.virtual_start
535 + dev_priv->render_ring.size);
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
543 return bbaddr;
544}
545
Jesse Barnes8a905232009-07-11 16:48:03 -0400546/**
547 * i915_capture_error_state - capture an error record for later analysis
548 * @dev: drm device
549 *
550 * Should be called when an error is detected (either a hang or an error
551 * interrupt) to capture error state from the time of the error. Fills
552 * out a structure which becomes available in debugfs for user level tools
553 * to pick up.
554 */
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700555static void i915_capture_error_state(struct drm_device *dev)
556{
557 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson9df30792010-02-18 10:24:56 +0000558 struct drm_i915_gem_object *obj_priv;
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700559 struct drm_i915_error_state *error;
Chris Wilson9df30792010-02-18 10:24:56 +0000560 struct drm_gem_object *batchbuffer[2];
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700561 unsigned long flags;
Chris Wilson9df30792010-02-18 10:24:56 +0000562 u32 bbaddr;
563 int count;
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700564
565 spin_lock_irqsave(&dev_priv->error_lock, flags);
Chris Wilson9df30792010-02-18 10:24:56 +0000566 error = dev_priv->first_error;
567 spin_unlock_irqrestore(&dev_priv->error_lock, flags);
568 if (error)
569 return;
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700570
571 error = kmalloc(sizeof(*error), GFP_ATOMIC);
572 if (!error) {
Chris Wilson9df30792010-02-18 10:24:56 +0000573 DRM_DEBUG_DRIVER("out of memory, not capturing error state\n");
574 return;
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700575 }
576
Chris Wilsonf787a5f2010-09-24 16:02:42 +0100577 error->seqno =
578 dev_priv->render_ring.get_seqno(dev, &dev_priv->render_ring);
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700579 error->eir = I915_READ(EIR);
580 error->pgtbl_er = I915_READ(PGTBL_ER);
581 error->pipeastat = I915_READ(PIPEASTAT);
582 error->pipebstat = I915_READ(PIPEBSTAT);
583 error->instpm = I915_READ(INSTPM);
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100584 if (INTEL_INFO(dev)->gen < 4) {
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700585 error->ipeir = I915_READ(IPEIR);
586 error->ipehr = I915_READ(IPEHR);
587 error->instdone = I915_READ(INSTDONE);
588 error->acthd = I915_READ(ACTHD);
Chris Wilson9df30792010-02-18 10:24:56 +0000589 error->bbaddr = 0;
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700590 } else {
591 error->ipeir = I915_READ(IPEIR_I965);
592 error->ipehr = I915_READ(IPEHR_I965);
593 error->instdone = I915_READ(INSTDONE_I965);
594 error->instps = I915_READ(INSTPS);
595 error->instdone1 = I915_READ(INSTDONE1);
596 error->acthd = I915_READ(ACTHD_I965);
Chris Wilson9df30792010-02-18 10:24:56 +0000597 error->bbaddr = I915_READ64(BB_ADDR);
598 }
599
600 bbaddr = i915_ringbuffer_last_batch(dev);
601
602 /* Grab the current batchbuffer, most likely to have crashed. */
603 batchbuffer[0] = NULL;
604 batchbuffer[1] = NULL;
605 count = 0;
Zou Nan hai852835f2010-05-21 09:08:56 +0800606 list_for_each_entry(obj_priv,
607 &dev_priv->render_ring.active_list, list) {
608
Daniel Vettera8089e82010-04-09 19:05:09 +0000609 struct drm_gem_object *obj = &obj_priv->base;
Chris Wilson9df30792010-02-18 10:24:56 +0000610
611 if (batchbuffer[0] == NULL &&
612 bbaddr >= obj_priv->gtt_offset &&
613 bbaddr < obj_priv->gtt_offset + obj->size)
614 batchbuffer[0] = obj;
615
616 if (batchbuffer[1] == NULL &&
617 error->acthd >= obj_priv->gtt_offset &&
Chris Wilsone56660d2010-08-07 11:01:26 +0100618 error->acthd < obj_priv->gtt_offset + obj->size)
Chris Wilson9df30792010-02-18 10:24:56 +0000619 batchbuffer[1] = obj;
620
621 count++;
622 }
Chris Wilsone56660d2010-08-07 11:01:26 +0100623 /* Scan the other lists for completeness for those bizarre errors. */
624 if (batchbuffer[0] == NULL || batchbuffer[1] == NULL) {
625 list_for_each_entry(obj_priv, &dev_priv->mm.flushing_list, list) {
626 struct drm_gem_object *obj = &obj_priv->base;
627
628 if (batchbuffer[0] == NULL &&
629 bbaddr >= obj_priv->gtt_offset &&
630 bbaddr < obj_priv->gtt_offset + obj->size)
631 batchbuffer[0] = obj;
632
633 if (batchbuffer[1] == NULL &&
634 error->acthd >= obj_priv->gtt_offset &&
635 error->acthd < obj_priv->gtt_offset + obj->size)
636 batchbuffer[1] = obj;
637
638 if (batchbuffer[0] && batchbuffer[1])
639 break;
640 }
641 }
642 if (batchbuffer[0] == NULL || batchbuffer[1] == NULL) {
643 list_for_each_entry(obj_priv, &dev_priv->mm.inactive_list, list) {
644 struct drm_gem_object *obj = &obj_priv->base;
645
646 if (batchbuffer[0] == NULL &&
647 bbaddr >= obj_priv->gtt_offset &&
648 bbaddr < obj_priv->gtt_offset + obj->size)
649 batchbuffer[0] = obj;
650
651 if (batchbuffer[1] == NULL &&
652 error->acthd >= obj_priv->gtt_offset &&
653 error->acthd < obj_priv->gtt_offset + obj->size)
654 batchbuffer[1] = obj;
655
656 if (batchbuffer[0] && batchbuffer[1])
657 break;
658 }
659 }
Chris Wilson9df30792010-02-18 10:24:56 +0000660
661 /* We need to copy these to an anonymous buffer as the simplest
662 * method to avoid being overwritten by userpace.
663 */
664 error->batchbuffer[0] = i915_error_object_create(dev, batchbuffer[0]);
Chris Wilsone56660d2010-08-07 11:01:26 +0100665 if (batchbuffer[1] != batchbuffer[0])
666 error->batchbuffer[1] = i915_error_object_create(dev, batchbuffer[1]);
667 else
668 error->batchbuffer[1] = NULL;
Chris Wilson9df30792010-02-18 10:24:56 +0000669
670 /* Record the ringbuffer */
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800671 error->ringbuffer = i915_error_object_create(dev,
672 dev_priv->render_ring.gem_object);
Chris Wilson9df30792010-02-18 10:24:56 +0000673
674 /* Record buffers on the active list. */
675 error->active_bo = NULL;
676 error->active_bo_count = 0;
677
678 if (count)
679 error->active_bo = kmalloc(sizeof(*error->active_bo)*count,
680 GFP_ATOMIC);
681
682 if (error->active_bo) {
683 int i = 0;
Zou Nan hai852835f2010-05-21 09:08:56 +0800684 list_for_each_entry(obj_priv,
685 &dev_priv->render_ring.active_list, list) {
Daniel Vettera8089e82010-04-09 19:05:09 +0000686 struct drm_gem_object *obj = &obj_priv->base;
Chris Wilson9df30792010-02-18 10:24:56 +0000687
688 error->active_bo[i].size = obj->size;
689 error->active_bo[i].name = obj->name;
690 error->active_bo[i].seqno = obj_priv->last_rendering_seqno;
691 error->active_bo[i].gtt_offset = obj_priv->gtt_offset;
692 error->active_bo[i].read_domains = obj->read_domains;
693 error->active_bo[i].write_domain = obj->write_domain;
694 error->active_bo[i].fence_reg = obj_priv->fence_reg;
695 error->active_bo[i].pinned = 0;
696 if (obj_priv->pin_count > 0)
697 error->active_bo[i].pinned = 1;
698 if (obj_priv->user_pin_count > 0)
699 error->active_bo[i].pinned = -1;
700 error->active_bo[i].tiling = obj_priv->tiling_mode;
701 error->active_bo[i].dirty = obj_priv->dirty;
702 error->active_bo[i].purgeable = obj_priv->madv != I915_MADV_WILLNEED;
703
704 if (++i == count)
705 break;
706 }
707 error->active_bo_count = i;
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700708 }
709
Jesse Barnes8a905232009-07-11 16:48:03 -0400710 do_gettimeofday(&error->time);
711
Chris Wilson6ef3d422010-08-04 20:26:07 +0100712 error->overlay = intel_overlay_capture_error_state(dev);
713
Chris Wilson9df30792010-02-18 10:24:56 +0000714 spin_lock_irqsave(&dev_priv->error_lock, flags);
715 if (dev_priv->first_error == NULL) {
716 dev_priv->first_error = error;
717 error = NULL;
718 }
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700719 spin_unlock_irqrestore(&dev_priv->error_lock, flags);
Chris Wilson9df30792010-02-18 10:24:56 +0000720
721 if (error)
722 i915_error_state_free(dev, error);
723}
724
725void i915_destroy_error_state(struct drm_device *dev)
726{
727 struct drm_i915_private *dev_priv = dev->dev_private;
728 struct drm_i915_error_state *error;
729
730 spin_lock(&dev_priv->error_lock);
731 error = dev_priv->first_error;
732 dev_priv->first_error = NULL;
733 spin_unlock(&dev_priv->error_lock);
734
735 if (error)
736 i915_error_state_free(dev, error);
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700737}
Chris Wilson3bd3c932010-08-19 08:19:30 +0100738#else
739#define i915_capture_error_state(x)
740#endif
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700741
Chris Wilson35aed2e2010-05-27 13:18:12 +0100742static void i915_report_and_clear_eir(struct drm_device *dev)
Jesse Barnes8a905232009-07-11 16:48:03 -0400743{
744 struct drm_i915_private *dev_priv = dev->dev_private;
745 u32 eir = I915_READ(EIR);
Jesse Barnes8a905232009-07-11 16:48:03 -0400746
Chris Wilson35aed2e2010-05-27 13:18:12 +0100747 if (!eir)
748 return;
Jesse Barnes8a905232009-07-11 16:48:03 -0400749
750 printk(KERN_ERR "render error detected, EIR: 0x%08x\n",
751 eir);
752
753 if (IS_G4X(dev)) {
754 if (eir & (GM45_ERROR_MEM_PRIV | GM45_ERROR_CP_PRIV)) {
755 u32 ipeir = I915_READ(IPEIR_I965);
756
757 printk(KERN_ERR " IPEIR: 0x%08x\n",
758 I915_READ(IPEIR_I965));
759 printk(KERN_ERR " IPEHR: 0x%08x\n",
760 I915_READ(IPEHR_I965));
761 printk(KERN_ERR " INSTDONE: 0x%08x\n",
762 I915_READ(INSTDONE_I965));
763 printk(KERN_ERR " INSTPS: 0x%08x\n",
764 I915_READ(INSTPS));
765 printk(KERN_ERR " INSTDONE1: 0x%08x\n",
766 I915_READ(INSTDONE1));
767 printk(KERN_ERR " ACTHD: 0x%08x\n",
768 I915_READ(ACTHD_I965));
769 I915_WRITE(IPEIR_I965, ipeir);
770 (void)I915_READ(IPEIR_I965);
771 }
772 if (eir & GM45_ERROR_PAGE_TABLE) {
773 u32 pgtbl_err = I915_READ(PGTBL_ER);
774 printk(KERN_ERR "page table error\n");
775 printk(KERN_ERR " PGTBL_ER: 0x%08x\n",
776 pgtbl_err);
777 I915_WRITE(PGTBL_ER, pgtbl_err);
778 (void)I915_READ(PGTBL_ER);
779 }
780 }
781
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100782 if (!IS_GEN2(dev)) {
Jesse Barnes8a905232009-07-11 16:48:03 -0400783 if (eir & I915_ERROR_PAGE_TABLE) {
784 u32 pgtbl_err = I915_READ(PGTBL_ER);
785 printk(KERN_ERR "page table error\n");
786 printk(KERN_ERR " PGTBL_ER: 0x%08x\n",
787 pgtbl_err);
788 I915_WRITE(PGTBL_ER, pgtbl_err);
789 (void)I915_READ(PGTBL_ER);
790 }
791 }
792
793 if (eir & I915_ERROR_MEMORY_REFRESH) {
Chris Wilson35aed2e2010-05-27 13:18:12 +0100794 u32 pipea_stats = I915_READ(PIPEASTAT);
795 u32 pipeb_stats = I915_READ(PIPEBSTAT);
796
Jesse Barnes8a905232009-07-11 16:48:03 -0400797 printk(KERN_ERR "memory refresh error\n");
798 printk(KERN_ERR "PIPEASTAT: 0x%08x\n",
799 pipea_stats);
800 printk(KERN_ERR "PIPEBSTAT: 0x%08x\n",
801 pipeb_stats);
802 /* pipestat has already been acked */
803 }
804 if (eir & I915_ERROR_INSTRUCTION) {
805 printk(KERN_ERR "instruction error\n");
806 printk(KERN_ERR " INSTPM: 0x%08x\n",
807 I915_READ(INSTPM));
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100808 if (INTEL_INFO(dev)->gen < 4) {
Jesse Barnes8a905232009-07-11 16:48:03 -0400809 u32 ipeir = I915_READ(IPEIR);
810
811 printk(KERN_ERR " IPEIR: 0x%08x\n",
812 I915_READ(IPEIR));
813 printk(KERN_ERR " IPEHR: 0x%08x\n",
814 I915_READ(IPEHR));
815 printk(KERN_ERR " INSTDONE: 0x%08x\n",
816 I915_READ(INSTDONE));
817 printk(KERN_ERR " ACTHD: 0x%08x\n",
818 I915_READ(ACTHD));
819 I915_WRITE(IPEIR, ipeir);
820 (void)I915_READ(IPEIR);
821 } else {
822 u32 ipeir = I915_READ(IPEIR_I965);
823
824 printk(KERN_ERR " IPEIR: 0x%08x\n",
825 I915_READ(IPEIR_I965));
826 printk(KERN_ERR " IPEHR: 0x%08x\n",
827 I915_READ(IPEHR_I965));
828 printk(KERN_ERR " INSTDONE: 0x%08x\n",
829 I915_READ(INSTDONE_I965));
830 printk(KERN_ERR " INSTPS: 0x%08x\n",
831 I915_READ(INSTPS));
832 printk(KERN_ERR " INSTDONE1: 0x%08x\n",
833 I915_READ(INSTDONE1));
834 printk(KERN_ERR " ACTHD: 0x%08x\n",
835 I915_READ(ACTHD_I965));
836 I915_WRITE(IPEIR_I965, ipeir);
837 (void)I915_READ(IPEIR_I965);
838 }
839 }
840
841 I915_WRITE(EIR, eir);
842 (void)I915_READ(EIR);
843 eir = I915_READ(EIR);
844 if (eir) {
845 /*
846 * some errors might have become stuck,
847 * mask them.
848 */
849 DRM_ERROR("EIR stuck: 0x%08x, masking\n", eir);
850 I915_WRITE(EMR, I915_READ(EMR) | eir);
851 I915_WRITE(IIR, I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT);
852 }
Chris Wilson35aed2e2010-05-27 13:18:12 +0100853}
854
855/**
856 * i915_handle_error - handle an error interrupt
857 * @dev: drm device
858 *
859 * Do some basic checking of regsiter state at error interrupt time and
860 * dump it to the syslog. Also call i915_capture_error_state() to make
861 * sure we get a record and make it available in debugfs. Fire a uevent
862 * so userspace knows something bad happened (should trigger collection
863 * of a ring dump etc.).
864 */
865static void i915_handle_error(struct drm_device *dev, bool wedged)
866{
867 struct drm_i915_private *dev_priv = dev->dev_private;
868
869 i915_capture_error_state(dev);
870 i915_report_and_clear_eir(dev);
Jesse Barnes8a905232009-07-11 16:48:03 -0400871
Ben Gamariba1234d2009-09-14 17:48:47 -0400872 if (wedged) {
Chris Wilson30dbf0c2010-09-25 10:19:17 +0100873 INIT_COMPLETION(dev_priv->error_completion);
Ben Gamariba1234d2009-09-14 17:48:47 -0400874 atomic_set(&dev_priv->mm.wedged, 1);
875
Ben Gamari11ed50e2009-09-14 17:48:45 -0400876 /*
877 * Wakeup waiting processes so they don't hang
878 */
Chris Wilsonf787a5f2010-09-24 16:02:42 +0100879 wake_up_all(&dev_priv->render_ring.irq_queue);
880 if (HAS_BSD(dev))
881 wake_up_all(&dev_priv->bsd_ring.irq_queue);
Ben Gamari11ed50e2009-09-14 17:48:45 -0400882 }
883
Eric Anholt9c9fe1f2009-08-03 16:09:16 -0700884 queue_work(dev_priv->wq, &dev_priv->error_work);
Jesse Barnes8a905232009-07-11 16:48:03 -0400885}
886
Simon Farnsworth4e5359c2010-09-01 17:47:52 +0100887static void i915_pageflip_stall_check(struct drm_device *dev, int pipe)
888{
889 drm_i915_private_t *dev_priv = dev->dev_private;
890 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
891 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
892 struct drm_i915_gem_object *obj_priv;
893 struct intel_unpin_work *work;
894 unsigned long flags;
895 bool stall_detected;
896
897 /* Ignore early vblank irqs */
898 if (intel_crtc == NULL)
899 return;
900
901 spin_lock_irqsave(&dev->event_lock, flags);
902 work = intel_crtc->unpin_work;
903
904 if (work == NULL || work->pending || !work->enable_stall_check) {
905 /* Either the pending flip IRQ arrived, or we're too early. Don't check */
906 spin_unlock_irqrestore(&dev->event_lock, flags);
907 return;
908 }
909
910 /* Potential stall - if we see that the flip has happened, assume a missed interrupt */
911 obj_priv = to_intel_bo(work->pending_flip_obj);
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100912 if (INTEL_INFO(dev)->gen >= 4) {
Simon Farnsworth4e5359c2010-09-01 17:47:52 +0100913 int dspsurf = intel_crtc->plane == 0 ? DSPASURF : DSPBSURF;
914 stall_detected = I915_READ(dspsurf) == obj_priv->gtt_offset;
915 } else {
916 int dspaddr = intel_crtc->plane == 0 ? DSPAADDR : DSPBADDR;
917 stall_detected = I915_READ(dspaddr) == (obj_priv->gtt_offset +
918 crtc->y * crtc->fb->pitch +
919 crtc->x * crtc->fb->bits_per_pixel/8);
920 }
921
922 spin_unlock_irqrestore(&dev->event_lock, flags);
923
924 if (stall_detected) {
925 DRM_DEBUG_DRIVER("Pageflip stall detected\n");
926 intel_prepare_page_flip(dev, intel_crtc->plane);
927 }
928}
929
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930irqreturn_t i915_driver_irq_handler(DRM_IRQ_ARGS)
931{
Dave Airlie84b1fd12007-07-11 15:53:27 +1000932 struct drm_device *dev = (struct drm_device *) arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000934 struct drm_i915_master_private *master_priv;
Eric Anholtcdfbc412008-11-04 15:50:30 -0800935 u32 iir, new_iir;
936 u32 pipea_stats, pipeb_stats;
Keith Packard05eff842008-11-19 14:03:05 -0800937 u32 vblank_status;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700938 int vblank = 0;
Keith Packard7c463582008-11-04 02:03:27 -0800939 unsigned long irqflags;
Keith Packard05eff842008-11-19 14:03:05 -0800940 int irq_received;
941 int ret = IRQ_NONE;
Zou Nan hai852835f2010-05-21 09:08:56 +0800942 struct intel_ring_buffer *render_ring = &dev_priv->render_ring;
Dave Airlieaf6061a2008-05-07 12:15:39 +1000943
Eric Anholt630681d2008-10-06 15:14:12 -0700944 atomic_inc(&dev_priv->irq_received);
945
Eric Anholtbad720f2009-10-22 16:11:14 -0700946 if (HAS_PCH_SPLIT(dev))
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500947 return ironlake_irq_handler(dev);
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800948
Eric Anholted4cb412008-07-29 12:10:39 -0700949 iir = I915_READ(IIR);
Dave Airlieaf6061a2008-05-07 12:15:39 +1000950
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100951 if (INTEL_INFO(dev)->gen >= 4)
Jesse Barnesd874bcf2010-06-30 13:16:00 -0700952 vblank_status = PIPE_START_VBLANK_INTERRUPT_STATUS;
Jesse Barnese25e6602010-06-30 13:15:19 -0700953 else
Jesse Barnesd874bcf2010-06-30 13:16:00 -0700954 vblank_status = PIPE_VBLANK_INTERRUPT_STATUS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955
Keith Packard05eff842008-11-19 14:03:05 -0800956 for (;;) {
957 irq_received = iir != 0;
958
959 /* Can't rely on pipestat interrupt bit in iir as it might
960 * have been cleared after the pipestat interrupt was received.
961 * It doesn't set the bit in iir again, but it still produces
962 * interrupts (for non-MSI).
963 */
964 spin_lock_irqsave(&dev_priv->user_irq_lock, irqflags);
965 pipea_stats = I915_READ(PIPEASTAT);
966 pipeb_stats = I915_READ(PIPEBSTAT);
Jesse Barnes79e53942008-11-07 14:24:08 -0800967
Jesse Barnes8a905232009-07-11 16:48:03 -0400968 if (iir & I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT)
Ben Gamariba1234d2009-09-14 17:48:47 -0400969 i915_handle_error(dev, false);
Jesse Barnes8a905232009-07-11 16:48:03 -0400970
Eric Anholtcdfbc412008-11-04 15:50:30 -0800971 /*
972 * Clear the PIPE(A|B)STAT regs before the IIR
973 */
Keith Packard05eff842008-11-19 14:03:05 -0800974 if (pipea_stats & 0x8000ffff) {
Shaohua Li7662c8b2009-06-26 11:23:55 +0800975 if (pipea_stats & PIPE_FIFO_UNDERRUN_STATUS)
Zhao Yakui44d98a62009-10-09 11:39:40 +0800976 DRM_DEBUG_DRIVER("pipe a underrun\n");
Eric Anholtcdfbc412008-11-04 15:50:30 -0800977 I915_WRITE(PIPEASTAT, pipea_stats);
Keith Packard05eff842008-11-19 14:03:05 -0800978 irq_received = 1;
Eric Anholtcdfbc412008-11-04 15:50:30 -0800979 }
Keith Packard7c463582008-11-04 02:03:27 -0800980
Keith Packard05eff842008-11-19 14:03:05 -0800981 if (pipeb_stats & 0x8000ffff) {
Shaohua Li7662c8b2009-06-26 11:23:55 +0800982 if (pipeb_stats & PIPE_FIFO_UNDERRUN_STATUS)
Zhao Yakui44d98a62009-10-09 11:39:40 +0800983 DRM_DEBUG_DRIVER("pipe b underrun\n");
Eric Anholtcdfbc412008-11-04 15:50:30 -0800984 I915_WRITE(PIPEBSTAT, pipeb_stats);
Keith Packard05eff842008-11-19 14:03:05 -0800985 irq_received = 1;
Eric Anholtcdfbc412008-11-04 15:50:30 -0800986 }
Keith Packard05eff842008-11-19 14:03:05 -0800987 spin_unlock_irqrestore(&dev_priv->user_irq_lock, irqflags);
988
989 if (!irq_received)
990 break;
991
992 ret = IRQ_HANDLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993
Jesse Barnes5ca58282009-03-31 14:11:15 -0700994 /* Consume port. Then clear IIR or we'll miss events */
995 if ((I915_HAS_HOTPLUG(dev)) &&
996 (iir & I915_DISPLAY_PORT_INTERRUPT)) {
997 u32 hotplug_status = I915_READ(PORT_HOTPLUG_STAT);
998
Zhao Yakui44d98a62009-10-09 11:39:40 +0800999 DRM_DEBUG_DRIVER("hotplug event received, stat 0x%08x\n",
Jesse Barnes5ca58282009-03-31 14:11:15 -07001000 hotplug_status);
1001 if (hotplug_status & dev_priv->hotplug_supported_mask)
Eric Anholt9c9fe1f2009-08-03 16:09:16 -07001002 queue_work(dev_priv->wq,
1003 &dev_priv->hotplug_work);
Jesse Barnes5ca58282009-03-31 14:11:15 -07001004
1005 I915_WRITE(PORT_HOTPLUG_STAT, hotplug_status);
1006 I915_READ(PORT_HOTPLUG_STAT);
1007 }
1008
Eric Anholtcdfbc412008-11-04 15:50:30 -08001009 I915_WRITE(IIR, iir);
1010 new_iir = I915_READ(IIR); /* Flush posted writes */
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +01001011
Dave Airlie7c1c2872008-11-28 14:22:24 +10001012 if (dev->primary->master) {
1013 master_priv = dev->primary->master->driver_priv;
1014 if (master_priv->sarea_priv)
1015 master_priv->sarea_priv->last_dispatch =
1016 READ_BREADCRUMB(dev_priv);
1017 }
Keith Packard7c463582008-11-04 02:03:27 -08001018
Eric Anholtcdfbc412008-11-04 15:50:30 -08001019 if (iir & I915_USER_INTERRUPT) {
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001020 u32 seqno = render_ring->get_seqno(dev, render_ring);
Zou Nan hai852835f2010-05-21 09:08:56 +08001021 render_ring->irq_gem_seqno = seqno;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01001022 trace_i915_gem_request_complete(dev, seqno);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001023 wake_up_all(&dev_priv->render_ring.irq_queue);
Ben Gamarif65d9422009-09-14 17:48:44 -04001024 dev_priv->hangcheck_count = 0;
Chris Wilsonb3b079d2010-09-13 23:44:34 +01001025 mod_timer(&dev_priv->hangcheck_timer,
1026 jiffies + msecs_to_jiffies(DRM_I915_HANGCHECK_PERIOD));
Eric Anholtcdfbc412008-11-04 15:50:30 -08001027 }
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001028
Zou Nan haid1b851f2010-05-21 09:08:57 +08001029 if (HAS_BSD(dev) && (iir & I915_BSD_USER_INTERRUPT))
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001030 wake_up_all(&dev_priv->bsd_ring.irq_queue);
Zou Nan haid1b851f2010-05-21 09:08:57 +08001031
Jesse Barnes1afe3e92010-03-26 10:35:20 -07001032 if (iir & I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT) {
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001033 intel_prepare_page_flip(dev, 0);
Jesse Barnes1afe3e92010-03-26 10:35:20 -07001034 if (dev_priv->flip_pending_is_done)
1035 intel_finish_page_flip_plane(dev, 0);
1036 }
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001037
Jesse Barnes1afe3e92010-03-26 10:35:20 -07001038 if (iir & I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT) {
Jesse Barnes70565d02010-07-01 04:45:43 -07001039 intel_prepare_page_flip(dev, 1);
Jesse Barnes1afe3e92010-03-26 10:35:20 -07001040 if (dev_priv->flip_pending_is_done)
1041 intel_finish_page_flip_plane(dev, 1);
Jesse Barnes1afe3e92010-03-26 10:35:20 -07001042 }
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001043
Keith Packard05eff842008-11-19 14:03:05 -08001044 if (pipea_stats & vblank_status) {
Eric Anholtcdfbc412008-11-04 15:50:30 -08001045 vblank++;
1046 drm_handle_vblank(dev, 0);
Simon Farnsworth4e5359c2010-09-01 17:47:52 +01001047 if (!dev_priv->flip_pending_is_done) {
1048 i915_pageflip_stall_check(dev, 0);
Jesse Barnes1afe3e92010-03-26 10:35:20 -07001049 intel_finish_page_flip(dev, 0);
Simon Farnsworth4e5359c2010-09-01 17:47:52 +01001050 }
Eric Anholtcdfbc412008-11-04 15:50:30 -08001051 }
Eric Anholt673a3942008-07-30 12:06:12 -07001052
Keith Packard05eff842008-11-19 14:03:05 -08001053 if (pipeb_stats & vblank_status) {
Eric Anholtcdfbc412008-11-04 15:50:30 -08001054 vblank++;
1055 drm_handle_vblank(dev, 1);
Simon Farnsworth4e5359c2010-09-01 17:47:52 +01001056 if (!dev_priv->flip_pending_is_done) {
1057 i915_pageflip_stall_check(dev, 1);
Jesse Barnes1afe3e92010-03-26 10:35:20 -07001058 intel_finish_page_flip(dev, 1);
Simon Farnsworth4e5359c2010-09-01 17:47:52 +01001059 }
Eric Anholtcdfbc412008-11-04 15:50:30 -08001060 }
Keith Packard7c463582008-11-04 02:03:27 -08001061
Jesse Barnesd874bcf2010-06-30 13:16:00 -07001062 if ((pipea_stats & PIPE_LEGACY_BLC_EVENT_STATUS) ||
1063 (pipeb_stats & PIPE_LEGACY_BLC_EVENT_STATUS) ||
Eric Anholtcdfbc412008-11-04 15:50:30 -08001064 (iir & I915_ASLE_INTERRUPT))
Chris Wilson3b617962010-08-24 09:02:58 +01001065 intel_opregion_asle_intr(dev);
Keith Packard7c463582008-11-04 02:03:27 -08001066
Eric Anholtcdfbc412008-11-04 15:50:30 -08001067 /* With MSI, interrupts are only generated when iir
1068 * transitions from zero to nonzero. If another bit got
1069 * set while we were handling the existing iir bits, then
1070 * we would never get another interrupt.
1071 *
1072 * This is fine on non-MSI as well, as if we hit this path
1073 * we avoid exiting the interrupt handler only to generate
1074 * another one.
1075 *
1076 * Note that for MSI this could cause a stray interrupt report
1077 * if an interrupt landed in the time between writing IIR and
1078 * the posting read. This should be rare enough to never
1079 * trigger the 99% of 100,000 interrupts test for disabling
1080 * stray interrupts.
1081 */
1082 iir = new_iir;
Keith Packard05eff842008-11-19 14:03:05 -08001083 }
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001084
Keith Packard05eff842008-11-19 14:03:05 -08001085 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086}
1087
Dave Airlieaf6061a2008-05-07 12:15:39 +10001088static int i915_emit_irq(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089{
1090 drm_i915_private_t *dev_priv = dev->dev_private;
Dave Airlie7c1c2872008-11-28 14:22:24 +10001091 struct drm_i915_master_private *master_priv = dev->primary->master->driver_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092
1093 i915_kernel_lost_context(dev);
1094
Zhao Yakui44d98a62009-10-09 11:39:40 +08001095 DRM_DEBUG_DRIVER("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096
Kristian Høgsbergc99b0582008-08-20 11:20:13 -04001097 dev_priv->counter++;
Alan Hourihanec29b6692006-08-12 16:29:24 +10001098 if (dev_priv->counter > 0x7FFFFFFFUL)
Kristian Høgsbergc99b0582008-08-20 11:20:13 -04001099 dev_priv->counter = 1;
Dave Airlie7c1c2872008-11-28 14:22:24 +10001100 if (master_priv->sarea_priv)
1101 master_priv->sarea_priv->last_enqueue = dev_priv->counter;
Alan Hourihanec29b6692006-08-12 16:29:24 +10001102
Keith Packard0baf8232008-11-08 11:44:14 +10001103 BEGIN_LP_RING(4);
Jesse Barnes585fb112008-07-29 11:54:06 -07001104 OUT_RING(MI_STORE_DWORD_INDEX);
Keith Packard0baf8232008-11-08 11:44:14 +10001105 OUT_RING(I915_BREADCRUMB_INDEX << MI_STORE_DWORD_INDEX_SHIFT);
Alan Hourihanec29b6692006-08-12 16:29:24 +10001106 OUT_RING(dev_priv->counter);
Jesse Barnes585fb112008-07-29 11:54:06 -07001107 OUT_RING(MI_USER_INTERRUPT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 ADVANCE_LP_RING();
Dave Airliebc5f4522007-11-05 12:50:58 +10001109
Alan Hourihanec29b6692006-08-12 16:29:24 +10001110 return dev_priv->counter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111}
1112
Chris Wilson9d34e5d2009-09-24 05:26:06 +01001113void i915_trace_irq_get(struct drm_device *dev, u32 seqno)
1114{
1115 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001116 struct intel_ring_buffer *render_ring = &dev_priv->render_ring;
Chris Wilson9d34e5d2009-09-24 05:26:06 +01001117
1118 if (dev_priv->trace_irq_seqno == 0)
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001119 render_ring->user_irq_get(dev, render_ring);
Chris Wilson9d34e5d2009-09-24 05:26:06 +01001120
1121 dev_priv->trace_irq_seqno = seqno;
1122}
1123
Dave Airlie84b1fd12007-07-11 15:53:27 +10001124static int i915_wait_irq(struct drm_device * dev, int irq_nr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125{
1126 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Dave Airlie7c1c2872008-11-28 14:22:24 +10001127 struct drm_i915_master_private *master_priv = dev->primary->master->driver_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 int ret = 0;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001129 struct intel_ring_buffer *render_ring = &dev_priv->render_ring;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130
Zhao Yakui44d98a62009-10-09 11:39:40 +08001131 DRM_DEBUG_DRIVER("irq_nr=%d breadcrumb=%d\n", irq_nr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132 READ_BREADCRUMB(dev_priv));
1133
Eric Anholted4cb412008-07-29 12:10:39 -07001134 if (READ_BREADCRUMB(dev_priv) >= irq_nr) {
Dave Airlie7c1c2872008-11-28 14:22:24 +10001135 if (master_priv->sarea_priv)
1136 master_priv->sarea_priv->last_dispatch = READ_BREADCRUMB(dev_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 return 0;
Eric Anholted4cb412008-07-29 12:10:39 -07001138 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139
Dave Airlie7c1c2872008-11-28 14:22:24 +10001140 if (master_priv->sarea_priv)
1141 master_priv->sarea_priv->perf_boxes |= I915_BOX_WAIT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001143 render_ring->user_irq_get(dev, render_ring);
Zou Nan hai852835f2010-05-21 09:08:56 +08001144 DRM_WAIT_ON(ret, dev_priv->render_ring.irq_queue, 3 * DRM_HZ,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 READ_BREADCRUMB(dev_priv) >= irq_nr);
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001146 render_ring->user_irq_put(dev, render_ring);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147
Eric Anholt20caafa2007-08-25 19:22:43 +10001148 if (ret == -EBUSY) {
Márton Németh3e684ea2008-01-24 15:58:57 +10001149 DRM_ERROR("EBUSY -- rec: %d emitted: %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150 READ_BREADCRUMB(dev_priv), (int)dev_priv->counter);
1151 }
1152
Dave Airlieaf6061a2008-05-07 12:15:39 +10001153 return ret;
1154}
1155
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156/* Needs the lock as it touches the ring.
1157 */
Eric Anholtc153f452007-09-03 12:06:45 +10001158int i915_irq_emit(struct drm_device *dev, void *data,
1159 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholtc153f452007-09-03 12:06:45 +10001162 drm_i915_irq_emit_t *emit = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163 int result;
1164
Eric Anholtd3301d82010-05-21 13:55:54 -07001165 if (!dev_priv || !dev_priv->render_ring.virtual_start) {
Márton Németh3e684ea2008-01-24 15:58:57 +10001166 DRM_ERROR("called with no initialization\n");
Eric Anholt20caafa2007-08-25 19:22:43 +10001167 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 }
Eric Anholt299eb932009-02-24 22:14:12 -08001169
1170 RING_LOCK_TEST_WITH_RETURN(dev, file_priv);
1171
Eric Anholt546b0972008-09-01 16:45:29 -07001172 mutex_lock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173 result = i915_emit_irq(dev);
Eric Anholt546b0972008-09-01 16:45:29 -07001174 mutex_unlock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175
Eric Anholtc153f452007-09-03 12:06:45 +10001176 if (DRM_COPY_TO_USER(emit->irq_seq, &result, sizeof(int))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 DRM_ERROR("copy_to_user\n");
Eric Anholt20caafa2007-08-25 19:22:43 +10001178 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 }
1180
1181 return 0;
1182}
1183
1184/* Doesn't need the hardware lock.
1185 */
Eric Anholtc153f452007-09-03 12:06:45 +10001186int i915_irq_wait(struct drm_device *dev, void *data,
1187 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholtc153f452007-09-03 12:06:45 +10001190 drm_i915_irq_wait_t *irqwait = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191
1192 if (!dev_priv) {
Márton Németh3e684ea2008-01-24 15:58:57 +10001193 DRM_ERROR("called with no initialization\n");
Eric Anholt20caafa2007-08-25 19:22:43 +10001194 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195 }
1196
Eric Anholtc153f452007-09-03 12:06:45 +10001197 return i915_wait_irq(dev, irqwait->irq_seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198}
1199
Keith Packard42f52ef2008-10-18 19:39:29 -07001200/* Called from drm generic code, passed 'crtc' which
1201 * we use as a pipe index
1202 */
1203int i915_enable_vblank(struct drm_device *dev, int pipe)
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001204{
1205 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Keith Packarde9d21d72008-10-16 11:31:38 -07001206 unsigned long irqflags;
Jesse Barnes71e0ffa2009-01-08 10:42:15 -08001207
Chris Wilson5eddb702010-09-11 13:48:45 +01001208 if (!i915_pipe_enabled(dev, pipe))
Jesse Barnes71e0ffa2009-01-08 10:42:15 -08001209 return -EINVAL;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001210
Keith Packarde9d21d72008-10-16 11:31:38 -07001211 spin_lock_irqsave(&dev_priv->user_irq_lock, irqflags);
Eric Anholtbad720f2009-10-22 16:11:14 -07001212 if (HAS_PCH_SPLIT(dev))
Li Pengc062df62010-01-23 00:12:58 +08001213 ironlake_enable_display_irq(dev_priv, (pipe == 0) ?
1214 DE_PIPEA_VBLANK: DE_PIPEB_VBLANK);
Chris Wilsona6c45cf2010-09-17 00:32:17 +01001215 else if (INTEL_INFO(dev)->gen >= 4)
Keith Packard7c463582008-11-04 02:03:27 -08001216 i915_enable_pipestat(dev_priv, pipe,
1217 PIPE_START_VBLANK_INTERRUPT_ENABLE);
Keith Packarde9d21d72008-10-16 11:31:38 -07001218 else
Keith Packard7c463582008-11-04 02:03:27 -08001219 i915_enable_pipestat(dev_priv, pipe,
1220 PIPE_VBLANK_INTERRUPT_ENABLE);
Keith Packarde9d21d72008-10-16 11:31:38 -07001221 spin_unlock_irqrestore(&dev_priv->user_irq_lock, irqflags);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001222 return 0;
1223}
1224
Keith Packard42f52ef2008-10-18 19:39:29 -07001225/* Called from drm generic code, passed 'crtc' which
1226 * we use as a pipe index
1227 */
1228void i915_disable_vblank(struct drm_device *dev, int pipe)
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001229{
1230 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Keith Packarde9d21d72008-10-16 11:31:38 -07001231 unsigned long irqflags;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001232
Keith Packarde9d21d72008-10-16 11:31:38 -07001233 spin_lock_irqsave(&dev_priv->user_irq_lock, irqflags);
Eric Anholtbad720f2009-10-22 16:11:14 -07001234 if (HAS_PCH_SPLIT(dev))
Li Pengc062df62010-01-23 00:12:58 +08001235 ironlake_disable_display_irq(dev_priv, (pipe == 0) ?
1236 DE_PIPEA_VBLANK: DE_PIPEB_VBLANK);
1237 else
1238 i915_disable_pipestat(dev_priv, pipe,
1239 PIPE_VBLANK_INTERRUPT_ENABLE |
1240 PIPE_START_VBLANK_INTERRUPT_ENABLE);
Keith Packarde9d21d72008-10-16 11:31:38 -07001241 spin_unlock_irqrestore(&dev_priv->user_irq_lock, irqflags);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001242}
1243
Jesse Barnes79e53942008-11-07 14:24:08 -08001244void i915_enable_interrupt (struct drm_device *dev)
1245{
1246 struct drm_i915_private *dev_priv = dev->dev_private;
Zhenyu Wange170b032009-06-05 15:38:40 +08001247
Eric Anholtbad720f2009-10-22 16:11:14 -07001248 if (!HAS_PCH_SPLIT(dev))
Chris Wilson3b617962010-08-24 09:02:58 +01001249 intel_opregion_enable_asle(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08001250 dev_priv->irq_enabled = 1;
1251}
1252
1253
Dave Airlie702880f2006-06-24 17:07:34 +10001254/* Set the vblank monitor pipe
1255 */
Eric Anholtc153f452007-09-03 12:06:45 +10001256int i915_vblank_pipe_set(struct drm_device *dev, void *data,
1257 struct drm_file *file_priv)
Dave Airlie702880f2006-06-24 17:07:34 +10001258{
Dave Airlie702880f2006-06-24 17:07:34 +10001259 drm_i915_private_t *dev_priv = dev->dev_private;
Dave Airlie702880f2006-06-24 17:07:34 +10001260
1261 if (!dev_priv) {
Márton Németh3e684ea2008-01-24 15:58:57 +10001262 DRM_ERROR("called with no initialization\n");
Eric Anholt20caafa2007-08-25 19:22:43 +10001263 return -EINVAL;
Dave Airlie702880f2006-06-24 17:07:34 +10001264 }
1265
=?utf-8?q?Michel_D=C3=A4nzer?=5b516942006-10-25 00:08:23 +10001266 return 0;
Dave Airlie702880f2006-06-24 17:07:34 +10001267}
1268
Eric Anholtc153f452007-09-03 12:06:45 +10001269int i915_vblank_pipe_get(struct drm_device *dev, void *data,
1270 struct drm_file *file_priv)
Dave Airlie702880f2006-06-24 17:07:34 +10001271{
Dave Airlie702880f2006-06-24 17:07:34 +10001272 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholtc153f452007-09-03 12:06:45 +10001273 drm_i915_vblank_pipe_t *pipe = data;
Dave Airlie702880f2006-06-24 17:07:34 +10001274
1275 if (!dev_priv) {
Márton Németh3e684ea2008-01-24 15:58:57 +10001276 DRM_ERROR("called with no initialization\n");
Eric Anholt20caafa2007-08-25 19:22:43 +10001277 return -EINVAL;
Dave Airlie702880f2006-06-24 17:07:34 +10001278 }
1279
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001280 pipe->pipe = DRM_I915_VBLANK_PIPE_A | DRM_I915_VBLANK_PIPE_B;
Eric Anholtc153f452007-09-03 12:06:45 +10001281
Dave Airlie702880f2006-06-24 17:07:34 +10001282 return 0;
1283}
1284
=?utf-8?q?Michel_D=C3=A4nzer?=a6b54f32006-10-24 23:37:43 +10001285/**
1286 * Schedule buffer swap at given vertical blank.
1287 */
Eric Anholtc153f452007-09-03 12:06:45 +10001288int i915_vblank_swap(struct drm_device *dev, void *data,
1289 struct drm_file *file_priv)
=?utf-8?q?Michel_D=C3=A4nzer?=a6b54f32006-10-24 23:37:43 +10001290{
Eric Anholtbd95e0a2008-11-04 12:01:24 -08001291 /* The delayed swap mechanism was fundamentally racy, and has been
1292 * removed. The model was that the client requested a delayed flip/swap
1293 * from the kernel, then waited for vblank before continuing to perform
1294 * rendering. The problem was that the kernel might wake the client
1295 * up before it dispatched the vblank swap (since the lock has to be
1296 * held while touching the ringbuffer), in which case the client would
1297 * clear and start the next frame before the swap occurred, and
1298 * flicker would occur in addition to likely missing the vblank.
1299 *
1300 * In the absence of this ioctl, userland falls back to a correct path
1301 * of waiting for a vblank, then dispatching the swap on its own.
1302 * Context switching to userland and back is plenty fast enough for
1303 * meeting the requirements of vblank swapping.
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001304 */
Eric Anholtbd95e0a2008-11-04 12:01:24 -08001305 return -EINVAL;
=?utf-8?q?Michel_D=C3=A4nzer?=a6b54f32006-10-24 23:37:43 +10001306}
1307
Chris Wilson995b6762010-08-20 13:23:26 +01001308static struct drm_i915_gem_request *
Zou Nan hai852835f2010-05-21 09:08:56 +08001309i915_get_tail_request(struct drm_device *dev)
1310{
Ben Gamarif65d9422009-09-14 17:48:44 -04001311 drm_i915_private_t *dev_priv = dev->dev_private;
Zou Nan hai852835f2010-05-21 09:08:56 +08001312 return list_entry(dev_priv->render_ring.request_list.prev,
1313 struct drm_i915_gem_request, list);
Ben Gamarif65d9422009-09-14 17:48:44 -04001314}
1315
1316/**
1317 * This is called when the chip hasn't reported back with completed
1318 * batchbuffers in a long time. The first time this is called we simply record
1319 * ACTHD. If ACTHD hasn't changed by the time the hangcheck timer elapses
1320 * again, we assume the chip is wedged and try to fix it.
1321 */
1322void i915_hangcheck_elapsed(unsigned long data)
1323{
1324 struct drm_device *dev = (struct drm_device *)data;
1325 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsoncbb465e2010-06-06 12:16:24 +01001326 uint32_t acthd, instdone, instdone1;
Eric Anholtb9201c12010-01-08 14:25:16 -08001327
Chris Wilsona6c45cf2010-09-17 00:32:17 +01001328 if (INTEL_INFO(dev)->gen < 4) {
Ben Gamarif65d9422009-09-14 17:48:44 -04001329 acthd = I915_READ(ACTHD);
Chris Wilsoncbb465e2010-06-06 12:16:24 +01001330 instdone = I915_READ(INSTDONE);
1331 instdone1 = 0;
1332 } else {
Ben Gamarif65d9422009-09-14 17:48:44 -04001333 acthd = I915_READ(ACTHD_I965);
Chris Wilsoncbb465e2010-06-06 12:16:24 +01001334 instdone = I915_READ(INSTDONE_I965);
1335 instdone1 = I915_READ(INSTDONE1);
1336 }
Ben Gamarif65d9422009-09-14 17:48:44 -04001337
1338 /* If all work is done then ACTHD clearly hasn't advanced. */
Zou Nan hai852835f2010-05-21 09:08:56 +08001339 if (list_empty(&dev_priv->render_ring.request_list) ||
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001340 i915_seqno_passed(dev_priv->render_ring.get_seqno(dev, &dev_priv->render_ring),
1341 i915_get_tail_request(dev)->seqno)) {
Chris Wilson7839d952010-09-09 00:02:03 +01001342 bool missed_wakeup = false;
1343
Ben Gamarif65d9422009-09-14 17:48:44 -04001344 dev_priv->hangcheck_count = 0;
Chris Wilsone78d73b2010-08-07 14:18:47 +01001345
1346 /* Issue a wake-up to catch stuck h/w. */
Chris Wilson7839d952010-09-09 00:02:03 +01001347 if (dev_priv->render_ring.waiting_gem_seqno &&
1348 waitqueue_active(&dev_priv->render_ring.irq_queue)) {
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001349 wake_up_all(&dev_priv->render_ring.irq_queue);
Chris Wilson7839d952010-09-09 00:02:03 +01001350 missed_wakeup = true;
Chris Wilsone78d73b2010-08-07 14:18:47 +01001351 }
Chris Wilson7839d952010-09-09 00:02:03 +01001352
1353 if (dev_priv->bsd_ring.waiting_gem_seqno &&
1354 waitqueue_active(&dev_priv->bsd_ring.irq_queue)) {
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001355 wake_up_all(&dev_priv->bsd_ring.irq_queue);
Chris Wilson7839d952010-09-09 00:02:03 +01001356 missed_wakeup = true;
1357 }
1358
1359 if (missed_wakeup)
1360 DRM_ERROR("Hangcheck timer elapsed... GPU idle, missed IRQ.\n");
Ben Gamarif65d9422009-09-14 17:48:44 -04001361 return;
1362 }
1363
Chris Wilsoncbb465e2010-06-06 12:16:24 +01001364 if (dev_priv->last_acthd == acthd &&
1365 dev_priv->last_instdone == instdone &&
1366 dev_priv->last_instdone1 == instdone1) {
1367 if (dev_priv->hangcheck_count++ > 1) {
1368 DRM_ERROR("Hangcheck timer elapsed... GPU hung\n");
Chris Wilson8c80b592010-08-08 20:38:12 +01001369
1370 if (!IS_GEN2(dev)) {
1371 /* Is the chip hanging on a WAIT_FOR_EVENT?
1372 * If so we can simply poke the RB_WAIT bit
1373 * and break the hang. This should work on
1374 * all but the second generation chipsets.
1375 */
1376 u32 tmp = I915_READ(PRB0_CTL);
1377 if (tmp & RING_WAIT) {
1378 I915_WRITE(PRB0_CTL, tmp);
1379 POSTING_READ(PRB0_CTL);
1380 goto out;
1381 }
1382 }
1383
Chris Wilsoncbb465e2010-06-06 12:16:24 +01001384 i915_handle_error(dev, true);
1385 return;
1386 }
1387 } else {
1388 dev_priv->hangcheck_count = 0;
1389
1390 dev_priv->last_acthd = acthd;
1391 dev_priv->last_instdone = instdone;
1392 dev_priv->last_instdone1 = instdone1;
1393 }
Ben Gamarif65d9422009-09-14 17:48:44 -04001394
Chris Wilson8c80b592010-08-08 20:38:12 +01001395out:
Ben Gamarif65d9422009-09-14 17:48:44 -04001396 /* Reset timer case chip hangs without another request being added */
Chris Wilsonb3b079d2010-09-13 23:44:34 +01001397 mod_timer(&dev_priv->hangcheck_timer,
1398 jiffies + msecs_to_jiffies(DRM_I915_HANGCHECK_PERIOD));
Ben Gamarif65d9422009-09-14 17:48:44 -04001399}
1400
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401/* drm_dma.h hooks
1402*/
Adam Jacksonf2b115e2009-12-03 17:14:42 -05001403static void ironlake_irq_preinstall(struct drm_device *dev)
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001404{
1405 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
1406
1407 I915_WRITE(HWSTAM, 0xeffe);
1408
1409 /* XXX hotplug from PCH */
1410
1411 I915_WRITE(DEIMR, 0xffffffff);
1412 I915_WRITE(DEIER, 0x0);
1413 (void) I915_READ(DEIER);
1414
1415 /* and GT */
1416 I915_WRITE(GTIMR, 0xffffffff);
1417 I915_WRITE(GTIER, 0x0);
1418 (void) I915_READ(GTIER);
Zhenyu Wangc6501562009-11-03 18:57:21 +00001419
1420 /* south display irq */
1421 I915_WRITE(SDEIMR, 0xffffffff);
1422 I915_WRITE(SDEIER, 0x0);
1423 (void) I915_READ(SDEIER);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001424}
1425
Adam Jacksonf2b115e2009-12-03 17:14:42 -05001426static int ironlake_irq_postinstall(struct drm_device *dev)
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001427{
1428 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
1429 /* enable kind of interrupts always enabled */
Jesse Barnes013d5aa2010-01-29 11:18:31 -08001430 u32 display_mask = DE_MASTER_IRQ_CONTROL | DE_GSE | DE_PCH_EVENT |
1431 DE_PLANEA_FLIP_DONE | DE_PLANEB_FLIP_DONE;
Zou Nan haid1b851f2010-05-21 09:08:57 +08001432 u32 render_mask = GT_PIPE_NOTIFY | GT_BSD_USER_INTERRUPT;
Zhenyu Wangc6501562009-11-03 18:57:21 +00001433 u32 hotplug_mask = SDE_CRT_HOTPLUG | SDE_PORTB_HOTPLUG |
1434 SDE_PORTC_HOTPLUG | SDE_PORTD_HOTPLUG;
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001435
1436 dev_priv->irq_mask_reg = ~display_mask;
Li Peng643ced92010-01-28 01:05:09 +08001437 dev_priv->de_irq_enable_reg = display_mask | DE_PIPEA_VBLANK | DE_PIPEB_VBLANK;
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001438
1439 /* should always can generate irq */
1440 I915_WRITE(DEIIR, I915_READ(DEIIR));
1441 I915_WRITE(DEIMR, dev_priv->irq_mask_reg);
1442 I915_WRITE(DEIER, dev_priv->de_irq_enable_reg);
1443 (void) I915_READ(DEIER);
1444
Zhenyu Wang3fdef022010-08-19 09:46:15 +08001445 if (IS_GEN6(dev))
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001446 render_mask = GT_PIPE_NOTIFY | GT_GEN6_BSD_USER_INTERRUPT;
Zhenyu Wang3fdef022010-08-19 09:46:15 +08001447
Zou Nan hai852835f2010-05-21 09:08:56 +08001448 dev_priv->gt_irq_mask_reg = ~render_mask;
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001449 dev_priv->gt_irq_enable_reg = render_mask;
1450
1451 I915_WRITE(GTIIR, I915_READ(GTIIR));
1452 I915_WRITE(GTIMR, dev_priv->gt_irq_mask_reg);
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001453 if (IS_GEN6(dev)) {
Zhenyu Wang3fdef022010-08-19 09:46:15 +08001454 I915_WRITE(GEN6_RENDER_IMR, ~GEN6_RENDER_PIPE_CONTROL_NOTIFY_INTERRUPT);
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001455 I915_WRITE(GEN6_BSD_IMR, ~GEN6_BSD_IMR_USER_INTERRUPT);
1456 }
1457
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001458 I915_WRITE(GTIER, dev_priv->gt_irq_enable_reg);
1459 (void) I915_READ(GTIER);
1460
Zhenyu Wangc6501562009-11-03 18:57:21 +00001461 dev_priv->pch_irq_mask_reg = ~hotplug_mask;
1462 dev_priv->pch_irq_enable_reg = hotplug_mask;
1463
1464 I915_WRITE(SDEIIR, I915_READ(SDEIIR));
1465 I915_WRITE(SDEIMR, dev_priv->pch_irq_mask_reg);
1466 I915_WRITE(SDEIER, dev_priv->pch_irq_enable_reg);
1467 (void) I915_READ(SDEIER);
1468
Jesse Barnesf97108d2010-01-29 11:27:07 -08001469 if (IS_IRONLAKE_M(dev)) {
1470 /* Clear & enable PCU event interrupts */
1471 I915_WRITE(DEIIR, DE_PCU_EVENT);
1472 I915_WRITE(DEIER, I915_READ(DEIER) | DE_PCU_EVENT);
1473 ironlake_enable_display_irq(dev_priv, DE_PCU_EVENT);
1474 }
1475
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001476 return 0;
1477}
1478
Dave Airlie84b1fd12007-07-11 15:53:27 +10001479void i915_driver_irq_preinstall(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480{
1481 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
1482
Jesse Barnes79e53942008-11-07 14:24:08 -08001483 atomic_set(&dev_priv->irq_received, 0);
1484
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001485 INIT_WORK(&dev_priv->hotplug_work, i915_hotplug_work_func);
Jesse Barnes8a905232009-07-11 16:48:03 -04001486 INIT_WORK(&dev_priv->error_work, i915_error_work_func);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001487
Eric Anholtbad720f2009-10-22 16:11:14 -07001488 if (HAS_PCH_SPLIT(dev)) {
Adam Jacksonf2b115e2009-12-03 17:14:42 -05001489 ironlake_irq_preinstall(dev);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001490 return;
1491 }
1492
Jesse Barnes5ca58282009-03-31 14:11:15 -07001493 if (I915_HAS_HOTPLUG(dev)) {
1494 I915_WRITE(PORT_HOTPLUG_EN, 0);
1495 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
1496 }
1497
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001498 I915_WRITE(HWSTAM, 0xeffe);
Keith Packard7c463582008-11-04 02:03:27 -08001499 I915_WRITE(PIPEASTAT, 0);
1500 I915_WRITE(PIPEBSTAT, 0);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001501 I915_WRITE(IMR, 0xffffffff);
Eric Anholted4cb412008-07-29 12:10:39 -07001502 I915_WRITE(IER, 0x0);
Keith Packard7c463582008-11-04 02:03:27 -08001503 (void) I915_READ(IER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504}
1505
Jesse Barnesb01f2c32009-12-11 11:07:17 -08001506/*
1507 * Must be called after intel_modeset_init or hotplug interrupts won't be
1508 * enabled correctly.
1509 */
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001510int i915_driver_irq_postinstall(struct drm_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511{
1512 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Jesse Barnes5ca58282009-03-31 14:11:15 -07001513 u32 enable_mask = I915_INTERRUPT_ENABLE_FIX | I915_INTERRUPT_ENABLE_VAR;
Jesse Barnes63eeaf32009-06-18 16:56:52 -07001514 u32 error_mask;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001515
Zou Nan hai852835f2010-05-21 09:08:56 +08001516 DRM_INIT_WAITQUEUE(&dev_priv->render_ring.irq_queue);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001517
Zou Nan haid1b851f2010-05-21 09:08:57 +08001518 if (HAS_BSD(dev))
1519 DRM_INIT_WAITQUEUE(&dev_priv->bsd_ring.irq_queue);
1520
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001521 dev_priv->vblank_pipe = DRM_I915_VBLANK_PIPE_A | DRM_I915_VBLANK_PIPE_B;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001522
Eric Anholtbad720f2009-10-22 16:11:14 -07001523 if (HAS_PCH_SPLIT(dev))
Adam Jacksonf2b115e2009-12-03 17:14:42 -05001524 return ironlake_irq_postinstall(dev);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001525
Keith Packard7c463582008-11-04 02:03:27 -08001526 /* Unmask the interrupts that we always want on. */
1527 dev_priv->irq_mask_reg = ~I915_INTERRUPT_ENABLE_FIX;
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +01001528
Keith Packard7c463582008-11-04 02:03:27 -08001529 dev_priv->pipestat[0] = 0;
1530 dev_priv->pipestat[1] = 0;
1531
Jesse Barnes5ca58282009-03-31 14:11:15 -07001532 if (I915_HAS_HOTPLUG(dev)) {
Adam Jacksonc496fa12010-05-27 17:26:45 -04001533 /* Enable in IER... */
1534 enable_mask |= I915_DISPLAY_PORT_INTERRUPT;
1535 /* and unmask in IMR */
1536 dev_priv->irq_mask_reg &= ~I915_DISPLAY_PORT_INTERRUPT;
1537 }
1538
1539 /*
1540 * Enable some error detection, note the instruction error mask
1541 * bit is reserved, so we leave it masked.
1542 */
1543 if (IS_G4X(dev)) {
1544 error_mask = ~(GM45_ERROR_PAGE_TABLE |
1545 GM45_ERROR_MEM_PRIV |
1546 GM45_ERROR_CP_PRIV |
1547 I915_ERROR_MEMORY_REFRESH);
1548 } else {
1549 error_mask = ~(I915_ERROR_PAGE_TABLE |
1550 I915_ERROR_MEMORY_REFRESH);
1551 }
1552 I915_WRITE(EMR, error_mask);
1553
1554 I915_WRITE(IMR, dev_priv->irq_mask_reg);
1555 I915_WRITE(IER, enable_mask);
1556 (void) I915_READ(IER);
1557
1558 if (I915_HAS_HOTPLUG(dev)) {
Jesse Barnes5ca58282009-03-31 14:11:15 -07001559 u32 hotplug_en = I915_READ(PORT_HOTPLUG_EN);
1560
Jesse Barnesb01f2c32009-12-11 11:07:17 -08001561 /* Note HDMI and DP share bits */
1562 if (dev_priv->hotplug_supported_mask & HDMIB_HOTPLUG_INT_STATUS)
1563 hotplug_en |= HDMIB_HOTPLUG_INT_EN;
1564 if (dev_priv->hotplug_supported_mask & HDMIC_HOTPLUG_INT_STATUS)
1565 hotplug_en |= HDMIC_HOTPLUG_INT_EN;
1566 if (dev_priv->hotplug_supported_mask & HDMID_HOTPLUG_INT_STATUS)
1567 hotplug_en |= HDMID_HOTPLUG_INT_EN;
1568 if (dev_priv->hotplug_supported_mask & SDVOC_HOTPLUG_INT_STATUS)
1569 hotplug_en |= SDVOC_HOTPLUG_INT_EN;
1570 if (dev_priv->hotplug_supported_mask & SDVOB_HOTPLUG_INT_STATUS)
1571 hotplug_en |= SDVOB_HOTPLUG_INT_EN;
Andy Lutomirski2d1c9752010-06-12 05:21:18 -04001572 if (dev_priv->hotplug_supported_mask & CRT_HOTPLUG_INT_STATUS) {
Jesse Barnesb01f2c32009-12-11 11:07:17 -08001573 hotplug_en |= CRT_HOTPLUG_INT_EN;
Andy Lutomirski2d1c9752010-06-12 05:21:18 -04001574
1575 /* Programming the CRT detection parameters tends
1576 to generate a spurious hotplug event about three
1577 seconds later. So just do it once.
1578 */
1579 if (IS_G4X(dev))
1580 hotplug_en |= CRT_HOTPLUG_ACTIVATION_PERIOD_64;
1581 hotplug_en |= CRT_HOTPLUG_VOLTAGE_COMPARE_50;
1582 }
1583
Jesse Barnesb01f2c32009-12-11 11:07:17 -08001584 /* Ignore TV since it's buggy */
1585
Jesse Barnes5ca58282009-03-31 14:11:15 -07001586 I915_WRITE(PORT_HOTPLUG_EN, hotplug_en);
Jesse Barnes5ca58282009-03-31 14:11:15 -07001587 }
1588
Chris Wilson3b617962010-08-24 09:02:58 +01001589 intel_opregion_enable_asle(dev);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001590
1591 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592}
1593
Adam Jacksonf2b115e2009-12-03 17:14:42 -05001594static void ironlake_irq_uninstall(struct drm_device *dev)
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001595{
1596 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
1597 I915_WRITE(HWSTAM, 0xffffffff);
1598
1599 I915_WRITE(DEIMR, 0xffffffff);
1600 I915_WRITE(DEIER, 0x0);
1601 I915_WRITE(DEIIR, I915_READ(DEIIR));
1602
1603 I915_WRITE(GTIMR, 0xffffffff);
1604 I915_WRITE(GTIER, 0x0);
1605 I915_WRITE(GTIIR, I915_READ(GTIIR));
1606}
1607
Dave Airlie84b1fd12007-07-11 15:53:27 +10001608void i915_driver_irq_uninstall(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609{
1610 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Dave Airlie91e37382006-02-18 15:17:04 +11001611
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612 if (!dev_priv)
1613 return;
1614
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001615 dev_priv->vblank_pipe = 0;
1616
Eric Anholtbad720f2009-10-22 16:11:14 -07001617 if (HAS_PCH_SPLIT(dev)) {
Adam Jacksonf2b115e2009-12-03 17:14:42 -05001618 ironlake_irq_uninstall(dev);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001619 return;
1620 }
1621
Jesse Barnes5ca58282009-03-31 14:11:15 -07001622 if (I915_HAS_HOTPLUG(dev)) {
1623 I915_WRITE(PORT_HOTPLUG_EN, 0);
1624 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
1625 }
1626
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001627 I915_WRITE(HWSTAM, 0xffffffff);
Keith Packard7c463582008-11-04 02:03:27 -08001628 I915_WRITE(PIPEASTAT, 0);
1629 I915_WRITE(PIPEBSTAT, 0);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001630 I915_WRITE(IMR, 0xffffffff);
Eric Anholted4cb412008-07-29 12:10:39 -07001631 I915_WRITE(IER, 0x0);
Dave Airlie91e37382006-02-18 15:17:04 +11001632
Keith Packard7c463582008-11-04 02:03:27 -08001633 I915_WRITE(PIPEASTAT, I915_READ(PIPEASTAT) & 0x8000ffff);
1634 I915_WRITE(PIPEBSTAT, I915_READ(PIPEBSTAT) & 0x8000ffff);
1635 I915_WRITE(IIR, I915_READ(IIR));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636}