blob: 0d5e3f6574311142da1796f2665b1d1cd965513d [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
Joe Perchesa70491c2012-03-18 13:00:11 -070029#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
30
Jesse Barnes63eeaf32009-06-18 16:56:52 -070031#include <linux/sysrq.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090032#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include "drmP.h"
34#include "drm.h"
35#include "i915_drm.h"
36#include "i915_drv.h"
Chris Wilson1c5d22f2009-08-25 11:15:50 +010037#include "i915_trace.h"
Jesse Barnes79e53942008-11-07 14:24:08 -080038#include "intel_drv.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#define MAX_NOPID ((u32)~0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
Jesse Barnes79e53942008-11-07 14:24:08 -080042#define I915_PIPE_VBLANK_STATUS (PIPE_START_VBLANK_INTERRUPT_STATUS |\
43 PIPE_VBLANK_INTERRUPT_STATUS)
44
45#define I915_PIPE_VBLANK_ENABLE (PIPE_START_VBLANK_INTERRUPT_ENABLE |\
46 PIPE_VBLANK_INTERRUPT_ENABLE)
47
48#define DRM_I915_VBLANK_PIPE_ALL (DRM_I915_VBLANK_PIPE_A | \
49 DRM_I915_VBLANK_PIPE_B)
50
Zhenyu Wang036a4a72009-06-08 14:40:19 +080051/* For display hotplug interrupt */
Chris Wilson995b6762010-08-20 13:23:26 +010052static void
Adam Jacksonf2b115e2009-12-03 17:14:42 -050053ironlake_enable_display_irq(drm_i915_private_t *dev_priv, u32 mask)
Zhenyu Wang036a4a72009-06-08 14:40:19 +080054{
Chris Wilson1ec14ad2010-12-04 11:30:53 +000055 if ((dev_priv->irq_mask & mask) != 0) {
56 dev_priv->irq_mask &= ~mask;
57 I915_WRITE(DEIMR, dev_priv->irq_mask);
Chris Wilson3143a2b2010-11-16 15:55:10 +000058 POSTING_READ(DEIMR);
Zhenyu Wang036a4a72009-06-08 14:40:19 +080059 }
60}
61
62static inline void
Adam Jacksonf2b115e2009-12-03 17:14:42 -050063ironlake_disable_display_irq(drm_i915_private_t *dev_priv, u32 mask)
Zhenyu Wang036a4a72009-06-08 14:40:19 +080064{
Chris Wilson1ec14ad2010-12-04 11:30:53 +000065 if ((dev_priv->irq_mask & mask) != mask) {
66 dev_priv->irq_mask |= mask;
67 I915_WRITE(DEIMR, dev_priv->irq_mask);
Chris Wilson3143a2b2010-11-16 15:55:10 +000068 POSTING_READ(DEIMR);
Zhenyu Wang036a4a72009-06-08 14:40:19 +080069 }
70}
71
Keith Packard7c463582008-11-04 02:03:27 -080072void
73i915_enable_pipestat(drm_i915_private_t *dev_priv, int pipe, u32 mask)
74{
75 if ((dev_priv->pipestat[pipe] & mask) != mask) {
Jesse Barnes9db4a9c2011-02-07 12:26:52 -080076 u32 reg = PIPESTAT(pipe);
Keith Packard7c463582008-11-04 02:03:27 -080077
78 dev_priv->pipestat[pipe] |= mask;
79 /* Enable the interrupt, clear any pending status */
80 I915_WRITE(reg, dev_priv->pipestat[pipe] | (mask >> 16));
Chris Wilson3143a2b2010-11-16 15:55:10 +000081 POSTING_READ(reg);
Keith Packard7c463582008-11-04 02:03:27 -080082 }
83}
84
85void
86i915_disable_pipestat(drm_i915_private_t *dev_priv, int pipe, u32 mask)
87{
88 if ((dev_priv->pipestat[pipe] & mask) != 0) {
Jesse Barnes9db4a9c2011-02-07 12:26:52 -080089 u32 reg = PIPESTAT(pipe);
Keith Packard7c463582008-11-04 02:03:27 -080090
91 dev_priv->pipestat[pipe] &= ~mask;
92 I915_WRITE(reg, dev_priv->pipestat[pipe]);
Chris Wilson3143a2b2010-11-16 15:55:10 +000093 POSTING_READ(reg);
Keith Packard7c463582008-11-04 02:03:27 -080094 }
95}
96
=?utf-8?q?Michel_D=C3=A4nzer?=a6b54f32006-10-24 23:37:43 +100097/**
Zhao Yakui01c66882009-10-28 05:10:00 +000098 * intel_enable_asle - enable ASLE interrupt for OpRegion
99 */
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000100void intel_enable_asle(struct drm_device *dev)
Zhao Yakui01c66882009-10-28 05:10:00 +0000101{
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000102 drm_i915_private_t *dev_priv = dev->dev_private;
103 unsigned long irqflags;
104
Jesse Barnes7e231dbe2012-03-28 13:39:38 -0700105 /* FIXME: opregion/asle for VLV */
106 if (IS_VALLEYVIEW(dev))
107 return;
108
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000109 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Zhao Yakui01c66882009-10-28 05:10:00 +0000110
Eric Anholtc619eed2010-01-28 16:45:52 -0800111 if (HAS_PCH_SPLIT(dev))
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500112 ironlake_enable_display_irq(dev_priv, DE_GSE);
Zhao Yakuiedcb49c2010-04-07 17:11:21 +0800113 else {
Zhao Yakui01c66882009-10-28 05:10:00 +0000114 i915_enable_pipestat(dev_priv, 1,
Jesse Barnesd874bcf2010-06-30 13:16:00 -0700115 PIPE_LEGACY_BLC_EVENT_ENABLE);
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100116 if (INTEL_INFO(dev)->gen >= 4)
Zhao Yakuiedcb49c2010-04-07 17:11:21 +0800117 i915_enable_pipestat(dev_priv, 0,
Jesse Barnesd874bcf2010-06-30 13:16:00 -0700118 PIPE_LEGACY_BLC_EVENT_ENABLE);
Zhao Yakuiedcb49c2010-04-07 17:11:21 +0800119 }
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000120
121 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
Zhao Yakui01c66882009-10-28 05:10:00 +0000122}
123
124/**
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700125 * i915_pipe_enabled - check if a pipe is enabled
126 * @dev: DRM device
127 * @pipe: pipe to check
128 *
129 * Reading certain registers when the pipe is disabled can hang the chip.
130 * Use this routine to make sure the PLL is running and the pipe is active
131 * before reading such registers if unsure.
132 */
133static int
134i915_pipe_enabled(struct drm_device *dev, int pipe)
135{
136 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Chris Wilson5eddb702010-09-11 13:48:45 +0100137 return I915_READ(PIPECONF(pipe)) & PIPECONF_ENABLE;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700138}
139
Keith Packard42f52ef2008-10-18 19:39:29 -0700140/* Called from drm generic code, passed a 'crtc', which
141 * we use as a pipe index
142 */
Jesse Barnesf71d4af2011-06-28 13:00:41 -0700143static u32 i915_get_vblank_counter(struct drm_device *dev, int pipe)
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700144{
145 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
146 unsigned long high_frame;
147 unsigned long low_frame;
Chris Wilson5eddb702010-09-11 13:48:45 +0100148 u32 high1, high2, low;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700149
150 if (!i915_pipe_enabled(dev, pipe)) {
Zhao Yakui44d98a62009-10-09 11:39:40 +0800151 DRM_DEBUG_DRIVER("trying to get vblank count for disabled "
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800152 "pipe %c\n", pipe_name(pipe));
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700153 return 0;
154 }
155
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800156 high_frame = PIPEFRAME(pipe);
157 low_frame = PIPEFRAMEPIXEL(pipe);
Chris Wilson5eddb702010-09-11 13:48:45 +0100158
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700159 /*
160 * High & low register fields aren't synchronized, so make sure
161 * we get a low value that's stable across two reads of the high
162 * register.
163 */
164 do {
Chris Wilson5eddb702010-09-11 13:48:45 +0100165 high1 = I915_READ(high_frame) & PIPE_FRAME_HIGH_MASK;
166 low = I915_READ(low_frame) & PIPE_FRAME_LOW_MASK;
167 high2 = I915_READ(high_frame) & PIPE_FRAME_HIGH_MASK;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700168 } while (high1 != high2);
169
Chris Wilson5eddb702010-09-11 13:48:45 +0100170 high1 >>= PIPE_FRAME_HIGH_SHIFT;
171 low >>= PIPE_FRAME_LOW_SHIFT;
172 return (high1 << 8) | low;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700173}
174
Jesse Barnesf71d4af2011-06-28 13:00:41 -0700175static u32 gm45_get_vblank_counter(struct drm_device *dev, int pipe)
Jesse Barnes9880b7a2009-02-06 10:22:41 -0800176{
177 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800178 int reg = PIPE_FRMCOUNT_GM45(pipe);
Jesse Barnes9880b7a2009-02-06 10:22:41 -0800179
180 if (!i915_pipe_enabled(dev, pipe)) {
Zhao Yakui44d98a62009-10-09 11:39:40 +0800181 DRM_DEBUG_DRIVER("trying to get vblank count for disabled "
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800182 "pipe %c\n", pipe_name(pipe));
Jesse Barnes9880b7a2009-02-06 10:22:41 -0800183 return 0;
184 }
185
186 return I915_READ(reg);
187}
188
Jesse Barnesf71d4af2011-06-28 13:00:41 -0700189static int i915_get_crtc_scanoutpos(struct drm_device *dev, int pipe,
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100190 int *vpos, int *hpos)
191{
192 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
193 u32 vbl = 0, position = 0;
194 int vbl_start, vbl_end, htotal, vtotal;
195 bool in_vbl = true;
196 int ret = 0;
197
198 if (!i915_pipe_enabled(dev, pipe)) {
199 DRM_DEBUG_DRIVER("trying to get scanoutpos for disabled "
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800200 "pipe %c\n", pipe_name(pipe));
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100201 return 0;
202 }
203
204 /* Get vtotal. */
205 vtotal = 1 + ((I915_READ(VTOTAL(pipe)) >> 16) & 0x1fff);
206
207 if (INTEL_INFO(dev)->gen >= 4) {
208 /* No obvious pixelcount register. Only query vertical
209 * scanout position from Display scan line register.
210 */
211 position = I915_READ(PIPEDSL(pipe));
212
213 /* Decode into vertical scanout position. Don't have
214 * horizontal scanout position.
215 */
216 *vpos = position & 0x1fff;
217 *hpos = 0;
218 } else {
219 /* Have access to pixelcount since start of frame.
220 * We can split this into vertical and horizontal
221 * scanout position.
222 */
223 position = (I915_READ(PIPEFRAMEPIXEL(pipe)) & PIPE_PIXEL_MASK) >> PIPE_PIXEL_SHIFT;
224
225 htotal = 1 + ((I915_READ(HTOTAL(pipe)) >> 16) & 0x1fff);
226 *vpos = position / htotal;
227 *hpos = position - (*vpos * htotal);
228 }
229
230 /* Query vblank area. */
231 vbl = I915_READ(VBLANK(pipe));
232
233 /* Test position against vblank region. */
234 vbl_start = vbl & 0x1fff;
235 vbl_end = (vbl >> 16) & 0x1fff;
236
237 if ((*vpos < vbl_start) || (*vpos > vbl_end))
238 in_vbl = false;
239
240 /* Inside "upper part" of vblank area? Apply corrective offset: */
241 if (in_vbl && (*vpos >= vbl_start))
242 *vpos = *vpos - vtotal;
243
244 /* Readouts valid? */
245 if (vbl > 0)
246 ret |= DRM_SCANOUTPOS_VALID | DRM_SCANOUTPOS_ACCURATE;
247
248 /* In vblank? */
249 if (in_vbl)
250 ret |= DRM_SCANOUTPOS_INVBL;
251
252 return ret;
253}
254
Jesse Barnesf71d4af2011-06-28 13:00:41 -0700255static int i915_get_vblank_timestamp(struct drm_device *dev, int pipe,
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100256 int *max_error,
257 struct timeval *vblank_time,
258 unsigned flags)
259{
Chris Wilson4041b852011-01-22 10:07:56 +0000260 struct drm_i915_private *dev_priv = dev->dev_private;
261 struct drm_crtc *crtc;
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100262
Chris Wilson4041b852011-01-22 10:07:56 +0000263 if (pipe < 0 || pipe >= dev_priv->num_pipe) {
264 DRM_ERROR("Invalid crtc %d\n", pipe);
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100265 return -EINVAL;
266 }
267
268 /* Get drm_crtc to timestamp: */
Chris Wilson4041b852011-01-22 10:07:56 +0000269 crtc = intel_get_crtc_for_pipe(dev, pipe);
270 if (crtc == NULL) {
271 DRM_ERROR("Invalid crtc %d\n", pipe);
272 return -EINVAL;
273 }
274
275 if (!crtc->enabled) {
276 DRM_DEBUG_KMS("crtc %d is disabled\n", pipe);
277 return -EBUSY;
278 }
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100279
280 /* Helper routine in DRM core does all the work: */
Chris Wilson4041b852011-01-22 10:07:56 +0000281 return drm_calc_vbltimestamp_from_scanoutpos(dev, pipe, max_error,
282 vblank_time, flags,
283 crtc);
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100284}
285
Jesse Barnes5ca58282009-03-31 14:11:15 -0700286/*
287 * Handle hotplug events outside the interrupt handler proper.
288 */
289static void i915_hotplug_work_func(struct work_struct *work)
290{
291 drm_i915_private_t *dev_priv = container_of(work, drm_i915_private_t,
292 hotplug_work);
293 struct drm_device *dev = dev_priv->dev;
Keith Packardc31c4ba2009-05-06 11:48:58 -0700294 struct drm_mode_config *mode_config = &dev->mode_config;
Chris Wilson4ef69c72010-09-09 15:14:28 +0100295 struct intel_encoder *encoder;
Jesse Barnes5ca58282009-03-31 14:11:15 -0700296
Keith Packarda65e34c2011-07-25 10:04:56 -0700297 mutex_lock(&mode_config->mutex);
Jesse Barnese67189ab2011-02-11 14:44:51 -0800298 DRM_DEBUG_KMS("running encoder hotplug functions\n");
299
Chris Wilson4ef69c72010-09-09 15:14:28 +0100300 list_for_each_entry(encoder, &mode_config->encoder_list, base.head)
301 if (encoder->hot_plug)
302 encoder->hot_plug(encoder);
303
Keith Packard40ee3382011-07-28 15:31:19 -0700304 mutex_unlock(&mode_config->mutex);
305
Jesse Barnes5ca58282009-03-31 14:11:15 -0700306 /* Just fire off a uevent and let userspace tell us what to do */
Dave Airlieeb1f8e42010-05-07 06:42:51 +0000307 drm_helper_hpd_irq_event(dev);
Jesse Barnes5ca58282009-03-31 14:11:15 -0700308}
309
Jesse Barnesf97108d2010-01-29 11:27:07 -0800310static void i915_handle_rps_change(struct drm_device *dev)
311{
312 drm_i915_private_t *dev_priv = dev->dev_private;
Matthew Garrettb5b72e82010-02-02 18:30:47 +0000313 u32 busy_up, busy_down, max_avg, min_avg;
Jesse Barnesf97108d2010-01-29 11:27:07 -0800314 u8 new_delay = dev_priv->cur_delay;
315
Jesse Barnes7648fa92010-05-20 14:28:11 -0700316 I915_WRITE16(MEMINTRSTS, MEMINT_EVAL_CHG);
Matthew Garrettb5b72e82010-02-02 18:30:47 +0000317 busy_up = I915_READ(RCPREVBSYTUPAVG);
318 busy_down = I915_READ(RCPREVBSYTDNAVG);
Jesse Barnesf97108d2010-01-29 11:27:07 -0800319 max_avg = I915_READ(RCBMAXAVG);
320 min_avg = I915_READ(RCBMINAVG);
321
322 /* Handle RCS change request from hw */
Matthew Garrettb5b72e82010-02-02 18:30:47 +0000323 if (busy_up > max_avg) {
Jesse Barnesf97108d2010-01-29 11:27:07 -0800324 if (dev_priv->cur_delay != dev_priv->max_delay)
325 new_delay = dev_priv->cur_delay - 1;
326 if (new_delay < dev_priv->max_delay)
327 new_delay = dev_priv->max_delay;
Matthew Garrettb5b72e82010-02-02 18:30:47 +0000328 } else if (busy_down < min_avg) {
Jesse Barnesf97108d2010-01-29 11:27:07 -0800329 if (dev_priv->cur_delay != dev_priv->min_delay)
330 new_delay = dev_priv->cur_delay + 1;
331 if (new_delay > dev_priv->min_delay)
332 new_delay = dev_priv->min_delay;
333 }
334
Jesse Barnes7648fa92010-05-20 14:28:11 -0700335 if (ironlake_set_drps(dev, new_delay))
336 dev_priv->cur_delay = new_delay;
Jesse Barnesf97108d2010-01-29 11:27:07 -0800337
338 return;
339}
340
Chris Wilson549f7362010-10-19 11:19:32 +0100341static void notify_ring(struct drm_device *dev,
342 struct intel_ring_buffer *ring)
343{
344 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson475553d2011-01-20 09:52:56 +0000345 u32 seqno;
Chris Wilson9862e602011-01-04 22:22:17 +0000346
Chris Wilson475553d2011-01-20 09:52:56 +0000347 if (ring->obj == NULL)
348 return;
349
350 seqno = ring->get_seqno(ring);
Chris Wilsondb53a302011-02-03 11:57:46 +0000351 trace_i915_gem_request_complete(ring, seqno);
Chris Wilson9862e602011-01-04 22:22:17 +0000352
353 ring->irq_seqno = seqno;
Chris Wilson549f7362010-10-19 11:19:32 +0100354 wake_up_all(&ring->irq_queue);
Ben Widawsky3e0dc6b2011-06-29 10:26:42 -0700355 if (i915_enable_hangcheck) {
356 dev_priv->hangcheck_count = 0;
357 mod_timer(&dev_priv->hangcheck_timer,
358 jiffies +
359 msecs_to_jiffies(DRM_I915_HANGCHECK_PERIOD));
360 }
Chris Wilson549f7362010-10-19 11:19:32 +0100361}
362
Ben Widawsky4912d042011-04-25 11:25:20 -0700363static void gen6_pm_rps_work(struct work_struct *work)
Jesse Barnes3b8d8d92010-12-17 14:19:02 -0800364{
Ben Widawsky4912d042011-04-25 11:25:20 -0700365 drm_i915_private_t *dev_priv = container_of(work, drm_i915_private_t,
366 rps_work);
Jesse Barnes3b8d8d92010-12-17 14:19:02 -0800367 u8 new_delay = dev_priv->cur_delay;
Ben Widawsky4912d042011-04-25 11:25:20 -0700368 u32 pm_iir, pm_imr;
Jesse Barnes3b8d8d92010-12-17 14:19:02 -0800369
Ben Widawsky4912d042011-04-25 11:25:20 -0700370 spin_lock_irq(&dev_priv->rps_lock);
371 pm_iir = dev_priv->pm_iir;
372 dev_priv->pm_iir = 0;
373 pm_imr = I915_READ(GEN6_PMIMR);
Daniel Vettera9e26412011-09-08 14:00:21 +0200374 I915_WRITE(GEN6_PMIMR, 0);
Ben Widawsky4912d042011-04-25 11:25:20 -0700375 spin_unlock_irq(&dev_priv->rps_lock);
376
Jesse Barnes3b8d8d92010-12-17 14:19:02 -0800377 if (!pm_iir)
378 return;
379
Ben Widawsky4912d042011-04-25 11:25:20 -0700380 mutex_lock(&dev_priv->dev->struct_mutex);
Jesse Barnes3b8d8d92010-12-17 14:19:02 -0800381 if (pm_iir & GEN6_PM_RP_UP_THRESHOLD) {
382 if (dev_priv->cur_delay != dev_priv->max_delay)
383 new_delay = dev_priv->cur_delay + 1;
384 if (new_delay > dev_priv->max_delay)
385 new_delay = dev_priv->max_delay;
386 } else if (pm_iir & (GEN6_PM_RP_DOWN_THRESHOLD | GEN6_PM_RP_DOWN_TIMEOUT)) {
Ben Widawsky4912d042011-04-25 11:25:20 -0700387 gen6_gt_force_wake_get(dev_priv);
Jesse Barnes3b8d8d92010-12-17 14:19:02 -0800388 if (dev_priv->cur_delay != dev_priv->min_delay)
389 new_delay = dev_priv->cur_delay - 1;
390 if (new_delay < dev_priv->min_delay) {
391 new_delay = dev_priv->min_delay;
392 I915_WRITE(GEN6_RP_INTERRUPT_LIMITS,
393 I915_READ(GEN6_RP_INTERRUPT_LIMITS) |
394 ((new_delay << 16) & 0x3f0000));
395 } else {
396 /* Make sure we continue to get down interrupts
397 * until we hit the minimum frequency */
398 I915_WRITE(GEN6_RP_INTERRUPT_LIMITS,
399 I915_READ(GEN6_RP_INTERRUPT_LIMITS) & ~0x3f0000);
400 }
Ben Widawsky4912d042011-04-25 11:25:20 -0700401 gen6_gt_force_wake_put(dev_priv);
Jesse Barnes3b8d8d92010-12-17 14:19:02 -0800402 }
403
Ben Widawsky4912d042011-04-25 11:25:20 -0700404 gen6_set_rps(dev_priv->dev, new_delay);
Jesse Barnes3b8d8d92010-12-17 14:19:02 -0800405 dev_priv->cur_delay = new_delay;
406
Ben Widawsky4912d042011-04-25 11:25:20 -0700407 /*
408 * rps_lock not held here because clearing is non-destructive. There is
409 * an *extremely* unlikely race with gen6_rps_enable() that is prevented
410 * by holding struct_mutex for the duration of the write.
411 */
Ben Widawsky4912d042011-04-25 11:25:20 -0700412 mutex_unlock(&dev_priv->dev->struct_mutex);
Jesse Barnes3b8d8d92010-12-17 14:19:02 -0800413}
414
Daniel Vettere7b4c6b2012-03-30 20:24:35 +0200415static void snb_gt_irq_handler(struct drm_device *dev,
416 struct drm_i915_private *dev_priv,
417 u32 gt_iir)
418{
419
420 if (gt_iir & (GEN6_RENDER_USER_INTERRUPT |
421 GEN6_RENDER_PIPE_CONTROL_NOTIFY_INTERRUPT))
422 notify_ring(dev, &dev_priv->ring[RCS]);
423 if (gt_iir & GEN6_BSD_USER_INTERRUPT)
424 notify_ring(dev, &dev_priv->ring[VCS]);
425 if (gt_iir & GEN6_BLITTER_USER_INTERRUPT)
426 notify_ring(dev, &dev_priv->ring[BCS]);
427
428 if (gt_iir & (GT_GEN6_BLT_CS_ERROR_INTERRUPT |
429 GT_GEN6_BSD_CS_ERROR_INTERRUPT |
430 GT_RENDER_CS_ERROR_INTERRUPT)) {
431 DRM_ERROR("GT error interrupt 0x%08x\n", gt_iir);
432 i915_handle_error(dev, false);
433 }
434}
435
Chris Wilsonfc6826d2012-04-15 11:56:03 +0100436static void gen6_queue_rps_work(struct drm_i915_private *dev_priv,
437 u32 pm_iir)
438{
439 unsigned long flags;
440
441 /*
442 * IIR bits should never already be set because IMR should
443 * prevent an interrupt from being shown in IIR. The warning
444 * displays a case where we've unsafely cleared
445 * dev_priv->pm_iir. Although missing an interrupt of the same
446 * type is not a problem, it displays a problem in the logic.
447 *
448 * The mask bit in IMR is cleared by rps_work.
449 */
450
451 spin_lock_irqsave(&dev_priv->rps_lock, flags);
452 WARN(dev_priv->pm_iir & pm_iir, "Missed a PM interrupt\n");
453 dev_priv->pm_iir |= pm_iir;
454 I915_WRITE(GEN6_PMIMR, dev_priv->pm_iir);
455 POSTING_READ(GEN6_PMIMR);
456 spin_unlock_irqrestore(&dev_priv->rps_lock, flags);
457
458 queue_work(dev_priv->wq, &dev_priv->rps_work);
459}
460
Jesse Barnes7e231dbe2012-03-28 13:39:38 -0700461static irqreturn_t valleyview_irq_handler(DRM_IRQ_ARGS)
462{
463 struct drm_device *dev = (struct drm_device *) arg;
464 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
465 u32 iir, gt_iir, pm_iir;
466 irqreturn_t ret = IRQ_NONE;
467 unsigned long irqflags;
468 int pipe;
469 u32 pipe_stats[I915_MAX_PIPES];
470 u32 vblank_status;
471 int vblank = 0;
472 bool blc_event;
473
474 atomic_inc(&dev_priv->irq_received);
475
476 vblank_status = PIPE_START_VBLANK_INTERRUPT_STATUS |
477 PIPE_VBLANK_INTERRUPT_STATUS;
478
479 while (true) {
480 iir = I915_READ(VLV_IIR);
481 gt_iir = I915_READ(GTIIR);
482 pm_iir = I915_READ(GEN6_PMIIR);
483
484 if (gt_iir == 0 && pm_iir == 0 && iir == 0)
485 goto out;
486
487 ret = IRQ_HANDLED;
488
Daniel Vettere7b4c6b2012-03-30 20:24:35 +0200489 snb_gt_irq_handler(dev, dev_priv, gt_iir);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -0700490
491 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
492 for_each_pipe(pipe) {
493 int reg = PIPESTAT(pipe);
494 pipe_stats[pipe] = I915_READ(reg);
495
496 /*
497 * Clear the PIPE*STAT regs before the IIR
498 */
499 if (pipe_stats[pipe] & 0x8000ffff) {
500 if (pipe_stats[pipe] & PIPE_FIFO_UNDERRUN_STATUS)
501 DRM_DEBUG_DRIVER("pipe %c underrun\n",
502 pipe_name(pipe));
503 I915_WRITE(reg, pipe_stats[pipe]);
504 }
505 }
506 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
507
508 /* Consume port. Then clear IIR or we'll miss events */
509 if (iir & I915_DISPLAY_PORT_INTERRUPT) {
510 u32 hotplug_status = I915_READ(PORT_HOTPLUG_STAT);
511
512 DRM_DEBUG_DRIVER("hotplug event received, stat 0x%08x\n",
513 hotplug_status);
514 if (hotplug_status & dev_priv->hotplug_supported_mask)
515 queue_work(dev_priv->wq,
516 &dev_priv->hotplug_work);
517
518 I915_WRITE(PORT_HOTPLUG_STAT, hotplug_status);
519 I915_READ(PORT_HOTPLUG_STAT);
520 }
521
522
523 if (iir & I915_DISPLAY_PIPE_A_VBLANK_INTERRUPT) {
524 drm_handle_vblank(dev, 0);
525 vblank++;
Chris Wilsone0f608d2012-04-24 22:59:43 +0100526 intel_finish_page_flip(dev, 0);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -0700527 }
528
529 if (iir & I915_DISPLAY_PIPE_B_VBLANK_INTERRUPT) {
530 drm_handle_vblank(dev, 1);
531 vblank++;
Chris Wilsone0f608d2012-04-24 22:59:43 +0100532 intel_finish_page_flip(dev, 0);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -0700533 }
534
535 if (pipe_stats[pipe] & PIPE_LEGACY_BLC_EVENT_STATUS)
536 blc_event = true;
537
Chris Wilsonfc6826d2012-04-15 11:56:03 +0100538 if (pm_iir & GEN6_PM_DEFERRED_EVENTS)
539 gen6_queue_rps_work(dev_priv, pm_iir);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -0700540
541 I915_WRITE(GTIIR, gt_iir);
542 I915_WRITE(GEN6_PMIIR, pm_iir);
543 I915_WRITE(VLV_IIR, iir);
544 }
545
546out:
547 return ret;
548}
549
Jesse Barnes776ad802011-01-04 15:09:39 -0800550static void pch_irq_handler(struct drm_device *dev)
551{
552 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
553 u32 pch_iir;
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800554 int pipe;
Jesse Barnes776ad802011-01-04 15:09:39 -0800555
556 pch_iir = I915_READ(SDEIIR);
557
558 if (pch_iir & SDE_AUDIO_POWER_MASK)
559 DRM_DEBUG_DRIVER("PCH audio power change on port %d\n",
560 (pch_iir & SDE_AUDIO_POWER_MASK) >>
561 SDE_AUDIO_POWER_SHIFT);
562
563 if (pch_iir & SDE_GMBUS)
564 DRM_DEBUG_DRIVER("PCH GMBUS interrupt\n");
565
566 if (pch_iir & SDE_AUDIO_HDCP_MASK)
567 DRM_DEBUG_DRIVER("PCH HDCP audio interrupt\n");
568
569 if (pch_iir & SDE_AUDIO_TRANS_MASK)
570 DRM_DEBUG_DRIVER("PCH transcoder audio interrupt\n");
571
572 if (pch_iir & SDE_POISON)
573 DRM_ERROR("PCH poison interrupt\n");
574
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800575 if (pch_iir & SDE_FDI_MASK)
576 for_each_pipe(pipe)
577 DRM_DEBUG_DRIVER(" pipe %c FDI IIR: 0x%08x\n",
578 pipe_name(pipe),
579 I915_READ(FDI_RX_IIR(pipe)));
Jesse Barnes776ad802011-01-04 15:09:39 -0800580
581 if (pch_iir & (SDE_TRANSB_CRC_DONE | SDE_TRANSA_CRC_DONE))
582 DRM_DEBUG_DRIVER("PCH transcoder CRC done interrupt\n");
583
584 if (pch_iir & (SDE_TRANSB_CRC_ERR | SDE_TRANSA_CRC_ERR))
585 DRM_DEBUG_DRIVER("PCH transcoder CRC error interrupt\n");
586
587 if (pch_iir & SDE_TRANSB_FIFO_UNDER)
588 DRM_DEBUG_DRIVER("PCH transcoder B underrun interrupt\n");
589 if (pch_iir & SDE_TRANSA_FIFO_UNDER)
590 DRM_DEBUG_DRIVER("PCH transcoder A underrun interrupt\n");
591}
592
Jesse Barnesf71d4af2011-06-28 13:00:41 -0700593static irqreturn_t ivybridge_irq_handler(DRM_IRQ_ARGS)
Jesse Barnesb1f14ad2011-04-06 12:13:38 -0700594{
595 struct drm_device *dev = (struct drm_device *) arg;
596 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
597 int ret = IRQ_NONE;
598 u32 de_iir, gt_iir, de_ier, pch_iir, pm_iir;
599 struct drm_i915_master_private *master_priv;
600
601 atomic_inc(&dev_priv->irq_received);
602
603 /* disable master interrupt before clearing iir */
604 de_ier = I915_READ(DEIER);
605 I915_WRITE(DEIER, de_ier & ~DE_MASTER_IRQ_CONTROL);
606 POSTING_READ(DEIER);
607
608 de_iir = I915_READ(DEIIR);
609 gt_iir = I915_READ(GTIIR);
610 pch_iir = I915_READ(SDEIIR);
611 pm_iir = I915_READ(GEN6_PMIIR);
612
613 if (de_iir == 0 && gt_iir == 0 && pch_iir == 0 && pm_iir == 0)
614 goto done;
615
616 ret = IRQ_HANDLED;
617
618 if (dev->primary->master) {
619 master_priv = dev->primary->master->driver_priv;
620 if (master_priv->sarea_priv)
621 master_priv->sarea_priv->last_dispatch =
622 READ_BREADCRUMB(dev_priv);
623 }
624
Daniel Vettere7b4c6b2012-03-30 20:24:35 +0200625 snb_gt_irq_handler(dev, dev_priv, gt_iir);
Jesse Barnesb1f14ad2011-04-06 12:13:38 -0700626
627 if (de_iir & DE_GSE_IVB)
628 intel_opregion_gse_intr(dev);
629
630 if (de_iir & DE_PLANEA_FLIP_DONE_IVB) {
631 intel_prepare_page_flip(dev, 0);
632 intel_finish_page_flip_plane(dev, 0);
633 }
634
635 if (de_iir & DE_PLANEB_FLIP_DONE_IVB) {
636 intel_prepare_page_flip(dev, 1);
637 intel_finish_page_flip_plane(dev, 1);
638 }
639
640 if (de_iir & DE_PIPEA_VBLANK_IVB)
641 drm_handle_vblank(dev, 0);
642
Dan Carpenterf6b07f42011-05-25 12:56:56 +0300643 if (de_iir & DE_PIPEB_VBLANK_IVB)
Jesse Barnesb1f14ad2011-04-06 12:13:38 -0700644 drm_handle_vblank(dev, 1);
645
646 /* check event from PCH */
647 if (de_iir & DE_PCH_EVENT_IVB) {
648 if (pch_iir & SDE_HOTPLUG_MASK_CPT)
649 queue_work(dev_priv->wq, &dev_priv->hotplug_work);
650 pch_irq_handler(dev);
651 }
652
Chris Wilsonfc6826d2012-04-15 11:56:03 +0100653 if (pm_iir & GEN6_PM_DEFERRED_EVENTS)
654 gen6_queue_rps_work(dev_priv, pm_iir);
Jesse Barnesb1f14ad2011-04-06 12:13:38 -0700655
656 /* should clear PCH hotplug event before clear CPU irq */
657 I915_WRITE(SDEIIR, pch_iir);
658 I915_WRITE(GTIIR, gt_iir);
659 I915_WRITE(DEIIR, de_iir);
660 I915_WRITE(GEN6_PMIIR, pm_iir);
661
662done:
663 I915_WRITE(DEIER, de_ier);
664 POSTING_READ(DEIER);
665
666 return ret;
667}
668
Daniel Vettere7b4c6b2012-03-30 20:24:35 +0200669static void ilk_gt_irq_handler(struct drm_device *dev,
670 struct drm_i915_private *dev_priv,
671 u32 gt_iir)
672{
673 if (gt_iir & (GT_USER_INTERRUPT | GT_PIPE_NOTIFY))
674 notify_ring(dev, &dev_priv->ring[RCS]);
675 if (gt_iir & GT_BSD_USER_INTERRUPT)
676 notify_ring(dev, &dev_priv->ring[VCS]);
677}
678
Jesse Barnesf71d4af2011-06-28 13:00:41 -0700679static irqreturn_t ironlake_irq_handler(DRM_IRQ_ARGS)
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800680{
Jesse Barnes46979952011-04-07 13:53:55 -0700681 struct drm_device *dev = (struct drm_device *) arg;
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800682 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
683 int ret = IRQ_NONE;
Jesse Barnes3b8d8d92010-12-17 14:19:02 -0800684 u32 de_iir, gt_iir, de_ier, pch_iir, pm_iir;
Yuanhan Liu2d7b8362010-10-08 10:21:06 +0100685 u32 hotplug_mask;
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800686 struct drm_i915_master_private *master_priv;
Xiang, Haihao881f47b2010-09-19 14:40:43 +0100687
Jesse Barnes46979952011-04-07 13:53:55 -0700688 atomic_inc(&dev_priv->irq_received);
689
Zou, Nanhai2d109a82009-11-06 02:13:01 +0000690 /* disable master interrupt before clearing iir */
691 de_ier = I915_READ(DEIER);
692 I915_WRITE(DEIER, de_ier & ~DE_MASTER_IRQ_CONTROL);
Chris Wilson3143a2b2010-11-16 15:55:10 +0000693 POSTING_READ(DEIER);
Zou, Nanhai2d109a82009-11-06 02:13:01 +0000694
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800695 de_iir = I915_READ(DEIIR);
696 gt_iir = I915_READ(GTIIR);
Zhenyu Wangc6501562009-11-03 18:57:21 +0000697 pch_iir = I915_READ(SDEIIR);
Jesse Barnes3b8d8d92010-12-17 14:19:02 -0800698 pm_iir = I915_READ(GEN6_PMIIR);
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800699
Jesse Barnes3b8d8d92010-12-17 14:19:02 -0800700 if (de_iir == 0 && gt_iir == 0 && pch_iir == 0 &&
701 (!IS_GEN6(dev) || pm_iir == 0))
Zou Nan haic7c85102010-01-15 10:29:06 +0800702 goto done;
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800703
Yuanhan Liu2d7b8362010-10-08 10:21:06 +0100704 if (HAS_PCH_CPT(dev))
705 hotplug_mask = SDE_HOTPLUG_MASK_CPT;
706 else
707 hotplug_mask = SDE_HOTPLUG_MASK;
708
Zou Nan haic7c85102010-01-15 10:29:06 +0800709 ret = IRQ_HANDLED;
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800710
Zou Nan haic7c85102010-01-15 10:29:06 +0800711 if (dev->primary->master) {
712 master_priv = dev->primary->master->driver_priv;
713 if (master_priv->sarea_priv)
714 master_priv->sarea_priv->last_dispatch =
715 READ_BREADCRUMB(dev_priv);
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800716 }
717
Daniel Vettere7b4c6b2012-03-30 20:24:35 +0200718 if (IS_GEN5(dev))
719 ilk_gt_irq_handler(dev, dev_priv, gt_iir);
720 else
721 snb_gt_irq_handler(dev, dev_priv, gt_iir);
Zou Nan haic7c85102010-01-15 10:29:06 +0800722
723 if (de_iir & DE_GSE)
Chris Wilson3b617962010-08-24 09:02:58 +0100724 intel_opregion_gse_intr(dev);
Zou Nan haic7c85102010-01-15 10:29:06 +0800725
Zhenyu Wangf072d2e2010-02-09 09:46:19 +0800726 if (de_iir & DE_PLANEA_FLIP_DONE) {
Jesse Barnes013d5aa2010-01-29 11:18:31 -0800727 intel_prepare_page_flip(dev, 0);
Chris Wilson2bbda382010-09-02 17:59:39 +0100728 intel_finish_page_flip_plane(dev, 0);
Jesse Barnes013d5aa2010-01-29 11:18:31 -0800729 }
730
Zhenyu Wangf072d2e2010-02-09 09:46:19 +0800731 if (de_iir & DE_PLANEB_FLIP_DONE) {
732 intel_prepare_page_flip(dev, 1);
Chris Wilson2bbda382010-09-02 17:59:39 +0100733 intel_finish_page_flip_plane(dev, 1);
Jesse Barnes013d5aa2010-01-29 11:18:31 -0800734 }
Li Pengc062df62010-01-23 00:12:58 +0800735
Zhenyu Wangf072d2e2010-02-09 09:46:19 +0800736 if (de_iir & DE_PIPEA_VBLANK)
737 drm_handle_vblank(dev, 0);
738
739 if (de_iir & DE_PIPEB_VBLANK)
740 drm_handle_vblank(dev, 1);
741
Zou Nan haic7c85102010-01-15 10:29:06 +0800742 /* check event from PCH */
Jesse Barnes776ad802011-01-04 15:09:39 -0800743 if (de_iir & DE_PCH_EVENT) {
744 if (pch_iir & hotplug_mask)
745 queue_work(dev_priv->wq, &dev_priv->hotplug_work);
746 pch_irq_handler(dev);
747 }
Zou Nan haic7c85102010-01-15 10:29:06 +0800748
Jesse Barnesf97108d2010-01-29 11:27:07 -0800749 if (de_iir & DE_PCU_EVENT) {
Jesse Barnes7648fa92010-05-20 14:28:11 -0700750 I915_WRITE16(MEMINTRSTS, I915_READ(MEMINTRSTS));
Jesse Barnesf97108d2010-01-29 11:27:07 -0800751 i915_handle_rps_change(dev);
752 }
753
Chris Wilsonfc6826d2012-04-15 11:56:03 +0100754 if (IS_GEN6(dev) && pm_iir & GEN6_PM_DEFERRED_EVENTS)
755 gen6_queue_rps_work(dev_priv, pm_iir);
Jesse Barnes3b8d8d92010-12-17 14:19:02 -0800756
Zou Nan haic7c85102010-01-15 10:29:06 +0800757 /* should clear PCH hotplug event before clear CPU irq */
758 I915_WRITE(SDEIIR, pch_iir);
759 I915_WRITE(GTIIR, gt_iir);
760 I915_WRITE(DEIIR, de_iir);
Ben Widawsky4912d042011-04-25 11:25:20 -0700761 I915_WRITE(GEN6_PMIIR, pm_iir);
Zou Nan haic7c85102010-01-15 10:29:06 +0800762
763done:
Zou, Nanhai2d109a82009-11-06 02:13:01 +0000764 I915_WRITE(DEIER, de_ier);
Chris Wilson3143a2b2010-11-16 15:55:10 +0000765 POSTING_READ(DEIER);
Zou, Nanhai2d109a82009-11-06 02:13:01 +0000766
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800767 return ret;
768}
769
Jesse Barnes8a905232009-07-11 16:48:03 -0400770/**
771 * i915_error_work_func - do process context error handling work
772 * @work: work struct
773 *
774 * Fire an error uevent so userspace can see that a hang or error
775 * was detected.
776 */
777static void i915_error_work_func(struct work_struct *work)
778{
779 drm_i915_private_t *dev_priv = container_of(work, drm_i915_private_t,
780 error_work);
781 struct drm_device *dev = dev_priv->dev;
Ben Gamarif316a422009-09-14 17:48:46 -0400782 char *error_event[] = { "ERROR=1", NULL };
783 char *reset_event[] = { "RESET=1", NULL };
784 char *reset_done_event[] = { "ERROR=0", NULL };
Jesse Barnes8a905232009-07-11 16:48:03 -0400785
Ben Gamarif316a422009-09-14 17:48:46 -0400786 kobject_uevent_env(&dev->primary->kdev.kobj, KOBJ_CHANGE, error_event);
Jesse Barnes8a905232009-07-11 16:48:03 -0400787
Ben Gamariba1234d2009-09-14 17:48:47 -0400788 if (atomic_read(&dev_priv->mm.wedged)) {
Chris Wilsonf803aa52010-09-19 12:38:26 +0100789 DRM_DEBUG_DRIVER("resetting chip\n");
790 kobject_uevent_env(&dev->primary->kdev.kobj, KOBJ_CHANGE, reset_event);
791 if (!i915_reset(dev, GRDOM_RENDER)) {
792 atomic_set(&dev_priv->mm.wedged, 0);
793 kobject_uevent_env(&dev->primary->kdev.kobj, KOBJ_CHANGE, reset_done_event);
Ben Gamarif316a422009-09-14 17:48:46 -0400794 }
Chris Wilson30dbf0c2010-09-25 10:19:17 +0100795 complete_all(&dev_priv->error_completion);
Ben Gamarif316a422009-09-14 17:48:46 -0400796 }
Jesse Barnes8a905232009-07-11 16:48:03 -0400797}
798
Chris Wilson3bd3c932010-08-19 08:19:30 +0100799#ifdef CONFIG_DEBUG_FS
Chris Wilson9df30792010-02-18 10:24:56 +0000800static struct drm_i915_error_object *
Chris Wilsonbcfb2e22011-01-07 21:06:07 +0000801i915_error_object_create(struct drm_i915_private *dev_priv,
Chris Wilson05394f32010-11-08 19:18:58 +0000802 struct drm_i915_gem_object *src)
Chris Wilson9df30792010-02-18 10:24:56 +0000803{
804 struct drm_i915_error_object *dst;
Chris Wilson9df30792010-02-18 10:24:56 +0000805 int page, page_count;
Chris Wilsone56660d2010-08-07 11:01:26 +0100806 u32 reloc_offset;
Chris Wilson9df30792010-02-18 10:24:56 +0000807
Chris Wilson05394f32010-11-08 19:18:58 +0000808 if (src == NULL || src->pages == NULL)
Chris Wilson9df30792010-02-18 10:24:56 +0000809 return NULL;
810
Chris Wilson05394f32010-11-08 19:18:58 +0000811 page_count = src->base.size / PAGE_SIZE;
Chris Wilson9df30792010-02-18 10:24:56 +0000812
Akshay Joshi0206e352011-08-16 15:34:10 -0400813 dst = kmalloc(sizeof(*dst) + page_count * sizeof(u32 *), GFP_ATOMIC);
Chris Wilson9df30792010-02-18 10:24:56 +0000814 if (dst == NULL)
815 return NULL;
816
Chris Wilson05394f32010-11-08 19:18:58 +0000817 reloc_offset = src->gtt_offset;
Chris Wilson9df30792010-02-18 10:24:56 +0000818 for (page = 0; page < page_count; page++) {
Andrew Morton788885a2010-05-11 14:07:05 -0700819 unsigned long flags;
Chris Wilsone56660d2010-08-07 11:01:26 +0100820 void *d;
Andrew Morton788885a2010-05-11 14:07:05 -0700821
Chris Wilsone56660d2010-08-07 11:01:26 +0100822 d = kmalloc(PAGE_SIZE, GFP_ATOMIC);
Chris Wilson9df30792010-02-18 10:24:56 +0000823 if (d == NULL)
824 goto unwind;
Chris Wilsone56660d2010-08-07 11:01:26 +0100825
Andrew Morton788885a2010-05-11 14:07:05 -0700826 local_irq_save(flags);
Daniel Vetter74898d72012-02-15 23:50:22 +0100827 if (reloc_offset < dev_priv->mm.gtt_mappable_end &&
828 src->has_global_gtt_mapping) {
Chris Wilson172975aa2011-12-14 13:57:25 +0100829 void __iomem *s;
830
831 /* Simply ignore tiling or any overlapping fence.
832 * It's part of the error state, and this hopefully
833 * captures what the GPU read.
834 */
835
836 s = io_mapping_map_atomic_wc(dev_priv->mm.gtt_mapping,
837 reloc_offset);
838 memcpy_fromio(d, s, PAGE_SIZE);
839 io_mapping_unmap_atomic(s);
840 } else {
841 void *s;
842
843 drm_clflush_pages(&src->pages[page], 1);
844
845 s = kmap_atomic(src->pages[page]);
846 memcpy(d, s, PAGE_SIZE);
847 kunmap_atomic(s);
848
849 drm_clflush_pages(&src->pages[page], 1);
850 }
Andrew Morton788885a2010-05-11 14:07:05 -0700851 local_irq_restore(flags);
Chris Wilsone56660d2010-08-07 11:01:26 +0100852
Chris Wilson9df30792010-02-18 10:24:56 +0000853 dst->pages[page] = d;
Chris Wilsone56660d2010-08-07 11:01:26 +0100854
855 reloc_offset += PAGE_SIZE;
Chris Wilson9df30792010-02-18 10:24:56 +0000856 }
857 dst->page_count = page_count;
Chris Wilson05394f32010-11-08 19:18:58 +0000858 dst->gtt_offset = src->gtt_offset;
Chris Wilson9df30792010-02-18 10:24:56 +0000859
860 return dst;
861
862unwind:
863 while (page--)
864 kfree(dst->pages[page]);
865 kfree(dst);
866 return NULL;
867}
868
869static void
870i915_error_object_free(struct drm_i915_error_object *obj)
871{
872 int page;
873
874 if (obj == NULL)
875 return;
876
877 for (page = 0; page < obj->page_count; page++)
878 kfree(obj->pages[page]);
879
880 kfree(obj);
881}
882
883static void
884i915_error_state_free(struct drm_device *dev,
885 struct drm_i915_error_state *error)
886{
Chris Wilsone2f973d2011-01-27 19:15:11 +0000887 int i;
888
Chris Wilson52d39a22012-02-15 11:25:37 +0000889 for (i = 0; i < ARRAY_SIZE(error->ring); i++) {
890 i915_error_object_free(error->ring[i].batchbuffer);
891 i915_error_object_free(error->ring[i].ringbuffer);
892 kfree(error->ring[i].requests);
893 }
Chris Wilsone2f973d2011-01-27 19:15:11 +0000894
Chris Wilson9df30792010-02-18 10:24:56 +0000895 kfree(error->active_bo);
Chris Wilson6ef3d422010-08-04 20:26:07 +0100896 kfree(error->overlay);
Chris Wilson9df30792010-02-18 10:24:56 +0000897 kfree(error);
898}
Chris Wilson1b502472012-04-24 15:47:30 +0100899static void capture_bo(struct drm_i915_error_buffer *err,
900 struct drm_i915_gem_object *obj)
901{
902 err->size = obj->base.size;
903 err->name = obj->base.name;
904 err->seqno = obj->last_rendering_seqno;
905 err->gtt_offset = obj->gtt_offset;
906 err->read_domains = obj->base.read_domains;
907 err->write_domain = obj->base.write_domain;
908 err->fence_reg = obj->fence_reg;
909 err->pinned = 0;
910 if (obj->pin_count > 0)
911 err->pinned = 1;
912 if (obj->user_pin_count > 0)
913 err->pinned = -1;
914 err->tiling = obj->tiling_mode;
915 err->dirty = obj->dirty;
916 err->purgeable = obj->madv != I915_MADV_WILLNEED;
917 err->ring = obj->ring ? obj->ring->id : -1;
918 err->cache_level = obj->cache_level;
919}
Chris Wilson9df30792010-02-18 10:24:56 +0000920
Chris Wilson1b502472012-04-24 15:47:30 +0100921static u32 capture_active_bo(struct drm_i915_error_buffer *err,
922 int count, struct list_head *head)
Chris Wilsonc724e8a2010-11-22 08:07:02 +0000923{
924 struct drm_i915_gem_object *obj;
925 int i = 0;
926
927 list_for_each_entry(obj, head, mm_list) {
Chris Wilson1b502472012-04-24 15:47:30 +0100928 capture_bo(err++, obj);
Chris Wilsonc724e8a2010-11-22 08:07:02 +0000929 if (++i == count)
930 break;
Chris Wilson1b502472012-04-24 15:47:30 +0100931 }
Chris Wilsonc724e8a2010-11-22 08:07:02 +0000932
Chris Wilson1b502472012-04-24 15:47:30 +0100933 return i;
934}
935
936static u32 capture_pinned_bo(struct drm_i915_error_buffer *err,
937 int count, struct list_head *head)
938{
939 struct drm_i915_gem_object *obj;
940 int i = 0;
941
942 list_for_each_entry(obj, head, gtt_list) {
943 if (obj->pin_count == 0)
944 continue;
945
946 capture_bo(err++, obj);
947 if (++i == count)
948 break;
Chris Wilsonc724e8a2010-11-22 08:07:02 +0000949 }
950
951 return i;
952}
953
Chris Wilson748ebc62010-10-24 10:28:47 +0100954static void i915_gem_record_fences(struct drm_device *dev,
955 struct drm_i915_error_state *error)
956{
957 struct drm_i915_private *dev_priv = dev->dev_private;
958 int i;
959
960 /* Fences */
961 switch (INTEL_INFO(dev)->gen) {
Daniel Vetter775d17b2011-10-09 21:52:01 +0200962 case 7:
Chris Wilson748ebc62010-10-24 10:28:47 +0100963 case 6:
964 for (i = 0; i < 16; i++)
965 error->fence[i] = I915_READ64(FENCE_REG_SANDYBRIDGE_0 + (i * 8));
966 break;
967 case 5:
968 case 4:
969 for (i = 0; i < 16; i++)
970 error->fence[i] = I915_READ64(FENCE_REG_965_0 + (i * 8));
971 break;
972 case 3:
973 if (IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev))
974 for (i = 0; i < 8; i++)
975 error->fence[i+8] = I915_READ(FENCE_REG_945_8 + (i * 4));
976 case 2:
977 for (i = 0; i < 8; i++)
978 error->fence[i] = I915_READ(FENCE_REG_830_0 + (i * 4));
979 break;
980
981 }
982}
983
Chris Wilsonbcfb2e22011-01-07 21:06:07 +0000984static struct drm_i915_error_object *
985i915_error_first_batchbuffer(struct drm_i915_private *dev_priv,
986 struct intel_ring_buffer *ring)
987{
988 struct drm_i915_gem_object *obj;
989 u32 seqno;
990
991 if (!ring->get_seqno)
992 return NULL;
993
994 seqno = ring->get_seqno(ring);
995 list_for_each_entry(obj, &dev_priv->mm.active_list, mm_list) {
996 if (obj->ring != ring)
997 continue;
998
Chris Wilsonc37d9a52011-01-12 20:33:01 +0000999 if (i915_seqno_passed(seqno, obj->last_rendering_seqno))
Chris Wilsonbcfb2e22011-01-07 21:06:07 +00001000 continue;
1001
1002 if ((obj->base.read_domains & I915_GEM_DOMAIN_COMMAND) == 0)
1003 continue;
1004
1005 /* We need to copy these to an anonymous buffer as the simplest
1006 * method to avoid being overwritten by userspace.
1007 */
1008 return i915_error_object_create(dev_priv, obj);
1009 }
1010
1011 return NULL;
1012}
1013
Daniel Vetterd27b1e02011-12-14 13:57:01 +01001014static void i915_record_ring_state(struct drm_device *dev,
1015 struct drm_i915_error_state *error,
1016 struct intel_ring_buffer *ring)
1017{
1018 struct drm_i915_private *dev_priv = dev->dev_private;
1019
Daniel Vetter33f3f512011-12-14 13:57:39 +01001020 if (INTEL_INFO(dev)->gen >= 6) {
Daniel Vetter33f3f512011-12-14 13:57:39 +01001021 error->fault_reg[ring->id] = I915_READ(RING_FAULT_REG(ring));
Daniel Vetter7e3b8732012-02-01 22:26:45 +01001022 error->semaphore_mboxes[ring->id][0]
1023 = I915_READ(RING_SYNC_0(ring->mmio_base));
1024 error->semaphore_mboxes[ring->id][1]
1025 = I915_READ(RING_SYNC_1(ring->mmio_base));
Daniel Vetter33f3f512011-12-14 13:57:39 +01001026 }
Daniel Vetterc1cd90e2011-12-14 13:57:02 +01001027
Daniel Vetterd27b1e02011-12-14 13:57:01 +01001028 if (INTEL_INFO(dev)->gen >= 4) {
Daniel Vetter9d2f41f2012-04-02 21:41:45 +02001029 error->faddr[ring->id] = I915_READ(RING_DMA_FADD(ring->mmio_base));
Daniel Vetterd27b1e02011-12-14 13:57:01 +01001030 error->ipeir[ring->id] = I915_READ(RING_IPEIR(ring->mmio_base));
1031 error->ipehr[ring->id] = I915_READ(RING_IPEHR(ring->mmio_base));
1032 error->instdone[ring->id] = I915_READ(RING_INSTDONE(ring->mmio_base));
Daniel Vetterc1cd90e2011-12-14 13:57:02 +01001033 error->instps[ring->id] = I915_READ(RING_INSTPS(ring->mmio_base));
Daniel Vetterd27b1e02011-12-14 13:57:01 +01001034 if (ring->id == RCS) {
Daniel Vetterd27b1e02011-12-14 13:57:01 +01001035 error->instdone1 = I915_READ(INSTDONE1);
1036 error->bbaddr = I915_READ64(BB_ADDR);
1037 }
1038 } else {
Daniel Vetter9d2f41f2012-04-02 21:41:45 +02001039 error->faddr[ring->id] = I915_READ(DMA_FADD_I8XX);
Daniel Vetterd27b1e02011-12-14 13:57:01 +01001040 error->ipeir[ring->id] = I915_READ(IPEIR);
1041 error->ipehr[ring->id] = I915_READ(IPEHR);
1042 error->instdone[ring->id] = I915_READ(INSTDONE);
Daniel Vetterd27b1e02011-12-14 13:57:01 +01001043 }
1044
Daniel Vetterc1cd90e2011-12-14 13:57:02 +01001045 error->instpm[ring->id] = I915_READ(RING_INSTPM(ring->mmio_base));
Daniel Vetterd27b1e02011-12-14 13:57:01 +01001046 error->seqno[ring->id] = ring->get_seqno(ring);
1047 error->acthd[ring->id] = intel_ring_get_active_head(ring);
Daniel Vetterc1cd90e2011-12-14 13:57:02 +01001048 error->head[ring->id] = I915_READ_HEAD(ring);
1049 error->tail[ring->id] = I915_READ_TAIL(ring);
Daniel Vetter7e3b8732012-02-01 22:26:45 +01001050
1051 error->cpu_ring_head[ring->id] = ring->head;
1052 error->cpu_ring_tail[ring->id] = ring->tail;
Daniel Vetterd27b1e02011-12-14 13:57:01 +01001053}
1054
Chris Wilson52d39a22012-02-15 11:25:37 +00001055static void i915_gem_record_rings(struct drm_device *dev,
1056 struct drm_i915_error_state *error)
1057{
1058 struct drm_i915_private *dev_priv = dev->dev_private;
1059 struct drm_i915_gem_request *request;
1060 int i, count;
1061
1062 for (i = 0; i < I915_NUM_RINGS; i++) {
1063 struct intel_ring_buffer *ring = &dev_priv->ring[i];
1064
1065 if (ring->obj == NULL)
1066 continue;
1067
1068 i915_record_ring_state(dev, error, ring);
1069
1070 error->ring[i].batchbuffer =
1071 i915_error_first_batchbuffer(dev_priv, ring);
1072
1073 error->ring[i].ringbuffer =
1074 i915_error_object_create(dev_priv, ring->obj);
1075
1076 count = 0;
1077 list_for_each_entry(request, &ring->request_list, list)
1078 count++;
1079
1080 error->ring[i].num_requests = count;
1081 error->ring[i].requests =
1082 kmalloc(count*sizeof(struct drm_i915_error_request),
1083 GFP_ATOMIC);
1084 if (error->ring[i].requests == NULL) {
1085 error->ring[i].num_requests = 0;
1086 continue;
1087 }
1088
1089 count = 0;
1090 list_for_each_entry(request, &ring->request_list, list) {
1091 struct drm_i915_error_request *erq;
1092
1093 erq = &error->ring[i].requests[count++];
1094 erq->seqno = request->seqno;
1095 erq->jiffies = request->emitted_jiffies;
Chris Wilsonee4f42b2012-02-15 11:25:38 +00001096 erq->tail = request->tail;
Chris Wilson52d39a22012-02-15 11:25:37 +00001097 }
1098 }
1099}
1100
Jesse Barnes8a905232009-07-11 16:48:03 -04001101/**
1102 * i915_capture_error_state - capture an error record for later analysis
1103 * @dev: drm device
1104 *
1105 * Should be called when an error is detected (either a hang or an error
1106 * interrupt) to capture error state from the time of the error. Fills
1107 * out a structure which becomes available in debugfs for user level tools
1108 * to pick up.
1109 */
Jesse Barnes63eeaf32009-06-18 16:56:52 -07001110static void i915_capture_error_state(struct drm_device *dev)
1111{
1112 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson05394f32010-11-08 19:18:58 +00001113 struct drm_i915_gem_object *obj;
Jesse Barnes63eeaf32009-06-18 16:56:52 -07001114 struct drm_i915_error_state *error;
1115 unsigned long flags;
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001116 int i, pipe;
Jesse Barnes63eeaf32009-06-18 16:56:52 -07001117
1118 spin_lock_irqsave(&dev_priv->error_lock, flags);
Chris Wilson9df30792010-02-18 10:24:56 +00001119 error = dev_priv->first_error;
1120 spin_unlock_irqrestore(&dev_priv->error_lock, flags);
1121 if (error)
1122 return;
Jesse Barnes63eeaf32009-06-18 16:56:52 -07001123
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001124 /* Account for pipe specific data like PIPE*STAT */
Daniel Vetter33f3f512011-12-14 13:57:39 +01001125 error = kzalloc(sizeof(*error), GFP_ATOMIC);
Jesse Barnes63eeaf32009-06-18 16:56:52 -07001126 if (!error) {
Chris Wilson9df30792010-02-18 10:24:56 +00001127 DRM_DEBUG_DRIVER("out of memory, not capturing error state\n");
1128 return;
Jesse Barnes63eeaf32009-06-18 16:56:52 -07001129 }
1130
Chris Wilsonb6f78332011-02-01 14:15:55 +00001131 DRM_INFO("capturing error event; look for more information in /debug/dri/%d/i915_error_state\n",
1132 dev->primary->index);
Chris Wilson2fa772f2010-10-01 13:23:27 +01001133
Jesse Barnes63eeaf32009-06-18 16:56:52 -07001134 error->eir = I915_READ(EIR);
1135 error->pgtbl_er = I915_READ(PGTBL_ER);
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001136 for_each_pipe(pipe)
1137 error->pipestat[pipe] = I915_READ(PIPESTAT(pipe));
Daniel Vetterd27b1e02011-12-14 13:57:01 +01001138
Daniel Vetter33f3f512011-12-14 13:57:39 +01001139 if (INTEL_INFO(dev)->gen >= 6) {
Chris Wilsonf4068392010-10-27 20:36:41 +01001140 error->error = I915_READ(ERROR_GEN6);
Daniel Vetter33f3f512011-12-14 13:57:39 +01001141 error->done_reg = I915_READ(DONE_REG);
1142 }
Chris Wilsonadd354d2010-10-29 19:00:51 +01001143
Chris Wilson748ebc62010-10-24 10:28:47 +01001144 i915_gem_record_fences(dev, error);
Chris Wilson52d39a22012-02-15 11:25:37 +00001145 i915_gem_record_rings(dev, error);
Chris Wilson9df30792010-02-18 10:24:56 +00001146
Chris Wilsonc724e8a2010-11-22 08:07:02 +00001147 /* Record buffers on the active and pinned lists. */
Chris Wilson9df30792010-02-18 10:24:56 +00001148 error->active_bo = NULL;
Chris Wilsonc724e8a2010-11-22 08:07:02 +00001149 error->pinned_bo = NULL;
Chris Wilson9df30792010-02-18 10:24:56 +00001150
Chris Wilsonbcfb2e22011-01-07 21:06:07 +00001151 i = 0;
1152 list_for_each_entry(obj, &dev_priv->mm.active_list, mm_list)
1153 i++;
1154 error->active_bo_count = i;
Chris Wilson1b502472012-04-24 15:47:30 +01001155 list_for_each_entry(obj, &dev_priv->mm.gtt_list, gtt_list)
1156 if (obj->pin_count)
1157 i++;
Chris Wilsonbcfb2e22011-01-07 21:06:07 +00001158 error->pinned_bo_count = i - error->active_bo_count;
Chris Wilsonc724e8a2010-11-22 08:07:02 +00001159
Chris Wilson8e934db2011-01-24 12:34:00 +00001160 error->active_bo = NULL;
1161 error->pinned_bo = NULL;
Chris Wilsonbcfb2e22011-01-07 21:06:07 +00001162 if (i) {
1163 error->active_bo = kmalloc(sizeof(*error->active_bo)*i,
Chris Wilson9df30792010-02-18 10:24:56 +00001164 GFP_ATOMIC);
Chris Wilsonc724e8a2010-11-22 08:07:02 +00001165 if (error->active_bo)
1166 error->pinned_bo =
1167 error->active_bo + error->active_bo_count;
Jesse Barnes63eeaf32009-06-18 16:56:52 -07001168 }
1169
Chris Wilsonc724e8a2010-11-22 08:07:02 +00001170 if (error->active_bo)
1171 error->active_bo_count =
Chris Wilson1b502472012-04-24 15:47:30 +01001172 capture_active_bo(error->active_bo,
1173 error->active_bo_count,
1174 &dev_priv->mm.active_list);
Chris Wilsonc724e8a2010-11-22 08:07:02 +00001175
1176 if (error->pinned_bo)
1177 error->pinned_bo_count =
Chris Wilson1b502472012-04-24 15:47:30 +01001178 capture_pinned_bo(error->pinned_bo,
1179 error->pinned_bo_count,
1180 &dev_priv->mm.gtt_list);
Chris Wilsonc724e8a2010-11-22 08:07:02 +00001181
Jesse Barnes8a905232009-07-11 16:48:03 -04001182 do_gettimeofday(&error->time);
1183
Chris Wilson6ef3d422010-08-04 20:26:07 +01001184 error->overlay = intel_overlay_capture_error_state(dev);
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +00001185 error->display = intel_display_capture_error_state(dev);
Chris Wilson6ef3d422010-08-04 20:26:07 +01001186
Chris Wilson9df30792010-02-18 10:24:56 +00001187 spin_lock_irqsave(&dev_priv->error_lock, flags);
1188 if (dev_priv->first_error == NULL) {
1189 dev_priv->first_error = error;
1190 error = NULL;
1191 }
Jesse Barnes63eeaf32009-06-18 16:56:52 -07001192 spin_unlock_irqrestore(&dev_priv->error_lock, flags);
Chris Wilson9df30792010-02-18 10:24:56 +00001193
1194 if (error)
1195 i915_error_state_free(dev, error);
1196}
1197
1198void i915_destroy_error_state(struct drm_device *dev)
1199{
1200 struct drm_i915_private *dev_priv = dev->dev_private;
1201 struct drm_i915_error_state *error;
Ben Widawsky6dc0e812012-01-23 15:30:02 -08001202 unsigned long flags;
Chris Wilson9df30792010-02-18 10:24:56 +00001203
Ben Widawsky6dc0e812012-01-23 15:30:02 -08001204 spin_lock_irqsave(&dev_priv->error_lock, flags);
Chris Wilson9df30792010-02-18 10:24:56 +00001205 error = dev_priv->first_error;
1206 dev_priv->first_error = NULL;
Ben Widawsky6dc0e812012-01-23 15:30:02 -08001207 spin_unlock_irqrestore(&dev_priv->error_lock, flags);
Chris Wilson9df30792010-02-18 10:24:56 +00001208
1209 if (error)
1210 i915_error_state_free(dev, error);
Jesse Barnes63eeaf32009-06-18 16:56:52 -07001211}
Chris Wilson3bd3c932010-08-19 08:19:30 +01001212#else
1213#define i915_capture_error_state(x)
1214#endif
Jesse Barnes63eeaf32009-06-18 16:56:52 -07001215
Chris Wilson35aed2e2010-05-27 13:18:12 +01001216static void i915_report_and_clear_eir(struct drm_device *dev)
Jesse Barnes8a905232009-07-11 16:48:03 -04001217{
1218 struct drm_i915_private *dev_priv = dev->dev_private;
1219 u32 eir = I915_READ(EIR);
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001220 int pipe;
Jesse Barnes8a905232009-07-11 16:48:03 -04001221
Chris Wilson35aed2e2010-05-27 13:18:12 +01001222 if (!eir)
1223 return;
Jesse Barnes8a905232009-07-11 16:48:03 -04001224
Joe Perchesa70491c2012-03-18 13:00:11 -07001225 pr_err("render error detected, EIR: 0x%08x\n", eir);
Jesse Barnes8a905232009-07-11 16:48:03 -04001226
1227 if (IS_G4X(dev)) {
1228 if (eir & (GM45_ERROR_MEM_PRIV | GM45_ERROR_CP_PRIV)) {
1229 u32 ipeir = I915_READ(IPEIR_I965);
1230
Joe Perchesa70491c2012-03-18 13:00:11 -07001231 pr_err(" IPEIR: 0x%08x\n", I915_READ(IPEIR_I965));
1232 pr_err(" IPEHR: 0x%08x\n", I915_READ(IPEHR_I965));
1233 pr_err(" INSTDONE: 0x%08x\n",
Jesse Barnes8a905232009-07-11 16:48:03 -04001234 I915_READ(INSTDONE_I965));
Joe Perchesa70491c2012-03-18 13:00:11 -07001235 pr_err(" INSTPS: 0x%08x\n", I915_READ(INSTPS));
1236 pr_err(" INSTDONE1: 0x%08x\n", I915_READ(INSTDONE1));
1237 pr_err(" ACTHD: 0x%08x\n", I915_READ(ACTHD_I965));
Jesse Barnes8a905232009-07-11 16:48:03 -04001238 I915_WRITE(IPEIR_I965, ipeir);
Chris Wilson3143a2b2010-11-16 15:55:10 +00001239 POSTING_READ(IPEIR_I965);
Jesse Barnes8a905232009-07-11 16:48:03 -04001240 }
1241 if (eir & GM45_ERROR_PAGE_TABLE) {
1242 u32 pgtbl_err = I915_READ(PGTBL_ER);
Joe Perchesa70491c2012-03-18 13:00:11 -07001243 pr_err("page table error\n");
1244 pr_err(" PGTBL_ER: 0x%08x\n", pgtbl_err);
Jesse Barnes8a905232009-07-11 16:48:03 -04001245 I915_WRITE(PGTBL_ER, pgtbl_err);
Chris Wilson3143a2b2010-11-16 15:55:10 +00001246 POSTING_READ(PGTBL_ER);
Jesse Barnes8a905232009-07-11 16:48:03 -04001247 }
1248 }
1249
Chris Wilsona6c45cf2010-09-17 00:32:17 +01001250 if (!IS_GEN2(dev)) {
Jesse Barnes8a905232009-07-11 16:48:03 -04001251 if (eir & I915_ERROR_PAGE_TABLE) {
1252 u32 pgtbl_err = I915_READ(PGTBL_ER);
Joe Perchesa70491c2012-03-18 13:00:11 -07001253 pr_err("page table error\n");
1254 pr_err(" PGTBL_ER: 0x%08x\n", pgtbl_err);
Jesse Barnes8a905232009-07-11 16:48:03 -04001255 I915_WRITE(PGTBL_ER, pgtbl_err);
Chris Wilson3143a2b2010-11-16 15:55:10 +00001256 POSTING_READ(PGTBL_ER);
Jesse Barnes8a905232009-07-11 16:48:03 -04001257 }
1258 }
1259
1260 if (eir & I915_ERROR_MEMORY_REFRESH) {
Joe Perchesa70491c2012-03-18 13:00:11 -07001261 pr_err("memory refresh error:\n");
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001262 for_each_pipe(pipe)
Joe Perchesa70491c2012-03-18 13:00:11 -07001263 pr_err("pipe %c stat: 0x%08x\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001264 pipe_name(pipe), I915_READ(PIPESTAT(pipe)));
Jesse Barnes8a905232009-07-11 16:48:03 -04001265 /* pipestat has already been acked */
1266 }
1267 if (eir & I915_ERROR_INSTRUCTION) {
Joe Perchesa70491c2012-03-18 13:00:11 -07001268 pr_err("instruction error\n");
1269 pr_err(" INSTPM: 0x%08x\n", I915_READ(INSTPM));
Chris Wilsona6c45cf2010-09-17 00:32:17 +01001270 if (INTEL_INFO(dev)->gen < 4) {
Jesse Barnes8a905232009-07-11 16:48:03 -04001271 u32 ipeir = I915_READ(IPEIR);
1272
Joe Perchesa70491c2012-03-18 13:00:11 -07001273 pr_err(" IPEIR: 0x%08x\n", I915_READ(IPEIR));
1274 pr_err(" IPEHR: 0x%08x\n", I915_READ(IPEHR));
1275 pr_err(" INSTDONE: 0x%08x\n", I915_READ(INSTDONE));
1276 pr_err(" ACTHD: 0x%08x\n", I915_READ(ACTHD));
Jesse Barnes8a905232009-07-11 16:48:03 -04001277 I915_WRITE(IPEIR, ipeir);
Chris Wilson3143a2b2010-11-16 15:55:10 +00001278 POSTING_READ(IPEIR);
Jesse Barnes8a905232009-07-11 16:48:03 -04001279 } else {
1280 u32 ipeir = I915_READ(IPEIR_I965);
1281
Joe Perchesa70491c2012-03-18 13:00:11 -07001282 pr_err(" IPEIR: 0x%08x\n", I915_READ(IPEIR_I965));
1283 pr_err(" IPEHR: 0x%08x\n", I915_READ(IPEHR_I965));
1284 pr_err(" INSTDONE: 0x%08x\n",
Jesse Barnes8a905232009-07-11 16:48:03 -04001285 I915_READ(INSTDONE_I965));
Joe Perchesa70491c2012-03-18 13:00:11 -07001286 pr_err(" INSTPS: 0x%08x\n", I915_READ(INSTPS));
1287 pr_err(" INSTDONE1: 0x%08x\n", I915_READ(INSTDONE1));
1288 pr_err(" ACTHD: 0x%08x\n", I915_READ(ACTHD_I965));
Jesse Barnes8a905232009-07-11 16:48:03 -04001289 I915_WRITE(IPEIR_I965, ipeir);
Chris Wilson3143a2b2010-11-16 15:55:10 +00001290 POSTING_READ(IPEIR_I965);
Jesse Barnes8a905232009-07-11 16:48:03 -04001291 }
1292 }
1293
1294 I915_WRITE(EIR, eir);
Chris Wilson3143a2b2010-11-16 15:55:10 +00001295 POSTING_READ(EIR);
Jesse Barnes8a905232009-07-11 16:48:03 -04001296 eir = I915_READ(EIR);
1297 if (eir) {
1298 /*
1299 * some errors might have become stuck,
1300 * mask them.
1301 */
1302 DRM_ERROR("EIR stuck: 0x%08x, masking\n", eir);
1303 I915_WRITE(EMR, I915_READ(EMR) | eir);
1304 I915_WRITE(IIR, I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT);
1305 }
Chris Wilson35aed2e2010-05-27 13:18:12 +01001306}
1307
1308/**
1309 * i915_handle_error - handle an error interrupt
1310 * @dev: drm device
1311 *
1312 * Do some basic checking of regsiter state at error interrupt time and
1313 * dump it to the syslog. Also call i915_capture_error_state() to make
1314 * sure we get a record and make it available in debugfs. Fire a uevent
1315 * so userspace knows something bad happened (should trigger collection
1316 * of a ring dump etc.).
1317 */
Chris Wilson527f9e92010-11-11 01:16:58 +00001318void i915_handle_error(struct drm_device *dev, bool wedged)
Chris Wilson35aed2e2010-05-27 13:18:12 +01001319{
1320 struct drm_i915_private *dev_priv = dev->dev_private;
1321
1322 i915_capture_error_state(dev);
1323 i915_report_and_clear_eir(dev);
Jesse Barnes8a905232009-07-11 16:48:03 -04001324
Ben Gamariba1234d2009-09-14 17:48:47 -04001325 if (wedged) {
Chris Wilson30dbf0c2010-09-25 10:19:17 +01001326 INIT_COMPLETION(dev_priv->error_completion);
Ben Gamariba1234d2009-09-14 17:48:47 -04001327 atomic_set(&dev_priv->mm.wedged, 1);
1328
Ben Gamari11ed50e2009-09-14 17:48:45 -04001329 /*
1330 * Wakeup waiting processes so they don't hang
1331 */
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001332 wake_up_all(&dev_priv->ring[RCS].irq_queue);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001333 if (HAS_BSD(dev))
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001334 wake_up_all(&dev_priv->ring[VCS].irq_queue);
Chris Wilson549f7362010-10-19 11:19:32 +01001335 if (HAS_BLT(dev))
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001336 wake_up_all(&dev_priv->ring[BCS].irq_queue);
Ben Gamari11ed50e2009-09-14 17:48:45 -04001337 }
1338
Eric Anholt9c9fe1f2009-08-03 16:09:16 -07001339 queue_work(dev_priv->wq, &dev_priv->error_work);
Jesse Barnes8a905232009-07-11 16:48:03 -04001340}
1341
Simon Farnsworth4e5359c2010-09-01 17:47:52 +01001342static void i915_pageflip_stall_check(struct drm_device *dev, int pipe)
1343{
1344 drm_i915_private_t *dev_priv = dev->dev_private;
1345 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
1346 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Chris Wilson05394f32010-11-08 19:18:58 +00001347 struct drm_i915_gem_object *obj;
Simon Farnsworth4e5359c2010-09-01 17:47:52 +01001348 struct intel_unpin_work *work;
1349 unsigned long flags;
1350 bool stall_detected;
1351
1352 /* Ignore early vblank irqs */
1353 if (intel_crtc == NULL)
1354 return;
1355
1356 spin_lock_irqsave(&dev->event_lock, flags);
1357 work = intel_crtc->unpin_work;
1358
1359 if (work == NULL || work->pending || !work->enable_stall_check) {
1360 /* Either the pending flip IRQ arrived, or we're too early. Don't check */
1361 spin_unlock_irqrestore(&dev->event_lock, flags);
1362 return;
1363 }
1364
1365 /* Potential stall - if we see that the flip has happened, assume a missed interrupt */
Chris Wilson05394f32010-11-08 19:18:58 +00001366 obj = work->pending_flip_obj;
Chris Wilsona6c45cf2010-09-17 00:32:17 +01001367 if (INTEL_INFO(dev)->gen >= 4) {
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001368 int dspsurf = DSPSURF(intel_crtc->plane);
Armin Reese446f2542012-03-30 16:20:16 -07001369 stall_detected = I915_HI_DISPBASE(I915_READ(dspsurf)) ==
1370 obj->gtt_offset;
Simon Farnsworth4e5359c2010-09-01 17:47:52 +01001371 } else {
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001372 int dspaddr = DSPADDR(intel_crtc->plane);
Chris Wilson05394f32010-11-08 19:18:58 +00001373 stall_detected = I915_READ(dspaddr) == (obj->gtt_offset +
Ville Syrjälä01f2c772011-12-20 00:06:49 +02001374 crtc->y * crtc->fb->pitches[0] +
Simon Farnsworth4e5359c2010-09-01 17:47:52 +01001375 crtc->x * crtc->fb->bits_per_pixel/8);
1376 }
1377
1378 spin_unlock_irqrestore(&dev->event_lock, flags);
1379
1380 if (stall_detected) {
1381 DRM_DEBUG_DRIVER("Pageflip stall detected\n");
1382 intel_prepare_page_flip(dev, intel_crtc->plane);
1383 }
1384}
1385
Dave Airlieaf6061a2008-05-07 12:15:39 +10001386static int i915_emit_irq(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387{
1388 drm_i915_private_t *dev_priv = dev->dev_private;
Dave Airlie7c1c2872008-11-28 14:22:24 +10001389 struct drm_i915_master_private *master_priv = dev->primary->master->driver_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390
1391 i915_kernel_lost_context(dev);
1392
Zhao Yakui44d98a62009-10-09 11:39:40 +08001393 DRM_DEBUG_DRIVER("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394
Kristian Høgsbergc99b0582008-08-20 11:20:13 -04001395 dev_priv->counter++;
Alan Hourihanec29b6692006-08-12 16:29:24 +10001396 if (dev_priv->counter > 0x7FFFFFFFUL)
Kristian Høgsbergc99b0582008-08-20 11:20:13 -04001397 dev_priv->counter = 1;
Dave Airlie7c1c2872008-11-28 14:22:24 +10001398 if (master_priv->sarea_priv)
1399 master_priv->sarea_priv->last_enqueue = dev_priv->counter;
Alan Hourihanec29b6692006-08-12 16:29:24 +10001400
Chris Wilsone1f99ce2010-10-27 12:45:26 +01001401 if (BEGIN_LP_RING(4) == 0) {
1402 OUT_RING(MI_STORE_DWORD_INDEX);
1403 OUT_RING(I915_BREADCRUMB_INDEX << MI_STORE_DWORD_INDEX_SHIFT);
1404 OUT_RING(dev_priv->counter);
1405 OUT_RING(MI_USER_INTERRUPT);
1406 ADVANCE_LP_RING();
1407 }
Dave Airliebc5f4522007-11-05 12:50:58 +10001408
Alan Hourihanec29b6692006-08-12 16:29:24 +10001409 return dev_priv->counter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410}
1411
Dave Airlie84b1fd12007-07-11 15:53:27 +10001412static int i915_wait_irq(struct drm_device * dev, int irq_nr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413{
1414 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Dave Airlie7c1c2872008-11-28 14:22:24 +10001415 struct drm_i915_master_private *master_priv = dev->primary->master->driver_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416 int ret = 0;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001417 struct intel_ring_buffer *ring = LP_RING(dev_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418
Zhao Yakui44d98a62009-10-09 11:39:40 +08001419 DRM_DEBUG_DRIVER("irq_nr=%d breadcrumb=%d\n", irq_nr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420 READ_BREADCRUMB(dev_priv));
1421
Eric Anholted4cb412008-07-29 12:10:39 -07001422 if (READ_BREADCRUMB(dev_priv) >= irq_nr) {
Dave Airlie7c1c2872008-11-28 14:22:24 +10001423 if (master_priv->sarea_priv)
1424 master_priv->sarea_priv->last_dispatch = READ_BREADCRUMB(dev_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425 return 0;
Eric Anholted4cb412008-07-29 12:10:39 -07001426 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427
Dave Airlie7c1c2872008-11-28 14:22:24 +10001428 if (master_priv->sarea_priv)
1429 master_priv->sarea_priv->perf_boxes |= I915_BOX_WAIT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430
Chris Wilsonb13c2b92010-12-13 16:54:50 +00001431 if (ring->irq_get(ring)) {
1432 DRM_WAIT_ON(ret, ring->irq_queue, 3 * DRM_HZ,
1433 READ_BREADCRUMB(dev_priv) >= irq_nr);
1434 ring->irq_put(ring);
Chris Wilson5a9a8d12011-01-23 13:03:24 +00001435 } else if (wait_for(READ_BREADCRUMB(dev_priv) >= irq_nr, 3000))
1436 ret = -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437
Eric Anholt20caafa2007-08-25 19:22:43 +10001438 if (ret == -EBUSY) {
Márton Németh3e684ea2008-01-24 15:58:57 +10001439 DRM_ERROR("EBUSY -- rec: %d emitted: %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440 READ_BREADCRUMB(dev_priv), (int)dev_priv->counter);
1441 }
1442
Dave Airlieaf6061a2008-05-07 12:15:39 +10001443 return ret;
1444}
1445
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446/* Needs the lock as it touches the ring.
1447 */
Eric Anholtc153f452007-09-03 12:06:45 +10001448int i915_irq_emit(struct drm_device *dev, void *data,
1449 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholtc153f452007-09-03 12:06:45 +10001452 drm_i915_irq_emit_t *emit = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453 int result;
1454
Daniel Vettercd9d4e92012-04-24 08:29:42 +02001455 if (drm_core_check_feature(dev, DRIVER_MODESET))
1456 return -ENODEV;
1457
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001458 if (!dev_priv || !LP_RING(dev_priv)->virtual_start) {
Márton Németh3e684ea2008-01-24 15:58:57 +10001459 DRM_ERROR("called with no initialization\n");
Eric Anholt20caafa2007-08-25 19:22:43 +10001460 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461 }
Eric Anholt299eb932009-02-24 22:14:12 -08001462
1463 RING_LOCK_TEST_WITH_RETURN(dev, file_priv);
1464
Eric Anholt546b0972008-09-01 16:45:29 -07001465 mutex_lock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466 result = i915_emit_irq(dev);
Eric Anholt546b0972008-09-01 16:45:29 -07001467 mutex_unlock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468
Eric Anholtc153f452007-09-03 12:06:45 +10001469 if (DRM_COPY_TO_USER(emit->irq_seq, &result, sizeof(int))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470 DRM_ERROR("copy_to_user\n");
Eric Anholt20caafa2007-08-25 19:22:43 +10001471 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472 }
1473
1474 return 0;
1475}
1476
1477/* Doesn't need the hardware lock.
1478 */
Eric Anholtc153f452007-09-03 12:06:45 +10001479int i915_irq_wait(struct drm_device *dev, void *data,
1480 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholtc153f452007-09-03 12:06:45 +10001483 drm_i915_irq_wait_t *irqwait = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484
Daniel Vettercd9d4e92012-04-24 08:29:42 +02001485 if (drm_core_check_feature(dev, DRIVER_MODESET))
1486 return -ENODEV;
1487
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488 if (!dev_priv) {
Márton Németh3e684ea2008-01-24 15:58:57 +10001489 DRM_ERROR("called with no initialization\n");
Eric Anholt20caafa2007-08-25 19:22:43 +10001490 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491 }
1492
Eric Anholtc153f452007-09-03 12:06:45 +10001493 return i915_wait_irq(dev, irqwait->irq_seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494}
1495
Keith Packard42f52ef2008-10-18 19:39:29 -07001496/* Called from drm generic code, passed 'crtc' which
1497 * we use as a pipe index
1498 */
Jesse Barnesf71d4af2011-06-28 13:00:41 -07001499static int i915_enable_vblank(struct drm_device *dev, int pipe)
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001500{
1501 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Keith Packarde9d21d72008-10-16 11:31:38 -07001502 unsigned long irqflags;
Jesse Barnes71e0ffa2009-01-08 10:42:15 -08001503
Chris Wilson5eddb702010-09-11 13:48:45 +01001504 if (!i915_pipe_enabled(dev, pipe))
Jesse Barnes71e0ffa2009-01-08 10:42:15 -08001505 return -EINVAL;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001506
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001507 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Jesse Barnesf796cf82011-04-07 13:58:17 -07001508 if (INTEL_INFO(dev)->gen >= 4)
Keith Packard7c463582008-11-04 02:03:27 -08001509 i915_enable_pipestat(dev_priv, pipe,
1510 PIPE_START_VBLANK_INTERRUPT_ENABLE);
Keith Packarde9d21d72008-10-16 11:31:38 -07001511 else
Keith Packard7c463582008-11-04 02:03:27 -08001512 i915_enable_pipestat(dev_priv, pipe,
1513 PIPE_VBLANK_INTERRUPT_ENABLE);
Chris Wilson8692d00e2011-02-05 10:08:21 +00001514
1515 /* maintain vblank delivery even in deep C-states */
1516 if (dev_priv->info->gen == 3)
Daniel Vetter6b26c862012-04-24 14:04:12 +02001517 I915_WRITE(INSTPM, _MASKED_BIT_DISABLE(INSTPM_AGPBUSY_DIS));
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001518 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
Chris Wilson8692d00e2011-02-05 10:08:21 +00001519
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001520 return 0;
1521}
1522
Jesse Barnesf71d4af2011-06-28 13:00:41 -07001523static int ironlake_enable_vblank(struct drm_device *dev, int pipe)
Jesse Barnesf796cf82011-04-07 13:58:17 -07001524{
1525 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
1526 unsigned long irqflags;
1527
1528 if (!i915_pipe_enabled(dev, pipe))
1529 return -EINVAL;
1530
1531 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
1532 ironlake_enable_display_irq(dev_priv, (pipe == 0) ?
Akshay Joshi0206e352011-08-16 15:34:10 -04001533 DE_PIPEA_VBLANK : DE_PIPEB_VBLANK);
Jesse Barnesf796cf82011-04-07 13:58:17 -07001534 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
1535
1536 return 0;
1537}
1538
Jesse Barnesf71d4af2011-06-28 13:00:41 -07001539static int ivybridge_enable_vblank(struct drm_device *dev, int pipe)
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07001540{
1541 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
1542 unsigned long irqflags;
1543
1544 if (!i915_pipe_enabled(dev, pipe))
1545 return -EINVAL;
1546
1547 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
1548 ironlake_enable_display_irq(dev_priv, (pipe == 0) ?
1549 DE_PIPEA_VBLANK_IVB : DE_PIPEB_VBLANK_IVB);
1550 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
1551
1552 return 0;
1553}
1554
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07001555static int valleyview_enable_vblank(struct drm_device *dev, int pipe)
1556{
1557 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
1558 unsigned long irqflags;
1559 u32 dpfl, imr;
1560
1561 if (!i915_pipe_enabled(dev, pipe))
1562 return -EINVAL;
1563
1564 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
1565 dpfl = I915_READ(VLV_DPFLIPSTAT);
1566 imr = I915_READ(VLV_IMR);
1567 if (pipe == 0) {
1568 dpfl |= PIPEA_VBLANK_INT_EN;
1569 imr &= ~I915_DISPLAY_PIPE_A_VBLANK_INTERRUPT;
1570 } else {
1571 dpfl |= PIPEA_VBLANK_INT_EN;
1572 imr &= ~I915_DISPLAY_PIPE_B_VBLANK_INTERRUPT;
1573 }
1574 I915_WRITE(VLV_DPFLIPSTAT, dpfl);
1575 I915_WRITE(VLV_IMR, imr);
1576 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
1577
1578 return 0;
1579}
1580
Keith Packard42f52ef2008-10-18 19:39:29 -07001581/* Called from drm generic code, passed 'crtc' which
1582 * we use as a pipe index
1583 */
Jesse Barnesf71d4af2011-06-28 13:00:41 -07001584static void i915_disable_vblank(struct drm_device *dev, int pipe)
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001585{
1586 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Keith Packarde9d21d72008-10-16 11:31:38 -07001587 unsigned long irqflags;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001588
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001589 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Chris Wilson8692d00e2011-02-05 10:08:21 +00001590 if (dev_priv->info->gen == 3)
Daniel Vetter6b26c862012-04-24 14:04:12 +02001591 I915_WRITE(INSTPM, _MASKED_BIT_ENABLE(INSTPM_AGPBUSY_DIS));
Chris Wilson8692d00e2011-02-05 10:08:21 +00001592
Jesse Barnesf796cf82011-04-07 13:58:17 -07001593 i915_disable_pipestat(dev_priv, pipe,
1594 PIPE_VBLANK_INTERRUPT_ENABLE |
1595 PIPE_START_VBLANK_INTERRUPT_ENABLE);
1596 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
1597}
1598
Jesse Barnesf71d4af2011-06-28 13:00:41 -07001599static void ironlake_disable_vblank(struct drm_device *dev, int pipe)
Jesse Barnesf796cf82011-04-07 13:58:17 -07001600{
1601 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
1602 unsigned long irqflags;
1603
1604 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
1605 ironlake_disable_display_irq(dev_priv, (pipe == 0) ?
Akshay Joshi0206e352011-08-16 15:34:10 -04001606 DE_PIPEA_VBLANK : DE_PIPEB_VBLANK);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001607 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001608}
1609
Jesse Barnesf71d4af2011-06-28 13:00:41 -07001610static void ivybridge_disable_vblank(struct drm_device *dev, int pipe)
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07001611{
1612 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
1613 unsigned long irqflags;
1614
1615 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
1616 ironlake_disable_display_irq(dev_priv, (pipe == 0) ?
1617 DE_PIPEA_VBLANK_IVB : DE_PIPEB_VBLANK_IVB);
1618 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
1619}
1620
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07001621static void valleyview_disable_vblank(struct drm_device *dev, int pipe)
1622{
1623 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
1624 unsigned long irqflags;
1625 u32 dpfl, imr;
1626
1627 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
1628 dpfl = I915_READ(VLV_DPFLIPSTAT);
1629 imr = I915_READ(VLV_IMR);
1630 if (pipe == 0) {
1631 dpfl &= ~PIPEA_VBLANK_INT_EN;
1632 imr |= I915_DISPLAY_PIPE_A_VBLANK_INTERRUPT;
1633 } else {
1634 dpfl &= ~PIPEB_VBLANK_INT_EN;
1635 imr |= I915_DISPLAY_PIPE_B_VBLANK_INTERRUPT;
1636 }
1637 I915_WRITE(VLV_IMR, imr);
1638 I915_WRITE(VLV_DPFLIPSTAT, dpfl);
1639 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
1640}
1641
1642
Dave Airlie702880f2006-06-24 17:07:34 +10001643/* Set the vblank monitor pipe
1644 */
Eric Anholtc153f452007-09-03 12:06:45 +10001645int i915_vblank_pipe_set(struct drm_device *dev, void *data,
1646 struct drm_file *file_priv)
Dave Airlie702880f2006-06-24 17:07:34 +10001647{
Dave Airlie702880f2006-06-24 17:07:34 +10001648 drm_i915_private_t *dev_priv = dev->dev_private;
Dave Airlie702880f2006-06-24 17:07:34 +10001649
Daniel Vettercd9d4e92012-04-24 08:29:42 +02001650 if (drm_core_check_feature(dev, DRIVER_MODESET))
1651 return -ENODEV;
1652
Dave Airlie702880f2006-06-24 17:07:34 +10001653 if (!dev_priv) {
Márton Németh3e684ea2008-01-24 15:58:57 +10001654 DRM_ERROR("called with no initialization\n");
Eric Anholt20caafa2007-08-25 19:22:43 +10001655 return -EINVAL;
Dave Airlie702880f2006-06-24 17:07:34 +10001656 }
1657
=?utf-8?q?Michel_D=C3=A4nzer?=5b516942006-10-25 00:08:23 +10001658 return 0;
Dave Airlie702880f2006-06-24 17:07:34 +10001659}
1660
Eric Anholtc153f452007-09-03 12:06:45 +10001661int i915_vblank_pipe_get(struct drm_device *dev, void *data,
1662 struct drm_file *file_priv)
Dave Airlie702880f2006-06-24 17:07:34 +10001663{
Dave Airlie702880f2006-06-24 17:07:34 +10001664 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholtc153f452007-09-03 12:06:45 +10001665 drm_i915_vblank_pipe_t *pipe = data;
Dave Airlie702880f2006-06-24 17:07:34 +10001666
Daniel Vettercd9d4e92012-04-24 08:29:42 +02001667 if (drm_core_check_feature(dev, DRIVER_MODESET))
1668 return -ENODEV;
1669
Dave Airlie702880f2006-06-24 17:07:34 +10001670 if (!dev_priv) {
Márton Németh3e684ea2008-01-24 15:58:57 +10001671 DRM_ERROR("called with no initialization\n");
Eric Anholt20caafa2007-08-25 19:22:43 +10001672 return -EINVAL;
Dave Airlie702880f2006-06-24 17:07:34 +10001673 }
1674
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001675 pipe->pipe = DRM_I915_VBLANK_PIPE_A | DRM_I915_VBLANK_PIPE_B;
Eric Anholtc153f452007-09-03 12:06:45 +10001676
Dave Airlie702880f2006-06-24 17:07:34 +10001677 return 0;
1678}
1679
=?utf-8?q?Michel_D=C3=A4nzer?=a6b54f32006-10-24 23:37:43 +10001680/**
1681 * Schedule buffer swap at given vertical blank.
1682 */
Eric Anholtc153f452007-09-03 12:06:45 +10001683int i915_vblank_swap(struct drm_device *dev, void *data,
1684 struct drm_file *file_priv)
=?utf-8?q?Michel_D=C3=A4nzer?=a6b54f32006-10-24 23:37:43 +10001685{
Eric Anholtbd95e0a2008-11-04 12:01:24 -08001686 /* The delayed swap mechanism was fundamentally racy, and has been
1687 * removed. The model was that the client requested a delayed flip/swap
1688 * from the kernel, then waited for vblank before continuing to perform
1689 * rendering. The problem was that the kernel might wake the client
1690 * up before it dispatched the vblank swap (since the lock has to be
1691 * held while touching the ringbuffer), in which case the client would
1692 * clear and start the next frame before the swap occurred, and
1693 * flicker would occur in addition to likely missing the vblank.
1694 *
1695 * In the absence of this ioctl, userland falls back to a correct path
1696 * of waiting for a vblank, then dispatching the swap on its own.
1697 * Context switching to userland and back is plenty fast enough for
1698 * meeting the requirements of vblank swapping.
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001699 */
Eric Anholtbd95e0a2008-11-04 12:01:24 -08001700 return -EINVAL;
=?utf-8?q?Michel_D=C3=A4nzer?=a6b54f32006-10-24 23:37:43 +10001701}
1702
Chris Wilson893eead2010-10-27 14:44:35 +01001703static u32
1704ring_last_seqno(struct intel_ring_buffer *ring)
Zou Nan hai852835f2010-05-21 09:08:56 +08001705{
Chris Wilson893eead2010-10-27 14:44:35 +01001706 return list_entry(ring->request_list.prev,
1707 struct drm_i915_gem_request, list)->seqno;
1708}
1709
1710static bool i915_hangcheck_ring_idle(struct intel_ring_buffer *ring, bool *err)
1711{
1712 if (list_empty(&ring->request_list) ||
1713 i915_seqno_passed(ring->get_seqno(ring), ring_last_seqno(ring))) {
1714 /* Issue a wake-up to catch stuck h/w. */
Chris Wilsonb2223492010-10-27 15:27:33 +01001715 if (ring->waiting_seqno && waitqueue_active(&ring->irq_queue)) {
Chris Wilson893eead2010-10-27 14:44:35 +01001716 DRM_ERROR("Hangcheck timer elapsed... %s idle [waiting on %d, at %d], missed IRQ?\n",
1717 ring->name,
Chris Wilsonb2223492010-10-27 15:27:33 +01001718 ring->waiting_seqno,
Chris Wilson893eead2010-10-27 14:44:35 +01001719 ring->get_seqno(ring));
1720 wake_up_all(&ring->irq_queue);
1721 *err = true;
1722 }
1723 return true;
1724 }
1725 return false;
Ben Gamarif65d9422009-09-14 17:48:44 -04001726}
1727
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001728static bool kick_ring(struct intel_ring_buffer *ring)
1729{
1730 struct drm_device *dev = ring->dev;
1731 struct drm_i915_private *dev_priv = dev->dev_private;
1732 u32 tmp = I915_READ_CTL(ring);
1733 if (tmp & RING_WAIT) {
1734 DRM_ERROR("Kicking stuck wait on %s\n",
1735 ring->name);
1736 I915_WRITE_CTL(ring, tmp);
1737 return true;
1738 }
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001739 return false;
1740}
1741
Chris Wilsond1e61e72012-04-10 17:00:41 +01001742static bool i915_hangcheck_hung(struct drm_device *dev)
1743{
1744 drm_i915_private_t *dev_priv = dev->dev_private;
1745
1746 if (dev_priv->hangcheck_count++ > 1) {
1747 DRM_ERROR("Hangcheck timer elapsed... GPU hung\n");
1748 i915_handle_error(dev, true);
1749
1750 if (!IS_GEN2(dev)) {
1751 /* Is the chip hanging on a WAIT_FOR_EVENT?
1752 * If so we can simply poke the RB_WAIT bit
1753 * and break the hang. This should work on
1754 * all but the second generation chipsets.
1755 */
1756 if (kick_ring(&dev_priv->ring[RCS]))
1757 return false;
1758
1759 if (HAS_BSD(dev) && kick_ring(&dev_priv->ring[VCS]))
1760 return false;
1761
1762 if (HAS_BLT(dev) && kick_ring(&dev_priv->ring[BCS]))
1763 return false;
1764 }
1765
1766 return true;
1767 }
1768
1769 return false;
1770}
1771
Ben Gamarif65d9422009-09-14 17:48:44 -04001772/**
1773 * This is called when the chip hasn't reported back with completed
1774 * batchbuffers in a long time. The first time this is called we simply record
1775 * ACTHD. If ACTHD hasn't changed by the time the hangcheck timer elapses
1776 * again, we assume the chip is wedged and try to fix it.
1777 */
1778void i915_hangcheck_elapsed(unsigned long data)
1779{
1780 struct drm_device *dev = (struct drm_device *)data;
1781 drm_i915_private_t *dev_priv = dev->dev_private;
Daniel Vetter097354e2011-11-27 18:58:17 +01001782 uint32_t acthd, instdone, instdone1, acthd_bsd, acthd_blt;
Chris Wilson893eead2010-10-27 14:44:35 +01001783 bool err = false;
1784
Ben Widawsky3e0dc6b2011-06-29 10:26:42 -07001785 if (!i915_enable_hangcheck)
1786 return;
1787
Chris Wilson893eead2010-10-27 14:44:35 +01001788 /* If all work is done then ACTHD clearly hasn't advanced. */
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001789 if (i915_hangcheck_ring_idle(&dev_priv->ring[RCS], &err) &&
1790 i915_hangcheck_ring_idle(&dev_priv->ring[VCS], &err) &&
1791 i915_hangcheck_ring_idle(&dev_priv->ring[BCS], &err)) {
Chris Wilsond1e61e72012-04-10 17:00:41 +01001792 if (err) {
1793 if (i915_hangcheck_hung(dev))
1794 return;
1795
Chris Wilson893eead2010-10-27 14:44:35 +01001796 goto repeat;
Chris Wilsond1e61e72012-04-10 17:00:41 +01001797 }
1798
1799 dev_priv->hangcheck_count = 0;
Chris Wilson893eead2010-10-27 14:44:35 +01001800 return;
1801 }
Eric Anholtb9201c12010-01-08 14:25:16 -08001802
Chris Wilsona6c45cf2010-09-17 00:32:17 +01001803 if (INTEL_INFO(dev)->gen < 4) {
Chris Wilsoncbb465e2010-06-06 12:16:24 +01001804 instdone = I915_READ(INSTDONE);
1805 instdone1 = 0;
1806 } else {
Chris Wilsoncbb465e2010-06-06 12:16:24 +01001807 instdone = I915_READ(INSTDONE_I965);
1808 instdone1 = I915_READ(INSTDONE1);
1809 }
Daniel Vetter097354e2011-11-27 18:58:17 +01001810 acthd = intel_ring_get_active_head(&dev_priv->ring[RCS]);
1811 acthd_bsd = HAS_BSD(dev) ?
1812 intel_ring_get_active_head(&dev_priv->ring[VCS]) : 0;
1813 acthd_blt = HAS_BLT(dev) ?
1814 intel_ring_get_active_head(&dev_priv->ring[BCS]) : 0;
Ben Gamarif65d9422009-09-14 17:48:44 -04001815
Chris Wilsoncbb465e2010-06-06 12:16:24 +01001816 if (dev_priv->last_acthd == acthd &&
Daniel Vetter097354e2011-11-27 18:58:17 +01001817 dev_priv->last_acthd_bsd == acthd_bsd &&
1818 dev_priv->last_acthd_blt == acthd_blt &&
Chris Wilsoncbb465e2010-06-06 12:16:24 +01001819 dev_priv->last_instdone == instdone &&
1820 dev_priv->last_instdone1 == instdone1) {
Chris Wilsond1e61e72012-04-10 17:00:41 +01001821 if (i915_hangcheck_hung(dev))
Chris Wilsoncbb465e2010-06-06 12:16:24 +01001822 return;
Chris Wilsoncbb465e2010-06-06 12:16:24 +01001823 } else {
1824 dev_priv->hangcheck_count = 0;
1825
1826 dev_priv->last_acthd = acthd;
Daniel Vetter097354e2011-11-27 18:58:17 +01001827 dev_priv->last_acthd_bsd = acthd_bsd;
1828 dev_priv->last_acthd_blt = acthd_blt;
Chris Wilsoncbb465e2010-06-06 12:16:24 +01001829 dev_priv->last_instdone = instdone;
1830 dev_priv->last_instdone1 = instdone1;
1831 }
Ben Gamarif65d9422009-09-14 17:48:44 -04001832
Chris Wilson893eead2010-10-27 14:44:35 +01001833repeat:
Ben Gamarif65d9422009-09-14 17:48:44 -04001834 /* Reset timer case chip hangs without another request being added */
Chris Wilsonb3b079d2010-09-13 23:44:34 +01001835 mod_timer(&dev_priv->hangcheck_timer,
1836 jiffies + msecs_to_jiffies(DRM_I915_HANGCHECK_PERIOD));
Ben Gamarif65d9422009-09-14 17:48:44 -04001837}
1838
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839/* drm_dma.h hooks
1840*/
Jesse Barnesf71d4af2011-06-28 13:00:41 -07001841static void ironlake_irq_preinstall(struct drm_device *dev)
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001842{
1843 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
1844
Jesse Barnes46979952011-04-07 13:53:55 -07001845 atomic_set(&dev_priv->irq_received, 0);
1846
Jesse Barnes46979952011-04-07 13:53:55 -07001847
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001848 I915_WRITE(HWSTAM, 0xeffe);
Daniel Vetterbdfcdb62012-01-05 01:05:26 +01001849
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001850 /* XXX hotplug from PCH */
1851
1852 I915_WRITE(DEIMR, 0xffffffff);
1853 I915_WRITE(DEIER, 0x0);
Chris Wilson3143a2b2010-11-16 15:55:10 +00001854 POSTING_READ(DEIER);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001855
1856 /* and GT */
1857 I915_WRITE(GTIMR, 0xffffffff);
1858 I915_WRITE(GTIER, 0x0);
Chris Wilson3143a2b2010-11-16 15:55:10 +00001859 POSTING_READ(GTIER);
Zhenyu Wangc6501562009-11-03 18:57:21 +00001860
1861 /* south display irq */
1862 I915_WRITE(SDEIMR, 0xffffffff);
1863 I915_WRITE(SDEIER, 0x0);
Chris Wilson3143a2b2010-11-16 15:55:10 +00001864 POSTING_READ(SDEIER);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001865}
1866
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07001867static void valleyview_irq_preinstall(struct drm_device *dev)
1868{
1869 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
1870 int pipe;
1871
1872 atomic_set(&dev_priv->irq_received, 0);
1873
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07001874 /* VLV magic */
1875 I915_WRITE(VLV_IMR, 0);
1876 I915_WRITE(RING_IMR(RENDER_RING_BASE), 0);
1877 I915_WRITE(RING_IMR(GEN6_BSD_RING_BASE), 0);
1878 I915_WRITE(RING_IMR(BLT_RING_BASE), 0);
1879
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07001880 /* and GT */
1881 I915_WRITE(GTIIR, I915_READ(GTIIR));
1882 I915_WRITE(GTIIR, I915_READ(GTIIR));
1883 I915_WRITE(GTIMR, 0xffffffff);
1884 I915_WRITE(GTIER, 0x0);
1885 POSTING_READ(GTIER);
1886
1887 I915_WRITE(DPINVGTT, 0xff);
1888
1889 I915_WRITE(PORT_HOTPLUG_EN, 0);
1890 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
1891 for_each_pipe(pipe)
1892 I915_WRITE(PIPESTAT(pipe), 0xffff);
1893 I915_WRITE(VLV_IIR, 0xffffffff);
1894 I915_WRITE(VLV_IMR, 0xffffffff);
1895 I915_WRITE(VLV_IER, 0x0);
1896 POSTING_READ(VLV_IER);
1897}
1898
Keith Packard7fe0b972011-09-19 13:31:02 -07001899/*
1900 * Enable digital hotplug on the PCH, and configure the DP short pulse
1901 * duration to 2ms (which is the minimum in the Display Port spec)
1902 *
1903 * This register is the same on all known PCH chips.
1904 */
1905
1906static void ironlake_enable_pch_hotplug(struct drm_device *dev)
1907{
1908 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
1909 u32 hotplug;
1910
1911 hotplug = I915_READ(PCH_PORT_HOTPLUG);
1912 hotplug &= ~(PORTD_PULSE_DURATION_MASK|PORTC_PULSE_DURATION_MASK|PORTB_PULSE_DURATION_MASK);
1913 hotplug |= PORTD_HOTPLUG_ENABLE | PORTD_PULSE_DURATION_2ms;
1914 hotplug |= PORTC_HOTPLUG_ENABLE | PORTC_PULSE_DURATION_2ms;
1915 hotplug |= PORTB_HOTPLUG_ENABLE | PORTB_PULSE_DURATION_2ms;
1916 I915_WRITE(PCH_PORT_HOTPLUG, hotplug);
1917}
1918
Jesse Barnesf71d4af2011-06-28 13:00:41 -07001919static int ironlake_irq_postinstall(struct drm_device *dev)
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001920{
1921 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
1922 /* enable kind of interrupts always enabled */
Jesse Barnes013d5aa2010-01-29 11:18:31 -08001923 u32 display_mask = DE_MASTER_IRQ_CONTROL | DE_GSE | DE_PCH_EVENT |
1924 DE_PLANEA_FLIP_DONE | DE_PLANEB_FLIP_DONE;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001925 u32 render_irqs;
Yuanhan Liu2d7b8362010-10-08 10:21:06 +01001926 u32 hotplug_mask;
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001927
Jesse Barnes46979952011-04-07 13:53:55 -07001928 dev_priv->vblank_pipe = DRM_I915_VBLANK_PIPE_A | DRM_I915_VBLANK_PIPE_B;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001929 dev_priv->irq_mask = ~display_mask;
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001930
1931 /* should always can generate irq */
1932 I915_WRITE(DEIIR, I915_READ(DEIIR));
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001933 I915_WRITE(DEIMR, dev_priv->irq_mask);
1934 I915_WRITE(DEIER, display_mask | DE_PIPEA_VBLANK | DE_PIPEB_VBLANK);
Chris Wilson3143a2b2010-11-16 15:55:10 +00001935 POSTING_READ(DEIER);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001936
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001937 dev_priv->gt_irq_mask = ~0;
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001938
1939 I915_WRITE(GTIIR, I915_READ(GTIIR));
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001940 I915_WRITE(GTIMR, dev_priv->gt_irq_mask);
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001941
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001942 if (IS_GEN6(dev))
1943 render_irqs =
1944 GT_USER_INTERRUPT |
Ben Widawskye2a1e2f2012-03-29 19:11:26 -07001945 GEN6_BSD_USER_INTERRUPT |
1946 GEN6_BLITTER_USER_INTERRUPT;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001947 else
1948 render_irqs =
Chris Wilson88f23b82010-12-05 15:08:31 +00001949 GT_USER_INTERRUPT |
Chris Wilsonc6df5412010-12-15 09:56:50 +00001950 GT_PIPE_NOTIFY |
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001951 GT_BSD_USER_INTERRUPT;
1952 I915_WRITE(GTIER, render_irqs);
Chris Wilson3143a2b2010-11-16 15:55:10 +00001953 POSTING_READ(GTIER);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001954
Yuanhan Liu2d7b8362010-10-08 10:21:06 +01001955 if (HAS_PCH_CPT(dev)) {
Chris Wilson9035a972011-02-16 09:36:05 +00001956 hotplug_mask = (SDE_CRT_HOTPLUG_CPT |
1957 SDE_PORTB_HOTPLUG_CPT |
1958 SDE_PORTC_HOTPLUG_CPT |
1959 SDE_PORTD_HOTPLUG_CPT);
Yuanhan Liu2d7b8362010-10-08 10:21:06 +01001960 } else {
Chris Wilson9035a972011-02-16 09:36:05 +00001961 hotplug_mask = (SDE_CRT_HOTPLUG |
1962 SDE_PORTB_HOTPLUG |
1963 SDE_PORTC_HOTPLUG |
1964 SDE_PORTD_HOTPLUG |
1965 SDE_AUX_MASK);
Yuanhan Liu2d7b8362010-10-08 10:21:06 +01001966 }
1967
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001968 dev_priv->pch_irq_mask = ~hotplug_mask;
Zhenyu Wangc6501562009-11-03 18:57:21 +00001969
1970 I915_WRITE(SDEIIR, I915_READ(SDEIIR));
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001971 I915_WRITE(SDEIMR, dev_priv->pch_irq_mask);
1972 I915_WRITE(SDEIER, hotplug_mask);
Chris Wilson3143a2b2010-11-16 15:55:10 +00001973 POSTING_READ(SDEIER);
Zhenyu Wangc6501562009-11-03 18:57:21 +00001974
Keith Packard7fe0b972011-09-19 13:31:02 -07001975 ironlake_enable_pch_hotplug(dev);
1976
Jesse Barnesf97108d2010-01-29 11:27:07 -08001977 if (IS_IRONLAKE_M(dev)) {
1978 /* Clear & enable PCU event interrupts */
1979 I915_WRITE(DEIIR, DE_PCU_EVENT);
1980 I915_WRITE(DEIER, I915_READ(DEIER) | DE_PCU_EVENT);
1981 ironlake_enable_display_irq(dev_priv, DE_PCU_EVENT);
1982 }
1983
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001984 return 0;
1985}
1986
Jesse Barnesf71d4af2011-06-28 13:00:41 -07001987static int ivybridge_irq_postinstall(struct drm_device *dev)
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07001988{
1989 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
1990 /* enable kind of interrupts always enabled */
1991 u32 display_mask = DE_MASTER_IRQ_CONTROL | DE_GSE_IVB |
1992 DE_PCH_EVENT_IVB | DE_PLANEA_FLIP_DONE_IVB |
1993 DE_PLANEB_FLIP_DONE_IVB;
1994 u32 render_irqs;
1995 u32 hotplug_mask;
1996
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07001997 dev_priv->vblank_pipe = DRM_I915_VBLANK_PIPE_A | DRM_I915_VBLANK_PIPE_B;
1998 dev_priv->irq_mask = ~display_mask;
1999
2000 /* should always can generate irq */
2001 I915_WRITE(DEIIR, I915_READ(DEIIR));
2002 I915_WRITE(DEIMR, dev_priv->irq_mask);
2003 I915_WRITE(DEIER, display_mask | DE_PIPEA_VBLANK_IVB |
2004 DE_PIPEB_VBLANK_IVB);
2005 POSTING_READ(DEIER);
2006
2007 dev_priv->gt_irq_mask = ~0;
2008
2009 I915_WRITE(GTIIR, I915_READ(GTIIR));
2010 I915_WRITE(GTIMR, dev_priv->gt_irq_mask);
2011
Ben Widawskye2a1e2f2012-03-29 19:11:26 -07002012 render_irqs = GT_USER_INTERRUPT | GEN6_BSD_USER_INTERRUPT |
2013 GEN6_BLITTER_USER_INTERRUPT;
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002014 I915_WRITE(GTIER, render_irqs);
2015 POSTING_READ(GTIER);
2016
2017 hotplug_mask = (SDE_CRT_HOTPLUG_CPT |
2018 SDE_PORTB_HOTPLUG_CPT |
2019 SDE_PORTC_HOTPLUG_CPT |
2020 SDE_PORTD_HOTPLUG_CPT);
2021 dev_priv->pch_irq_mask = ~hotplug_mask;
2022
2023 I915_WRITE(SDEIIR, I915_READ(SDEIIR));
2024 I915_WRITE(SDEIMR, dev_priv->pch_irq_mask);
2025 I915_WRITE(SDEIER, hotplug_mask);
2026 POSTING_READ(SDEIER);
2027
Keith Packard7fe0b972011-09-19 13:31:02 -07002028 ironlake_enable_pch_hotplug(dev);
2029
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002030 return 0;
2031}
2032
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002033static int valleyview_irq_postinstall(struct drm_device *dev)
2034{
2035 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2036 u32 render_irqs;
2037 u32 enable_mask;
2038 u32 hotplug_en = I915_READ(PORT_HOTPLUG_EN);
2039 u16 msid;
2040
2041 enable_mask = I915_DISPLAY_PORT_INTERRUPT;
2042 enable_mask |= I915_DISPLAY_PIPE_A_VBLANK_INTERRUPT |
2043 I915_DISPLAY_PIPE_B_VBLANK_INTERRUPT;
2044
2045 dev_priv->irq_mask = ~enable_mask;
2046
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002047 dev_priv->pipestat[0] = 0;
2048 dev_priv->pipestat[1] = 0;
2049
2050 dev_priv->vblank_pipe = DRM_I915_VBLANK_PIPE_A | DRM_I915_VBLANK_PIPE_B;
2051
2052 /* Hack for broken MSIs on VLV */
2053 pci_write_config_dword(dev_priv->dev->pdev, 0x94, 0xfee00000);
2054 pci_read_config_word(dev->pdev, 0x98, &msid);
2055 msid &= 0xff; /* mask out delivery bits */
2056 msid |= (1<<14);
2057 pci_write_config_word(dev_priv->dev->pdev, 0x98, msid);
2058
2059 I915_WRITE(VLV_IMR, dev_priv->irq_mask);
2060 I915_WRITE(VLV_IER, enable_mask);
2061 I915_WRITE(VLV_IIR, 0xffffffff);
2062 I915_WRITE(PIPESTAT(0), 0xffff);
2063 I915_WRITE(PIPESTAT(1), 0xffff);
2064 POSTING_READ(VLV_IER);
2065
2066 I915_WRITE(VLV_IIR, 0xffffffff);
2067 I915_WRITE(VLV_IIR, 0xffffffff);
2068
2069 render_irqs = GT_GEN6_BLT_FLUSHDW_NOTIFY_INTERRUPT |
2070 GT_GEN6_BLT_CS_ERROR_INTERRUPT |
Ben Widawskye2a1e2f2012-03-29 19:11:26 -07002071 GT_GEN6_BLT_USER_INTERRUPT |
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002072 GT_GEN6_BSD_USER_INTERRUPT |
2073 GT_GEN6_BSD_CS_ERROR_INTERRUPT |
2074 GT_GEN7_L3_PARITY_ERROR_INTERRUPT |
2075 GT_PIPE_NOTIFY |
2076 GT_RENDER_CS_ERROR_INTERRUPT |
2077 GT_SYNC_STATUS |
2078 GT_USER_INTERRUPT;
2079
2080 dev_priv->gt_irq_mask = ~render_irqs;
2081
2082 I915_WRITE(GTIIR, I915_READ(GTIIR));
2083 I915_WRITE(GTIIR, I915_READ(GTIIR));
2084 I915_WRITE(GTIMR, 0);
2085 I915_WRITE(GTIER, render_irqs);
2086 POSTING_READ(GTIER);
2087
2088 /* ack & enable invalid PTE error interrupts */
2089#if 0 /* FIXME: add support to irq handler for checking these bits */
2090 I915_WRITE(DPINVGTT, DPINVGTT_STATUS_MASK);
2091 I915_WRITE(DPINVGTT, DPINVGTT_EN_MASK);
2092#endif
2093
2094 I915_WRITE(VLV_MASTER_IER, MASTER_INTERRUPT_ENABLE);
2095#if 0 /* FIXME: check register definitions; some have moved */
2096 /* Note HDMI and DP share bits */
2097 if (dev_priv->hotplug_supported_mask & HDMIB_HOTPLUG_INT_STATUS)
2098 hotplug_en |= HDMIB_HOTPLUG_INT_EN;
2099 if (dev_priv->hotplug_supported_mask & HDMIC_HOTPLUG_INT_STATUS)
2100 hotplug_en |= HDMIC_HOTPLUG_INT_EN;
2101 if (dev_priv->hotplug_supported_mask & HDMID_HOTPLUG_INT_STATUS)
2102 hotplug_en |= HDMID_HOTPLUG_INT_EN;
2103 if (dev_priv->hotplug_supported_mask & SDVOC_HOTPLUG_INT_STATUS)
2104 hotplug_en |= SDVOC_HOTPLUG_INT_EN;
2105 if (dev_priv->hotplug_supported_mask & SDVOB_HOTPLUG_INT_STATUS)
2106 hotplug_en |= SDVOB_HOTPLUG_INT_EN;
2107 if (dev_priv->hotplug_supported_mask & CRT_HOTPLUG_INT_STATUS) {
2108 hotplug_en |= CRT_HOTPLUG_INT_EN;
2109 hotplug_en |= CRT_HOTPLUG_VOLTAGE_COMPARE_50;
2110 }
2111#endif
2112
2113 I915_WRITE(PORT_HOTPLUG_EN, hotplug_en);
2114
2115 return 0;
2116}
2117
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002118static void valleyview_irq_uninstall(struct drm_device *dev)
2119{
2120 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2121 int pipe;
2122
2123 if (!dev_priv)
2124 return;
2125
2126 dev_priv->vblank_pipe = 0;
2127
2128 for_each_pipe(pipe)
2129 I915_WRITE(PIPESTAT(pipe), 0xffff);
2130
2131 I915_WRITE(HWSTAM, 0xffffffff);
2132 I915_WRITE(PORT_HOTPLUG_EN, 0);
2133 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
2134 for_each_pipe(pipe)
2135 I915_WRITE(PIPESTAT(pipe), 0xffff);
2136 I915_WRITE(VLV_IIR, 0xffffffff);
2137 I915_WRITE(VLV_IMR, 0xffffffff);
2138 I915_WRITE(VLV_IER, 0x0);
2139 POSTING_READ(VLV_IER);
2140}
2141
Jesse Barnesf71d4af2011-06-28 13:00:41 -07002142static void ironlake_irq_uninstall(struct drm_device *dev)
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002143{
2144 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Jesse Barnes46979952011-04-07 13:53:55 -07002145
2146 if (!dev_priv)
2147 return;
2148
2149 dev_priv->vblank_pipe = 0;
2150
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002151 I915_WRITE(HWSTAM, 0xffffffff);
2152
2153 I915_WRITE(DEIMR, 0xffffffff);
2154 I915_WRITE(DEIER, 0x0);
2155 I915_WRITE(DEIIR, I915_READ(DEIIR));
2156
2157 I915_WRITE(GTIMR, 0xffffffff);
2158 I915_WRITE(GTIER, 0x0);
2159 I915_WRITE(GTIIR, I915_READ(GTIIR));
Keith Packard192aac1f2011-09-20 10:12:44 -07002160
2161 I915_WRITE(SDEIMR, 0xffffffff);
2162 I915_WRITE(SDEIER, 0x0);
2163 I915_WRITE(SDEIIR, I915_READ(SDEIIR));
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002164}
2165
Chris Wilsonc2798b12012-04-22 21:13:57 +01002166static void i8xx_irq_preinstall(struct drm_device * dev)
2167{
2168 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2169 int pipe;
2170
2171 atomic_set(&dev_priv->irq_received, 0);
2172
2173 for_each_pipe(pipe)
2174 I915_WRITE(PIPESTAT(pipe), 0);
2175 I915_WRITE16(IMR, 0xffff);
2176 I915_WRITE16(IER, 0x0);
2177 POSTING_READ16(IER);
2178}
2179
2180static int i8xx_irq_postinstall(struct drm_device *dev)
2181{
2182 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2183
2184 dev_priv->vblank_pipe = DRM_I915_VBLANK_PIPE_A | DRM_I915_VBLANK_PIPE_B;
2185
2186 dev_priv->pipestat[0] = 0;
2187 dev_priv->pipestat[1] = 0;
2188
2189 I915_WRITE16(EMR,
2190 ~(I915_ERROR_PAGE_TABLE | I915_ERROR_MEMORY_REFRESH));
2191
2192 /* Unmask the interrupts that we always want on. */
2193 dev_priv->irq_mask =
2194 ~(I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
2195 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
2196 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
2197 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT |
2198 I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT);
2199 I915_WRITE16(IMR, dev_priv->irq_mask);
2200
2201 I915_WRITE16(IER,
2202 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
2203 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
2204 I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT |
2205 I915_USER_INTERRUPT);
2206 POSTING_READ16(IER);
2207
2208 return 0;
2209}
2210
2211static irqreturn_t i8xx_irq_handler(DRM_IRQ_ARGS)
2212{
2213 struct drm_device *dev = (struct drm_device *) arg;
2214 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2215 struct drm_i915_master_private *master_priv;
2216 u16 iir, new_iir;
2217 u32 pipe_stats[2];
2218 unsigned long irqflags;
2219 int irq_received;
2220 int pipe;
2221 u16 flip_mask =
2222 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
2223 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT;
2224
2225 atomic_inc(&dev_priv->irq_received);
2226
2227 iir = I915_READ16(IIR);
2228 if (iir == 0)
2229 return IRQ_NONE;
2230
2231 while (iir & ~flip_mask) {
2232 /* Can't rely on pipestat interrupt bit in iir as it might
2233 * have been cleared after the pipestat interrupt was received.
2234 * It doesn't set the bit in iir again, but it still produces
2235 * interrupts (for non-MSI).
2236 */
2237 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
2238 if (iir & I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT)
2239 i915_handle_error(dev, false);
2240
2241 for_each_pipe(pipe) {
2242 int reg = PIPESTAT(pipe);
2243 pipe_stats[pipe] = I915_READ(reg);
2244
2245 /*
2246 * Clear the PIPE*STAT regs before the IIR
2247 */
2248 if (pipe_stats[pipe] & 0x8000ffff) {
2249 if (pipe_stats[pipe] & PIPE_FIFO_UNDERRUN_STATUS)
2250 DRM_DEBUG_DRIVER("pipe %c underrun\n",
2251 pipe_name(pipe));
2252 I915_WRITE(reg, pipe_stats[pipe]);
2253 irq_received = 1;
2254 }
2255 }
2256 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2257
2258 I915_WRITE16(IIR, iir & ~flip_mask);
2259 new_iir = I915_READ16(IIR); /* Flush posted writes */
2260
2261 if (dev->primary->master) {
2262 master_priv = dev->primary->master->driver_priv;
2263 if (master_priv->sarea_priv)
2264 master_priv->sarea_priv->last_dispatch =
2265 READ_BREADCRUMB(dev_priv);
2266 }
2267
2268 if (iir & I915_USER_INTERRUPT)
2269 notify_ring(dev, &dev_priv->ring[RCS]);
2270
2271 if (pipe_stats[0] & PIPE_VBLANK_INTERRUPT_STATUS &&
2272 drm_handle_vblank(dev, 0)) {
2273 if (iir & I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT) {
2274 intel_prepare_page_flip(dev, 0);
2275 intel_finish_page_flip(dev, 0);
2276 flip_mask &= ~I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT;
2277 }
2278 }
2279
2280 if (pipe_stats[1] & PIPE_VBLANK_INTERRUPT_STATUS &&
2281 drm_handle_vblank(dev, 1)) {
2282 if (iir & I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT) {
2283 intel_prepare_page_flip(dev, 1);
2284 intel_finish_page_flip(dev, 1);
2285 flip_mask &= ~I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT;
2286 }
2287 }
2288
2289 iir = new_iir;
2290 }
2291
2292 return IRQ_HANDLED;
2293}
2294
2295static void i8xx_irq_uninstall(struct drm_device * dev)
2296{
2297 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2298 int pipe;
2299
2300 dev_priv->vblank_pipe = 0;
2301
2302 for_each_pipe(pipe) {
2303 /* Clear enable bits; then clear status bits */
2304 I915_WRITE(PIPESTAT(pipe), 0);
2305 I915_WRITE(PIPESTAT(pipe), I915_READ(PIPESTAT(pipe)));
2306 }
2307 I915_WRITE16(IMR, 0xffff);
2308 I915_WRITE16(IER, 0x0);
2309 I915_WRITE16(IIR, I915_READ16(IIR));
2310}
2311
Chris Wilsona266c7d2012-04-24 22:59:44 +01002312static void i915_irq_preinstall(struct drm_device * dev)
2313{
2314 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2315 int pipe;
2316
2317 atomic_set(&dev_priv->irq_received, 0);
2318
2319 if (I915_HAS_HOTPLUG(dev)) {
2320 I915_WRITE(PORT_HOTPLUG_EN, 0);
2321 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
2322 }
2323
Chris Wilson00d98eb2012-04-24 22:59:48 +01002324 I915_WRITE16(HWSTAM, 0xeffe);
Chris Wilsona266c7d2012-04-24 22:59:44 +01002325 for_each_pipe(pipe)
2326 I915_WRITE(PIPESTAT(pipe), 0);
2327 I915_WRITE(IMR, 0xffffffff);
2328 I915_WRITE(IER, 0x0);
2329 POSTING_READ(IER);
2330}
2331
2332static int i915_irq_postinstall(struct drm_device *dev)
2333{
2334 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Chris Wilson38bde182012-04-24 22:59:50 +01002335 u32 enable_mask;
Chris Wilsona266c7d2012-04-24 22:59:44 +01002336
2337 dev_priv->vblank_pipe = DRM_I915_VBLANK_PIPE_A | DRM_I915_VBLANK_PIPE_B;
2338
Chris Wilsona266c7d2012-04-24 22:59:44 +01002339 dev_priv->pipestat[0] = 0;
2340 dev_priv->pipestat[1] = 0;
2341
Chris Wilson38bde182012-04-24 22:59:50 +01002342 I915_WRITE(EMR, ~(I915_ERROR_PAGE_TABLE | I915_ERROR_MEMORY_REFRESH));
2343
2344 /* Unmask the interrupts that we always want on. */
2345 dev_priv->irq_mask =
2346 ~(I915_ASLE_INTERRUPT |
2347 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
2348 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
2349 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
2350 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT |
2351 I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT);
2352
2353 enable_mask =
2354 I915_ASLE_INTERRUPT |
2355 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
2356 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
2357 I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT |
2358 I915_USER_INTERRUPT;
2359
Chris Wilsona266c7d2012-04-24 22:59:44 +01002360 if (I915_HAS_HOTPLUG(dev)) {
2361 /* Enable in IER... */
2362 enable_mask |= I915_DISPLAY_PORT_INTERRUPT;
2363 /* and unmask in IMR */
2364 dev_priv->irq_mask &= ~I915_DISPLAY_PORT_INTERRUPT;
2365 }
2366
Chris Wilsona266c7d2012-04-24 22:59:44 +01002367 I915_WRITE(IMR, dev_priv->irq_mask);
2368 I915_WRITE(IER, enable_mask);
2369 POSTING_READ(IER);
2370
2371 if (I915_HAS_HOTPLUG(dev)) {
2372 u32 hotplug_en = I915_READ(PORT_HOTPLUG_EN);
2373
Chris Wilsona266c7d2012-04-24 22:59:44 +01002374 if (dev_priv->hotplug_supported_mask & HDMIB_HOTPLUG_INT_STATUS)
2375 hotplug_en |= HDMIB_HOTPLUG_INT_EN;
2376 if (dev_priv->hotplug_supported_mask & HDMIC_HOTPLUG_INT_STATUS)
2377 hotplug_en |= HDMIC_HOTPLUG_INT_EN;
2378 if (dev_priv->hotplug_supported_mask & HDMID_HOTPLUG_INT_STATUS)
2379 hotplug_en |= HDMID_HOTPLUG_INT_EN;
2380 if (dev_priv->hotplug_supported_mask & SDVOC_HOTPLUG_INT_STATUS)
2381 hotplug_en |= SDVOC_HOTPLUG_INT_EN;
2382 if (dev_priv->hotplug_supported_mask & SDVOB_HOTPLUG_INT_STATUS)
2383 hotplug_en |= SDVOB_HOTPLUG_INT_EN;
2384 if (dev_priv->hotplug_supported_mask & CRT_HOTPLUG_INT_STATUS) {
2385 hotplug_en |= CRT_HOTPLUG_INT_EN;
Chris Wilsona266c7d2012-04-24 22:59:44 +01002386 hotplug_en |= CRT_HOTPLUG_VOLTAGE_COMPARE_50;
2387 }
2388
2389 /* Ignore TV since it's buggy */
2390
2391 I915_WRITE(PORT_HOTPLUG_EN, hotplug_en);
2392 }
2393
2394 intel_opregion_enable_asle(dev);
2395
2396 return 0;
2397}
2398
2399static irqreturn_t i915_irq_handler(DRM_IRQ_ARGS)
2400{
2401 struct drm_device *dev = (struct drm_device *) arg;
2402 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2403 struct drm_i915_master_private *master_priv;
Chris Wilson8291ee92012-04-24 22:59:47 +01002404 u32 iir, new_iir, pipe_stats[I915_MAX_PIPES];
Chris Wilsona266c7d2012-04-24 22:59:44 +01002405 unsigned long irqflags;
Chris Wilson38bde182012-04-24 22:59:50 +01002406 u32 flip_mask =
2407 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
2408 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT;
2409 u32 flip[2] = {
2410 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT,
2411 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT
2412 };
2413 int pipe, ret = IRQ_NONE;
Chris Wilsona266c7d2012-04-24 22:59:44 +01002414
2415 atomic_inc(&dev_priv->irq_received);
2416
2417 iir = I915_READ(IIR);
Chris Wilson38bde182012-04-24 22:59:50 +01002418 do {
2419 bool irq_received = (iir & ~flip_mask) != 0;
Chris Wilson8291ee92012-04-24 22:59:47 +01002420 bool blc_event = false;
Chris Wilsona266c7d2012-04-24 22:59:44 +01002421
2422 /* Can't rely on pipestat interrupt bit in iir as it might
2423 * have been cleared after the pipestat interrupt was received.
2424 * It doesn't set the bit in iir again, but it still produces
2425 * interrupts (for non-MSI).
2426 */
2427 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
2428 if (iir & I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT)
2429 i915_handle_error(dev, false);
2430
2431 for_each_pipe(pipe) {
2432 int reg = PIPESTAT(pipe);
2433 pipe_stats[pipe] = I915_READ(reg);
2434
Chris Wilson38bde182012-04-24 22:59:50 +01002435 /* Clear the PIPE*STAT regs before the IIR */
Chris Wilsona266c7d2012-04-24 22:59:44 +01002436 if (pipe_stats[pipe] & 0x8000ffff) {
2437 if (pipe_stats[pipe] & PIPE_FIFO_UNDERRUN_STATUS)
2438 DRM_DEBUG_DRIVER("pipe %c underrun\n",
2439 pipe_name(pipe));
2440 I915_WRITE(reg, pipe_stats[pipe]);
Chris Wilson38bde182012-04-24 22:59:50 +01002441 irq_received = true;
Chris Wilsona266c7d2012-04-24 22:59:44 +01002442 }
2443 }
2444 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2445
2446 if (!irq_received)
2447 break;
2448
Chris Wilsona266c7d2012-04-24 22:59:44 +01002449 /* Consume port. Then clear IIR or we'll miss events */
2450 if ((I915_HAS_HOTPLUG(dev)) &&
2451 (iir & I915_DISPLAY_PORT_INTERRUPT)) {
2452 u32 hotplug_status = I915_READ(PORT_HOTPLUG_STAT);
2453
2454 DRM_DEBUG_DRIVER("hotplug event received, stat 0x%08x\n",
2455 hotplug_status);
2456 if (hotplug_status & dev_priv->hotplug_supported_mask)
2457 queue_work(dev_priv->wq,
2458 &dev_priv->hotplug_work);
2459
2460 I915_WRITE(PORT_HOTPLUG_STAT, hotplug_status);
Chris Wilson38bde182012-04-24 22:59:50 +01002461 POSTING_READ(PORT_HOTPLUG_STAT);
Chris Wilsona266c7d2012-04-24 22:59:44 +01002462 }
2463
Chris Wilson38bde182012-04-24 22:59:50 +01002464 I915_WRITE(IIR, iir & ~flip_mask);
Chris Wilsona266c7d2012-04-24 22:59:44 +01002465 new_iir = I915_READ(IIR); /* Flush posted writes */
2466
Chris Wilsona266c7d2012-04-24 22:59:44 +01002467 if (iir & I915_USER_INTERRUPT)
2468 notify_ring(dev, &dev_priv->ring[RCS]);
Chris Wilsona266c7d2012-04-24 22:59:44 +01002469
Chris Wilsona266c7d2012-04-24 22:59:44 +01002470 for_each_pipe(pipe) {
Chris Wilson38bde182012-04-24 22:59:50 +01002471 int plane = pipe;
2472 if (IS_MOBILE(dev))
2473 plane = !plane;
Chris Wilson8291ee92012-04-24 22:59:47 +01002474 if (pipe_stats[pipe] & PIPE_VBLANK_INTERRUPT_STATUS &&
Chris Wilsona266c7d2012-04-24 22:59:44 +01002475 drm_handle_vblank(dev, pipe)) {
Chris Wilson38bde182012-04-24 22:59:50 +01002476 if (iir & flip[plane]) {
2477 intel_prepare_page_flip(dev, plane);
2478 intel_finish_page_flip(dev, pipe);
2479 flip_mask &= ~flip[plane];
2480 }
Chris Wilsona266c7d2012-04-24 22:59:44 +01002481 }
2482
2483 if (pipe_stats[pipe] & PIPE_LEGACY_BLC_EVENT_STATUS)
2484 blc_event = true;
2485 }
2486
Chris Wilsona266c7d2012-04-24 22:59:44 +01002487 if (blc_event || (iir & I915_ASLE_INTERRUPT))
2488 intel_opregion_asle_intr(dev);
2489
2490 /* With MSI, interrupts are only generated when iir
2491 * transitions from zero to nonzero. If another bit got
2492 * set while we were handling the existing iir bits, then
2493 * we would never get another interrupt.
2494 *
2495 * This is fine on non-MSI as well, as if we hit this path
2496 * we avoid exiting the interrupt handler only to generate
2497 * another one.
2498 *
2499 * Note that for MSI this could cause a stray interrupt report
2500 * if an interrupt landed in the time between writing IIR and
2501 * the posting read. This should be rare enough to never
2502 * trigger the 99% of 100,000 interrupts test for disabling
2503 * stray interrupts.
2504 */
Chris Wilson38bde182012-04-24 22:59:50 +01002505 ret = IRQ_HANDLED;
Chris Wilsona266c7d2012-04-24 22:59:44 +01002506 iir = new_iir;
Chris Wilson38bde182012-04-24 22:59:50 +01002507 } while (iir & ~flip_mask);
Chris Wilsona266c7d2012-04-24 22:59:44 +01002508
Chris Wilson8291ee92012-04-24 22:59:47 +01002509 if (dev->primary->master) {
2510 master_priv = dev->primary->master->driver_priv;
2511 if (master_priv->sarea_priv)
2512 master_priv->sarea_priv->last_dispatch =
2513 READ_BREADCRUMB(dev_priv);
2514 }
2515
Chris Wilsona266c7d2012-04-24 22:59:44 +01002516 return ret;
2517}
2518
2519static void i915_irq_uninstall(struct drm_device * dev)
2520{
2521 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2522 int pipe;
2523
Chris Wilsona266c7d2012-04-24 22:59:44 +01002524 dev_priv->vblank_pipe = 0;
2525
2526 if (I915_HAS_HOTPLUG(dev)) {
2527 I915_WRITE(PORT_HOTPLUG_EN, 0);
2528 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
2529 }
2530
Chris Wilson00d98eb2012-04-24 22:59:48 +01002531 I915_WRITE16(HWSTAM, 0xffff);
Chris Wilson55b39752012-04-24 22:59:49 +01002532 for_each_pipe(pipe) {
2533 /* Clear enable bits; then clear status bits */
Chris Wilsona266c7d2012-04-24 22:59:44 +01002534 I915_WRITE(PIPESTAT(pipe), 0);
Chris Wilson55b39752012-04-24 22:59:49 +01002535 I915_WRITE(PIPESTAT(pipe), I915_READ(PIPESTAT(pipe)));
2536 }
Chris Wilsona266c7d2012-04-24 22:59:44 +01002537 I915_WRITE(IMR, 0xffffffff);
2538 I915_WRITE(IER, 0x0);
2539
Chris Wilsona266c7d2012-04-24 22:59:44 +01002540 I915_WRITE(IIR, I915_READ(IIR));
2541}
2542
2543static void i965_irq_preinstall(struct drm_device * dev)
2544{
2545 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2546 int pipe;
2547
2548 atomic_set(&dev_priv->irq_received, 0);
2549
2550 if (I915_HAS_HOTPLUG(dev)) {
2551 I915_WRITE(PORT_HOTPLUG_EN, 0);
2552 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
2553 }
2554
2555 I915_WRITE(HWSTAM, 0xeffe);
2556 for_each_pipe(pipe)
2557 I915_WRITE(PIPESTAT(pipe), 0);
2558 I915_WRITE(IMR, 0xffffffff);
2559 I915_WRITE(IER, 0x0);
2560 POSTING_READ(IER);
2561}
2562
2563static int i965_irq_postinstall(struct drm_device *dev)
2564{
2565 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Chris Wilsonbbba0a92012-04-24 22:59:51 +01002566 u32 enable_mask;
Chris Wilsona266c7d2012-04-24 22:59:44 +01002567 u32 error_mask;
2568
2569 dev_priv->vblank_pipe = DRM_I915_VBLANK_PIPE_A | DRM_I915_VBLANK_PIPE_B;
2570
2571 /* Unmask the interrupts that we always want on. */
Chris Wilsonbbba0a92012-04-24 22:59:51 +01002572 dev_priv->irq_mask = ~(I915_ASLE_INTERRUPT |
2573 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
2574 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
2575 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
2576 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT |
2577 I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT);
2578
2579 enable_mask = ~dev_priv->irq_mask;
2580 enable_mask |= I915_USER_INTERRUPT;
2581
2582 if (IS_G4X(dev))
2583 enable_mask |= I915_BSD_USER_INTERRUPT;
Chris Wilsona266c7d2012-04-24 22:59:44 +01002584
2585 dev_priv->pipestat[0] = 0;
2586 dev_priv->pipestat[1] = 0;
2587
2588 if (I915_HAS_HOTPLUG(dev)) {
2589 /* Enable in IER... */
2590 enable_mask |= I915_DISPLAY_PORT_INTERRUPT;
2591 /* and unmask in IMR */
2592 dev_priv->irq_mask &= ~I915_DISPLAY_PORT_INTERRUPT;
2593 }
2594
2595 /*
2596 * Enable some error detection, note the instruction error mask
2597 * bit is reserved, so we leave it masked.
2598 */
2599 if (IS_G4X(dev)) {
2600 error_mask = ~(GM45_ERROR_PAGE_TABLE |
2601 GM45_ERROR_MEM_PRIV |
2602 GM45_ERROR_CP_PRIV |
2603 I915_ERROR_MEMORY_REFRESH);
2604 } else {
2605 error_mask = ~(I915_ERROR_PAGE_TABLE |
2606 I915_ERROR_MEMORY_REFRESH);
2607 }
2608 I915_WRITE(EMR, error_mask);
2609
2610 I915_WRITE(IMR, dev_priv->irq_mask);
2611 I915_WRITE(IER, enable_mask);
2612 POSTING_READ(IER);
2613
2614 if (I915_HAS_HOTPLUG(dev)) {
2615 u32 hotplug_en = I915_READ(PORT_HOTPLUG_EN);
2616
2617 /* Note HDMI and DP share bits */
2618 if (dev_priv->hotplug_supported_mask & HDMIB_HOTPLUG_INT_STATUS)
2619 hotplug_en |= HDMIB_HOTPLUG_INT_EN;
2620 if (dev_priv->hotplug_supported_mask & HDMIC_HOTPLUG_INT_STATUS)
2621 hotplug_en |= HDMIC_HOTPLUG_INT_EN;
2622 if (dev_priv->hotplug_supported_mask & HDMID_HOTPLUG_INT_STATUS)
2623 hotplug_en |= HDMID_HOTPLUG_INT_EN;
2624 if (dev_priv->hotplug_supported_mask & SDVOC_HOTPLUG_INT_STATUS)
2625 hotplug_en |= SDVOC_HOTPLUG_INT_EN;
2626 if (dev_priv->hotplug_supported_mask & SDVOB_HOTPLUG_INT_STATUS)
2627 hotplug_en |= SDVOB_HOTPLUG_INT_EN;
2628 if (dev_priv->hotplug_supported_mask & CRT_HOTPLUG_INT_STATUS) {
2629 hotplug_en |= CRT_HOTPLUG_INT_EN;
2630
2631 /* Programming the CRT detection parameters tends
2632 to generate a spurious hotplug event about three
2633 seconds later. So just do it once.
2634 */
2635 if (IS_G4X(dev))
2636 hotplug_en |= CRT_HOTPLUG_ACTIVATION_PERIOD_64;
2637 hotplug_en |= CRT_HOTPLUG_VOLTAGE_COMPARE_50;
2638 }
2639
2640 /* Ignore TV since it's buggy */
2641
2642 I915_WRITE(PORT_HOTPLUG_EN, hotplug_en);
2643 }
2644
2645 intel_opregion_enable_asle(dev);
2646
2647 return 0;
2648}
2649
2650static irqreturn_t i965_irq_handler(DRM_IRQ_ARGS)
2651{
2652 struct drm_device *dev = (struct drm_device *) arg;
2653 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2654 struct drm_i915_master_private *master_priv;
2655 u32 iir, new_iir;
2656 u32 pipe_stats[I915_MAX_PIPES];
Chris Wilsona266c7d2012-04-24 22:59:44 +01002657 unsigned long irqflags;
2658 int irq_received;
2659 int ret = IRQ_NONE, pipe;
Chris Wilsona266c7d2012-04-24 22:59:44 +01002660
2661 atomic_inc(&dev_priv->irq_received);
2662
2663 iir = I915_READ(IIR);
2664
Chris Wilsona266c7d2012-04-24 22:59:44 +01002665 for (;;) {
Chris Wilson2c8ba292012-04-24 22:59:46 +01002666 bool blc_event = false;
2667
Chris Wilsona266c7d2012-04-24 22:59:44 +01002668 irq_received = iir != 0;
2669
2670 /* Can't rely on pipestat interrupt bit in iir as it might
2671 * have been cleared after the pipestat interrupt was received.
2672 * It doesn't set the bit in iir again, but it still produces
2673 * interrupts (for non-MSI).
2674 */
2675 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
2676 if (iir & I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT)
2677 i915_handle_error(dev, false);
2678
2679 for_each_pipe(pipe) {
2680 int reg = PIPESTAT(pipe);
2681 pipe_stats[pipe] = I915_READ(reg);
2682
2683 /*
2684 * Clear the PIPE*STAT regs before the IIR
2685 */
2686 if (pipe_stats[pipe] & 0x8000ffff) {
2687 if (pipe_stats[pipe] & PIPE_FIFO_UNDERRUN_STATUS)
2688 DRM_DEBUG_DRIVER("pipe %c underrun\n",
2689 pipe_name(pipe));
2690 I915_WRITE(reg, pipe_stats[pipe]);
2691 irq_received = 1;
2692 }
2693 }
2694 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2695
2696 if (!irq_received)
2697 break;
2698
2699 ret = IRQ_HANDLED;
2700
2701 /* Consume port. Then clear IIR or we'll miss events */
2702 if ((I915_HAS_HOTPLUG(dev)) &&
2703 (iir & I915_DISPLAY_PORT_INTERRUPT)) {
2704 u32 hotplug_status = I915_READ(PORT_HOTPLUG_STAT);
2705
2706 DRM_DEBUG_DRIVER("hotplug event received, stat 0x%08x\n",
2707 hotplug_status);
2708 if (hotplug_status & dev_priv->hotplug_supported_mask)
2709 queue_work(dev_priv->wq,
2710 &dev_priv->hotplug_work);
2711
2712 I915_WRITE(PORT_HOTPLUG_STAT, hotplug_status);
2713 I915_READ(PORT_HOTPLUG_STAT);
2714 }
2715
2716 I915_WRITE(IIR, iir);
2717 new_iir = I915_READ(IIR); /* Flush posted writes */
2718
Chris Wilsona266c7d2012-04-24 22:59:44 +01002719 if (iir & I915_USER_INTERRUPT)
2720 notify_ring(dev, &dev_priv->ring[RCS]);
2721 if (iir & I915_BSD_USER_INTERRUPT)
2722 notify_ring(dev, &dev_priv->ring[VCS]);
2723
Chris Wilson4f7d1e72012-04-24 22:59:45 +01002724 if (iir & I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT)
Chris Wilsona266c7d2012-04-24 22:59:44 +01002725 intel_prepare_page_flip(dev, 0);
Chris Wilsona266c7d2012-04-24 22:59:44 +01002726
Chris Wilson4f7d1e72012-04-24 22:59:45 +01002727 if (iir & I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT)
Chris Wilsona266c7d2012-04-24 22:59:44 +01002728 intel_prepare_page_flip(dev, 1);
Chris Wilsona266c7d2012-04-24 22:59:44 +01002729
2730 for_each_pipe(pipe) {
Chris Wilson2c8ba292012-04-24 22:59:46 +01002731 if (pipe_stats[pipe] & PIPE_START_VBLANK_INTERRUPT_STATUS &&
Chris Wilsona266c7d2012-04-24 22:59:44 +01002732 drm_handle_vblank(dev, pipe)) {
Chris Wilson4f7d1e72012-04-24 22:59:45 +01002733 i915_pageflip_stall_check(dev, pipe);
2734 intel_finish_page_flip(dev, pipe);
Chris Wilsona266c7d2012-04-24 22:59:44 +01002735 }
2736
2737 if (pipe_stats[pipe] & PIPE_LEGACY_BLC_EVENT_STATUS)
2738 blc_event = true;
2739 }
2740
2741
2742 if (blc_event || (iir & I915_ASLE_INTERRUPT))
2743 intel_opregion_asle_intr(dev);
2744
2745 /* With MSI, interrupts are only generated when iir
2746 * transitions from zero to nonzero. If another bit got
2747 * set while we were handling the existing iir bits, then
2748 * we would never get another interrupt.
2749 *
2750 * This is fine on non-MSI as well, as if we hit this path
2751 * we avoid exiting the interrupt handler only to generate
2752 * another one.
2753 *
2754 * Note that for MSI this could cause a stray interrupt report
2755 * if an interrupt landed in the time between writing IIR and
2756 * the posting read. This should be rare enough to never
2757 * trigger the 99% of 100,000 interrupts test for disabling
2758 * stray interrupts.
2759 */
2760 iir = new_iir;
2761 }
2762
Chris Wilson2c8ba292012-04-24 22:59:46 +01002763 if (dev->primary->master) {
2764 master_priv = dev->primary->master->driver_priv;
2765 if (master_priv->sarea_priv)
2766 master_priv->sarea_priv->last_dispatch =
2767 READ_BREADCRUMB(dev_priv);
2768 }
2769
Chris Wilsona266c7d2012-04-24 22:59:44 +01002770 return ret;
2771}
2772
2773static void i965_irq_uninstall(struct drm_device * dev)
2774{
2775 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2776 int pipe;
2777
2778 if (!dev_priv)
2779 return;
2780
2781 dev_priv->vblank_pipe = 0;
2782
2783 if (I915_HAS_HOTPLUG(dev)) {
2784 I915_WRITE(PORT_HOTPLUG_EN, 0);
2785 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
2786 }
2787
2788 I915_WRITE(HWSTAM, 0xffffffff);
2789 for_each_pipe(pipe)
2790 I915_WRITE(PIPESTAT(pipe), 0);
2791 I915_WRITE(IMR, 0xffffffff);
2792 I915_WRITE(IER, 0x0);
2793
2794 for_each_pipe(pipe)
2795 I915_WRITE(PIPESTAT(pipe),
2796 I915_READ(PIPESTAT(pipe)) & 0x8000ffff);
2797 I915_WRITE(IIR, I915_READ(IIR));
2798}
2799
Jesse Barnesf71d4af2011-06-28 13:00:41 -07002800void intel_irq_init(struct drm_device *dev)
2801{
Chris Wilson8b2e3262012-04-24 22:59:41 +01002802 struct drm_i915_private *dev_priv = dev->dev_private;
2803
2804 INIT_WORK(&dev_priv->hotplug_work, i915_hotplug_work_func);
2805 INIT_WORK(&dev_priv->error_work, i915_error_work_func);
2806 INIT_WORK(&dev_priv->rps_work, gen6_pm_rps_work);
2807
Jesse Barnesf71d4af2011-06-28 13:00:41 -07002808 dev->driver->get_vblank_counter = i915_get_vblank_counter;
2809 dev->max_vblank_count = 0xffffff; /* only 24 bits of frame count */
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002810 if (IS_G4X(dev) || IS_GEN5(dev) || IS_GEN6(dev) || IS_IVYBRIDGE(dev) ||
2811 IS_VALLEYVIEW(dev)) {
Jesse Barnesf71d4af2011-06-28 13:00:41 -07002812 dev->max_vblank_count = 0xffffffff; /* full 32 bit counter */
2813 dev->driver->get_vblank_counter = gm45_get_vblank_counter;
2814 }
2815
Keith Packardc3613de2011-08-12 17:05:54 -07002816 if (drm_core_check_feature(dev, DRIVER_MODESET))
2817 dev->driver->get_vblank_timestamp = i915_get_vblank_timestamp;
2818 else
2819 dev->driver->get_vblank_timestamp = NULL;
Jesse Barnesf71d4af2011-06-28 13:00:41 -07002820 dev->driver->get_scanout_position = i915_get_crtc_scanoutpos;
2821
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002822 if (IS_VALLEYVIEW(dev)) {
2823 dev->driver->irq_handler = valleyview_irq_handler;
2824 dev->driver->irq_preinstall = valleyview_irq_preinstall;
2825 dev->driver->irq_postinstall = valleyview_irq_postinstall;
2826 dev->driver->irq_uninstall = valleyview_irq_uninstall;
2827 dev->driver->enable_vblank = valleyview_enable_vblank;
2828 dev->driver->disable_vblank = valleyview_disable_vblank;
2829 } else if (IS_IVYBRIDGE(dev)) {
Jesse Barnesf71d4af2011-06-28 13:00:41 -07002830 /* Share pre & uninstall handlers with ILK/SNB */
2831 dev->driver->irq_handler = ivybridge_irq_handler;
2832 dev->driver->irq_preinstall = ironlake_irq_preinstall;
2833 dev->driver->irq_postinstall = ivybridge_irq_postinstall;
2834 dev->driver->irq_uninstall = ironlake_irq_uninstall;
2835 dev->driver->enable_vblank = ivybridge_enable_vblank;
2836 dev->driver->disable_vblank = ivybridge_disable_vblank;
2837 } else if (HAS_PCH_SPLIT(dev)) {
2838 dev->driver->irq_handler = ironlake_irq_handler;
2839 dev->driver->irq_preinstall = ironlake_irq_preinstall;
2840 dev->driver->irq_postinstall = ironlake_irq_postinstall;
2841 dev->driver->irq_uninstall = ironlake_irq_uninstall;
2842 dev->driver->enable_vblank = ironlake_enable_vblank;
2843 dev->driver->disable_vblank = ironlake_disable_vblank;
2844 } else {
Chris Wilsonc2798b12012-04-22 21:13:57 +01002845 if (INTEL_INFO(dev)->gen == 2) {
2846 dev->driver->irq_preinstall = i8xx_irq_preinstall;
2847 dev->driver->irq_postinstall = i8xx_irq_postinstall;
2848 dev->driver->irq_handler = i8xx_irq_handler;
2849 dev->driver->irq_uninstall = i8xx_irq_uninstall;
Chris Wilsona266c7d2012-04-24 22:59:44 +01002850 } else if (INTEL_INFO(dev)->gen == 3) {
Chris Wilson4f7d1e72012-04-24 22:59:45 +01002851 /* IIR "flip pending" means done if this bit is set */
2852 I915_WRITE(ECOSKPD, _MASKED_BIT_DISABLE(ECO_FLIP_DONE));
2853
Chris Wilsona266c7d2012-04-24 22:59:44 +01002854 dev->driver->irq_preinstall = i915_irq_preinstall;
2855 dev->driver->irq_postinstall = i915_irq_postinstall;
2856 dev->driver->irq_uninstall = i915_irq_uninstall;
2857 dev->driver->irq_handler = i915_irq_handler;
Chris Wilsonc2798b12012-04-22 21:13:57 +01002858 } else {
Chris Wilsona266c7d2012-04-24 22:59:44 +01002859 dev->driver->irq_preinstall = i965_irq_preinstall;
2860 dev->driver->irq_postinstall = i965_irq_postinstall;
2861 dev->driver->irq_uninstall = i965_irq_uninstall;
2862 dev->driver->irq_handler = i965_irq_handler;
Chris Wilsonc2798b12012-04-22 21:13:57 +01002863 }
Jesse Barnesf71d4af2011-06-28 13:00:41 -07002864 dev->driver->enable_vblank = i915_enable_vblank;
2865 dev->driver->disable_vblank = i915_disable_vblank;
2866 }
2867}