blob: 080ea3b162cde0bc9577445373d55cd7346f1665 [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,
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;
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)
Chris Wilson3b617962010-08-24 09:02:58 +0100350 intel_opregion_gse_intr(dev);
Zou Nan haic7c85102010-01-15 10:29:06 +0800351
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);
Chris Wilson2bbda382010-09-02 17:59:39 +0100354 intel_finish_page_flip_plane(dev, 0);
Jesse Barnes013d5aa2010-01-29 11:18:31 -0800355 }
356
Zhenyu Wangf072d2e2010-02-09 09:46:19 +0800357 if (de_iir & DE_PLANEB_FLIP_DONE) {
358 intel_prepare_page_flip(dev, 1);
Chris Wilson2bbda382010-09-02 17:59:39 +0100359 intel_finish_page_flip_plane(dev, 1);
Jesse Barnes013d5aa2010-01-29 11:18:31 -0800360 }
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 Wilson3bd3c932010-08-19 08:19:30 +0100424#ifdef CONFIG_DEBUG_FS
Chris Wilson9df30792010-02-18 10:24:56 +0000425static struct drm_i915_error_object *
426i915_error_object_create(struct drm_device *dev,
427 struct drm_gem_object *src)
428{
Chris Wilsone56660d2010-08-07 11:01:26 +0100429 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson9df30792010-02-18 10:24:56 +0000430 struct drm_i915_error_object *dst;
431 struct drm_i915_gem_object *src_priv;
432 int page, page_count;
Chris Wilsone56660d2010-08-07 11:01:26 +0100433 u32 reloc_offset;
Chris Wilson9df30792010-02-18 10:24:56 +0000434
435 if (src == NULL)
436 return NULL;
437
Daniel Vetter23010e42010-03-08 13:35:02 +0100438 src_priv = to_intel_bo(src);
Chris Wilson9df30792010-02-18 10:24:56 +0000439 if (src_priv->pages == NULL)
440 return NULL;
441
442 page_count = src->size / PAGE_SIZE;
443
444 dst = kmalloc(sizeof(*dst) + page_count * sizeof (u32 *), GFP_ATOMIC);
445 if (dst == NULL)
446 return NULL;
447
Chris Wilsone56660d2010-08-07 11:01:26 +0100448 reloc_offset = src_priv->gtt_offset;
Chris Wilson9df30792010-02-18 10:24:56 +0000449 for (page = 0; page < page_count; page++) {
Andrew Morton788885a2010-05-11 14:07:05 -0700450 unsigned long flags;
Chris Wilsone56660d2010-08-07 11:01:26 +0100451 void __iomem *s;
452 void *d;
Andrew Morton788885a2010-05-11 14:07:05 -0700453
Chris Wilsone56660d2010-08-07 11:01:26 +0100454 d = kmalloc(PAGE_SIZE, GFP_ATOMIC);
Chris Wilson9df30792010-02-18 10:24:56 +0000455 if (d == NULL)
456 goto unwind;
Chris Wilsone56660d2010-08-07 11:01:26 +0100457
Andrew Morton788885a2010-05-11 14:07:05 -0700458 local_irq_save(flags);
Chris Wilsone56660d2010-08-07 11:01:26 +0100459 s = io_mapping_map_atomic_wc(dev_priv->mm.gtt_mapping,
460 reloc_offset,
461 KM_IRQ0);
462 memcpy_fromio(d, s, PAGE_SIZE);
463 io_mapping_unmap_atomic(s, KM_IRQ0);
Andrew Morton788885a2010-05-11 14:07:05 -0700464 local_irq_restore(flags);
Chris Wilsone56660d2010-08-07 11:01:26 +0100465
Chris Wilson9df30792010-02-18 10:24:56 +0000466 dst->pages[page] = d;
Chris Wilsone56660d2010-08-07 11:01:26 +0100467
468 reloc_offset += PAGE_SIZE;
Chris Wilson9df30792010-02-18 10:24:56 +0000469 }
470 dst->page_count = page_count;
471 dst->gtt_offset = src_priv->gtt_offset;
472
473 return dst;
474
475unwind:
476 while (page--)
477 kfree(dst->pages[page]);
478 kfree(dst);
479 return NULL;
480}
481
482static void
483i915_error_object_free(struct drm_i915_error_object *obj)
484{
485 int page;
486
487 if (obj == NULL)
488 return;
489
490 for (page = 0; page < obj->page_count; page++)
491 kfree(obj->pages[page]);
492
493 kfree(obj);
494}
495
496static void
497i915_error_state_free(struct drm_device *dev,
498 struct drm_i915_error_state *error)
499{
500 i915_error_object_free(error->batchbuffer[0]);
501 i915_error_object_free(error->batchbuffer[1]);
502 i915_error_object_free(error->ringbuffer);
503 kfree(error->active_bo);
Chris Wilson6ef3d422010-08-04 20:26:07 +0100504 kfree(error->overlay);
Chris Wilson9df30792010-02-18 10:24:56 +0000505 kfree(error);
506}
507
508static u32
509i915_get_bbaddr(struct drm_device *dev, u32 *ring)
510{
511 u32 cmd;
512
513 if (IS_I830(dev) || IS_845G(dev))
514 cmd = MI_BATCH_BUFFER;
515 else if (IS_I965G(dev))
516 cmd = (MI_BATCH_BUFFER_START | (2 << 6) |
517 MI_BATCH_NON_SECURE_I965);
518 else
519 cmd = (MI_BATCH_BUFFER_START | (2 << 6));
520
521 return ring[0] == cmd ? ring[1] : 0;
522}
523
524static u32
525i915_ringbuffer_last_batch(struct drm_device *dev)
526{
527 struct drm_i915_private *dev_priv = dev->dev_private;
528 u32 head, bbaddr;
529 u32 *ring;
530
531 /* Locate the current position in the ringbuffer and walk back
532 * to find the most recently dispatched batch buffer.
533 */
534 bbaddr = 0;
535 head = I915_READ(PRB0_HEAD) & HEAD_ADDR;
Eric Anholtd3301d82010-05-21 13:55:54 -0700536 ring = (u32 *)(dev_priv->render_ring.virtual_start + head);
Chris Wilson9df30792010-02-18 10:24:56 +0000537
Eric Anholtd3301d82010-05-21 13:55:54 -0700538 while (--ring >= (u32 *)dev_priv->render_ring.virtual_start) {
Chris Wilson9df30792010-02-18 10:24:56 +0000539 bbaddr = i915_get_bbaddr(dev, ring);
540 if (bbaddr)
541 break;
542 }
543
544 if (bbaddr == 0) {
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800545 ring = (u32 *)(dev_priv->render_ring.virtual_start
546 + dev_priv->render_ring.size);
Eric Anholtd3301d82010-05-21 13:55:54 -0700547 while (--ring >= (u32 *)dev_priv->render_ring.virtual_start) {
Chris Wilson9df30792010-02-18 10:24:56 +0000548 bbaddr = i915_get_bbaddr(dev, ring);
549 if (bbaddr)
550 break;
551 }
552 }
553
554 return bbaddr;
555}
556
Jesse Barnes8a905232009-07-11 16:48:03 -0400557/**
558 * i915_capture_error_state - capture an error record for later analysis
559 * @dev: drm device
560 *
561 * Should be called when an error is detected (either a hang or an error
562 * interrupt) to capture error state from the time of the error. Fills
563 * out a structure which becomes available in debugfs for user level tools
564 * to pick up.
565 */
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700566static void i915_capture_error_state(struct drm_device *dev)
567{
568 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson9df30792010-02-18 10:24:56 +0000569 struct drm_i915_gem_object *obj_priv;
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700570 struct drm_i915_error_state *error;
Chris Wilson9df30792010-02-18 10:24:56 +0000571 struct drm_gem_object *batchbuffer[2];
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700572 unsigned long flags;
Chris Wilson9df30792010-02-18 10:24:56 +0000573 u32 bbaddr;
574 int count;
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700575
576 spin_lock_irqsave(&dev_priv->error_lock, flags);
Chris Wilson9df30792010-02-18 10:24:56 +0000577 error = dev_priv->first_error;
578 spin_unlock_irqrestore(&dev_priv->error_lock, flags);
579 if (error)
580 return;
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700581
582 error = kmalloc(sizeof(*error), GFP_ATOMIC);
583 if (!error) {
Chris Wilson9df30792010-02-18 10:24:56 +0000584 DRM_DEBUG_DRIVER("out of memory, not capturing error state\n");
585 return;
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700586 }
587
Zou Nan hai852835f2010-05-21 09:08:56 +0800588 error->seqno = i915_get_gem_seqno(dev, &dev_priv->render_ring);
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700589 error->eir = I915_READ(EIR);
590 error->pgtbl_er = I915_READ(PGTBL_ER);
591 error->pipeastat = I915_READ(PIPEASTAT);
592 error->pipebstat = I915_READ(PIPEBSTAT);
593 error->instpm = I915_READ(INSTPM);
594 if (!IS_I965G(dev)) {
595 error->ipeir = I915_READ(IPEIR);
596 error->ipehr = I915_READ(IPEHR);
597 error->instdone = I915_READ(INSTDONE);
598 error->acthd = I915_READ(ACTHD);
Chris Wilson9df30792010-02-18 10:24:56 +0000599 error->bbaddr = 0;
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700600 } else {
601 error->ipeir = I915_READ(IPEIR_I965);
602 error->ipehr = I915_READ(IPEHR_I965);
603 error->instdone = I915_READ(INSTDONE_I965);
604 error->instps = I915_READ(INSTPS);
605 error->instdone1 = I915_READ(INSTDONE1);
606 error->acthd = I915_READ(ACTHD_I965);
Chris Wilson9df30792010-02-18 10:24:56 +0000607 error->bbaddr = I915_READ64(BB_ADDR);
608 }
609
610 bbaddr = i915_ringbuffer_last_batch(dev);
611
612 /* Grab the current batchbuffer, most likely to have crashed. */
613 batchbuffer[0] = NULL;
614 batchbuffer[1] = NULL;
615 count = 0;
Zou Nan hai852835f2010-05-21 09:08:56 +0800616 list_for_each_entry(obj_priv,
617 &dev_priv->render_ring.active_list, list) {
618
Daniel Vettera8089e82010-04-09 19:05:09 +0000619 struct drm_gem_object *obj = &obj_priv->base;
Chris Wilson9df30792010-02-18 10:24:56 +0000620
621 if (batchbuffer[0] == NULL &&
622 bbaddr >= obj_priv->gtt_offset &&
623 bbaddr < obj_priv->gtt_offset + obj->size)
624 batchbuffer[0] = obj;
625
626 if (batchbuffer[1] == NULL &&
627 error->acthd >= obj_priv->gtt_offset &&
Chris Wilsone56660d2010-08-07 11:01:26 +0100628 error->acthd < obj_priv->gtt_offset + obj->size)
Chris Wilson9df30792010-02-18 10:24:56 +0000629 batchbuffer[1] = obj;
630
631 count++;
632 }
Chris Wilsone56660d2010-08-07 11:01:26 +0100633 /* Scan the other lists for completeness for those bizarre errors. */
634 if (batchbuffer[0] == NULL || batchbuffer[1] == NULL) {
635 list_for_each_entry(obj_priv, &dev_priv->mm.flushing_list, list) {
636 struct drm_gem_object *obj = &obj_priv->base;
637
638 if (batchbuffer[0] == NULL &&
639 bbaddr >= obj_priv->gtt_offset &&
640 bbaddr < obj_priv->gtt_offset + obj->size)
641 batchbuffer[0] = obj;
642
643 if (batchbuffer[1] == NULL &&
644 error->acthd >= obj_priv->gtt_offset &&
645 error->acthd < obj_priv->gtt_offset + obj->size)
646 batchbuffer[1] = obj;
647
648 if (batchbuffer[0] && batchbuffer[1])
649 break;
650 }
651 }
652 if (batchbuffer[0] == NULL || batchbuffer[1] == NULL) {
653 list_for_each_entry(obj_priv, &dev_priv->mm.inactive_list, list) {
654 struct drm_gem_object *obj = &obj_priv->base;
655
656 if (batchbuffer[0] == NULL &&
657 bbaddr >= obj_priv->gtt_offset &&
658 bbaddr < obj_priv->gtt_offset + obj->size)
659 batchbuffer[0] = obj;
660
661 if (batchbuffer[1] == NULL &&
662 error->acthd >= obj_priv->gtt_offset &&
663 error->acthd < obj_priv->gtt_offset + obj->size)
664 batchbuffer[1] = obj;
665
666 if (batchbuffer[0] && batchbuffer[1])
667 break;
668 }
669 }
Chris Wilson9df30792010-02-18 10:24:56 +0000670
671 /* We need to copy these to an anonymous buffer as the simplest
672 * method to avoid being overwritten by userpace.
673 */
674 error->batchbuffer[0] = i915_error_object_create(dev, batchbuffer[0]);
Chris Wilsone56660d2010-08-07 11:01:26 +0100675 if (batchbuffer[1] != batchbuffer[0])
676 error->batchbuffer[1] = i915_error_object_create(dev, batchbuffer[1]);
677 else
678 error->batchbuffer[1] = NULL;
Chris Wilson9df30792010-02-18 10:24:56 +0000679
680 /* Record the ringbuffer */
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800681 error->ringbuffer = i915_error_object_create(dev,
682 dev_priv->render_ring.gem_object);
Chris Wilson9df30792010-02-18 10:24:56 +0000683
684 /* Record buffers on the active list. */
685 error->active_bo = NULL;
686 error->active_bo_count = 0;
687
688 if (count)
689 error->active_bo = kmalloc(sizeof(*error->active_bo)*count,
690 GFP_ATOMIC);
691
692 if (error->active_bo) {
693 int i = 0;
Zou Nan hai852835f2010-05-21 09:08:56 +0800694 list_for_each_entry(obj_priv,
695 &dev_priv->render_ring.active_list, list) {
Daniel Vettera8089e82010-04-09 19:05:09 +0000696 struct drm_gem_object *obj = &obj_priv->base;
Chris Wilson9df30792010-02-18 10:24:56 +0000697
698 error->active_bo[i].size = obj->size;
699 error->active_bo[i].name = obj->name;
700 error->active_bo[i].seqno = obj_priv->last_rendering_seqno;
701 error->active_bo[i].gtt_offset = obj_priv->gtt_offset;
702 error->active_bo[i].read_domains = obj->read_domains;
703 error->active_bo[i].write_domain = obj->write_domain;
704 error->active_bo[i].fence_reg = obj_priv->fence_reg;
705 error->active_bo[i].pinned = 0;
706 if (obj_priv->pin_count > 0)
707 error->active_bo[i].pinned = 1;
708 if (obj_priv->user_pin_count > 0)
709 error->active_bo[i].pinned = -1;
710 error->active_bo[i].tiling = obj_priv->tiling_mode;
711 error->active_bo[i].dirty = obj_priv->dirty;
712 error->active_bo[i].purgeable = obj_priv->madv != I915_MADV_WILLNEED;
713
714 if (++i == count)
715 break;
716 }
717 error->active_bo_count = i;
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700718 }
719
Jesse Barnes8a905232009-07-11 16:48:03 -0400720 do_gettimeofday(&error->time);
721
Chris Wilson6ef3d422010-08-04 20:26:07 +0100722 error->overlay = intel_overlay_capture_error_state(dev);
723
Chris Wilson9df30792010-02-18 10:24:56 +0000724 spin_lock_irqsave(&dev_priv->error_lock, flags);
725 if (dev_priv->first_error == NULL) {
726 dev_priv->first_error = error;
727 error = NULL;
728 }
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700729 spin_unlock_irqrestore(&dev_priv->error_lock, flags);
Chris Wilson9df30792010-02-18 10:24:56 +0000730
731 if (error)
732 i915_error_state_free(dev, error);
733}
734
735void i915_destroy_error_state(struct drm_device *dev)
736{
737 struct drm_i915_private *dev_priv = dev->dev_private;
738 struct drm_i915_error_state *error;
739
740 spin_lock(&dev_priv->error_lock);
741 error = dev_priv->first_error;
742 dev_priv->first_error = NULL;
743 spin_unlock(&dev_priv->error_lock);
744
745 if (error)
746 i915_error_state_free(dev, error);
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700747}
Chris Wilson3bd3c932010-08-19 08:19:30 +0100748#else
749#define i915_capture_error_state(x)
750#endif
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700751
Chris Wilson35aed2e2010-05-27 13:18:12 +0100752static void i915_report_and_clear_eir(struct drm_device *dev)
Jesse Barnes8a905232009-07-11 16:48:03 -0400753{
754 struct drm_i915_private *dev_priv = dev->dev_private;
755 u32 eir = I915_READ(EIR);
Jesse Barnes8a905232009-07-11 16:48:03 -0400756
Chris Wilson35aed2e2010-05-27 13:18:12 +0100757 if (!eir)
758 return;
Jesse Barnes8a905232009-07-11 16:48:03 -0400759
760 printk(KERN_ERR "render error detected, EIR: 0x%08x\n",
761 eir);
762
763 if (IS_G4X(dev)) {
764 if (eir & (GM45_ERROR_MEM_PRIV | GM45_ERROR_CP_PRIV)) {
765 u32 ipeir = I915_READ(IPEIR_I965);
766
767 printk(KERN_ERR " IPEIR: 0x%08x\n",
768 I915_READ(IPEIR_I965));
769 printk(KERN_ERR " IPEHR: 0x%08x\n",
770 I915_READ(IPEHR_I965));
771 printk(KERN_ERR " INSTDONE: 0x%08x\n",
772 I915_READ(INSTDONE_I965));
773 printk(KERN_ERR " INSTPS: 0x%08x\n",
774 I915_READ(INSTPS));
775 printk(KERN_ERR " INSTDONE1: 0x%08x\n",
776 I915_READ(INSTDONE1));
777 printk(KERN_ERR " ACTHD: 0x%08x\n",
778 I915_READ(ACTHD_I965));
779 I915_WRITE(IPEIR_I965, ipeir);
780 (void)I915_READ(IPEIR_I965);
781 }
782 if (eir & GM45_ERROR_PAGE_TABLE) {
783 u32 pgtbl_err = I915_READ(PGTBL_ER);
784 printk(KERN_ERR "page table error\n");
785 printk(KERN_ERR " PGTBL_ER: 0x%08x\n",
786 pgtbl_err);
787 I915_WRITE(PGTBL_ER, pgtbl_err);
788 (void)I915_READ(PGTBL_ER);
789 }
790 }
791
792 if (IS_I9XX(dev)) {
793 if (eir & I915_ERROR_PAGE_TABLE) {
794 u32 pgtbl_err = I915_READ(PGTBL_ER);
795 printk(KERN_ERR "page table error\n");
796 printk(KERN_ERR " PGTBL_ER: 0x%08x\n",
797 pgtbl_err);
798 I915_WRITE(PGTBL_ER, pgtbl_err);
799 (void)I915_READ(PGTBL_ER);
800 }
801 }
802
803 if (eir & I915_ERROR_MEMORY_REFRESH) {
Chris Wilson35aed2e2010-05-27 13:18:12 +0100804 u32 pipea_stats = I915_READ(PIPEASTAT);
805 u32 pipeb_stats = I915_READ(PIPEBSTAT);
806
Jesse Barnes8a905232009-07-11 16:48:03 -0400807 printk(KERN_ERR "memory refresh error\n");
808 printk(KERN_ERR "PIPEASTAT: 0x%08x\n",
809 pipea_stats);
810 printk(KERN_ERR "PIPEBSTAT: 0x%08x\n",
811 pipeb_stats);
812 /* pipestat has already been acked */
813 }
814 if (eir & I915_ERROR_INSTRUCTION) {
815 printk(KERN_ERR "instruction error\n");
816 printk(KERN_ERR " INSTPM: 0x%08x\n",
817 I915_READ(INSTPM));
818 if (!IS_I965G(dev)) {
819 u32 ipeir = I915_READ(IPEIR);
820
821 printk(KERN_ERR " IPEIR: 0x%08x\n",
822 I915_READ(IPEIR));
823 printk(KERN_ERR " IPEHR: 0x%08x\n",
824 I915_READ(IPEHR));
825 printk(KERN_ERR " INSTDONE: 0x%08x\n",
826 I915_READ(INSTDONE));
827 printk(KERN_ERR " ACTHD: 0x%08x\n",
828 I915_READ(ACTHD));
829 I915_WRITE(IPEIR, ipeir);
830 (void)I915_READ(IPEIR);
831 } else {
832 u32 ipeir = I915_READ(IPEIR_I965);
833
834 printk(KERN_ERR " IPEIR: 0x%08x\n",
835 I915_READ(IPEIR_I965));
836 printk(KERN_ERR " IPEHR: 0x%08x\n",
837 I915_READ(IPEHR_I965));
838 printk(KERN_ERR " INSTDONE: 0x%08x\n",
839 I915_READ(INSTDONE_I965));
840 printk(KERN_ERR " INSTPS: 0x%08x\n",
841 I915_READ(INSTPS));
842 printk(KERN_ERR " INSTDONE1: 0x%08x\n",
843 I915_READ(INSTDONE1));
844 printk(KERN_ERR " ACTHD: 0x%08x\n",
845 I915_READ(ACTHD_I965));
846 I915_WRITE(IPEIR_I965, ipeir);
847 (void)I915_READ(IPEIR_I965);
848 }
849 }
850
851 I915_WRITE(EIR, eir);
852 (void)I915_READ(EIR);
853 eir = I915_READ(EIR);
854 if (eir) {
855 /*
856 * some errors might have become stuck,
857 * mask them.
858 */
859 DRM_ERROR("EIR stuck: 0x%08x, masking\n", eir);
860 I915_WRITE(EMR, I915_READ(EMR) | eir);
861 I915_WRITE(IIR, I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT);
862 }
Chris Wilson35aed2e2010-05-27 13:18:12 +0100863}
864
865/**
866 * i915_handle_error - handle an error interrupt
867 * @dev: drm device
868 *
869 * Do some basic checking of regsiter state at error interrupt time and
870 * dump it to the syslog. Also call i915_capture_error_state() to make
871 * sure we get a record and make it available in debugfs. Fire a uevent
872 * so userspace knows something bad happened (should trigger collection
873 * of a ring dump etc.).
874 */
875static void i915_handle_error(struct drm_device *dev, bool wedged)
876{
877 struct drm_i915_private *dev_priv = dev->dev_private;
878
879 i915_capture_error_state(dev);
880 i915_report_and_clear_eir(dev);
Jesse Barnes8a905232009-07-11 16:48:03 -0400881
Ben Gamariba1234d2009-09-14 17:48:47 -0400882 if (wedged) {
883 atomic_set(&dev_priv->mm.wedged, 1);
884
Ben Gamari11ed50e2009-09-14 17:48:45 -0400885 /*
886 * Wakeup waiting processes so they don't hang
887 */
Zou Nan hai852835f2010-05-21 09:08:56 +0800888 DRM_WAKEUP(&dev_priv->render_ring.irq_queue);
Ben Gamari11ed50e2009-09-14 17:48:45 -0400889 }
890
Eric Anholt9c9fe1f2009-08-03 16:09:16 -0700891 queue_work(dev_priv->wq, &dev_priv->error_work);
Jesse Barnes8a905232009-07-11 16:48:03 -0400892}
893
Simon Farnsworth4e5359c2010-09-01 17:47:52 +0100894static void i915_pageflip_stall_check(struct drm_device *dev, int pipe)
895{
896 drm_i915_private_t *dev_priv = dev->dev_private;
897 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
898 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
899 struct drm_i915_gem_object *obj_priv;
900 struct intel_unpin_work *work;
901 unsigned long flags;
902 bool stall_detected;
903
904 /* Ignore early vblank irqs */
905 if (intel_crtc == NULL)
906 return;
907
908 spin_lock_irqsave(&dev->event_lock, flags);
909 work = intel_crtc->unpin_work;
910
911 if (work == NULL || work->pending || !work->enable_stall_check) {
912 /* Either the pending flip IRQ arrived, or we're too early. Don't check */
913 spin_unlock_irqrestore(&dev->event_lock, flags);
914 return;
915 }
916
917 /* Potential stall - if we see that the flip has happened, assume a missed interrupt */
918 obj_priv = to_intel_bo(work->pending_flip_obj);
919 if(IS_I965G(dev)) {
920 int dspsurf = intel_crtc->plane == 0 ? DSPASURF : DSPBSURF;
921 stall_detected = I915_READ(dspsurf) == obj_priv->gtt_offset;
922 } else {
923 int dspaddr = intel_crtc->plane == 0 ? DSPAADDR : DSPBADDR;
924 stall_detected = I915_READ(dspaddr) == (obj_priv->gtt_offset +
925 crtc->y * crtc->fb->pitch +
926 crtc->x * crtc->fb->bits_per_pixel/8);
927 }
928
929 spin_unlock_irqrestore(&dev->event_lock, flags);
930
931 if (stall_detected) {
932 DRM_DEBUG_DRIVER("Pageflip stall detected\n");
933 intel_prepare_page_flip(dev, intel_crtc->plane);
934 }
935}
936
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937irqreturn_t i915_driver_irq_handler(DRM_IRQ_ARGS)
938{
Dave Airlie84b1fd12007-07-11 15:53:27 +1000939 struct drm_device *dev = (struct drm_device *) arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000941 struct drm_i915_master_private *master_priv;
Eric Anholtcdfbc412008-11-04 15:50:30 -0800942 u32 iir, new_iir;
943 u32 pipea_stats, pipeb_stats;
Keith Packard05eff842008-11-19 14:03:05 -0800944 u32 vblank_status;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700945 int vblank = 0;
Keith Packard7c463582008-11-04 02:03:27 -0800946 unsigned long irqflags;
Keith Packard05eff842008-11-19 14:03:05 -0800947 int irq_received;
948 int ret = IRQ_NONE;
Zou Nan hai852835f2010-05-21 09:08:56 +0800949 struct intel_ring_buffer *render_ring = &dev_priv->render_ring;
Dave Airlieaf6061a2008-05-07 12:15:39 +1000950
Eric Anholt630681d2008-10-06 15:14:12 -0700951 atomic_inc(&dev_priv->irq_received);
952
Eric Anholtbad720f2009-10-22 16:11:14 -0700953 if (HAS_PCH_SPLIT(dev))
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500954 return ironlake_irq_handler(dev);
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800955
Eric Anholted4cb412008-07-29 12:10:39 -0700956 iir = I915_READ(IIR);
Dave Airlieaf6061a2008-05-07 12:15:39 +1000957
Jesse Barnese25e6602010-06-30 13:15:19 -0700958 if (IS_I965G(dev))
Jesse Barnesd874bcf2010-06-30 13:16:00 -0700959 vblank_status = PIPE_START_VBLANK_INTERRUPT_STATUS;
Jesse Barnese25e6602010-06-30 13:15:19 -0700960 else
Jesse Barnesd874bcf2010-06-30 13:16:00 -0700961 vblank_status = PIPE_VBLANK_INTERRUPT_STATUS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962
Keith Packard05eff842008-11-19 14:03:05 -0800963 for (;;) {
964 irq_received = iir != 0;
965
966 /* Can't rely on pipestat interrupt bit in iir as it might
967 * have been cleared after the pipestat interrupt was received.
968 * It doesn't set the bit in iir again, but it still produces
969 * interrupts (for non-MSI).
970 */
971 spin_lock_irqsave(&dev_priv->user_irq_lock, irqflags);
972 pipea_stats = I915_READ(PIPEASTAT);
973 pipeb_stats = I915_READ(PIPEBSTAT);
Jesse Barnes79e53942008-11-07 14:24:08 -0800974
Jesse Barnes8a905232009-07-11 16:48:03 -0400975 if (iir & I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT)
Ben Gamariba1234d2009-09-14 17:48:47 -0400976 i915_handle_error(dev, false);
Jesse Barnes8a905232009-07-11 16:48:03 -0400977
Eric Anholtcdfbc412008-11-04 15:50:30 -0800978 /*
979 * Clear the PIPE(A|B)STAT regs before the IIR
980 */
Keith Packard05eff842008-11-19 14:03:05 -0800981 if (pipea_stats & 0x8000ffff) {
Shaohua Li7662c8b2009-06-26 11:23:55 +0800982 if (pipea_stats & PIPE_FIFO_UNDERRUN_STATUS)
Zhao Yakui44d98a62009-10-09 11:39:40 +0800983 DRM_DEBUG_DRIVER("pipe a underrun\n");
Eric Anholtcdfbc412008-11-04 15:50:30 -0800984 I915_WRITE(PIPEASTAT, pipea_stats);
Keith Packard05eff842008-11-19 14:03:05 -0800985 irq_received = 1;
Eric Anholtcdfbc412008-11-04 15:50:30 -0800986 }
Keith Packard7c463582008-11-04 02:03:27 -0800987
Keith Packard05eff842008-11-19 14:03:05 -0800988 if (pipeb_stats & 0x8000ffff) {
Shaohua Li7662c8b2009-06-26 11:23:55 +0800989 if (pipeb_stats & PIPE_FIFO_UNDERRUN_STATUS)
Zhao Yakui44d98a62009-10-09 11:39:40 +0800990 DRM_DEBUG_DRIVER("pipe b underrun\n");
Eric Anholtcdfbc412008-11-04 15:50:30 -0800991 I915_WRITE(PIPEBSTAT, pipeb_stats);
Keith Packard05eff842008-11-19 14:03:05 -0800992 irq_received = 1;
Eric Anholtcdfbc412008-11-04 15:50:30 -0800993 }
Keith Packard05eff842008-11-19 14:03:05 -0800994 spin_unlock_irqrestore(&dev_priv->user_irq_lock, irqflags);
995
996 if (!irq_received)
997 break;
998
999 ret = IRQ_HANDLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000
Jesse Barnes5ca58282009-03-31 14:11:15 -07001001 /* Consume port. Then clear IIR or we'll miss events */
1002 if ((I915_HAS_HOTPLUG(dev)) &&
1003 (iir & I915_DISPLAY_PORT_INTERRUPT)) {
1004 u32 hotplug_status = I915_READ(PORT_HOTPLUG_STAT);
1005
Zhao Yakui44d98a62009-10-09 11:39:40 +08001006 DRM_DEBUG_DRIVER("hotplug event received, stat 0x%08x\n",
Jesse Barnes5ca58282009-03-31 14:11:15 -07001007 hotplug_status);
1008 if (hotplug_status & dev_priv->hotplug_supported_mask)
Eric Anholt9c9fe1f2009-08-03 16:09:16 -07001009 queue_work(dev_priv->wq,
1010 &dev_priv->hotplug_work);
Jesse Barnes5ca58282009-03-31 14:11:15 -07001011
1012 I915_WRITE(PORT_HOTPLUG_STAT, hotplug_status);
1013 I915_READ(PORT_HOTPLUG_STAT);
1014 }
1015
Eric Anholtcdfbc412008-11-04 15:50:30 -08001016 I915_WRITE(IIR, iir);
1017 new_iir = I915_READ(IIR); /* Flush posted writes */
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +01001018
Dave Airlie7c1c2872008-11-28 14:22:24 +10001019 if (dev->primary->master) {
1020 master_priv = dev->primary->master->driver_priv;
1021 if (master_priv->sarea_priv)
1022 master_priv->sarea_priv->last_dispatch =
1023 READ_BREADCRUMB(dev_priv);
1024 }
Keith Packard7c463582008-11-04 02:03:27 -08001025
Eric Anholtcdfbc412008-11-04 15:50:30 -08001026 if (iir & I915_USER_INTERRUPT) {
Zou Nan hai852835f2010-05-21 09:08:56 +08001027 u32 seqno =
1028 render_ring->get_gem_seqno(dev, render_ring);
1029 render_ring->irq_gem_seqno = seqno;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01001030 trace_i915_gem_request_complete(dev, seqno);
Zou Nan hai852835f2010-05-21 09:08:56 +08001031 DRM_WAKEUP(&dev_priv->render_ring.irq_queue);
Ben Gamarif65d9422009-09-14 17:48:44 -04001032 dev_priv->hangcheck_count = 0;
1033 mod_timer(&dev_priv->hangcheck_timer, jiffies + DRM_I915_HANGCHECK_PERIOD);
Eric Anholtcdfbc412008-11-04 15:50:30 -08001034 }
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001035
Zou Nan haid1b851f2010-05-21 09:08:57 +08001036 if (HAS_BSD(dev) && (iir & I915_BSD_USER_INTERRUPT))
1037 DRM_WAKEUP(&dev_priv->bsd_ring.irq_queue);
1038
Jesse Barnes1afe3e92010-03-26 10:35:20 -07001039 if (iir & I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT) {
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001040 intel_prepare_page_flip(dev, 0);
Jesse Barnes1afe3e92010-03-26 10:35:20 -07001041 if (dev_priv->flip_pending_is_done)
1042 intel_finish_page_flip_plane(dev, 0);
1043 }
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001044
Jesse Barnes1afe3e92010-03-26 10:35:20 -07001045 if (iir & I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT) {
Jesse Barnes70565d02010-07-01 04:45:43 -07001046 intel_prepare_page_flip(dev, 1);
Jesse Barnes1afe3e92010-03-26 10:35:20 -07001047 if (dev_priv->flip_pending_is_done)
1048 intel_finish_page_flip_plane(dev, 1);
Jesse Barnes1afe3e92010-03-26 10:35:20 -07001049 }
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001050
Keith Packard05eff842008-11-19 14:03:05 -08001051 if (pipea_stats & vblank_status) {
Eric Anholtcdfbc412008-11-04 15:50:30 -08001052 vblank++;
1053 drm_handle_vblank(dev, 0);
Simon Farnsworth4e5359c2010-09-01 17:47:52 +01001054 if (!dev_priv->flip_pending_is_done) {
1055 i915_pageflip_stall_check(dev, 0);
Jesse Barnes1afe3e92010-03-26 10:35:20 -07001056 intel_finish_page_flip(dev, 0);
Simon Farnsworth4e5359c2010-09-01 17:47:52 +01001057 }
Eric Anholtcdfbc412008-11-04 15:50:30 -08001058 }
Eric Anholt673a3942008-07-30 12:06:12 -07001059
Keith Packard05eff842008-11-19 14:03:05 -08001060 if (pipeb_stats & vblank_status) {
Eric Anholtcdfbc412008-11-04 15:50:30 -08001061 vblank++;
1062 drm_handle_vblank(dev, 1);
Simon Farnsworth4e5359c2010-09-01 17:47:52 +01001063 if (!dev_priv->flip_pending_is_done) {
1064 i915_pageflip_stall_check(dev, 1);
Jesse Barnes1afe3e92010-03-26 10:35:20 -07001065 intel_finish_page_flip(dev, 1);
Simon Farnsworth4e5359c2010-09-01 17:47:52 +01001066 }
Eric Anholtcdfbc412008-11-04 15:50:30 -08001067 }
Keith Packard7c463582008-11-04 02:03:27 -08001068
Jesse Barnesd874bcf2010-06-30 13:16:00 -07001069 if ((pipea_stats & PIPE_LEGACY_BLC_EVENT_STATUS) ||
1070 (pipeb_stats & PIPE_LEGACY_BLC_EVENT_STATUS) ||
Eric Anholtcdfbc412008-11-04 15:50:30 -08001071 (iir & I915_ASLE_INTERRUPT))
Chris Wilson3b617962010-08-24 09:02:58 +01001072 intel_opregion_asle_intr(dev);
Keith Packard7c463582008-11-04 02:03:27 -08001073
Eric Anholtcdfbc412008-11-04 15:50:30 -08001074 /* With MSI, interrupts are only generated when iir
1075 * transitions from zero to nonzero. If another bit got
1076 * set while we were handling the existing iir bits, then
1077 * we would never get another interrupt.
1078 *
1079 * This is fine on non-MSI as well, as if we hit this path
1080 * we avoid exiting the interrupt handler only to generate
1081 * another one.
1082 *
1083 * Note that for MSI this could cause a stray interrupt report
1084 * if an interrupt landed in the time between writing IIR and
1085 * the posting read. This should be rare enough to never
1086 * trigger the 99% of 100,000 interrupts test for disabling
1087 * stray interrupts.
1088 */
1089 iir = new_iir;
Keith Packard05eff842008-11-19 14:03:05 -08001090 }
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001091
Keith Packard05eff842008-11-19 14:03:05 -08001092 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093}
1094
Dave Airlieaf6061a2008-05-07 12:15:39 +10001095static int i915_emit_irq(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096{
1097 drm_i915_private_t *dev_priv = dev->dev_private;
Dave Airlie7c1c2872008-11-28 14:22:24 +10001098 struct drm_i915_master_private *master_priv = dev->primary->master->driver_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099
1100 i915_kernel_lost_context(dev);
1101
Zhao Yakui44d98a62009-10-09 11:39:40 +08001102 DRM_DEBUG_DRIVER("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103
Kristian Høgsbergc99b0582008-08-20 11:20:13 -04001104 dev_priv->counter++;
Alan Hourihanec29b6692006-08-12 16:29:24 +10001105 if (dev_priv->counter > 0x7FFFFFFFUL)
Kristian Høgsbergc99b0582008-08-20 11:20:13 -04001106 dev_priv->counter = 1;
Dave Airlie7c1c2872008-11-28 14:22:24 +10001107 if (master_priv->sarea_priv)
1108 master_priv->sarea_priv->last_enqueue = dev_priv->counter;
Alan Hourihanec29b6692006-08-12 16:29:24 +10001109
Keith Packard0baf8232008-11-08 11:44:14 +10001110 BEGIN_LP_RING(4);
Jesse Barnes585fb112008-07-29 11:54:06 -07001111 OUT_RING(MI_STORE_DWORD_INDEX);
Keith Packard0baf8232008-11-08 11:44:14 +10001112 OUT_RING(I915_BREADCRUMB_INDEX << MI_STORE_DWORD_INDEX_SHIFT);
Alan Hourihanec29b6692006-08-12 16:29:24 +10001113 OUT_RING(dev_priv->counter);
Jesse Barnes585fb112008-07-29 11:54:06 -07001114 OUT_RING(MI_USER_INTERRUPT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 ADVANCE_LP_RING();
Dave Airliebc5f4522007-11-05 12:50:58 +10001116
Alan Hourihanec29b6692006-08-12 16:29:24 +10001117 return dev_priv->counter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118}
1119
Chris Wilson9d34e5d2009-09-24 05:26:06 +01001120void i915_trace_irq_get(struct drm_device *dev, u32 seqno)
1121{
1122 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001123 struct intel_ring_buffer *render_ring = &dev_priv->render_ring;
Chris Wilson9d34e5d2009-09-24 05:26:06 +01001124
1125 if (dev_priv->trace_irq_seqno == 0)
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001126 render_ring->user_irq_get(dev, render_ring);
Chris Wilson9d34e5d2009-09-24 05:26:06 +01001127
1128 dev_priv->trace_irq_seqno = seqno;
1129}
1130
Dave Airlie84b1fd12007-07-11 15:53:27 +10001131static int i915_wait_irq(struct drm_device * dev, int irq_nr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132{
1133 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Dave Airlie7c1c2872008-11-28 14:22:24 +10001134 struct drm_i915_master_private *master_priv = dev->primary->master->driver_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135 int ret = 0;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001136 struct intel_ring_buffer *render_ring = &dev_priv->render_ring;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137
Zhao Yakui44d98a62009-10-09 11:39:40 +08001138 DRM_DEBUG_DRIVER("irq_nr=%d breadcrumb=%d\n", irq_nr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 READ_BREADCRUMB(dev_priv));
1140
Eric Anholted4cb412008-07-29 12:10:39 -07001141 if (READ_BREADCRUMB(dev_priv) >= irq_nr) {
Dave Airlie7c1c2872008-11-28 14:22:24 +10001142 if (master_priv->sarea_priv)
1143 master_priv->sarea_priv->last_dispatch = READ_BREADCRUMB(dev_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 return 0;
Eric Anholted4cb412008-07-29 12:10:39 -07001145 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146
Dave Airlie7c1c2872008-11-28 14:22:24 +10001147 if (master_priv->sarea_priv)
1148 master_priv->sarea_priv->perf_boxes |= I915_BOX_WAIT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001150 render_ring->user_irq_get(dev, render_ring);
Zou Nan hai852835f2010-05-21 09:08:56 +08001151 DRM_WAIT_ON(ret, dev_priv->render_ring.irq_queue, 3 * DRM_HZ,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 READ_BREADCRUMB(dev_priv) >= irq_nr);
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001153 render_ring->user_irq_put(dev, render_ring);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154
Eric Anholt20caafa2007-08-25 19:22:43 +10001155 if (ret == -EBUSY) {
Márton Németh3e684ea2008-01-24 15:58:57 +10001156 DRM_ERROR("EBUSY -- rec: %d emitted: %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157 READ_BREADCRUMB(dev_priv), (int)dev_priv->counter);
1158 }
1159
Dave Airlieaf6061a2008-05-07 12:15:39 +10001160 return ret;
1161}
1162
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163/* Needs the lock as it touches the ring.
1164 */
Eric Anholtc153f452007-09-03 12:06:45 +10001165int i915_irq_emit(struct drm_device *dev, void *data,
1166 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholtc153f452007-09-03 12:06:45 +10001169 drm_i915_irq_emit_t *emit = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 int result;
1171
Eric Anholtd3301d82010-05-21 13:55:54 -07001172 if (!dev_priv || !dev_priv->render_ring.virtual_start) {
Márton Németh3e684ea2008-01-24 15:58:57 +10001173 DRM_ERROR("called with no initialization\n");
Eric Anholt20caafa2007-08-25 19:22:43 +10001174 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175 }
Eric Anholt299eb932009-02-24 22:14:12 -08001176
1177 RING_LOCK_TEST_WITH_RETURN(dev, file_priv);
1178
Eric Anholt546b0972008-09-01 16:45:29 -07001179 mutex_lock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 result = i915_emit_irq(dev);
Eric Anholt546b0972008-09-01 16:45:29 -07001181 mutex_unlock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182
Eric Anholtc153f452007-09-03 12:06:45 +10001183 if (DRM_COPY_TO_USER(emit->irq_seq, &result, sizeof(int))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184 DRM_ERROR("copy_to_user\n");
Eric Anholt20caafa2007-08-25 19:22:43 +10001185 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186 }
1187
1188 return 0;
1189}
1190
1191/* Doesn't need the hardware lock.
1192 */
Eric Anholtc153f452007-09-03 12:06:45 +10001193int i915_irq_wait(struct drm_device *dev, void *data,
1194 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholtc153f452007-09-03 12:06:45 +10001197 drm_i915_irq_wait_t *irqwait = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198
1199 if (!dev_priv) {
Márton Németh3e684ea2008-01-24 15:58:57 +10001200 DRM_ERROR("called with no initialization\n");
Eric Anholt20caafa2007-08-25 19:22:43 +10001201 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 }
1203
Eric Anholtc153f452007-09-03 12:06:45 +10001204 return i915_wait_irq(dev, irqwait->irq_seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205}
1206
Keith Packard42f52ef2008-10-18 19:39:29 -07001207/* Called from drm generic code, passed 'crtc' which
1208 * we use as a pipe index
1209 */
1210int i915_enable_vblank(struct drm_device *dev, int pipe)
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001211{
1212 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Keith Packarde9d21d72008-10-16 11:31:38 -07001213 unsigned long irqflags;
Jesse Barnes71e0ffa2009-01-08 10:42:15 -08001214 int pipeconf_reg = (pipe == 0) ? PIPEACONF : PIPEBCONF;
1215 u32 pipeconf;
1216
1217 pipeconf = I915_READ(pipeconf_reg);
1218 if (!(pipeconf & PIPEACONF_ENABLE))
1219 return -EINVAL;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001220
Keith Packarde9d21d72008-10-16 11:31:38 -07001221 spin_lock_irqsave(&dev_priv->user_irq_lock, irqflags);
Eric Anholtbad720f2009-10-22 16:11:14 -07001222 if (HAS_PCH_SPLIT(dev))
Li Pengc062df62010-01-23 00:12:58 +08001223 ironlake_enable_display_irq(dev_priv, (pipe == 0) ?
1224 DE_PIPEA_VBLANK: DE_PIPEB_VBLANK);
1225 else if (IS_I965G(dev))
Keith Packard7c463582008-11-04 02:03:27 -08001226 i915_enable_pipestat(dev_priv, pipe,
1227 PIPE_START_VBLANK_INTERRUPT_ENABLE);
Keith Packarde9d21d72008-10-16 11:31:38 -07001228 else
Keith Packard7c463582008-11-04 02:03:27 -08001229 i915_enable_pipestat(dev_priv, pipe,
1230 PIPE_VBLANK_INTERRUPT_ENABLE);
Keith Packarde9d21d72008-10-16 11:31:38 -07001231 spin_unlock_irqrestore(&dev_priv->user_irq_lock, irqflags);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001232 return 0;
1233}
1234
Keith Packard42f52ef2008-10-18 19:39:29 -07001235/* Called from drm generic code, passed 'crtc' which
1236 * we use as a pipe index
1237 */
1238void i915_disable_vblank(struct drm_device *dev, int pipe)
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001239{
1240 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Keith Packarde9d21d72008-10-16 11:31:38 -07001241 unsigned long irqflags;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001242
Keith Packarde9d21d72008-10-16 11:31:38 -07001243 spin_lock_irqsave(&dev_priv->user_irq_lock, irqflags);
Eric Anholtbad720f2009-10-22 16:11:14 -07001244 if (HAS_PCH_SPLIT(dev))
Li Pengc062df62010-01-23 00:12:58 +08001245 ironlake_disable_display_irq(dev_priv, (pipe == 0) ?
1246 DE_PIPEA_VBLANK: DE_PIPEB_VBLANK);
1247 else
1248 i915_disable_pipestat(dev_priv, pipe,
1249 PIPE_VBLANK_INTERRUPT_ENABLE |
1250 PIPE_START_VBLANK_INTERRUPT_ENABLE);
Keith Packarde9d21d72008-10-16 11:31:38 -07001251 spin_unlock_irqrestore(&dev_priv->user_irq_lock, irqflags);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001252}
1253
Jesse Barnes79e53942008-11-07 14:24:08 -08001254void i915_enable_interrupt (struct drm_device *dev)
1255{
1256 struct drm_i915_private *dev_priv = dev->dev_private;
Zhenyu Wange170b032009-06-05 15:38:40 +08001257
Eric Anholtbad720f2009-10-22 16:11:14 -07001258 if (!HAS_PCH_SPLIT(dev))
Chris Wilson3b617962010-08-24 09:02:58 +01001259 intel_opregion_enable_asle(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08001260 dev_priv->irq_enabled = 1;
1261}
1262
1263
Dave Airlie702880f2006-06-24 17:07:34 +10001264/* Set the vblank monitor pipe
1265 */
Eric Anholtc153f452007-09-03 12:06:45 +10001266int i915_vblank_pipe_set(struct drm_device *dev, void *data,
1267 struct drm_file *file_priv)
Dave Airlie702880f2006-06-24 17:07:34 +10001268{
Dave Airlie702880f2006-06-24 17:07:34 +10001269 drm_i915_private_t *dev_priv = dev->dev_private;
Dave Airlie702880f2006-06-24 17:07:34 +10001270
1271 if (!dev_priv) {
Márton Németh3e684ea2008-01-24 15:58:57 +10001272 DRM_ERROR("called with no initialization\n");
Eric Anholt20caafa2007-08-25 19:22:43 +10001273 return -EINVAL;
Dave Airlie702880f2006-06-24 17:07:34 +10001274 }
1275
=?utf-8?q?Michel_D=C3=A4nzer?=5b516942006-10-25 00:08:23 +10001276 return 0;
Dave Airlie702880f2006-06-24 17:07:34 +10001277}
1278
Eric Anholtc153f452007-09-03 12:06:45 +10001279int i915_vblank_pipe_get(struct drm_device *dev, void *data,
1280 struct drm_file *file_priv)
Dave Airlie702880f2006-06-24 17:07:34 +10001281{
Dave Airlie702880f2006-06-24 17:07:34 +10001282 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholtc153f452007-09-03 12:06:45 +10001283 drm_i915_vblank_pipe_t *pipe = data;
Dave Airlie702880f2006-06-24 17:07:34 +10001284
1285 if (!dev_priv) {
Márton Németh3e684ea2008-01-24 15:58:57 +10001286 DRM_ERROR("called with no initialization\n");
Eric Anholt20caafa2007-08-25 19:22:43 +10001287 return -EINVAL;
Dave Airlie702880f2006-06-24 17:07:34 +10001288 }
1289
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001290 pipe->pipe = DRM_I915_VBLANK_PIPE_A | DRM_I915_VBLANK_PIPE_B;
Eric Anholtc153f452007-09-03 12:06:45 +10001291
Dave Airlie702880f2006-06-24 17:07:34 +10001292 return 0;
1293}
1294
=?utf-8?q?Michel_D=C3=A4nzer?=a6b54f32006-10-24 23:37:43 +10001295/**
1296 * Schedule buffer swap at given vertical blank.
1297 */
Eric Anholtc153f452007-09-03 12:06:45 +10001298int i915_vblank_swap(struct drm_device *dev, void *data,
1299 struct drm_file *file_priv)
=?utf-8?q?Michel_D=C3=A4nzer?=a6b54f32006-10-24 23:37:43 +10001300{
Eric Anholtbd95e0a2008-11-04 12:01:24 -08001301 /* The delayed swap mechanism was fundamentally racy, and has been
1302 * removed. The model was that the client requested a delayed flip/swap
1303 * from the kernel, then waited for vblank before continuing to perform
1304 * rendering. The problem was that the kernel might wake the client
1305 * up before it dispatched the vblank swap (since the lock has to be
1306 * held while touching the ringbuffer), in which case the client would
1307 * clear and start the next frame before the swap occurred, and
1308 * flicker would occur in addition to likely missing the vblank.
1309 *
1310 * In the absence of this ioctl, userland falls back to a correct path
1311 * of waiting for a vblank, then dispatching the swap on its own.
1312 * Context switching to userland and back is plenty fast enough for
1313 * meeting the requirements of vblank swapping.
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001314 */
Eric Anholtbd95e0a2008-11-04 12:01:24 -08001315 return -EINVAL;
=?utf-8?q?Michel_D=C3=A4nzer?=a6b54f32006-10-24 23:37:43 +10001316}
1317
Zou Nan hai852835f2010-05-21 09:08:56 +08001318struct drm_i915_gem_request *
1319i915_get_tail_request(struct drm_device *dev)
1320{
Ben Gamarif65d9422009-09-14 17:48:44 -04001321 drm_i915_private_t *dev_priv = dev->dev_private;
Zou Nan hai852835f2010-05-21 09:08:56 +08001322 return list_entry(dev_priv->render_ring.request_list.prev,
1323 struct drm_i915_gem_request, list);
Ben Gamarif65d9422009-09-14 17:48:44 -04001324}
1325
1326/**
1327 * This is called when the chip hasn't reported back with completed
1328 * batchbuffers in a long time. The first time this is called we simply record
1329 * ACTHD. If ACTHD hasn't changed by the time the hangcheck timer elapses
1330 * again, we assume the chip is wedged and try to fix it.
1331 */
1332void i915_hangcheck_elapsed(unsigned long data)
1333{
1334 struct drm_device *dev = (struct drm_device *)data;
1335 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsoncbb465e2010-06-06 12:16:24 +01001336 uint32_t acthd, instdone, instdone1;
Eric Anholtb9201c12010-01-08 14:25:16 -08001337
1338 /* No reset support on this chip yet. */
1339 if (IS_GEN6(dev))
1340 return;
1341
Chris Wilsoncbb465e2010-06-06 12:16:24 +01001342 if (!IS_I965G(dev)) {
Ben Gamarif65d9422009-09-14 17:48:44 -04001343 acthd = I915_READ(ACTHD);
Chris Wilsoncbb465e2010-06-06 12:16:24 +01001344 instdone = I915_READ(INSTDONE);
1345 instdone1 = 0;
1346 } else {
Ben Gamarif65d9422009-09-14 17:48:44 -04001347 acthd = I915_READ(ACTHD_I965);
Chris Wilsoncbb465e2010-06-06 12:16:24 +01001348 instdone = I915_READ(INSTDONE_I965);
1349 instdone1 = I915_READ(INSTDONE1);
1350 }
Ben Gamarif65d9422009-09-14 17:48:44 -04001351
1352 /* If all work is done then ACTHD clearly hasn't advanced. */
Zou Nan hai852835f2010-05-21 09:08:56 +08001353 if (list_empty(&dev_priv->render_ring.request_list) ||
1354 i915_seqno_passed(i915_get_gem_seqno(dev,
1355 &dev_priv->render_ring),
1356 i915_get_tail_request(dev)->seqno)) {
Ben Gamarif65d9422009-09-14 17:48:44 -04001357 dev_priv->hangcheck_count = 0;
Chris Wilsone78d73b2010-08-07 14:18:47 +01001358
1359 /* Issue a wake-up to catch stuck h/w. */
1360 if (dev_priv->render_ring.waiting_gem_seqno |
1361 dev_priv->bsd_ring.waiting_gem_seqno) {
1362 DRM_ERROR("Hangcheck timer elapsed... GPU idle, missed IRQ.\n");
1363 if (dev_priv->render_ring.waiting_gem_seqno)
1364 DRM_WAKEUP(&dev_priv->render_ring.irq_queue);
1365 if (dev_priv->bsd_ring.waiting_gem_seqno)
1366 DRM_WAKEUP(&dev_priv->bsd_ring.irq_queue);
1367 }
Ben Gamarif65d9422009-09-14 17:48:44 -04001368 return;
1369 }
1370
Chris Wilsoncbb465e2010-06-06 12:16:24 +01001371 if (dev_priv->last_acthd == acthd &&
1372 dev_priv->last_instdone == instdone &&
1373 dev_priv->last_instdone1 == instdone1) {
1374 if (dev_priv->hangcheck_count++ > 1) {
1375 DRM_ERROR("Hangcheck timer elapsed... GPU hung\n");
1376 i915_handle_error(dev, true);
1377 return;
1378 }
1379 } else {
1380 dev_priv->hangcheck_count = 0;
1381
1382 dev_priv->last_acthd = acthd;
1383 dev_priv->last_instdone = instdone;
1384 dev_priv->last_instdone1 = instdone1;
1385 }
Ben Gamarif65d9422009-09-14 17:48:44 -04001386
1387 /* Reset timer case chip hangs without another request being added */
1388 mod_timer(&dev_priv->hangcheck_timer, jiffies + DRM_I915_HANGCHECK_PERIOD);
Ben Gamarif65d9422009-09-14 17:48:44 -04001389}
1390
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391/* drm_dma.h hooks
1392*/
Adam Jacksonf2b115e2009-12-03 17:14:42 -05001393static void ironlake_irq_preinstall(struct drm_device *dev)
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001394{
1395 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
1396
1397 I915_WRITE(HWSTAM, 0xeffe);
1398
1399 /* XXX hotplug from PCH */
1400
1401 I915_WRITE(DEIMR, 0xffffffff);
1402 I915_WRITE(DEIER, 0x0);
1403 (void) I915_READ(DEIER);
1404
1405 /* and GT */
1406 I915_WRITE(GTIMR, 0xffffffff);
1407 I915_WRITE(GTIER, 0x0);
1408 (void) I915_READ(GTIER);
Zhenyu Wangc6501562009-11-03 18:57:21 +00001409
1410 /* south display irq */
1411 I915_WRITE(SDEIMR, 0xffffffff);
1412 I915_WRITE(SDEIER, 0x0);
1413 (void) I915_READ(SDEIER);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001414}
1415
Adam Jacksonf2b115e2009-12-03 17:14:42 -05001416static int ironlake_irq_postinstall(struct drm_device *dev)
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001417{
1418 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
1419 /* enable kind of interrupts always enabled */
Jesse Barnes013d5aa2010-01-29 11:18:31 -08001420 u32 display_mask = DE_MASTER_IRQ_CONTROL | DE_GSE | DE_PCH_EVENT |
1421 DE_PLANEA_FLIP_DONE | DE_PLANEB_FLIP_DONE;
Zou Nan haid1b851f2010-05-21 09:08:57 +08001422 u32 render_mask = GT_PIPE_NOTIFY | GT_BSD_USER_INTERRUPT;
Zhenyu Wangc6501562009-11-03 18:57:21 +00001423 u32 hotplug_mask = SDE_CRT_HOTPLUG | SDE_PORTB_HOTPLUG |
1424 SDE_PORTC_HOTPLUG | SDE_PORTD_HOTPLUG;
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001425
1426 dev_priv->irq_mask_reg = ~display_mask;
Li Peng643ced92010-01-28 01:05:09 +08001427 dev_priv->de_irq_enable_reg = display_mask | DE_PIPEA_VBLANK | DE_PIPEB_VBLANK;
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001428
1429 /* should always can generate irq */
1430 I915_WRITE(DEIIR, I915_READ(DEIIR));
1431 I915_WRITE(DEIMR, dev_priv->irq_mask_reg);
1432 I915_WRITE(DEIER, dev_priv->de_irq_enable_reg);
1433 (void) I915_READ(DEIER);
1434
Zhenyu Wang3fdef022010-08-19 09:46:15 +08001435 /* Gen6 only needs render pipe_control now */
1436 if (IS_GEN6(dev))
1437 render_mask = GT_PIPE_NOTIFY;
1438
Zou Nan hai852835f2010-05-21 09:08:56 +08001439 dev_priv->gt_irq_mask_reg = ~render_mask;
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001440 dev_priv->gt_irq_enable_reg = render_mask;
1441
1442 I915_WRITE(GTIIR, I915_READ(GTIIR));
1443 I915_WRITE(GTIMR, dev_priv->gt_irq_mask_reg);
Zhenyu Wang3fdef022010-08-19 09:46:15 +08001444 if (IS_GEN6(dev))
1445 I915_WRITE(GEN6_RENDER_IMR, ~GEN6_RENDER_PIPE_CONTROL_NOTIFY_INTERRUPT);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001446 I915_WRITE(GTIER, dev_priv->gt_irq_enable_reg);
1447 (void) I915_READ(GTIER);
1448
Zhenyu Wangc6501562009-11-03 18:57:21 +00001449 dev_priv->pch_irq_mask_reg = ~hotplug_mask;
1450 dev_priv->pch_irq_enable_reg = hotplug_mask;
1451
1452 I915_WRITE(SDEIIR, I915_READ(SDEIIR));
1453 I915_WRITE(SDEIMR, dev_priv->pch_irq_mask_reg);
1454 I915_WRITE(SDEIER, dev_priv->pch_irq_enable_reg);
1455 (void) I915_READ(SDEIER);
1456
Jesse Barnesf97108d2010-01-29 11:27:07 -08001457 if (IS_IRONLAKE_M(dev)) {
1458 /* Clear & enable PCU event interrupts */
1459 I915_WRITE(DEIIR, DE_PCU_EVENT);
1460 I915_WRITE(DEIER, I915_READ(DEIER) | DE_PCU_EVENT);
1461 ironlake_enable_display_irq(dev_priv, DE_PCU_EVENT);
1462 }
1463
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001464 return 0;
1465}
1466
Dave Airlie84b1fd12007-07-11 15:53:27 +10001467void i915_driver_irq_preinstall(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468{
1469 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
1470
Jesse Barnes79e53942008-11-07 14:24:08 -08001471 atomic_set(&dev_priv->irq_received, 0);
1472
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001473 INIT_WORK(&dev_priv->hotplug_work, i915_hotplug_work_func);
Jesse Barnes8a905232009-07-11 16:48:03 -04001474 INIT_WORK(&dev_priv->error_work, i915_error_work_func);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001475
Eric Anholtbad720f2009-10-22 16:11:14 -07001476 if (HAS_PCH_SPLIT(dev)) {
Adam Jacksonf2b115e2009-12-03 17:14:42 -05001477 ironlake_irq_preinstall(dev);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001478 return;
1479 }
1480
Jesse Barnes5ca58282009-03-31 14:11:15 -07001481 if (I915_HAS_HOTPLUG(dev)) {
1482 I915_WRITE(PORT_HOTPLUG_EN, 0);
1483 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
1484 }
1485
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001486 I915_WRITE(HWSTAM, 0xeffe);
Keith Packard7c463582008-11-04 02:03:27 -08001487 I915_WRITE(PIPEASTAT, 0);
1488 I915_WRITE(PIPEBSTAT, 0);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001489 I915_WRITE(IMR, 0xffffffff);
Eric Anholted4cb412008-07-29 12:10:39 -07001490 I915_WRITE(IER, 0x0);
Keith Packard7c463582008-11-04 02:03:27 -08001491 (void) I915_READ(IER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492}
1493
Jesse Barnesb01f2c32009-12-11 11:07:17 -08001494/*
1495 * Must be called after intel_modeset_init or hotplug interrupts won't be
1496 * enabled correctly.
1497 */
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001498int i915_driver_irq_postinstall(struct drm_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499{
1500 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Jesse Barnes5ca58282009-03-31 14:11:15 -07001501 u32 enable_mask = I915_INTERRUPT_ENABLE_FIX | I915_INTERRUPT_ENABLE_VAR;
Jesse Barnes63eeaf32009-06-18 16:56:52 -07001502 u32 error_mask;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001503
Zou Nan hai852835f2010-05-21 09:08:56 +08001504 DRM_INIT_WAITQUEUE(&dev_priv->render_ring.irq_queue);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001505
Zou Nan haid1b851f2010-05-21 09:08:57 +08001506 if (HAS_BSD(dev))
1507 DRM_INIT_WAITQUEUE(&dev_priv->bsd_ring.irq_queue);
1508
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001509 dev_priv->vblank_pipe = DRM_I915_VBLANK_PIPE_A | DRM_I915_VBLANK_PIPE_B;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001510
Eric Anholtbad720f2009-10-22 16:11:14 -07001511 if (HAS_PCH_SPLIT(dev))
Adam Jacksonf2b115e2009-12-03 17:14:42 -05001512 return ironlake_irq_postinstall(dev);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001513
Keith Packard7c463582008-11-04 02:03:27 -08001514 /* Unmask the interrupts that we always want on. */
1515 dev_priv->irq_mask_reg = ~I915_INTERRUPT_ENABLE_FIX;
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +01001516
Keith Packard7c463582008-11-04 02:03:27 -08001517 dev_priv->pipestat[0] = 0;
1518 dev_priv->pipestat[1] = 0;
1519
Jesse Barnes5ca58282009-03-31 14:11:15 -07001520 if (I915_HAS_HOTPLUG(dev)) {
Adam Jacksonc496fa12010-05-27 17:26:45 -04001521 /* Enable in IER... */
1522 enable_mask |= I915_DISPLAY_PORT_INTERRUPT;
1523 /* and unmask in IMR */
1524 dev_priv->irq_mask_reg &= ~I915_DISPLAY_PORT_INTERRUPT;
1525 }
1526
1527 /*
1528 * Enable some error detection, note the instruction error mask
1529 * bit is reserved, so we leave it masked.
1530 */
1531 if (IS_G4X(dev)) {
1532 error_mask = ~(GM45_ERROR_PAGE_TABLE |
1533 GM45_ERROR_MEM_PRIV |
1534 GM45_ERROR_CP_PRIV |
1535 I915_ERROR_MEMORY_REFRESH);
1536 } else {
1537 error_mask = ~(I915_ERROR_PAGE_TABLE |
1538 I915_ERROR_MEMORY_REFRESH);
1539 }
1540 I915_WRITE(EMR, error_mask);
1541
1542 I915_WRITE(IMR, dev_priv->irq_mask_reg);
1543 I915_WRITE(IER, enable_mask);
1544 (void) I915_READ(IER);
1545
1546 if (I915_HAS_HOTPLUG(dev)) {
Jesse Barnes5ca58282009-03-31 14:11:15 -07001547 u32 hotplug_en = I915_READ(PORT_HOTPLUG_EN);
1548
Jesse Barnesb01f2c32009-12-11 11:07:17 -08001549 /* Note HDMI and DP share bits */
1550 if (dev_priv->hotplug_supported_mask & HDMIB_HOTPLUG_INT_STATUS)
1551 hotplug_en |= HDMIB_HOTPLUG_INT_EN;
1552 if (dev_priv->hotplug_supported_mask & HDMIC_HOTPLUG_INT_STATUS)
1553 hotplug_en |= HDMIC_HOTPLUG_INT_EN;
1554 if (dev_priv->hotplug_supported_mask & HDMID_HOTPLUG_INT_STATUS)
1555 hotplug_en |= HDMID_HOTPLUG_INT_EN;
1556 if (dev_priv->hotplug_supported_mask & SDVOC_HOTPLUG_INT_STATUS)
1557 hotplug_en |= SDVOC_HOTPLUG_INT_EN;
1558 if (dev_priv->hotplug_supported_mask & SDVOB_HOTPLUG_INT_STATUS)
1559 hotplug_en |= SDVOB_HOTPLUG_INT_EN;
Andy Lutomirski2d1c9752010-06-12 05:21:18 -04001560 if (dev_priv->hotplug_supported_mask & CRT_HOTPLUG_INT_STATUS) {
Jesse Barnesb01f2c32009-12-11 11:07:17 -08001561 hotplug_en |= CRT_HOTPLUG_INT_EN;
Andy Lutomirski2d1c9752010-06-12 05:21:18 -04001562
1563 /* Programming the CRT detection parameters tends
1564 to generate a spurious hotplug event about three
1565 seconds later. So just do it once.
1566 */
1567 if (IS_G4X(dev))
1568 hotplug_en |= CRT_HOTPLUG_ACTIVATION_PERIOD_64;
1569 hotplug_en |= CRT_HOTPLUG_VOLTAGE_COMPARE_50;
1570 }
1571
Jesse Barnesb01f2c32009-12-11 11:07:17 -08001572 /* Ignore TV since it's buggy */
1573
Jesse Barnes5ca58282009-03-31 14:11:15 -07001574 I915_WRITE(PORT_HOTPLUG_EN, hotplug_en);
Jesse Barnes5ca58282009-03-31 14:11:15 -07001575 }
1576
Chris Wilson3b617962010-08-24 09:02:58 +01001577 intel_opregion_enable_asle(dev);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001578
1579 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580}
1581
Adam Jacksonf2b115e2009-12-03 17:14:42 -05001582static void ironlake_irq_uninstall(struct drm_device *dev)
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001583{
1584 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
1585 I915_WRITE(HWSTAM, 0xffffffff);
1586
1587 I915_WRITE(DEIMR, 0xffffffff);
1588 I915_WRITE(DEIER, 0x0);
1589 I915_WRITE(DEIIR, I915_READ(DEIIR));
1590
1591 I915_WRITE(GTIMR, 0xffffffff);
1592 I915_WRITE(GTIER, 0x0);
1593 I915_WRITE(GTIIR, I915_READ(GTIIR));
1594}
1595
Dave Airlie84b1fd12007-07-11 15:53:27 +10001596void i915_driver_irq_uninstall(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597{
1598 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Dave Airlie91e37382006-02-18 15:17:04 +11001599
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600 if (!dev_priv)
1601 return;
1602
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001603 dev_priv->vblank_pipe = 0;
1604
Eric Anholtbad720f2009-10-22 16:11:14 -07001605 if (HAS_PCH_SPLIT(dev)) {
Adam Jacksonf2b115e2009-12-03 17:14:42 -05001606 ironlake_irq_uninstall(dev);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001607 return;
1608 }
1609
Jesse Barnes5ca58282009-03-31 14:11:15 -07001610 if (I915_HAS_HOTPLUG(dev)) {
1611 I915_WRITE(PORT_HOTPLUG_EN, 0);
1612 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
1613 }
1614
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001615 I915_WRITE(HWSTAM, 0xffffffff);
Keith Packard7c463582008-11-04 02:03:27 -08001616 I915_WRITE(PIPEASTAT, 0);
1617 I915_WRITE(PIPEBSTAT, 0);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001618 I915_WRITE(IMR, 0xffffffff);
Eric Anholted4cb412008-07-29 12:10:39 -07001619 I915_WRITE(IER, 0x0);
Dave Airlie91e37382006-02-18 15:17:04 +11001620
Keith Packard7c463582008-11-04 02:03:27 -08001621 I915_WRITE(PIPEASTAT, I915_READ(PIPEASTAT) & 0x8000ffff);
1622 I915_WRITE(PIPEBSTAT, I915_READ(PIPEBSTAT) & 0x8000ffff);
1623 I915_WRITE(IIR, I915_READ(IIR));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624}