blob: a0129cfc3b313f6790faebacbbddaadbd2e9caac [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
Zhenyu Wang036a4a72009-06-08 14:40:19 +080040/* For display hotplug interrupt */
Chris Wilson995b67622010-08-20 13:23:26 +010041static void
Adam Jacksonf2b115e2009-12-03 17:14:42 -050042ironlake_enable_display_irq(drm_i915_private_t *dev_priv, u32 mask)
Zhenyu Wang036a4a72009-06-08 14:40:19 +080043{
Chris Wilson1ec14ad2010-12-04 11:30:53 +000044 if ((dev_priv->irq_mask & mask) != 0) {
45 dev_priv->irq_mask &= ~mask;
46 I915_WRITE(DEIMR, dev_priv->irq_mask);
Chris Wilson3143a2b2010-11-16 15:55:10 +000047 POSTING_READ(DEIMR);
Zhenyu Wang036a4a72009-06-08 14:40:19 +080048 }
49}
50
51static inline void
Adam Jacksonf2b115e2009-12-03 17:14:42 -050052ironlake_disable_display_irq(drm_i915_private_t *dev_priv, u32 mask)
Zhenyu Wang036a4a72009-06-08 14:40:19 +080053{
Chris Wilson1ec14ad2010-12-04 11:30:53 +000054 if ((dev_priv->irq_mask & mask) != mask) {
55 dev_priv->irq_mask |= mask;
56 I915_WRITE(DEIMR, dev_priv->irq_mask);
Chris Wilson3143a2b2010-11-16 15:55:10 +000057 POSTING_READ(DEIMR);
Zhenyu Wang036a4a72009-06-08 14:40:19 +080058 }
59}
60
Keith Packard7c463582008-11-04 02:03:27 -080061void
62i915_enable_pipestat(drm_i915_private_t *dev_priv, int pipe, u32 mask)
63{
64 if ((dev_priv->pipestat[pipe] & mask) != mask) {
Jesse Barnes9db4a9c2011-02-07 12:26:52 -080065 u32 reg = PIPESTAT(pipe);
Keith Packard7c463582008-11-04 02:03:27 -080066
67 dev_priv->pipestat[pipe] |= mask;
68 /* Enable the interrupt, clear any pending status */
69 I915_WRITE(reg, dev_priv->pipestat[pipe] | (mask >> 16));
Chris Wilson3143a2b2010-11-16 15:55:10 +000070 POSTING_READ(reg);
Keith Packard7c463582008-11-04 02:03:27 -080071 }
72}
73
74void
75i915_disable_pipestat(drm_i915_private_t *dev_priv, int pipe, u32 mask)
76{
77 if ((dev_priv->pipestat[pipe] & mask) != 0) {
Jesse Barnes9db4a9c2011-02-07 12:26:52 -080078 u32 reg = PIPESTAT(pipe);
Keith Packard7c463582008-11-04 02:03:27 -080079
80 dev_priv->pipestat[pipe] &= ~mask;
81 I915_WRITE(reg, dev_priv->pipestat[pipe]);
Chris Wilson3143a2b2010-11-16 15:55:10 +000082 POSTING_READ(reg);
Keith Packard7c463582008-11-04 02:03:27 -080083 }
84}
85
=?utf-8?q?Michel_D=C3=A4nzer?=a6b54f32006-10-24 23:37:43 +100086/**
Zhao Yakui01c66882009-10-28 05:10:00 +000087 * intel_enable_asle - enable ASLE interrupt for OpRegion
88 */
Chris Wilson1ec14ad2010-12-04 11:30:53 +000089void intel_enable_asle(struct drm_device *dev)
Zhao Yakui01c66882009-10-28 05:10:00 +000090{
Chris Wilson1ec14ad2010-12-04 11:30:53 +000091 drm_i915_private_t *dev_priv = dev->dev_private;
92 unsigned long irqflags;
93
Jesse Barnes7e231dbe2012-03-28 13:39:38 -070094 /* FIXME: opregion/asle for VLV */
95 if (IS_VALLEYVIEW(dev))
96 return;
97
Chris Wilson1ec14ad2010-12-04 11:30:53 +000098 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Zhao Yakui01c66882009-10-28 05:10:00 +000099
Eric Anholtc619eed2010-01-28 16:45:52 -0800100 if (HAS_PCH_SPLIT(dev))
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500101 ironlake_enable_display_irq(dev_priv, DE_GSE);
Zhao Yakuiedcb49c2010-04-07 17:11:21 +0800102 else {
Zhao Yakui01c66882009-10-28 05:10:00 +0000103 i915_enable_pipestat(dev_priv, 1,
Jesse Barnesd874bcf2010-06-30 13:16:00 -0700104 PIPE_LEGACY_BLC_EVENT_ENABLE);
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100105 if (INTEL_INFO(dev)->gen >= 4)
Zhao Yakuiedcb49c2010-04-07 17:11:21 +0800106 i915_enable_pipestat(dev_priv, 0,
Jesse Barnesd874bcf2010-06-30 13:16:00 -0700107 PIPE_LEGACY_BLC_EVENT_ENABLE);
Zhao Yakuiedcb49c2010-04-07 17:11:21 +0800108 }
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000109
110 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
Zhao Yakui01c66882009-10-28 05:10:00 +0000111}
112
113/**
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700114 * i915_pipe_enabled - check if a pipe is enabled
115 * @dev: DRM device
116 * @pipe: pipe to check
117 *
118 * Reading certain registers when the pipe is disabled can hang the chip.
119 * Use this routine to make sure the PLL is running and the pipe is active
120 * before reading such registers if unsure.
121 */
122static int
123i915_pipe_enabled(struct drm_device *dev, int pipe)
124{
125 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Chris Wilson5eddb702010-09-11 13:48:45 +0100126 return I915_READ(PIPECONF(pipe)) & PIPECONF_ENABLE;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700127}
128
Keith Packard42f52ef2008-10-18 19:39:29 -0700129/* Called from drm generic code, passed a 'crtc', which
130 * we use as a pipe index
131 */
Jesse Barnesf71d4af2011-06-28 13:00:41 -0700132static u32 i915_get_vblank_counter(struct drm_device *dev, int pipe)
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700133{
134 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
135 unsigned long high_frame;
136 unsigned long low_frame;
Chris Wilson5eddb702010-09-11 13:48:45 +0100137 u32 high1, high2, low;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700138
139 if (!i915_pipe_enabled(dev, pipe)) {
Zhao Yakui44d98a62009-10-09 11:39:40 +0800140 DRM_DEBUG_DRIVER("trying to get vblank count for disabled "
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800141 "pipe %c\n", pipe_name(pipe));
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700142 return 0;
143 }
144
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800145 high_frame = PIPEFRAME(pipe);
146 low_frame = PIPEFRAMEPIXEL(pipe);
Chris Wilson5eddb702010-09-11 13:48:45 +0100147
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700148 /*
149 * High & low register fields aren't synchronized, so make sure
150 * we get a low value that's stable across two reads of the high
151 * register.
152 */
153 do {
Chris Wilson5eddb702010-09-11 13:48:45 +0100154 high1 = I915_READ(high_frame) & PIPE_FRAME_HIGH_MASK;
155 low = I915_READ(low_frame) & PIPE_FRAME_LOW_MASK;
156 high2 = I915_READ(high_frame) & PIPE_FRAME_HIGH_MASK;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700157 } while (high1 != high2);
158
Chris Wilson5eddb702010-09-11 13:48:45 +0100159 high1 >>= PIPE_FRAME_HIGH_SHIFT;
160 low >>= PIPE_FRAME_LOW_SHIFT;
161 return (high1 << 8) | low;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700162}
163
Jesse Barnesf71d4af2011-06-28 13:00:41 -0700164static u32 gm45_get_vblank_counter(struct drm_device *dev, int pipe)
Jesse Barnes9880b7a2009-02-06 10:22:41 -0800165{
166 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800167 int reg = PIPE_FRMCOUNT_GM45(pipe);
Jesse Barnes9880b7a2009-02-06 10:22:41 -0800168
169 if (!i915_pipe_enabled(dev, pipe)) {
Zhao Yakui44d98a62009-10-09 11:39:40 +0800170 DRM_DEBUG_DRIVER("trying to get vblank count for disabled "
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800171 "pipe %c\n", pipe_name(pipe));
Jesse Barnes9880b7a2009-02-06 10:22:41 -0800172 return 0;
173 }
174
175 return I915_READ(reg);
176}
177
Jesse Barnesf71d4af2011-06-28 13:00:41 -0700178static int i915_get_crtc_scanoutpos(struct drm_device *dev, int pipe,
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100179 int *vpos, int *hpos)
180{
181 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
182 u32 vbl = 0, position = 0;
183 int vbl_start, vbl_end, htotal, vtotal;
184 bool in_vbl = true;
185 int ret = 0;
186
187 if (!i915_pipe_enabled(dev, pipe)) {
188 DRM_DEBUG_DRIVER("trying to get scanoutpos for disabled "
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800189 "pipe %c\n", pipe_name(pipe));
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100190 return 0;
191 }
192
193 /* Get vtotal. */
194 vtotal = 1 + ((I915_READ(VTOTAL(pipe)) >> 16) & 0x1fff);
195
196 if (INTEL_INFO(dev)->gen >= 4) {
197 /* No obvious pixelcount register. Only query vertical
198 * scanout position from Display scan line register.
199 */
200 position = I915_READ(PIPEDSL(pipe));
201
202 /* Decode into vertical scanout position. Don't have
203 * horizontal scanout position.
204 */
205 *vpos = position & 0x1fff;
206 *hpos = 0;
207 } else {
208 /* Have access to pixelcount since start of frame.
209 * We can split this into vertical and horizontal
210 * scanout position.
211 */
212 position = (I915_READ(PIPEFRAMEPIXEL(pipe)) & PIPE_PIXEL_MASK) >> PIPE_PIXEL_SHIFT;
213
214 htotal = 1 + ((I915_READ(HTOTAL(pipe)) >> 16) & 0x1fff);
215 *vpos = position / htotal;
216 *hpos = position - (*vpos * htotal);
217 }
218
219 /* Query vblank area. */
220 vbl = I915_READ(VBLANK(pipe));
221
222 /* Test position against vblank region. */
223 vbl_start = vbl & 0x1fff;
224 vbl_end = (vbl >> 16) & 0x1fff;
225
226 if ((*vpos < vbl_start) || (*vpos > vbl_end))
227 in_vbl = false;
228
229 /* Inside "upper part" of vblank area? Apply corrective offset: */
230 if (in_vbl && (*vpos >= vbl_start))
231 *vpos = *vpos - vtotal;
232
233 /* Readouts valid? */
234 if (vbl > 0)
235 ret |= DRM_SCANOUTPOS_VALID | DRM_SCANOUTPOS_ACCURATE;
236
237 /* In vblank? */
238 if (in_vbl)
239 ret |= DRM_SCANOUTPOS_INVBL;
240
241 return ret;
242}
243
Jesse Barnesf71d4af2011-06-28 13:00:41 -0700244static int i915_get_vblank_timestamp(struct drm_device *dev, int pipe,
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100245 int *max_error,
246 struct timeval *vblank_time,
247 unsigned flags)
248{
Chris Wilson4041b852011-01-22 10:07:56 +0000249 struct drm_i915_private *dev_priv = dev->dev_private;
250 struct drm_crtc *crtc;
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100251
Chris Wilson4041b852011-01-22 10:07:56 +0000252 if (pipe < 0 || pipe >= dev_priv->num_pipe) {
253 DRM_ERROR("Invalid crtc %d\n", pipe);
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100254 return -EINVAL;
255 }
256
257 /* Get drm_crtc to timestamp: */
Chris Wilson4041b852011-01-22 10:07:56 +0000258 crtc = intel_get_crtc_for_pipe(dev, pipe);
259 if (crtc == NULL) {
260 DRM_ERROR("Invalid crtc %d\n", pipe);
261 return -EINVAL;
262 }
263
264 if (!crtc->enabled) {
265 DRM_DEBUG_KMS("crtc %d is disabled\n", pipe);
266 return -EBUSY;
267 }
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100268
269 /* Helper routine in DRM core does all the work: */
Chris Wilson4041b852011-01-22 10:07:56 +0000270 return drm_calc_vbltimestamp_from_scanoutpos(dev, pipe, max_error,
271 vblank_time, flags,
272 crtc);
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100273}
274
Jesse Barnes5ca58282009-03-31 14:11:15 -0700275/*
276 * Handle hotplug events outside the interrupt handler proper.
277 */
278static void i915_hotplug_work_func(struct work_struct *work)
279{
280 drm_i915_private_t *dev_priv = container_of(work, drm_i915_private_t,
281 hotplug_work);
282 struct drm_device *dev = dev_priv->dev;
Keith Packardc31c4ba2009-05-06 11:48:58 -0700283 struct drm_mode_config *mode_config = &dev->mode_config;
Chris Wilson4ef69c72010-09-09 15:14:28 +0100284 struct intel_encoder *encoder;
Jesse Barnes5ca58282009-03-31 14:11:15 -0700285
Keith Packarda65e34c2011-07-25 10:04:56 -0700286 mutex_lock(&mode_config->mutex);
Jesse Barnese67189ab2011-02-11 14:44:51 -0800287 DRM_DEBUG_KMS("running encoder hotplug functions\n");
288
Chris Wilson4ef69c72010-09-09 15:14:28 +0100289 list_for_each_entry(encoder, &mode_config->encoder_list, base.head)
290 if (encoder->hot_plug)
291 encoder->hot_plug(encoder);
292
Keith Packard40ee3382011-07-28 15:31:19 -0700293 mutex_unlock(&mode_config->mutex);
294
Jesse Barnes5ca58282009-03-31 14:11:15 -0700295 /* Just fire off a uevent and let userspace tell us what to do */
Dave Airlieeb1f8e42010-05-07 06:42:51 +0000296 drm_helper_hpd_irq_event(dev);
Jesse Barnes5ca58282009-03-31 14:11:15 -0700297}
298
Jesse Barnesf97108d2010-01-29 11:27:07 -0800299static void i915_handle_rps_change(struct drm_device *dev)
300{
301 drm_i915_private_t *dev_priv = dev->dev_private;
Matthew Garrettb5b72e82010-02-02 18:30:47 +0000302 u32 busy_up, busy_down, max_avg, min_avg;
Jesse Barnesf97108d2010-01-29 11:27:07 -0800303 u8 new_delay = dev_priv->cur_delay;
304
Jesse Barnes7648fa92010-05-20 14:28:11 -0700305 I915_WRITE16(MEMINTRSTS, MEMINT_EVAL_CHG);
Matthew Garrettb5b72e82010-02-02 18:30:47 +0000306 busy_up = I915_READ(RCPREVBSYTUPAVG);
307 busy_down = I915_READ(RCPREVBSYTDNAVG);
Jesse Barnesf97108d2010-01-29 11:27:07 -0800308 max_avg = I915_READ(RCBMAXAVG);
309 min_avg = I915_READ(RCBMINAVG);
310
311 /* Handle RCS change request from hw */
Matthew Garrettb5b72e82010-02-02 18:30:47 +0000312 if (busy_up > max_avg) {
Jesse Barnesf97108d2010-01-29 11:27:07 -0800313 if (dev_priv->cur_delay != dev_priv->max_delay)
314 new_delay = dev_priv->cur_delay - 1;
315 if (new_delay < dev_priv->max_delay)
316 new_delay = dev_priv->max_delay;
Matthew Garrettb5b72e82010-02-02 18:30:47 +0000317 } else if (busy_down < min_avg) {
Jesse Barnesf97108d2010-01-29 11:27:07 -0800318 if (dev_priv->cur_delay != dev_priv->min_delay)
319 new_delay = dev_priv->cur_delay + 1;
320 if (new_delay > dev_priv->min_delay)
321 new_delay = dev_priv->min_delay;
322 }
323
Jesse Barnes7648fa92010-05-20 14:28:11 -0700324 if (ironlake_set_drps(dev, new_delay))
325 dev_priv->cur_delay = new_delay;
Jesse Barnesf97108d2010-01-29 11:27:07 -0800326
327 return;
328}
329
Chris Wilson549f7362010-10-19 11:19:32 +0100330static void notify_ring(struct drm_device *dev,
331 struct intel_ring_buffer *ring)
332{
333 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson475553d2011-01-20 09:52:56 +0000334 u32 seqno;
Chris Wilson9862e602011-01-04 22:22:17 +0000335
Chris Wilson475553d2011-01-20 09:52:56 +0000336 if (ring->obj == NULL)
337 return;
338
339 seqno = ring->get_seqno(ring);
Chris Wilsondb53a302011-02-03 11:57:46 +0000340 trace_i915_gem_request_complete(ring, seqno);
Chris Wilson9862e602011-01-04 22:22:17 +0000341
342 ring->irq_seqno = seqno;
Chris Wilson549f7362010-10-19 11:19:32 +0100343 wake_up_all(&ring->irq_queue);
Ben Widawsky3e0dc6b2011-06-29 10:26:42 -0700344 if (i915_enable_hangcheck) {
345 dev_priv->hangcheck_count = 0;
346 mod_timer(&dev_priv->hangcheck_timer,
347 jiffies +
348 msecs_to_jiffies(DRM_I915_HANGCHECK_PERIOD));
349 }
Chris Wilson549f7362010-10-19 11:19:32 +0100350}
351
Ben Widawsky4912d042011-04-25 11:25:20 -0700352static void gen6_pm_rps_work(struct work_struct *work)
Jesse Barnes3b8d8d92010-12-17 14:19:02 -0800353{
Ben Widawsky4912d042011-04-25 11:25:20 -0700354 drm_i915_private_t *dev_priv = container_of(work, drm_i915_private_t,
355 rps_work);
Jesse Barnes3b8d8d92010-12-17 14:19:02 -0800356 u8 new_delay = dev_priv->cur_delay;
Ben Widawsky4912d042011-04-25 11:25:20 -0700357 u32 pm_iir, pm_imr;
Jesse Barnes3b8d8d92010-12-17 14:19:02 -0800358
Ben Widawsky4912d042011-04-25 11:25:20 -0700359 spin_lock_irq(&dev_priv->rps_lock);
360 pm_iir = dev_priv->pm_iir;
361 dev_priv->pm_iir = 0;
362 pm_imr = I915_READ(GEN6_PMIMR);
Daniel Vettera9e26412011-09-08 14:00:21 +0200363 I915_WRITE(GEN6_PMIMR, 0);
Ben Widawsky4912d042011-04-25 11:25:20 -0700364 spin_unlock_irq(&dev_priv->rps_lock);
365
Jesse Barnes3b8d8d92010-12-17 14:19:02 -0800366 if (!pm_iir)
367 return;
368
Ben Widawsky4912d042011-04-25 11:25:20 -0700369 mutex_lock(&dev_priv->dev->struct_mutex);
Jesse Barnes3b8d8d92010-12-17 14:19:02 -0800370 if (pm_iir & GEN6_PM_RP_UP_THRESHOLD) {
371 if (dev_priv->cur_delay != dev_priv->max_delay)
372 new_delay = dev_priv->cur_delay + 1;
373 if (new_delay > dev_priv->max_delay)
374 new_delay = dev_priv->max_delay;
375 } else if (pm_iir & (GEN6_PM_RP_DOWN_THRESHOLD | GEN6_PM_RP_DOWN_TIMEOUT)) {
Ben Widawsky4912d042011-04-25 11:25:20 -0700376 gen6_gt_force_wake_get(dev_priv);
Jesse Barnes3b8d8d92010-12-17 14:19:02 -0800377 if (dev_priv->cur_delay != dev_priv->min_delay)
378 new_delay = dev_priv->cur_delay - 1;
379 if (new_delay < dev_priv->min_delay) {
380 new_delay = dev_priv->min_delay;
381 I915_WRITE(GEN6_RP_INTERRUPT_LIMITS,
382 I915_READ(GEN6_RP_INTERRUPT_LIMITS) |
383 ((new_delay << 16) & 0x3f0000));
384 } else {
385 /* Make sure we continue to get down interrupts
386 * until we hit the minimum frequency */
387 I915_WRITE(GEN6_RP_INTERRUPT_LIMITS,
388 I915_READ(GEN6_RP_INTERRUPT_LIMITS) & ~0x3f0000);
389 }
Ben Widawsky4912d042011-04-25 11:25:20 -0700390 gen6_gt_force_wake_put(dev_priv);
Jesse Barnes3b8d8d92010-12-17 14:19:02 -0800391 }
392
Ben Widawsky4912d042011-04-25 11:25:20 -0700393 gen6_set_rps(dev_priv->dev, new_delay);
Jesse Barnes3b8d8d92010-12-17 14:19:02 -0800394 dev_priv->cur_delay = new_delay;
395
Ben Widawsky4912d042011-04-25 11:25:20 -0700396 /*
397 * rps_lock not held here because clearing is non-destructive. There is
398 * an *extremely* unlikely race with gen6_rps_enable() that is prevented
399 * by holding struct_mutex for the duration of the write.
400 */
Ben Widawsky4912d042011-04-25 11:25:20 -0700401 mutex_unlock(&dev_priv->dev->struct_mutex);
Jesse Barnes3b8d8d92010-12-17 14:19:02 -0800402}
403
Daniel Vettere7b4c6b2012-03-30 20:24:35 +0200404static void snb_gt_irq_handler(struct drm_device *dev,
405 struct drm_i915_private *dev_priv,
406 u32 gt_iir)
407{
408
409 if (gt_iir & (GEN6_RENDER_USER_INTERRUPT |
410 GEN6_RENDER_PIPE_CONTROL_NOTIFY_INTERRUPT))
411 notify_ring(dev, &dev_priv->ring[RCS]);
412 if (gt_iir & GEN6_BSD_USER_INTERRUPT)
413 notify_ring(dev, &dev_priv->ring[VCS]);
414 if (gt_iir & GEN6_BLITTER_USER_INTERRUPT)
415 notify_ring(dev, &dev_priv->ring[BCS]);
416
417 if (gt_iir & (GT_GEN6_BLT_CS_ERROR_INTERRUPT |
418 GT_GEN6_BSD_CS_ERROR_INTERRUPT |
419 GT_RENDER_CS_ERROR_INTERRUPT)) {
420 DRM_ERROR("GT error interrupt 0x%08x\n", gt_iir);
421 i915_handle_error(dev, false);
422 }
423}
424
Chris Wilsonfc6826d2012-04-15 11:56:03 +0100425static void gen6_queue_rps_work(struct drm_i915_private *dev_priv,
426 u32 pm_iir)
427{
428 unsigned long flags;
429
430 /*
431 * IIR bits should never already be set because IMR should
432 * prevent an interrupt from being shown in IIR. The warning
433 * displays a case where we've unsafely cleared
434 * dev_priv->pm_iir. Although missing an interrupt of the same
435 * type is not a problem, it displays a problem in the logic.
436 *
437 * The mask bit in IMR is cleared by rps_work.
438 */
439
440 spin_lock_irqsave(&dev_priv->rps_lock, flags);
441 WARN(dev_priv->pm_iir & pm_iir, "Missed a PM interrupt\n");
442 dev_priv->pm_iir |= pm_iir;
443 I915_WRITE(GEN6_PMIMR, dev_priv->pm_iir);
444 POSTING_READ(GEN6_PMIMR);
445 spin_unlock_irqrestore(&dev_priv->rps_lock, flags);
446
447 queue_work(dev_priv->wq, &dev_priv->rps_work);
448}
449
Jesse Barnes7e231dbe2012-03-28 13:39:38 -0700450static irqreturn_t valleyview_irq_handler(DRM_IRQ_ARGS)
451{
452 struct drm_device *dev = (struct drm_device *) arg;
453 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
454 u32 iir, gt_iir, pm_iir;
455 irqreturn_t ret = IRQ_NONE;
456 unsigned long irqflags;
457 int pipe;
458 u32 pipe_stats[I915_MAX_PIPES];
459 u32 vblank_status;
460 int vblank = 0;
461 bool blc_event;
462
463 atomic_inc(&dev_priv->irq_received);
464
465 vblank_status = PIPE_START_VBLANK_INTERRUPT_STATUS |
466 PIPE_VBLANK_INTERRUPT_STATUS;
467
468 while (true) {
469 iir = I915_READ(VLV_IIR);
470 gt_iir = I915_READ(GTIIR);
471 pm_iir = I915_READ(GEN6_PMIIR);
472
473 if (gt_iir == 0 && pm_iir == 0 && iir == 0)
474 goto out;
475
476 ret = IRQ_HANDLED;
477
Daniel Vettere7b4c6b2012-03-30 20:24:35 +0200478 snb_gt_irq_handler(dev, dev_priv, gt_iir);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -0700479
480 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
481 for_each_pipe(pipe) {
482 int reg = PIPESTAT(pipe);
483 pipe_stats[pipe] = I915_READ(reg);
484
485 /*
486 * Clear the PIPE*STAT regs before the IIR
487 */
488 if (pipe_stats[pipe] & 0x8000ffff) {
489 if (pipe_stats[pipe] & PIPE_FIFO_UNDERRUN_STATUS)
490 DRM_DEBUG_DRIVER("pipe %c underrun\n",
491 pipe_name(pipe));
492 I915_WRITE(reg, pipe_stats[pipe]);
493 }
494 }
495 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
496
497 /* Consume port. Then clear IIR or we'll miss events */
498 if (iir & I915_DISPLAY_PORT_INTERRUPT) {
499 u32 hotplug_status = I915_READ(PORT_HOTPLUG_STAT);
500
501 DRM_DEBUG_DRIVER("hotplug event received, stat 0x%08x\n",
502 hotplug_status);
503 if (hotplug_status & dev_priv->hotplug_supported_mask)
504 queue_work(dev_priv->wq,
505 &dev_priv->hotplug_work);
506
507 I915_WRITE(PORT_HOTPLUG_STAT, hotplug_status);
508 I915_READ(PORT_HOTPLUG_STAT);
509 }
510
511
512 if (iir & I915_DISPLAY_PIPE_A_VBLANK_INTERRUPT) {
513 drm_handle_vblank(dev, 0);
514 vblank++;
Chris Wilsone0f608d2012-04-24 22:59:43 +0100515 intel_finish_page_flip(dev, 0);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -0700516 }
517
518 if (iir & I915_DISPLAY_PIPE_B_VBLANK_INTERRUPT) {
519 drm_handle_vblank(dev, 1);
520 vblank++;
Chris Wilsone0f608d2012-04-24 22:59:43 +0100521 intel_finish_page_flip(dev, 0);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -0700522 }
523
524 if (pipe_stats[pipe] & PIPE_LEGACY_BLC_EVENT_STATUS)
525 blc_event = true;
526
Chris Wilsonfc6826d2012-04-15 11:56:03 +0100527 if (pm_iir & GEN6_PM_DEFERRED_EVENTS)
528 gen6_queue_rps_work(dev_priv, pm_iir);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -0700529
530 I915_WRITE(GTIIR, gt_iir);
531 I915_WRITE(GEN6_PMIIR, pm_iir);
532 I915_WRITE(VLV_IIR, iir);
533 }
534
535out:
536 return ret;
537}
538
Jesse Barnes776ad802011-01-04 15:09:39 -0800539static void pch_irq_handler(struct drm_device *dev)
540{
541 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
542 u32 pch_iir;
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800543 int pipe;
Jesse Barnes776ad802011-01-04 15:09:39 -0800544
545 pch_iir = I915_READ(SDEIIR);
546
547 if (pch_iir & SDE_AUDIO_POWER_MASK)
548 DRM_DEBUG_DRIVER("PCH audio power change on port %d\n",
549 (pch_iir & SDE_AUDIO_POWER_MASK) >>
550 SDE_AUDIO_POWER_SHIFT);
551
552 if (pch_iir & SDE_GMBUS)
553 DRM_DEBUG_DRIVER("PCH GMBUS interrupt\n");
554
555 if (pch_iir & SDE_AUDIO_HDCP_MASK)
556 DRM_DEBUG_DRIVER("PCH HDCP audio interrupt\n");
557
558 if (pch_iir & SDE_AUDIO_TRANS_MASK)
559 DRM_DEBUG_DRIVER("PCH transcoder audio interrupt\n");
560
561 if (pch_iir & SDE_POISON)
562 DRM_ERROR("PCH poison interrupt\n");
563
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800564 if (pch_iir & SDE_FDI_MASK)
565 for_each_pipe(pipe)
566 DRM_DEBUG_DRIVER(" pipe %c FDI IIR: 0x%08x\n",
567 pipe_name(pipe),
568 I915_READ(FDI_RX_IIR(pipe)));
Jesse Barnes776ad802011-01-04 15:09:39 -0800569
570 if (pch_iir & (SDE_TRANSB_CRC_DONE | SDE_TRANSA_CRC_DONE))
571 DRM_DEBUG_DRIVER("PCH transcoder CRC done interrupt\n");
572
573 if (pch_iir & (SDE_TRANSB_CRC_ERR | SDE_TRANSA_CRC_ERR))
574 DRM_DEBUG_DRIVER("PCH transcoder CRC error interrupt\n");
575
576 if (pch_iir & SDE_TRANSB_FIFO_UNDER)
577 DRM_DEBUG_DRIVER("PCH transcoder B underrun interrupt\n");
578 if (pch_iir & SDE_TRANSA_FIFO_UNDER)
579 DRM_DEBUG_DRIVER("PCH transcoder A underrun interrupt\n");
580}
581
Jesse Barnesf71d4af2011-06-28 13:00:41 -0700582static irqreturn_t ivybridge_irq_handler(DRM_IRQ_ARGS)
Jesse Barnesb1f14ad2011-04-06 12:13:38 -0700583{
584 struct drm_device *dev = (struct drm_device *) arg;
585 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
586 int ret = IRQ_NONE;
587 u32 de_iir, gt_iir, de_ier, pch_iir, pm_iir;
588 struct drm_i915_master_private *master_priv;
589
590 atomic_inc(&dev_priv->irq_received);
591
592 /* disable master interrupt before clearing iir */
593 de_ier = I915_READ(DEIER);
594 I915_WRITE(DEIER, de_ier & ~DE_MASTER_IRQ_CONTROL);
595 POSTING_READ(DEIER);
596
597 de_iir = I915_READ(DEIIR);
598 gt_iir = I915_READ(GTIIR);
599 pch_iir = I915_READ(SDEIIR);
600 pm_iir = I915_READ(GEN6_PMIIR);
601
602 if (de_iir == 0 && gt_iir == 0 && pch_iir == 0 && pm_iir == 0)
603 goto done;
604
605 ret = IRQ_HANDLED;
606
607 if (dev->primary->master) {
608 master_priv = dev->primary->master->driver_priv;
609 if (master_priv->sarea_priv)
610 master_priv->sarea_priv->last_dispatch =
611 READ_BREADCRUMB(dev_priv);
612 }
613
Daniel Vettere7b4c6b2012-03-30 20:24:35 +0200614 snb_gt_irq_handler(dev, dev_priv, gt_iir);
Jesse Barnesb1f14ad2011-04-06 12:13:38 -0700615
616 if (de_iir & DE_GSE_IVB)
617 intel_opregion_gse_intr(dev);
618
619 if (de_iir & DE_PLANEA_FLIP_DONE_IVB) {
620 intel_prepare_page_flip(dev, 0);
621 intel_finish_page_flip_plane(dev, 0);
622 }
623
624 if (de_iir & DE_PLANEB_FLIP_DONE_IVB) {
625 intel_prepare_page_flip(dev, 1);
626 intel_finish_page_flip_plane(dev, 1);
627 }
628
629 if (de_iir & DE_PIPEA_VBLANK_IVB)
630 drm_handle_vblank(dev, 0);
631
Dan Carpenterf6b07f42011-05-25 12:56:56 +0300632 if (de_iir & DE_PIPEB_VBLANK_IVB)
Jesse Barnesb1f14ad2011-04-06 12:13:38 -0700633 drm_handle_vblank(dev, 1);
634
635 /* check event from PCH */
636 if (de_iir & DE_PCH_EVENT_IVB) {
637 if (pch_iir & SDE_HOTPLUG_MASK_CPT)
638 queue_work(dev_priv->wq, &dev_priv->hotplug_work);
639 pch_irq_handler(dev);
640 }
641
Chris Wilsonfc6826d2012-04-15 11:56:03 +0100642 if (pm_iir & GEN6_PM_DEFERRED_EVENTS)
643 gen6_queue_rps_work(dev_priv, pm_iir);
Jesse Barnesb1f14ad2011-04-06 12:13:38 -0700644
645 /* should clear PCH hotplug event before clear CPU irq */
646 I915_WRITE(SDEIIR, pch_iir);
647 I915_WRITE(GTIIR, gt_iir);
648 I915_WRITE(DEIIR, de_iir);
649 I915_WRITE(GEN6_PMIIR, pm_iir);
650
651done:
652 I915_WRITE(DEIER, de_ier);
653 POSTING_READ(DEIER);
654
655 return ret;
656}
657
Daniel Vettere7b4c6b2012-03-30 20:24:35 +0200658static void ilk_gt_irq_handler(struct drm_device *dev,
659 struct drm_i915_private *dev_priv,
660 u32 gt_iir)
661{
662 if (gt_iir & (GT_USER_INTERRUPT | GT_PIPE_NOTIFY))
663 notify_ring(dev, &dev_priv->ring[RCS]);
664 if (gt_iir & GT_BSD_USER_INTERRUPT)
665 notify_ring(dev, &dev_priv->ring[VCS]);
666}
667
Jesse Barnesf71d4af2011-06-28 13:00:41 -0700668static irqreturn_t ironlake_irq_handler(DRM_IRQ_ARGS)
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800669{
Jesse Barnes46979952011-04-07 13:53:55 -0700670 struct drm_device *dev = (struct drm_device *) arg;
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800671 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
672 int ret = IRQ_NONE;
Jesse Barnes3b8d8d92010-12-17 14:19:02 -0800673 u32 de_iir, gt_iir, de_ier, pch_iir, pm_iir;
Yuanhan Liu2d7b8362010-10-08 10:21:06 +0100674 u32 hotplug_mask;
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800675 struct drm_i915_master_private *master_priv;
Xiang, Haihao881f47b2010-09-19 14:40:43 +0100676
Jesse Barnes46979952011-04-07 13:53:55 -0700677 atomic_inc(&dev_priv->irq_received);
678
Zou, Nanhai2d109a82009-11-06 02:13:01 +0000679 /* disable master interrupt before clearing iir */
680 de_ier = I915_READ(DEIER);
681 I915_WRITE(DEIER, de_ier & ~DE_MASTER_IRQ_CONTROL);
Chris Wilson3143a2b2010-11-16 15:55:10 +0000682 POSTING_READ(DEIER);
Zou, Nanhai2d109a82009-11-06 02:13:01 +0000683
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800684 de_iir = I915_READ(DEIIR);
685 gt_iir = I915_READ(GTIIR);
Zhenyu Wangc6501562009-11-03 18:57:21 +0000686 pch_iir = I915_READ(SDEIIR);
Jesse Barnes3b8d8d92010-12-17 14:19:02 -0800687 pm_iir = I915_READ(GEN6_PMIIR);
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800688
Jesse Barnes3b8d8d92010-12-17 14:19:02 -0800689 if (de_iir == 0 && gt_iir == 0 && pch_iir == 0 &&
690 (!IS_GEN6(dev) || pm_iir == 0))
Zou Nan haic7c85102010-01-15 10:29:06 +0800691 goto done;
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800692
Yuanhan Liu2d7b8362010-10-08 10:21:06 +0100693 if (HAS_PCH_CPT(dev))
694 hotplug_mask = SDE_HOTPLUG_MASK_CPT;
695 else
696 hotplug_mask = SDE_HOTPLUG_MASK;
697
Zou Nan haic7c85102010-01-15 10:29:06 +0800698 ret = IRQ_HANDLED;
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800699
Zou Nan haic7c85102010-01-15 10:29:06 +0800700 if (dev->primary->master) {
701 master_priv = dev->primary->master->driver_priv;
702 if (master_priv->sarea_priv)
703 master_priv->sarea_priv->last_dispatch =
704 READ_BREADCRUMB(dev_priv);
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800705 }
706
Daniel Vettere7b4c6b2012-03-30 20:24:35 +0200707 if (IS_GEN5(dev))
708 ilk_gt_irq_handler(dev, dev_priv, gt_iir);
709 else
710 snb_gt_irq_handler(dev, dev_priv, gt_iir);
Zou Nan haic7c85102010-01-15 10:29:06 +0800711
712 if (de_iir & DE_GSE)
Chris Wilson3b617962010-08-24 09:02:58 +0100713 intel_opregion_gse_intr(dev);
Zou Nan haic7c85102010-01-15 10:29:06 +0800714
Zhenyu Wangf072d2e2010-02-09 09:46:19 +0800715 if (de_iir & DE_PLANEA_FLIP_DONE) {
Jesse Barnes013d5aa2010-01-29 11:18:31 -0800716 intel_prepare_page_flip(dev, 0);
Chris Wilson2bbda382010-09-02 17:59:39 +0100717 intel_finish_page_flip_plane(dev, 0);
Jesse Barnes013d5aa2010-01-29 11:18:31 -0800718 }
719
Zhenyu Wangf072d2e2010-02-09 09:46:19 +0800720 if (de_iir & DE_PLANEB_FLIP_DONE) {
721 intel_prepare_page_flip(dev, 1);
Chris Wilson2bbda382010-09-02 17:59:39 +0100722 intel_finish_page_flip_plane(dev, 1);
Jesse Barnes013d5aa2010-01-29 11:18:31 -0800723 }
Li Pengc062df62010-01-23 00:12:58 +0800724
Zhenyu Wangf072d2e2010-02-09 09:46:19 +0800725 if (de_iir & DE_PIPEA_VBLANK)
726 drm_handle_vblank(dev, 0);
727
728 if (de_iir & DE_PIPEB_VBLANK)
729 drm_handle_vblank(dev, 1);
730
Zou Nan haic7c85102010-01-15 10:29:06 +0800731 /* check event from PCH */
Jesse Barnes776ad802011-01-04 15:09:39 -0800732 if (de_iir & DE_PCH_EVENT) {
733 if (pch_iir & hotplug_mask)
734 queue_work(dev_priv->wq, &dev_priv->hotplug_work);
735 pch_irq_handler(dev);
736 }
Zou Nan haic7c85102010-01-15 10:29:06 +0800737
Jesse Barnesf97108d2010-01-29 11:27:07 -0800738 if (de_iir & DE_PCU_EVENT) {
Jesse Barnes7648fa92010-05-20 14:28:11 -0700739 I915_WRITE16(MEMINTRSTS, I915_READ(MEMINTRSTS));
Jesse Barnesf97108d2010-01-29 11:27:07 -0800740 i915_handle_rps_change(dev);
741 }
742
Chris Wilsonfc6826d2012-04-15 11:56:03 +0100743 if (IS_GEN6(dev) && pm_iir & GEN6_PM_DEFERRED_EVENTS)
744 gen6_queue_rps_work(dev_priv, pm_iir);
Jesse Barnes3b8d8d92010-12-17 14:19:02 -0800745
Zou Nan haic7c85102010-01-15 10:29:06 +0800746 /* should clear PCH hotplug event before clear CPU irq */
747 I915_WRITE(SDEIIR, pch_iir);
748 I915_WRITE(GTIIR, gt_iir);
749 I915_WRITE(DEIIR, de_iir);
Ben Widawsky4912d042011-04-25 11:25:20 -0700750 I915_WRITE(GEN6_PMIIR, pm_iir);
Zou Nan haic7c85102010-01-15 10:29:06 +0800751
752done:
Zou, Nanhai2d109a82009-11-06 02:13:01 +0000753 I915_WRITE(DEIER, de_ier);
Chris Wilson3143a2b2010-11-16 15:55:10 +0000754 POSTING_READ(DEIER);
Zou, Nanhai2d109a82009-11-06 02:13:01 +0000755
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800756 return ret;
757}
758
Jesse Barnes8a905232009-07-11 16:48:03 -0400759/**
760 * i915_error_work_func - do process context error handling work
761 * @work: work struct
762 *
763 * Fire an error uevent so userspace can see that a hang or error
764 * was detected.
765 */
766static void i915_error_work_func(struct work_struct *work)
767{
768 drm_i915_private_t *dev_priv = container_of(work, drm_i915_private_t,
769 error_work);
770 struct drm_device *dev = dev_priv->dev;
Ben Gamarif316a422009-09-14 17:48:46 -0400771 char *error_event[] = { "ERROR=1", NULL };
772 char *reset_event[] = { "RESET=1", NULL };
773 char *reset_done_event[] = { "ERROR=0", NULL };
Jesse Barnes8a905232009-07-11 16:48:03 -0400774
Ben Gamarif316a422009-09-14 17:48:46 -0400775 kobject_uevent_env(&dev->primary->kdev.kobj, KOBJ_CHANGE, error_event);
Jesse Barnes8a905232009-07-11 16:48:03 -0400776
Ben Gamariba1234d2009-09-14 17:48:47 -0400777 if (atomic_read(&dev_priv->mm.wedged)) {
Chris Wilsonf803aa52010-09-19 12:38:26 +0100778 DRM_DEBUG_DRIVER("resetting chip\n");
779 kobject_uevent_env(&dev->primary->kdev.kobj, KOBJ_CHANGE, reset_event);
780 if (!i915_reset(dev, GRDOM_RENDER)) {
781 atomic_set(&dev_priv->mm.wedged, 0);
782 kobject_uevent_env(&dev->primary->kdev.kobj, KOBJ_CHANGE, reset_done_event);
Ben Gamarif316a422009-09-14 17:48:46 -0400783 }
Chris Wilson30dbf0c2010-09-25 10:19:17 +0100784 complete_all(&dev_priv->error_completion);
Ben Gamarif316a422009-09-14 17:48:46 -0400785 }
Jesse Barnes8a905232009-07-11 16:48:03 -0400786}
787
Chris Wilson3bd3c932010-08-19 08:19:30 +0100788#ifdef CONFIG_DEBUG_FS
Chris Wilson9df30792010-02-18 10:24:56 +0000789static struct drm_i915_error_object *
Chris Wilsonbcfb2e22011-01-07 21:06:07 +0000790i915_error_object_create(struct drm_i915_private *dev_priv,
Chris Wilson05394f32010-11-08 19:18:58 +0000791 struct drm_i915_gem_object *src)
Chris Wilson9df30792010-02-18 10:24:56 +0000792{
793 struct drm_i915_error_object *dst;
Chris Wilson9df30792010-02-18 10:24:56 +0000794 int page, page_count;
Chris Wilsone56660d2010-08-07 11:01:26 +0100795 u32 reloc_offset;
Chris Wilson9df30792010-02-18 10:24:56 +0000796
Chris Wilson05394f32010-11-08 19:18:58 +0000797 if (src == NULL || src->pages == NULL)
Chris Wilson9df30792010-02-18 10:24:56 +0000798 return NULL;
799
Chris Wilson05394f32010-11-08 19:18:58 +0000800 page_count = src->base.size / PAGE_SIZE;
Chris Wilson9df30792010-02-18 10:24:56 +0000801
Akshay Joshi0206e352011-08-16 15:34:10 -0400802 dst = kmalloc(sizeof(*dst) + page_count * sizeof(u32 *), GFP_ATOMIC);
Chris Wilson9df30792010-02-18 10:24:56 +0000803 if (dst == NULL)
804 return NULL;
805
Chris Wilson05394f32010-11-08 19:18:58 +0000806 reloc_offset = src->gtt_offset;
Chris Wilson9df30792010-02-18 10:24:56 +0000807 for (page = 0; page < page_count; page++) {
Andrew Morton788885a2010-05-11 14:07:05 -0700808 unsigned long flags;
Chris Wilsone56660d2010-08-07 11:01:26 +0100809 void *d;
Andrew Morton788885a2010-05-11 14:07:05 -0700810
Chris Wilsone56660d2010-08-07 11:01:26 +0100811 d = kmalloc(PAGE_SIZE, GFP_ATOMIC);
Chris Wilson9df30792010-02-18 10:24:56 +0000812 if (d == NULL)
813 goto unwind;
Chris Wilsone56660d2010-08-07 11:01:26 +0100814
Andrew Morton788885a2010-05-11 14:07:05 -0700815 local_irq_save(flags);
Daniel Vetter74898d72012-02-15 23:50:22 +0100816 if (reloc_offset < dev_priv->mm.gtt_mappable_end &&
817 src->has_global_gtt_mapping) {
Chris Wilson172975aa2011-12-14 13:57:25 +0100818 void __iomem *s;
819
820 /* Simply ignore tiling or any overlapping fence.
821 * It's part of the error state, and this hopefully
822 * captures what the GPU read.
823 */
824
825 s = io_mapping_map_atomic_wc(dev_priv->mm.gtt_mapping,
826 reloc_offset);
827 memcpy_fromio(d, s, PAGE_SIZE);
828 io_mapping_unmap_atomic(s);
829 } else {
830 void *s;
831
832 drm_clflush_pages(&src->pages[page], 1);
833
834 s = kmap_atomic(src->pages[page]);
835 memcpy(d, s, PAGE_SIZE);
836 kunmap_atomic(s);
837
838 drm_clflush_pages(&src->pages[page], 1);
839 }
Andrew Morton788885a2010-05-11 14:07:05 -0700840 local_irq_restore(flags);
Chris Wilsone56660d2010-08-07 11:01:26 +0100841
Chris Wilson9df30792010-02-18 10:24:56 +0000842 dst->pages[page] = d;
Chris Wilsone56660d2010-08-07 11:01:26 +0100843
844 reloc_offset += PAGE_SIZE;
Chris Wilson9df30792010-02-18 10:24:56 +0000845 }
846 dst->page_count = page_count;
Chris Wilson05394f32010-11-08 19:18:58 +0000847 dst->gtt_offset = src->gtt_offset;
Chris Wilson9df30792010-02-18 10:24:56 +0000848
849 return dst;
850
851unwind:
852 while (page--)
853 kfree(dst->pages[page]);
854 kfree(dst);
855 return NULL;
856}
857
858static void
859i915_error_object_free(struct drm_i915_error_object *obj)
860{
861 int page;
862
863 if (obj == NULL)
864 return;
865
866 for (page = 0; page < obj->page_count; page++)
867 kfree(obj->pages[page]);
868
869 kfree(obj);
870}
871
872static void
873i915_error_state_free(struct drm_device *dev,
874 struct drm_i915_error_state *error)
875{
Chris Wilsone2f973d2011-01-27 19:15:11 +0000876 int i;
877
Chris Wilson52d39a22012-02-15 11:25:37 +0000878 for (i = 0; i < ARRAY_SIZE(error->ring); i++) {
879 i915_error_object_free(error->ring[i].batchbuffer);
880 i915_error_object_free(error->ring[i].ringbuffer);
881 kfree(error->ring[i].requests);
882 }
Chris Wilsone2f973d2011-01-27 19:15:11 +0000883
Chris Wilson9df30792010-02-18 10:24:56 +0000884 kfree(error->active_bo);
Chris Wilson6ef3d422010-08-04 20:26:07 +0100885 kfree(error->overlay);
Chris Wilson9df30792010-02-18 10:24:56 +0000886 kfree(error);
887}
Chris Wilson1b502472012-04-24 15:47:30 +0100888static void capture_bo(struct drm_i915_error_buffer *err,
889 struct drm_i915_gem_object *obj)
890{
891 err->size = obj->base.size;
892 err->name = obj->base.name;
893 err->seqno = obj->last_rendering_seqno;
894 err->gtt_offset = obj->gtt_offset;
895 err->read_domains = obj->base.read_domains;
896 err->write_domain = obj->base.write_domain;
897 err->fence_reg = obj->fence_reg;
898 err->pinned = 0;
899 if (obj->pin_count > 0)
900 err->pinned = 1;
901 if (obj->user_pin_count > 0)
902 err->pinned = -1;
903 err->tiling = obj->tiling_mode;
904 err->dirty = obj->dirty;
905 err->purgeable = obj->madv != I915_MADV_WILLNEED;
906 err->ring = obj->ring ? obj->ring->id : -1;
907 err->cache_level = obj->cache_level;
908}
Chris Wilson9df30792010-02-18 10:24:56 +0000909
Chris Wilson1b502472012-04-24 15:47:30 +0100910static u32 capture_active_bo(struct drm_i915_error_buffer *err,
911 int count, struct list_head *head)
Chris Wilsonc724e8a2010-11-22 08:07:02 +0000912{
913 struct drm_i915_gem_object *obj;
914 int i = 0;
915
916 list_for_each_entry(obj, head, mm_list) {
Chris Wilson1b502472012-04-24 15:47:30 +0100917 capture_bo(err++, obj);
Chris Wilsonc724e8a2010-11-22 08:07:02 +0000918 if (++i == count)
919 break;
Chris Wilson1b502472012-04-24 15:47:30 +0100920 }
Chris Wilsonc724e8a2010-11-22 08:07:02 +0000921
Chris Wilson1b502472012-04-24 15:47:30 +0100922 return i;
923}
924
925static u32 capture_pinned_bo(struct drm_i915_error_buffer *err,
926 int count, struct list_head *head)
927{
928 struct drm_i915_gem_object *obj;
929 int i = 0;
930
931 list_for_each_entry(obj, head, gtt_list) {
932 if (obj->pin_count == 0)
933 continue;
934
935 capture_bo(err++, obj);
936 if (++i == count)
937 break;
Chris Wilsonc724e8a2010-11-22 08:07:02 +0000938 }
939
940 return i;
941}
942
Chris Wilson748ebc62010-10-24 10:28:47 +0100943static void i915_gem_record_fences(struct drm_device *dev,
944 struct drm_i915_error_state *error)
945{
946 struct drm_i915_private *dev_priv = dev->dev_private;
947 int i;
948
949 /* Fences */
950 switch (INTEL_INFO(dev)->gen) {
Daniel Vetter775d17b2011-10-09 21:52:01 +0200951 case 7:
Chris Wilson748ebc62010-10-24 10:28:47 +0100952 case 6:
953 for (i = 0; i < 16; i++)
954 error->fence[i] = I915_READ64(FENCE_REG_SANDYBRIDGE_0 + (i * 8));
955 break;
956 case 5:
957 case 4:
958 for (i = 0; i < 16; i++)
959 error->fence[i] = I915_READ64(FENCE_REG_965_0 + (i * 8));
960 break;
961 case 3:
962 if (IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev))
963 for (i = 0; i < 8; i++)
964 error->fence[i+8] = I915_READ(FENCE_REG_945_8 + (i * 4));
965 case 2:
966 for (i = 0; i < 8; i++)
967 error->fence[i] = I915_READ(FENCE_REG_830_0 + (i * 4));
968 break;
969
970 }
971}
972
Chris Wilsonbcfb2e22011-01-07 21:06:07 +0000973static struct drm_i915_error_object *
974i915_error_first_batchbuffer(struct drm_i915_private *dev_priv,
975 struct intel_ring_buffer *ring)
976{
977 struct drm_i915_gem_object *obj;
978 u32 seqno;
979
980 if (!ring->get_seqno)
981 return NULL;
982
983 seqno = ring->get_seqno(ring);
984 list_for_each_entry(obj, &dev_priv->mm.active_list, mm_list) {
985 if (obj->ring != ring)
986 continue;
987
Chris Wilsonc37d9a52011-01-12 20:33:01 +0000988 if (i915_seqno_passed(seqno, obj->last_rendering_seqno))
Chris Wilsonbcfb2e22011-01-07 21:06:07 +0000989 continue;
990
991 if ((obj->base.read_domains & I915_GEM_DOMAIN_COMMAND) == 0)
992 continue;
993
994 /* We need to copy these to an anonymous buffer as the simplest
995 * method to avoid being overwritten by userspace.
996 */
997 return i915_error_object_create(dev_priv, obj);
998 }
999
1000 return NULL;
1001}
1002
Daniel Vetterd27b1e02011-12-14 13:57:01 +01001003static void i915_record_ring_state(struct drm_device *dev,
1004 struct drm_i915_error_state *error,
1005 struct intel_ring_buffer *ring)
1006{
1007 struct drm_i915_private *dev_priv = dev->dev_private;
1008
Daniel Vetter33f3f512011-12-14 13:57:39 +01001009 if (INTEL_INFO(dev)->gen >= 6) {
Daniel Vetter33f3f512011-12-14 13:57:39 +01001010 error->fault_reg[ring->id] = I915_READ(RING_FAULT_REG(ring));
Daniel Vetter7e3b8732012-02-01 22:26:45 +01001011 error->semaphore_mboxes[ring->id][0]
1012 = I915_READ(RING_SYNC_0(ring->mmio_base));
1013 error->semaphore_mboxes[ring->id][1]
1014 = I915_READ(RING_SYNC_1(ring->mmio_base));
Daniel Vetter33f3f512011-12-14 13:57:39 +01001015 }
Daniel Vetterc1cd90e2011-12-14 13:57:02 +01001016
Daniel Vetterd27b1e02011-12-14 13:57:01 +01001017 if (INTEL_INFO(dev)->gen >= 4) {
Daniel Vetter9d2f41f2012-04-02 21:41:45 +02001018 error->faddr[ring->id] = I915_READ(RING_DMA_FADD(ring->mmio_base));
Daniel Vetterd27b1e02011-12-14 13:57:01 +01001019 error->ipeir[ring->id] = I915_READ(RING_IPEIR(ring->mmio_base));
1020 error->ipehr[ring->id] = I915_READ(RING_IPEHR(ring->mmio_base));
1021 error->instdone[ring->id] = I915_READ(RING_INSTDONE(ring->mmio_base));
Daniel Vetterc1cd90e2011-12-14 13:57:02 +01001022 error->instps[ring->id] = I915_READ(RING_INSTPS(ring->mmio_base));
Daniel Vetterd27b1e02011-12-14 13:57:01 +01001023 if (ring->id == RCS) {
Daniel Vetterd27b1e02011-12-14 13:57:01 +01001024 error->instdone1 = I915_READ(INSTDONE1);
1025 error->bbaddr = I915_READ64(BB_ADDR);
1026 }
1027 } else {
Daniel Vetter9d2f41f2012-04-02 21:41:45 +02001028 error->faddr[ring->id] = I915_READ(DMA_FADD_I8XX);
Daniel Vetterd27b1e02011-12-14 13:57:01 +01001029 error->ipeir[ring->id] = I915_READ(IPEIR);
1030 error->ipehr[ring->id] = I915_READ(IPEHR);
1031 error->instdone[ring->id] = I915_READ(INSTDONE);
Daniel Vetterd27b1e02011-12-14 13:57:01 +01001032 }
1033
Ben Widawsky9574b3f2012-04-26 16:03:01 -07001034 error->waiting[ring->id] = waitqueue_active(&ring->irq_queue);
Daniel Vetterc1cd90e2011-12-14 13:57:02 +01001035 error->instpm[ring->id] = I915_READ(RING_INSTPM(ring->mmio_base));
Daniel Vetterd27b1e02011-12-14 13:57:01 +01001036 error->seqno[ring->id] = ring->get_seqno(ring);
1037 error->acthd[ring->id] = intel_ring_get_active_head(ring);
Daniel Vetterc1cd90e2011-12-14 13:57:02 +01001038 error->head[ring->id] = I915_READ_HEAD(ring);
1039 error->tail[ring->id] = I915_READ_TAIL(ring);
Daniel Vetter7e3b8732012-02-01 22:26:45 +01001040
1041 error->cpu_ring_head[ring->id] = ring->head;
1042 error->cpu_ring_tail[ring->id] = ring->tail;
Daniel Vetterd27b1e02011-12-14 13:57:01 +01001043}
1044
Chris Wilson52d39a22012-02-15 11:25:37 +00001045static void i915_gem_record_rings(struct drm_device *dev,
1046 struct drm_i915_error_state *error)
1047{
1048 struct drm_i915_private *dev_priv = dev->dev_private;
1049 struct drm_i915_gem_request *request;
1050 int i, count;
1051
1052 for (i = 0; i < I915_NUM_RINGS; i++) {
1053 struct intel_ring_buffer *ring = &dev_priv->ring[i];
1054
1055 if (ring->obj == NULL)
1056 continue;
1057
1058 i915_record_ring_state(dev, error, ring);
1059
1060 error->ring[i].batchbuffer =
1061 i915_error_first_batchbuffer(dev_priv, ring);
1062
1063 error->ring[i].ringbuffer =
1064 i915_error_object_create(dev_priv, ring->obj);
1065
1066 count = 0;
1067 list_for_each_entry(request, &ring->request_list, list)
1068 count++;
1069
1070 error->ring[i].num_requests = count;
1071 error->ring[i].requests =
1072 kmalloc(count*sizeof(struct drm_i915_error_request),
1073 GFP_ATOMIC);
1074 if (error->ring[i].requests == NULL) {
1075 error->ring[i].num_requests = 0;
1076 continue;
1077 }
1078
1079 count = 0;
1080 list_for_each_entry(request, &ring->request_list, list) {
1081 struct drm_i915_error_request *erq;
1082
1083 erq = &error->ring[i].requests[count++];
1084 erq->seqno = request->seqno;
1085 erq->jiffies = request->emitted_jiffies;
Chris Wilsonee4f42b2012-02-15 11:25:38 +00001086 erq->tail = request->tail;
Chris Wilson52d39a22012-02-15 11:25:37 +00001087 }
1088 }
1089}
1090
Jesse Barnes8a905232009-07-11 16:48:03 -04001091/**
1092 * i915_capture_error_state - capture an error record for later analysis
1093 * @dev: drm device
1094 *
1095 * Should be called when an error is detected (either a hang or an error
1096 * interrupt) to capture error state from the time of the error. Fills
1097 * out a structure which becomes available in debugfs for user level tools
1098 * to pick up.
1099 */
Jesse Barnes63eeaf32009-06-18 16:56:52 -07001100static void i915_capture_error_state(struct drm_device *dev)
1101{
1102 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson05394f32010-11-08 19:18:58 +00001103 struct drm_i915_gem_object *obj;
Jesse Barnes63eeaf32009-06-18 16:56:52 -07001104 struct drm_i915_error_state *error;
1105 unsigned long flags;
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001106 int i, pipe;
Jesse Barnes63eeaf32009-06-18 16:56:52 -07001107
1108 spin_lock_irqsave(&dev_priv->error_lock, flags);
Chris Wilson9df30792010-02-18 10:24:56 +00001109 error = dev_priv->first_error;
1110 spin_unlock_irqrestore(&dev_priv->error_lock, flags);
1111 if (error)
1112 return;
Jesse Barnes63eeaf32009-06-18 16:56:52 -07001113
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001114 /* Account for pipe specific data like PIPE*STAT */
Daniel Vetter33f3f512011-12-14 13:57:39 +01001115 error = kzalloc(sizeof(*error), GFP_ATOMIC);
Jesse Barnes63eeaf32009-06-18 16:56:52 -07001116 if (!error) {
Chris Wilson9df30792010-02-18 10:24:56 +00001117 DRM_DEBUG_DRIVER("out of memory, not capturing error state\n");
1118 return;
Jesse Barnes63eeaf32009-06-18 16:56:52 -07001119 }
1120
Chris Wilsonb6f78332011-02-01 14:15:55 +00001121 DRM_INFO("capturing error event; look for more information in /debug/dri/%d/i915_error_state\n",
1122 dev->primary->index);
Chris Wilson2fa772f32010-10-01 13:23:27 +01001123
Jesse Barnes63eeaf32009-06-18 16:56:52 -07001124 error->eir = I915_READ(EIR);
1125 error->pgtbl_er = I915_READ(PGTBL_ER);
Ben Widawskybe998e22012-04-26 16:03:00 -07001126
1127 if (HAS_PCH_SPLIT(dev))
1128 error->ier = I915_READ(DEIER) | I915_READ(GTIER);
1129 else if (IS_VALLEYVIEW(dev))
1130 error->ier = I915_READ(GTIER) | I915_READ(VLV_IER);
1131 else if (IS_GEN2(dev))
1132 error->ier = I915_READ16(IER);
1133 else
1134 error->ier = I915_READ(IER);
1135
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{
Ben Widawsky9574b3f2012-04-26 16:03:01 -07001712 /* We don't check whether the ring even exists before calling this
1713 * function. Hence check whether it's initialized. */
1714 if (ring->obj == NULL)
1715 return true;
1716
Chris Wilson893eead2010-10-27 14:44:35 +01001717 if (list_empty(&ring->request_list) ||
1718 i915_seqno_passed(ring->get_seqno(ring), ring_last_seqno(ring))) {
1719 /* Issue a wake-up to catch stuck h/w. */
Ben Widawsky9574b3f2012-04-26 16:03:01 -07001720 if (waitqueue_active(&ring->irq_queue)) {
1721 DRM_ERROR("Hangcheck timer elapsed... %s idle\n",
1722 ring->name);
Chris Wilson893eead2010-10-27 14:44:35 +01001723 wake_up_all(&ring->irq_queue);
1724 *err = true;
1725 }
1726 return true;
1727 }
1728 return false;
Ben Gamarif65d9422009-09-14 17:48:44 -04001729}
1730
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001731static bool kick_ring(struct intel_ring_buffer *ring)
1732{
1733 struct drm_device *dev = ring->dev;
1734 struct drm_i915_private *dev_priv = dev->dev_private;
1735 u32 tmp = I915_READ_CTL(ring);
1736 if (tmp & RING_WAIT) {
1737 DRM_ERROR("Kicking stuck wait on %s\n",
1738 ring->name);
1739 I915_WRITE_CTL(ring, tmp);
1740 return true;
1741 }
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001742 return false;
1743}
1744
Chris Wilsond1e61e72012-04-10 17:00:41 +01001745static bool i915_hangcheck_hung(struct drm_device *dev)
1746{
1747 drm_i915_private_t *dev_priv = dev->dev_private;
1748
1749 if (dev_priv->hangcheck_count++ > 1) {
1750 DRM_ERROR("Hangcheck timer elapsed... GPU hung\n");
1751 i915_handle_error(dev, true);
1752
1753 if (!IS_GEN2(dev)) {
1754 /* Is the chip hanging on a WAIT_FOR_EVENT?
1755 * If so we can simply poke the RB_WAIT bit
1756 * and break the hang. This should work on
1757 * all but the second generation chipsets.
1758 */
1759 if (kick_ring(&dev_priv->ring[RCS]))
1760 return false;
1761
1762 if (HAS_BSD(dev) && kick_ring(&dev_priv->ring[VCS]))
1763 return false;
1764
1765 if (HAS_BLT(dev) && kick_ring(&dev_priv->ring[BCS]))
1766 return false;
1767 }
1768
1769 return true;
1770 }
1771
1772 return false;
1773}
1774
Ben Gamarif65d9422009-09-14 17:48:44 -04001775/**
1776 * This is called when the chip hasn't reported back with completed
1777 * batchbuffers in a long time. The first time this is called we simply record
1778 * ACTHD. If ACTHD hasn't changed by the time the hangcheck timer elapses
1779 * again, we assume the chip is wedged and try to fix it.
1780 */
1781void i915_hangcheck_elapsed(unsigned long data)
1782{
1783 struct drm_device *dev = (struct drm_device *)data;
1784 drm_i915_private_t *dev_priv = dev->dev_private;
Daniel Vetter097354e2011-11-27 18:58:17 +01001785 uint32_t acthd, instdone, instdone1, acthd_bsd, acthd_blt;
Chris Wilson893eead2010-10-27 14:44:35 +01001786 bool err = false;
1787
Ben Widawsky3e0dc6b2011-06-29 10:26:42 -07001788 if (!i915_enable_hangcheck)
1789 return;
1790
Chris Wilson893eead2010-10-27 14:44:35 +01001791 /* If all work is done then ACTHD clearly hasn't advanced. */
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001792 if (i915_hangcheck_ring_idle(&dev_priv->ring[RCS], &err) &&
1793 i915_hangcheck_ring_idle(&dev_priv->ring[VCS], &err) &&
1794 i915_hangcheck_ring_idle(&dev_priv->ring[BCS], &err)) {
Chris Wilsond1e61e72012-04-10 17:00:41 +01001795 if (err) {
1796 if (i915_hangcheck_hung(dev))
1797 return;
1798
Chris Wilson893eead2010-10-27 14:44:35 +01001799 goto repeat;
Chris Wilsond1e61e72012-04-10 17:00:41 +01001800 }
1801
1802 dev_priv->hangcheck_count = 0;
Chris Wilson893eead2010-10-27 14:44:35 +01001803 return;
1804 }
Eric Anholtb9201c12010-01-08 14:25:16 -08001805
Chris Wilsona6c45cf2010-09-17 00:32:17 +01001806 if (INTEL_INFO(dev)->gen < 4) {
Chris Wilsoncbb465e2010-06-06 12:16:24 +01001807 instdone = I915_READ(INSTDONE);
1808 instdone1 = 0;
1809 } else {
Chris Wilsoncbb465e2010-06-06 12:16:24 +01001810 instdone = I915_READ(INSTDONE_I965);
1811 instdone1 = I915_READ(INSTDONE1);
1812 }
Daniel Vetter097354e2011-11-27 18:58:17 +01001813 acthd = intel_ring_get_active_head(&dev_priv->ring[RCS]);
1814 acthd_bsd = HAS_BSD(dev) ?
1815 intel_ring_get_active_head(&dev_priv->ring[VCS]) : 0;
1816 acthd_blt = HAS_BLT(dev) ?
1817 intel_ring_get_active_head(&dev_priv->ring[BCS]) : 0;
Ben Gamarif65d9422009-09-14 17:48:44 -04001818
Chris Wilsoncbb465e2010-06-06 12:16:24 +01001819 if (dev_priv->last_acthd == acthd &&
Daniel Vetter097354e2011-11-27 18:58:17 +01001820 dev_priv->last_acthd_bsd == acthd_bsd &&
1821 dev_priv->last_acthd_blt == acthd_blt &&
Chris Wilsoncbb465e2010-06-06 12:16:24 +01001822 dev_priv->last_instdone == instdone &&
1823 dev_priv->last_instdone1 == instdone1) {
Chris Wilsond1e61e72012-04-10 17:00:41 +01001824 if (i915_hangcheck_hung(dev))
Chris Wilsoncbb465e2010-06-06 12:16:24 +01001825 return;
Chris Wilsoncbb465e2010-06-06 12:16:24 +01001826 } else {
1827 dev_priv->hangcheck_count = 0;
1828
1829 dev_priv->last_acthd = acthd;
Daniel Vetter097354e2011-11-27 18:58:17 +01001830 dev_priv->last_acthd_bsd = acthd_bsd;
1831 dev_priv->last_acthd_blt = acthd_blt;
Chris Wilsoncbb465e2010-06-06 12:16:24 +01001832 dev_priv->last_instdone = instdone;
1833 dev_priv->last_instdone1 = instdone1;
1834 }
Ben Gamarif65d9422009-09-14 17:48:44 -04001835
Chris Wilson893eead2010-10-27 14:44:35 +01001836repeat:
Ben Gamarif65d9422009-09-14 17:48:44 -04001837 /* Reset timer case chip hangs without another request being added */
Chris Wilsonb3b079d2010-09-13 23:44:34 +01001838 mod_timer(&dev_priv->hangcheck_timer,
1839 jiffies + msecs_to_jiffies(DRM_I915_HANGCHECK_PERIOD));
Ben Gamarif65d9422009-09-14 17:48:44 -04001840}
1841
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842/* drm_dma.h hooks
1843*/
Jesse Barnesf71d4af2011-06-28 13:00:41 -07001844static void ironlake_irq_preinstall(struct drm_device *dev)
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001845{
1846 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
1847
Jesse Barnes46979952011-04-07 13:53:55 -07001848 atomic_set(&dev_priv->irq_received, 0);
1849
Jesse Barnes46979952011-04-07 13:53:55 -07001850
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001851 I915_WRITE(HWSTAM, 0xeffe);
Daniel Vetterbdfcdb62012-01-05 01:05:26 +01001852
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001853 /* XXX hotplug from PCH */
1854
1855 I915_WRITE(DEIMR, 0xffffffff);
1856 I915_WRITE(DEIER, 0x0);
Chris Wilson3143a2b2010-11-16 15:55:10 +00001857 POSTING_READ(DEIER);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001858
1859 /* and GT */
1860 I915_WRITE(GTIMR, 0xffffffff);
1861 I915_WRITE(GTIER, 0x0);
Chris Wilson3143a2b2010-11-16 15:55:10 +00001862 POSTING_READ(GTIER);
Zhenyu Wangc6501562009-11-03 18:57:21 +00001863
1864 /* south display irq */
1865 I915_WRITE(SDEIMR, 0xffffffff);
1866 I915_WRITE(SDEIER, 0x0);
Chris Wilson3143a2b2010-11-16 15:55:10 +00001867 POSTING_READ(SDEIER);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001868}
1869
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07001870static void valleyview_irq_preinstall(struct drm_device *dev)
1871{
1872 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
1873 int pipe;
1874
1875 atomic_set(&dev_priv->irq_received, 0);
1876
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07001877 /* VLV magic */
1878 I915_WRITE(VLV_IMR, 0);
1879 I915_WRITE(RING_IMR(RENDER_RING_BASE), 0);
1880 I915_WRITE(RING_IMR(GEN6_BSD_RING_BASE), 0);
1881 I915_WRITE(RING_IMR(BLT_RING_BASE), 0);
1882
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07001883 /* and GT */
1884 I915_WRITE(GTIIR, I915_READ(GTIIR));
1885 I915_WRITE(GTIIR, I915_READ(GTIIR));
1886 I915_WRITE(GTIMR, 0xffffffff);
1887 I915_WRITE(GTIER, 0x0);
1888 POSTING_READ(GTIER);
1889
1890 I915_WRITE(DPINVGTT, 0xff);
1891
1892 I915_WRITE(PORT_HOTPLUG_EN, 0);
1893 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
1894 for_each_pipe(pipe)
1895 I915_WRITE(PIPESTAT(pipe), 0xffff);
1896 I915_WRITE(VLV_IIR, 0xffffffff);
1897 I915_WRITE(VLV_IMR, 0xffffffff);
1898 I915_WRITE(VLV_IER, 0x0);
1899 POSTING_READ(VLV_IER);
1900}
1901
Keith Packard7fe0b972011-09-19 13:31:02 -07001902/*
1903 * Enable digital hotplug on the PCH, and configure the DP short pulse
1904 * duration to 2ms (which is the minimum in the Display Port spec)
1905 *
1906 * This register is the same on all known PCH chips.
1907 */
1908
1909static void ironlake_enable_pch_hotplug(struct drm_device *dev)
1910{
1911 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
1912 u32 hotplug;
1913
1914 hotplug = I915_READ(PCH_PORT_HOTPLUG);
1915 hotplug &= ~(PORTD_PULSE_DURATION_MASK|PORTC_PULSE_DURATION_MASK|PORTB_PULSE_DURATION_MASK);
1916 hotplug |= PORTD_HOTPLUG_ENABLE | PORTD_PULSE_DURATION_2ms;
1917 hotplug |= PORTC_HOTPLUG_ENABLE | PORTC_PULSE_DURATION_2ms;
1918 hotplug |= PORTB_HOTPLUG_ENABLE | PORTB_PULSE_DURATION_2ms;
1919 I915_WRITE(PCH_PORT_HOTPLUG, hotplug);
1920}
1921
Jesse Barnesf71d4af2011-06-28 13:00:41 -07001922static int ironlake_irq_postinstall(struct drm_device *dev)
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001923{
1924 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
1925 /* enable kind of interrupts always enabled */
Jesse Barnes013d5aa2010-01-29 11:18:31 -08001926 u32 display_mask = DE_MASTER_IRQ_CONTROL | DE_GSE | DE_PCH_EVENT |
1927 DE_PLANEA_FLIP_DONE | DE_PLANEB_FLIP_DONE;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001928 u32 render_irqs;
Yuanhan Liu2d7b8362010-10-08 10:21:06 +01001929 u32 hotplug_mask;
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001930
Jesse Barnes46979952011-04-07 13:53:55 -07001931 dev_priv->vblank_pipe = DRM_I915_VBLANK_PIPE_A | DRM_I915_VBLANK_PIPE_B;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001932 dev_priv->irq_mask = ~display_mask;
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001933
1934 /* should always can generate irq */
1935 I915_WRITE(DEIIR, I915_READ(DEIIR));
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001936 I915_WRITE(DEIMR, dev_priv->irq_mask);
1937 I915_WRITE(DEIER, display_mask | DE_PIPEA_VBLANK | DE_PIPEB_VBLANK);
Chris Wilson3143a2b2010-11-16 15:55:10 +00001938 POSTING_READ(DEIER);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001939
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001940 dev_priv->gt_irq_mask = ~0;
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001941
1942 I915_WRITE(GTIIR, I915_READ(GTIIR));
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001943 I915_WRITE(GTIMR, dev_priv->gt_irq_mask);
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001944
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001945 if (IS_GEN6(dev))
1946 render_irqs =
1947 GT_USER_INTERRUPT |
Ben Widawskye2a1e2f2012-03-29 19:11:26 -07001948 GEN6_BSD_USER_INTERRUPT |
1949 GEN6_BLITTER_USER_INTERRUPT;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001950 else
1951 render_irqs =
Chris Wilson88f23b82010-12-05 15:08:31 +00001952 GT_USER_INTERRUPT |
Chris Wilsonc6df5412010-12-15 09:56:50 +00001953 GT_PIPE_NOTIFY |
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001954 GT_BSD_USER_INTERRUPT;
1955 I915_WRITE(GTIER, render_irqs);
Chris Wilson3143a2b2010-11-16 15:55:10 +00001956 POSTING_READ(GTIER);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001957
Yuanhan Liu2d7b8362010-10-08 10:21:06 +01001958 if (HAS_PCH_CPT(dev)) {
Chris Wilson9035a972011-02-16 09:36:05 +00001959 hotplug_mask = (SDE_CRT_HOTPLUG_CPT |
1960 SDE_PORTB_HOTPLUG_CPT |
1961 SDE_PORTC_HOTPLUG_CPT |
1962 SDE_PORTD_HOTPLUG_CPT);
Yuanhan Liu2d7b8362010-10-08 10:21:06 +01001963 } else {
Chris Wilson9035a972011-02-16 09:36:05 +00001964 hotplug_mask = (SDE_CRT_HOTPLUG |
1965 SDE_PORTB_HOTPLUG |
1966 SDE_PORTC_HOTPLUG |
1967 SDE_PORTD_HOTPLUG |
1968 SDE_AUX_MASK);
Yuanhan Liu2d7b8362010-10-08 10:21:06 +01001969 }
1970
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001971 dev_priv->pch_irq_mask = ~hotplug_mask;
Zhenyu Wangc6501562009-11-03 18:57:21 +00001972
1973 I915_WRITE(SDEIIR, I915_READ(SDEIIR));
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001974 I915_WRITE(SDEIMR, dev_priv->pch_irq_mask);
1975 I915_WRITE(SDEIER, hotplug_mask);
Chris Wilson3143a2b2010-11-16 15:55:10 +00001976 POSTING_READ(SDEIER);
Zhenyu Wangc6501562009-11-03 18:57:21 +00001977
Keith Packard7fe0b972011-09-19 13:31:02 -07001978 ironlake_enable_pch_hotplug(dev);
1979
Jesse Barnesf97108d2010-01-29 11:27:07 -08001980 if (IS_IRONLAKE_M(dev)) {
1981 /* Clear & enable PCU event interrupts */
1982 I915_WRITE(DEIIR, DE_PCU_EVENT);
1983 I915_WRITE(DEIER, I915_READ(DEIER) | DE_PCU_EVENT);
1984 ironlake_enable_display_irq(dev_priv, DE_PCU_EVENT);
1985 }
1986
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001987 return 0;
1988}
1989
Jesse Barnesf71d4af2011-06-28 13:00:41 -07001990static int ivybridge_irq_postinstall(struct drm_device *dev)
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07001991{
1992 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
1993 /* enable kind of interrupts always enabled */
1994 u32 display_mask = DE_MASTER_IRQ_CONTROL | DE_GSE_IVB |
1995 DE_PCH_EVENT_IVB | DE_PLANEA_FLIP_DONE_IVB |
1996 DE_PLANEB_FLIP_DONE_IVB;
1997 u32 render_irqs;
1998 u32 hotplug_mask;
1999
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002000 dev_priv->vblank_pipe = DRM_I915_VBLANK_PIPE_A | DRM_I915_VBLANK_PIPE_B;
2001 dev_priv->irq_mask = ~display_mask;
2002
2003 /* should always can generate irq */
2004 I915_WRITE(DEIIR, I915_READ(DEIIR));
2005 I915_WRITE(DEIMR, dev_priv->irq_mask);
2006 I915_WRITE(DEIER, display_mask | DE_PIPEA_VBLANK_IVB |
2007 DE_PIPEB_VBLANK_IVB);
2008 POSTING_READ(DEIER);
2009
2010 dev_priv->gt_irq_mask = ~0;
2011
2012 I915_WRITE(GTIIR, I915_READ(GTIIR));
2013 I915_WRITE(GTIMR, dev_priv->gt_irq_mask);
2014
Ben Widawskye2a1e2f2012-03-29 19:11:26 -07002015 render_irqs = GT_USER_INTERRUPT | GEN6_BSD_USER_INTERRUPT |
2016 GEN6_BLITTER_USER_INTERRUPT;
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002017 I915_WRITE(GTIER, render_irqs);
2018 POSTING_READ(GTIER);
2019
2020 hotplug_mask = (SDE_CRT_HOTPLUG_CPT |
2021 SDE_PORTB_HOTPLUG_CPT |
2022 SDE_PORTC_HOTPLUG_CPT |
2023 SDE_PORTD_HOTPLUG_CPT);
2024 dev_priv->pch_irq_mask = ~hotplug_mask;
2025
2026 I915_WRITE(SDEIIR, I915_READ(SDEIIR));
2027 I915_WRITE(SDEIMR, dev_priv->pch_irq_mask);
2028 I915_WRITE(SDEIER, hotplug_mask);
2029 POSTING_READ(SDEIER);
2030
Keith Packard7fe0b972011-09-19 13:31:02 -07002031 ironlake_enable_pch_hotplug(dev);
2032
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002033 return 0;
2034}
2035
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002036static int valleyview_irq_postinstall(struct drm_device *dev)
2037{
2038 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2039 u32 render_irqs;
2040 u32 enable_mask;
2041 u32 hotplug_en = I915_READ(PORT_HOTPLUG_EN);
2042 u16 msid;
2043
2044 enable_mask = I915_DISPLAY_PORT_INTERRUPT;
2045 enable_mask |= I915_DISPLAY_PIPE_A_VBLANK_INTERRUPT |
2046 I915_DISPLAY_PIPE_B_VBLANK_INTERRUPT;
2047
2048 dev_priv->irq_mask = ~enable_mask;
2049
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002050 dev_priv->pipestat[0] = 0;
2051 dev_priv->pipestat[1] = 0;
2052
2053 dev_priv->vblank_pipe = DRM_I915_VBLANK_PIPE_A | DRM_I915_VBLANK_PIPE_B;
2054
2055 /* Hack for broken MSIs on VLV */
2056 pci_write_config_dword(dev_priv->dev->pdev, 0x94, 0xfee00000);
2057 pci_read_config_word(dev->pdev, 0x98, &msid);
2058 msid &= 0xff; /* mask out delivery bits */
2059 msid |= (1<<14);
2060 pci_write_config_word(dev_priv->dev->pdev, 0x98, msid);
2061
2062 I915_WRITE(VLV_IMR, dev_priv->irq_mask);
2063 I915_WRITE(VLV_IER, enable_mask);
2064 I915_WRITE(VLV_IIR, 0xffffffff);
2065 I915_WRITE(PIPESTAT(0), 0xffff);
2066 I915_WRITE(PIPESTAT(1), 0xffff);
2067 POSTING_READ(VLV_IER);
2068
2069 I915_WRITE(VLV_IIR, 0xffffffff);
2070 I915_WRITE(VLV_IIR, 0xffffffff);
2071
2072 render_irqs = GT_GEN6_BLT_FLUSHDW_NOTIFY_INTERRUPT |
2073 GT_GEN6_BLT_CS_ERROR_INTERRUPT |
Ben Widawskye2a1e2f2012-03-29 19:11:26 -07002074 GT_GEN6_BLT_USER_INTERRUPT |
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002075 GT_GEN6_BSD_USER_INTERRUPT |
2076 GT_GEN6_BSD_CS_ERROR_INTERRUPT |
2077 GT_GEN7_L3_PARITY_ERROR_INTERRUPT |
2078 GT_PIPE_NOTIFY |
2079 GT_RENDER_CS_ERROR_INTERRUPT |
2080 GT_SYNC_STATUS |
2081 GT_USER_INTERRUPT;
2082
2083 dev_priv->gt_irq_mask = ~render_irqs;
2084
2085 I915_WRITE(GTIIR, I915_READ(GTIIR));
2086 I915_WRITE(GTIIR, I915_READ(GTIIR));
2087 I915_WRITE(GTIMR, 0);
2088 I915_WRITE(GTIER, render_irqs);
2089 POSTING_READ(GTIER);
2090
2091 /* ack & enable invalid PTE error interrupts */
2092#if 0 /* FIXME: add support to irq handler for checking these bits */
2093 I915_WRITE(DPINVGTT, DPINVGTT_STATUS_MASK);
2094 I915_WRITE(DPINVGTT, DPINVGTT_EN_MASK);
2095#endif
2096
2097 I915_WRITE(VLV_MASTER_IER, MASTER_INTERRUPT_ENABLE);
2098#if 0 /* FIXME: check register definitions; some have moved */
2099 /* Note HDMI and DP share bits */
2100 if (dev_priv->hotplug_supported_mask & HDMIB_HOTPLUG_INT_STATUS)
2101 hotplug_en |= HDMIB_HOTPLUG_INT_EN;
2102 if (dev_priv->hotplug_supported_mask & HDMIC_HOTPLUG_INT_STATUS)
2103 hotplug_en |= HDMIC_HOTPLUG_INT_EN;
2104 if (dev_priv->hotplug_supported_mask & HDMID_HOTPLUG_INT_STATUS)
2105 hotplug_en |= HDMID_HOTPLUG_INT_EN;
2106 if (dev_priv->hotplug_supported_mask & SDVOC_HOTPLUG_INT_STATUS)
2107 hotplug_en |= SDVOC_HOTPLUG_INT_EN;
2108 if (dev_priv->hotplug_supported_mask & SDVOB_HOTPLUG_INT_STATUS)
2109 hotplug_en |= SDVOB_HOTPLUG_INT_EN;
2110 if (dev_priv->hotplug_supported_mask & CRT_HOTPLUG_INT_STATUS) {
2111 hotplug_en |= CRT_HOTPLUG_INT_EN;
2112 hotplug_en |= CRT_HOTPLUG_VOLTAGE_COMPARE_50;
2113 }
2114#endif
2115
2116 I915_WRITE(PORT_HOTPLUG_EN, hotplug_en);
2117
2118 return 0;
2119}
2120
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002121static void valleyview_irq_uninstall(struct drm_device *dev)
2122{
2123 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2124 int pipe;
2125
2126 if (!dev_priv)
2127 return;
2128
2129 dev_priv->vblank_pipe = 0;
2130
2131 for_each_pipe(pipe)
2132 I915_WRITE(PIPESTAT(pipe), 0xffff);
2133
2134 I915_WRITE(HWSTAM, 0xffffffff);
2135 I915_WRITE(PORT_HOTPLUG_EN, 0);
2136 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
2137 for_each_pipe(pipe)
2138 I915_WRITE(PIPESTAT(pipe), 0xffff);
2139 I915_WRITE(VLV_IIR, 0xffffffff);
2140 I915_WRITE(VLV_IMR, 0xffffffff);
2141 I915_WRITE(VLV_IER, 0x0);
2142 POSTING_READ(VLV_IER);
2143}
2144
Jesse Barnesf71d4af2011-06-28 13:00:41 -07002145static void ironlake_irq_uninstall(struct drm_device *dev)
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002146{
2147 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Jesse Barnes46979952011-04-07 13:53:55 -07002148
2149 if (!dev_priv)
2150 return;
2151
2152 dev_priv->vblank_pipe = 0;
2153
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002154 I915_WRITE(HWSTAM, 0xffffffff);
2155
2156 I915_WRITE(DEIMR, 0xffffffff);
2157 I915_WRITE(DEIER, 0x0);
2158 I915_WRITE(DEIIR, I915_READ(DEIIR));
2159
2160 I915_WRITE(GTIMR, 0xffffffff);
2161 I915_WRITE(GTIER, 0x0);
2162 I915_WRITE(GTIIR, I915_READ(GTIIR));
Keith Packard192aac1f2011-09-20 10:12:44 -07002163
2164 I915_WRITE(SDEIMR, 0xffffffff);
2165 I915_WRITE(SDEIER, 0x0);
2166 I915_WRITE(SDEIIR, I915_READ(SDEIIR));
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002167}
2168
Chris Wilsonc2798b12012-04-22 21:13:57 +01002169static void i8xx_irq_preinstall(struct drm_device * dev)
2170{
2171 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2172 int pipe;
2173
2174 atomic_set(&dev_priv->irq_received, 0);
2175
2176 for_each_pipe(pipe)
2177 I915_WRITE(PIPESTAT(pipe), 0);
2178 I915_WRITE16(IMR, 0xffff);
2179 I915_WRITE16(IER, 0x0);
2180 POSTING_READ16(IER);
2181}
2182
2183static int i8xx_irq_postinstall(struct drm_device *dev)
2184{
2185 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2186
2187 dev_priv->vblank_pipe = DRM_I915_VBLANK_PIPE_A | DRM_I915_VBLANK_PIPE_B;
2188
2189 dev_priv->pipestat[0] = 0;
2190 dev_priv->pipestat[1] = 0;
2191
2192 I915_WRITE16(EMR,
2193 ~(I915_ERROR_PAGE_TABLE | I915_ERROR_MEMORY_REFRESH));
2194
2195 /* Unmask the interrupts that we always want on. */
2196 dev_priv->irq_mask =
2197 ~(I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
2198 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
2199 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
2200 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT |
2201 I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT);
2202 I915_WRITE16(IMR, dev_priv->irq_mask);
2203
2204 I915_WRITE16(IER,
2205 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
2206 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
2207 I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT |
2208 I915_USER_INTERRUPT);
2209 POSTING_READ16(IER);
2210
2211 return 0;
2212}
2213
2214static irqreturn_t i8xx_irq_handler(DRM_IRQ_ARGS)
2215{
2216 struct drm_device *dev = (struct drm_device *) arg;
2217 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2218 struct drm_i915_master_private *master_priv;
2219 u16 iir, new_iir;
2220 u32 pipe_stats[2];
2221 unsigned long irqflags;
2222 int irq_received;
2223 int pipe;
2224 u16 flip_mask =
2225 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
2226 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT;
2227
2228 atomic_inc(&dev_priv->irq_received);
2229
2230 iir = I915_READ16(IIR);
2231 if (iir == 0)
2232 return IRQ_NONE;
2233
2234 while (iir & ~flip_mask) {
2235 /* Can't rely on pipestat interrupt bit in iir as it might
2236 * have been cleared after the pipestat interrupt was received.
2237 * It doesn't set the bit in iir again, but it still produces
2238 * interrupts (for non-MSI).
2239 */
2240 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
2241 if (iir & I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT)
2242 i915_handle_error(dev, false);
2243
2244 for_each_pipe(pipe) {
2245 int reg = PIPESTAT(pipe);
2246 pipe_stats[pipe] = I915_READ(reg);
2247
2248 /*
2249 * Clear the PIPE*STAT regs before the IIR
2250 */
2251 if (pipe_stats[pipe] & 0x8000ffff) {
2252 if (pipe_stats[pipe] & PIPE_FIFO_UNDERRUN_STATUS)
2253 DRM_DEBUG_DRIVER("pipe %c underrun\n",
2254 pipe_name(pipe));
2255 I915_WRITE(reg, pipe_stats[pipe]);
2256 irq_received = 1;
2257 }
2258 }
2259 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2260
2261 I915_WRITE16(IIR, iir & ~flip_mask);
2262 new_iir = I915_READ16(IIR); /* Flush posted writes */
2263
2264 if (dev->primary->master) {
2265 master_priv = dev->primary->master->driver_priv;
2266 if (master_priv->sarea_priv)
2267 master_priv->sarea_priv->last_dispatch =
2268 READ_BREADCRUMB(dev_priv);
2269 }
2270
2271 if (iir & I915_USER_INTERRUPT)
2272 notify_ring(dev, &dev_priv->ring[RCS]);
2273
2274 if (pipe_stats[0] & PIPE_VBLANK_INTERRUPT_STATUS &&
2275 drm_handle_vblank(dev, 0)) {
2276 if (iir & I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT) {
2277 intel_prepare_page_flip(dev, 0);
2278 intel_finish_page_flip(dev, 0);
2279 flip_mask &= ~I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT;
2280 }
2281 }
2282
2283 if (pipe_stats[1] & PIPE_VBLANK_INTERRUPT_STATUS &&
2284 drm_handle_vblank(dev, 1)) {
2285 if (iir & I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT) {
2286 intel_prepare_page_flip(dev, 1);
2287 intel_finish_page_flip(dev, 1);
2288 flip_mask &= ~I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT;
2289 }
2290 }
2291
2292 iir = new_iir;
2293 }
2294
2295 return IRQ_HANDLED;
2296}
2297
2298static void i8xx_irq_uninstall(struct drm_device * dev)
2299{
2300 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2301 int pipe;
2302
2303 dev_priv->vblank_pipe = 0;
2304
2305 for_each_pipe(pipe) {
2306 /* Clear enable bits; then clear status bits */
2307 I915_WRITE(PIPESTAT(pipe), 0);
2308 I915_WRITE(PIPESTAT(pipe), I915_READ(PIPESTAT(pipe)));
2309 }
2310 I915_WRITE16(IMR, 0xffff);
2311 I915_WRITE16(IER, 0x0);
2312 I915_WRITE16(IIR, I915_READ16(IIR));
2313}
2314
Chris Wilsona266c7d2012-04-24 22:59:44 +01002315static void i915_irq_preinstall(struct drm_device * dev)
2316{
2317 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2318 int pipe;
2319
2320 atomic_set(&dev_priv->irq_received, 0);
2321
2322 if (I915_HAS_HOTPLUG(dev)) {
2323 I915_WRITE(PORT_HOTPLUG_EN, 0);
2324 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
2325 }
2326
Chris Wilson00d98eb2012-04-24 22:59:48 +01002327 I915_WRITE16(HWSTAM, 0xeffe);
Chris Wilsona266c7d2012-04-24 22:59:44 +01002328 for_each_pipe(pipe)
2329 I915_WRITE(PIPESTAT(pipe), 0);
2330 I915_WRITE(IMR, 0xffffffff);
2331 I915_WRITE(IER, 0x0);
2332 POSTING_READ(IER);
2333}
2334
2335static int i915_irq_postinstall(struct drm_device *dev)
2336{
2337 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Chris Wilson38bde182012-04-24 22:59:50 +01002338 u32 enable_mask;
Chris Wilsona266c7d2012-04-24 22:59:44 +01002339
2340 dev_priv->vblank_pipe = DRM_I915_VBLANK_PIPE_A | DRM_I915_VBLANK_PIPE_B;
2341
Chris Wilsona266c7d2012-04-24 22:59:44 +01002342 dev_priv->pipestat[0] = 0;
2343 dev_priv->pipestat[1] = 0;
2344
Chris Wilson38bde182012-04-24 22:59:50 +01002345 I915_WRITE(EMR, ~(I915_ERROR_PAGE_TABLE | I915_ERROR_MEMORY_REFRESH));
2346
2347 /* Unmask the interrupts that we always want on. */
2348 dev_priv->irq_mask =
2349 ~(I915_ASLE_INTERRUPT |
2350 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
2351 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
2352 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
2353 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT |
2354 I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT);
2355
2356 enable_mask =
2357 I915_ASLE_INTERRUPT |
2358 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
2359 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
2360 I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT |
2361 I915_USER_INTERRUPT;
2362
Chris Wilsona266c7d2012-04-24 22:59:44 +01002363 if (I915_HAS_HOTPLUG(dev)) {
2364 /* Enable in IER... */
2365 enable_mask |= I915_DISPLAY_PORT_INTERRUPT;
2366 /* and unmask in IMR */
2367 dev_priv->irq_mask &= ~I915_DISPLAY_PORT_INTERRUPT;
2368 }
2369
Chris Wilsona266c7d2012-04-24 22:59:44 +01002370 I915_WRITE(IMR, dev_priv->irq_mask);
2371 I915_WRITE(IER, enable_mask);
2372 POSTING_READ(IER);
2373
2374 if (I915_HAS_HOTPLUG(dev)) {
2375 u32 hotplug_en = I915_READ(PORT_HOTPLUG_EN);
2376
Chris Wilsona266c7d2012-04-24 22:59:44 +01002377 if (dev_priv->hotplug_supported_mask & HDMIB_HOTPLUG_INT_STATUS)
2378 hotplug_en |= HDMIB_HOTPLUG_INT_EN;
2379 if (dev_priv->hotplug_supported_mask & HDMIC_HOTPLUG_INT_STATUS)
2380 hotplug_en |= HDMIC_HOTPLUG_INT_EN;
2381 if (dev_priv->hotplug_supported_mask & HDMID_HOTPLUG_INT_STATUS)
2382 hotplug_en |= HDMID_HOTPLUG_INT_EN;
2383 if (dev_priv->hotplug_supported_mask & SDVOC_HOTPLUG_INT_STATUS)
2384 hotplug_en |= SDVOC_HOTPLUG_INT_EN;
2385 if (dev_priv->hotplug_supported_mask & SDVOB_HOTPLUG_INT_STATUS)
2386 hotplug_en |= SDVOB_HOTPLUG_INT_EN;
2387 if (dev_priv->hotplug_supported_mask & CRT_HOTPLUG_INT_STATUS) {
2388 hotplug_en |= CRT_HOTPLUG_INT_EN;
Chris Wilsona266c7d2012-04-24 22:59:44 +01002389 hotplug_en |= CRT_HOTPLUG_VOLTAGE_COMPARE_50;
2390 }
2391
2392 /* Ignore TV since it's buggy */
2393
2394 I915_WRITE(PORT_HOTPLUG_EN, hotplug_en);
2395 }
2396
2397 intel_opregion_enable_asle(dev);
2398
2399 return 0;
2400}
2401
2402static irqreturn_t i915_irq_handler(DRM_IRQ_ARGS)
2403{
2404 struct drm_device *dev = (struct drm_device *) arg;
2405 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2406 struct drm_i915_master_private *master_priv;
Chris Wilson8291ee92012-04-24 22:59:47 +01002407 u32 iir, new_iir, pipe_stats[I915_MAX_PIPES];
Chris Wilsona266c7d2012-04-24 22:59:44 +01002408 unsigned long irqflags;
Chris Wilson38bde182012-04-24 22:59:50 +01002409 u32 flip_mask =
2410 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
2411 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT;
2412 u32 flip[2] = {
2413 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT,
2414 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT
2415 };
2416 int pipe, ret = IRQ_NONE;
Chris Wilsona266c7d2012-04-24 22:59:44 +01002417
2418 atomic_inc(&dev_priv->irq_received);
2419
2420 iir = I915_READ(IIR);
Chris Wilson38bde182012-04-24 22:59:50 +01002421 do {
2422 bool irq_received = (iir & ~flip_mask) != 0;
Chris Wilson8291ee92012-04-24 22:59:47 +01002423 bool blc_event = false;
Chris Wilsona266c7d2012-04-24 22:59:44 +01002424
2425 /* Can't rely on pipestat interrupt bit in iir as it might
2426 * have been cleared after the pipestat interrupt was received.
2427 * It doesn't set the bit in iir again, but it still produces
2428 * interrupts (for non-MSI).
2429 */
2430 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
2431 if (iir & I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT)
2432 i915_handle_error(dev, false);
2433
2434 for_each_pipe(pipe) {
2435 int reg = PIPESTAT(pipe);
2436 pipe_stats[pipe] = I915_READ(reg);
2437
Chris Wilson38bde182012-04-24 22:59:50 +01002438 /* Clear the PIPE*STAT regs before the IIR */
Chris Wilsona266c7d2012-04-24 22:59:44 +01002439 if (pipe_stats[pipe] & 0x8000ffff) {
2440 if (pipe_stats[pipe] & PIPE_FIFO_UNDERRUN_STATUS)
2441 DRM_DEBUG_DRIVER("pipe %c underrun\n",
2442 pipe_name(pipe));
2443 I915_WRITE(reg, pipe_stats[pipe]);
Chris Wilson38bde182012-04-24 22:59:50 +01002444 irq_received = true;
Chris Wilsona266c7d2012-04-24 22:59:44 +01002445 }
2446 }
2447 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2448
2449 if (!irq_received)
2450 break;
2451
Chris Wilsona266c7d2012-04-24 22:59:44 +01002452 /* Consume port. Then clear IIR or we'll miss events */
2453 if ((I915_HAS_HOTPLUG(dev)) &&
2454 (iir & I915_DISPLAY_PORT_INTERRUPT)) {
2455 u32 hotplug_status = I915_READ(PORT_HOTPLUG_STAT);
2456
2457 DRM_DEBUG_DRIVER("hotplug event received, stat 0x%08x\n",
2458 hotplug_status);
2459 if (hotplug_status & dev_priv->hotplug_supported_mask)
2460 queue_work(dev_priv->wq,
2461 &dev_priv->hotplug_work);
2462
2463 I915_WRITE(PORT_HOTPLUG_STAT, hotplug_status);
Chris Wilson38bde182012-04-24 22:59:50 +01002464 POSTING_READ(PORT_HOTPLUG_STAT);
Chris Wilsona266c7d2012-04-24 22:59:44 +01002465 }
2466
Chris Wilson38bde182012-04-24 22:59:50 +01002467 I915_WRITE(IIR, iir & ~flip_mask);
Chris Wilsona266c7d2012-04-24 22:59:44 +01002468 new_iir = I915_READ(IIR); /* Flush posted writes */
2469
Chris Wilsona266c7d2012-04-24 22:59:44 +01002470 if (iir & I915_USER_INTERRUPT)
2471 notify_ring(dev, &dev_priv->ring[RCS]);
Chris Wilsona266c7d2012-04-24 22:59:44 +01002472
Chris Wilsona266c7d2012-04-24 22:59:44 +01002473 for_each_pipe(pipe) {
Chris Wilson38bde182012-04-24 22:59:50 +01002474 int plane = pipe;
2475 if (IS_MOBILE(dev))
2476 plane = !plane;
Chris Wilson8291ee92012-04-24 22:59:47 +01002477 if (pipe_stats[pipe] & PIPE_VBLANK_INTERRUPT_STATUS &&
Chris Wilsona266c7d2012-04-24 22:59:44 +01002478 drm_handle_vblank(dev, pipe)) {
Chris Wilson38bde182012-04-24 22:59:50 +01002479 if (iir & flip[plane]) {
2480 intel_prepare_page_flip(dev, plane);
2481 intel_finish_page_flip(dev, pipe);
2482 flip_mask &= ~flip[plane];
2483 }
Chris Wilsona266c7d2012-04-24 22:59:44 +01002484 }
2485
2486 if (pipe_stats[pipe] & PIPE_LEGACY_BLC_EVENT_STATUS)
2487 blc_event = true;
2488 }
2489
Chris Wilsona266c7d2012-04-24 22:59:44 +01002490 if (blc_event || (iir & I915_ASLE_INTERRUPT))
2491 intel_opregion_asle_intr(dev);
2492
2493 /* With MSI, interrupts are only generated when iir
2494 * transitions from zero to nonzero. If another bit got
2495 * set while we were handling the existing iir bits, then
2496 * we would never get another interrupt.
2497 *
2498 * This is fine on non-MSI as well, as if we hit this path
2499 * we avoid exiting the interrupt handler only to generate
2500 * another one.
2501 *
2502 * Note that for MSI this could cause a stray interrupt report
2503 * if an interrupt landed in the time between writing IIR and
2504 * the posting read. This should be rare enough to never
2505 * trigger the 99% of 100,000 interrupts test for disabling
2506 * stray interrupts.
2507 */
Chris Wilson38bde182012-04-24 22:59:50 +01002508 ret = IRQ_HANDLED;
Chris Wilsona266c7d2012-04-24 22:59:44 +01002509 iir = new_iir;
Chris Wilson38bde182012-04-24 22:59:50 +01002510 } while (iir & ~flip_mask);
Chris Wilsona266c7d2012-04-24 22:59:44 +01002511
Chris Wilson8291ee92012-04-24 22:59:47 +01002512 if (dev->primary->master) {
2513 master_priv = dev->primary->master->driver_priv;
2514 if (master_priv->sarea_priv)
2515 master_priv->sarea_priv->last_dispatch =
2516 READ_BREADCRUMB(dev_priv);
2517 }
2518
Chris Wilsona266c7d2012-04-24 22:59:44 +01002519 return ret;
2520}
2521
2522static void i915_irq_uninstall(struct drm_device * dev)
2523{
2524 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2525 int pipe;
2526
Chris Wilsona266c7d2012-04-24 22:59:44 +01002527 dev_priv->vblank_pipe = 0;
2528
2529 if (I915_HAS_HOTPLUG(dev)) {
2530 I915_WRITE(PORT_HOTPLUG_EN, 0);
2531 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
2532 }
2533
Chris Wilson00d98eb2012-04-24 22:59:48 +01002534 I915_WRITE16(HWSTAM, 0xffff);
Chris Wilson55b39752012-04-24 22:59:49 +01002535 for_each_pipe(pipe) {
2536 /* Clear enable bits; then clear status bits */
Chris Wilsona266c7d2012-04-24 22:59:44 +01002537 I915_WRITE(PIPESTAT(pipe), 0);
Chris Wilson55b39752012-04-24 22:59:49 +01002538 I915_WRITE(PIPESTAT(pipe), I915_READ(PIPESTAT(pipe)));
2539 }
Chris Wilsona266c7d2012-04-24 22:59:44 +01002540 I915_WRITE(IMR, 0xffffffff);
2541 I915_WRITE(IER, 0x0);
2542
Chris Wilsona266c7d2012-04-24 22:59:44 +01002543 I915_WRITE(IIR, I915_READ(IIR));
2544}
2545
2546static void i965_irq_preinstall(struct drm_device * dev)
2547{
2548 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2549 int pipe;
2550
2551 atomic_set(&dev_priv->irq_received, 0);
2552
2553 if (I915_HAS_HOTPLUG(dev)) {
2554 I915_WRITE(PORT_HOTPLUG_EN, 0);
2555 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
2556 }
2557
2558 I915_WRITE(HWSTAM, 0xeffe);
2559 for_each_pipe(pipe)
2560 I915_WRITE(PIPESTAT(pipe), 0);
2561 I915_WRITE(IMR, 0xffffffff);
2562 I915_WRITE(IER, 0x0);
2563 POSTING_READ(IER);
2564}
2565
2566static int i965_irq_postinstall(struct drm_device *dev)
2567{
2568 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Chris Wilsonbbba0a92012-04-24 22:59:51 +01002569 u32 enable_mask;
Chris Wilsona266c7d2012-04-24 22:59:44 +01002570 u32 error_mask;
2571
2572 dev_priv->vblank_pipe = DRM_I915_VBLANK_PIPE_A | DRM_I915_VBLANK_PIPE_B;
2573
2574 /* Unmask the interrupts that we always want on. */
Chris Wilsonbbba0a92012-04-24 22:59:51 +01002575 dev_priv->irq_mask = ~(I915_ASLE_INTERRUPT |
2576 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
2577 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
2578 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
2579 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT |
2580 I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT);
2581
2582 enable_mask = ~dev_priv->irq_mask;
2583 enable_mask |= I915_USER_INTERRUPT;
2584
2585 if (IS_G4X(dev))
2586 enable_mask |= I915_BSD_USER_INTERRUPT;
Chris Wilsona266c7d2012-04-24 22:59:44 +01002587
2588 dev_priv->pipestat[0] = 0;
2589 dev_priv->pipestat[1] = 0;
2590
2591 if (I915_HAS_HOTPLUG(dev)) {
2592 /* Enable in IER... */
2593 enable_mask |= I915_DISPLAY_PORT_INTERRUPT;
2594 /* and unmask in IMR */
2595 dev_priv->irq_mask &= ~I915_DISPLAY_PORT_INTERRUPT;
2596 }
2597
2598 /*
2599 * Enable some error detection, note the instruction error mask
2600 * bit is reserved, so we leave it masked.
2601 */
2602 if (IS_G4X(dev)) {
2603 error_mask = ~(GM45_ERROR_PAGE_TABLE |
2604 GM45_ERROR_MEM_PRIV |
2605 GM45_ERROR_CP_PRIV |
2606 I915_ERROR_MEMORY_REFRESH);
2607 } else {
2608 error_mask = ~(I915_ERROR_PAGE_TABLE |
2609 I915_ERROR_MEMORY_REFRESH);
2610 }
2611 I915_WRITE(EMR, error_mask);
2612
2613 I915_WRITE(IMR, dev_priv->irq_mask);
2614 I915_WRITE(IER, enable_mask);
2615 POSTING_READ(IER);
2616
2617 if (I915_HAS_HOTPLUG(dev)) {
2618 u32 hotplug_en = I915_READ(PORT_HOTPLUG_EN);
2619
2620 /* Note HDMI and DP share bits */
2621 if (dev_priv->hotplug_supported_mask & HDMIB_HOTPLUG_INT_STATUS)
2622 hotplug_en |= HDMIB_HOTPLUG_INT_EN;
2623 if (dev_priv->hotplug_supported_mask & HDMIC_HOTPLUG_INT_STATUS)
2624 hotplug_en |= HDMIC_HOTPLUG_INT_EN;
2625 if (dev_priv->hotplug_supported_mask & HDMID_HOTPLUG_INT_STATUS)
2626 hotplug_en |= HDMID_HOTPLUG_INT_EN;
2627 if (dev_priv->hotplug_supported_mask & SDVOC_HOTPLUG_INT_STATUS)
2628 hotplug_en |= SDVOC_HOTPLUG_INT_EN;
2629 if (dev_priv->hotplug_supported_mask & SDVOB_HOTPLUG_INT_STATUS)
2630 hotplug_en |= SDVOB_HOTPLUG_INT_EN;
2631 if (dev_priv->hotplug_supported_mask & CRT_HOTPLUG_INT_STATUS) {
2632 hotplug_en |= CRT_HOTPLUG_INT_EN;
2633
2634 /* Programming the CRT detection parameters tends
2635 to generate a spurious hotplug event about three
2636 seconds later. So just do it once.
2637 */
2638 if (IS_G4X(dev))
2639 hotplug_en |= CRT_HOTPLUG_ACTIVATION_PERIOD_64;
2640 hotplug_en |= CRT_HOTPLUG_VOLTAGE_COMPARE_50;
2641 }
2642
2643 /* Ignore TV since it's buggy */
2644
2645 I915_WRITE(PORT_HOTPLUG_EN, hotplug_en);
2646 }
2647
2648 intel_opregion_enable_asle(dev);
2649
2650 return 0;
2651}
2652
2653static irqreturn_t i965_irq_handler(DRM_IRQ_ARGS)
2654{
2655 struct drm_device *dev = (struct drm_device *) arg;
2656 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2657 struct drm_i915_master_private *master_priv;
2658 u32 iir, new_iir;
2659 u32 pipe_stats[I915_MAX_PIPES];
Chris Wilsona266c7d2012-04-24 22:59:44 +01002660 unsigned long irqflags;
2661 int irq_received;
2662 int ret = IRQ_NONE, pipe;
Chris Wilsona266c7d2012-04-24 22:59:44 +01002663
2664 atomic_inc(&dev_priv->irq_received);
2665
2666 iir = I915_READ(IIR);
2667
Chris Wilsona266c7d2012-04-24 22:59:44 +01002668 for (;;) {
Chris Wilson2c8ba292012-04-24 22:59:46 +01002669 bool blc_event = false;
2670
Chris Wilsona266c7d2012-04-24 22:59:44 +01002671 irq_received = iir != 0;
2672
2673 /* Can't rely on pipestat interrupt bit in iir as it might
2674 * have been cleared after the pipestat interrupt was received.
2675 * It doesn't set the bit in iir again, but it still produces
2676 * interrupts (for non-MSI).
2677 */
2678 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
2679 if (iir & I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT)
2680 i915_handle_error(dev, false);
2681
2682 for_each_pipe(pipe) {
2683 int reg = PIPESTAT(pipe);
2684 pipe_stats[pipe] = I915_READ(reg);
2685
2686 /*
2687 * Clear the PIPE*STAT regs before the IIR
2688 */
2689 if (pipe_stats[pipe] & 0x8000ffff) {
2690 if (pipe_stats[pipe] & PIPE_FIFO_UNDERRUN_STATUS)
2691 DRM_DEBUG_DRIVER("pipe %c underrun\n",
2692 pipe_name(pipe));
2693 I915_WRITE(reg, pipe_stats[pipe]);
2694 irq_received = 1;
2695 }
2696 }
2697 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2698
2699 if (!irq_received)
2700 break;
2701
2702 ret = IRQ_HANDLED;
2703
2704 /* Consume port. Then clear IIR or we'll miss events */
2705 if ((I915_HAS_HOTPLUG(dev)) &&
2706 (iir & I915_DISPLAY_PORT_INTERRUPT)) {
2707 u32 hotplug_status = I915_READ(PORT_HOTPLUG_STAT);
2708
2709 DRM_DEBUG_DRIVER("hotplug event received, stat 0x%08x\n",
2710 hotplug_status);
2711 if (hotplug_status & dev_priv->hotplug_supported_mask)
2712 queue_work(dev_priv->wq,
2713 &dev_priv->hotplug_work);
2714
2715 I915_WRITE(PORT_HOTPLUG_STAT, hotplug_status);
2716 I915_READ(PORT_HOTPLUG_STAT);
2717 }
2718
2719 I915_WRITE(IIR, iir);
2720 new_iir = I915_READ(IIR); /* Flush posted writes */
2721
Chris Wilsona266c7d2012-04-24 22:59:44 +01002722 if (iir & I915_USER_INTERRUPT)
2723 notify_ring(dev, &dev_priv->ring[RCS]);
2724 if (iir & I915_BSD_USER_INTERRUPT)
2725 notify_ring(dev, &dev_priv->ring[VCS]);
2726
Chris Wilson4f7d1e72012-04-24 22:59:45 +01002727 if (iir & I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT)
Chris Wilsona266c7d2012-04-24 22:59:44 +01002728 intel_prepare_page_flip(dev, 0);
Chris Wilsona266c7d2012-04-24 22:59:44 +01002729
Chris Wilson4f7d1e72012-04-24 22:59:45 +01002730 if (iir & I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT)
Chris Wilsona266c7d2012-04-24 22:59:44 +01002731 intel_prepare_page_flip(dev, 1);
Chris Wilsona266c7d2012-04-24 22:59:44 +01002732
2733 for_each_pipe(pipe) {
Chris Wilson2c8ba292012-04-24 22:59:46 +01002734 if (pipe_stats[pipe] & PIPE_START_VBLANK_INTERRUPT_STATUS &&
Chris Wilsona266c7d2012-04-24 22:59:44 +01002735 drm_handle_vblank(dev, pipe)) {
Chris Wilson4f7d1e72012-04-24 22:59:45 +01002736 i915_pageflip_stall_check(dev, pipe);
2737 intel_finish_page_flip(dev, pipe);
Chris Wilsona266c7d2012-04-24 22:59:44 +01002738 }
2739
2740 if (pipe_stats[pipe] & PIPE_LEGACY_BLC_EVENT_STATUS)
2741 blc_event = true;
2742 }
2743
2744
2745 if (blc_event || (iir & I915_ASLE_INTERRUPT))
2746 intel_opregion_asle_intr(dev);
2747
2748 /* With MSI, interrupts are only generated when iir
2749 * transitions from zero to nonzero. If another bit got
2750 * set while we were handling the existing iir bits, then
2751 * we would never get another interrupt.
2752 *
2753 * This is fine on non-MSI as well, as if we hit this path
2754 * we avoid exiting the interrupt handler only to generate
2755 * another one.
2756 *
2757 * Note that for MSI this could cause a stray interrupt report
2758 * if an interrupt landed in the time between writing IIR and
2759 * the posting read. This should be rare enough to never
2760 * trigger the 99% of 100,000 interrupts test for disabling
2761 * stray interrupts.
2762 */
2763 iir = new_iir;
2764 }
2765
Chris Wilson2c8ba292012-04-24 22:59:46 +01002766 if (dev->primary->master) {
2767 master_priv = dev->primary->master->driver_priv;
2768 if (master_priv->sarea_priv)
2769 master_priv->sarea_priv->last_dispatch =
2770 READ_BREADCRUMB(dev_priv);
2771 }
2772
Chris Wilsona266c7d2012-04-24 22:59:44 +01002773 return ret;
2774}
2775
2776static void i965_irq_uninstall(struct drm_device * dev)
2777{
2778 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2779 int pipe;
2780
2781 if (!dev_priv)
2782 return;
2783
2784 dev_priv->vblank_pipe = 0;
2785
2786 if (I915_HAS_HOTPLUG(dev)) {
2787 I915_WRITE(PORT_HOTPLUG_EN, 0);
2788 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
2789 }
2790
2791 I915_WRITE(HWSTAM, 0xffffffff);
2792 for_each_pipe(pipe)
2793 I915_WRITE(PIPESTAT(pipe), 0);
2794 I915_WRITE(IMR, 0xffffffff);
2795 I915_WRITE(IER, 0x0);
2796
2797 for_each_pipe(pipe)
2798 I915_WRITE(PIPESTAT(pipe),
2799 I915_READ(PIPESTAT(pipe)) & 0x8000ffff);
2800 I915_WRITE(IIR, I915_READ(IIR));
2801}
2802
Jesse Barnesf71d4af2011-06-28 13:00:41 -07002803void intel_irq_init(struct drm_device *dev)
2804{
Chris Wilson8b2e3262012-04-24 22:59:41 +01002805 struct drm_i915_private *dev_priv = dev->dev_private;
2806
2807 INIT_WORK(&dev_priv->hotplug_work, i915_hotplug_work_func);
2808 INIT_WORK(&dev_priv->error_work, i915_error_work_func);
2809 INIT_WORK(&dev_priv->rps_work, gen6_pm_rps_work);
2810
Jesse Barnesf71d4af2011-06-28 13:00:41 -07002811 dev->driver->get_vblank_counter = i915_get_vblank_counter;
2812 dev->max_vblank_count = 0xffffff; /* only 24 bits of frame count */
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002813 if (IS_G4X(dev) || IS_GEN5(dev) || IS_GEN6(dev) || IS_IVYBRIDGE(dev) ||
2814 IS_VALLEYVIEW(dev)) {
Jesse Barnesf71d4af2011-06-28 13:00:41 -07002815 dev->max_vblank_count = 0xffffffff; /* full 32 bit counter */
2816 dev->driver->get_vblank_counter = gm45_get_vblank_counter;
2817 }
2818
Keith Packardc3613de2011-08-12 17:05:54 -07002819 if (drm_core_check_feature(dev, DRIVER_MODESET))
2820 dev->driver->get_vblank_timestamp = i915_get_vblank_timestamp;
2821 else
2822 dev->driver->get_vblank_timestamp = NULL;
Jesse Barnesf71d4af2011-06-28 13:00:41 -07002823 dev->driver->get_scanout_position = i915_get_crtc_scanoutpos;
2824
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002825 if (IS_VALLEYVIEW(dev)) {
2826 dev->driver->irq_handler = valleyview_irq_handler;
2827 dev->driver->irq_preinstall = valleyview_irq_preinstall;
2828 dev->driver->irq_postinstall = valleyview_irq_postinstall;
2829 dev->driver->irq_uninstall = valleyview_irq_uninstall;
2830 dev->driver->enable_vblank = valleyview_enable_vblank;
2831 dev->driver->disable_vblank = valleyview_disable_vblank;
2832 } else if (IS_IVYBRIDGE(dev)) {
Jesse Barnesf71d4af2011-06-28 13:00:41 -07002833 /* Share pre & uninstall handlers with ILK/SNB */
2834 dev->driver->irq_handler = ivybridge_irq_handler;
2835 dev->driver->irq_preinstall = ironlake_irq_preinstall;
2836 dev->driver->irq_postinstall = ivybridge_irq_postinstall;
2837 dev->driver->irq_uninstall = ironlake_irq_uninstall;
2838 dev->driver->enable_vblank = ivybridge_enable_vblank;
2839 dev->driver->disable_vblank = ivybridge_disable_vblank;
2840 } else if (HAS_PCH_SPLIT(dev)) {
2841 dev->driver->irq_handler = ironlake_irq_handler;
2842 dev->driver->irq_preinstall = ironlake_irq_preinstall;
2843 dev->driver->irq_postinstall = ironlake_irq_postinstall;
2844 dev->driver->irq_uninstall = ironlake_irq_uninstall;
2845 dev->driver->enable_vblank = ironlake_enable_vblank;
2846 dev->driver->disable_vblank = ironlake_disable_vblank;
2847 } else {
Chris Wilsonc2798b12012-04-22 21:13:57 +01002848 if (INTEL_INFO(dev)->gen == 2) {
2849 dev->driver->irq_preinstall = i8xx_irq_preinstall;
2850 dev->driver->irq_postinstall = i8xx_irq_postinstall;
2851 dev->driver->irq_handler = i8xx_irq_handler;
2852 dev->driver->irq_uninstall = i8xx_irq_uninstall;
Chris Wilsona266c7d2012-04-24 22:59:44 +01002853 } else if (INTEL_INFO(dev)->gen == 3) {
Chris Wilson4f7d1e72012-04-24 22:59:45 +01002854 /* IIR "flip pending" means done if this bit is set */
2855 I915_WRITE(ECOSKPD, _MASKED_BIT_DISABLE(ECO_FLIP_DONE));
2856
Chris Wilsona266c7d2012-04-24 22:59:44 +01002857 dev->driver->irq_preinstall = i915_irq_preinstall;
2858 dev->driver->irq_postinstall = i915_irq_postinstall;
2859 dev->driver->irq_uninstall = i915_irq_uninstall;
2860 dev->driver->irq_handler = i915_irq_handler;
Chris Wilsonc2798b12012-04-22 21:13:57 +01002861 } else {
Chris Wilsona266c7d2012-04-24 22:59:44 +01002862 dev->driver->irq_preinstall = i965_irq_preinstall;
2863 dev->driver->irq_postinstall = i965_irq_postinstall;
2864 dev->driver->irq_uninstall = i965_irq_uninstall;
2865 dev->driver->irq_handler = i965_irq_handler;
Chris Wilsonc2798b12012-04-22 21:13:57 +01002866 }
Jesse Barnesf71d4af2011-06-28 13:00:41 -07002867 dev->driver->enable_vblank = i915_enable_vblank;
2868 dev->driver->disable_vblank = i915_disable_vblank;
2869 }
2870}