blob: 33525c922218c8397ca22c313c68f02c9b0b79d0 [file] [log] [blame]
Dave Airlie0d6aa602006-01-02 20:14:23 +11001/* i915_irq.c -- IRQ support for the I915 -*- linux-c -*-
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 */
Dave Airlie0d6aa602006-01-02 20:14:23 +11003/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 * Copyright 2003 Tungsten Graphics, Inc., Cedar Park, Texas.
5 * All Rights Reserved.
Dave Airliebc54fd12005-06-23 22:46:46 +10006 *
7 * Permission is hereby granted, free of charge, to any person obtaining a
8 * copy of this software and associated documentation files (the
9 * "Software"), to deal in the Software without restriction, including
10 * without limitation the rights to use, copy, modify, merge, publish,
11 * distribute, sub license, and/or sell copies of the Software, and to
12 * permit persons to whom the Software is furnished to do so, subject to
13 * the following conditions:
14 *
15 * The above copyright notice and this permission notice (including the
16 * next paragraph) shall be included in all copies or substantial portions
17 * of the Software.
18 *
19 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
20 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
21 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
22 * IN NO EVENT SHALL TUNGSTEN GRAPHICS AND/OR ITS SUPPLIERS BE LIABLE FOR
23 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
24 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
25 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
26 *
Dave Airlie0d6aa602006-01-02 20:14:23 +110027 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070028
Jesse Barnes63eeaf32009-06-18 16:56:52 -070029#include <linux/sysrq.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090030#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include "drmP.h"
32#include "drm.h"
33#include "i915_drm.h"
34#include "i915_drv.h"
Chris Wilson1c5d22f2009-08-25 11:15:50 +010035#include "i915_trace.h"
Jesse Barnes79e53942008-11-07 14:24:08 -080036#include "intel_drv.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#define MAX_NOPID ((u32)~0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
Keith Packard7c463582008-11-04 02:03:27 -080040/**
41 * Interrupts that are always left unmasked.
42 *
43 * Since pipe events are edge-triggered from the PIPESTAT register to IIR,
44 * we leave them always unmasked in IMR and then control enabling them through
45 * PIPESTAT alone.
46 */
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050047#define I915_INTERRUPT_ENABLE_FIX \
48 (I915_ASLE_INTERRUPT | \
49 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT | \
50 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT | \
51 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT | \
52 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT | \
53 I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT)
Keith Packard7c463582008-11-04 02:03:27 -080054
55/** Interrupts that we mask and unmask at runtime. */
Zou Nan haid1b851f2010-05-21 09:08:57 +080056#define I915_INTERRUPT_ENABLE_VAR (I915_USER_INTERRUPT | I915_BSD_USER_INTERRUPT)
Keith Packard7c463582008-11-04 02:03:27 -080057
Jesse Barnes79e53942008-11-07 14:24:08 -080058#define I915_PIPE_VBLANK_STATUS (PIPE_START_VBLANK_INTERRUPT_STATUS |\
59 PIPE_VBLANK_INTERRUPT_STATUS)
60
61#define I915_PIPE_VBLANK_ENABLE (PIPE_START_VBLANK_INTERRUPT_ENABLE |\
62 PIPE_VBLANK_INTERRUPT_ENABLE)
63
64#define DRM_I915_VBLANK_PIPE_ALL (DRM_I915_VBLANK_PIPE_A | \
65 DRM_I915_VBLANK_PIPE_B)
66
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +010067void
Adam Jacksonf2b115e2009-12-03 17:14:42 -050068ironlake_enable_graphics_irq(drm_i915_private_t *dev_priv, u32 mask)
Zhenyu Wang036a4a72009-06-08 14:40:19 +080069{
70 if ((dev_priv->gt_irq_mask_reg & mask) != 0) {
71 dev_priv->gt_irq_mask_reg &= ~mask;
72 I915_WRITE(GTIMR, dev_priv->gt_irq_mask_reg);
73 (void) I915_READ(GTIMR);
74 }
75}
76
Eric Anholt62fdfea2010-05-21 13:26:39 -070077void
Adam Jacksonf2b115e2009-12-03 17:14:42 -050078ironlake_disable_graphics_irq(drm_i915_private_t *dev_priv, u32 mask)
Zhenyu Wang036a4a72009-06-08 14:40:19 +080079{
80 if ((dev_priv->gt_irq_mask_reg & mask) != mask) {
81 dev_priv->gt_irq_mask_reg |= mask;
82 I915_WRITE(GTIMR, dev_priv->gt_irq_mask_reg);
83 (void) I915_READ(GTIMR);
84 }
85}
86
87/* For display hotplug interrupt */
Chris Wilson995b6762010-08-20 13:23:26 +010088static void
Adam Jacksonf2b115e2009-12-03 17:14:42 -050089ironlake_enable_display_irq(drm_i915_private_t *dev_priv, u32 mask)
Zhenyu Wang036a4a72009-06-08 14:40:19 +080090{
91 if ((dev_priv->irq_mask_reg & mask) != 0) {
92 dev_priv->irq_mask_reg &= ~mask;
93 I915_WRITE(DEIMR, dev_priv->irq_mask_reg);
94 (void) I915_READ(DEIMR);
95 }
96}
97
98static inline void
Adam Jacksonf2b115e2009-12-03 17:14:42 -050099ironlake_disable_display_irq(drm_i915_private_t *dev_priv, u32 mask)
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800100{
101 if ((dev_priv->irq_mask_reg & mask) != mask) {
102 dev_priv->irq_mask_reg |= mask;
103 I915_WRITE(DEIMR, dev_priv->irq_mask_reg);
104 (void) I915_READ(DEIMR);
105 }
106}
107
108void
Eric Anholted4cb412008-07-29 12:10:39 -0700109i915_enable_irq(drm_i915_private_t *dev_priv, u32 mask)
110{
111 if ((dev_priv->irq_mask_reg & mask) != 0) {
112 dev_priv->irq_mask_reg &= ~mask;
113 I915_WRITE(IMR, dev_priv->irq_mask_reg);
114 (void) I915_READ(IMR);
115 }
116}
117
Eric Anholt62fdfea2010-05-21 13:26:39 -0700118void
Eric Anholted4cb412008-07-29 12:10:39 -0700119i915_disable_irq(drm_i915_private_t *dev_priv, u32 mask)
120{
121 if ((dev_priv->irq_mask_reg & mask) != mask) {
122 dev_priv->irq_mask_reg |= mask;
123 I915_WRITE(IMR, dev_priv->irq_mask_reg);
124 (void) I915_READ(IMR);
125 }
126}
127
Keith Packard7c463582008-11-04 02:03:27 -0800128static inline u32
129i915_pipestat(int pipe)
130{
131 if (pipe == 0)
132 return PIPEASTAT;
133 if (pipe == 1)
134 return PIPEBSTAT;
Andrew Morton9c84ba42008-12-01 13:14:08 -0800135 BUG();
Keith Packard7c463582008-11-04 02:03:27 -0800136}
137
138void
139i915_enable_pipestat(drm_i915_private_t *dev_priv, int pipe, u32 mask)
140{
141 if ((dev_priv->pipestat[pipe] & mask) != mask) {
142 u32 reg = i915_pipestat(pipe);
143
144 dev_priv->pipestat[pipe] |= mask;
145 /* Enable the interrupt, clear any pending status */
146 I915_WRITE(reg, dev_priv->pipestat[pipe] | (mask >> 16));
147 (void) I915_READ(reg);
148 }
149}
150
151void
152i915_disable_pipestat(drm_i915_private_t *dev_priv, int pipe, u32 mask)
153{
154 if ((dev_priv->pipestat[pipe] & mask) != 0) {
155 u32 reg = i915_pipestat(pipe);
156
157 dev_priv->pipestat[pipe] &= ~mask;
158 I915_WRITE(reg, dev_priv->pipestat[pipe]);
159 (void) I915_READ(reg);
160 }
161}
162
=?utf-8?q?Michel_D=C3=A4nzer?=a6b54f32006-10-24 23:37:43 +1000163/**
Zhao Yakui01c66882009-10-28 05:10:00 +0000164 * intel_enable_asle - enable ASLE interrupt for OpRegion
165 */
166void intel_enable_asle (struct drm_device *dev)
167{
168 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
169
Eric Anholtc619eed2010-01-28 16:45:52 -0800170 if (HAS_PCH_SPLIT(dev))
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500171 ironlake_enable_display_irq(dev_priv, DE_GSE);
Zhao Yakuiedcb49c2010-04-07 17:11:21 +0800172 else {
Zhao Yakui01c66882009-10-28 05:10:00 +0000173 i915_enable_pipestat(dev_priv, 1,
Jesse Barnesd874bcf2010-06-30 13:16:00 -0700174 PIPE_LEGACY_BLC_EVENT_ENABLE);
Zhao Yakuiedcb49c2010-04-07 17:11:21 +0800175 if (IS_I965G(dev))
176 i915_enable_pipestat(dev_priv, 0,
Jesse Barnesd874bcf2010-06-30 13:16:00 -0700177 PIPE_LEGACY_BLC_EVENT_ENABLE);
Zhao Yakuiedcb49c2010-04-07 17:11:21 +0800178 }
Zhao Yakui01c66882009-10-28 05:10:00 +0000179}
180
181/**
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700182 * i915_pipe_enabled - check if a pipe is enabled
183 * @dev: DRM device
184 * @pipe: pipe to check
185 *
186 * Reading certain registers when the pipe is disabled can hang the chip.
187 * Use this routine to make sure the PLL is running and the pipe is active
188 * before reading such registers if unsure.
189 */
190static int
191i915_pipe_enabled(struct drm_device *dev, int pipe)
192{
193 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
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;
Chris Wilson4ef69c72010-09-09 15:14:28 +0100263 struct intel_encoder *encoder;
Jesse Barnes5ca58282009-03-31 14:11:15 -0700264
Chris Wilson4ef69c72010-09-09 15:14:28 +0100265 list_for_each_entry(encoder, &mode_config->encoder_list, base.head)
266 if (encoder->hot_plug)
267 encoder->hot_plug(encoder);
268
Jesse Barnes5ca58282009-03-31 14:11:15 -0700269 /* Just fire off a uevent and let userspace tell us what to do */
Dave Airlieeb1f8e42010-05-07 06:42:51 +0000270 drm_helper_hpd_irq_event(dev);
Jesse Barnes5ca58282009-03-31 14:11:15 -0700271}
272
Jesse Barnesf97108d2010-01-29 11:27:07 -0800273static void i915_handle_rps_change(struct drm_device *dev)
274{
275 drm_i915_private_t *dev_priv = dev->dev_private;
Matthew Garrettb5b72e82010-02-02 18:30:47 +0000276 u32 busy_up, busy_down, max_avg, min_avg;
Jesse Barnesf97108d2010-01-29 11:27:07 -0800277 u8 new_delay = dev_priv->cur_delay;
278
Jesse Barnes7648fa92010-05-20 14:28:11 -0700279 I915_WRITE16(MEMINTRSTS, MEMINT_EVAL_CHG);
Matthew Garrettb5b72e82010-02-02 18:30:47 +0000280 busy_up = I915_READ(RCPREVBSYTUPAVG);
281 busy_down = I915_READ(RCPREVBSYTDNAVG);
Jesse Barnesf97108d2010-01-29 11:27:07 -0800282 max_avg = I915_READ(RCBMAXAVG);
283 min_avg = I915_READ(RCBMINAVG);
284
285 /* Handle RCS change request from hw */
Matthew Garrettb5b72e82010-02-02 18:30:47 +0000286 if (busy_up > max_avg) {
Jesse Barnesf97108d2010-01-29 11:27:07 -0800287 if (dev_priv->cur_delay != dev_priv->max_delay)
288 new_delay = dev_priv->cur_delay - 1;
289 if (new_delay < dev_priv->max_delay)
290 new_delay = dev_priv->max_delay;
Matthew Garrettb5b72e82010-02-02 18:30:47 +0000291 } else if (busy_down < min_avg) {
Jesse Barnesf97108d2010-01-29 11:27:07 -0800292 if (dev_priv->cur_delay != dev_priv->min_delay)
293 new_delay = dev_priv->cur_delay + 1;
294 if (new_delay > dev_priv->min_delay)
295 new_delay = dev_priv->min_delay;
296 }
297
Jesse Barnes7648fa92010-05-20 14:28:11 -0700298 if (ironlake_set_drps(dev, new_delay))
299 dev_priv->cur_delay = new_delay;
Jesse Barnesf97108d2010-01-29 11:27:07 -0800300
301 return;
302}
303
Chris Wilson995b6762010-08-20 13:23:26 +0100304static irqreturn_t ironlake_irq_handler(struct drm_device *dev)
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800305{
306 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
307 int ret = IRQ_NONE;
Dave Airlie3ff99162009-12-08 14:03:47 +1000308 u32 de_iir, gt_iir, de_ier, pch_iir;
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800309 struct drm_i915_master_private *master_priv;
Zou Nan hai852835f2010-05-21 09:08:56 +0800310 struct intel_ring_buffer *render_ring = &dev_priv->render_ring;
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800311
Zou, Nanhai2d109a82009-11-06 02:13:01 +0000312 /* disable master interrupt before clearing iir */
313 de_ier = I915_READ(DEIER);
314 I915_WRITE(DEIER, de_ier & ~DE_MASTER_IRQ_CONTROL);
315 (void)I915_READ(DEIER);
316
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800317 de_iir = I915_READ(DEIIR);
318 gt_iir = I915_READ(GTIIR);
Zhenyu Wangc6501562009-11-03 18:57:21 +0000319 pch_iir = I915_READ(SDEIIR);
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800320
Zou Nan haic7c85102010-01-15 10:29:06 +0800321 if (de_iir == 0 && gt_iir == 0 && pch_iir == 0)
322 goto done;
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800323
Zou Nan haic7c85102010-01-15 10:29:06 +0800324 ret = IRQ_HANDLED;
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800325
Zou Nan haic7c85102010-01-15 10:29:06 +0800326 if (dev->primary->master) {
327 master_priv = dev->primary->master->driver_priv;
328 if (master_priv->sarea_priv)
329 master_priv->sarea_priv->last_dispatch =
330 READ_BREADCRUMB(dev_priv);
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800331 }
332
Jesse Barnese552eb72010-04-21 11:39:23 -0700333 if (gt_iir & GT_PIPE_NOTIFY) {
Zou Nan hai852835f2010-05-21 09:08:56 +0800334 u32 seqno = render_ring->get_gem_seqno(dev, render_ring);
335 render_ring->irq_gem_seqno = seqno;
Zou Nan haic7c85102010-01-15 10:29:06 +0800336 trace_i915_gem_request_complete(dev, seqno);
Zou Nan hai852835f2010-05-21 09:08:56 +0800337 DRM_WAKEUP(&dev_priv->render_ring.irq_queue);
Zou Nan haic7c85102010-01-15 10:29:06 +0800338 dev_priv->hangcheck_count = 0;
339 mod_timer(&dev_priv->hangcheck_timer, jiffies + DRM_I915_HANGCHECK_PERIOD);
340 }
Zou Nan haid1b851f2010-05-21 09:08:57 +0800341 if (gt_iir & GT_BSD_USER_INTERRUPT)
342 DRM_WAKEUP(&dev_priv->bsd_ring.irq_queue);
343
Zou Nan haic7c85102010-01-15 10:29:06 +0800344
345 if (de_iir & DE_GSE)
Chris Wilson3b617962010-08-24 09:02:58 +0100346 intel_opregion_gse_intr(dev);
Zou Nan haic7c85102010-01-15 10:29:06 +0800347
Zhenyu Wangf072d2e2010-02-09 09:46:19 +0800348 if (de_iir & DE_PLANEA_FLIP_DONE) {
Jesse Barnes013d5aa2010-01-29 11:18:31 -0800349 intel_prepare_page_flip(dev, 0);
Chris Wilson2bbda382010-09-02 17:59:39 +0100350 intel_finish_page_flip_plane(dev, 0);
Jesse Barnes013d5aa2010-01-29 11:18:31 -0800351 }
352
Zhenyu Wangf072d2e2010-02-09 09:46:19 +0800353 if (de_iir & DE_PLANEB_FLIP_DONE) {
354 intel_prepare_page_flip(dev, 1);
Chris Wilson2bbda382010-09-02 17:59:39 +0100355 intel_finish_page_flip_plane(dev, 1);
Jesse Barnes013d5aa2010-01-29 11:18:31 -0800356 }
Li Pengc062df62010-01-23 00:12:58 +0800357
Zhenyu Wangf072d2e2010-02-09 09:46:19 +0800358 if (de_iir & DE_PIPEA_VBLANK)
359 drm_handle_vblank(dev, 0);
360
361 if (de_iir & DE_PIPEB_VBLANK)
362 drm_handle_vblank(dev, 1);
363
Zou Nan haic7c85102010-01-15 10:29:06 +0800364 /* check event from PCH */
365 if ((de_iir & DE_PCH_EVENT) &&
366 (pch_iir & SDE_HOTPLUG_MASK)) {
367 queue_work(dev_priv->wq, &dev_priv->hotplug_work);
368 }
369
Jesse Barnesf97108d2010-01-29 11:27:07 -0800370 if (de_iir & DE_PCU_EVENT) {
Jesse Barnes7648fa92010-05-20 14:28:11 -0700371 I915_WRITE16(MEMINTRSTS, I915_READ(MEMINTRSTS));
Jesse Barnesf97108d2010-01-29 11:27:07 -0800372 i915_handle_rps_change(dev);
373 }
374
Zou Nan haic7c85102010-01-15 10:29:06 +0800375 /* should clear PCH hotplug event before clear CPU irq */
376 I915_WRITE(SDEIIR, pch_iir);
377 I915_WRITE(GTIIR, gt_iir);
378 I915_WRITE(DEIIR, de_iir);
379
380done:
Zou, Nanhai2d109a82009-11-06 02:13:01 +0000381 I915_WRITE(DEIER, de_ier);
382 (void)I915_READ(DEIER);
383
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800384 return ret;
385}
386
Jesse Barnes8a905232009-07-11 16:48:03 -0400387/**
388 * i915_error_work_func - do process context error handling work
389 * @work: work struct
390 *
391 * Fire an error uevent so userspace can see that a hang or error
392 * was detected.
393 */
394static void i915_error_work_func(struct work_struct *work)
395{
396 drm_i915_private_t *dev_priv = container_of(work, drm_i915_private_t,
397 error_work);
398 struct drm_device *dev = dev_priv->dev;
Ben Gamarif316a422009-09-14 17:48:46 -0400399 char *error_event[] = { "ERROR=1", NULL };
400 char *reset_event[] = { "RESET=1", NULL };
401 char *reset_done_event[] = { "ERROR=0", NULL };
Jesse Barnes8a905232009-07-11 16:48:03 -0400402
Zhao Yakui44d98a62009-10-09 11:39:40 +0800403 DRM_DEBUG_DRIVER("generating error event\n");
Ben Gamarif316a422009-09-14 17:48:46 -0400404 kobject_uevent_env(&dev->primary->kdev.kobj, KOBJ_CHANGE, error_event);
Jesse Barnes8a905232009-07-11 16:48:03 -0400405
Ben Gamariba1234d2009-09-14 17:48:47 -0400406 if (atomic_read(&dev_priv->mm.wedged)) {
Ben Gamarif316a422009-09-14 17:48:46 -0400407 if (IS_I965G(dev)) {
Zhao Yakui44d98a62009-10-09 11:39:40 +0800408 DRM_DEBUG_DRIVER("resetting chip\n");
Ben Gamarif316a422009-09-14 17:48:46 -0400409 kobject_uevent_env(&dev->primary->kdev.kobj, KOBJ_CHANGE, reset_event);
410 if (!i965_reset(dev, GDRST_RENDER)) {
Ben Gamariba1234d2009-09-14 17:48:47 -0400411 atomic_set(&dev_priv->mm.wedged, 0);
Ben Gamarif316a422009-09-14 17:48:46 -0400412 kobject_uevent_env(&dev->primary->kdev.kobj, KOBJ_CHANGE, reset_done_event);
413 }
414 } else {
Zhao Yakui44d98a62009-10-09 11:39:40 +0800415 DRM_DEBUG_DRIVER("reboot required\n");
Ben Gamarif316a422009-09-14 17:48:46 -0400416 }
417 }
Jesse Barnes8a905232009-07-11 16:48:03 -0400418}
419
Chris Wilson3bd3c932010-08-19 08:19:30 +0100420#ifdef CONFIG_DEBUG_FS
Chris Wilson9df30792010-02-18 10:24:56 +0000421static struct drm_i915_error_object *
422i915_error_object_create(struct drm_device *dev,
423 struct drm_gem_object *src)
424{
Chris Wilsone56660d2010-08-07 11:01:26 +0100425 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson9df30792010-02-18 10:24:56 +0000426 struct drm_i915_error_object *dst;
427 struct drm_i915_gem_object *src_priv;
428 int page, page_count;
Chris Wilsone56660d2010-08-07 11:01:26 +0100429 u32 reloc_offset;
Chris Wilson9df30792010-02-18 10:24:56 +0000430
431 if (src == NULL)
432 return NULL;
433
Daniel Vetter23010e42010-03-08 13:35:02 +0100434 src_priv = to_intel_bo(src);
Chris Wilson9df30792010-02-18 10:24:56 +0000435 if (src_priv->pages == NULL)
436 return NULL;
437
438 page_count = src->size / PAGE_SIZE;
439
440 dst = kmalloc(sizeof(*dst) + page_count * sizeof (u32 *), GFP_ATOMIC);
441 if (dst == NULL)
442 return NULL;
443
Chris Wilsone56660d2010-08-07 11:01:26 +0100444 reloc_offset = src_priv->gtt_offset;
Chris Wilson9df30792010-02-18 10:24:56 +0000445 for (page = 0; page < page_count; page++) {
Andrew Morton788885a2010-05-11 14:07:05 -0700446 unsigned long flags;
Chris Wilsone56660d2010-08-07 11:01:26 +0100447 void __iomem *s;
448 void *d;
Andrew Morton788885a2010-05-11 14:07:05 -0700449
Chris Wilsone56660d2010-08-07 11:01:26 +0100450 d = kmalloc(PAGE_SIZE, GFP_ATOMIC);
Chris Wilson9df30792010-02-18 10:24:56 +0000451 if (d == NULL)
452 goto unwind;
Chris Wilsone56660d2010-08-07 11:01:26 +0100453
Andrew Morton788885a2010-05-11 14:07:05 -0700454 local_irq_save(flags);
Chris Wilsone56660d2010-08-07 11:01:26 +0100455 s = io_mapping_map_atomic_wc(dev_priv->mm.gtt_mapping,
456 reloc_offset,
457 KM_IRQ0);
458 memcpy_fromio(d, s, PAGE_SIZE);
459 io_mapping_unmap_atomic(s, KM_IRQ0);
Andrew Morton788885a2010-05-11 14:07:05 -0700460 local_irq_restore(flags);
Chris Wilsone56660d2010-08-07 11:01:26 +0100461
Chris Wilson9df30792010-02-18 10:24:56 +0000462 dst->pages[page] = d;
Chris Wilsone56660d2010-08-07 11:01:26 +0100463
464 reloc_offset += PAGE_SIZE;
Chris Wilson9df30792010-02-18 10:24:56 +0000465 }
466 dst->page_count = page_count;
467 dst->gtt_offset = src_priv->gtt_offset;
468
469 return dst;
470
471unwind:
472 while (page--)
473 kfree(dst->pages[page]);
474 kfree(dst);
475 return NULL;
476}
477
478static void
479i915_error_object_free(struct drm_i915_error_object *obj)
480{
481 int page;
482
483 if (obj == NULL)
484 return;
485
486 for (page = 0; page < obj->page_count; page++)
487 kfree(obj->pages[page]);
488
489 kfree(obj);
490}
491
492static void
493i915_error_state_free(struct drm_device *dev,
494 struct drm_i915_error_state *error)
495{
496 i915_error_object_free(error->batchbuffer[0]);
497 i915_error_object_free(error->batchbuffer[1]);
498 i915_error_object_free(error->ringbuffer);
499 kfree(error->active_bo);
Chris Wilson6ef3d422010-08-04 20:26:07 +0100500 kfree(error->overlay);
Chris Wilson9df30792010-02-18 10:24:56 +0000501 kfree(error);
502}
503
504static u32
505i915_get_bbaddr(struct drm_device *dev, u32 *ring)
506{
507 u32 cmd;
508
509 if (IS_I830(dev) || IS_845G(dev))
510 cmd = MI_BATCH_BUFFER;
511 else if (IS_I965G(dev))
512 cmd = (MI_BATCH_BUFFER_START | (2 << 6) |
513 MI_BATCH_NON_SECURE_I965);
514 else
515 cmd = (MI_BATCH_BUFFER_START | (2 << 6));
516
517 return ring[0] == cmd ? ring[1] : 0;
518}
519
520static u32
521i915_ringbuffer_last_batch(struct drm_device *dev)
522{
523 struct drm_i915_private *dev_priv = dev->dev_private;
524 u32 head, bbaddr;
525 u32 *ring;
526
527 /* Locate the current position in the ringbuffer and walk back
528 * to find the most recently dispatched batch buffer.
529 */
530 bbaddr = 0;
531 head = I915_READ(PRB0_HEAD) & HEAD_ADDR;
Eric Anholtd3301d82010-05-21 13:55:54 -0700532 ring = (u32 *)(dev_priv->render_ring.virtual_start + head);
Chris Wilson9df30792010-02-18 10:24:56 +0000533
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 if (bbaddr == 0) {
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800541 ring = (u32 *)(dev_priv->render_ring.virtual_start
542 + dev_priv->render_ring.size);
Eric Anholtd3301d82010-05-21 13:55:54 -0700543 while (--ring >= (u32 *)dev_priv->render_ring.virtual_start) {
Chris Wilson9df30792010-02-18 10:24:56 +0000544 bbaddr = i915_get_bbaddr(dev, ring);
545 if (bbaddr)
546 break;
547 }
548 }
549
550 return bbaddr;
551}
552
Jesse Barnes8a905232009-07-11 16:48:03 -0400553/**
554 * i915_capture_error_state - capture an error record for later analysis
555 * @dev: drm device
556 *
557 * Should be called when an error is detected (either a hang or an error
558 * interrupt) to capture error state from the time of the error. Fills
559 * out a structure which becomes available in debugfs for user level tools
560 * to pick up.
561 */
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700562static void i915_capture_error_state(struct drm_device *dev)
563{
564 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson9df30792010-02-18 10:24:56 +0000565 struct drm_i915_gem_object *obj_priv;
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700566 struct drm_i915_error_state *error;
Chris Wilson9df30792010-02-18 10:24:56 +0000567 struct drm_gem_object *batchbuffer[2];
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700568 unsigned long flags;
Chris Wilson9df30792010-02-18 10:24:56 +0000569 u32 bbaddr;
570 int count;
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700571
572 spin_lock_irqsave(&dev_priv->error_lock, flags);
Chris Wilson9df30792010-02-18 10:24:56 +0000573 error = dev_priv->first_error;
574 spin_unlock_irqrestore(&dev_priv->error_lock, flags);
575 if (error)
576 return;
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700577
578 error = kmalloc(sizeof(*error), GFP_ATOMIC);
579 if (!error) {
Chris Wilson9df30792010-02-18 10:24:56 +0000580 DRM_DEBUG_DRIVER("out of memory, not capturing error state\n");
581 return;
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700582 }
583
Zou Nan hai852835f2010-05-21 09:08:56 +0800584 error->seqno = i915_get_gem_seqno(dev, &dev_priv->render_ring);
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700585 error->eir = I915_READ(EIR);
586 error->pgtbl_er = I915_READ(PGTBL_ER);
587 error->pipeastat = I915_READ(PIPEASTAT);
588 error->pipebstat = I915_READ(PIPEBSTAT);
589 error->instpm = I915_READ(INSTPM);
590 if (!IS_I965G(dev)) {
591 error->ipeir = I915_READ(IPEIR);
592 error->ipehr = I915_READ(IPEHR);
593 error->instdone = I915_READ(INSTDONE);
594 error->acthd = I915_READ(ACTHD);
Chris Wilson9df30792010-02-18 10:24:56 +0000595 error->bbaddr = 0;
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700596 } else {
597 error->ipeir = I915_READ(IPEIR_I965);
598 error->ipehr = I915_READ(IPEHR_I965);
599 error->instdone = I915_READ(INSTDONE_I965);
600 error->instps = I915_READ(INSTPS);
601 error->instdone1 = I915_READ(INSTDONE1);
602 error->acthd = I915_READ(ACTHD_I965);
Chris Wilson9df30792010-02-18 10:24:56 +0000603 error->bbaddr = I915_READ64(BB_ADDR);
604 }
605
606 bbaddr = i915_ringbuffer_last_batch(dev);
607
608 /* Grab the current batchbuffer, most likely to have crashed. */
609 batchbuffer[0] = NULL;
610 batchbuffer[1] = NULL;
611 count = 0;
Zou Nan hai852835f2010-05-21 09:08:56 +0800612 list_for_each_entry(obj_priv,
613 &dev_priv->render_ring.active_list, list) {
614
Daniel Vettera8089e82010-04-09 19:05:09 +0000615 struct drm_gem_object *obj = &obj_priv->base;
Chris Wilson9df30792010-02-18 10:24:56 +0000616
617 if (batchbuffer[0] == NULL &&
618 bbaddr >= obj_priv->gtt_offset &&
619 bbaddr < obj_priv->gtt_offset + obj->size)
620 batchbuffer[0] = obj;
621
622 if (batchbuffer[1] == NULL &&
623 error->acthd >= obj_priv->gtt_offset &&
Chris Wilsone56660d2010-08-07 11:01:26 +0100624 error->acthd < obj_priv->gtt_offset + obj->size)
Chris Wilson9df30792010-02-18 10:24:56 +0000625 batchbuffer[1] = obj;
626
627 count++;
628 }
Chris Wilsone56660d2010-08-07 11:01:26 +0100629 /* Scan the other lists for completeness for those bizarre errors. */
630 if (batchbuffer[0] == NULL || batchbuffer[1] == NULL) {
631 list_for_each_entry(obj_priv, &dev_priv->mm.flushing_list, list) {
632 struct drm_gem_object *obj = &obj_priv->base;
633
634 if (batchbuffer[0] == NULL &&
635 bbaddr >= obj_priv->gtt_offset &&
636 bbaddr < obj_priv->gtt_offset + obj->size)
637 batchbuffer[0] = obj;
638
639 if (batchbuffer[1] == NULL &&
640 error->acthd >= obj_priv->gtt_offset &&
641 error->acthd < obj_priv->gtt_offset + obj->size)
642 batchbuffer[1] = obj;
643
644 if (batchbuffer[0] && batchbuffer[1])
645 break;
646 }
647 }
648 if (batchbuffer[0] == NULL || batchbuffer[1] == NULL) {
649 list_for_each_entry(obj_priv, &dev_priv->mm.inactive_list, list) {
650 struct drm_gem_object *obj = &obj_priv->base;
651
652 if (batchbuffer[0] == NULL &&
653 bbaddr >= obj_priv->gtt_offset &&
654 bbaddr < obj_priv->gtt_offset + obj->size)
655 batchbuffer[0] = obj;
656
657 if (batchbuffer[1] == NULL &&
658 error->acthd >= obj_priv->gtt_offset &&
659 error->acthd < obj_priv->gtt_offset + obj->size)
660 batchbuffer[1] = obj;
661
662 if (batchbuffer[0] && batchbuffer[1])
663 break;
664 }
665 }
Chris Wilson9df30792010-02-18 10:24:56 +0000666
667 /* We need to copy these to an anonymous buffer as the simplest
668 * method to avoid being overwritten by userpace.
669 */
670 error->batchbuffer[0] = i915_error_object_create(dev, batchbuffer[0]);
Chris Wilsone56660d2010-08-07 11:01:26 +0100671 if (batchbuffer[1] != batchbuffer[0])
672 error->batchbuffer[1] = i915_error_object_create(dev, batchbuffer[1]);
673 else
674 error->batchbuffer[1] = NULL;
Chris Wilson9df30792010-02-18 10:24:56 +0000675
676 /* Record the ringbuffer */
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800677 error->ringbuffer = i915_error_object_create(dev,
678 dev_priv->render_ring.gem_object);
Chris Wilson9df30792010-02-18 10:24:56 +0000679
680 /* Record buffers on the active list. */
681 error->active_bo = NULL;
682 error->active_bo_count = 0;
683
684 if (count)
685 error->active_bo = kmalloc(sizeof(*error->active_bo)*count,
686 GFP_ATOMIC);
687
688 if (error->active_bo) {
689 int i = 0;
Zou Nan hai852835f2010-05-21 09:08:56 +0800690 list_for_each_entry(obj_priv,
691 &dev_priv->render_ring.active_list, list) {
Daniel Vettera8089e82010-04-09 19:05:09 +0000692 struct drm_gem_object *obj = &obj_priv->base;
Chris Wilson9df30792010-02-18 10:24:56 +0000693
694 error->active_bo[i].size = obj->size;
695 error->active_bo[i].name = obj->name;
696 error->active_bo[i].seqno = obj_priv->last_rendering_seqno;
697 error->active_bo[i].gtt_offset = obj_priv->gtt_offset;
698 error->active_bo[i].read_domains = obj->read_domains;
699 error->active_bo[i].write_domain = obj->write_domain;
700 error->active_bo[i].fence_reg = obj_priv->fence_reg;
701 error->active_bo[i].pinned = 0;
702 if (obj_priv->pin_count > 0)
703 error->active_bo[i].pinned = 1;
704 if (obj_priv->user_pin_count > 0)
705 error->active_bo[i].pinned = -1;
706 error->active_bo[i].tiling = obj_priv->tiling_mode;
707 error->active_bo[i].dirty = obj_priv->dirty;
708 error->active_bo[i].purgeable = obj_priv->madv != I915_MADV_WILLNEED;
709
710 if (++i == count)
711 break;
712 }
713 error->active_bo_count = i;
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700714 }
715
Jesse Barnes8a905232009-07-11 16:48:03 -0400716 do_gettimeofday(&error->time);
717
Chris Wilson6ef3d422010-08-04 20:26:07 +0100718 error->overlay = intel_overlay_capture_error_state(dev);
719
Chris Wilson9df30792010-02-18 10:24:56 +0000720 spin_lock_irqsave(&dev_priv->error_lock, flags);
721 if (dev_priv->first_error == NULL) {
722 dev_priv->first_error = error;
723 error = NULL;
724 }
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700725 spin_unlock_irqrestore(&dev_priv->error_lock, flags);
Chris Wilson9df30792010-02-18 10:24:56 +0000726
727 if (error)
728 i915_error_state_free(dev, error);
729}
730
731void i915_destroy_error_state(struct drm_device *dev)
732{
733 struct drm_i915_private *dev_priv = dev->dev_private;
734 struct drm_i915_error_state *error;
735
736 spin_lock(&dev_priv->error_lock);
737 error = dev_priv->first_error;
738 dev_priv->first_error = NULL;
739 spin_unlock(&dev_priv->error_lock);
740
741 if (error)
742 i915_error_state_free(dev, error);
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700743}
Chris Wilson3bd3c932010-08-19 08:19:30 +0100744#else
745#define i915_capture_error_state(x)
746#endif
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700747
Chris Wilson35aed2e2010-05-27 13:18:12 +0100748static void i915_report_and_clear_eir(struct drm_device *dev)
Jesse Barnes8a905232009-07-11 16:48:03 -0400749{
750 struct drm_i915_private *dev_priv = dev->dev_private;
751 u32 eir = I915_READ(EIR);
Jesse Barnes8a905232009-07-11 16:48:03 -0400752
Chris Wilson35aed2e2010-05-27 13:18:12 +0100753 if (!eir)
754 return;
Jesse Barnes8a905232009-07-11 16:48:03 -0400755
756 printk(KERN_ERR "render error detected, EIR: 0x%08x\n",
757 eir);
758
759 if (IS_G4X(dev)) {
760 if (eir & (GM45_ERROR_MEM_PRIV | GM45_ERROR_CP_PRIV)) {
761 u32 ipeir = I915_READ(IPEIR_I965);
762
763 printk(KERN_ERR " IPEIR: 0x%08x\n",
764 I915_READ(IPEIR_I965));
765 printk(KERN_ERR " IPEHR: 0x%08x\n",
766 I915_READ(IPEHR_I965));
767 printk(KERN_ERR " INSTDONE: 0x%08x\n",
768 I915_READ(INSTDONE_I965));
769 printk(KERN_ERR " INSTPS: 0x%08x\n",
770 I915_READ(INSTPS));
771 printk(KERN_ERR " INSTDONE1: 0x%08x\n",
772 I915_READ(INSTDONE1));
773 printk(KERN_ERR " ACTHD: 0x%08x\n",
774 I915_READ(ACTHD_I965));
775 I915_WRITE(IPEIR_I965, ipeir);
776 (void)I915_READ(IPEIR_I965);
777 }
778 if (eir & GM45_ERROR_PAGE_TABLE) {
779 u32 pgtbl_err = I915_READ(PGTBL_ER);
780 printk(KERN_ERR "page table error\n");
781 printk(KERN_ERR " PGTBL_ER: 0x%08x\n",
782 pgtbl_err);
783 I915_WRITE(PGTBL_ER, pgtbl_err);
784 (void)I915_READ(PGTBL_ER);
785 }
786 }
787
788 if (IS_I9XX(dev)) {
789 if (eir & I915_ERROR_PAGE_TABLE) {
790 u32 pgtbl_err = I915_READ(PGTBL_ER);
791 printk(KERN_ERR "page table error\n");
792 printk(KERN_ERR " PGTBL_ER: 0x%08x\n",
793 pgtbl_err);
794 I915_WRITE(PGTBL_ER, pgtbl_err);
795 (void)I915_READ(PGTBL_ER);
796 }
797 }
798
799 if (eir & I915_ERROR_MEMORY_REFRESH) {
Chris Wilson35aed2e2010-05-27 13:18:12 +0100800 u32 pipea_stats = I915_READ(PIPEASTAT);
801 u32 pipeb_stats = I915_READ(PIPEBSTAT);
802
Jesse Barnes8a905232009-07-11 16:48:03 -0400803 printk(KERN_ERR "memory refresh error\n");
804 printk(KERN_ERR "PIPEASTAT: 0x%08x\n",
805 pipea_stats);
806 printk(KERN_ERR "PIPEBSTAT: 0x%08x\n",
807 pipeb_stats);
808 /* pipestat has already been acked */
809 }
810 if (eir & I915_ERROR_INSTRUCTION) {
811 printk(KERN_ERR "instruction error\n");
812 printk(KERN_ERR " INSTPM: 0x%08x\n",
813 I915_READ(INSTPM));
814 if (!IS_I965G(dev)) {
815 u32 ipeir = I915_READ(IPEIR);
816
817 printk(KERN_ERR " IPEIR: 0x%08x\n",
818 I915_READ(IPEIR));
819 printk(KERN_ERR " IPEHR: 0x%08x\n",
820 I915_READ(IPEHR));
821 printk(KERN_ERR " INSTDONE: 0x%08x\n",
822 I915_READ(INSTDONE));
823 printk(KERN_ERR " ACTHD: 0x%08x\n",
824 I915_READ(ACTHD));
825 I915_WRITE(IPEIR, ipeir);
826 (void)I915_READ(IPEIR);
827 } else {
828 u32 ipeir = I915_READ(IPEIR_I965);
829
830 printk(KERN_ERR " IPEIR: 0x%08x\n",
831 I915_READ(IPEIR_I965));
832 printk(KERN_ERR " IPEHR: 0x%08x\n",
833 I915_READ(IPEHR_I965));
834 printk(KERN_ERR " INSTDONE: 0x%08x\n",
835 I915_READ(INSTDONE_I965));
836 printk(KERN_ERR " INSTPS: 0x%08x\n",
837 I915_READ(INSTPS));
838 printk(KERN_ERR " INSTDONE1: 0x%08x\n",
839 I915_READ(INSTDONE1));
840 printk(KERN_ERR " ACTHD: 0x%08x\n",
841 I915_READ(ACTHD_I965));
842 I915_WRITE(IPEIR_I965, ipeir);
843 (void)I915_READ(IPEIR_I965);
844 }
845 }
846
847 I915_WRITE(EIR, eir);
848 (void)I915_READ(EIR);
849 eir = I915_READ(EIR);
850 if (eir) {
851 /*
852 * some errors might have become stuck,
853 * mask them.
854 */
855 DRM_ERROR("EIR stuck: 0x%08x, masking\n", eir);
856 I915_WRITE(EMR, I915_READ(EMR) | eir);
857 I915_WRITE(IIR, I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT);
858 }
Chris Wilson35aed2e2010-05-27 13:18:12 +0100859}
860
861/**
862 * i915_handle_error - handle an error interrupt
863 * @dev: drm device
864 *
865 * Do some basic checking of regsiter state at error interrupt time and
866 * dump it to the syslog. Also call i915_capture_error_state() to make
867 * sure we get a record and make it available in debugfs. Fire a uevent
868 * so userspace knows something bad happened (should trigger collection
869 * of a ring dump etc.).
870 */
871static void i915_handle_error(struct drm_device *dev, bool wedged)
872{
873 struct drm_i915_private *dev_priv = dev->dev_private;
874
875 i915_capture_error_state(dev);
876 i915_report_and_clear_eir(dev);
Jesse Barnes8a905232009-07-11 16:48:03 -0400877
Ben Gamariba1234d2009-09-14 17:48:47 -0400878 if (wedged) {
879 atomic_set(&dev_priv->mm.wedged, 1);
880
Ben Gamari11ed50e2009-09-14 17:48:45 -0400881 /*
882 * Wakeup waiting processes so they don't hang
883 */
Zou Nan hai852835f2010-05-21 09:08:56 +0800884 DRM_WAKEUP(&dev_priv->render_ring.irq_queue);
Ben Gamari11ed50e2009-09-14 17:48:45 -0400885 }
886
Eric Anholt9c9fe1f2009-08-03 16:09:16 -0700887 queue_work(dev_priv->wq, &dev_priv->error_work);
Jesse Barnes8a905232009-07-11 16:48:03 -0400888}
889
Simon Farnsworth4e5359c2010-09-01 17:47:52 +0100890static void i915_pageflip_stall_check(struct drm_device *dev, int pipe)
891{
892 drm_i915_private_t *dev_priv = dev->dev_private;
893 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
894 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
895 struct drm_i915_gem_object *obj_priv;
896 struct intel_unpin_work *work;
897 unsigned long flags;
898 bool stall_detected;
899
900 /* Ignore early vblank irqs */
901 if (intel_crtc == NULL)
902 return;
903
904 spin_lock_irqsave(&dev->event_lock, flags);
905 work = intel_crtc->unpin_work;
906
907 if (work == NULL || work->pending || !work->enable_stall_check) {
908 /* Either the pending flip IRQ arrived, or we're too early. Don't check */
909 spin_unlock_irqrestore(&dev->event_lock, flags);
910 return;
911 }
912
913 /* Potential stall - if we see that the flip has happened, assume a missed interrupt */
914 obj_priv = to_intel_bo(work->pending_flip_obj);
915 if(IS_I965G(dev)) {
916 int dspsurf = intel_crtc->plane == 0 ? DSPASURF : DSPBSURF;
917 stall_detected = I915_READ(dspsurf) == obj_priv->gtt_offset;
918 } else {
919 int dspaddr = intel_crtc->plane == 0 ? DSPAADDR : DSPBADDR;
920 stall_detected = I915_READ(dspaddr) == (obj_priv->gtt_offset +
921 crtc->y * crtc->fb->pitch +
922 crtc->x * crtc->fb->bits_per_pixel/8);
923 }
924
925 spin_unlock_irqrestore(&dev->event_lock, flags);
926
927 if (stall_detected) {
928 DRM_DEBUG_DRIVER("Pageflip stall detected\n");
929 intel_prepare_page_flip(dev, intel_crtc->plane);
930 }
931}
932
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933irqreturn_t i915_driver_irq_handler(DRM_IRQ_ARGS)
934{
Dave Airlie84b1fd12007-07-11 15:53:27 +1000935 struct drm_device *dev = (struct drm_device *) arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000937 struct drm_i915_master_private *master_priv;
Eric Anholtcdfbc412008-11-04 15:50:30 -0800938 u32 iir, new_iir;
939 u32 pipea_stats, pipeb_stats;
Keith Packard05eff842008-11-19 14:03:05 -0800940 u32 vblank_status;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700941 int vblank = 0;
Keith Packard7c463582008-11-04 02:03:27 -0800942 unsigned long irqflags;
Keith Packard05eff842008-11-19 14:03:05 -0800943 int irq_received;
944 int ret = IRQ_NONE;
Zou Nan hai852835f2010-05-21 09:08:56 +0800945 struct intel_ring_buffer *render_ring = &dev_priv->render_ring;
Dave Airlieaf6061a2008-05-07 12:15:39 +1000946
Eric Anholt630681d2008-10-06 15:14:12 -0700947 atomic_inc(&dev_priv->irq_received);
948
Eric Anholtbad720f2009-10-22 16:11:14 -0700949 if (HAS_PCH_SPLIT(dev))
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500950 return ironlake_irq_handler(dev);
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800951
Eric Anholted4cb412008-07-29 12:10:39 -0700952 iir = I915_READ(IIR);
Dave Airlieaf6061a2008-05-07 12:15:39 +1000953
Jesse Barnese25e6602010-06-30 13:15:19 -0700954 if (IS_I965G(dev))
Jesse Barnesd874bcf2010-06-30 13:16:00 -0700955 vblank_status = PIPE_START_VBLANK_INTERRUPT_STATUS;
Jesse Barnese25e6602010-06-30 13:15:19 -0700956 else
Jesse Barnesd874bcf2010-06-30 13:16:00 -0700957 vblank_status = PIPE_VBLANK_INTERRUPT_STATUS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958
Keith Packard05eff842008-11-19 14:03:05 -0800959 for (;;) {
960 irq_received = iir != 0;
961
962 /* Can't rely on pipestat interrupt bit in iir as it might
963 * have been cleared after the pipestat interrupt was received.
964 * It doesn't set the bit in iir again, but it still produces
965 * interrupts (for non-MSI).
966 */
967 spin_lock_irqsave(&dev_priv->user_irq_lock, irqflags);
968 pipea_stats = I915_READ(PIPEASTAT);
969 pipeb_stats = I915_READ(PIPEBSTAT);
Jesse Barnes79e53942008-11-07 14:24:08 -0800970
Jesse Barnes8a905232009-07-11 16:48:03 -0400971 if (iir & I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT)
Ben Gamariba1234d2009-09-14 17:48:47 -0400972 i915_handle_error(dev, false);
Jesse Barnes8a905232009-07-11 16:48:03 -0400973
Eric Anholtcdfbc412008-11-04 15:50:30 -0800974 /*
975 * Clear the PIPE(A|B)STAT regs before the IIR
976 */
Keith Packard05eff842008-11-19 14:03:05 -0800977 if (pipea_stats & 0x8000ffff) {
Shaohua Li7662c8b2009-06-26 11:23:55 +0800978 if (pipea_stats & PIPE_FIFO_UNDERRUN_STATUS)
Zhao Yakui44d98a62009-10-09 11:39:40 +0800979 DRM_DEBUG_DRIVER("pipe a underrun\n");
Eric Anholtcdfbc412008-11-04 15:50:30 -0800980 I915_WRITE(PIPEASTAT, pipea_stats);
Keith Packard05eff842008-11-19 14:03:05 -0800981 irq_received = 1;
Eric Anholtcdfbc412008-11-04 15:50:30 -0800982 }
Keith Packard7c463582008-11-04 02:03:27 -0800983
Keith Packard05eff842008-11-19 14:03:05 -0800984 if (pipeb_stats & 0x8000ffff) {
Shaohua Li7662c8b2009-06-26 11:23:55 +0800985 if (pipeb_stats & PIPE_FIFO_UNDERRUN_STATUS)
Zhao Yakui44d98a62009-10-09 11:39:40 +0800986 DRM_DEBUG_DRIVER("pipe b underrun\n");
Eric Anholtcdfbc412008-11-04 15:50:30 -0800987 I915_WRITE(PIPEBSTAT, pipeb_stats);
Keith Packard05eff842008-11-19 14:03:05 -0800988 irq_received = 1;
Eric Anholtcdfbc412008-11-04 15:50:30 -0800989 }
Keith Packard05eff842008-11-19 14:03:05 -0800990 spin_unlock_irqrestore(&dev_priv->user_irq_lock, irqflags);
991
992 if (!irq_received)
993 break;
994
995 ret = IRQ_HANDLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996
Jesse Barnes5ca58282009-03-31 14:11:15 -0700997 /* Consume port. Then clear IIR or we'll miss events */
998 if ((I915_HAS_HOTPLUG(dev)) &&
999 (iir & I915_DISPLAY_PORT_INTERRUPT)) {
1000 u32 hotplug_status = I915_READ(PORT_HOTPLUG_STAT);
1001
Zhao Yakui44d98a62009-10-09 11:39:40 +08001002 DRM_DEBUG_DRIVER("hotplug event received, stat 0x%08x\n",
Jesse Barnes5ca58282009-03-31 14:11:15 -07001003 hotplug_status);
1004 if (hotplug_status & dev_priv->hotplug_supported_mask)
Eric Anholt9c9fe1f2009-08-03 16:09:16 -07001005 queue_work(dev_priv->wq,
1006 &dev_priv->hotplug_work);
Jesse Barnes5ca58282009-03-31 14:11:15 -07001007
1008 I915_WRITE(PORT_HOTPLUG_STAT, hotplug_status);
1009 I915_READ(PORT_HOTPLUG_STAT);
1010 }
1011
Eric Anholtcdfbc412008-11-04 15:50:30 -08001012 I915_WRITE(IIR, iir);
1013 new_iir = I915_READ(IIR); /* Flush posted writes */
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +01001014
Dave Airlie7c1c2872008-11-28 14:22:24 +10001015 if (dev->primary->master) {
1016 master_priv = dev->primary->master->driver_priv;
1017 if (master_priv->sarea_priv)
1018 master_priv->sarea_priv->last_dispatch =
1019 READ_BREADCRUMB(dev_priv);
1020 }
Keith Packard7c463582008-11-04 02:03:27 -08001021
Eric Anholtcdfbc412008-11-04 15:50:30 -08001022 if (iir & I915_USER_INTERRUPT) {
Zou Nan hai852835f2010-05-21 09:08:56 +08001023 u32 seqno =
1024 render_ring->get_gem_seqno(dev, render_ring);
1025 render_ring->irq_gem_seqno = seqno;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01001026 trace_i915_gem_request_complete(dev, seqno);
Zou Nan hai852835f2010-05-21 09:08:56 +08001027 DRM_WAKEUP(&dev_priv->render_ring.irq_queue);
Ben Gamarif65d9422009-09-14 17:48:44 -04001028 dev_priv->hangcheck_count = 0;
1029 mod_timer(&dev_priv->hangcheck_timer, jiffies + DRM_I915_HANGCHECK_PERIOD);
Eric Anholtcdfbc412008-11-04 15:50:30 -08001030 }
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001031
Zou Nan haid1b851f2010-05-21 09:08:57 +08001032 if (HAS_BSD(dev) && (iir & I915_BSD_USER_INTERRUPT))
1033 DRM_WAKEUP(&dev_priv->bsd_ring.irq_queue);
1034
Jesse Barnes1afe3e92010-03-26 10:35:20 -07001035 if (iir & I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT) {
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001036 intel_prepare_page_flip(dev, 0);
Jesse Barnes1afe3e92010-03-26 10:35:20 -07001037 if (dev_priv->flip_pending_is_done)
1038 intel_finish_page_flip_plane(dev, 0);
1039 }
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001040
Jesse Barnes1afe3e92010-03-26 10:35:20 -07001041 if (iir & I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT) {
Jesse Barnes70565d02010-07-01 04:45:43 -07001042 intel_prepare_page_flip(dev, 1);
Jesse Barnes1afe3e92010-03-26 10:35:20 -07001043 if (dev_priv->flip_pending_is_done)
1044 intel_finish_page_flip_plane(dev, 1);
Jesse Barnes1afe3e92010-03-26 10:35:20 -07001045 }
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001046
Keith Packard05eff842008-11-19 14:03:05 -08001047 if (pipea_stats & vblank_status) {
Eric Anholtcdfbc412008-11-04 15:50:30 -08001048 vblank++;
1049 drm_handle_vblank(dev, 0);
Simon Farnsworth4e5359c2010-09-01 17:47:52 +01001050 if (!dev_priv->flip_pending_is_done) {
1051 i915_pageflip_stall_check(dev, 0);
Jesse Barnes1afe3e92010-03-26 10:35:20 -07001052 intel_finish_page_flip(dev, 0);
Simon Farnsworth4e5359c2010-09-01 17:47:52 +01001053 }
Eric Anholtcdfbc412008-11-04 15:50:30 -08001054 }
Eric Anholt673a3942008-07-30 12:06:12 -07001055
Keith Packard05eff842008-11-19 14:03:05 -08001056 if (pipeb_stats & vblank_status) {
Eric Anholtcdfbc412008-11-04 15:50:30 -08001057 vblank++;
1058 drm_handle_vblank(dev, 1);
Simon Farnsworth4e5359c2010-09-01 17:47:52 +01001059 if (!dev_priv->flip_pending_is_done) {
1060 i915_pageflip_stall_check(dev, 1);
Jesse Barnes1afe3e92010-03-26 10:35:20 -07001061 intel_finish_page_flip(dev, 1);
Simon Farnsworth4e5359c2010-09-01 17:47:52 +01001062 }
Eric Anholtcdfbc412008-11-04 15:50:30 -08001063 }
Keith Packard7c463582008-11-04 02:03:27 -08001064
Jesse Barnesd874bcf2010-06-30 13:16:00 -07001065 if ((pipea_stats & PIPE_LEGACY_BLC_EVENT_STATUS) ||
1066 (pipeb_stats & PIPE_LEGACY_BLC_EVENT_STATUS) ||
Eric Anholtcdfbc412008-11-04 15:50:30 -08001067 (iir & I915_ASLE_INTERRUPT))
Chris Wilson3b617962010-08-24 09:02:58 +01001068 intel_opregion_asle_intr(dev);
Keith Packard7c463582008-11-04 02:03:27 -08001069
Eric Anholtcdfbc412008-11-04 15:50:30 -08001070 /* With MSI, interrupts are only generated when iir
1071 * transitions from zero to nonzero. If another bit got
1072 * set while we were handling the existing iir bits, then
1073 * we would never get another interrupt.
1074 *
1075 * This is fine on non-MSI as well, as if we hit this path
1076 * we avoid exiting the interrupt handler only to generate
1077 * another one.
1078 *
1079 * Note that for MSI this could cause a stray interrupt report
1080 * if an interrupt landed in the time between writing IIR and
1081 * the posting read. This should be rare enough to never
1082 * trigger the 99% of 100,000 interrupts test for disabling
1083 * stray interrupts.
1084 */
1085 iir = new_iir;
Keith Packard05eff842008-11-19 14:03:05 -08001086 }
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001087
Keith Packard05eff842008-11-19 14:03:05 -08001088 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089}
1090
Dave Airlieaf6061a2008-05-07 12:15:39 +10001091static int i915_emit_irq(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092{
1093 drm_i915_private_t *dev_priv = dev->dev_private;
Dave Airlie7c1c2872008-11-28 14:22:24 +10001094 struct drm_i915_master_private *master_priv = dev->primary->master->driver_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095
1096 i915_kernel_lost_context(dev);
1097
Zhao Yakui44d98a62009-10-09 11:39:40 +08001098 DRM_DEBUG_DRIVER("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099
Kristian Høgsbergc99b0582008-08-20 11:20:13 -04001100 dev_priv->counter++;
Alan Hourihanec29b6692006-08-12 16:29:24 +10001101 if (dev_priv->counter > 0x7FFFFFFFUL)
Kristian Høgsbergc99b0582008-08-20 11:20:13 -04001102 dev_priv->counter = 1;
Dave Airlie7c1c2872008-11-28 14:22:24 +10001103 if (master_priv->sarea_priv)
1104 master_priv->sarea_priv->last_enqueue = dev_priv->counter;
Alan Hourihanec29b6692006-08-12 16:29:24 +10001105
Keith Packard0baf8232008-11-08 11:44:14 +10001106 BEGIN_LP_RING(4);
Jesse Barnes585fb112008-07-29 11:54:06 -07001107 OUT_RING(MI_STORE_DWORD_INDEX);
Keith Packard0baf8232008-11-08 11:44:14 +10001108 OUT_RING(I915_BREADCRUMB_INDEX << MI_STORE_DWORD_INDEX_SHIFT);
Alan Hourihanec29b6692006-08-12 16:29:24 +10001109 OUT_RING(dev_priv->counter);
Jesse Barnes585fb112008-07-29 11:54:06 -07001110 OUT_RING(MI_USER_INTERRUPT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 ADVANCE_LP_RING();
Dave Airliebc5f4522007-11-05 12:50:58 +10001112
Alan Hourihanec29b6692006-08-12 16:29:24 +10001113 return dev_priv->counter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114}
1115
Chris Wilson9d34e5d2009-09-24 05:26:06 +01001116void i915_trace_irq_get(struct drm_device *dev, u32 seqno)
1117{
1118 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001119 struct intel_ring_buffer *render_ring = &dev_priv->render_ring;
Chris Wilson9d34e5d2009-09-24 05:26:06 +01001120
1121 if (dev_priv->trace_irq_seqno == 0)
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001122 render_ring->user_irq_get(dev, render_ring);
Chris Wilson9d34e5d2009-09-24 05:26:06 +01001123
1124 dev_priv->trace_irq_seqno = seqno;
1125}
1126
Dave Airlie84b1fd12007-07-11 15:53:27 +10001127static int i915_wait_irq(struct drm_device * dev, int irq_nr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128{
1129 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Dave Airlie7c1c2872008-11-28 14:22:24 +10001130 struct drm_i915_master_private *master_priv = dev->primary->master->driver_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131 int ret = 0;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001132 struct intel_ring_buffer *render_ring = &dev_priv->render_ring;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133
Zhao Yakui44d98a62009-10-09 11:39:40 +08001134 DRM_DEBUG_DRIVER("irq_nr=%d breadcrumb=%d\n", irq_nr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135 READ_BREADCRUMB(dev_priv));
1136
Eric Anholted4cb412008-07-29 12:10:39 -07001137 if (READ_BREADCRUMB(dev_priv) >= irq_nr) {
Dave Airlie7c1c2872008-11-28 14:22:24 +10001138 if (master_priv->sarea_priv)
1139 master_priv->sarea_priv->last_dispatch = READ_BREADCRUMB(dev_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 return 0;
Eric Anholted4cb412008-07-29 12:10:39 -07001141 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142
Dave Airlie7c1c2872008-11-28 14:22:24 +10001143 if (master_priv->sarea_priv)
1144 master_priv->sarea_priv->perf_boxes |= I915_BOX_WAIT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001146 render_ring->user_irq_get(dev, render_ring);
Zou Nan hai852835f2010-05-21 09:08:56 +08001147 DRM_WAIT_ON(ret, dev_priv->render_ring.irq_queue, 3 * DRM_HZ,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148 READ_BREADCRUMB(dev_priv) >= irq_nr);
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001149 render_ring->user_irq_put(dev, render_ring);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150
Eric Anholt20caafa2007-08-25 19:22:43 +10001151 if (ret == -EBUSY) {
Márton Németh3e684ea2008-01-24 15:58:57 +10001152 DRM_ERROR("EBUSY -- rec: %d emitted: %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153 READ_BREADCRUMB(dev_priv), (int)dev_priv->counter);
1154 }
1155
Dave Airlieaf6061a2008-05-07 12:15:39 +10001156 return ret;
1157}
1158
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159/* Needs the lock as it touches the ring.
1160 */
Eric Anholtc153f452007-09-03 12:06:45 +10001161int i915_irq_emit(struct drm_device *dev, void *data,
1162 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholtc153f452007-09-03 12:06:45 +10001165 drm_i915_irq_emit_t *emit = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 int result;
1167
Eric Anholtd3301d82010-05-21 13:55:54 -07001168 if (!dev_priv || !dev_priv->render_ring.virtual_start) {
Márton Németh3e684ea2008-01-24 15:58:57 +10001169 DRM_ERROR("called with no initialization\n");
Eric Anholt20caafa2007-08-25 19:22:43 +10001170 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171 }
Eric Anholt299eb932009-02-24 22:14:12 -08001172
1173 RING_LOCK_TEST_WITH_RETURN(dev, file_priv);
1174
Eric Anholt546b0972008-09-01 16:45:29 -07001175 mutex_lock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176 result = i915_emit_irq(dev);
Eric Anholt546b0972008-09-01 16:45:29 -07001177 mutex_unlock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178
Eric Anholtc153f452007-09-03 12:06:45 +10001179 if (DRM_COPY_TO_USER(emit->irq_seq, &result, sizeof(int))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 DRM_ERROR("copy_to_user\n");
Eric Anholt20caafa2007-08-25 19:22:43 +10001181 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 }
1183
1184 return 0;
1185}
1186
1187/* Doesn't need the hardware lock.
1188 */
Eric Anholtc153f452007-09-03 12:06:45 +10001189int i915_irq_wait(struct drm_device *dev, void *data,
1190 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholtc153f452007-09-03 12:06:45 +10001193 drm_i915_irq_wait_t *irqwait = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194
1195 if (!dev_priv) {
Márton Németh3e684ea2008-01-24 15:58:57 +10001196 DRM_ERROR("called with no initialization\n");
Eric Anholt20caafa2007-08-25 19:22:43 +10001197 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 }
1199
Eric Anholtc153f452007-09-03 12:06:45 +10001200 return i915_wait_irq(dev, irqwait->irq_seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201}
1202
Keith Packard42f52ef2008-10-18 19:39:29 -07001203/* Called from drm generic code, passed 'crtc' which
1204 * we use as a pipe index
1205 */
1206int i915_enable_vblank(struct drm_device *dev, int pipe)
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001207{
1208 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Keith Packarde9d21d72008-10-16 11:31:38 -07001209 unsigned long irqflags;
Jesse Barnes71e0ffa2009-01-08 10:42:15 -08001210 int pipeconf_reg = (pipe == 0) ? PIPEACONF : PIPEBCONF;
1211 u32 pipeconf;
1212
1213 pipeconf = I915_READ(pipeconf_reg);
1214 if (!(pipeconf & PIPEACONF_ENABLE))
1215 return -EINVAL;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001216
Keith Packarde9d21d72008-10-16 11:31:38 -07001217 spin_lock_irqsave(&dev_priv->user_irq_lock, irqflags);
Eric Anholtbad720f2009-10-22 16:11:14 -07001218 if (HAS_PCH_SPLIT(dev))
Li Pengc062df62010-01-23 00:12:58 +08001219 ironlake_enable_display_irq(dev_priv, (pipe == 0) ?
1220 DE_PIPEA_VBLANK: DE_PIPEB_VBLANK);
1221 else if (IS_I965G(dev))
Keith Packard7c463582008-11-04 02:03:27 -08001222 i915_enable_pipestat(dev_priv, pipe,
1223 PIPE_START_VBLANK_INTERRUPT_ENABLE);
Keith Packarde9d21d72008-10-16 11:31:38 -07001224 else
Keith Packard7c463582008-11-04 02:03:27 -08001225 i915_enable_pipestat(dev_priv, pipe,
1226 PIPE_VBLANK_INTERRUPT_ENABLE);
Keith Packarde9d21d72008-10-16 11:31:38 -07001227 spin_unlock_irqrestore(&dev_priv->user_irq_lock, irqflags);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001228 return 0;
1229}
1230
Keith Packard42f52ef2008-10-18 19:39:29 -07001231/* Called from drm generic code, passed 'crtc' which
1232 * we use as a pipe index
1233 */
1234void i915_disable_vblank(struct drm_device *dev, int pipe)
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001235{
1236 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Keith Packarde9d21d72008-10-16 11:31:38 -07001237 unsigned long irqflags;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001238
Keith Packarde9d21d72008-10-16 11:31:38 -07001239 spin_lock_irqsave(&dev_priv->user_irq_lock, irqflags);
Eric Anholtbad720f2009-10-22 16:11:14 -07001240 if (HAS_PCH_SPLIT(dev))
Li Pengc062df62010-01-23 00:12:58 +08001241 ironlake_disable_display_irq(dev_priv, (pipe == 0) ?
1242 DE_PIPEA_VBLANK: DE_PIPEB_VBLANK);
1243 else
1244 i915_disable_pipestat(dev_priv, pipe,
1245 PIPE_VBLANK_INTERRUPT_ENABLE |
1246 PIPE_START_VBLANK_INTERRUPT_ENABLE);
Keith Packarde9d21d72008-10-16 11:31:38 -07001247 spin_unlock_irqrestore(&dev_priv->user_irq_lock, irqflags);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001248}
1249
Jesse Barnes79e53942008-11-07 14:24:08 -08001250void i915_enable_interrupt (struct drm_device *dev)
1251{
1252 struct drm_i915_private *dev_priv = dev->dev_private;
Zhenyu Wange170b032009-06-05 15:38:40 +08001253
Eric Anholtbad720f2009-10-22 16:11:14 -07001254 if (!HAS_PCH_SPLIT(dev))
Chris Wilson3b617962010-08-24 09:02:58 +01001255 intel_opregion_enable_asle(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08001256 dev_priv->irq_enabled = 1;
1257}
1258
1259
Dave Airlie702880f2006-06-24 17:07:34 +10001260/* Set the vblank monitor pipe
1261 */
Eric Anholtc153f452007-09-03 12:06:45 +10001262int i915_vblank_pipe_set(struct drm_device *dev, void *data,
1263 struct drm_file *file_priv)
Dave Airlie702880f2006-06-24 17:07:34 +10001264{
Dave Airlie702880f2006-06-24 17:07:34 +10001265 drm_i915_private_t *dev_priv = dev->dev_private;
Dave Airlie702880f2006-06-24 17:07:34 +10001266
1267 if (!dev_priv) {
Márton Németh3e684ea2008-01-24 15:58:57 +10001268 DRM_ERROR("called with no initialization\n");
Eric Anholt20caafa2007-08-25 19:22:43 +10001269 return -EINVAL;
Dave Airlie702880f2006-06-24 17:07:34 +10001270 }
1271
=?utf-8?q?Michel_D=C3=A4nzer?=5b516942006-10-25 00:08:23 +10001272 return 0;
Dave Airlie702880f2006-06-24 17:07:34 +10001273}
1274
Eric Anholtc153f452007-09-03 12:06:45 +10001275int i915_vblank_pipe_get(struct drm_device *dev, void *data,
1276 struct drm_file *file_priv)
Dave Airlie702880f2006-06-24 17:07:34 +10001277{
Dave Airlie702880f2006-06-24 17:07:34 +10001278 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholtc153f452007-09-03 12:06:45 +10001279 drm_i915_vblank_pipe_t *pipe = data;
Dave Airlie702880f2006-06-24 17:07:34 +10001280
1281 if (!dev_priv) {
Márton Németh3e684ea2008-01-24 15:58:57 +10001282 DRM_ERROR("called with no initialization\n");
Eric Anholt20caafa2007-08-25 19:22:43 +10001283 return -EINVAL;
Dave Airlie702880f2006-06-24 17:07:34 +10001284 }
1285
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001286 pipe->pipe = DRM_I915_VBLANK_PIPE_A | DRM_I915_VBLANK_PIPE_B;
Eric Anholtc153f452007-09-03 12:06:45 +10001287
Dave Airlie702880f2006-06-24 17:07:34 +10001288 return 0;
1289}
1290
=?utf-8?q?Michel_D=C3=A4nzer?=a6b54f32006-10-24 23:37:43 +10001291/**
1292 * Schedule buffer swap at given vertical blank.
1293 */
Eric Anholtc153f452007-09-03 12:06:45 +10001294int i915_vblank_swap(struct drm_device *dev, void *data,
1295 struct drm_file *file_priv)
=?utf-8?q?Michel_D=C3=A4nzer?=a6b54f32006-10-24 23:37:43 +10001296{
Eric Anholtbd95e0a2008-11-04 12:01:24 -08001297 /* The delayed swap mechanism was fundamentally racy, and has been
1298 * removed. The model was that the client requested a delayed flip/swap
1299 * from the kernel, then waited for vblank before continuing to perform
1300 * rendering. The problem was that the kernel might wake the client
1301 * up before it dispatched the vblank swap (since the lock has to be
1302 * held while touching the ringbuffer), in which case the client would
1303 * clear and start the next frame before the swap occurred, and
1304 * flicker would occur in addition to likely missing the vblank.
1305 *
1306 * In the absence of this ioctl, userland falls back to a correct path
1307 * of waiting for a vblank, then dispatching the swap on its own.
1308 * Context switching to userland and back is plenty fast enough for
1309 * meeting the requirements of vblank swapping.
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001310 */
Eric Anholtbd95e0a2008-11-04 12:01:24 -08001311 return -EINVAL;
=?utf-8?q?Michel_D=C3=A4nzer?=a6b54f32006-10-24 23:37:43 +10001312}
1313
Chris Wilson995b6762010-08-20 13:23:26 +01001314static struct drm_i915_gem_request *
Zou Nan hai852835f2010-05-21 09:08:56 +08001315i915_get_tail_request(struct drm_device *dev)
1316{
Ben Gamarif65d9422009-09-14 17:48:44 -04001317 drm_i915_private_t *dev_priv = dev->dev_private;
Zou Nan hai852835f2010-05-21 09:08:56 +08001318 return list_entry(dev_priv->render_ring.request_list.prev,
1319 struct drm_i915_gem_request, list);
Ben Gamarif65d9422009-09-14 17:48:44 -04001320}
1321
1322/**
1323 * This is called when the chip hasn't reported back with completed
1324 * batchbuffers in a long time. The first time this is called we simply record
1325 * ACTHD. If ACTHD hasn't changed by the time the hangcheck timer elapses
1326 * again, we assume the chip is wedged and try to fix it.
1327 */
1328void i915_hangcheck_elapsed(unsigned long data)
1329{
1330 struct drm_device *dev = (struct drm_device *)data;
1331 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsoncbb465e2010-06-06 12:16:24 +01001332 uint32_t acthd, instdone, instdone1;
Eric Anholtb9201c12010-01-08 14:25:16 -08001333
1334 /* No reset support on this chip yet. */
1335 if (IS_GEN6(dev))
1336 return;
1337
Chris Wilsoncbb465e2010-06-06 12:16:24 +01001338 if (!IS_I965G(dev)) {
Ben Gamarif65d9422009-09-14 17:48:44 -04001339 acthd = I915_READ(ACTHD);
Chris Wilsoncbb465e2010-06-06 12:16:24 +01001340 instdone = I915_READ(INSTDONE);
1341 instdone1 = 0;
1342 } else {
Ben Gamarif65d9422009-09-14 17:48:44 -04001343 acthd = I915_READ(ACTHD_I965);
Chris Wilsoncbb465e2010-06-06 12:16:24 +01001344 instdone = I915_READ(INSTDONE_I965);
1345 instdone1 = I915_READ(INSTDONE1);
1346 }
Ben Gamarif65d9422009-09-14 17:48:44 -04001347
1348 /* If all work is done then ACTHD clearly hasn't advanced. */
Zou Nan hai852835f2010-05-21 09:08:56 +08001349 if (list_empty(&dev_priv->render_ring.request_list) ||
1350 i915_seqno_passed(i915_get_gem_seqno(dev,
1351 &dev_priv->render_ring),
1352 i915_get_tail_request(dev)->seqno)) {
Ben Gamarif65d9422009-09-14 17:48:44 -04001353 dev_priv->hangcheck_count = 0;
Chris Wilsone78d73b2010-08-07 14:18:47 +01001354
1355 /* Issue a wake-up to catch stuck h/w. */
1356 if (dev_priv->render_ring.waiting_gem_seqno |
1357 dev_priv->bsd_ring.waiting_gem_seqno) {
1358 DRM_ERROR("Hangcheck timer elapsed... GPU idle, missed IRQ.\n");
1359 if (dev_priv->render_ring.waiting_gem_seqno)
1360 DRM_WAKEUP(&dev_priv->render_ring.irq_queue);
1361 if (dev_priv->bsd_ring.waiting_gem_seqno)
1362 DRM_WAKEUP(&dev_priv->bsd_ring.irq_queue);
1363 }
Ben Gamarif65d9422009-09-14 17:48:44 -04001364 return;
1365 }
1366
Chris Wilsoncbb465e2010-06-06 12:16:24 +01001367 if (dev_priv->last_acthd == acthd &&
1368 dev_priv->last_instdone == instdone &&
1369 dev_priv->last_instdone1 == instdone1) {
1370 if (dev_priv->hangcheck_count++ > 1) {
1371 DRM_ERROR("Hangcheck timer elapsed... GPU hung\n");
Chris Wilson8c80b592010-08-08 20:38:12 +01001372
1373 if (!IS_GEN2(dev)) {
1374 /* Is the chip hanging on a WAIT_FOR_EVENT?
1375 * If so we can simply poke the RB_WAIT bit
1376 * and break the hang. This should work on
1377 * all but the second generation chipsets.
1378 */
1379 u32 tmp = I915_READ(PRB0_CTL);
1380 if (tmp & RING_WAIT) {
1381 I915_WRITE(PRB0_CTL, tmp);
1382 POSTING_READ(PRB0_CTL);
1383 goto out;
1384 }
1385 }
1386
Chris Wilsoncbb465e2010-06-06 12:16:24 +01001387 i915_handle_error(dev, true);
1388 return;
1389 }
1390 } else {
1391 dev_priv->hangcheck_count = 0;
1392
1393 dev_priv->last_acthd = acthd;
1394 dev_priv->last_instdone = instdone;
1395 dev_priv->last_instdone1 = instdone1;
1396 }
Ben Gamarif65d9422009-09-14 17:48:44 -04001397
Chris Wilson8c80b592010-08-08 20:38:12 +01001398out:
Ben Gamarif65d9422009-09-14 17:48:44 -04001399 /* Reset timer case chip hangs without another request being added */
1400 mod_timer(&dev_priv->hangcheck_timer, jiffies + DRM_I915_HANGCHECK_PERIOD);
Ben Gamarif65d9422009-09-14 17:48:44 -04001401}
1402
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403/* drm_dma.h hooks
1404*/
Adam Jacksonf2b115e2009-12-03 17:14:42 -05001405static void ironlake_irq_preinstall(struct drm_device *dev)
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001406{
1407 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
1408
1409 I915_WRITE(HWSTAM, 0xeffe);
1410
1411 /* XXX hotplug from PCH */
1412
1413 I915_WRITE(DEIMR, 0xffffffff);
1414 I915_WRITE(DEIER, 0x0);
1415 (void) I915_READ(DEIER);
1416
1417 /* and GT */
1418 I915_WRITE(GTIMR, 0xffffffff);
1419 I915_WRITE(GTIER, 0x0);
1420 (void) I915_READ(GTIER);
Zhenyu Wangc6501562009-11-03 18:57:21 +00001421
1422 /* south display irq */
1423 I915_WRITE(SDEIMR, 0xffffffff);
1424 I915_WRITE(SDEIER, 0x0);
1425 (void) I915_READ(SDEIER);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001426}
1427
Adam Jacksonf2b115e2009-12-03 17:14:42 -05001428static int ironlake_irq_postinstall(struct drm_device *dev)
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001429{
1430 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
1431 /* enable kind of interrupts always enabled */
Jesse Barnes013d5aa2010-01-29 11:18:31 -08001432 u32 display_mask = DE_MASTER_IRQ_CONTROL | DE_GSE | DE_PCH_EVENT |
1433 DE_PLANEA_FLIP_DONE | DE_PLANEB_FLIP_DONE;
Zou Nan haid1b851f2010-05-21 09:08:57 +08001434 u32 render_mask = GT_PIPE_NOTIFY | GT_BSD_USER_INTERRUPT;
Zhenyu Wangc6501562009-11-03 18:57:21 +00001435 u32 hotplug_mask = SDE_CRT_HOTPLUG | SDE_PORTB_HOTPLUG |
1436 SDE_PORTC_HOTPLUG | SDE_PORTD_HOTPLUG;
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001437
1438 dev_priv->irq_mask_reg = ~display_mask;
Li Peng643ced92010-01-28 01:05:09 +08001439 dev_priv->de_irq_enable_reg = display_mask | DE_PIPEA_VBLANK | DE_PIPEB_VBLANK;
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001440
1441 /* should always can generate irq */
1442 I915_WRITE(DEIIR, I915_READ(DEIIR));
1443 I915_WRITE(DEIMR, dev_priv->irq_mask_reg);
1444 I915_WRITE(DEIER, dev_priv->de_irq_enable_reg);
1445 (void) I915_READ(DEIER);
1446
Zhenyu Wang3fdef022010-08-19 09:46:15 +08001447 /* Gen6 only needs render pipe_control now */
1448 if (IS_GEN6(dev))
1449 render_mask = GT_PIPE_NOTIFY;
1450
Zou Nan hai852835f2010-05-21 09:08:56 +08001451 dev_priv->gt_irq_mask_reg = ~render_mask;
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001452 dev_priv->gt_irq_enable_reg = render_mask;
1453
1454 I915_WRITE(GTIIR, I915_READ(GTIIR));
1455 I915_WRITE(GTIMR, dev_priv->gt_irq_mask_reg);
Zhenyu Wang3fdef022010-08-19 09:46:15 +08001456 if (IS_GEN6(dev))
1457 I915_WRITE(GEN6_RENDER_IMR, ~GEN6_RENDER_PIPE_CONTROL_NOTIFY_INTERRUPT);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001458 I915_WRITE(GTIER, dev_priv->gt_irq_enable_reg);
1459 (void) I915_READ(GTIER);
1460
Zhenyu Wangc6501562009-11-03 18:57:21 +00001461 dev_priv->pch_irq_mask_reg = ~hotplug_mask;
1462 dev_priv->pch_irq_enable_reg = hotplug_mask;
1463
1464 I915_WRITE(SDEIIR, I915_READ(SDEIIR));
1465 I915_WRITE(SDEIMR, dev_priv->pch_irq_mask_reg);
1466 I915_WRITE(SDEIER, dev_priv->pch_irq_enable_reg);
1467 (void) I915_READ(SDEIER);
1468
Jesse Barnesf97108d2010-01-29 11:27:07 -08001469 if (IS_IRONLAKE_M(dev)) {
1470 /* Clear & enable PCU event interrupts */
1471 I915_WRITE(DEIIR, DE_PCU_EVENT);
1472 I915_WRITE(DEIER, I915_READ(DEIER) | DE_PCU_EVENT);
1473 ironlake_enable_display_irq(dev_priv, DE_PCU_EVENT);
1474 }
1475
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001476 return 0;
1477}
1478
Dave Airlie84b1fd12007-07-11 15:53:27 +10001479void i915_driver_irq_preinstall(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480{
1481 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
1482
Jesse Barnes79e53942008-11-07 14:24:08 -08001483 atomic_set(&dev_priv->irq_received, 0);
1484
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001485 INIT_WORK(&dev_priv->hotplug_work, i915_hotplug_work_func);
Jesse Barnes8a905232009-07-11 16:48:03 -04001486 INIT_WORK(&dev_priv->error_work, i915_error_work_func);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001487
Eric Anholtbad720f2009-10-22 16:11:14 -07001488 if (HAS_PCH_SPLIT(dev)) {
Adam Jacksonf2b115e2009-12-03 17:14:42 -05001489 ironlake_irq_preinstall(dev);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001490 return;
1491 }
1492
Jesse Barnes5ca58282009-03-31 14:11:15 -07001493 if (I915_HAS_HOTPLUG(dev)) {
1494 I915_WRITE(PORT_HOTPLUG_EN, 0);
1495 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
1496 }
1497
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001498 I915_WRITE(HWSTAM, 0xeffe);
Keith Packard7c463582008-11-04 02:03:27 -08001499 I915_WRITE(PIPEASTAT, 0);
1500 I915_WRITE(PIPEBSTAT, 0);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001501 I915_WRITE(IMR, 0xffffffff);
Eric Anholted4cb412008-07-29 12:10:39 -07001502 I915_WRITE(IER, 0x0);
Keith Packard7c463582008-11-04 02:03:27 -08001503 (void) I915_READ(IER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504}
1505
Jesse Barnesb01f2c32009-12-11 11:07:17 -08001506/*
1507 * Must be called after intel_modeset_init or hotplug interrupts won't be
1508 * enabled correctly.
1509 */
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001510int i915_driver_irq_postinstall(struct drm_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511{
1512 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Jesse Barnes5ca58282009-03-31 14:11:15 -07001513 u32 enable_mask = I915_INTERRUPT_ENABLE_FIX | I915_INTERRUPT_ENABLE_VAR;
Jesse Barnes63eeaf32009-06-18 16:56:52 -07001514 u32 error_mask;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001515
Zou Nan hai852835f2010-05-21 09:08:56 +08001516 DRM_INIT_WAITQUEUE(&dev_priv->render_ring.irq_queue);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001517
Zou Nan haid1b851f2010-05-21 09:08:57 +08001518 if (HAS_BSD(dev))
1519 DRM_INIT_WAITQUEUE(&dev_priv->bsd_ring.irq_queue);
1520
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001521 dev_priv->vblank_pipe = DRM_I915_VBLANK_PIPE_A | DRM_I915_VBLANK_PIPE_B;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001522
Eric Anholtbad720f2009-10-22 16:11:14 -07001523 if (HAS_PCH_SPLIT(dev))
Adam Jacksonf2b115e2009-12-03 17:14:42 -05001524 return ironlake_irq_postinstall(dev);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001525
Keith Packard7c463582008-11-04 02:03:27 -08001526 /* Unmask the interrupts that we always want on. */
1527 dev_priv->irq_mask_reg = ~I915_INTERRUPT_ENABLE_FIX;
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +01001528
Keith Packard7c463582008-11-04 02:03:27 -08001529 dev_priv->pipestat[0] = 0;
1530 dev_priv->pipestat[1] = 0;
1531
Jesse Barnes5ca58282009-03-31 14:11:15 -07001532 if (I915_HAS_HOTPLUG(dev)) {
Adam Jacksonc496fa12010-05-27 17:26:45 -04001533 /* Enable in IER... */
1534 enable_mask |= I915_DISPLAY_PORT_INTERRUPT;
1535 /* and unmask in IMR */
1536 dev_priv->irq_mask_reg &= ~I915_DISPLAY_PORT_INTERRUPT;
1537 }
1538
1539 /*
1540 * Enable some error detection, note the instruction error mask
1541 * bit is reserved, so we leave it masked.
1542 */
1543 if (IS_G4X(dev)) {
1544 error_mask = ~(GM45_ERROR_PAGE_TABLE |
1545 GM45_ERROR_MEM_PRIV |
1546 GM45_ERROR_CP_PRIV |
1547 I915_ERROR_MEMORY_REFRESH);
1548 } else {
1549 error_mask = ~(I915_ERROR_PAGE_TABLE |
1550 I915_ERROR_MEMORY_REFRESH);
1551 }
1552 I915_WRITE(EMR, error_mask);
1553
1554 I915_WRITE(IMR, dev_priv->irq_mask_reg);
1555 I915_WRITE(IER, enable_mask);
1556 (void) I915_READ(IER);
1557
1558 if (I915_HAS_HOTPLUG(dev)) {
Jesse Barnes5ca58282009-03-31 14:11:15 -07001559 u32 hotplug_en = I915_READ(PORT_HOTPLUG_EN);
1560
Jesse Barnesb01f2c32009-12-11 11:07:17 -08001561 /* Note HDMI and DP share bits */
1562 if (dev_priv->hotplug_supported_mask & HDMIB_HOTPLUG_INT_STATUS)
1563 hotplug_en |= HDMIB_HOTPLUG_INT_EN;
1564 if (dev_priv->hotplug_supported_mask & HDMIC_HOTPLUG_INT_STATUS)
1565 hotplug_en |= HDMIC_HOTPLUG_INT_EN;
1566 if (dev_priv->hotplug_supported_mask & HDMID_HOTPLUG_INT_STATUS)
1567 hotplug_en |= HDMID_HOTPLUG_INT_EN;
1568 if (dev_priv->hotplug_supported_mask & SDVOC_HOTPLUG_INT_STATUS)
1569 hotplug_en |= SDVOC_HOTPLUG_INT_EN;
1570 if (dev_priv->hotplug_supported_mask & SDVOB_HOTPLUG_INT_STATUS)
1571 hotplug_en |= SDVOB_HOTPLUG_INT_EN;
Andy Lutomirski2d1c9752010-06-12 05:21:18 -04001572 if (dev_priv->hotplug_supported_mask & CRT_HOTPLUG_INT_STATUS) {
Jesse Barnesb01f2c32009-12-11 11:07:17 -08001573 hotplug_en |= CRT_HOTPLUG_INT_EN;
Andy Lutomirski2d1c9752010-06-12 05:21:18 -04001574
1575 /* Programming the CRT detection parameters tends
1576 to generate a spurious hotplug event about three
1577 seconds later. So just do it once.
1578 */
1579 if (IS_G4X(dev))
1580 hotplug_en |= CRT_HOTPLUG_ACTIVATION_PERIOD_64;
1581 hotplug_en |= CRT_HOTPLUG_VOLTAGE_COMPARE_50;
1582 }
1583
Jesse Barnesb01f2c32009-12-11 11:07:17 -08001584 /* Ignore TV since it's buggy */
1585
Jesse Barnes5ca58282009-03-31 14:11:15 -07001586 I915_WRITE(PORT_HOTPLUG_EN, hotplug_en);
Jesse Barnes5ca58282009-03-31 14:11:15 -07001587 }
1588
Chris Wilson3b617962010-08-24 09:02:58 +01001589 intel_opregion_enable_asle(dev);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001590
1591 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592}
1593
Adam Jacksonf2b115e2009-12-03 17:14:42 -05001594static void ironlake_irq_uninstall(struct drm_device *dev)
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001595{
1596 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
1597 I915_WRITE(HWSTAM, 0xffffffff);
1598
1599 I915_WRITE(DEIMR, 0xffffffff);
1600 I915_WRITE(DEIER, 0x0);
1601 I915_WRITE(DEIIR, I915_READ(DEIIR));
1602
1603 I915_WRITE(GTIMR, 0xffffffff);
1604 I915_WRITE(GTIER, 0x0);
1605 I915_WRITE(GTIIR, I915_READ(GTIIR));
1606}
1607
Dave Airlie84b1fd12007-07-11 15:53:27 +10001608void i915_driver_irq_uninstall(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609{
1610 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Dave Airlie91e37382006-02-18 15:17:04 +11001611
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612 if (!dev_priv)
1613 return;
1614
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001615 dev_priv->vblank_pipe = 0;
1616
Eric Anholtbad720f2009-10-22 16:11:14 -07001617 if (HAS_PCH_SPLIT(dev)) {
Adam Jacksonf2b115e2009-12-03 17:14:42 -05001618 ironlake_irq_uninstall(dev);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001619 return;
1620 }
1621
Jesse Barnes5ca58282009-03-31 14:11:15 -07001622 if (I915_HAS_HOTPLUG(dev)) {
1623 I915_WRITE(PORT_HOTPLUG_EN, 0);
1624 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
1625 }
1626
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001627 I915_WRITE(HWSTAM, 0xffffffff);
Keith Packard7c463582008-11-04 02:03:27 -08001628 I915_WRITE(PIPEASTAT, 0);
1629 I915_WRITE(PIPEBSTAT, 0);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001630 I915_WRITE(IMR, 0xffffffff);
Eric Anholted4cb412008-07-29 12:10:39 -07001631 I915_WRITE(IER, 0x0);
Dave Airlie91e37382006-02-18 15:17:04 +11001632
Keith Packard7c463582008-11-04 02:03:27 -08001633 I915_WRITE(PIPEASTAT, I915_READ(PIPEASTAT) & 0x8000ffff);
1634 I915_WRITE(PIPEBSTAT, I915_READ(PIPEBSTAT) & 0x8000ffff);
1635 I915_WRITE(IIR, I915_READ(IIR));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636}