blob: bc8438d6d84328a9834a8c2da5e763007ee3c764 [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;
Chris Wilson5eddb702010-09-11 13:48:45 +0100194 return I915_READ(PIPECONF(pipe)) & PIPECONF_ENABLE;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700195}
196
Keith Packard42f52ef2008-10-18 19:39:29 -0700197/* Called from drm generic code, passed a 'crtc', which
198 * we use as a pipe index
199 */
200u32 i915_get_vblank_counter(struct drm_device *dev, int pipe)
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700201{
202 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
203 unsigned long high_frame;
204 unsigned long low_frame;
Chris Wilson5eddb702010-09-11 13:48:45 +0100205 u32 high1, high2, low;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700206
207 if (!i915_pipe_enabled(dev, pipe)) {
Zhao Yakui44d98a62009-10-09 11:39:40 +0800208 DRM_DEBUG_DRIVER("trying to get vblank count for disabled "
209 "pipe %d\n", pipe);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700210 return 0;
211 }
212
Chris Wilson5eddb702010-09-11 13:48:45 +0100213 high_frame = pipe ? PIPEBFRAMEHIGH : PIPEAFRAMEHIGH;
214 low_frame = pipe ? PIPEBFRAMEPIXEL : PIPEAFRAMEPIXEL;
215
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700216 /*
217 * High & low register fields aren't synchronized, so make sure
218 * we get a low value that's stable across two reads of the high
219 * register.
220 */
221 do {
Chris Wilson5eddb702010-09-11 13:48:45 +0100222 high1 = I915_READ(high_frame) & PIPE_FRAME_HIGH_MASK;
223 low = I915_READ(low_frame) & PIPE_FRAME_LOW_MASK;
224 high2 = I915_READ(high_frame) & PIPE_FRAME_HIGH_MASK;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700225 } while (high1 != high2);
226
Chris Wilson5eddb702010-09-11 13:48:45 +0100227 high1 >>= PIPE_FRAME_HIGH_SHIFT;
228 low >>= PIPE_FRAME_LOW_SHIFT;
229 return (high1 << 8) | low;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700230}
231
Jesse Barnes9880b7a2009-02-06 10:22:41 -0800232u32 gm45_get_vblank_counter(struct drm_device *dev, int pipe)
233{
234 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
235 int reg = pipe ? PIPEB_FRMCOUNT_GM45 : PIPEA_FRMCOUNT_GM45;
236
237 if (!i915_pipe_enabled(dev, pipe)) {
Zhao Yakui44d98a62009-10-09 11:39:40 +0800238 DRM_DEBUG_DRIVER("trying to get vblank count for disabled "
239 "pipe %d\n", pipe);
Jesse Barnes9880b7a2009-02-06 10:22:41 -0800240 return 0;
241 }
242
243 return I915_READ(reg);
244}
245
Jesse Barnes5ca58282009-03-31 14:11:15 -0700246/*
247 * Handle hotplug events outside the interrupt handler proper.
248 */
249static void i915_hotplug_work_func(struct work_struct *work)
250{
251 drm_i915_private_t *dev_priv = container_of(work, drm_i915_private_t,
252 hotplug_work);
253 struct drm_device *dev = dev_priv->dev;
Keith Packardc31c4ba2009-05-06 11:48:58 -0700254 struct drm_mode_config *mode_config = &dev->mode_config;
Chris Wilson4ef69c72010-09-09 15:14:28 +0100255 struct intel_encoder *encoder;
Jesse Barnes5ca58282009-03-31 14:11:15 -0700256
Chris Wilson4ef69c72010-09-09 15:14:28 +0100257 list_for_each_entry(encoder, &mode_config->encoder_list, base.head)
258 if (encoder->hot_plug)
259 encoder->hot_plug(encoder);
260
Jesse Barnes5ca58282009-03-31 14:11:15 -0700261 /* Just fire off a uevent and let userspace tell us what to do */
Dave Airlieeb1f8e42010-05-07 06:42:51 +0000262 drm_helper_hpd_irq_event(dev);
Jesse Barnes5ca58282009-03-31 14:11:15 -0700263}
264
Jesse Barnesf97108d2010-01-29 11:27:07 -0800265static void i915_handle_rps_change(struct drm_device *dev)
266{
267 drm_i915_private_t *dev_priv = dev->dev_private;
Matthew Garrettb5b72e82010-02-02 18:30:47 +0000268 u32 busy_up, busy_down, max_avg, min_avg;
Jesse Barnesf97108d2010-01-29 11:27:07 -0800269 u8 new_delay = dev_priv->cur_delay;
270
Jesse Barnes7648fa92010-05-20 14:28:11 -0700271 I915_WRITE16(MEMINTRSTS, MEMINT_EVAL_CHG);
Matthew Garrettb5b72e82010-02-02 18:30:47 +0000272 busy_up = I915_READ(RCPREVBSYTUPAVG);
273 busy_down = I915_READ(RCPREVBSYTDNAVG);
Jesse Barnesf97108d2010-01-29 11:27:07 -0800274 max_avg = I915_READ(RCBMAXAVG);
275 min_avg = I915_READ(RCBMINAVG);
276
277 /* Handle RCS change request from hw */
Matthew Garrettb5b72e82010-02-02 18:30:47 +0000278 if (busy_up > max_avg) {
Jesse Barnesf97108d2010-01-29 11:27:07 -0800279 if (dev_priv->cur_delay != dev_priv->max_delay)
280 new_delay = dev_priv->cur_delay - 1;
281 if (new_delay < dev_priv->max_delay)
282 new_delay = dev_priv->max_delay;
Matthew Garrettb5b72e82010-02-02 18:30:47 +0000283 } else if (busy_down < min_avg) {
Jesse Barnesf97108d2010-01-29 11:27:07 -0800284 if (dev_priv->cur_delay != dev_priv->min_delay)
285 new_delay = dev_priv->cur_delay + 1;
286 if (new_delay > dev_priv->min_delay)
287 new_delay = dev_priv->min_delay;
288 }
289
Jesse Barnes7648fa92010-05-20 14:28:11 -0700290 if (ironlake_set_drps(dev, new_delay))
291 dev_priv->cur_delay = new_delay;
Jesse Barnesf97108d2010-01-29 11:27:07 -0800292
293 return;
294}
295
Chris Wilson995b6762010-08-20 13:23:26 +0100296static irqreturn_t ironlake_irq_handler(struct drm_device *dev)
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800297{
298 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
299 int ret = IRQ_NONE;
Dave Airlie3ff99162009-12-08 14:03:47 +1000300 u32 de_iir, gt_iir, de_ier, pch_iir;
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800301 struct drm_i915_master_private *master_priv;
Zou Nan hai852835f2010-05-21 09:08:56 +0800302 struct intel_ring_buffer *render_ring = &dev_priv->render_ring;
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800303
Zou, Nanhai2d109a82009-11-06 02:13:01 +0000304 /* disable master interrupt before clearing iir */
305 de_ier = I915_READ(DEIER);
306 I915_WRITE(DEIER, de_ier & ~DE_MASTER_IRQ_CONTROL);
307 (void)I915_READ(DEIER);
308
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800309 de_iir = I915_READ(DEIIR);
310 gt_iir = I915_READ(GTIIR);
Zhenyu Wangc6501562009-11-03 18:57:21 +0000311 pch_iir = I915_READ(SDEIIR);
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800312
Zou Nan haic7c85102010-01-15 10:29:06 +0800313 if (de_iir == 0 && gt_iir == 0 && pch_iir == 0)
314 goto done;
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800315
Zou Nan haic7c85102010-01-15 10:29:06 +0800316 ret = IRQ_HANDLED;
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800317
Zou Nan haic7c85102010-01-15 10:29:06 +0800318 if (dev->primary->master) {
319 master_priv = dev->primary->master->driver_priv;
320 if (master_priv->sarea_priv)
321 master_priv->sarea_priv->last_dispatch =
322 READ_BREADCRUMB(dev_priv);
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800323 }
324
Jesse Barnese552eb72010-04-21 11:39:23 -0700325 if (gt_iir & GT_PIPE_NOTIFY) {
Zou Nan hai852835f2010-05-21 09:08:56 +0800326 u32 seqno = render_ring->get_gem_seqno(dev, render_ring);
327 render_ring->irq_gem_seqno = seqno;
Zou Nan haic7c85102010-01-15 10:29:06 +0800328 trace_i915_gem_request_complete(dev, seqno);
Zou Nan hai852835f2010-05-21 09:08:56 +0800329 DRM_WAKEUP(&dev_priv->render_ring.irq_queue);
Zou Nan haic7c85102010-01-15 10:29:06 +0800330 dev_priv->hangcheck_count = 0;
331 mod_timer(&dev_priv->hangcheck_timer, jiffies + DRM_I915_HANGCHECK_PERIOD);
332 }
Zou Nan haid1b851f2010-05-21 09:08:57 +0800333 if (gt_iir & GT_BSD_USER_INTERRUPT)
334 DRM_WAKEUP(&dev_priv->bsd_ring.irq_queue);
335
Zou Nan haic7c85102010-01-15 10:29:06 +0800336
337 if (de_iir & DE_GSE)
Chris Wilson3b617962010-08-24 09:02:58 +0100338 intel_opregion_gse_intr(dev);
Zou Nan haic7c85102010-01-15 10:29:06 +0800339
Zhenyu Wangf072d2e2010-02-09 09:46:19 +0800340 if (de_iir & DE_PLANEA_FLIP_DONE) {
Jesse Barnes013d5aa2010-01-29 11:18:31 -0800341 intel_prepare_page_flip(dev, 0);
Chris Wilson2bbda382010-09-02 17:59:39 +0100342 intel_finish_page_flip_plane(dev, 0);
Jesse Barnes013d5aa2010-01-29 11:18:31 -0800343 }
344
Zhenyu Wangf072d2e2010-02-09 09:46:19 +0800345 if (de_iir & DE_PLANEB_FLIP_DONE) {
346 intel_prepare_page_flip(dev, 1);
Chris Wilson2bbda382010-09-02 17:59:39 +0100347 intel_finish_page_flip_plane(dev, 1);
Jesse Barnes013d5aa2010-01-29 11:18:31 -0800348 }
Li Pengc062df62010-01-23 00:12:58 +0800349
Zhenyu Wangf072d2e2010-02-09 09:46:19 +0800350 if (de_iir & DE_PIPEA_VBLANK)
351 drm_handle_vblank(dev, 0);
352
353 if (de_iir & DE_PIPEB_VBLANK)
354 drm_handle_vblank(dev, 1);
355
Zou Nan haic7c85102010-01-15 10:29:06 +0800356 /* check event from PCH */
357 if ((de_iir & DE_PCH_EVENT) &&
358 (pch_iir & SDE_HOTPLUG_MASK)) {
359 queue_work(dev_priv->wq, &dev_priv->hotplug_work);
360 }
361
Jesse Barnesf97108d2010-01-29 11:27:07 -0800362 if (de_iir & DE_PCU_EVENT) {
Jesse Barnes7648fa92010-05-20 14:28:11 -0700363 I915_WRITE16(MEMINTRSTS, I915_READ(MEMINTRSTS));
Jesse Barnesf97108d2010-01-29 11:27:07 -0800364 i915_handle_rps_change(dev);
365 }
366
Zou Nan haic7c85102010-01-15 10:29:06 +0800367 /* should clear PCH hotplug event before clear CPU irq */
368 I915_WRITE(SDEIIR, pch_iir);
369 I915_WRITE(GTIIR, gt_iir);
370 I915_WRITE(DEIIR, de_iir);
371
372done:
Zou, Nanhai2d109a82009-11-06 02:13:01 +0000373 I915_WRITE(DEIER, de_ier);
374 (void)I915_READ(DEIER);
375
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800376 return ret;
377}
378
Jesse Barnes8a905232009-07-11 16:48:03 -0400379/**
380 * i915_error_work_func - do process context error handling work
381 * @work: work struct
382 *
383 * Fire an error uevent so userspace can see that a hang or error
384 * was detected.
385 */
386static void i915_error_work_func(struct work_struct *work)
387{
388 drm_i915_private_t *dev_priv = container_of(work, drm_i915_private_t,
389 error_work);
390 struct drm_device *dev = dev_priv->dev;
Ben Gamarif316a422009-09-14 17:48:46 -0400391 char *error_event[] = { "ERROR=1", NULL };
392 char *reset_event[] = { "RESET=1", NULL };
393 char *reset_done_event[] = { "ERROR=0", NULL };
Jesse Barnes8a905232009-07-11 16:48:03 -0400394
Zhao Yakui44d98a62009-10-09 11:39:40 +0800395 DRM_DEBUG_DRIVER("generating error event\n");
Ben Gamarif316a422009-09-14 17:48:46 -0400396 kobject_uevent_env(&dev->primary->kdev.kobj, KOBJ_CHANGE, error_event);
Jesse Barnes8a905232009-07-11 16:48:03 -0400397
Ben Gamariba1234d2009-09-14 17:48:47 -0400398 if (atomic_read(&dev_priv->mm.wedged)) {
Ben Gamarif316a422009-09-14 17:48:46 -0400399 if (IS_I965G(dev)) {
Zhao Yakui44d98a62009-10-09 11:39:40 +0800400 DRM_DEBUG_DRIVER("resetting chip\n");
Ben Gamarif316a422009-09-14 17:48:46 -0400401 kobject_uevent_env(&dev->primary->kdev.kobj, KOBJ_CHANGE, reset_event);
402 if (!i965_reset(dev, GDRST_RENDER)) {
Ben Gamariba1234d2009-09-14 17:48:47 -0400403 atomic_set(&dev_priv->mm.wedged, 0);
Ben Gamarif316a422009-09-14 17:48:46 -0400404 kobject_uevent_env(&dev->primary->kdev.kobj, KOBJ_CHANGE, reset_done_event);
405 }
406 } else {
Zhao Yakui44d98a62009-10-09 11:39:40 +0800407 DRM_DEBUG_DRIVER("reboot required\n");
Ben Gamarif316a422009-09-14 17:48:46 -0400408 }
409 }
Jesse Barnes8a905232009-07-11 16:48:03 -0400410}
411
Chris Wilson3bd3c932010-08-19 08:19:30 +0100412#ifdef CONFIG_DEBUG_FS
Chris Wilson9df30792010-02-18 10:24:56 +0000413static struct drm_i915_error_object *
414i915_error_object_create(struct drm_device *dev,
415 struct drm_gem_object *src)
416{
Chris Wilsone56660d2010-08-07 11:01:26 +0100417 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson9df30792010-02-18 10:24:56 +0000418 struct drm_i915_error_object *dst;
419 struct drm_i915_gem_object *src_priv;
420 int page, page_count;
Chris Wilsone56660d2010-08-07 11:01:26 +0100421 u32 reloc_offset;
Chris Wilson9df30792010-02-18 10:24:56 +0000422
423 if (src == NULL)
424 return NULL;
425
Daniel Vetter23010e42010-03-08 13:35:02 +0100426 src_priv = to_intel_bo(src);
Chris Wilson9df30792010-02-18 10:24:56 +0000427 if (src_priv->pages == NULL)
428 return NULL;
429
430 page_count = src->size / PAGE_SIZE;
431
432 dst = kmalloc(sizeof(*dst) + page_count * sizeof (u32 *), GFP_ATOMIC);
433 if (dst == NULL)
434 return NULL;
435
Chris Wilsone56660d2010-08-07 11:01:26 +0100436 reloc_offset = src_priv->gtt_offset;
Chris Wilson9df30792010-02-18 10:24:56 +0000437 for (page = 0; page < page_count; page++) {
Andrew Morton788885a2010-05-11 14:07:05 -0700438 unsigned long flags;
Chris Wilsone56660d2010-08-07 11:01:26 +0100439 void __iomem *s;
440 void *d;
Andrew Morton788885a2010-05-11 14:07:05 -0700441
Chris Wilsone56660d2010-08-07 11:01:26 +0100442 d = kmalloc(PAGE_SIZE, GFP_ATOMIC);
Chris Wilson9df30792010-02-18 10:24:56 +0000443 if (d == NULL)
444 goto unwind;
Chris Wilsone56660d2010-08-07 11:01:26 +0100445
Andrew Morton788885a2010-05-11 14:07:05 -0700446 local_irq_save(flags);
Chris Wilsone56660d2010-08-07 11:01:26 +0100447 s = io_mapping_map_atomic_wc(dev_priv->mm.gtt_mapping,
448 reloc_offset,
449 KM_IRQ0);
450 memcpy_fromio(d, s, PAGE_SIZE);
451 io_mapping_unmap_atomic(s, KM_IRQ0);
Andrew Morton788885a2010-05-11 14:07:05 -0700452 local_irq_restore(flags);
Chris Wilsone56660d2010-08-07 11:01:26 +0100453
Chris Wilson9df30792010-02-18 10:24:56 +0000454 dst->pages[page] = d;
Chris Wilsone56660d2010-08-07 11:01:26 +0100455
456 reloc_offset += PAGE_SIZE;
Chris Wilson9df30792010-02-18 10:24:56 +0000457 }
458 dst->page_count = page_count;
459 dst->gtt_offset = src_priv->gtt_offset;
460
461 return dst;
462
463unwind:
464 while (page--)
465 kfree(dst->pages[page]);
466 kfree(dst);
467 return NULL;
468}
469
470static void
471i915_error_object_free(struct drm_i915_error_object *obj)
472{
473 int page;
474
475 if (obj == NULL)
476 return;
477
478 for (page = 0; page < obj->page_count; page++)
479 kfree(obj->pages[page]);
480
481 kfree(obj);
482}
483
484static void
485i915_error_state_free(struct drm_device *dev,
486 struct drm_i915_error_state *error)
487{
488 i915_error_object_free(error->batchbuffer[0]);
489 i915_error_object_free(error->batchbuffer[1]);
490 i915_error_object_free(error->ringbuffer);
491 kfree(error->active_bo);
Chris Wilson6ef3d422010-08-04 20:26:07 +0100492 kfree(error->overlay);
Chris Wilson9df30792010-02-18 10:24:56 +0000493 kfree(error);
494}
495
496static u32
497i915_get_bbaddr(struct drm_device *dev, u32 *ring)
498{
499 u32 cmd;
500
501 if (IS_I830(dev) || IS_845G(dev))
502 cmd = MI_BATCH_BUFFER;
503 else if (IS_I965G(dev))
504 cmd = (MI_BATCH_BUFFER_START | (2 << 6) |
505 MI_BATCH_NON_SECURE_I965);
506 else
507 cmd = (MI_BATCH_BUFFER_START | (2 << 6));
508
509 return ring[0] == cmd ? ring[1] : 0;
510}
511
512static u32
513i915_ringbuffer_last_batch(struct drm_device *dev)
514{
515 struct drm_i915_private *dev_priv = dev->dev_private;
516 u32 head, bbaddr;
517 u32 *ring;
518
519 /* Locate the current position in the ringbuffer and walk back
520 * to find the most recently dispatched batch buffer.
521 */
522 bbaddr = 0;
523 head = I915_READ(PRB0_HEAD) & HEAD_ADDR;
Eric Anholtd3301d82010-05-21 13:55:54 -0700524 ring = (u32 *)(dev_priv->render_ring.virtual_start + head);
Chris Wilson9df30792010-02-18 10:24:56 +0000525
Eric Anholtd3301d82010-05-21 13:55:54 -0700526 while (--ring >= (u32 *)dev_priv->render_ring.virtual_start) {
Chris Wilson9df30792010-02-18 10:24:56 +0000527 bbaddr = i915_get_bbaddr(dev, ring);
528 if (bbaddr)
529 break;
530 }
531
532 if (bbaddr == 0) {
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800533 ring = (u32 *)(dev_priv->render_ring.virtual_start
534 + dev_priv->render_ring.size);
Eric Anholtd3301d82010-05-21 13:55:54 -0700535 while (--ring >= (u32 *)dev_priv->render_ring.virtual_start) {
Chris Wilson9df30792010-02-18 10:24:56 +0000536 bbaddr = i915_get_bbaddr(dev, ring);
537 if (bbaddr)
538 break;
539 }
540 }
541
542 return bbaddr;
543}
544
Jesse Barnes8a905232009-07-11 16:48:03 -0400545/**
546 * i915_capture_error_state - capture an error record for later analysis
547 * @dev: drm device
548 *
549 * Should be called when an error is detected (either a hang or an error
550 * interrupt) to capture error state from the time of the error. Fills
551 * out a structure which becomes available in debugfs for user level tools
552 * to pick up.
553 */
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700554static void i915_capture_error_state(struct drm_device *dev)
555{
556 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson9df30792010-02-18 10:24:56 +0000557 struct drm_i915_gem_object *obj_priv;
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700558 struct drm_i915_error_state *error;
Chris Wilson9df30792010-02-18 10:24:56 +0000559 struct drm_gem_object *batchbuffer[2];
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700560 unsigned long flags;
Chris Wilson9df30792010-02-18 10:24:56 +0000561 u32 bbaddr;
562 int count;
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700563
564 spin_lock_irqsave(&dev_priv->error_lock, flags);
Chris Wilson9df30792010-02-18 10:24:56 +0000565 error = dev_priv->first_error;
566 spin_unlock_irqrestore(&dev_priv->error_lock, flags);
567 if (error)
568 return;
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700569
570 error = kmalloc(sizeof(*error), GFP_ATOMIC);
571 if (!error) {
Chris Wilson9df30792010-02-18 10:24:56 +0000572 DRM_DEBUG_DRIVER("out of memory, not capturing error state\n");
573 return;
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700574 }
575
Zou Nan hai852835f2010-05-21 09:08:56 +0800576 error->seqno = i915_get_gem_seqno(dev, &dev_priv->render_ring);
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700577 error->eir = I915_READ(EIR);
578 error->pgtbl_er = I915_READ(PGTBL_ER);
579 error->pipeastat = I915_READ(PIPEASTAT);
580 error->pipebstat = I915_READ(PIPEBSTAT);
581 error->instpm = I915_READ(INSTPM);
582 if (!IS_I965G(dev)) {
583 error->ipeir = I915_READ(IPEIR);
584 error->ipehr = I915_READ(IPEHR);
585 error->instdone = I915_READ(INSTDONE);
586 error->acthd = I915_READ(ACTHD);
Chris Wilson9df30792010-02-18 10:24:56 +0000587 error->bbaddr = 0;
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700588 } else {
589 error->ipeir = I915_READ(IPEIR_I965);
590 error->ipehr = I915_READ(IPEHR_I965);
591 error->instdone = I915_READ(INSTDONE_I965);
592 error->instps = I915_READ(INSTPS);
593 error->instdone1 = I915_READ(INSTDONE1);
594 error->acthd = I915_READ(ACTHD_I965);
Chris Wilson9df30792010-02-18 10:24:56 +0000595 error->bbaddr = I915_READ64(BB_ADDR);
596 }
597
598 bbaddr = i915_ringbuffer_last_batch(dev);
599
600 /* Grab the current batchbuffer, most likely to have crashed. */
601 batchbuffer[0] = NULL;
602 batchbuffer[1] = NULL;
603 count = 0;
Zou Nan hai852835f2010-05-21 09:08:56 +0800604 list_for_each_entry(obj_priv,
605 &dev_priv->render_ring.active_list, list) {
606
Daniel Vettera8089e82010-04-09 19:05:09 +0000607 struct drm_gem_object *obj = &obj_priv->base;
Chris Wilson9df30792010-02-18 10:24:56 +0000608
609 if (batchbuffer[0] == NULL &&
610 bbaddr >= obj_priv->gtt_offset &&
611 bbaddr < obj_priv->gtt_offset + obj->size)
612 batchbuffer[0] = obj;
613
614 if (batchbuffer[1] == NULL &&
615 error->acthd >= obj_priv->gtt_offset &&
Chris Wilsone56660d2010-08-07 11:01:26 +0100616 error->acthd < obj_priv->gtt_offset + obj->size)
Chris Wilson9df30792010-02-18 10:24:56 +0000617 batchbuffer[1] = obj;
618
619 count++;
620 }
Chris Wilsone56660d2010-08-07 11:01:26 +0100621 /* Scan the other lists for completeness for those bizarre errors. */
622 if (batchbuffer[0] == NULL || batchbuffer[1] == NULL) {
623 list_for_each_entry(obj_priv, &dev_priv->mm.flushing_list, list) {
624 struct drm_gem_object *obj = &obj_priv->base;
625
626 if (batchbuffer[0] == NULL &&
627 bbaddr >= obj_priv->gtt_offset &&
628 bbaddr < obj_priv->gtt_offset + obj->size)
629 batchbuffer[0] = obj;
630
631 if (batchbuffer[1] == NULL &&
632 error->acthd >= obj_priv->gtt_offset &&
633 error->acthd < obj_priv->gtt_offset + obj->size)
634 batchbuffer[1] = obj;
635
636 if (batchbuffer[0] && batchbuffer[1])
637 break;
638 }
639 }
640 if (batchbuffer[0] == NULL || batchbuffer[1] == NULL) {
641 list_for_each_entry(obj_priv, &dev_priv->mm.inactive_list, list) {
642 struct drm_gem_object *obj = &obj_priv->base;
643
644 if (batchbuffer[0] == NULL &&
645 bbaddr >= obj_priv->gtt_offset &&
646 bbaddr < obj_priv->gtt_offset + obj->size)
647 batchbuffer[0] = obj;
648
649 if (batchbuffer[1] == NULL &&
650 error->acthd >= obj_priv->gtt_offset &&
651 error->acthd < obj_priv->gtt_offset + obj->size)
652 batchbuffer[1] = obj;
653
654 if (batchbuffer[0] && batchbuffer[1])
655 break;
656 }
657 }
Chris Wilson9df30792010-02-18 10:24:56 +0000658
659 /* We need to copy these to an anonymous buffer as the simplest
660 * method to avoid being overwritten by userpace.
661 */
662 error->batchbuffer[0] = i915_error_object_create(dev, batchbuffer[0]);
Chris Wilsone56660d2010-08-07 11:01:26 +0100663 if (batchbuffer[1] != batchbuffer[0])
664 error->batchbuffer[1] = i915_error_object_create(dev, batchbuffer[1]);
665 else
666 error->batchbuffer[1] = NULL;
Chris Wilson9df30792010-02-18 10:24:56 +0000667
668 /* Record the ringbuffer */
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800669 error->ringbuffer = i915_error_object_create(dev,
670 dev_priv->render_ring.gem_object);
Chris Wilson9df30792010-02-18 10:24:56 +0000671
672 /* Record buffers on the active list. */
673 error->active_bo = NULL;
674 error->active_bo_count = 0;
675
676 if (count)
677 error->active_bo = kmalloc(sizeof(*error->active_bo)*count,
678 GFP_ATOMIC);
679
680 if (error->active_bo) {
681 int i = 0;
Zou Nan hai852835f2010-05-21 09:08:56 +0800682 list_for_each_entry(obj_priv,
683 &dev_priv->render_ring.active_list, list) {
Daniel Vettera8089e82010-04-09 19:05:09 +0000684 struct drm_gem_object *obj = &obj_priv->base;
Chris Wilson9df30792010-02-18 10:24:56 +0000685
686 error->active_bo[i].size = obj->size;
687 error->active_bo[i].name = obj->name;
688 error->active_bo[i].seqno = obj_priv->last_rendering_seqno;
689 error->active_bo[i].gtt_offset = obj_priv->gtt_offset;
690 error->active_bo[i].read_domains = obj->read_domains;
691 error->active_bo[i].write_domain = obj->write_domain;
692 error->active_bo[i].fence_reg = obj_priv->fence_reg;
693 error->active_bo[i].pinned = 0;
694 if (obj_priv->pin_count > 0)
695 error->active_bo[i].pinned = 1;
696 if (obj_priv->user_pin_count > 0)
697 error->active_bo[i].pinned = -1;
698 error->active_bo[i].tiling = obj_priv->tiling_mode;
699 error->active_bo[i].dirty = obj_priv->dirty;
700 error->active_bo[i].purgeable = obj_priv->madv != I915_MADV_WILLNEED;
701
702 if (++i == count)
703 break;
704 }
705 error->active_bo_count = i;
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700706 }
707
Jesse Barnes8a905232009-07-11 16:48:03 -0400708 do_gettimeofday(&error->time);
709
Chris Wilson6ef3d422010-08-04 20:26:07 +0100710 error->overlay = intel_overlay_capture_error_state(dev);
711
Chris Wilson9df30792010-02-18 10:24:56 +0000712 spin_lock_irqsave(&dev_priv->error_lock, flags);
713 if (dev_priv->first_error == NULL) {
714 dev_priv->first_error = error;
715 error = NULL;
716 }
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700717 spin_unlock_irqrestore(&dev_priv->error_lock, flags);
Chris Wilson9df30792010-02-18 10:24:56 +0000718
719 if (error)
720 i915_error_state_free(dev, error);
721}
722
723void i915_destroy_error_state(struct drm_device *dev)
724{
725 struct drm_i915_private *dev_priv = dev->dev_private;
726 struct drm_i915_error_state *error;
727
728 spin_lock(&dev_priv->error_lock);
729 error = dev_priv->first_error;
730 dev_priv->first_error = NULL;
731 spin_unlock(&dev_priv->error_lock);
732
733 if (error)
734 i915_error_state_free(dev, error);
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700735}
Chris Wilson3bd3c932010-08-19 08:19:30 +0100736#else
737#define i915_capture_error_state(x)
738#endif
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700739
Chris Wilson35aed2e2010-05-27 13:18:12 +0100740static void i915_report_and_clear_eir(struct drm_device *dev)
Jesse Barnes8a905232009-07-11 16:48:03 -0400741{
742 struct drm_i915_private *dev_priv = dev->dev_private;
743 u32 eir = I915_READ(EIR);
Jesse Barnes8a905232009-07-11 16:48:03 -0400744
Chris Wilson35aed2e2010-05-27 13:18:12 +0100745 if (!eir)
746 return;
Jesse Barnes8a905232009-07-11 16:48:03 -0400747
748 printk(KERN_ERR "render error detected, EIR: 0x%08x\n",
749 eir);
750
751 if (IS_G4X(dev)) {
752 if (eir & (GM45_ERROR_MEM_PRIV | GM45_ERROR_CP_PRIV)) {
753 u32 ipeir = I915_READ(IPEIR_I965);
754
755 printk(KERN_ERR " IPEIR: 0x%08x\n",
756 I915_READ(IPEIR_I965));
757 printk(KERN_ERR " IPEHR: 0x%08x\n",
758 I915_READ(IPEHR_I965));
759 printk(KERN_ERR " INSTDONE: 0x%08x\n",
760 I915_READ(INSTDONE_I965));
761 printk(KERN_ERR " INSTPS: 0x%08x\n",
762 I915_READ(INSTPS));
763 printk(KERN_ERR " INSTDONE1: 0x%08x\n",
764 I915_READ(INSTDONE1));
765 printk(KERN_ERR " ACTHD: 0x%08x\n",
766 I915_READ(ACTHD_I965));
767 I915_WRITE(IPEIR_I965, ipeir);
768 (void)I915_READ(IPEIR_I965);
769 }
770 if (eir & GM45_ERROR_PAGE_TABLE) {
771 u32 pgtbl_err = I915_READ(PGTBL_ER);
772 printk(KERN_ERR "page table error\n");
773 printk(KERN_ERR " PGTBL_ER: 0x%08x\n",
774 pgtbl_err);
775 I915_WRITE(PGTBL_ER, pgtbl_err);
776 (void)I915_READ(PGTBL_ER);
777 }
778 }
779
780 if (IS_I9XX(dev)) {
781 if (eir & I915_ERROR_PAGE_TABLE) {
782 u32 pgtbl_err = I915_READ(PGTBL_ER);
783 printk(KERN_ERR "page table error\n");
784 printk(KERN_ERR " PGTBL_ER: 0x%08x\n",
785 pgtbl_err);
786 I915_WRITE(PGTBL_ER, pgtbl_err);
787 (void)I915_READ(PGTBL_ER);
788 }
789 }
790
791 if (eir & I915_ERROR_MEMORY_REFRESH) {
Chris Wilson35aed2e2010-05-27 13:18:12 +0100792 u32 pipea_stats = I915_READ(PIPEASTAT);
793 u32 pipeb_stats = I915_READ(PIPEBSTAT);
794
Jesse Barnes8a905232009-07-11 16:48:03 -0400795 printk(KERN_ERR "memory refresh error\n");
796 printk(KERN_ERR "PIPEASTAT: 0x%08x\n",
797 pipea_stats);
798 printk(KERN_ERR "PIPEBSTAT: 0x%08x\n",
799 pipeb_stats);
800 /* pipestat has already been acked */
801 }
802 if (eir & I915_ERROR_INSTRUCTION) {
803 printk(KERN_ERR "instruction error\n");
804 printk(KERN_ERR " INSTPM: 0x%08x\n",
805 I915_READ(INSTPM));
806 if (!IS_I965G(dev)) {
807 u32 ipeir = I915_READ(IPEIR);
808
809 printk(KERN_ERR " IPEIR: 0x%08x\n",
810 I915_READ(IPEIR));
811 printk(KERN_ERR " IPEHR: 0x%08x\n",
812 I915_READ(IPEHR));
813 printk(KERN_ERR " INSTDONE: 0x%08x\n",
814 I915_READ(INSTDONE));
815 printk(KERN_ERR " ACTHD: 0x%08x\n",
816 I915_READ(ACTHD));
817 I915_WRITE(IPEIR, ipeir);
818 (void)I915_READ(IPEIR);
819 } else {
820 u32 ipeir = I915_READ(IPEIR_I965);
821
822 printk(KERN_ERR " IPEIR: 0x%08x\n",
823 I915_READ(IPEIR_I965));
824 printk(KERN_ERR " IPEHR: 0x%08x\n",
825 I915_READ(IPEHR_I965));
826 printk(KERN_ERR " INSTDONE: 0x%08x\n",
827 I915_READ(INSTDONE_I965));
828 printk(KERN_ERR " INSTPS: 0x%08x\n",
829 I915_READ(INSTPS));
830 printk(KERN_ERR " INSTDONE1: 0x%08x\n",
831 I915_READ(INSTDONE1));
832 printk(KERN_ERR " ACTHD: 0x%08x\n",
833 I915_READ(ACTHD_I965));
834 I915_WRITE(IPEIR_I965, ipeir);
835 (void)I915_READ(IPEIR_I965);
836 }
837 }
838
839 I915_WRITE(EIR, eir);
840 (void)I915_READ(EIR);
841 eir = I915_READ(EIR);
842 if (eir) {
843 /*
844 * some errors might have become stuck,
845 * mask them.
846 */
847 DRM_ERROR("EIR stuck: 0x%08x, masking\n", eir);
848 I915_WRITE(EMR, I915_READ(EMR) | eir);
849 I915_WRITE(IIR, I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT);
850 }
Chris Wilson35aed2e2010-05-27 13:18:12 +0100851}
852
853/**
854 * i915_handle_error - handle an error interrupt
855 * @dev: drm device
856 *
857 * Do some basic checking of regsiter state at error interrupt time and
858 * dump it to the syslog. Also call i915_capture_error_state() to make
859 * sure we get a record and make it available in debugfs. Fire a uevent
860 * so userspace knows something bad happened (should trigger collection
861 * of a ring dump etc.).
862 */
863static void i915_handle_error(struct drm_device *dev, bool wedged)
864{
865 struct drm_i915_private *dev_priv = dev->dev_private;
866
867 i915_capture_error_state(dev);
868 i915_report_and_clear_eir(dev);
Jesse Barnes8a905232009-07-11 16:48:03 -0400869
Ben Gamariba1234d2009-09-14 17:48:47 -0400870 if (wedged) {
871 atomic_set(&dev_priv->mm.wedged, 1);
872
Ben Gamari11ed50e2009-09-14 17:48:45 -0400873 /*
874 * Wakeup waiting processes so they don't hang
875 */
Zou Nan hai852835f2010-05-21 09:08:56 +0800876 DRM_WAKEUP(&dev_priv->render_ring.irq_queue);
Ben Gamari11ed50e2009-09-14 17:48:45 -0400877 }
878
Eric Anholt9c9fe1f2009-08-03 16:09:16 -0700879 queue_work(dev_priv->wq, &dev_priv->error_work);
Jesse Barnes8a905232009-07-11 16:48:03 -0400880}
881
Simon Farnsworth4e5359c2010-09-01 17:47:52 +0100882static void i915_pageflip_stall_check(struct drm_device *dev, int pipe)
883{
884 drm_i915_private_t *dev_priv = dev->dev_private;
885 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
886 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
887 struct drm_i915_gem_object *obj_priv;
888 struct intel_unpin_work *work;
889 unsigned long flags;
890 bool stall_detected;
891
892 /* Ignore early vblank irqs */
893 if (intel_crtc == NULL)
894 return;
895
896 spin_lock_irqsave(&dev->event_lock, flags);
897 work = intel_crtc->unpin_work;
898
899 if (work == NULL || work->pending || !work->enable_stall_check) {
900 /* Either the pending flip IRQ arrived, or we're too early. Don't check */
901 spin_unlock_irqrestore(&dev->event_lock, flags);
902 return;
903 }
904
905 /* Potential stall - if we see that the flip has happened, assume a missed interrupt */
906 obj_priv = to_intel_bo(work->pending_flip_obj);
907 if(IS_I965G(dev)) {
908 int dspsurf = intel_crtc->plane == 0 ? DSPASURF : DSPBSURF;
909 stall_detected = I915_READ(dspsurf) == obj_priv->gtt_offset;
910 } else {
911 int dspaddr = intel_crtc->plane == 0 ? DSPAADDR : DSPBADDR;
912 stall_detected = I915_READ(dspaddr) == (obj_priv->gtt_offset +
913 crtc->y * crtc->fb->pitch +
914 crtc->x * crtc->fb->bits_per_pixel/8);
915 }
916
917 spin_unlock_irqrestore(&dev->event_lock, flags);
918
919 if (stall_detected) {
920 DRM_DEBUG_DRIVER("Pageflip stall detected\n");
921 intel_prepare_page_flip(dev, intel_crtc->plane);
922 }
923}
924
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925irqreturn_t i915_driver_irq_handler(DRM_IRQ_ARGS)
926{
Dave Airlie84b1fd12007-07-11 15:53:27 +1000927 struct drm_device *dev = (struct drm_device *) arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000929 struct drm_i915_master_private *master_priv;
Eric Anholtcdfbc412008-11-04 15:50:30 -0800930 u32 iir, new_iir;
931 u32 pipea_stats, pipeb_stats;
Keith Packard05eff842008-11-19 14:03:05 -0800932 u32 vblank_status;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700933 int vblank = 0;
Keith Packard7c463582008-11-04 02:03:27 -0800934 unsigned long irqflags;
Keith Packard05eff842008-11-19 14:03:05 -0800935 int irq_received;
936 int ret = IRQ_NONE;
Zou Nan hai852835f2010-05-21 09:08:56 +0800937 struct intel_ring_buffer *render_ring = &dev_priv->render_ring;
Dave Airlieaf6061a2008-05-07 12:15:39 +1000938
Eric Anholt630681d2008-10-06 15:14:12 -0700939 atomic_inc(&dev_priv->irq_received);
940
Eric Anholtbad720f2009-10-22 16:11:14 -0700941 if (HAS_PCH_SPLIT(dev))
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500942 return ironlake_irq_handler(dev);
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800943
Eric Anholted4cb412008-07-29 12:10:39 -0700944 iir = I915_READ(IIR);
Dave Airlieaf6061a2008-05-07 12:15:39 +1000945
Jesse Barnese25e6602010-06-30 13:15:19 -0700946 if (IS_I965G(dev))
Jesse Barnesd874bcf2010-06-30 13:16:00 -0700947 vblank_status = PIPE_START_VBLANK_INTERRUPT_STATUS;
Jesse Barnese25e6602010-06-30 13:15:19 -0700948 else
Jesse Barnesd874bcf2010-06-30 13:16:00 -0700949 vblank_status = PIPE_VBLANK_INTERRUPT_STATUS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950
Keith Packard05eff842008-11-19 14:03:05 -0800951 for (;;) {
952 irq_received = iir != 0;
953
954 /* Can't rely on pipestat interrupt bit in iir as it might
955 * have been cleared after the pipestat interrupt was received.
956 * It doesn't set the bit in iir again, but it still produces
957 * interrupts (for non-MSI).
958 */
959 spin_lock_irqsave(&dev_priv->user_irq_lock, irqflags);
960 pipea_stats = I915_READ(PIPEASTAT);
961 pipeb_stats = I915_READ(PIPEBSTAT);
Jesse Barnes79e53942008-11-07 14:24:08 -0800962
Jesse Barnes8a905232009-07-11 16:48:03 -0400963 if (iir & I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT)
Ben Gamariba1234d2009-09-14 17:48:47 -0400964 i915_handle_error(dev, false);
Jesse Barnes8a905232009-07-11 16:48:03 -0400965
Eric Anholtcdfbc412008-11-04 15:50:30 -0800966 /*
967 * Clear the PIPE(A|B)STAT regs before the IIR
968 */
Keith Packard05eff842008-11-19 14:03:05 -0800969 if (pipea_stats & 0x8000ffff) {
Shaohua Li7662c8b2009-06-26 11:23:55 +0800970 if (pipea_stats & PIPE_FIFO_UNDERRUN_STATUS)
Zhao Yakui44d98a62009-10-09 11:39:40 +0800971 DRM_DEBUG_DRIVER("pipe a underrun\n");
Eric Anholtcdfbc412008-11-04 15:50:30 -0800972 I915_WRITE(PIPEASTAT, pipea_stats);
Keith Packard05eff842008-11-19 14:03:05 -0800973 irq_received = 1;
Eric Anholtcdfbc412008-11-04 15:50:30 -0800974 }
Keith Packard7c463582008-11-04 02:03:27 -0800975
Keith Packard05eff842008-11-19 14:03:05 -0800976 if (pipeb_stats & 0x8000ffff) {
Shaohua Li7662c8b2009-06-26 11:23:55 +0800977 if (pipeb_stats & PIPE_FIFO_UNDERRUN_STATUS)
Zhao Yakui44d98a62009-10-09 11:39:40 +0800978 DRM_DEBUG_DRIVER("pipe b underrun\n");
Eric Anholtcdfbc412008-11-04 15:50:30 -0800979 I915_WRITE(PIPEBSTAT, pipeb_stats);
Keith Packard05eff842008-11-19 14:03:05 -0800980 irq_received = 1;
Eric Anholtcdfbc412008-11-04 15:50:30 -0800981 }
Keith Packard05eff842008-11-19 14:03:05 -0800982 spin_unlock_irqrestore(&dev_priv->user_irq_lock, irqflags);
983
984 if (!irq_received)
985 break;
986
987 ret = IRQ_HANDLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988
Jesse Barnes5ca58282009-03-31 14:11:15 -0700989 /* Consume port. Then clear IIR or we'll miss events */
990 if ((I915_HAS_HOTPLUG(dev)) &&
991 (iir & I915_DISPLAY_PORT_INTERRUPT)) {
992 u32 hotplug_status = I915_READ(PORT_HOTPLUG_STAT);
993
Zhao Yakui44d98a62009-10-09 11:39:40 +0800994 DRM_DEBUG_DRIVER("hotplug event received, stat 0x%08x\n",
Jesse Barnes5ca58282009-03-31 14:11:15 -0700995 hotplug_status);
996 if (hotplug_status & dev_priv->hotplug_supported_mask)
Eric Anholt9c9fe1f2009-08-03 16:09:16 -0700997 queue_work(dev_priv->wq,
998 &dev_priv->hotplug_work);
Jesse Barnes5ca58282009-03-31 14:11:15 -0700999
1000 I915_WRITE(PORT_HOTPLUG_STAT, hotplug_status);
1001 I915_READ(PORT_HOTPLUG_STAT);
1002 }
1003
Eric Anholtcdfbc412008-11-04 15:50:30 -08001004 I915_WRITE(IIR, iir);
1005 new_iir = I915_READ(IIR); /* Flush posted writes */
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +01001006
Dave Airlie7c1c2872008-11-28 14:22:24 +10001007 if (dev->primary->master) {
1008 master_priv = dev->primary->master->driver_priv;
1009 if (master_priv->sarea_priv)
1010 master_priv->sarea_priv->last_dispatch =
1011 READ_BREADCRUMB(dev_priv);
1012 }
Keith Packard7c463582008-11-04 02:03:27 -08001013
Eric Anholtcdfbc412008-11-04 15:50:30 -08001014 if (iir & I915_USER_INTERRUPT) {
Zou Nan hai852835f2010-05-21 09:08:56 +08001015 u32 seqno =
1016 render_ring->get_gem_seqno(dev, render_ring);
1017 render_ring->irq_gem_seqno = seqno;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01001018 trace_i915_gem_request_complete(dev, seqno);
Zou Nan hai852835f2010-05-21 09:08:56 +08001019 DRM_WAKEUP(&dev_priv->render_ring.irq_queue);
Ben Gamarif65d9422009-09-14 17:48:44 -04001020 dev_priv->hangcheck_count = 0;
1021 mod_timer(&dev_priv->hangcheck_timer, jiffies + DRM_I915_HANGCHECK_PERIOD);
Eric Anholtcdfbc412008-11-04 15:50:30 -08001022 }
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001023
Zou Nan haid1b851f2010-05-21 09:08:57 +08001024 if (HAS_BSD(dev) && (iir & I915_BSD_USER_INTERRUPT))
1025 DRM_WAKEUP(&dev_priv->bsd_ring.irq_queue);
1026
Jesse Barnes1afe3e92010-03-26 10:35:20 -07001027 if (iir & I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT) {
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001028 intel_prepare_page_flip(dev, 0);
Jesse Barnes1afe3e92010-03-26 10:35:20 -07001029 if (dev_priv->flip_pending_is_done)
1030 intel_finish_page_flip_plane(dev, 0);
1031 }
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001032
Jesse Barnes1afe3e92010-03-26 10:35:20 -07001033 if (iir & I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT) {
Jesse Barnes70565d02010-07-01 04:45:43 -07001034 intel_prepare_page_flip(dev, 1);
Jesse Barnes1afe3e92010-03-26 10:35:20 -07001035 if (dev_priv->flip_pending_is_done)
1036 intel_finish_page_flip_plane(dev, 1);
Jesse Barnes1afe3e92010-03-26 10:35:20 -07001037 }
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001038
Keith Packard05eff842008-11-19 14:03:05 -08001039 if (pipea_stats & vblank_status) {
Eric Anholtcdfbc412008-11-04 15:50:30 -08001040 vblank++;
1041 drm_handle_vblank(dev, 0);
Simon Farnsworth4e5359c2010-09-01 17:47:52 +01001042 if (!dev_priv->flip_pending_is_done) {
1043 i915_pageflip_stall_check(dev, 0);
Jesse Barnes1afe3e92010-03-26 10:35:20 -07001044 intel_finish_page_flip(dev, 0);
Simon Farnsworth4e5359c2010-09-01 17:47:52 +01001045 }
Eric Anholtcdfbc412008-11-04 15:50:30 -08001046 }
Eric Anholt673a3942008-07-30 12:06:12 -07001047
Keith Packard05eff842008-11-19 14:03:05 -08001048 if (pipeb_stats & vblank_status) {
Eric Anholtcdfbc412008-11-04 15:50:30 -08001049 vblank++;
1050 drm_handle_vblank(dev, 1);
Simon Farnsworth4e5359c2010-09-01 17:47:52 +01001051 if (!dev_priv->flip_pending_is_done) {
1052 i915_pageflip_stall_check(dev, 1);
Jesse Barnes1afe3e92010-03-26 10:35:20 -07001053 intel_finish_page_flip(dev, 1);
Simon Farnsworth4e5359c2010-09-01 17:47:52 +01001054 }
Eric Anholtcdfbc412008-11-04 15:50:30 -08001055 }
Keith Packard7c463582008-11-04 02:03:27 -08001056
Jesse Barnesd874bcf2010-06-30 13:16:00 -07001057 if ((pipea_stats & PIPE_LEGACY_BLC_EVENT_STATUS) ||
1058 (pipeb_stats & PIPE_LEGACY_BLC_EVENT_STATUS) ||
Eric Anholtcdfbc412008-11-04 15:50:30 -08001059 (iir & I915_ASLE_INTERRUPT))
Chris Wilson3b617962010-08-24 09:02:58 +01001060 intel_opregion_asle_intr(dev);
Keith Packard7c463582008-11-04 02:03:27 -08001061
Eric Anholtcdfbc412008-11-04 15:50:30 -08001062 /* With MSI, interrupts are only generated when iir
1063 * transitions from zero to nonzero. If another bit got
1064 * set while we were handling the existing iir bits, then
1065 * we would never get another interrupt.
1066 *
1067 * This is fine on non-MSI as well, as if we hit this path
1068 * we avoid exiting the interrupt handler only to generate
1069 * another one.
1070 *
1071 * Note that for MSI this could cause a stray interrupt report
1072 * if an interrupt landed in the time between writing IIR and
1073 * the posting read. This should be rare enough to never
1074 * trigger the 99% of 100,000 interrupts test for disabling
1075 * stray interrupts.
1076 */
1077 iir = new_iir;
Keith Packard05eff842008-11-19 14:03:05 -08001078 }
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001079
Keith Packard05eff842008-11-19 14:03:05 -08001080 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081}
1082
Dave Airlieaf6061a2008-05-07 12:15:39 +10001083static int i915_emit_irq(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084{
1085 drm_i915_private_t *dev_priv = dev->dev_private;
Dave Airlie7c1c2872008-11-28 14:22:24 +10001086 struct drm_i915_master_private *master_priv = dev->primary->master->driver_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087
1088 i915_kernel_lost_context(dev);
1089
Zhao Yakui44d98a62009-10-09 11:39:40 +08001090 DRM_DEBUG_DRIVER("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091
Kristian Høgsbergc99b0582008-08-20 11:20:13 -04001092 dev_priv->counter++;
Alan Hourihanec29b6692006-08-12 16:29:24 +10001093 if (dev_priv->counter > 0x7FFFFFFFUL)
Kristian Høgsbergc99b0582008-08-20 11:20:13 -04001094 dev_priv->counter = 1;
Dave Airlie7c1c2872008-11-28 14:22:24 +10001095 if (master_priv->sarea_priv)
1096 master_priv->sarea_priv->last_enqueue = dev_priv->counter;
Alan Hourihanec29b6692006-08-12 16:29:24 +10001097
Keith Packard0baf8232008-11-08 11:44:14 +10001098 BEGIN_LP_RING(4);
Jesse Barnes585fb112008-07-29 11:54:06 -07001099 OUT_RING(MI_STORE_DWORD_INDEX);
Keith Packard0baf8232008-11-08 11:44:14 +10001100 OUT_RING(I915_BREADCRUMB_INDEX << MI_STORE_DWORD_INDEX_SHIFT);
Alan Hourihanec29b6692006-08-12 16:29:24 +10001101 OUT_RING(dev_priv->counter);
Jesse Barnes585fb112008-07-29 11:54:06 -07001102 OUT_RING(MI_USER_INTERRUPT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 ADVANCE_LP_RING();
Dave Airliebc5f4522007-11-05 12:50:58 +10001104
Alan Hourihanec29b6692006-08-12 16:29:24 +10001105 return dev_priv->counter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106}
1107
Chris Wilson9d34e5d2009-09-24 05:26:06 +01001108void i915_trace_irq_get(struct drm_device *dev, u32 seqno)
1109{
1110 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001111 struct intel_ring_buffer *render_ring = &dev_priv->render_ring;
Chris Wilson9d34e5d2009-09-24 05:26:06 +01001112
1113 if (dev_priv->trace_irq_seqno == 0)
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001114 render_ring->user_irq_get(dev, render_ring);
Chris Wilson9d34e5d2009-09-24 05:26:06 +01001115
1116 dev_priv->trace_irq_seqno = seqno;
1117}
1118
Dave Airlie84b1fd12007-07-11 15:53:27 +10001119static int i915_wait_irq(struct drm_device * dev, int irq_nr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120{
1121 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Dave Airlie7c1c2872008-11-28 14:22:24 +10001122 struct drm_i915_master_private *master_priv = dev->primary->master->driver_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123 int ret = 0;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001124 struct intel_ring_buffer *render_ring = &dev_priv->render_ring;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125
Zhao Yakui44d98a62009-10-09 11:39:40 +08001126 DRM_DEBUG_DRIVER("irq_nr=%d breadcrumb=%d\n", irq_nr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127 READ_BREADCRUMB(dev_priv));
1128
Eric Anholted4cb412008-07-29 12:10:39 -07001129 if (READ_BREADCRUMB(dev_priv) >= irq_nr) {
Dave Airlie7c1c2872008-11-28 14:22:24 +10001130 if (master_priv->sarea_priv)
1131 master_priv->sarea_priv->last_dispatch = READ_BREADCRUMB(dev_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132 return 0;
Eric Anholted4cb412008-07-29 12:10:39 -07001133 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134
Dave Airlie7c1c2872008-11-28 14:22:24 +10001135 if (master_priv->sarea_priv)
1136 master_priv->sarea_priv->perf_boxes |= I915_BOX_WAIT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001138 render_ring->user_irq_get(dev, render_ring);
Zou Nan hai852835f2010-05-21 09:08:56 +08001139 DRM_WAIT_ON(ret, dev_priv->render_ring.irq_queue, 3 * DRM_HZ,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 READ_BREADCRUMB(dev_priv) >= irq_nr);
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001141 render_ring->user_irq_put(dev, render_ring);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142
Eric Anholt20caafa2007-08-25 19:22:43 +10001143 if (ret == -EBUSY) {
Márton Németh3e684ea2008-01-24 15:58:57 +10001144 DRM_ERROR("EBUSY -- rec: %d emitted: %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 READ_BREADCRUMB(dev_priv), (int)dev_priv->counter);
1146 }
1147
Dave Airlieaf6061a2008-05-07 12:15:39 +10001148 return ret;
1149}
1150
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151/* Needs the lock as it touches the ring.
1152 */
Eric Anholtc153f452007-09-03 12:06:45 +10001153int i915_irq_emit(struct drm_device *dev, void *data,
1154 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholtc153f452007-09-03 12:06:45 +10001157 drm_i915_irq_emit_t *emit = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158 int result;
1159
Eric Anholtd3301d82010-05-21 13:55:54 -07001160 if (!dev_priv || !dev_priv->render_ring.virtual_start) {
Márton Németh3e684ea2008-01-24 15:58:57 +10001161 DRM_ERROR("called with no initialization\n");
Eric Anholt20caafa2007-08-25 19:22:43 +10001162 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163 }
Eric Anholt299eb932009-02-24 22:14:12 -08001164
1165 RING_LOCK_TEST_WITH_RETURN(dev, file_priv);
1166
Eric Anholt546b0972008-09-01 16:45:29 -07001167 mutex_lock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 result = i915_emit_irq(dev);
Eric Anholt546b0972008-09-01 16:45:29 -07001169 mutex_unlock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170
Eric Anholtc153f452007-09-03 12:06:45 +10001171 if (DRM_COPY_TO_USER(emit->irq_seq, &result, sizeof(int))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 DRM_ERROR("copy_to_user\n");
Eric Anholt20caafa2007-08-25 19:22:43 +10001173 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 }
1175
1176 return 0;
1177}
1178
1179/* Doesn't need the hardware lock.
1180 */
Eric Anholtc153f452007-09-03 12:06:45 +10001181int i915_irq_wait(struct drm_device *dev, void *data,
1182 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholtc153f452007-09-03 12:06:45 +10001185 drm_i915_irq_wait_t *irqwait = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186
1187 if (!dev_priv) {
Márton Németh3e684ea2008-01-24 15:58:57 +10001188 DRM_ERROR("called with no initialization\n");
Eric Anholt20caafa2007-08-25 19:22:43 +10001189 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 }
1191
Eric Anholtc153f452007-09-03 12:06:45 +10001192 return i915_wait_irq(dev, irqwait->irq_seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193}
1194
Keith Packard42f52ef2008-10-18 19:39:29 -07001195/* Called from drm generic code, passed 'crtc' which
1196 * we use as a pipe index
1197 */
1198int i915_enable_vblank(struct drm_device *dev, int pipe)
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001199{
1200 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Keith Packarde9d21d72008-10-16 11:31:38 -07001201 unsigned long irqflags;
Jesse Barnes71e0ffa2009-01-08 10:42:15 -08001202
Chris Wilson5eddb702010-09-11 13:48:45 +01001203 if (!i915_pipe_enabled(dev, pipe))
Jesse Barnes71e0ffa2009-01-08 10:42:15 -08001204 return -EINVAL;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001205
Keith Packarde9d21d72008-10-16 11:31:38 -07001206 spin_lock_irqsave(&dev_priv->user_irq_lock, irqflags);
Eric Anholtbad720f2009-10-22 16:11:14 -07001207 if (HAS_PCH_SPLIT(dev))
Li Pengc062df62010-01-23 00:12:58 +08001208 ironlake_enable_display_irq(dev_priv, (pipe == 0) ?
1209 DE_PIPEA_VBLANK: DE_PIPEB_VBLANK);
1210 else if (IS_I965G(dev))
Keith Packard7c463582008-11-04 02:03:27 -08001211 i915_enable_pipestat(dev_priv, pipe,
1212 PIPE_START_VBLANK_INTERRUPT_ENABLE);
Keith Packarde9d21d72008-10-16 11:31:38 -07001213 else
Keith Packard7c463582008-11-04 02:03:27 -08001214 i915_enable_pipestat(dev_priv, pipe,
1215 PIPE_VBLANK_INTERRUPT_ENABLE);
Keith Packarde9d21d72008-10-16 11:31:38 -07001216 spin_unlock_irqrestore(&dev_priv->user_irq_lock, irqflags);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001217 return 0;
1218}
1219
Keith Packard42f52ef2008-10-18 19:39:29 -07001220/* Called from drm generic code, passed 'crtc' which
1221 * we use as a pipe index
1222 */
1223void i915_disable_vblank(struct drm_device *dev, int pipe)
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001224{
1225 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Keith Packarde9d21d72008-10-16 11:31:38 -07001226 unsigned long irqflags;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001227
Keith Packarde9d21d72008-10-16 11:31:38 -07001228 spin_lock_irqsave(&dev_priv->user_irq_lock, irqflags);
Eric Anholtbad720f2009-10-22 16:11:14 -07001229 if (HAS_PCH_SPLIT(dev))
Li Pengc062df62010-01-23 00:12:58 +08001230 ironlake_disable_display_irq(dev_priv, (pipe == 0) ?
1231 DE_PIPEA_VBLANK: DE_PIPEB_VBLANK);
1232 else
1233 i915_disable_pipestat(dev_priv, pipe,
1234 PIPE_VBLANK_INTERRUPT_ENABLE |
1235 PIPE_START_VBLANK_INTERRUPT_ENABLE);
Keith Packarde9d21d72008-10-16 11:31:38 -07001236 spin_unlock_irqrestore(&dev_priv->user_irq_lock, irqflags);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001237}
1238
Jesse Barnes79e53942008-11-07 14:24:08 -08001239void i915_enable_interrupt (struct drm_device *dev)
1240{
1241 struct drm_i915_private *dev_priv = dev->dev_private;
Zhenyu Wange170b032009-06-05 15:38:40 +08001242
Eric Anholtbad720f2009-10-22 16:11:14 -07001243 if (!HAS_PCH_SPLIT(dev))
Chris Wilson3b617962010-08-24 09:02:58 +01001244 intel_opregion_enable_asle(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08001245 dev_priv->irq_enabled = 1;
1246}
1247
1248
Dave Airlie702880f2006-06-24 17:07:34 +10001249/* Set the vblank monitor pipe
1250 */
Eric Anholtc153f452007-09-03 12:06:45 +10001251int i915_vblank_pipe_set(struct drm_device *dev, void *data,
1252 struct drm_file *file_priv)
Dave Airlie702880f2006-06-24 17:07:34 +10001253{
Dave Airlie702880f2006-06-24 17:07:34 +10001254 drm_i915_private_t *dev_priv = dev->dev_private;
Dave Airlie702880f2006-06-24 17:07:34 +10001255
1256 if (!dev_priv) {
Márton Németh3e684ea2008-01-24 15:58:57 +10001257 DRM_ERROR("called with no initialization\n");
Eric Anholt20caafa2007-08-25 19:22:43 +10001258 return -EINVAL;
Dave Airlie702880f2006-06-24 17:07:34 +10001259 }
1260
=?utf-8?q?Michel_D=C3=A4nzer?=5b516942006-10-25 00:08:23 +10001261 return 0;
Dave Airlie702880f2006-06-24 17:07:34 +10001262}
1263
Eric Anholtc153f452007-09-03 12:06:45 +10001264int i915_vblank_pipe_get(struct drm_device *dev, void *data,
1265 struct drm_file *file_priv)
Dave Airlie702880f2006-06-24 17:07:34 +10001266{
Dave Airlie702880f2006-06-24 17:07:34 +10001267 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholtc153f452007-09-03 12:06:45 +10001268 drm_i915_vblank_pipe_t *pipe = data;
Dave Airlie702880f2006-06-24 17:07:34 +10001269
1270 if (!dev_priv) {
Márton Németh3e684ea2008-01-24 15:58:57 +10001271 DRM_ERROR("called with no initialization\n");
Eric Anholt20caafa2007-08-25 19:22:43 +10001272 return -EINVAL;
Dave Airlie702880f2006-06-24 17:07:34 +10001273 }
1274
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001275 pipe->pipe = DRM_I915_VBLANK_PIPE_A | DRM_I915_VBLANK_PIPE_B;
Eric Anholtc153f452007-09-03 12:06:45 +10001276
Dave Airlie702880f2006-06-24 17:07:34 +10001277 return 0;
1278}
1279
=?utf-8?q?Michel_D=C3=A4nzer?=a6b54f32006-10-24 23:37:43 +10001280/**
1281 * Schedule buffer swap at given vertical blank.
1282 */
Eric Anholtc153f452007-09-03 12:06:45 +10001283int i915_vblank_swap(struct drm_device *dev, void *data,
1284 struct drm_file *file_priv)
=?utf-8?q?Michel_D=C3=A4nzer?=a6b54f32006-10-24 23:37:43 +10001285{
Eric Anholtbd95e0a2008-11-04 12:01:24 -08001286 /* The delayed swap mechanism was fundamentally racy, and has been
1287 * removed. The model was that the client requested a delayed flip/swap
1288 * from the kernel, then waited for vblank before continuing to perform
1289 * rendering. The problem was that the kernel might wake the client
1290 * up before it dispatched the vblank swap (since the lock has to be
1291 * held while touching the ringbuffer), in which case the client would
1292 * clear and start the next frame before the swap occurred, and
1293 * flicker would occur in addition to likely missing the vblank.
1294 *
1295 * In the absence of this ioctl, userland falls back to a correct path
1296 * of waiting for a vblank, then dispatching the swap on its own.
1297 * Context switching to userland and back is plenty fast enough for
1298 * meeting the requirements of vblank swapping.
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001299 */
Eric Anholtbd95e0a2008-11-04 12:01:24 -08001300 return -EINVAL;
=?utf-8?q?Michel_D=C3=A4nzer?=a6b54f32006-10-24 23:37:43 +10001301}
1302
Chris Wilson995b6762010-08-20 13:23:26 +01001303static struct drm_i915_gem_request *
Zou Nan hai852835f2010-05-21 09:08:56 +08001304i915_get_tail_request(struct drm_device *dev)
1305{
Ben Gamarif65d9422009-09-14 17:48:44 -04001306 drm_i915_private_t *dev_priv = dev->dev_private;
Zou Nan hai852835f2010-05-21 09:08:56 +08001307 return list_entry(dev_priv->render_ring.request_list.prev,
1308 struct drm_i915_gem_request, list);
Ben Gamarif65d9422009-09-14 17:48:44 -04001309}
1310
1311/**
1312 * This is called when the chip hasn't reported back with completed
1313 * batchbuffers in a long time. The first time this is called we simply record
1314 * ACTHD. If ACTHD hasn't changed by the time the hangcheck timer elapses
1315 * again, we assume the chip is wedged and try to fix it.
1316 */
1317void i915_hangcheck_elapsed(unsigned long data)
1318{
1319 struct drm_device *dev = (struct drm_device *)data;
1320 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsoncbb465e2010-06-06 12:16:24 +01001321 uint32_t acthd, instdone, instdone1;
Eric Anholtb9201c12010-01-08 14:25:16 -08001322
1323 /* No reset support on this chip yet. */
1324 if (IS_GEN6(dev))
1325 return;
1326
Chris Wilsoncbb465e2010-06-06 12:16:24 +01001327 if (!IS_I965G(dev)) {
Ben Gamarif65d9422009-09-14 17:48:44 -04001328 acthd = I915_READ(ACTHD);
Chris Wilsoncbb465e2010-06-06 12:16:24 +01001329 instdone = I915_READ(INSTDONE);
1330 instdone1 = 0;
1331 } else {
Ben Gamarif65d9422009-09-14 17:48:44 -04001332 acthd = I915_READ(ACTHD_I965);
Chris Wilsoncbb465e2010-06-06 12:16:24 +01001333 instdone = I915_READ(INSTDONE_I965);
1334 instdone1 = I915_READ(INSTDONE1);
1335 }
Ben Gamarif65d9422009-09-14 17:48:44 -04001336
1337 /* If all work is done then ACTHD clearly hasn't advanced. */
Zou Nan hai852835f2010-05-21 09:08:56 +08001338 if (list_empty(&dev_priv->render_ring.request_list) ||
1339 i915_seqno_passed(i915_get_gem_seqno(dev,
1340 &dev_priv->render_ring),
1341 i915_get_tail_request(dev)->seqno)) {
Chris Wilson7839d952010-09-09 00:02:03 +01001342 bool missed_wakeup = false;
1343
Ben Gamarif65d9422009-09-14 17:48:44 -04001344 dev_priv->hangcheck_count = 0;
Chris Wilsone78d73b2010-08-07 14:18:47 +01001345
1346 /* Issue a wake-up to catch stuck h/w. */
Chris Wilson7839d952010-09-09 00:02:03 +01001347 if (dev_priv->render_ring.waiting_gem_seqno &&
1348 waitqueue_active(&dev_priv->render_ring.irq_queue)) {
1349 DRM_WAKEUP(&dev_priv->render_ring.irq_queue);
1350 missed_wakeup = true;
Chris Wilsone78d73b2010-08-07 14:18:47 +01001351 }
Chris Wilson7839d952010-09-09 00:02:03 +01001352
1353 if (dev_priv->bsd_ring.waiting_gem_seqno &&
1354 waitqueue_active(&dev_priv->bsd_ring.irq_queue)) {
1355 DRM_WAKEUP(&dev_priv->bsd_ring.irq_queue);
1356 missed_wakeup = true;
1357 }
1358
1359 if (missed_wakeup)
1360 DRM_ERROR("Hangcheck timer elapsed... GPU idle, missed IRQ.\n");
Ben Gamarif65d9422009-09-14 17:48:44 -04001361 return;
1362 }
1363
Chris Wilsoncbb465e2010-06-06 12:16:24 +01001364 if (dev_priv->last_acthd == acthd &&
1365 dev_priv->last_instdone == instdone &&
1366 dev_priv->last_instdone1 == instdone1) {
1367 if (dev_priv->hangcheck_count++ > 1) {
1368 DRM_ERROR("Hangcheck timer elapsed... GPU hung\n");
Chris Wilson8c80b592010-08-08 20:38:12 +01001369
1370 if (!IS_GEN2(dev)) {
1371 /* Is the chip hanging on a WAIT_FOR_EVENT?
1372 * If so we can simply poke the RB_WAIT bit
1373 * and break the hang. This should work on
1374 * all but the second generation chipsets.
1375 */
1376 u32 tmp = I915_READ(PRB0_CTL);
1377 if (tmp & RING_WAIT) {
1378 I915_WRITE(PRB0_CTL, tmp);
1379 POSTING_READ(PRB0_CTL);
1380 goto out;
1381 }
1382 }
1383
Chris Wilsoncbb465e2010-06-06 12:16:24 +01001384 i915_handle_error(dev, true);
1385 return;
1386 }
1387 } else {
1388 dev_priv->hangcheck_count = 0;
1389
1390 dev_priv->last_acthd = acthd;
1391 dev_priv->last_instdone = instdone;
1392 dev_priv->last_instdone1 = instdone1;
1393 }
Ben Gamarif65d9422009-09-14 17:48:44 -04001394
Chris Wilson8c80b592010-08-08 20:38:12 +01001395out:
Ben Gamarif65d9422009-09-14 17:48:44 -04001396 /* Reset timer case chip hangs without another request being added */
1397 mod_timer(&dev_priv->hangcheck_timer, jiffies + DRM_I915_HANGCHECK_PERIOD);
Ben Gamarif65d9422009-09-14 17:48:44 -04001398}
1399
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400/* drm_dma.h hooks
1401*/
Adam Jacksonf2b115e2009-12-03 17:14:42 -05001402static void ironlake_irq_preinstall(struct drm_device *dev)
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001403{
1404 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
1405
1406 I915_WRITE(HWSTAM, 0xeffe);
1407
1408 /* XXX hotplug from PCH */
1409
1410 I915_WRITE(DEIMR, 0xffffffff);
1411 I915_WRITE(DEIER, 0x0);
1412 (void) I915_READ(DEIER);
1413
1414 /* and GT */
1415 I915_WRITE(GTIMR, 0xffffffff);
1416 I915_WRITE(GTIER, 0x0);
1417 (void) I915_READ(GTIER);
Zhenyu Wangc6501562009-11-03 18:57:21 +00001418
1419 /* south display irq */
1420 I915_WRITE(SDEIMR, 0xffffffff);
1421 I915_WRITE(SDEIER, 0x0);
1422 (void) I915_READ(SDEIER);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001423}
1424
Adam Jacksonf2b115e2009-12-03 17:14:42 -05001425static int ironlake_irq_postinstall(struct drm_device *dev)
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001426{
1427 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
1428 /* enable kind of interrupts always enabled */
Jesse Barnes013d5aa2010-01-29 11:18:31 -08001429 u32 display_mask = DE_MASTER_IRQ_CONTROL | DE_GSE | DE_PCH_EVENT |
1430 DE_PLANEA_FLIP_DONE | DE_PLANEB_FLIP_DONE;
Zou Nan haid1b851f2010-05-21 09:08:57 +08001431 u32 render_mask = GT_PIPE_NOTIFY | GT_BSD_USER_INTERRUPT;
Zhenyu Wangc6501562009-11-03 18:57:21 +00001432 u32 hotplug_mask = SDE_CRT_HOTPLUG | SDE_PORTB_HOTPLUG |
1433 SDE_PORTC_HOTPLUG | SDE_PORTD_HOTPLUG;
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001434
1435 dev_priv->irq_mask_reg = ~display_mask;
Li Peng643ced92010-01-28 01:05:09 +08001436 dev_priv->de_irq_enable_reg = display_mask | DE_PIPEA_VBLANK | DE_PIPEB_VBLANK;
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001437
1438 /* should always can generate irq */
1439 I915_WRITE(DEIIR, I915_READ(DEIIR));
1440 I915_WRITE(DEIMR, dev_priv->irq_mask_reg);
1441 I915_WRITE(DEIER, dev_priv->de_irq_enable_reg);
1442 (void) I915_READ(DEIER);
1443
Zhenyu Wang3fdef022010-08-19 09:46:15 +08001444 /* Gen6 only needs render pipe_control now */
1445 if (IS_GEN6(dev))
1446 render_mask = GT_PIPE_NOTIFY;
1447
Zou Nan hai852835f2010-05-21 09:08:56 +08001448 dev_priv->gt_irq_mask_reg = ~render_mask;
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001449 dev_priv->gt_irq_enable_reg = render_mask;
1450
1451 I915_WRITE(GTIIR, I915_READ(GTIIR));
1452 I915_WRITE(GTIMR, dev_priv->gt_irq_mask_reg);
Zhenyu Wang3fdef022010-08-19 09:46:15 +08001453 if (IS_GEN6(dev))
1454 I915_WRITE(GEN6_RENDER_IMR, ~GEN6_RENDER_PIPE_CONTROL_NOTIFY_INTERRUPT);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001455 I915_WRITE(GTIER, dev_priv->gt_irq_enable_reg);
1456 (void) I915_READ(GTIER);
1457
Zhenyu Wangc6501562009-11-03 18:57:21 +00001458 dev_priv->pch_irq_mask_reg = ~hotplug_mask;
1459 dev_priv->pch_irq_enable_reg = hotplug_mask;
1460
1461 I915_WRITE(SDEIIR, I915_READ(SDEIIR));
1462 I915_WRITE(SDEIMR, dev_priv->pch_irq_mask_reg);
1463 I915_WRITE(SDEIER, dev_priv->pch_irq_enable_reg);
1464 (void) I915_READ(SDEIER);
1465
Jesse Barnesf97108d2010-01-29 11:27:07 -08001466 if (IS_IRONLAKE_M(dev)) {
1467 /* Clear & enable PCU event interrupts */
1468 I915_WRITE(DEIIR, DE_PCU_EVENT);
1469 I915_WRITE(DEIER, I915_READ(DEIER) | DE_PCU_EVENT);
1470 ironlake_enable_display_irq(dev_priv, DE_PCU_EVENT);
1471 }
1472
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001473 return 0;
1474}
1475
Dave Airlie84b1fd12007-07-11 15:53:27 +10001476void i915_driver_irq_preinstall(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477{
1478 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
1479
Jesse Barnes79e53942008-11-07 14:24:08 -08001480 atomic_set(&dev_priv->irq_received, 0);
1481
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001482 INIT_WORK(&dev_priv->hotplug_work, i915_hotplug_work_func);
Jesse Barnes8a905232009-07-11 16:48:03 -04001483 INIT_WORK(&dev_priv->error_work, i915_error_work_func);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001484
Eric Anholtbad720f2009-10-22 16:11:14 -07001485 if (HAS_PCH_SPLIT(dev)) {
Adam Jacksonf2b115e2009-12-03 17:14:42 -05001486 ironlake_irq_preinstall(dev);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001487 return;
1488 }
1489
Jesse Barnes5ca58282009-03-31 14:11:15 -07001490 if (I915_HAS_HOTPLUG(dev)) {
1491 I915_WRITE(PORT_HOTPLUG_EN, 0);
1492 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
1493 }
1494
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001495 I915_WRITE(HWSTAM, 0xeffe);
Keith Packard7c463582008-11-04 02:03:27 -08001496 I915_WRITE(PIPEASTAT, 0);
1497 I915_WRITE(PIPEBSTAT, 0);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001498 I915_WRITE(IMR, 0xffffffff);
Eric Anholted4cb412008-07-29 12:10:39 -07001499 I915_WRITE(IER, 0x0);
Keith Packard7c463582008-11-04 02:03:27 -08001500 (void) I915_READ(IER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501}
1502
Jesse Barnesb01f2c32009-12-11 11:07:17 -08001503/*
1504 * Must be called after intel_modeset_init or hotplug interrupts won't be
1505 * enabled correctly.
1506 */
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001507int i915_driver_irq_postinstall(struct drm_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508{
1509 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Jesse Barnes5ca58282009-03-31 14:11:15 -07001510 u32 enable_mask = I915_INTERRUPT_ENABLE_FIX | I915_INTERRUPT_ENABLE_VAR;
Jesse Barnes63eeaf32009-06-18 16:56:52 -07001511 u32 error_mask;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001512
Zou Nan hai852835f2010-05-21 09:08:56 +08001513 DRM_INIT_WAITQUEUE(&dev_priv->render_ring.irq_queue);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001514
Zou Nan haid1b851f2010-05-21 09:08:57 +08001515 if (HAS_BSD(dev))
1516 DRM_INIT_WAITQUEUE(&dev_priv->bsd_ring.irq_queue);
1517
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001518 dev_priv->vblank_pipe = DRM_I915_VBLANK_PIPE_A | DRM_I915_VBLANK_PIPE_B;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001519
Eric Anholtbad720f2009-10-22 16:11:14 -07001520 if (HAS_PCH_SPLIT(dev))
Adam Jacksonf2b115e2009-12-03 17:14:42 -05001521 return ironlake_irq_postinstall(dev);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001522
Keith Packard7c463582008-11-04 02:03:27 -08001523 /* Unmask the interrupts that we always want on. */
1524 dev_priv->irq_mask_reg = ~I915_INTERRUPT_ENABLE_FIX;
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +01001525
Keith Packard7c463582008-11-04 02:03:27 -08001526 dev_priv->pipestat[0] = 0;
1527 dev_priv->pipestat[1] = 0;
1528
Jesse Barnes5ca58282009-03-31 14:11:15 -07001529 if (I915_HAS_HOTPLUG(dev)) {
Adam Jacksonc496fa12010-05-27 17:26:45 -04001530 /* Enable in IER... */
1531 enable_mask |= I915_DISPLAY_PORT_INTERRUPT;
1532 /* and unmask in IMR */
1533 dev_priv->irq_mask_reg &= ~I915_DISPLAY_PORT_INTERRUPT;
1534 }
1535
1536 /*
1537 * Enable some error detection, note the instruction error mask
1538 * bit is reserved, so we leave it masked.
1539 */
1540 if (IS_G4X(dev)) {
1541 error_mask = ~(GM45_ERROR_PAGE_TABLE |
1542 GM45_ERROR_MEM_PRIV |
1543 GM45_ERROR_CP_PRIV |
1544 I915_ERROR_MEMORY_REFRESH);
1545 } else {
1546 error_mask = ~(I915_ERROR_PAGE_TABLE |
1547 I915_ERROR_MEMORY_REFRESH);
1548 }
1549 I915_WRITE(EMR, error_mask);
1550
1551 I915_WRITE(IMR, dev_priv->irq_mask_reg);
1552 I915_WRITE(IER, enable_mask);
1553 (void) I915_READ(IER);
1554
1555 if (I915_HAS_HOTPLUG(dev)) {
Jesse Barnes5ca58282009-03-31 14:11:15 -07001556 u32 hotplug_en = I915_READ(PORT_HOTPLUG_EN);
1557
Jesse Barnesb01f2c32009-12-11 11:07:17 -08001558 /* Note HDMI and DP share bits */
1559 if (dev_priv->hotplug_supported_mask & HDMIB_HOTPLUG_INT_STATUS)
1560 hotplug_en |= HDMIB_HOTPLUG_INT_EN;
1561 if (dev_priv->hotplug_supported_mask & HDMIC_HOTPLUG_INT_STATUS)
1562 hotplug_en |= HDMIC_HOTPLUG_INT_EN;
1563 if (dev_priv->hotplug_supported_mask & HDMID_HOTPLUG_INT_STATUS)
1564 hotplug_en |= HDMID_HOTPLUG_INT_EN;
1565 if (dev_priv->hotplug_supported_mask & SDVOC_HOTPLUG_INT_STATUS)
1566 hotplug_en |= SDVOC_HOTPLUG_INT_EN;
1567 if (dev_priv->hotplug_supported_mask & SDVOB_HOTPLUG_INT_STATUS)
1568 hotplug_en |= SDVOB_HOTPLUG_INT_EN;
Andy Lutomirski2d1c9752010-06-12 05:21:18 -04001569 if (dev_priv->hotplug_supported_mask & CRT_HOTPLUG_INT_STATUS) {
Jesse Barnesb01f2c32009-12-11 11:07:17 -08001570 hotplug_en |= CRT_HOTPLUG_INT_EN;
Andy Lutomirski2d1c9752010-06-12 05:21:18 -04001571
1572 /* Programming the CRT detection parameters tends
1573 to generate a spurious hotplug event about three
1574 seconds later. So just do it once.
1575 */
1576 if (IS_G4X(dev))
1577 hotplug_en |= CRT_HOTPLUG_ACTIVATION_PERIOD_64;
1578 hotplug_en |= CRT_HOTPLUG_VOLTAGE_COMPARE_50;
1579 }
1580
Jesse Barnesb01f2c32009-12-11 11:07:17 -08001581 /* Ignore TV since it's buggy */
1582
Jesse Barnes5ca58282009-03-31 14:11:15 -07001583 I915_WRITE(PORT_HOTPLUG_EN, hotplug_en);
Jesse Barnes5ca58282009-03-31 14:11:15 -07001584 }
1585
Chris Wilson3b617962010-08-24 09:02:58 +01001586 intel_opregion_enable_asle(dev);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001587
1588 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589}
1590
Adam Jacksonf2b115e2009-12-03 17:14:42 -05001591static void ironlake_irq_uninstall(struct drm_device *dev)
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001592{
1593 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
1594 I915_WRITE(HWSTAM, 0xffffffff);
1595
1596 I915_WRITE(DEIMR, 0xffffffff);
1597 I915_WRITE(DEIER, 0x0);
1598 I915_WRITE(DEIIR, I915_READ(DEIIR));
1599
1600 I915_WRITE(GTIMR, 0xffffffff);
1601 I915_WRITE(GTIER, 0x0);
1602 I915_WRITE(GTIIR, I915_READ(GTIIR));
1603}
1604
Dave Airlie84b1fd12007-07-11 15:53:27 +10001605void i915_driver_irq_uninstall(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606{
1607 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Dave Airlie91e37382006-02-18 15:17:04 +11001608
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609 if (!dev_priv)
1610 return;
1611
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001612 dev_priv->vblank_pipe = 0;
1613
Eric Anholtbad720f2009-10-22 16:11:14 -07001614 if (HAS_PCH_SPLIT(dev)) {
Adam Jacksonf2b115e2009-12-03 17:14:42 -05001615 ironlake_irq_uninstall(dev);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001616 return;
1617 }
1618
Jesse Barnes5ca58282009-03-31 14:11:15 -07001619 if (I915_HAS_HOTPLUG(dev)) {
1620 I915_WRITE(PORT_HOTPLUG_EN, 0);
1621 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
1622 }
1623
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001624 I915_WRITE(HWSTAM, 0xffffffff);
Keith Packard7c463582008-11-04 02:03:27 -08001625 I915_WRITE(PIPEASTAT, 0);
1626 I915_WRITE(PIPEBSTAT, 0);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001627 I915_WRITE(IMR, 0xffffffff);
Eric Anholted4cb412008-07-29 12:10:39 -07001628 I915_WRITE(IER, 0x0);
Dave Airlie91e37382006-02-18 15:17:04 +11001629
Keith Packard7c463582008-11-04 02:03:27 -08001630 I915_WRITE(PIPEASTAT, I915_READ(PIPEASTAT) & 0x8000ffff);
1631 I915_WRITE(PIPEBSTAT, I915_READ(PIPEBSTAT) & 0x8000ffff);
1632 I915_WRITE(IIR, I915_READ(IIR));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633}