blob: 0a3a5806a12ed58b66235ab7fc831bae3fd82505 [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 */
88void
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,
174 I915_LEGACY_BLC_EVENT_ENABLE);
Zhao Yakuiedcb49c2010-04-07 17:11:21 +0800175 if (IS_I965G(dev))
176 i915_enable_pipestat(dev_priv, 0,
177 I915_LEGACY_BLC_EVENT_ENABLE);
178 }
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;
194 unsigned long pipeconf = pipe ? PIPEBCONF : PIPEACONF;
195
196 if (I915_READ(pipeconf) & PIPEACONF_ENABLE)
197 return 1;
198
199 return 0;
200}
201
Keith Packard42f52ef2008-10-18 19:39:29 -0700202/* Called from drm generic code, passed a 'crtc', which
203 * we use as a pipe index
204 */
205u32 i915_get_vblank_counter(struct drm_device *dev, int pipe)
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700206{
207 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
208 unsigned long high_frame;
209 unsigned long low_frame;
210 u32 high1, high2, low, count;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700211
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700212 high_frame = pipe ? PIPEBFRAMEHIGH : PIPEAFRAMEHIGH;
213 low_frame = pipe ? PIPEBFRAMEPIXEL : PIPEAFRAMEPIXEL;
214
215 if (!i915_pipe_enabled(dev, pipe)) {
Zhao Yakui44d98a62009-10-09 11:39:40 +0800216 DRM_DEBUG_DRIVER("trying to get vblank count for disabled "
217 "pipe %d\n", pipe);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700218 return 0;
219 }
220
221 /*
222 * High & low register fields aren't synchronized, so make sure
223 * we get a low value that's stable across two reads of the high
224 * register.
225 */
226 do {
227 high1 = ((I915_READ(high_frame) & PIPE_FRAME_HIGH_MASK) >>
228 PIPE_FRAME_HIGH_SHIFT);
229 low = ((I915_READ(low_frame) & PIPE_FRAME_LOW_MASK) >>
230 PIPE_FRAME_LOW_SHIFT);
231 high2 = ((I915_READ(high_frame) & PIPE_FRAME_HIGH_MASK) >>
232 PIPE_FRAME_HIGH_SHIFT);
233 } while (high1 != high2);
234
235 count = (high1 << 8) | low;
236
237 return count;
238}
239
Jesse Barnes9880b7a2009-02-06 10:22:41 -0800240u32 gm45_get_vblank_counter(struct drm_device *dev, int pipe)
241{
242 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
243 int reg = pipe ? PIPEB_FRMCOUNT_GM45 : PIPEA_FRMCOUNT_GM45;
244
245 if (!i915_pipe_enabled(dev, pipe)) {
Zhao Yakui44d98a62009-10-09 11:39:40 +0800246 DRM_DEBUG_DRIVER("trying to get vblank count for disabled "
247 "pipe %d\n", pipe);
Jesse Barnes9880b7a2009-02-06 10:22:41 -0800248 return 0;
249 }
250
251 return I915_READ(reg);
252}
253
Jesse Barnes5ca58282009-03-31 14:11:15 -0700254/*
255 * Handle hotplug events outside the interrupt handler proper.
256 */
257static void i915_hotplug_work_func(struct work_struct *work)
258{
259 drm_i915_private_t *dev_priv = container_of(work, drm_i915_private_t,
260 hotplug_work);
261 struct drm_device *dev = dev_priv->dev;
Keith Packardc31c4ba2009-05-06 11:48:58 -0700262 struct drm_mode_config *mode_config = &dev->mode_config;
Zhenyu Wang5bf4c9c2010-03-30 14:39:26 +0800263 struct drm_encoder *encoder;
Jesse Barnes5ca58282009-03-31 14:11:15 -0700264
Zhenyu Wang5bf4c9c2010-03-30 14:39:26 +0800265 if (mode_config->num_encoder) {
266 list_for_each_entry(encoder, &mode_config->encoder_list, head) {
267 struct intel_encoder *intel_encoder = enc_to_intel_encoder(encoder);
Keith Packardc31c4ba2009-05-06 11:48:58 -0700268
Eric Anholt21d40d32010-03-25 11:11:14 -0700269 if (intel_encoder->hot_plug)
270 (*intel_encoder->hot_plug) (intel_encoder);
Keith Packardc31c4ba2009-05-06 11:48:58 -0700271 }
272 }
Jesse Barnes5ca58282009-03-31 14:11:15 -0700273 /* Just fire off a uevent and let userspace tell us what to do */
Dave Airlieeb1f8e42010-05-07 06:42:51 +0000274 drm_helper_hpd_irq_event(dev);
Jesse Barnes5ca58282009-03-31 14:11:15 -0700275}
276
Jesse Barnesf97108d2010-01-29 11:27:07 -0800277static void i915_handle_rps_change(struct drm_device *dev)
278{
279 drm_i915_private_t *dev_priv = dev->dev_private;
Matthew Garrettb5b72e82010-02-02 18:30:47 +0000280 u32 busy_up, busy_down, max_avg, min_avg;
Jesse Barnesf97108d2010-01-29 11:27:07 -0800281 u16 rgvswctl;
282 u8 new_delay = dev_priv->cur_delay;
283
284 I915_WRITE(MEMINTRSTS, I915_READ(MEMINTRSTS) & ~MEMINT_EVAL_CHG);
Matthew Garrettb5b72e82010-02-02 18:30:47 +0000285 busy_up = I915_READ(RCPREVBSYTUPAVG);
286 busy_down = I915_READ(RCPREVBSYTDNAVG);
Jesse Barnesf97108d2010-01-29 11:27:07 -0800287 max_avg = I915_READ(RCBMAXAVG);
288 min_avg = I915_READ(RCBMINAVG);
289
290 /* Handle RCS change request from hw */
Matthew Garrettb5b72e82010-02-02 18:30:47 +0000291 if (busy_up > max_avg) {
Jesse Barnesf97108d2010-01-29 11:27:07 -0800292 if (dev_priv->cur_delay != dev_priv->max_delay)
293 new_delay = dev_priv->cur_delay - 1;
294 if (new_delay < dev_priv->max_delay)
295 new_delay = dev_priv->max_delay;
Matthew Garrettb5b72e82010-02-02 18:30:47 +0000296 } else if (busy_down < min_avg) {
Jesse Barnesf97108d2010-01-29 11:27:07 -0800297 if (dev_priv->cur_delay != dev_priv->min_delay)
298 new_delay = dev_priv->cur_delay + 1;
299 if (new_delay > dev_priv->min_delay)
300 new_delay = dev_priv->min_delay;
301 }
302
303 DRM_DEBUG("rps change requested: %d -> %d\n",
304 dev_priv->cur_delay, new_delay);
305
306 rgvswctl = I915_READ(MEMSWCTL);
307 if (rgvswctl & MEMCTL_CMD_STS) {
Matthew Garrettb5b72e82010-02-02 18:30:47 +0000308 DRM_ERROR("gpu busy, RCS change rejected\n");
309 return; /* still busy with another command */
Jesse Barnesf97108d2010-01-29 11:27:07 -0800310 }
311
312 /* Program the new state */
313 rgvswctl = (MEMCTL_CMD_CHFREQ << MEMCTL_CMD_SHIFT) |
314 (new_delay << MEMCTL_FREQ_SHIFT) | MEMCTL_SFCAVM;
315 I915_WRITE(MEMSWCTL, rgvswctl);
316 POSTING_READ(MEMSWCTL);
317
318 rgvswctl |= MEMCTL_CMD_STS;
319 I915_WRITE(MEMSWCTL, rgvswctl);
320
321 dev_priv->cur_delay = new_delay;
322
323 DRM_DEBUG("rps changed\n");
324
325 return;
326}
327
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500328irqreturn_t ironlake_irq_handler(struct drm_device *dev)
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800329{
330 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
331 int ret = IRQ_NONE;
Dave Airlie3ff99162009-12-08 14:03:47 +1000332 u32 de_iir, gt_iir, de_ier, pch_iir;
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800333 struct drm_i915_master_private *master_priv;
Zou Nan hai852835f2010-05-21 09:08:56 +0800334 struct intel_ring_buffer *render_ring = &dev_priv->render_ring;
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800335
Zou, Nanhai2d109a82009-11-06 02:13:01 +0000336 /* disable master interrupt before clearing iir */
337 de_ier = I915_READ(DEIER);
338 I915_WRITE(DEIER, de_ier & ~DE_MASTER_IRQ_CONTROL);
339 (void)I915_READ(DEIER);
340
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800341 de_iir = I915_READ(DEIIR);
342 gt_iir = I915_READ(GTIIR);
Zhenyu Wangc6501562009-11-03 18:57:21 +0000343 pch_iir = I915_READ(SDEIIR);
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800344
Zou Nan haic7c85102010-01-15 10:29:06 +0800345 if (de_iir == 0 && gt_iir == 0 && pch_iir == 0)
346 goto done;
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800347
Zou Nan haic7c85102010-01-15 10:29:06 +0800348 ret = IRQ_HANDLED;
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800349
Zou Nan haic7c85102010-01-15 10:29:06 +0800350 if (dev->primary->master) {
351 master_priv = dev->primary->master->driver_priv;
352 if (master_priv->sarea_priv)
353 master_priv->sarea_priv->last_dispatch =
354 READ_BREADCRUMB(dev_priv);
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800355 }
356
Jesse Barnese552eb72010-04-21 11:39:23 -0700357 if (gt_iir & GT_PIPE_NOTIFY) {
Zou Nan hai852835f2010-05-21 09:08:56 +0800358 u32 seqno = render_ring->get_gem_seqno(dev, render_ring);
359 render_ring->irq_gem_seqno = seqno;
Zou Nan haic7c85102010-01-15 10:29:06 +0800360 trace_i915_gem_request_complete(dev, seqno);
Zou Nan hai852835f2010-05-21 09:08:56 +0800361 DRM_WAKEUP(&dev_priv->render_ring.irq_queue);
Zou Nan haic7c85102010-01-15 10:29:06 +0800362 dev_priv->hangcheck_count = 0;
363 mod_timer(&dev_priv->hangcheck_timer, jiffies + DRM_I915_HANGCHECK_PERIOD);
364 }
Zou Nan haid1b851f2010-05-21 09:08:57 +0800365 if (gt_iir & GT_BSD_USER_INTERRUPT)
366 DRM_WAKEUP(&dev_priv->bsd_ring.irq_queue);
367
Zou Nan haic7c85102010-01-15 10:29:06 +0800368
369 if (de_iir & DE_GSE)
370 ironlake_opregion_gse_intr(dev);
371
Zhenyu Wangf072d2e2010-02-09 09:46:19 +0800372 if (de_iir & DE_PLANEA_FLIP_DONE) {
Jesse Barnes013d5aa2010-01-29 11:18:31 -0800373 intel_prepare_page_flip(dev, 0);
Jesse Barnes013d5aa2010-01-29 11:18:31 -0800374 intel_finish_page_flip(dev, 0);
375 }
376
Zhenyu Wangf072d2e2010-02-09 09:46:19 +0800377 if (de_iir & DE_PLANEB_FLIP_DONE) {
378 intel_prepare_page_flip(dev, 1);
Jesse Barnes013d5aa2010-01-29 11:18:31 -0800379 intel_finish_page_flip(dev, 1);
380 }
Li Pengc062df62010-01-23 00:12:58 +0800381
Zhenyu Wangf072d2e2010-02-09 09:46:19 +0800382 if (de_iir & DE_PIPEA_VBLANK)
383 drm_handle_vblank(dev, 0);
384
385 if (de_iir & DE_PIPEB_VBLANK)
386 drm_handle_vblank(dev, 1);
387
Zou Nan haic7c85102010-01-15 10:29:06 +0800388 /* check event from PCH */
389 if ((de_iir & DE_PCH_EVENT) &&
390 (pch_iir & SDE_HOTPLUG_MASK)) {
391 queue_work(dev_priv->wq, &dev_priv->hotplug_work);
392 }
393
Jesse Barnesf97108d2010-01-29 11:27:07 -0800394 if (de_iir & DE_PCU_EVENT) {
395 I915_WRITE(MEMINTRSTS, I915_READ(MEMINTRSTS));
396 i915_handle_rps_change(dev);
397 }
398
Zou Nan haic7c85102010-01-15 10:29:06 +0800399 /* should clear PCH hotplug event before clear CPU irq */
400 I915_WRITE(SDEIIR, pch_iir);
401 I915_WRITE(GTIIR, gt_iir);
402 I915_WRITE(DEIIR, de_iir);
403
404done:
Zou, Nanhai2d109a82009-11-06 02:13:01 +0000405 I915_WRITE(DEIER, de_ier);
406 (void)I915_READ(DEIER);
407
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800408 return ret;
409}
410
Jesse Barnes8a905232009-07-11 16:48:03 -0400411/**
412 * i915_error_work_func - do process context error handling work
413 * @work: work struct
414 *
415 * Fire an error uevent so userspace can see that a hang or error
416 * was detected.
417 */
418static void i915_error_work_func(struct work_struct *work)
419{
420 drm_i915_private_t *dev_priv = container_of(work, drm_i915_private_t,
421 error_work);
422 struct drm_device *dev = dev_priv->dev;
Ben Gamarif316a422009-09-14 17:48:46 -0400423 char *error_event[] = { "ERROR=1", NULL };
424 char *reset_event[] = { "RESET=1", NULL };
425 char *reset_done_event[] = { "ERROR=0", NULL };
Jesse Barnes8a905232009-07-11 16:48:03 -0400426
Zhao Yakui44d98a62009-10-09 11:39:40 +0800427 DRM_DEBUG_DRIVER("generating error event\n");
Ben Gamarif316a422009-09-14 17:48:46 -0400428 kobject_uevent_env(&dev->primary->kdev.kobj, KOBJ_CHANGE, error_event);
Jesse Barnes8a905232009-07-11 16:48:03 -0400429
Ben Gamariba1234d2009-09-14 17:48:47 -0400430 if (atomic_read(&dev_priv->mm.wedged)) {
Ben Gamarif316a422009-09-14 17:48:46 -0400431 if (IS_I965G(dev)) {
Zhao Yakui44d98a62009-10-09 11:39:40 +0800432 DRM_DEBUG_DRIVER("resetting chip\n");
Ben Gamarif316a422009-09-14 17:48:46 -0400433 kobject_uevent_env(&dev->primary->kdev.kobj, KOBJ_CHANGE, reset_event);
434 if (!i965_reset(dev, GDRST_RENDER)) {
Ben Gamariba1234d2009-09-14 17:48:47 -0400435 atomic_set(&dev_priv->mm.wedged, 0);
Ben Gamarif316a422009-09-14 17:48:46 -0400436 kobject_uevent_env(&dev->primary->kdev.kobj, KOBJ_CHANGE, reset_done_event);
437 }
438 } else {
Zhao Yakui44d98a62009-10-09 11:39:40 +0800439 DRM_DEBUG_DRIVER("reboot required\n");
Ben Gamarif316a422009-09-14 17:48:46 -0400440 }
441 }
Jesse Barnes8a905232009-07-11 16:48:03 -0400442}
443
Chris Wilson9df30792010-02-18 10:24:56 +0000444static struct drm_i915_error_object *
445i915_error_object_create(struct drm_device *dev,
446 struct drm_gem_object *src)
447{
448 struct drm_i915_error_object *dst;
449 struct drm_i915_gem_object *src_priv;
450 int page, page_count;
451
452 if (src == NULL)
453 return NULL;
454
Daniel Vetter23010e42010-03-08 13:35:02 +0100455 src_priv = to_intel_bo(src);
Chris Wilson9df30792010-02-18 10:24:56 +0000456 if (src_priv->pages == NULL)
457 return NULL;
458
459 page_count = src->size / PAGE_SIZE;
460
461 dst = kmalloc(sizeof(*dst) + page_count * sizeof (u32 *), GFP_ATOMIC);
462 if (dst == NULL)
463 return NULL;
464
465 for (page = 0; page < page_count; page++) {
466 void *s, *d = kmalloc(PAGE_SIZE, GFP_ATOMIC);
Andrew Morton788885a2010-05-11 14:07:05 -0700467 unsigned long flags;
468
Chris Wilson9df30792010-02-18 10:24:56 +0000469 if (d == NULL)
470 goto unwind;
Andrew Morton788885a2010-05-11 14:07:05 -0700471 local_irq_save(flags);
472 s = kmap_atomic(src_priv->pages[page], KM_IRQ0);
Chris Wilson9df30792010-02-18 10:24:56 +0000473 memcpy(d, s, PAGE_SIZE);
Andrew Morton788885a2010-05-11 14:07:05 -0700474 kunmap_atomic(s, KM_IRQ0);
475 local_irq_restore(flags);
Chris Wilson9df30792010-02-18 10:24:56 +0000476 dst->pages[page] = d;
477 }
478 dst->page_count = page_count;
479 dst->gtt_offset = src_priv->gtt_offset;
480
481 return dst;
482
483unwind:
484 while (page--)
485 kfree(dst->pages[page]);
486 kfree(dst);
487 return NULL;
488}
489
490static void
491i915_error_object_free(struct drm_i915_error_object *obj)
492{
493 int page;
494
495 if (obj == NULL)
496 return;
497
498 for (page = 0; page < obj->page_count; page++)
499 kfree(obj->pages[page]);
500
501 kfree(obj);
502}
503
504static void
505i915_error_state_free(struct drm_device *dev,
506 struct drm_i915_error_state *error)
507{
508 i915_error_object_free(error->batchbuffer[0]);
509 i915_error_object_free(error->batchbuffer[1]);
510 i915_error_object_free(error->ringbuffer);
511 kfree(error->active_bo);
512 kfree(error);
513}
514
515static u32
516i915_get_bbaddr(struct drm_device *dev, u32 *ring)
517{
518 u32 cmd;
519
520 if (IS_I830(dev) || IS_845G(dev))
521 cmd = MI_BATCH_BUFFER;
522 else if (IS_I965G(dev))
523 cmd = (MI_BATCH_BUFFER_START | (2 << 6) |
524 MI_BATCH_NON_SECURE_I965);
525 else
526 cmd = (MI_BATCH_BUFFER_START | (2 << 6));
527
528 return ring[0] == cmd ? ring[1] : 0;
529}
530
531static u32
532i915_ringbuffer_last_batch(struct drm_device *dev)
533{
534 struct drm_i915_private *dev_priv = dev->dev_private;
535 u32 head, bbaddr;
536 u32 *ring;
537
538 /* Locate the current position in the ringbuffer and walk back
539 * to find the most recently dispatched batch buffer.
540 */
541 bbaddr = 0;
542 head = I915_READ(PRB0_HEAD) & HEAD_ADDR;
Eric Anholtd3301d82010-05-21 13:55:54 -0700543 ring = (u32 *)(dev_priv->render_ring.virtual_start + head);
Chris Wilson9df30792010-02-18 10:24:56 +0000544
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 if (bbaddr == 0) {
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800552 ring = (u32 *)(dev_priv->render_ring.virtual_start
553 + dev_priv->render_ring.size);
Eric Anholtd3301d82010-05-21 13:55:54 -0700554 while (--ring >= (u32 *)dev_priv->render_ring.virtual_start) {
Chris Wilson9df30792010-02-18 10:24:56 +0000555 bbaddr = i915_get_bbaddr(dev, ring);
556 if (bbaddr)
557 break;
558 }
559 }
560
561 return bbaddr;
562}
563
Jesse Barnes8a905232009-07-11 16:48:03 -0400564/**
565 * i915_capture_error_state - capture an error record for later analysis
566 * @dev: drm device
567 *
568 * Should be called when an error is detected (either a hang or an error
569 * interrupt) to capture error state from the time of the error. Fills
570 * out a structure which becomes available in debugfs for user level tools
571 * to pick up.
572 */
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700573static void i915_capture_error_state(struct drm_device *dev)
574{
575 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson9df30792010-02-18 10:24:56 +0000576 struct drm_i915_gem_object *obj_priv;
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700577 struct drm_i915_error_state *error;
Chris Wilson9df30792010-02-18 10:24:56 +0000578 struct drm_gem_object *batchbuffer[2];
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700579 unsigned long flags;
Chris Wilson9df30792010-02-18 10:24:56 +0000580 u32 bbaddr;
581 int count;
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700582
583 spin_lock_irqsave(&dev_priv->error_lock, flags);
Chris Wilson9df30792010-02-18 10:24:56 +0000584 error = dev_priv->first_error;
585 spin_unlock_irqrestore(&dev_priv->error_lock, flags);
586 if (error)
587 return;
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700588
589 error = kmalloc(sizeof(*error), GFP_ATOMIC);
590 if (!error) {
Chris Wilson9df30792010-02-18 10:24:56 +0000591 DRM_DEBUG_DRIVER("out of memory, not capturing error state\n");
592 return;
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700593 }
594
Zou Nan hai852835f2010-05-21 09:08:56 +0800595 error->seqno = i915_get_gem_seqno(dev, &dev_priv->render_ring);
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700596 error->eir = I915_READ(EIR);
597 error->pgtbl_er = I915_READ(PGTBL_ER);
598 error->pipeastat = I915_READ(PIPEASTAT);
599 error->pipebstat = I915_READ(PIPEBSTAT);
600 error->instpm = I915_READ(INSTPM);
601 if (!IS_I965G(dev)) {
602 error->ipeir = I915_READ(IPEIR);
603 error->ipehr = I915_READ(IPEHR);
604 error->instdone = I915_READ(INSTDONE);
605 error->acthd = I915_READ(ACTHD);
Chris Wilson9df30792010-02-18 10:24:56 +0000606 error->bbaddr = 0;
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700607 } else {
608 error->ipeir = I915_READ(IPEIR_I965);
609 error->ipehr = I915_READ(IPEHR_I965);
610 error->instdone = I915_READ(INSTDONE_I965);
611 error->instps = I915_READ(INSTPS);
612 error->instdone1 = I915_READ(INSTDONE1);
613 error->acthd = I915_READ(ACTHD_I965);
Chris Wilson9df30792010-02-18 10:24:56 +0000614 error->bbaddr = I915_READ64(BB_ADDR);
615 }
616
617 bbaddr = i915_ringbuffer_last_batch(dev);
618
619 /* Grab the current batchbuffer, most likely to have crashed. */
620 batchbuffer[0] = NULL;
621 batchbuffer[1] = NULL;
622 count = 0;
Zou Nan hai852835f2010-05-21 09:08:56 +0800623 list_for_each_entry(obj_priv,
624 &dev_priv->render_ring.active_list, list) {
625
Daniel Vettera8089e82010-04-09 19:05:09 +0000626 struct drm_gem_object *obj = &obj_priv->base;
Chris Wilson9df30792010-02-18 10:24:56 +0000627
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[0] != obj)
637 batchbuffer[1] = obj;
638
639 count++;
640 }
641
642 /* We need to copy these to an anonymous buffer as the simplest
643 * method to avoid being overwritten by userpace.
644 */
645 error->batchbuffer[0] = i915_error_object_create(dev, batchbuffer[0]);
646 error->batchbuffer[1] = i915_error_object_create(dev, batchbuffer[1]);
647
648 /* Record the ringbuffer */
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800649 error->ringbuffer = i915_error_object_create(dev,
650 dev_priv->render_ring.gem_object);
Chris Wilson9df30792010-02-18 10:24:56 +0000651
652 /* Record buffers on the active list. */
653 error->active_bo = NULL;
654 error->active_bo_count = 0;
655
656 if (count)
657 error->active_bo = kmalloc(sizeof(*error->active_bo)*count,
658 GFP_ATOMIC);
659
660 if (error->active_bo) {
661 int i = 0;
Zou Nan hai852835f2010-05-21 09:08:56 +0800662 list_for_each_entry(obj_priv,
663 &dev_priv->render_ring.active_list, list) {
Daniel Vettera8089e82010-04-09 19:05:09 +0000664 struct drm_gem_object *obj = &obj_priv->base;
Chris Wilson9df30792010-02-18 10:24:56 +0000665
666 error->active_bo[i].size = obj->size;
667 error->active_bo[i].name = obj->name;
668 error->active_bo[i].seqno = obj_priv->last_rendering_seqno;
669 error->active_bo[i].gtt_offset = obj_priv->gtt_offset;
670 error->active_bo[i].read_domains = obj->read_domains;
671 error->active_bo[i].write_domain = obj->write_domain;
672 error->active_bo[i].fence_reg = obj_priv->fence_reg;
673 error->active_bo[i].pinned = 0;
674 if (obj_priv->pin_count > 0)
675 error->active_bo[i].pinned = 1;
676 if (obj_priv->user_pin_count > 0)
677 error->active_bo[i].pinned = -1;
678 error->active_bo[i].tiling = obj_priv->tiling_mode;
679 error->active_bo[i].dirty = obj_priv->dirty;
680 error->active_bo[i].purgeable = obj_priv->madv != I915_MADV_WILLNEED;
681
682 if (++i == count)
683 break;
684 }
685 error->active_bo_count = i;
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700686 }
687
Jesse Barnes8a905232009-07-11 16:48:03 -0400688 do_gettimeofday(&error->time);
689
Chris Wilson9df30792010-02-18 10:24:56 +0000690 spin_lock_irqsave(&dev_priv->error_lock, flags);
691 if (dev_priv->first_error == NULL) {
692 dev_priv->first_error = error;
693 error = NULL;
694 }
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700695 spin_unlock_irqrestore(&dev_priv->error_lock, flags);
Chris Wilson9df30792010-02-18 10:24:56 +0000696
697 if (error)
698 i915_error_state_free(dev, error);
699}
700
701void i915_destroy_error_state(struct drm_device *dev)
702{
703 struct drm_i915_private *dev_priv = dev->dev_private;
704 struct drm_i915_error_state *error;
705
706 spin_lock(&dev_priv->error_lock);
707 error = dev_priv->first_error;
708 dev_priv->first_error = NULL;
709 spin_unlock(&dev_priv->error_lock);
710
711 if (error)
712 i915_error_state_free(dev, error);
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700713}
714
Jesse Barnes8a905232009-07-11 16:48:03 -0400715/**
716 * i915_handle_error - handle an error interrupt
717 * @dev: drm device
718 *
719 * Do some basic checking of regsiter state at error interrupt time and
720 * dump it to the syslog. Also call i915_capture_error_state() to make
721 * sure we get a record and make it available in debugfs. Fire a uevent
722 * so userspace knows something bad happened (should trigger collection
723 * of a ring dump etc.).
724 */
Ben Gamariba1234d2009-09-14 17:48:47 -0400725static void i915_handle_error(struct drm_device *dev, bool wedged)
Jesse Barnes8a905232009-07-11 16:48:03 -0400726{
727 struct drm_i915_private *dev_priv = dev->dev_private;
728 u32 eir = I915_READ(EIR);
729 u32 pipea_stats = I915_READ(PIPEASTAT);
730 u32 pipeb_stats = I915_READ(PIPEBSTAT);
731
732 i915_capture_error_state(dev);
733
734 printk(KERN_ERR "render error detected, EIR: 0x%08x\n",
735 eir);
736
737 if (IS_G4X(dev)) {
738 if (eir & (GM45_ERROR_MEM_PRIV | GM45_ERROR_CP_PRIV)) {
739 u32 ipeir = I915_READ(IPEIR_I965);
740
741 printk(KERN_ERR " IPEIR: 0x%08x\n",
742 I915_READ(IPEIR_I965));
743 printk(KERN_ERR " IPEHR: 0x%08x\n",
744 I915_READ(IPEHR_I965));
745 printk(KERN_ERR " INSTDONE: 0x%08x\n",
746 I915_READ(INSTDONE_I965));
747 printk(KERN_ERR " INSTPS: 0x%08x\n",
748 I915_READ(INSTPS));
749 printk(KERN_ERR " INSTDONE1: 0x%08x\n",
750 I915_READ(INSTDONE1));
751 printk(KERN_ERR " ACTHD: 0x%08x\n",
752 I915_READ(ACTHD_I965));
753 I915_WRITE(IPEIR_I965, ipeir);
754 (void)I915_READ(IPEIR_I965);
755 }
756 if (eir & GM45_ERROR_PAGE_TABLE) {
757 u32 pgtbl_err = I915_READ(PGTBL_ER);
758 printk(KERN_ERR "page table error\n");
759 printk(KERN_ERR " PGTBL_ER: 0x%08x\n",
760 pgtbl_err);
761 I915_WRITE(PGTBL_ER, pgtbl_err);
762 (void)I915_READ(PGTBL_ER);
763 }
764 }
765
766 if (IS_I9XX(dev)) {
767 if (eir & I915_ERROR_PAGE_TABLE) {
768 u32 pgtbl_err = I915_READ(PGTBL_ER);
769 printk(KERN_ERR "page table error\n");
770 printk(KERN_ERR " PGTBL_ER: 0x%08x\n",
771 pgtbl_err);
772 I915_WRITE(PGTBL_ER, pgtbl_err);
773 (void)I915_READ(PGTBL_ER);
774 }
775 }
776
777 if (eir & I915_ERROR_MEMORY_REFRESH) {
778 printk(KERN_ERR "memory refresh error\n");
779 printk(KERN_ERR "PIPEASTAT: 0x%08x\n",
780 pipea_stats);
781 printk(KERN_ERR "PIPEBSTAT: 0x%08x\n",
782 pipeb_stats);
783 /* pipestat has already been acked */
784 }
785 if (eir & I915_ERROR_INSTRUCTION) {
786 printk(KERN_ERR "instruction error\n");
787 printk(KERN_ERR " INSTPM: 0x%08x\n",
788 I915_READ(INSTPM));
789 if (!IS_I965G(dev)) {
790 u32 ipeir = I915_READ(IPEIR);
791
792 printk(KERN_ERR " IPEIR: 0x%08x\n",
793 I915_READ(IPEIR));
794 printk(KERN_ERR " IPEHR: 0x%08x\n",
795 I915_READ(IPEHR));
796 printk(KERN_ERR " INSTDONE: 0x%08x\n",
797 I915_READ(INSTDONE));
798 printk(KERN_ERR " ACTHD: 0x%08x\n",
799 I915_READ(ACTHD));
800 I915_WRITE(IPEIR, ipeir);
801 (void)I915_READ(IPEIR);
802 } else {
803 u32 ipeir = I915_READ(IPEIR_I965);
804
805 printk(KERN_ERR " IPEIR: 0x%08x\n",
806 I915_READ(IPEIR_I965));
807 printk(KERN_ERR " IPEHR: 0x%08x\n",
808 I915_READ(IPEHR_I965));
809 printk(KERN_ERR " INSTDONE: 0x%08x\n",
810 I915_READ(INSTDONE_I965));
811 printk(KERN_ERR " INSTPS: 0x%08x\n",
812 I915_READ(INSTPS));
813 printk(KERN_ERR " INSTDONE1: 0x%08x\n",
814 I915_READ(INSTDONE1));
815 printk(KERN_ERR " ACTHD: 0x%08x\n",
816 I915_READ(ACTHD_I965));
817 I915_WRITE(IPEIR_I965, ipeir);
818 (void)I915_READ(IPEIR_I965);
819 }
820 }
821
822 I915_WRITE(EIR, eir);
823 (void)I915_READ(EIR);
824 eir = I915_READ(EIR);
825 if (eir) {
826 /*
827 * some errors might have become stuck,
828 * mask them.
829 */
830 DRM_ERROR("EIR stuck: 0x%08x, masking\n", eir);
831 I915_WRITE(EMR, I915_READ(EMR) | eir);
832 I915_WRITE(IIR, I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT);
833 }
834
Ben Gamariba1234d2009-09-14 17:48:47 -0400835 if (wedged) {
836 atomic_set(&dev_priv->mm.wedged, 1);
837
Ben Gamari11ed50e2009-09-14 17:48:45 -0400838 /*
839 * Wakeup waiting processes so they don't hang
840 */
Zou Nan hai852835f2010-05-21 09:08:56 +0800841 DRM_WAKEUP(&dev_priv->render_ring.irq_queue);
Ben Gamari11ed50e2009-09-14 17:48:45 -0400842 }
843
Eric Anholt9c9fe1f2009-08-03 16:09:16 -0700844 queue_work(dev_priv->wq, &dev_priv->error_work);
Jesse Barnes8a905232009-07-11 16:48:03 -0400845}
846
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847irqreturn_t i915_driver_irq_handler(DRM_IRQ_ARGS)
848{
Dave Airlie84b1fd12007-07-11 15:53:27 +1000849 struct drm_device *dev = (struct drm_device *) arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000851 struct drm_i915_master_private *master_priv;
Eric Anholtcdfbc412008-11-04 15:50:30 -0800852 u32 iir, new_iir;
853 u32 pipea_stats, pipeb_stats;
Keith Packard05eff842008-11-19 14:03:05 -0800854 u32 vblank_status;
855 u32 vblank_enable;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700856 int vblank = 0;
Keith Packard7c463582008-11-04 02:03:27 -0800857 unsigned long irqflags;
Keith Packard05eff842008-11-19 14:03:05 -0800858 int irq_received;
859 int ret = IRQ_NONE;
Zou Nan hai852835f2010-05-21 09:08:56 +0800860 struct intel_ring_buffer *render_ring = &dev_priv->render_ring;
Dave Airlieaf6061a2008-05-07 12:15:39 +1000861
Eric Anholt630681d2008-10-06 15:14:12 -0700862 atomic_inc(&dev_priv->irq_received);
863
Eric Anholtbad720f2009-10-22 16:11:14 -0700864 if (HAS_PCH_SPLIT(dev))
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500865 return ironlake_irq_handler(dev);
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800866
Eric Anholted4cb412008-07-29 12:10:39 -0700867 iir = I915_READ(IIR);
Dave Airlieaf6061a2008-05-07 12:15:39 +1000868
Keith Packard05eff842008-11-19 14:03:05 -0800869 if (IS_I965G(dev)) {
870 vblank_status = I915_START_VBLANK_INTERRUPT_STATUS;
871 vblank_enable = PIPE_START_VBLANK_INTERRUPT_ENABLE;
872 } else {
873 vblank_status = I915_VBLANK_INTERRUPT_STATUS;
874 vblank_enable = I915_VBLANK_INTERRUPT_ENABLE;
875 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876
Keith Packard05eff842008-11-19 14:03:05 -0800877 for (;;) {
878 irq_received = iir != 0;
879
880 /* Can't rely on pipestat interrupt bit in iir as it might
881 * have been cleared after the pipestat interrupt was received.
882 * It doesn't set the bit in iir again, but it still produces
883 * interrupts (for non-MSI).
884 */
885 spin_lock_irqsave(&dev_priv->user_irq_lock, irqflags);
886 pipea_stats = I915_READ(PIPEASTAT);
887 pipeb_stats = I915_READ(PIPEBSTAT);
Jesse Barnes79e53942008-11-07 14:24:08 -0800888
Jesse Barnes8a905232009-07-11 16:48:03 -0400889 if (iir & I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT)
Ben Gamariba1234d2009-09-14 17:48:47 -0400890 i915_handle_error(dev, false);
Jesse Barnes8a905232009-07-11 16:48:03 -0400891
Eric Anholtcdfbc412008-11-04 15:50:30 -0800892 /*
893 * Clear the PIPE(A|B)STAT regs before the IIR
894 */
Keith Packard05eff842008-11-19 14:03:05 -0800895 if (pipea_stats & 0x8000ffff) {
Shaohua Li7662c8b2009-06-26 11:23:55 +0800896 if (pipea_stats & PIPE_FIFO_UNDERRUN_STATUS)
Zhao Yakui44d98a62009-10-09 11:39:40 +0800897 DRM_DEBUG_DRIVER("pipe a underrun\n");
Eric Anholtcdfbc412008-11-04 15:50:30 -0800898 I915_WRITE(PIPEASTAT, pipea_stats);
Keith Packard05eff842008-11-19 14:03:05 -0800899 irq_received = 1;
Eric Anholtcdfbc412008-11-04 15:50:30 -0800900 }
Keith Packard7c463582008-11-04 02:03:27 -0800901
Keith Packard05eff842008-11-19 14:03:05 -0800902 if (pipeb_stats & 0x8000ffff) {
Shaohua Li7662c8b2009-06-26 11:23:55 +0800903 if (pipeb_stats & PIPE_FIFO_UNDERRUN_STATUS)
Zhao Yakui44d98a62009-10-09 11:39:40 +0800904 DRM_DEBUG_DRIVER("pipe b underrun\n");
Eric Anholtcdfbc412008-11-04 15:50:30 -0800905 I915_WRITE(PIPEBSTAT, pipeb_stats);
Keith Packard05eff842008-11-19 14:03:05 -0800906 irq_received = 1;
Eric Anholtcdfbc412008-11-04 15:50:30 -0800907 }
Keith Packard05eff842008-11-19 14:03:05 -0800908 spin_unlock_irqrestore(&dev_priv->user_irq_lock, irqflags);
909
910 if (!irq_received)
911 break;
912
913 ret = IRQ_HANDLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914
Jesse Barnes5ca58282009-03-31 14:11:15 -0700915 /* Consume port. Then clear IIR or we'll miss events */
916 if ((I915_HAS_HOTPLUG(dev)) &&
917 (iir & I915_DISPLAY_PORT_INTERRUPT)) {
918 u32 hotplug_status = I915_READ(PORT_HOTPLUG_STAT);
919
Zhao Yakui44d98a62009-10-09 11:39:40 +0800920 DRM_DEBUG_DRIVER("hotplug event received, stat 0x%08x\n",
Jesse Barnes5ca58282009-03-31 14:11:15 -0700921 hotplug_status);
922 if (hotplug_status & dev_priv->hotplug_supported_mask)
Eric Anholt9c9fe1f2009-08-03 16:09:16 -0700923 queue_work(dev_priv->wq,
924 &dev_priv->hotplug_work);
Jesse Barnes5ca58282009-03-31 14:11:15 -0700925
926 I915_WRITE(PORT_HOTPLUG_STAT, hotplug_status);
927 I915_READ(PORT_HOTPLUG_STAT);
928 }
929
Eric Anholtcdfbc412008-11-04 15:50:30 -0800930 I915_WRITE(IIR, iir);
931 new_iir = I915_READ(IIR); /* Flush posted writes */
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +0100932
Dave Airlie7c1c2872008-11-28 14:22:24 +1000933 if (dev->primary->master) {
934 master_priv = dev->primary->master->driver_priv;
935 if (master_priv->sarea_priv)
936 master_priv->sarea_priv->last_dispatch =
937 READ_BREADCRUMB(dev_priv);
938 }
Keith Packard7c463582008-11-04 02:03:27 -0800939
Eric Anholtcdfbc412008-11-04 15:50:30 -0800940 if (iir & I915_USER_INTERRUPT) {
Zou Nan hai852835f2010-05-21 09:08:56 +0800941 u32 seqno =
942 render_ring->get_gem_seqno(dev, render_ring);
943 render_ring->irq_gem_seqno = seqno;
Chris Wilson1c5d22f2009-08-25 11:15:50 +0100944 trace_i915_gem_request_complete(dev, seqno);
Zou Nan hai852835f2010-05-21 09:08:56 +0800945 DRM_WAKEUP(&dev_priv->render_ring.irq_queue);
Ben Gamarif65d9422009-09-14 17:48:44 -0400946 dev_priv->hangcheck_count = 0;
947 mod_timer(&dev_priv->hangcheck_timer, jiffies + DRM_I915_HANGCHECK_PERIOD);
Eric Anholtcdfbc412008-11-04 15:50:30 -0800948 }
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700949
Zou Nan haid1b851f2010-05-21 09:08:57 +0800950 if (HAS_BSD(dev) && (iir & I915_BSD_USER_INTERRUPT))
951 DRM_WAKEUP(&dev_priv->bsd_ring.irq_queue);
952
Kristian Høgsberg6b95a202009-11-18 11:25:18 -0500953 if (iir & I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT)
954 intel_prepare_page_flip(dev, 0);
955
956 if (iir & I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT)
957 intel_prepare_page_flip(dev, 1);
958
Keith Packard05eff842008-11-19 14:03:05 -0800959 if (pipea_stats & vblank_status) {
Eric Anholtcdfbc412008-11-04 15:50:30 -0800960 vblank++;
961 drm_handle_vblank(dev, 0);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -0500962 intel_finish_page_flip(dev, 0);
Eric Anholtcdfbc412008-11-04 15:50:30 -0800963 }
Eric Anholt673a3942008-07-30 12:06:12 -0700964
Keith Packard05eff842008-11-19 14:03:05 -0800965 if (pipeb_stats & vblank_status) {
Eric Anholtcdfbc412008-11-04 15:50:30 -0800966 vblank++;
967 drm_handle_vblank(dev, 1);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -0500968 intel_finish_page_flip(dev, 1);
Eric Anholtcdfbc412008-11-04 15:50:30 -0800969 }
Keith Packard7c463582008-11-04 02:03:27 -0800970
Zhao Yakuiedcb49c2010-04-07 17:11:21 +0800971 if ((pipea_stats & I915_LEGACY_BLC_EVENT_STATUS) ||
972 (pipeb_stats & I915_LEGACY_BLC_EVENT_STATUS) ||
Eric Anholtcdfbc412008-11-04 15:50:30 -0800973 (iir & I915_ASLE_INTERRUPT))
974 opregion_asle_intr(dev);
Keith Packard7c463582008-11-04 02:03:27 -0800975
Eric Anholtcdfbc412008-11-04 15:50:30 -0800976 /* With MSI, interrupts are only generated when iir
977 * transitions from zero to nonzero. If another bit got
978 * set while we were handling the existing iir bits, then
979 * we would never get another interrupt.
980 *
981 * This is fine on non-MSI as well, as if we hit this path
982 * we avoid exiting the interrupt handler only to generate
983 * another one.
984 *
985 * Note that for MSI this could cause a stray interrupt report
986 * if an interrupt landed in the time between writing IIR and
987 * the posting read. This should be rare enough to never
988 * trigger the 99% of 100,000 interrupts test for disabling
989 * stray interrupts.
990 */
991 iir = new_iir;
Keith Packard05eff842008-11-19 14:03:05 -0800992 }
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700993
Keith Packard05eff842008-11-19 14:03:05 -0800994 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995}
996
Dave Airlieaf6061a2008-05-07 12:15:39 +1000997static int i915_emit_irq(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998{
999 drm_i915_private_t *dev_priv = dev->dev_private;
Dave Airlie7c1c2872008-11-28 14:22:24 +10001000 struct drm_i915_master_private *master_priv = dev->primary->master->driver_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001
1002 i915_kernel_lost_context(dev);
1003
Zhao Yakui44d98a62009-10-09 11:39:40 +08001004 DRM_DEBUG_DRIVER("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005
Kristian Høgsbergc99b0582008-08-20 11:20:13 -04001006 dev_priv->counter++;
Alan Hourihanec29b6692006-08-12 16:29:24 +10001007 if (dev_priv->counter > 0x7FFFFFFFUL)
Kristian Høgsbergc99b0582008-08-20 11:20:13 -04001008 dev_priv->counter = 1;
Dave Airlie7c1c2872008-11-28 14:22:24 +10001009 if (master_priv->sarea_priv)
1010 master_priv->sarea_priv->last_enqueue = dev_priv->counter;
Alan Hourihanec29b6692006-08-12 16:29:24 +10001011
Keith Packard0baf8232008-11-08 11:44:14 +10001012 BEGIN_LP_RING(4);
Jesse Barnes585fb112008-07-29 11:54:06 -07001013 OUT_RING(MI_STORE_DWORD_INDEX);
Keith Packard0baf8232008-11-08 11:44:14 +10001014 OUT_RING(I915_BREADCRUMB_INDEX << MI_STORE_DWORD_INDEX_SHIFT);
Alan Hourihanec29b6692006-08-12 16:29:24 +10001015 OUT_RING(dev_priv->counter);
Jesse Barnes585fb112008-07-29 11:54:06 -07001016 OUT_RING(MI_USER_INTERRUPT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 ADVANCE_LP_RING();
Dave Airliebc5f4522007-11-05 12:50:58 +10001018
Alan Hourihanec29b6692006-08-12 16:29:24 +10001019 return dev_priv->counter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020}
1021
Chris Wilson9d34e5d2009-09-24 05:26:06 +01001022void i915_trace_irq_get(struct drm_device *dev, u32 seqno)
1023{
1024 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001025 struct intel_ring_buffer *render_ring = &dev_priv->render_ring;
Chris Wilson9d34e5d2009-09-24 05:26:06 +01001026
1027 if (dev_priv->trace_irq_seqno == 0)
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001028 render_ring->user_irq_get(dev, render_ring);
Chris Wilson9d34e5d2009-09-24 05:26:06 +01001029
1030 dev_priv->trace_irq_seqno = seqno;
1031}
1032
Dave Airlie84b1fd12007-07-11 15:53:27 +10001033static int i915_wait_irq(struct drm_device * dev, int irq_nr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034{
1035 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Dave Airlie7c1c2872008-11-28 14:22:24 +10001036 struct drm_i915_master_private *master_priv = dev->primary->master->driver_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 int ret = 0;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001038 struct intel_ring_buffer *render_ring = &dev_priv->render_ring;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039
Zhao Yakui44d98a62009-10-09 11:39:40 +08001040 DRM_DEBUG_DRIVER("irq_nr=%d breadcrumb=%d\n", irq_nr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 READ_BREADCRUMB(dev_priv));
1042
Eric Anholted4cb412008-07-29 12:10:39 -07001043 if (READ_BREADCRUMB(dev_priv) >= irq_nr) {
Dave Airlie7c1c2872008-11-28 14:22:24 +10001044 if (master_priv->sarea_priv)
1045 master_priv->sarea_priv->last_dispatch = READ_BREADCRUMB(dev_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 return 0;
Eric Anholted4cb412008-07-29 12:10:39 -07001047 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048
Dave Airlie7c1c2872008-11-28 14:22:24 +10001049 if (master_priv->sarea_priv)
1050 master_priv->sarea_priv->perf_boxes |= I915_BOX_WAIT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001052 render_ring->user_irq_get(dev, render_ring);
Zou Nan hai852835f2010-05-21 09:08:56 +08001053 DRM_WAIT_ON(ret, dev_priv->render_ring.irq_queue, 3 * DRM_HZ,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 READ_BREADCRUMB(dev_priv) >= irq_nr);
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001055 render_ring->user_irq_put(dev, render_ring);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056
Eric Anholt20caafa2007-08-25 19:22:43 +10001057 if (ret == -EBUSY) {
Márton Németh3e684ea2008-01-24 15:58:57 +10001058 DRM_ERROR("EBUSY -- rec: %d emitted: %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 READ_BREADCRUMB(dev_priv), (int)dev_priv->counter);
1060 }
1061
Dave Airlieaf6061a2008-05-07 12:15:39 +10001062 return ret;
1063}
1064
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065/* Needs the lock as it touches the ring.
1066 */
Eric Anholtc153f452007-09-03 12:06:45 +10001067int i915_irq_emit(struct drm_device *dev, void *data,
1068 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholtc153f452007-09-03 12:06:45 +10001071 drm_i915_irq_emit_t *emit = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072 int result;
1073
Eric Anholtd3301d82010-05-21 13:55:54 -07001074 if (!dev_priv || !dev_priv->render_ring.virtual_start) {
Márton Németh3e684ea2008-01-24 15:58:57 +10001075 DRM_ERROR("called with no initialization\n");
Eric Anholt20caafa2007-08-25 19:22:43 +10001076 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077 }
Eric Anholt299eb932009-02-24 22:14:12 -08001078
1079 RING_LOCK_TEST_WITH_RETURN(dev, file_priv);
1080
Eric Anholt546b0972008-09-01 16:45:29 -07001081 mutex_lock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 result = i915_emit_irq(dev);
Eric Anholt546b0972008-09-01 16:45:29 -07001083 mutex_unlock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084
Eric Anholtc153f452007-09-03 12:06:45 +10001085 if (DRM_COPY_TO_USER(emit->irq_seq, &result, sizeof(int))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 DRM_ERROR("copy_to_user\n");
Eric Anholt20caafa2007-08-25 19:22:43 +10001087 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088 }
1089
1090 return 0;
1091}
1092
1093/* Doesn't need the hardware lock.
1094 */
Eric Anholtc153f452007-09-03 12:06:45 +10001095int i915_irq_wait(struct drm_device *dev, void *data,
1096 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholtc153f452007-09-03 12:06:45 +10001099 drm_i915_irq_wait_t *irqwait = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100
1101 if (!dev_priv) {
Márton Németh3e684ea2008-01-24 15:58:57 +10001102 DRM_ERROR("called with no initialization\n");
Eric Anholt20caafa2007-08-25 19:22:43 +10001103 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104 }
1105
Eric Anholtc153f452007-09-03 12:06:45 +10001106 return i915_wait_irq(dev, irqwait->irq_seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107}
1108
Keith Packard42f52ef2008-10-18 19:39:29 -07001109/* Called from drm generic code, passed 'crtc' which
1110 * we use as a pipe index
1111 */
1112int i915_enable_vblank(struct drm_device *dev, int pipe)
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001113{
1114 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Keith Packarde9d21d72008-10-16 11:31:38 -07001115 unsigned long irqflags;
Jesse Barnes71e0ffa2009-01-08 10:42:15 -08001116 int pipeconf_reg = (pipe == 0) ? PIPEACONF : PIPEBCONF;
1117 u32 pipeconf;
1118
1119 pipeconf = I915_READ(pipeconf_reg);
1120 if (!(pipeconf & PIPEACONF_ENABLE))
1121 return -EINVAL;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001122
Keith Packarde9d21d72008-10-16 11:31:38 -07001123 spin_lock_irqsave(&dev_priv->user_irq_lock, irqflags);
Eric Anholtbad720f2009-10-22 16:11:14 -07001124 if (HAS_PCH_SPLIT(dev))
Li Pengc062df62010-01-23 00:12:58 +08001125 ironlake_enable_display_irq(dev_priv, (pipe == 0) ?
1126 DE_PIPEA_VBLANK: DE_PIPEB_VBLANK);
1127 else if (IS_I965G(dev))
Keith Packard7c463582008-11-04 02:03:27 -08001128 i915_enable_pipestat(dev_priv, pipe,
1129 PIPE_START_VBLANK_INTERRUPT_ENABLE);
Keith Packarde9d21d72008-10-16 11:31:38 -07001130 else
Keith Packard7c463582008-11-04 02:03:27 -08001131 i915_enable_pipestat(dev_priv, pipe,
1132 PIPE_VBLANK_INTERRUPT_ENABLE);
Keith Packarde9d21d72008-10-16 11:31:38 -07001133 spin_unlock_irqrestore(&dev_priv->user_irq_lock, irqflags);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001134 return 0;
1135}
1136
Keith Packard42f52ef2008-10-18 19:39:29 -07001137/* Called from drm generic code, passed 'crtc' which
1138 * we use as a pipe index
1139 */
1140void i915_disable_vblank(struct drm_device *dev, int pipe)
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001141{
1142 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Keith Packarde9d21d72008-10-16 11:31:38 -07001143 unsigned long irqflags;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001144
Keith Packarde9d21d72008-10-16 11:31:38 -07001145 spin_lock_irqsave(&dev_priv->user_irq_lock, irqflags);
Eric Anholtbad720f2009-10-22 16:11:14 -07001146 if (HAS_PCH_SPLIT(dev))
Li Pengc062df62010-01-23 00:12:58 +08001147 ironlake_disable_display_irq(dev_priv, (pipe == 0) ?
1148 DE_PIPEA_VBLANK: DE_PIPEB_VBLANK);
1149 else
1150 i915_disable_pipestat(dev_priv, pipe,
1151 PIPE_VBLANK_INTERRUPT_ENABLE |
1152 PIPE_START_VBLANK_INTERRUPT_ENABLE);
Keith Packarde9d21d72008-10-16 11:31:38 -07001153 spin_unlock_irqrestore(&dev_priv->user_irq_lock, irqflags);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001154}
1155
Jesse Barnes79e53942008-11-07 14:24:08 -08001156void i915_enable_interrupt (struct drm_device *dev)
1157{
1158 struct drm_i915_private *dev_priv = dev->dev_private;
Zhenyu Wange170b032009-06-05 15:38:40 +08001159
Eric Anholtbad720f2009-10-22 16:11:14 -07001160 if (!HAS_PCH_SPLIT(dev))
Zhenyu Wange170b032009-06-05 15:38:40 +08001161 opregion_enable_asle(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08001162 dev_priv->irq_enabled = 1;
1163}
1164
1165
Dave Airlie702880f2006-06-24 17:07:34 +10001166/* Set the vblank monitor pipe
1167 */
Eric Anholtc153f452007-09-03 12:06:45 +10001168int i915_vblank_pipe_set(struct drm_device *dev, void *data,
1169 struct drm_file *file_priv)
Dave Airlie702880f2006-06-24 17:07:34 +10001170{
Dave Airlie702880f2006-06-24 17:07:34 +10001171 drm_i915_private_t *dev_priv = dev->dev_private;
Dave Airlie702880f2006-06-24 17:07:34 +10001172
1173 if (!dev_priv) {
Márton Németh3e684ea2008-01-24 15:58:57 +10001174 DRM_ERROR("called with no initialization\n");
Eric Anholt20caafa2007-08-25 19:22:43 +10001175 return -EINVAL;
Dave Airlie702880f2006-06-24 17:07:34 +10001176 }
1177
=?utf-8?q?Michel_D=C3=A4nzer?=5b516942006-10-25 00:08:23 +10001178 return 0;
Dave Airlie702880f2006-06-24 17:07:34 +10001179}
1180
Eric Anholtc153f452007-09-03 12:06:45 +10001181int i915_vblank_pipe_get(struct drm_device *dev, void *data,
1182 struct drm_file *file_priv)
Dave Airlie702880f2006-06-24 17:07:34 +10001183{
Dave Airlie702880f2006-06-24 17:07:34 +10001184 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholtc153f452007-09-03 12:06:45 +10001185 drm_i915_vblank_pipe_t *pipe = data;
Dave Airlie702880f2006-06-24 17:07:34 +10001186
1187 if (!dev_priv) {
Márton Németh3e684ea2008-01-24 15:58:57 +10001188 DRM_ERROR("called with no initialization\n");
Eric Anholt20caafa2007-08-25 19:22:43 +10001189 return -EINVAL;
Dave Airlie702880f2006-06-24 17:07:34 +10001190 }
1191
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001192 pipe->pipe = DRM_I915_VBLANK_PIPE_A | DRM_I915_VBLANK_PIPE_B;
Eric Anholtc153f452007-09-03 12:06:45 +10001193
Dave Airlie702880f2006-06-24 17:07:34 +10001194 return 0;
1195}
1196
=?utf-8?q?Michel_D=C3=A4nzer?=a6b54f32006-10-24 23:37:43 +10001197/**
1198 * Schedule buffer swap at given vertical blank.
1199 */
Eric Anholtc153f452007-09-03 12:06:45 +10001200int i915_vblank_swap(struct drm_device *dev, void *data,
1201 struct drm_file *file_priv)
=?utf-8?q?Michel_D=C3=A4nzer?=a6b54f32006-10-24 23:37:43 +10001202{
Eric Anholtbd95e0a2008-11-04 12:01:24 -08001203 /* The delayed swap mechanism was fundamentally racy, and has been
1204 * removed. The model was that the client requested a delayed flip/swap
1205 * from the kernel, then waited for vblank before continuing to perform
1206 * rendering. The problem was that the kernel might wake the client
1207 * up before it dispatched the vblank swap (since the lock has to be
1208 * held while touching the ringbuffer), in which case the client would
1209 * clear and start the next frame before the swap occurred, and
1210 * flicker would occur in addition to likely missing the vblank.
1211 *
1212 * In the absence of this ioctl, userland falls back to a correct path
1213 * of waiting for a vblank, then dispatching the swap on its own.
1214 * Context switching to userland and back is plenty fast enough for
1215 * meeting the requirements of vblank swapping.
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001216 */
Eric Anholtbd95e0a2008-11-04 12:01:24 -08001217 return -EINVAL;
=?utf-8?q?Michel_D=C3=A4nzer?=a6b54f32006-10-24 23:37:43 +10001218}
1219
Zou Nan hai852835f2010-05-21 09:08:56 +08001220struct drm_i915_gem_request *
1221i915_get_tail_request(struct drm_device *dev)
1222{
Ben Gamarif65d9422009-09-14 17:48:44 -04001223 drm_i915_private_t *dev_priv = dev->dev_private;
Zou Nan hai852835f2010-05-21 09:08:56 +08001224 return list_entry(dev_priv->render_ring.request_list.prev,
1225 struct drm_i915_gem_request, list);
Ben Gamarif65d9422009-09-14 17:48:44 -04001226}
1227
1228/**
1229 * This is called when the chip hasn't reported back with completed
1230 * batchbuffers in a long time. The first time this is called we simply record
1231 * ACTHD. If ACTHD hasn't changed by the time the hangcheck timer elapses
1232 * again, we assume the chip is wedged and try to fix it.
1233 */
1234void i915_hangcheck_elapsed(unsigned long data)
1235{
1236 struct drm_device *dev = (struct drm_device *)data;
1237 drm_i915_private_t *dev_priv = dev->dev_private;
1238 uint32_t acthd;
Eric Anholtb9201c12010-01-08 14:25:16 -08001239
1240 /* No reset support on this chip yet. */
1241 if (IS_GEN6(dev))
1242 return;
1243
Ben Gamarif65d9422009-09-14 17:48:44 -04001244 if (!IS_I965G(dev))
1245 acthd = I915_READ(ACTHD);
1246 else
1247 acthd = I915_READ(ACTHD_I965);
1248
1249 /* If all work is done then ACTHD clearly hasn't advanced. */
Zou Nan hai852835f2010-05-21 09:08:56 +08001250 if (list_empty(&dev_priv->render_ring.request_list) ||
1251 i915_seqno_passed(i915_get_gem_seqno(dev,
1252 &dev_priv->render_ring),
1253 i915_get_tail_request(dev)->seqno)) {
Ben Gamarif65d9422009-09-14 17:48:44 -04001254 dev_priv->hangcheck_count = 0;
1255 return;
1256 }
1257
1258 if (dev_priv->last_acthd == acthd && dev_priv->hangcheck_count > 0) {
1259 DRM_ERROR("Hangcheck timer elapsed... GPU hung\n");
Ben Gamariba1234d2009-09-14 17:48:47 -04001260 i915_handle_error(dev, true);
Ben Gamarif65d9422009-09-14 17:48:44 -04001261 return;
1262 }
1263
1264 /* Reset timer case chip hangs without another request being added */
1265 mod_timer(&dev_priv->hangcheck_timer, jiffies + DRM_I915_HANGCHECK_PERIOD);
1266
1267 if (acthd != dev_priv->last_acthd)
1268 dev_priv->hangcheck_count = 0;
1269 else
1270 dev_priv->hangcheck_count++;
1271
1272 dev_priv->last_acthd = acthd;
1273}
1274
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275/* drm_dma.h hooks
1276*/
Adam Jacksonf2b115e2009-12-03 17:14:42 -05001277static void ironlake_irq_preinstall(struct drm_device *dev)
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001278{
1279 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
1280
1281 I915_WRITE(HWSTAM, 0xeffe);
1282
1283 /* XXX hotplug from PCH */
1284
1285 I915_WRITE(DEIMR, 0xffffffff);
1286 I915_WRITE(DEIER, 0x0);
1287 (void) I915_READ(DEIER);
1288
1289 /* and GT */
1290 I915_WRITE(GTIMR, 0xffffffff);
1291 I915_WRITE(GTIER, 0x0);
1292 (void) I915_READ(GTIER);
Zhenyu Wangc6501562009-11-03 18:57:21 +00001293
1294 /* south display irq */
1295 I915_WRITE(SDEIMR, 0xffffffff);
1296 I915_WRITE(SDEIER, 0x0);
1297 (void) I915_READ(SDEIER);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001298}
1299
Adam Jacksonf2b115e2009-12-03 17:14:42 -05001300static int ironlake_irq_postinstall(struct drm_device *dev)
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001301{
1302 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
1303 /* enable kind of interrupts always enabled */
Jesse Barnes013d5aa2010-01-29 11:18:31 -08001304 u32 display_mask = DE_MASTER_IRQ_CONTROL | DE_GSE | DE_PCH_EVENT |
1305 DE_PLANEA_FLIP_DONE | DE_PLANEB_FLIP_DONE;
Zou Nan haid1b851f2010-05-21 09:08:57 +08001306 u32 render_mask = GT_PIPE_NOTIFY | GT_BSD_USER_INTERRUPT;
Zhenyu Wangc6501562009-11-03 18:57:21 +00001307 u32 hotplug_mask = SDE_CRT_HOTPLUG | SDE_PORTB_HOTPLUG |
1308 SDE_PORTC_HOTPLUG | SDE_PORTD_HOTPLUG;
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001309
1310 dev_priv->irq_mask_reg = ~display_mask;
Li Peng643ced92010-01-28 01:05:09 +08001311 dev_priv->de_irq_enable_reg = display_mask | DE_PIPEA_VBLANK | DE_PIPEB_VBLANK;
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001312
1313 /* should always can generate irq */
1314 I915_WRITE(DEIIR, I915_READ(DEIIR));
1315 I915_WRITE(DEIMR, dev_priv->irq_mask_reg);
1316 I915_WRITE(DEIER, dev_priv->de_irq_enable_reg);
1317 (void) I915_READ(DEIER);
1318
1319 /* user interrupt should be enabled, but masked initial */
Zou Nan hai852835f2010-05-21 09:08:56 +08001320 dev_priv->gt_irq_mask_reg = ~render_mask;
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001321 dev_priv->gt_irq_enable_reg = render_mask;
1322
1323 I915_WRITE(GTIIR, I915_READ(GTIIR));
1324 I915_WRITE(GTIMR, dev_priv->gt_irq_mask_reg);
1325 I915_WRITE(GTIER, dev_priv->gt_irq_enable_reg);
1326 (void) I915_READ(GTIER);
1327
Zhenyu Wangc6501562009-11-03 18:57:21 +00001328 dev_priv->pch_irq_mask_reg = ~hotplug_mask;
1329 dev_priv->pch_irq_enable_reg = hotplug_mask;
1330
1331 I915_WRITE(SDEIIR, I915_READ(SDEIIR));
1332 I915_WRITE(SDEIMR, dev_priv->pch_irq_mask_reg);
1333 I915_WRITE(SDEIER, dev_priv->pch_irq_enable_reg);
1334 (void) I915_READ(SDEIER);
1335
Jesse Barnesf97108d2010-01-29 11:27:07 -08001336 if (IS_IRONLAKE_M(dev)) {
1337 /* Clear & enable PCU event interrupts */
1338 I915_WRITE(DEIIR, DE_PCU_EVENT);
1339 I915_WRITE(DEIER, I915_READ(DEIER) | DE_PCU_EVENT);
1340 ironlake_enable_display_irq(dev_priv, DE_PCU_EVENT);
1341 }
1342
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001343 return 0;
1344}
1345
Dave Airlie84b1fd12007-07-11 15:53:27 +10001346void i915_driver_irq_preinstall(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347{
1348 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
1349
Jesse Barnes79e53942008-11-07 14:24:08 -08001350 atomic_set(&dev_priv->irq_received, 0);
1351
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001352 INIT_WORK(&dev_priv->hotplug_work, i915_hotplug_work_func);
Jesse Barnes8a905232009-07-11 16:48:03 -04001353 INIT_WORK(&dev_priv->error_work, i915_error_work_func);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001354
Eric Anholtbad720f2009-10-22 16:11:14 -07001355 if (HAS_PCH_SPLIT(dev)) {
Adam Jacksonf2b115e2009-12-03 17:14:42 -05001356 ironlake_irq_preinstall(dev);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001357 return;
1358 }
1359
Jesse Barnes5ca58282009-03-31 14:11:15 -07001360 if (I915_HAS_HOTPLUG(dev)) {
1361 I915_WRITE(PORT_HOTPLUG_EN, 0);
1362 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
1363 }
1364
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001365 I915_WRITE(HWSTAM, 0xeffe);
Keith Packard7c463582008-11-04 02:03:27 -08001366 I915_WRITE(PIPEASTAT, 0);
1367 I915_WRITE(PIPEBSTAT, 0);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001368 I915_WRITE(IMR, 0xffffffff);
Eric Anholted4cb412008-07-29 12:10:39 -07001369 I915_WRITE(IER, 0x0);
Keith Packard7c463582008-11-04 02:03:27 -08001370 (void) I915_READ(IER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371}
1372
Jesse Barnesb01f2c32009-12-11 11:07:17 -08001373/*
1374 * Must be called after intel_modeset_init or hotplug interrupts won't be
1375 * enabled correctly.
1376 */
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001377int i915_driver_irq_postinstall(struct drm_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378{
1379 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Jesse Barnes5ca58282009-03-31 14:11:15 -07001380 u32 enable_mask = I915_INTERRUPT_ENABLE_FIX | I915_INTERRUPT_ENABLE_VAR;
Jesse Barnes63eeaf32009-06-18 16:56:52 -07001381 u32 error_mask;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001382
Zou Nan hai852835f2010-05-21 09:08:56 +08001383 DRM_INIT_WAITQUEUE(&dev_priv->render_ring.irq_queue);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001384
Zou Nan haid1b851f2010-05-21 09:08:57 +08001385 if (HAS_BSD(dev))
1386 DRM_INIT_WAITQUEUE(&dev_priv->bsd_ring.irq_queue);
1387
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001388 dev_priv->vblank_pipe = DRM_I915_VBLANK_PIPE_A | DRM_I915_VBLANK_PIPE_B;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001389
Eric Anholtbad720f2009-10-22 16:11:14 -07001390 if (HAS_PCH_SPLIT(dev))
Adam Jacksonf2b115e2009-12-03 17:14:42 -05001391 return ironlake_irq_postinstall(dev);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001392
Keith Packard7c463582008-11-04 02:03:27 -08001393 /* Unmask the interrupts that we always want on. */
1394 dev_priv->irq_mask_reg = ~I915_INTERRUPT_ENABLE_FIX;
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +01001395
Keith Packard7c463582008-11-04 02:03:27 -08001396 dev_priv->pipestat[0] = 0;
1397 dev_priv->pipestat[1] = 0;
1398
Jesse Barnes5ca58282009-03-31 14:11:15 -07001399 if (I915_HAS_HOTPLUG(dev)) {
1400 u32 hotplug_en = I915_READ(PORT_HOTPLUG_EN);
1401
Jesse Barnesb01f2c32009-12-11 11:07:17 -08001402 /* Note HDMI and DP share bits */
1403 if (dev_priv->hotplug_supported_mask & HDMIB_HOTPLUG_INT_STATUS)
1404 hotplug_en |= HDMIB_HOTPLUG_INT_EN;
1405 if (dev_priv->hotplug_supported_mask & HDMIC_HOTPLUG_INT_STATUS)
1406 hotplug_en |= HDMIC_HOTPLUG_INT_EN;
1407 if (dev_priv->hotplug_supported_mask & HDMID_HOTPLUG_INT_STATUS)
1408 hotplug_en |= HDMID_HOTPLUG_INT_EN;
1409 if (dev_priv->hotplug_supported_mask & SDVOC_HOTPLUG_INT_STATUS)
1410 hotplug_en |= SDVOC_HOTPLUG_INT_EN;
1411 if (dev_priv->hotplug_supported_mask & SDVOB_HOTPLUG_INT_STATUS)
1412 hotplug_en |= SDVOB_HOTPLUG_INT_EN;
1413 if (dev_priv->hotplug_supported_mask & CRT_HOTPLUG_INT_STATUS)
1414 hotplug_en |= CRT_HOTPLUG_INT_EN;
1415 /* Ignore TV since it's buggy */
1416
Jesse Barnes5ca58282009-03-31 14:11:15 -07001417 I915_WRITE(PORT_HOTPLUG_EN, hotplug_en);
1418
Jesse Barnes5ca58282009-03-31 14:11:15 -07001419 /* Enable in IER... */
1420 enable_mask |= I915_DISPLAY_PORT_INTERRUPT;
1421 /* and unmask in IMR */
1422 i915_enable_irq(dev_priv, I915_DISPLAY_PORT_INTERRUPT);
1423 }
1424
Jesse Barnes63eeaf32009-06-18 16:56:52 -07001425 /*
1426 * Enable some error detection, note the instruction error mask
1427 * bit is reserved, so we leave it masked.
1428 */
1429 if (IS_G4X(dev)) {
1430 error_mask = ~(GM45_ERROR_PAGE_TABLE |
1431 GM45_ERROR_MEM_PRIV |
1432 GM45_ERROR_CP_PRIV |
1433 I915_ERROR_MEMORY_REFRESH);
1434 } else {
1435 error_mask = ~(I915_ERROR_PAGE_TABLE |
1436 I915_ERROR_MEMORY_REFRESH);
1437 }
1438 I915_WRITE(EMR, error_mask);
1439
Keith Packard7c463582008-11-04 02:03:27 -08001440 /* Disable pipe interrupt enables, clear pending pipe status */
1441 I915_WRITE(PIPEASTAT, I915_READ(PIPEASTAT) & 0x8000ffff);
1442 I915_WRITE(PIPEBSTAT, I915_READ(PIPEBSTAT) & 0x8000ffff);
1443 /* Clear pending interrupt status */
1444 I915_WRITE(IIR, I915_READ(IIR));
1445
Jesse Barnes5ca58282009-03-31 14:11:15 -07001446 I915_WRITE(IER, enable_mask);
Keith Packard7c463582008-11-04 02:03:27 -08001447 I915_WRITE(IMR, dev_priv->irq_mask_reg);
Eric Anholted4cb412008-07-29 12:10:39 -07001448 (void) I915_READ(IER);
1449
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +01001450 opregion_enable_asle(dev);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001451
1452 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453}
1454
Adam Jacksonf2b115e2009-12-03 17:14:42 -05001455static void ironlake_irq_uninstall(struct drm_device *dev)
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001456{
1457 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
1458 I915_WRITE(HWSTAM, 0xffffffff);
1459
1460 I915_WRITE(DEIMR, 0xffffffff);
1461 I915_WRITE(DEIER, 0x0);
1462 I915_WRITE(DEIIR, I915_READ(DEIIR));
1463
1464 I915_WRITE(GTIMR, 0xffffffff);
1465 I915_WRITE(GTIER, 0x0);
1466 I915_WRITE(GTIIR, I915_READ(GTIIR));
1467}
1468
Dave Airlie84b1fd12007-07-11 15:53:27 +10001469void i915_driver_irq_uninstall(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470{
1471 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Dave Airlie91e37382006-02-18 15:17:04 +11001472
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473 if (!dev_priv)
1474 return;
1475
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001476 dev_priv->vblank_pipe = 0;
1477
Eric Anholtbad720f2009-10-22 16:11:14 -07001478 if (HAS_PCH_SPLIT(dev)) {
Adam Jacksonf2b115e2009-12-03 17:14:42 -05001479 ironlake_irq_uninstall(dev);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001480 return;
1481 }
1482
Jesse Barnes5ca58282009-03-31 14:11:15 -07001483 if (I915_HAS_HOTPLUG(dev)) {
1484 I915_WRITE(PORT_HOTPLUG_EN, 0);
1485 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
1486 }
1487
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001488 I915_WRITE(HWSTAM, 0xffffffff);
Keith Packard7c463582008-11-04 02:03:27 -08001489 I915_WRITE(PIPEASTAT, 0);
1490 I915_WRITE(PIPEBSTAT, 0);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001491 I915_WRITE(IMR, 0xffffffff);
Eric Anholted4cb412008-07-29 12:10:39 -07001492 I915_WRITE(IER, 0x0);
Dave Airlie91e37382006-02-18 15:17:04 +11001493
Keith Packard7c463582008-11-04 02:03:27 -08001494 I915_WRITE(PIPEASTAT, I915_READ(PIPEASTAT) & 0x8000ffff);
1495 I915_WRITE(PIPEBSTAT, I915_READ(PIPEBSTAT) & 0x8000ffff);
1496 I915_WRITE(IIR, I915_READ(IIR));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497}