blob: 2479be001e405c821345750d5b384ec41c79759c [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 u8 new_delay = dev_priv->cur_delay;
282
Jesse Barnes7648fa92010-05-20 14:28:11 -0700283 I915_WRITE16(MEMINTRSTS, MEMINT_EVAL_CHG);
Matthew Garrettb5b72e82010-02-02 18:30:47 +0000284 busy_up = I915_READ(RCPREVBSYTUPAVG);
285 busy_down = I915_READ(RCPREVBSYTDNAVG);
Jesse Barnesf97108d2010-01-29 11:27:07 -0800286 max_avg = I915_READ(RCBMAXAVG);
287 min_avg = I915_READ(RCBMINAVG);
288
289 /* Handle RCS change request from hw */
Matthew Garrettb5b72e82010-02-02 18:30:47 +0000290 if (busy_up > max_avg) {
Jesse Barnesf97108d2010-01-29 11:27:07 -0800291 if (dev_priv->cur_delay != dev_priv->max_delay)
292 new_delay = dev_priv->cur_delay - 1;
293 if (new_delay < dev_priv->max_delay)
294 new_delay = dev_priv->max_delay;
Matthew Garrettb5b72e82010-02-02 18:30:47 +0000295 } else if (busy_down < min_avg) {
Jesse Barnesf97108d2010-01-29 11:27:07 -0800296 if (dev_priv->cur_delay != dev_priv->min_delay)
297 new_delay = dev_priv->cur_delay + 1;
298 if (new_delay > dev_priv->min_delay)
299 new_delay = dev_priv->min_delay;
300 }
301
Jesse Barnes7648fa92010-05-20 14:28:11 -0700302 if (ironlake_set_drps(dev, new_delay))
303 dev_priv->cur_delay = new_delay;
Jesse Barnesf97108d2010-01-29 11:27:07 -0800304
305 return;
306}
307
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500308irqreturn_t ironlake_irq_handler(struct drm_device *dev)
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800309{
310 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
311 int ret = IRQ_NONE;
Dave Airlie3ff99162009-12-08 14:03:47 +1000312 u32 de_iir, gt_iir, de_ier, pch_iir;
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800313 struct drm_i915_master_private *master_priv;
Zou Nan hai852835f2010-05-21 09:08:56 +0800314 struct intel_ring_buffer *render_ring = &dev_priv->render_ring;
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800315
Zou, Nanhai2d109a82009-11-06 02:13:01 +0000316 /* disable master interrupt before clearing iir */
317 de_ier = I915_READ(DEIER);
318 I915_WRITE(DEIER, de_ier & ~DE_MASTER_IRQ_CONTROL);
319 (void)I915_READ(DEIER);
320
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800321 de_iir = I915_READ(DEIIR);
322 gt_iir = I915_READ(GTIIR);
Zhenyu Wangc6501562009-11-03 18:57:21 +0000323 pch_iir = I915_READ(SDEIIR);
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800324
Zou Nan haic7c85102010-01-15 10:29:06 +0800325 if (de_iir == 0 && gt_iir == 0 && pch_iir == 0)
326 goto done;
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800327
Zou Nan haic7c85102010-01-15 10:29:06 +0800328 ret = IRQ_HANDLED;
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800329
Zou Nan haic7c85102010-01-15 10:29:06 +0800330 if (dev->primary->master) {
331 master_priv = dev->primary->master->driver_priv;
332 if (master_priv->sarea_priv)
333 master_priv->sarea_priv->last_dispatch =
334 READ_BREADCRUMB(dev_priv);
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800335 }
336
Jesse Barnese552eb72010-04-21 11:39:23 -0700337 if (gt_iir & GT_PIPE_NOTIFY) {
Zou Nan hai852835f2010-05-21 09:08:56 +0800338 u32 seqno = render_ring->get_gem_seqno(dev, render_ring);
339 render_ring->irq_gem_seqno = seqno;
Zou Nan haic7c85102010-01-15 10:29:06 +0800340 trace_i915_gem_request_complete(dev, seqno);
Zou Nan hai852835f2010-05-21 09:08:56 +0800341 DRM_WAKEUP(&dev_priv->render_ring.irq_queue);
Zou Nan haic7c85102010-01-15 10:29:06 +0800342 dev_priv->hangcheck_count = 0;
343 mod_timer(&dev_priv->hangcheck_timer, jiffies + DRM_I915_HANGCHECK_PERIOD);
344 }
Zou Nan haid1b851f2010-05-21 09:08:57 +0800345 if (gt_iir & GT_BSD_USER_INTERRUPT)
346 DRM_WAKEUP(&dev_priv->bsd_ring.irq_queue);
347
Zou Nan haic7c85102010-01-15 10:29:06 +0800348
349 if (de_iir & DE_GSE)
350 ironlake_opregion_gse_intr(dev);
351
Zhenyu Wangf072d2e2010-02-09 09:46:19 +0800352 if (de_iir & DE_PLANEA_FLIP_DONE) {
Jesse Barnes013d5aa2010-01-29 11:18:31 -0800353 intel_prepare_page_flip(dev, 0);
Jesse Barnes013d5aa2010-01-29 11:18:31 -0800354 intel_finish_page_flip(dev, 0);
355 }
356
Zhenyu Wangf072d2e2010-02-09 09:46:19 +0800357 if (de_iir & DE_PLANEB_FLIP_DONE) {
358 intel_prepare_page_flip(dev, 1);
Jesse Barnes013d5aa2010-01-29 11:18:31 -0800359 intel_finish_page_flip(dev, 1);
360 }
Li Pengc062df62010-01-23 00:12:58 +0800361
Zhenyu Wangf072d2e2010-02-09 09:46:19 +0800362 if (de_iir & DE_PIPEA_VBLANK)
363 drm_handle_vblank(dev, 0);
364
365 if (de_iir & DE_PIPEB_VBLANK)
366 drm_handle_vblank(dev, 1);
367
Zou Nan haic7c85102010-01-15 10:29:06 +0800368 /* check event from PCH */
369 if ((de_iir & DE_PCH_EVENT) &&
370 (pch_iir & SDE_HOTPLUG_MASK)) {
371 queue_work(dev_priv->wq, &dev_priv->hotplug_work);
372 }
373
Jesse Barnesf97108d2010-01-29 11:27:07 -0800374 if (de_iir & DE_PCU_EVENT) {
Jesse Barnes7648fa92010-05-20 14:28:11 -0700375 I915_WRITE16(MEMINTRSTS, I915_READ(MEMINTRSTS));
Jesse Barnesf97108d2010-01-29 11:27:07 -0800376 i915_handle_rps_change(dev);
377 }
378
Zou Nan haic7c85102010-01-15 10:29:06 +0800379 /* should clear PCH hotplug event before clear CPU irq */
380 I915_WRITE(SDEIIR, pch_iir);
381 I915_WRITE(GTIIR, gt_iir);
382 I915_WRITE(DEIIR, de_iir);
383
384done:
Zou, Nanhai2d109a82009-11-06 02:13:01 +0000385 I915_WRITE(DEIER, de_ier);
386 (void)I915_READ(DEIER);
387
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800388 return ret;
389}
390
Jesse Barnes8a905232009-07-11 16:48:03 -0400391/**
392 * i915_error_work_func - do process context error handling work
393 * @work: work struct
394 *
395 * Fire an error uevent so userspace can see that a hang or error
396 * was detected.
397 */
398static void i915_error_work_func(struct work_struct *work)
399{
400 drm_i915_private_t *dev_priv = container_of(work, drm_i915_private_t,
401 error_work);
402 struct drm_device *dev = dev_priv->dev;
Ben Gamarif316a422009-09-14 17:48:46 -0400403 char *error_event[] = { "ERROR=1", NULL };
404 char *reset_event[] = { "RESET=1", NULL };
405 char *reset_done_event[] = { "ERROR=0", NULL };
Jesse Barnes8a905232009-07-11 16:48:03 -0400406
Zhao Yakui44d98a62009-10-09 11:39:40 +0800407 DRM_DEBUG_DRIVER("generating error event\n");
Ben Gamarif316a422009-09-14 17:48:46 -0400408 kobject_uevent_env(&dev->primary->kdev.kobj, KOBJ_CHANGE, error_event);
Jesse Barnes8a905232009-07-11 16:48:03 -0400409
Ben Gamariba1234d2009-09-14 17:48:47 -0400410 if (atomic_read(&dev_priv->mm.wedged)) {
Ben Gamarif316a422009-09-14 17:48:46 -0400411 if (IS_I965G(dev)) {
Zhao Yakui44d98a62009-10-09 11:39:40 +0800412 DRM_DEBUG_DRIVER("resetting chip\n");
Ben Gamarif316a422009-09-14 17:48:46 -0400413 kobject_uevent_env(&dev->primary->kdev.kobj, KOBJ_CHANGE, reset_event);
414 if (!i965_reset(dev, GDRST_RENDER)) {
Ben Gamariba1234d2009-09-14 17:48:47 -0400415 atomic_set(&dev_priv->mm.wedged, 0);
Ben Gamarif316a422009-09-14 17:48:46 -0400416 kobject_uevent_env(&dev->primary->kdev.kobj, KOBJ_CHANGE, reset_done_event);
417 }
418 } else {
Zhao Yakui44d98a62009-10-09 11:39:40 +0800419 DRM_DEBUG_DRIVER("reboot required\n");
Ben Gamarif316a422009-09-14 17:48:46 -0400420 }
421 }
Jesse Barnes8a905232009-07-11 16:48:03 -0400422}
423
Chris Wilson9df30792010-02-18 10:24:56 +0000424static struct drm_i915_error_object *
425i915_error_object_create(struct drm_device *dev,
426 struct drm_gem_object *src)
427{
428 struct drm_i915_error_object *dst;
429 struct drm_i915_gem_object *src_priv;
430 int page, page_count;
431
432 if (src == NULL)
433 return NULL;
434
Daniel Vetter23010e42010-03-08 13:35:02 +0100435 src_priv = to_intel_bo(src);
Chris Wilson9df30792010-02-18 10:24:56 +0000436 if (src_priv->pages == NULL)
437 return NULL;
438
439 page_count = src->size / PAGE_SIZE;
440
441 dst = kmalloc(sizeof(*dst) + page_count * sizeof (u32 *), GFP_ATOMIC);
442 if (dst == NULL)
443 return NULL;
444
445 for (page = 0; page < page_count; page++) {
446 void *s, *d = kmalloc(PAGE_SIZE, GFP_ATOMIC);
Andrew Morton788885a2010-05-11 14:07:05 -0700447 unsigned long flags;
448
Chris Wilson9df30792010-02-18 10:24:56 +0000449 if (d == NULL)
450 goto unwind;
Andrew Morton788885a2010-05-11 14:07:05 -0700451 local_irq_save(flags);
452 s = kmap_atomic(src_priv->pages[page], KM_IRQ0);
Chris Wilson9df30792010-02-18 10:24:56 +0000453 memcpy(d, s, PAGE_SIZE);
Andrew Morton788885a2010-05-11 14:07:05 -0700454 kunmap_atomic(s, KM_IRQ0);
455 local_irq_restore(flags);
Chris Wilson9df30792010-02-18 10:24:56 +0000456 dst->pages[page] = d;
457 }
458 dst->page_count = page_count;
459 dst->gtt_offset = src_priv->gtt_offset;
460
461 return dst;
462
463unwind:
464 while (page--)
465 kfree(dst->pages[page]);
466 kfree(dst);
467 return NULL;
468}
469
470static void
471i915_error_object_free(struct drm_i915_error_object *obj)
472{
473 int page;
474
475 if (obj == NULL)
476 return;
477
478 for (page = 0; page < obj->page_count; page++)
479 kfree(obj->pages[page]);
480
481 kfree(obj);
482}
483
484static void
485i915_error_state_free(struct drm_device *dev,
486 struct drm_i915_error_state *error)
487{
488 i915_error_object_free(error->batchbuffer[0]);
489 i915_error_object_free(error->batchbuffer[1]);
490 i915_error_object_free(error->ringbuffer);
491 kfree(error->active_bo);
492 kfree(error);
493}
494
495static u32
496i915_get_bbaddr(struct drm_device *dev, u32 *ring)
497{
498 u32 cmd;
499
500 if (IS_I830(dev) || IS_845G(dev))
501 cmd = MI_BATCH_BUFFER;
502 else if (IS_I965G(dev))
503 cmd = (MI_BATCH_BUFFER_START | (2 << 6) |
504 MI_BATCH_NON_SECURE_I965);
505 else
506 cmd = (MI_BATCH_BUFFER_START | (2 << 6));
507
508 return ring[0] == cmd ? ring[1] : 0;
509}
510
511static u32
512i915_ringbuffer_last_batch(struct drm_device *dev)
513{
514 struct drm_i915_private *dev_priv = dev->dev_private;
515 u32 head, bbaddr;
516 u32 *ring;
517
518 /* Locate the current position in the ringbuffer and walk back
519 * to find the most recently dispatched batch buffer.
520 */
521 bbaddr = 0;
522 head = I915_READ(PRB0_HEAD) & HEAD_ADDR;
Eric Anholtd3301d82010-05-21 13:55:54 -0700523 ring = (u32 *)(dev_priv->render_ring.virtual_start + head);
Chris Wilson9df30792010-02-18 10:24:56 +0000524
Eric Anholtd3301d82010-05-21 13:55:54 -0700525 while (--ring >= (u32 *)dev_priv->render_ring.virtual_start) {
Chris Wilson9df30792010-02-18 10:24:56 +0000526 bbaddr = i915_get_bbaddr(dev, ring);
527 if (bbaddr)
528 break;
529 }
530
531 if (bbaddr == 0) {
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800532 ring = (u32 *)(dev_priv->render_ring.virtual_start
533 + dev_priv->render_ring.size);
Eric Anholtd3301d82010-05-21 13:55:54 -0700534 while (--ring >= (u32 *)dev_priv->render_ring.virtual_start) {
Chris Wilson9df30792010-02-18 10:24:56 +0000535 bbaddr = i915_get_bbaddr(dev, ring);
536 if (bbaddr)
537 break;
538 }
539 }
540
541 return bbaddr;
542}
543
Jesse Barnes8a905232009-07-11 16:48:03 -0400544/**
545 * i915_capture_error_state - capture an error record for later analysis
546 * @dev: drm device
547 *
548 * Should be called when an error is detected (either a hang or an error
549 * interrupt) to capture error state from the time of the error. Fills
550 * out a structure which becomes available in debugfs for user level tools
551 * to pick up.
552 */
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700553static void i915_capture_error_state(struct drm_device *dev)
554{
555 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson9df30792010-02-18 10:24:56 +0000556 struct drm_i915_gem_object *obj_priv;
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700557 struct drm_i915_error_state *error;
Chris Wilson9df30792010-02-18 10:24:56 +0000558 struct drm_gem_object *batchbuffer[2];
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700559 unsigned long flags;
Chris Wilson9df30792010-02-18 10:24:56 +0000560 u32 bbaddr;
561 int count;
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700562
563 spin_lock_irqsave(&dev_priv->error_lock, flags);
Chris Wilson9df30792010-02-18 10:24:56 +0000564 error = dev_priv->first_error;
565 spin_unlock_irqrestore(&dev_priv->error_lock, flags);
566 if (error)
567 return;
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700568
569 error = kmalloc(sizeof(*error), GFP_ATOMIC);
570 if (!error) {
Chris Wilson9df30792010-02-18 10:24:56 +0000571 DRM_DEBUG_DRIVER("out of memory, not capturing error state\n");
572 return;
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700573 }
574
Zou Nan hai852835f2010-05-21 09:08:56 +0800575 error->seqno = i915_get_gem_seqno(dev, &dev_priv->render_ring);
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700576 error->eir = I915_READ(EIR);
577 error->pgtbl_er = I915_READ(PGTBL_ER);
578 error->pipeastat = I915_READ(PIPEASTAT);
579 error->pipebstat = I915_READ(PIPEBSTAT);
580 error->instpm = I915_READ(INSTPM);
581 if (!IS_I965G(dev)) {
582 error->ipeir = I915_READ(IPEIR);
583 error->ipehr = I915_READ(IPEHR);
584 error->instdone = I915_READ(INSTDONE);
585 error->acthd = I915_READ(ACTHD);
Chris Wilson9df30792010-02-18 10:24:56 +0000586 error->bbaddr = 0;
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700587 } else {
588 error->ipeir = I915_READ(IPEIR_I965);
589 error->ipehr = I915_READ(IPEHR_I965);
590 error->instdone = I915_READ(INSTDONE_I965);
591 error->instps = I915_READ(INSTPS);
592 error->instdone1 = I915_READ(INSTDONE1);
593 error->acthd = I915_READ(ACTHD_I965);
Chris Wilson9df30792010-02-18 10:24:56 +0000594 error->bbaddr = I915_READ64(BB_ADDR);
595 }
596
597 bbaddr = i915_ringbuffer_last_batch(dev);
598
599 /* Grab the current batchbuffer, most likely to have crashed. */
600 batchbuffer[0] = NULL;
601 batchbuffer[1] = NULL;
602 count = 0;
Zou Nan hai852835f2010-05-21 09:08:56 +0800603 list_for_each_entry(obj_priv,
604 &dev_priv->render_ring.active_list, list) {
605
Daniel Vettera8089e82010-04-09 19:05:09 +0000606 struct drm_gem_object *obj = &obj_priv->base;
Chris Wilson9df30792010-02-18 10:24:56 +0000607
608 if (batchbuffer[0] == NULL &&
609 bbaddr >= obj_priv->gtt_offset &&
610 bbaddr < obj_priv->gtt_offset + obj->size)
611 batchbuffer[0] = obj;
612
613 if (batchbuffer[1] == NULL &&
614 error->acthd >= obj_priv->gtt_offset &&
615 error->acthd < obj_priv->gtt_offset + obj->size &&
616 batchbuffer[0] != obj)
617 batchbuffer[1] = obj;
618
619 count++;
620 }
621
622 /* We need to copy these to an anonymous buffer as the simplest
623 * method to avoid being overwritten by userpace.
624 */
625 error->batchbuffer[0] = i915_error_object_create(dev, batchbuffer[0]);
626 error->batchbuffer[1] = i915_error_object_create(dev, batchbuffer[1]);
627
628 /* Record the ringbuffer */
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800629 error->ringbuffer = i915_error_object_create(dev,
630 dev_priv->render_ring.gem_object);
Chris Wilson9df30792010-02-18 10:24:56 +0000631
632 /* Record buffers on the active list. */
633 error->active_bo = NULL;
634 error->active_bo_count = 0;
635
636 if (count)
637 error->active_bo = kmalloc(sizeof(*error->active_bo)*count,
638 GFP_ATOMIC);
639
640 if (error->active_bo) {
641 int i = 0;
Zou Nan hai852835f2010-05-21 09:08:56 +0800642 list_for_each_entry(obj_priv,
643 &dev_priv->render_ring.active_list, list) {
Daniel Vettera8089e82010-04-09 19:05:09 +0000644 struct drm_gem_object *obj = &obj_priv->base;
Chris Wilson9df30792010-02-18 10:24:56 +0000645
646 error->active_bo[i].size = obj->size;
647 error->active_bo[i].name = obj->name;
648 error->active_bo[i].seqno = obj_priv->last_rendering_seqno;
649 error->active_bo[i].gtt_offset = obj_priv->gtt_offset;
650 error->active_bo[i].read_domains = obj->read_domains;
651 error->active_bo[i].write_domain = obj->write_domain;
652 error->active_bo[i].fence_reg = obj_priv->fence_reg;
653 error->active_bo[i].pinned = 0;
654 if (obj_priv->pin_count > 0)
655 error->active_bo[i].pinned = 1;
656 if (obj_priv->user_pin_count > 0)
657 error->active_bo[i].pinned = -1;
658 error->active_bo[i].tiling = obj_priv->tiling_mode;
659 error->active_bo[i].dirty = obj_priv->dirty;
660 error->active_bo[i].purgeable = obj_priv->madv != I915_MADV_WILLNEED;
661
662 if (++i == count)
663 break;
664 }
665 error->active_bo_count = i;
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700666 }
667
Jesse Barnes8a905232009-07-11 16:48:03 -0400668 do_gettimeofday(&error->time);
669
Chris Wilson9df30792010-02-18 10:24:56 +0000670 spin_lock_irqsave(&dev_priv->error_lock, flags);
671 if (dev_priv->first_error == NULL) {
672 dev_priv->first_error = error;
673 error = NULL;
674 }
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700675 spin_unlock_irqrestore(&dev_priv->error_lock, flags);
Chris Wilson9df30792010-02-18 10:24:56 +0000676
677 if (error)
678 i915_error_state_free(dev, error);
679}
680
681void i915_destroy_error_state(struct drm_device *dev)
682{
683 struct drm_i915_private *dev_priv = dev->dev_private;
684 struct drm_i915_error_state *error;
685
686 spin_lock(&dev_priv->error_lock);
687 error = dev_priv->first_error;
688 dev_priv->first_error = NULL;
689 spin_unlock(&dev_priv->error_lock);
690
691 if (error)
692 i915_error_state_free(dev, error);
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700693}
694
Chris Wilson35aed2e2010-05-27 13:18:12 +0100695static void i915_report_and_clear_eir(struct drm_device *dev)
Jesse Barnes8a905232009-07-11 16:48:03 -0400696{
697 struct drm_i915_private *dev_priv = dev->dev_private;
698 u32 eir = I915_READ(EIR);
Jesse Barnes8a905232009-07-11 16:48:03 -0400699
Chris Wilson35aed2e2010-05-27 13:18:12 +0100700 if (!eir)
701 return;
Jesse Barnes8a905232009-07-11 16:48:03 -0400702
703 printk(KERN_ERR "render error detected, EIR: 0x%08x\n",
704 eir);
705
706 if (IS_G4X(dev)) {
707 if (eir & (GM45_ERROR_MEM_PRIV | GM45_ERROR_CP_PRIV)) {
708 u32 ipeir = I915_READ(IPEIR_I965);
709
710 printk(KERN_ERR " IPEIR: 0x%08x\n",
711 I915_READ(IPEIR_I965));
712 printk(KERN_ERR " IPEHR: 0x%08x\n",
713 I915_READ(IPEHR_I965));
714 printk(KERN_ERR " INSTDONE: 0x%08x\n",
715 I915_READ(INSTDONE_I965));
716 printk(KERN_ERR " INSTPS: 0x%08x\n",
717 I915_READ(INSTPS));
718 printk(KERN_ERR " INSTDONE1: 0x%08x\n",
719 I915_READ(INSTDONE1));
720 printk(KERN_ERR " ACTHD: 0x%08x\n",
721 I915_READ(ACTHD_I965));
722 I915_WRITE(IPEIR_I965, ipeir);
723 (void)I915_READ(IPEIR_I965);
724 }
725 if (eir & GM45_ERROR_PAGE_TABLE) {
726 u32 pgtbl_err = I915_READ(PGTBL_ER);
727 printk(KERN_ERR "page table error\n");
728 printk(KERN_ERR " PGTBL_ER: 0x%08x\n",
729 pgtbl_err);
730 I915_WRITE(PGTBL_ER, pgtbl_err);
731 (void)I915_READ(PGTBL_ER);
732 }
733 }
734
735 if (IS_I9XX(dev)) {
736 if (eir & I915_ERROR_PAGE_TABLE) {
737 u32 pgtbl_err = I915_READ(PGTBL_ER);
738 printk(KERN_ERR "page table error\n");
739 printk(KERN_ERR " PGTBL_ER: 0x%08x\n",
740 pgtbl_err);
741 I915_WRITE(PGTBL_ER, pgtbl_err);
742 (void)I915_READ(PGTBL_ER);
743 }
744 }
745
746 if (eir & I915_ERROR_MEMORY_REFRESH) {
Chris Wilson35aed2e2010-05-27 13:18:12 +0100747 u32 pipea_stats = I915_READ(PIPEASTAT);
748 u32 pipeb_stats = I915_READ(PIPEBSTAT);
749
Jesse Barnes8a905232009-07-11 16:48:03 -0400750 printk(KERN_ERR "memory refresh error\n");
751 printk(KERN_ERR "PIPEASTAT: 0x%08x\n",
752 pipea_stats);
753 printk(KERN_ERR "PIPEBSTAT: 0x%08x\n",
754 pipeb_stats);
755 /* pipestat has already been acked */
756 }
757 if (eir & I915_ERROR_INSTRUCTION) {
758 printk(KERN_ERR "instruction error\n");
759 printk(KERN_ERR " INSTPM: 0x%08x\n",
760 I915_READ(INSTPM));
761 if (!IS_I965G(dev)) {
762 u32 ipeir = I915_READ(IPEIR);
763
764 printk(KERN_ERR " IPEIR: 0x%08x\n",
765 I915_READ(IPEIR));
766 printk(KERN_ERR " IPEHR: 0x%08x\n",
767 I915_READ(IPEHR));
768 printk(KERN_ERR " INSTDONE: 0x%08x\n",
769 I915_READ(INSTDONE));
770 printk(KERN_ERR " ACTHD: 0x%08x\n",
771 I915_READ(ACTHD));
772 I915_WRITE(IPEIR, ipeir);
773 (void)I915_READ(IPEIR);
774 } else {
775 u32 ipeir = I915_READ(IPEIR_I965);
776
777 printk(KERN_ERR " IPEIR: 0x%08x\n",
778 I915_READ(IPEIR_I965));
779 printk(KERN_ERR " IPEHR: 0x%08x\n",
780 I915_READ(IPEHR_I965));
781 printk(KERN_ERR " INSTDONE: 0x%08x\n",
782 I915_READ(INSTDONE_I965));
783 printk(KERN_ERR " INSTPS: 0x%08x\n",
784 I915_READ(INSTPS));
785 printk(KERN_ERR " INSTDONE1: 0x%08x\n",
786 I915_READ(INSTDONE1));
787 printk(KERN_ERR " ACTHD: 0x%08x\n",
788 I915_READ(ACTHD_I965));
789 I915_WRITE(IPEIR_I965, ipeir);
790 (void)I915_READ(IPEIR_I965);
791 }
792 }
793
794 I915_WRITE(EIR, eir);
795 (void)I915_READ(EIR);
796 eir = I915_READ(EIR);
797 if (eir) {
798 /*
799 * some errors might have become stuck,
800 * mask them.
801 */
802 DRM_ERROR("EIR stuck: 0x%08x, masking\n", eir);
803 I915_WRITE(EMR, I915_READ(EMR) | eir);
804 I915_WRITE(IIR, I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT);
805 }
Chris Wilson35aed2e2010-05-27 13:18:12 +0100806}
807
808/**
809 * i915_handle_error - handle an error interrupt
810 * @dev: drm device
811 *
812 * Do some basic checking of regsiter state at error interrupt time and
813 * dump it to the syslog. Also call i915_capture_error_state() to make
814 * sure we get a record and make it available in debugfs. Fire a uevent
815 * so userspace knows something bad happened (should trigger collection
816 * of a ring dump etc.).
817 */
818static void i915_handle_error(struct drm_device *dev, bool wedged)
819{
820 struct drm_i915_private *dev_priv = dev->dev_private;
821
822 i915_capture_error_state(dev);
823 i915_report_and_clear_eir(dev);
Jesse Barnes8a905232009-07-11 16:48:03 -0400824
Ben Gamariba1234d2009-09-14 17:48:47 -0400825 if (wedged) {
826 atomic_set(&dev_priv->mm.wedged, 1);
827
Ben Gamari11ed50e2009-09-14 17:48:45 -0400828 /*
829 * Wakeup waiting processes so they don't hang
830 */
Zou Nan hai852835f2010-05-21 09:08:56 +0800831 DRM_WAKEUP(&dev_priv->render_ring.irq_queue);
Ben Gamari11ed50e2009-09-14 17:48:45 -0400832 }
833
Eric Anholt9c9fe1f2009-08-03 16:09:16 -0700834 queue_work(dev_priv->wq, &dev_priv->error_work);
Jesse Barnes8a905232009-07-11 16:48:03 -0400835}
836
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837irqreturn_t i915_driver_irq_handler(DRM_IRQ_ARGS)
838{
Dave Airlie84b1fd12007-07-11 15:53:27 +1000839 struct drm_device *dev = (struct drm_device *) arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000841 struct drm_i915_master_private *master_priv;
Eric Anholtcdfbc412008-11-04 15:50:30 -0800842 u32 iir, new_iir;
843 u32 pipea_stats, pipeb_stats;
Keith Packard05eff842008-11-19 14:03:05 -0800844 u32 vblank_status;
845 u32 vblank_enable;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700846 int vblank = 0;
Keith Packard7c463582008-11-04 02:03:27 -0800847 unsigned long irqflags;
Keith Packard05eff842008-11-19 14:03:05 -0800848 int irq_received;
849 int ret = IRQ_NONE;
Zou Nan hai852835f2010-05-21 09:08:56 +0800850 struct intel_ring_buffer *render_ring = &dev_priv->render_ring;
Dave Airlieaf6061a2008-05-07 12:15:39 +1000851
Eric Anholt630681d2008-10-06 15:14:12 -0700852 atomic_inc(&dev_priv->irq_received);
853
Eric Anholtbad720f2009-10-22 16:11:14 -0700854 if (HAS_PCH_SPLIT(dev))
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500855 return ironlake_irq_handler(dev);
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800856
Eric Anholted4cb412008-07-29 12:10:39 -0700857 iir = I915_READ(IIR);
Dave Airlieaf6061a2008-05-07 12:15:39 +1000858
Keith Packard05eff842008-11-19 14:03:05 -0800859 if (IS_I965G(dev)) {
860 vblank_status = I915_START_VBLANK_INTERRUPT_STATUS;
861 vblank_enable = PIPE_START_VBLANK_INTERRUPT_ENABLE;
862 } else {
863 vblank_status = I915_VBLANK_INTERRUPT_STATUS;
864 vblank_enable = I915_VBLANK_INTERRUPT_ENABLE;
865 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866
Keith Packard05eff842008-11-19 14:03:05 -0800867 for (;;) {
868 irq_received = iir != 0;
869
870 /* Can't rely on pipestat interrupt bit in iir as it might
871 * have been cleared after the pipestat interrupt was received.
872 * It doesn't set the bit in iir again, but it still produces
873 * interrupts (for non-MSI).
874 */
875 spin_lock_irqsave(&dev_priv->user_irq_lock, irqflags);
876 pipea_stats = I915_READ(PIPEASTAT);
877 pipeb_stats = I915_READ(PIPEBSTAT);
Jesse Barnes79e53942008-11-07 14:24:08 -0800878
Jesse Barnes8a905232009-07-11 16:48:03 -0400879 if (iir & I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT)
Ben Gamariba1234d2009-09-14 17:48:47 -0400880 i915_handle_error(dev, false);
Jesse Barnes8a905232009-07-11 16:48:03 -0400881
Eric Anholtcdfbc412008-11-04 15:50:30 -0800882 /*
883 * Clear the PIPE(A|B)STAT regs before the IIR
884 */
Keith Packard05eff842008-11-19 14:03:05 -0800885 if (pipea_stats & 0x8000ffff) {
Shaohua Li7662c8b2009-06-26 11:23:55 +0800886 if (pipea_stats & PIPE_FIFO_UNDERRUN_STATUS)
Zhao Yakui44d98a62009-10-09 11:39:40 +0800887 DRM_DEBUG_DRIVER("pipe a underrun\n");
Eric Anholtcdfbc412008-11-04 15:50:30 -0800888 I915_WRITE(PIPEASTAT, pipea_stats);
Keith Packard05eff842008-11-19 14:03:05 -0800889 irq_received = 1;
Eric Anholtcdfbc412008-11-04 15:50:30 -0800890 }
Keith Packard7c463582008-11-04 02:03:27 -0800891
Keith Packard05eff842008-11-19 14:03:05 -0800892 if (pipeb_stats & 0x8000ffff) {
Shaohua Li7662c8b2009-06-26 11:23:55 +0800893 if (pipeb_stats & PIPE_FIFO_UNDERRUN_STATUS)
Zhao Yakui44d98a62009-10-09 11:39:40 +0800894 DRM_DEBUG_DRIVER("pipe b underrun\n");
Eric Anholtcdfbc412008-11-04 15:50:30 -0800895 I915_WRITE(PIPEBSTAT, pipeb_stats);
Keith Packard05eff842008-11-19 14:03:05 -0800896 irq_received = 1;
Eric Anholtcdfbc412008-11-04 15:50:30 -0800897 }
Keith Packard05eff842008-11-19 14:03:05 -0800898 spin_unlock_irqrestore(&dev_priv->user_irq_lock, irqflags);
899
900 if (!irq_received)
901 break;
902
903 ret = IRQ_HANDLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904
Jesse Barnes5ca58282009-03-31 14:11:15 -0700905 /* Consume port. Then clear IIR or we'll miss events */
906 if ((I915_HAS_HOTPLUG(dev)) &&
907 (iir & I915_DISPLAY_PORT_INTERRUPT)) {
908 u32 hotplug_status = I915_READ(PORT_HOTPLUG_STAT);
909
Zhao Yakui44d98a62009-10-09 11:39:40 +0800910 DRM_DEBUG_DRIVER("hotplug event received, stat 0x%08x\n",
Jesse Barnes5ca58282009-03-31 14:11:15 -0700911 hotplug_status);
912 if (hotplug_status & dev_priv->hotplug_supported_mask)
Eric Anholt9c9fe1f2009-08-03 16:09:16 -0700913 queue_work(dev_priv->wq,
914 &dev_priv->hotplug_work);
Jesse Barnes5ca58282009-03-31 14:11:15 -0700915
916 I915_WRITE(PORT_HOTPLUG_STAT, hotplug_status);
917 I915_READ(PORT_HOTPLUG_STAT);
918 }
919
Eric Anholtcdfbc412008-11-04 15:50:30 -0800920 I915_WRITE(IIR, iir);
921 new_iir = I915_READ(IIR); /* Flush posted writes */
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +0100922
Dave Airlie7c1c2872008-11-28 14:22:24 +1000923 if (dev->primary->master) {
924 master_priv = dev->primary->master->driver_priv;
925 if (master_priv->sarea_priv)
926 master_priv->sarea_priv->last_dispatch =
927 READ_BREADCRUMB(dev_priv);
928 }
Keith Packard7c463582008-11-04 02:03:27 -0800929
Eric Anholtcdfbc412008-11-04 15:50:30 -0800930 if (iir & I915_USER_INTERRUPT) {
Zou Nan hai852835f2010-05-21 09:08:56 +0800931 u32 seqno =
932 render_ring->get_gem_seqno(dev, render_ring);
933 render_ring->irq_gem_seqno = seqno;
Chris Wilson1c5d22f2009-08-25 11:15:50 +0100934 trace_i915_gem_request_complete(dev, seqno);
Zou Nan hai852835f2010-05-21 09:08:56 +0800935 DRM_WAKEUP(&dev_priv->render_ring.irq_queue);
Ben Gamarif65d9422009-09-14 17:48:44 -0400936 dev_priv->hangcheck_count = 0;
937 mod_timer(&dev_priv->hangcheck_timer, jiffies + DRM_I915_HANGCHECK_PERIOD);
Eric Anholtcdfbc412008-11-04 15:50:30 -0800938 }
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700939
Zou Nan haid1b851f2010-05-21 09:08:57 +0800940 if (HAS_BSD(dev) && (iir & I915_BSD_USER_INTERRUPT))
941 DRM_WAKEUP(&dev_priv->bsd_ring.irq_queue);
942
Kristian Høgsberg6b95a202009-11-18 11:25:18 -0500943 if (iir & I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT)
944 intel_prepare_page_flip(dev, 0);
945
946 if (iir & I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT)
947 intel_prepare_page_flip(dev, 1);
948
Keith Packard05eff842008-11-19 14:03:05 -0800949 if (pipea_stats & vblank_status) {
Eric Anholtcdfbc412008-11-04 15:50:30 -0800950 vblank++;
951 drm_handle_vblank(dev, 0);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -0500952 intel_finish_page_flip(dev, 0);
Eric Anholtcdfbc412008-11-04 15:50:30 -0800953 }
Eric Anholt673a3942008-07-30 12:06:12 -0700954
Keith Packard05eff842008-11-19 14:03:05 -0800955 if (pipeb_stats & vblank_status) {
Eric Anholtcdfbc412008-11-04 15:50:30 -0800956 vblank++;
957 drm_handle_vblank(dev, 1);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -0500958 intel_finish_page_flip(dev, 1);
Eric Anholtcdfbc412008-11-04 15:50:30 -0800959 }
Keith Packard7c463582008-11-04 02:03:27 -0800960
Zhao Yakuiedcb49c2010-04-07 17:11:21 +0800961 if ((pipea_stats & I915_LEGACY_BLC_EVENT_STATUS) ||
962 (pipeb_stats & I915_LEGACY_BLC_EVENT_STATUS) ||
Eric Anholtcdfbc412008-11-04 15:50:30 -0800963 (iir & I915_ASLE_INTERRUPT))
964 opregion_asle_intr(dev);
Keith Packard7c463582008-11-04 02:03:27 -0800965
Eric Anholtcdfbc412008-11-04 15:50:30 -0800966 /* With MSI, interrupts are only generated when iir
967 * transitions from zero to nonzero. If another bit got
968 * set while we were handling the existing iir bits, then
969 * we would never get another interrupt.
970 *
971 * This is fine on non-MSI as well, as if we hit this path
972 * we avoid exiting the interrupt handler only to generate
973 * another one.
974 *
975 * Note that for MSI this could cause a stray interrupt report
976 * if an interrupt landed in the time between writing IIR and
977 * the posting read. This should be rare enough to never
978 * trigger the 99% of 100,000 interrupts test for disabling
979 * stray interrupts.
980 */
981 iir = new_iir;
Keith Packard05eff842008-11-19 14:03:05 -0800982 }
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700983
Keith Packard05eff842008-11-19 14:03:05 -0800984 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985}
986
Dave Airlieaf6061a2008-05-07 12:15:39 +1000987static int i915_emit_irq(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988{
989 drm_i915_private_t *dev_priv = dev->dev_private;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000990 struct drm_i915_master_private *master_priv = dev->primary->master->driver_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991
992 i915_kernel_lost_context(dev);
993
Zhao Yakui44d98a62009-10-09 11:39:40 +0800994 DRM_DEBUG_DRIVER("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995
Kristian Høgsbergc99b0582008-08-20 11:20:13 -0400996 dev_priv->counter++;
Alan Hourihanec29b6692006-08-12 16:29:24 +1000997 if (dev_priv->counter > 0x7FFFFFFFUL)
Kristian Høgsbergc99b0582008-08-20 11:20:13 -0400998 dev_priv->counter = 1;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000999 if (master_priv->sarea_priv)
1000 master_priv->sarea_priv->last_enqueue = dev_priv->counter;
Alan Hourihanec29b6692006-08-12 16:29:24 +10001001
Keith Packard0baf8232008-11-08 11:44:14 +10001002 BEGIN_LP_RING(4);
Jesse Barnes585fb112008-07-29 11:54:06 -07001003 OUT_RING(MI_STORE_DWORD_INDEX);
Keith Packard0baf8232008-11-08 11:44:14 +10001004 OUT_RING(I915_BREADCRUMB_INDEX << MI_STORE_DWORD_INDEX_SHIFT);
Alan Hourihanec29b6692006-08-12 16:29:24 +10001005 OUT_RING(dev_priv->counter);
Jesse Barnes585fb112008-07-29 11:54:06 -07001006 OUT_RING(MI_USER_INTERRUPT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 ADVANCE_LP_RING();
Dave Airliebc5f4522007-11-05 12:50:58 +10001008
Alan Hourihanec29b6692006-08-12 16:29:24 +10001009 return dev_priv->counter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010}
1011
Chris Wilson9d34e5d2009-09-24 05:26:06 +01001012void i915_trace_irq_get(struct drm_device *dev, u32 seqno)
1013{
1014 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001015 struct intel_ring_buffer *render_ring = &dev_priv->render_ring;
Chris Wilson9d34e5d2009-09-24 05:26:06 +01001016
1017 if (dev_priv->trace_irq_seqno == 0)
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001018 render_ring->user_irq_get(dev, render_ring);
Chris Wilson9d34e5d2009-09-24 05:26:06 +01001019
1020 dev_priv->trace_irq_seqno = seqno;
1021}
1022
Dave Airlie84b1fd12007-07-11 15:53:27 +10001023static int i915_wait_irq(struct drm_device * dev, int irq_nr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024{
1025 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Dave Airlie7c1c2872008-11-28 14:22:24 +10001026 struct drm_i915_master_private *master_priv = dev->primary->master->driver_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027 int ret = 0;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001028 struct intel_ring_buffer *render_ring = &dev_priv->render_ring;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029
Zhao Yakui44d98a62009-10-09 11:39:40 +08001030 DRM_DEBUG_DRIVER("irq_nr=%d breadcrumb=%d\n", irq_nr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 READ_BREADCRUMB(dev_priv));
1032
Eric Anholted4cb412008-07-29 12:10:39 -07001033 if (READ_BREADCRUMB(dev_priv) >= irq_nr) {
Dave Airlie7c1c2872008-11-28 14:22:24 +10001034 if (master_priv->sarea_priv)
1035 master_priv->sarea_priv->last_dispatch = READ_BREADCRUMB(dev_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 return 0;
Eric Anholted4cb412008-07-29 12:10:39 -07001037 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038
Dave Airlie7c1c2872008-11-28 14:22:24 +10001039 if (master_priv->sarea_priv)
1040 master_priv->sarea_priv->perf_boxes |= I915_BOX_WAIT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001042 render_ring->user_irq_get(dev, render_ring);
Zou Nan hai852835f2010-05-21 09:08:56 +08001043 DRM_WAIT_ON(ret, dev_priv->render_ring.irq_queue, 3 * DRM_HZ,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044 READ_BREADCRUMB(dev_priv) >= irq_nr);
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001045 render_ring->user_irq_put(dev, render_ring);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046
Eric Anholt20caafa2007-08-25 19:22:43 +10001047 if (ret == -EBUSY) {
Márton Németh3e684ea2008-01-24 15:58:57 +10001048 DRM_ERROR("EBUSY -- rec: %d emitted: %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 READ_BREADCRUMB(dev_priv), (int)dev_priv->counter);
1050 }
1051
Dave Airlieaf6061a2008-05-07 12:15:39 +10001052 return ret;
1053}
1054
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055/* Needs the lock as it touches the ring.
1056 */
Eric Anholtc153f452007-09-03 12:06:45 +10001057int i915_irq_emit(struct drm_device *dev, void *data,
1058 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholtc153f452007-09-03 12:06:45 +10001061 drm_i915_irq_emit_t *emit = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 int result;
1063
Eric Anholtd3301d82010-05-21 13:55:54 -07001064 if (!dev_priv || !dev_priv->render_ring.virtual_start) {
Márton Németh3e684ea2008-01-24 15:58:57 +10001065 DRM_ERROR("called with no initialization\n");
Eric Anholt20caafa2007-08-25 19:22:43 +10001066 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 }
Eric Anholt299eb932009-02-24 22:14:12 -08001068
1069 RING_LOCK_TEST_WITH_RETURN(dev, file_priv);
1070
Eric Anholt546b0972008-09-01 16:45:29 -07001071 mutex_lock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072 result = i915_emit_irq(dev);
Eric Anholt546b0972008-09-01 16:45:29 -07001073 mutex_unlock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074
Eric Anholtc153f452007-09-03 12:06:45 +10001075 if (DRM_COPY_TO_USER(emit->irq_seq, &result, sizeof(int))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 DRM_ERROR("copy_to_user\n");
Eric Anholt20caafa2007-08-25 19:22:43 +10001077 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 }
1079
1080 return 0;
1081}
1082
1083/* Doesn't need the hardware lock.
1084 */
Eric Anholtc153f452007-09-03 12:06:45 +10001085int i915_irq_wait(struct drm_device *dev, void *data,
1086 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholtc153f452007-09-03 12:06:45 +10001089 drm_i915_irq_wait_t *irqwait = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090
1091 if (!dev_priv) {
Márton Németh3e684ea2008-01-24 15:58:57 +10001092 DRM_ERROR("called with no initialization\n");
Eric Anholt20caafa2007-08-25 19:22:43 +10001093 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094 }
1095
Eric Anholtc153f452007-09-03 12:06:45 +10001096 return i915_wait_irq(dev, irqwait->irq_seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097}
1098
Keith Packard42f52ef2008-10-18 19:39:29 -07001099/* Called from drm generic code, passed 'crtc' which
1100 * we use as a pipe index
1101 */
1102int i915_enable_vblank(struct drm_device *dev, int pipe)
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001103{
1104 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Keith Packarde9d21d72008-10-16 11:31:38 -07001105 unsigned long irqflags;
Jesse Barnes71e0ffa2009-01-08 10:42:15 -08001106 int pipeconf_reg = (pipe == 0) ? PIPEACONF : PIPEBCONF;
1107 u32 pipeconf;
1108
1109 pipeconf = I915_READ(pipeconf_reg);
1110 if (!(pipeconf & PIPEACONF_ENABLE))
1111 return -EINVAL;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001112
Keith Packarde9d21d72008-10-16 11:31:38 -07001113 spin_lock_irqsave(&dev_priv->user_irq_lock, irqflags);
Eric Anholtbad720f2009-10-22 16:11:14 -07001114 if (HAS_PCH_SPLIT(dev))
Li Pengc062df62010-01-23 00:12:58 +08001115 ironlake_enable_display_irq(dev_priv, (pipe == 0) ?
1116 DE_PIPEA_VBLANK: DE_PIPEB_VBLANK);
1117 else if (IS_I965G(dev))
Keith Packard7c463582008-11-04 02:03:27 -08001118 i915_enable_pipestat(dev_priv, pipe,
1119 PIPE_START_VBLANK_INTERRUPT_ENABLE);
Keith Packarde9d21d72008-10-16 11:31:38 -07001120 else
Keith Packard7c463582008-11-04 02:03:27 -08001121 i915_enable_pipestat(dev_priv, pipe,
1122 PIPE_VBLANK_INTERRUPT_ENABLE);
Keith Packarde9d21d72008-10-16 11:31:38 -07001123 spin_unlock_irqrestore(&dev_priv->user_irq_lock, irqflags);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001124 return 0;
1125}
1126
Keith Packard42f52ef2008-10-18 19:39:29 -07001127/* Called from drm generic code, passed 'crtc' which
1128 * we use as a pipe index
1129 */
1130void i915_disable_vblank(struct drm_device *dev, int pipe)
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001131{
1132 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Keith Packarde9d21d72008-10-16 11:31:38 -07001133 unsigned long irqflags;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001134
Keith Packarde9d21d72008-10-16 11:31:38 -07001135 spin_lock_irqsave(&dev_priv->user_irq_lock, irqflags);
Eric Anholtbad720f2009-10-22 16:11:14 -07001136 if (HAS_PCH_SPLIT(dev))
Li Pengc062df62010-01-23 00:12:58 +08001137 ironlake_disable_display_irq(dev_priv, (pipe == 0) ?
1138 DE_PIPEA_VBLANK: DE_PIPEB_VBLANK);
1139 else
1140 i915_disable_pipestat(dev_priv, pipe,
1141 PIPE_VBLANK_INTERRUPT_ENABLE |
1142 PIPE_START_VBLANK_INTERRUPT_ENABLE);
Keith Packarde9d21d72008-10-16 11:31:38 -07001143 spin_unlock_irqrestore(&dev_priv->user_irq_lock, irqflags);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001144}
1145
Jesse Barnes79e53942008-11-07 14:24:08 -08001146void i915_enable_interrupt (struct drm_device *dev)
1147{
1148 struct drm_i915_private *dev_priv = dev->dev_private;
Zhenyu Wange170b032009-06-05 15:38:40 +08001149
Eric Anholtbad720f2009-10-22 16:11:14 -07001150 if (!HAS_PCH_SPLIT(dev))
Zhenyu Wange170b032009-06-05 15:38:40 +08001151 opregion_enable_asle(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08001152 dev_priv->irq_enabled = 1;
1153}
1154
1155
Dave Airlie702880f2006-06-24 17:07:34 +10001156/* Set the vblank monitor pipe
1157 */
Eric Anholtc153f452007-09-03 12:06:45 +10001158int i915_vblank_pipe_set(struct drm_device *dev, void *data,
1159 struct drm_file *file_priv)
Dave Airlie702880f2006-06-24 17:07:34 +10001160{
Dave Airlie702880f2006-06-24 17:07:34 +10001161 drm_i915_private_t *dev_priv = dev->dev_private;
Dave Airlie702880f2006-06-24 17:07:34 +10001162
1163 if (!dev_priv) {
Márton Németh3e684ea2008-01-24 15:58:57 +10001164 DRM_ERROR("called with no initialization\n");
Eric Anholt20caafa2007-08-25 19:22:43 +10001165 return -EINVAL;
Dave Airlie702880f2006-06-24 17:07:34 +10001166 }
1167
=?utf-8?q?Michel_D=C3=A4nzer?=5b516942006-10-25 00:08:23 +10001168 return 0;
Dave Airlie702880f2006-06-24 17:07:34 +10001169}
1170
Eric Anholtc153f452007-09-03 12:06:45 +10001171int i915_vblank_pipe_get(struct drm_device *dev, void *data,
1172 struct drm_file *file_priv)
Dave Airlie702880f2006-06-24 17:07:34 +10001173{
Dave Airlie702880f2006-06-24 17:07:34 +10001174 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholtc153f452007-09-03 12:06:45 +10001175 drm_i915_vblank_pipe_t *pipe = data;
Dave Airlie702880f2006-06-24 17:07:34 +10001176
1177 if (!dev_priv) {
Márton Németh3e684ea2008-01-24 15:58:57 +10001178 DRM_ERROR("called with no initialization\n");
Eric Anholt20caafa2007-08-25 19:22:43 +10001179 return -EINVAL;
Dave Airlie702880f2006-06-24 17:07:34 +10001180 }
1181
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001182 pipe->pipe = DRM_I915_VBLANK_PIPE_A | DRM_I915_VBLANK_PIPE_B;
Eric Anholtc153f452007-09-03 12:06:45 +10001183
Dave Airlie702880f2006-06-24 17:07:34 +10001184 return 0;
1185}
1186
=?utf-8?q?Michel_D=C3=A4nzer?=a6b54f32006-10-24 23:37:43 +10001187/**
1188 * Schedule buffer swap at given vertical blank.
1189 */
Eric Anholtc153f452007-09-03 12:06:45 +10001190int i915_vblank_swap(struct drm_device *dev, void *data,
1191 struct drm_file *file_priv)
=?utf-8?q?Michel_D=C3=A4nzer?=a6b54f32006-10-24 23:37:43 +10001192{
Eric Anholtbd95e0a2008-11-04 12:01:24 -08001193 /* The delayed swap mechanism was fundamentally racy, and has been
1194 * removed. The model was that the client requested a delayed flip/swap
1195 * from the kernel, then waited for vblank before continuing to perform
1196 * rendering. The problem was that the kernel might wake the client
1197 * up before it dispatched the vblank swap (since the lock has to be
1198 * held while touching the ringbuffer), in which case the client would
1199 * clear and start the next frame before the swap occurred, and
1200 * flicker would occur in addition to likely missing the vblank.
1201 *
1202 * In the absence of this ioctl, userland falls back to a correct path
1203 * of waiting for a vblank, then dispatching the swap on its own.
1204 * Context switching to userland and back is plenty fast enough for
1205 * meeting the requirements of vblank swapping.
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001206 */
Eric Anholtbd95e0a2008-11-04 12:01:24 -08001207 return -EINVAL;
=?utf-8?q?Michel_D=C3=A4nzer?=a6b54f32006-10-24 23:37:43 +10001208}
1209
Zou Nan hai852835f2010-05-21 09:08:56 +08001210struct drm_i915_gem_request *
1211i915_get_tail_request(struct drm_device *dev)
1212{
Ben Gamarif65d9422009-09-14 17:48:44 -04001213 drm_i915_private_t *dev_priv = dev->dev_private;
Zou Nan hai852835f2010-05-21 09:08:56 +08001214 return list_entry(dev_priv->render_ring.request_list.prev,
1215 struct drm_i915_gem_request, list);
Ben Gamarif65d9422009-09-14 17:48:44 -04001216}
1217
1218/**
1219 * This is called when the chip hasn't reported back with completed
1220 * batchbuffers in a long time. The first time this is called we simply record
1221 * ACTHD. If ACTHD hasn't changed by the time the hangcheck timer elapses
1222 * again, we assume the chip is wedged and try to fix it.
1223 */
1224void i915_hangcheck_elapsed(unsigned long data)
1225{
1226 struct drm_device *dev = (struct drm_device *)data;
1227 drm_i915_private_t *dev_priv = dev->dev_private;
1228 uint32_t acthd;
Eric Anholtb9201c12010-01-08 14:25:16 -08001229
1230 /* No reset support on this chip yet. */
1231 if (IS_GEN6(dev))
1232 return;
1233
Ben Gamarif65d9422009-09-14 17:48:44 -04001234 if (!IS_I965G(dev))
1235 acthd = I915_READ(ACTHD);
1236 else
1237 acthd = I915_READ(ACTHD_I965);
1238
1239 /* If all work is done then ACTHD clearly hasn't advanced. */
Zou Nan hai852835f2010-05-21 09:08:56 +08001240 if (list_empty(&dev_priv->render_ring.request_list) ||
1241 i915_seqno_passed(i915_get_gem_seqno(dev,
1242 &dev_priv->render_ring),
1243 i915_get_tail_request(dev)->seqno)) {
Ben Gamarif65d9422009-09-14 17:48:44 -04001244 dev_priv->hangcheck_count = 0;
1245 return;
1246 }
1247
1248 if (dev_priv->last_acthd == acthd && dev_priv->hangcheck_count > 0) {
1249 DRM_ERROR("Hangcheck timer elapsed... GPU hung\n");
Ben Gamariba1234d2009-09-14 17:48:47 -04001250 i915_handle_error(dev, true);
Ben Gamarif65d9422009-09-14 17:48:44 -04001251 return;
1252 }
1253
1254 /* Reset timer case chip hangs without another request being added */
1255 mod_timer(&dev_priv->hangcheck_timer, jiffies + DRM_I915_HANGCHECK_PERIOD);
1256
1257 if (acthd != dev_priv->last_acthd)
1258 dev_priv->hangcheck_count = 0;
1259 else
1260 dev_priv->hangcheck_count++;
1261
1262 dev_priv->last_acthd = acthd;
1263}
1264
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265/* drm_dma.h hooks
1266*/
Adam Jacksonf2b115e2009-12-03 17:14:42 -05001267static void ironlake_irq_preinstall(struct drm_device *dev)
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001268{
1269 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
1270
1271 I915_WRITE(HWSTAM, 0xeffe);
1272
1273 /* XXX hotplug from PCH */
1274
1275 I915_WRITE(DEIMR, 0xffffffff);
1276 I915_WRITE(DEIER, 0x0);
1277 (void) I915_READ(DEIER);
1278
1279 /* and GT */
1280 I915_WRITE(GTIMR, 0xffffffff);
1281 I915_WRITE(GTIER, 0x0);
1282 (void) I915_READ(GTIER);
Zhenyu Wangc6501562009-11-03 18:57:21 +00001283
1284 /* south display irq */
1285 I915_WRITE(SDEIMR, 0xffffffff);
1286 I915_WRITE(SDEIER, 0x0);
1287 (void) I915_READ(SDEIER);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001288}
1289
Adam Jacksonf2b115e2009-12-03 17:14:42 -05001290static int ironlake_irq_postinstall(struct drm_device *dev)
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001291{
1292 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
1293 /* enable kind of interrupts always enabled */
Jesse Barnes013d5aa2010-01-29 11:18:31 -08001294 u32 display_mask = DE_MASTER_IRQ_CONTROL | DE_GSE | DE_PCH_EVENT |
1295 DE_PLANEA_FLIP_DONE | DE_PLANEB_FLIP_DONE;
Zou Nan haid1b851f2010-05-21 09:08:57 +08001296 u32 render_mask = GT_PIPE_NOTIFY | GT_BSD_USER_INTERRUPT;
Zhenyu Wangc6501562009-11-03 18:57:21 +00001297 u32 hotplug_mask = SDE_CRT_HOTPLUG | SDE_PORTB_HOTPLUG |
1298 SDE_PORTC_HOTPLUG | SDE_PORTD_HOTPLUG;
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001299
1300 dev_priv->irq_mask_reg = ~display_mask;
Li Peng643ced92010-01-28 01:05:09 +08001301 dev_priv->de_irq_enable_reg = display_mask | DE_PIPEA_VBLANK | DE_PIPEB_VBLANK;
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001302
1303 /* should always can generate irq */
1304 I915_WRITE(DEIIR, I915_READ(DEIIR));
1305 I915_WRITE(DEIMR, dev_priv->irq_mask_reg);
1306 I915_WRITE(DEIER, dev_priv->de_irq_enable_reg);
1307 (void) I915_READ(DEIER);
1308
1309 /* user interrupt should be enabled, but masked initial */
Zou Nan hai852835f2010-05-21 09:08:56 +08001310 dev_priv->gt_irq_mask_reg = ~render_mask;
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001311 dev_priv->gt_irq_enable_reg = render_mask;
1312
1313 I915_WRITE(GTIIR, I915_READ(GTIIR));
1314 I915_WRITE(GTIMR, dev_priv->gt_irq_mask_reg);
1315 I915_WRITE(GTIER, dev_priv->gt_irq_enable_reg);
1316 (void) I915_READ(GTIER);
1317
Zhenyu Wangc6501562009-11-03 18:57:21 +00001318 dev_priv->pch_irq_mask_reg = ~hotplug_mask;
1319 dev_priv->pch_irq_enable_reg = hotplug_mask;
1320
1321 I915_WRITE(SDEIIR, I915_READ(SDEIIR));
1322 I915_WRITE(SDEIMR, dev_priv->pch_irq_mask_reg);
1323 I915_WRITE(SDEIER, dev_priv->pch_irq_enable_reg);
1324 (void) I915_READ(SDEIER);
1325
Jesse Barnesf97108d2010-01-29 11:27:07 -08001326 if (IS_IRONLAKE_M(dev)) {
1327 /* Clear & enable PCU event interrupts */
1328 I915_WRITE(DEIIR, DE_PCU_EVENT);
1329 I915_WRITE(DEIER, I915_READ(DEIER) | DE_PCU_EVENT);
1330 ironlake_enable_display_irq(dev_priv, DE_PCU_EVENT);
1331 }
1332
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001333 return 0;
1334}
1335
Dave Airlie84b1fd12007-07-11 15:53:27 +10001336void i915_driver_irq_preinstall(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337{
1338 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
1339
Jesse Barnes79e53942008-11-07 14:24:08 -08001340 atomic_set(&dev_priv->irq_received, 0);
1341
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001342 INIT_WORK(&dev_priv->hotplug_work, i915_hotplug_work_func);
Jesse Barnes8a905232009-07-11 16:48:03 -04001343 INIT_WORK(&dev_priv->error_work, i915_error_work_func);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001344
Eric Anholtbad720f2009-10-22 16:11:14 -07001345 if (HAS_PCH_SPLIT(dev)) {
Adam Jacksonf2b115e2009-12-03 17:14:42 -05001346 ironlake_irq_preinstall(dev);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001347 return;
1348 }
1349
Jesse Barnes5ca58282009-03-31 14:11:15 -07001350 if (I915_HAS_HOTPLUG(dev)) {
1351 I915_WRITE(PORT_HOTPLUG_EN, 0);
1352 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
1353 }
1354
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001355 I915_WRITE(HWSTAM, 0xeffe);
Keith Packard7c463582008-11-04 02:03:27 -08001356 I915_WRITE(PIPEASTAT, 0);
1357 I915_WRITE(PIPEBSTAT, 0);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001358 I915_WRITE(IMR, 0xffffffff);
Eric Anholted4cb412008-07-29 12:10:39 -07001359 I915_WRITE(IER, 0x0);
Keith Packard7c463582008-11-04 02:03:27 -08001360 (void) I915_READ(IER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361}
1362
Jesse Barnesb01f2c32009-12-11 11:07:17 -08001363/*
1364 * Must be called after intel_modeset_init or hotplug interrupts won't be
1365 * enabled correctly.
1366 */
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001367int i915_driver_irq_postinstall(struct drm_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368{
1369 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Jesse Barnes5ca58282009-03-31 14:11:15 -07001370 u32 enable_mask = I915_INTERRUPT_ENABLE_FIX | I915_INTERRUPT_ENABLE_VAR;
Jesse Barnes63eeaf32009-06-18 16:56:52 -07001371 u32 error_mask;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001372
Zou Nan hai852835f2010-05-21 09:08:56 +08001373 DRM_INIT_WAITQUEUE(&dev_priv->render_ring.irq_queue);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001374
Zou Nan haid1b851f2010-05-21 09:08:57 +08001375 if (HAS_BSD(dev))
1376 DRM_INIT_WAITQUEUE(&dev_priv->bsd_ring.irq_queue);
1377
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001378 dev_priv->vblank_pipe = DRM_I915_VBLANK_PIPE_A | DRM_I915_VBLANK_PIPE_B;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001379
Eric Anholtbad720f2009-10-22 16:11:14 -07001380 if (HAS_PCH_SPLIT(dev))
Adam Jacksonf2b115e2009-12-03 17:14:42 -05001381 return ironlake_irq_postinstall(dev);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001382
Keith Packard7c463582008-11-04 02:03:27 -08001383 /* Unmask the interrupts that we always want on. */
1384 dev_priv->irq_mask_reg = ~I915_INTERRUPT_ENABLE_FIX;
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +01001385
Keith Packard7c463582008-11-04 02:03:27 -08001386 dev_priv->pipestat[0] = 0;
1387 dev_priv->pipestat[1] = 0;
1388
Jesse Barnes5ca58282009-03-31 14:11:15 -07001389 if (I915_HAS_HOTPLUG(dev)) {
1390 u32 hotplug_en = I915_READ(PORT_HOTPLUG_EN);
1391
Jesse Barnesb01f2c32009-12-11 11:07:17 -08001392 /* Note HDMI and DP share bits */
1393 if (dev_priv->hotplug_supported_mask & HDMIB_HOTPLUG_INT_STATUS)
1394 hotplug_en |= HDMIB_HOTPLUG_INT_EN;
1395 if (dev_priv->hotplug_supported_mask & HDMIC_HOTPLUG_INT_STATUS)
1396 hotplug_en |= HDMIC_HOTPLUG_INT_EN;
1397 if (dev_priv->hotplug_supported_mask & HDMID_HOTPLUG_INT_STATUS)
1398 hotplug_en |= HDMID_HOTPLUG_INT_EN;
1399 if (dev_priv->hotplug_supported_mask & SDVOC_HOTPLUG_INT_STATUS)
1400 hotplug_en |= SDVOC_HOTPLUG_INT_EN;
1401 if (dev_priv->hotplug_supported_mask & SDVOB_HOTPLUG_INT_STATUS)
1402 hotplug_en |= SDVOB_HOTPLUG_INT_EN;
1403 if (dev_priv->hotplug_supported_mask & CRT_HOTPLUG_INT_STATUS)
1404 hotplug_en |= CRT_HOTPLUG_INT_EN;
1405 /* Ignore TV since it's buggy */
1406
Jesse Barnes5ca58282009-03-31 14:11:15 -07001407 I915_WRITE(PORT_HOTPLUG_EN, hotplug_en);
1408
Jesse Barnes5ca58282009-03-31 14:11:15 -07001409 /* Enable in IER... */
1410 enable_mask |= I915_DISPLAY_PORT_INTERRUPT;
1411 /* and unmask in IMR */
1412 i915_enable_irq(dev_priv, I915_DISPLAY_PORT_INTERRUPT);
1413 }
1414
Jesse Barnes63eeaf32009-06-18 16:56:52 -07001415 /*
1416 * Enable some error detection, note the instruction error mask
1417 * bit is reserved, so we leave it masked.
1418 */
1419 if (IS_G4X(dev)) {
1420 error_mask = ~(GM45_ERROR_PAGE_TABLE |
1421 GM45_ERROR_MEM_PRIV |
1422 GM45_ERROR_CP_PRIV |
1423 I915_ERROR_MEMORY_REFRESH);
1424 } else {
1425 error_mask = ~(I915_ERROR_PAGE_TABLE |
1426 I915_ERROR_MEMORY_REFRESH);
1427 }
1428 I915_WRITE(EMR, error_mask);
1429
Keith Packard7c463582008-11-04 02:03:27 -08001430 /* Disable pipe interrupt enables, clear pending pipe status */
1431 I915_WRITE(PIPEASTAT, I915_READ(PIPEASTAT) & 0x8000ffff);
1432 I915_WRITE(PIPEBSTAT, I915_READ(PIPEBSTAT) & 0x8000ffff);
1433 /* Clear pending interrupt status */
1434 I915_WRITE(IIR, I915_READ(IIR));
1435
Jesse Barnes5ca58282009-03-31 14:11:15 -07001436 I915_WRITE(IER, enable_mask);
Keith Packard7c463582008-11-04 02:03:27 -08001437 I915_WRITE(IMR, dev_priv->irq_mask_reg);
Eric Anholted4cb412008-07-29 12:10:39 -07001438 (void) I915_READ(IER);
1439
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +01001440 opregion_enable_asle(dev);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001441
1442 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443}
1444
Adam Jacksonf2b115e2009-12-03 17:14:42 -05001445static void ironlake_irq_uninstall(struct drm_device *dev)
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001446{
1447 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
1448 I915_WRITE(HWSTAM, 0xffffffff);
1449
1450 I915_WRITE(DEIMR, 0xffffffff);
1451 I915_WRITE(DEIER, 0x0);
1452 I915_WRITE(DEIIR, I915_READ(DEIIR));
1453
1454 I915_WRITE(GTIMR, 0xffffffff);
1455 I915_WRITE(GTIER, 0x0);
1456 I915_WRITE(GTIIR, I915_READ(GTIIR));
1457}
1458
Dave Airlie84b1fd12007-07-11 15:53:27 +10001459void i915_driver_irq_uninstall(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460{
1461 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Dave Airlie91e37382006-02-18 15:17:04 +11001462
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463 if (!dev_priv)
1464 return;
1465
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001466 dev_priv->vblank_pipe = 0;
1467
Eric Anholtbad720f2009-10-22 16:11:14 -07001468 if (HAS_PCH_SPLIT(dev)) {
Adam Jacksonf2b115e2009-12-03 17:14:42 -05001469 ironlake_irq_uninstall(dev);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001470 return;
1471 }
1472
Jesse Barnes5ca58282009-03-31 14:11:15 -07001473 if (I915_HAS_HOTPLUG(dev)) {
1474 I915_WRITE(PORT_HOTPLUG_EN, 0);
1475 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
1476 }
1477
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001478 I915_WRITE(HWSTAM, 0xffffffff);
Keith Packard7c463582008-11-04 02:03:27 -08001479 I915_WRITE(PIPEASTAT, 0);
1480 I915_WRITE(PIPEBSTAT, 0);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001481 I915_WRITE(IMR, 0xffffffff);
Eric Anholted4cb412008-07-29 12:10:39 -07001482 I915_WRITE(IER, 0x0);
Dave Airlie91e37382006-02-18 15:17:04 +11001483
Keith Packard7c463582008-11-04 02:03:27 -08001484 I915_WRITE(PIPEASTAT, I915_READ(PIPEASTAT) & 0x8000ffff);
1485 I915_WRITE(PIPEBSTAT, I915_READ(PIPEBSTAT) & 0x8000ffff);
1486 I915_WRITE(IIR, I915_READ(IIR));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487}