blob: f66392b6e287c3036f420c022241a74108c65527 [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>
Damien Lespiaub2c88f52013-10-15 18:55:29 +010033#include <linux/circ_buf.h>
David Howells760285e2012-10-02 18:01:07 +010034#include <drm/drmP.h>
35#include <drm/i915_drm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#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
Egbert Eiche5868a32013-02-28 04:17:12 -050040static const u32 hpd_ibx[] = {
41 [HPD_CRT] = SDE_CRT_HOTPLUG,
42 [HPD_SDVO_B] = SDE_SDVOB_HOTPLUG,
43 [HPD_PORT_B] = SDE_PORTB_HOTPLUG,
44 [HPD_PORT_C] = SDE_PORTC_HOTPLUG,
45 [HPD_PORT_D] = SDE_PORTD_HOTPLUG
46};
47
48static const u32 hpd_cpt[] = {
49 [HPD_CRT] = SDE_CRT_HOTPLUG_CPT,
Daniel Vetter73c352a2013-03-26 22:38:43 +010050 [HPD_SDVO_B] = SDE_SDVOB_HOTPLUG_CPT,
Egbert Eiche5868a32013-02-28 04:17:12 -050051 [HPD_PORT_B] = SDE_PORTB_HOTPLUG_CPT,
52 [HPD_PORT_C] = SDE_PORTC_HOTPLUG_CPT,
53 [HPD_PORT_D] = SDE_PORTD_HOTPLUG_CPT
54};
55
56static const u32 hpd_mask_i915[] = {
57 [HPD_CRT] = CRT_HOTPLUG_INT_EN,
58 [HPD_SDVO_B] = SDVOB_HOTPLUG_INT_EN,
59 [HPD_SDVO_C] = SDVOC_HOTPLUG_INT_EN,
60 [HPD_PORT_B] = PORTB_HOTPLUG_INT_EN,
61 [HPD_PORT_C] = PORTC_HOTPLUG_INT_EN,
62 [HPD_PORT_D] = PORTD_HOTPLUG_INT_EN
63};
64
Daniel Vetter704cfb82013-12-18 09:08:43 +010065static const u32 hpd_status_g4x[] = {
Egbert Eiche5868a32013-02-28 04:17:12 -050066 [HPD_CRT] = CRT_HOTPLUG_INT_STATUS,
67 [HPD_SDVO_B] = SDVOB_HOTPLUG_INT_STATUS_G4X,
68 [HPD_SDVO_C] = SDVOC_HOTPLUG_INT_STATUS_G4X,
69 [HPD_PORT_B] = PORTB_HOTPLUG_INT_STATUS,
70 [HPD_PORT_C] = PORTC_HOTPLUG_INT_STATUS,
71 [HPD_PORT_D] = PORTD_HOTPLUG_INT_STATUS
72};
73
Egbert Eiche5868a32013-02-28 04:17:12 -050074static const u32 hpd_status_i915[] = { /* i915 and valleyview are the same */
75 [HPD_CRT] = CRT_HOTPLUG_INT_STATUS,
76 [HPD_SDVO_B] = SDVOB_HOTPLUG_INT_STATUS_I915,
77 [HPD_SDVO_C] = SDVOC_HOTPLUG_INT_STATUS_I915,
78 [HPD_PORT_B] = PORTB_HOTPLUG_INT_STATUS,
79 [HPD_PORT_C] = PORTC_HOTPLUG_INT_STATUS,
80 [HPD_PORT_D] = PORTD_HOTPLUG_INT_STATUS
81};
82
Paulo Zanoni5c502442014-04-01 15:37:11 -030083/* IIR can theoretically queue up two events. Be paranoid. */
Paulo Zanonif86f3fb2014-04-01 15:37:14 -030084#define GEN8_IRQ_RESET_NDX(type, which) do { \
Paulo Zanoni5c502442014-04-01 15:37:11 -030085 I915_WRITE(GEN8_##type##_IMR(which), 0xffffffff); \
86 POSTING_READ(GEN8_##type##_IMR(which)); \
87 I915_WRITE(GEN8_##type##_IER(which), 0); \
88 I915_WRITE(GEN8_##type##_IIR(which), 0xffffffff); \
89 POSTING_READ(GEN8_##type##_IIR(which)); \
90 I915_WRITE(GEN8_##type##_IIR(which), 0xffffffff); \
91 POSTING_READ(GEN8_##type##_IIR(which)); \
92} while (0)
93
Paulo Zanonif86f3fb2014-04-01 15:37:14 -030094#define GEN5_IRQ_RESET(type) do { \
Paulo Zanonia9d356a2014-04-01 15:37:09 -030095 I915_WRITE(type##IMR, 0xffffffff); \
Paulo Zanoni5c502442014-04-01 15:37:11 -030096 POSTING_READ(type##IMR); \
Paulo Zanonia9d356a2014-04-01 15:37:09 -030097 I915_WRITE(type##IER, 0); \
Paulo Zanoni5c502442014-04-01 15:37:11 -030098 I915_WRITE(type##IIR, 0xffffffff); \
99 POSTING_READ(type##IIR); \
100 I915_WRITE(type##IIR, 0xffffffff); \
101 POSTING_READ(type##IIR); \
Paulo Zanonia9d356a2014-04-01 15:37:09 -0300102} while (0)
103
Paulo Zanoni337ba012014-04-01 15:37:16 -0300104/*
105 * We should clear IMR at preinstall/uninstall, and just check at postinstall.
106 */
107#define GEN5_ASSERT_IIR_IS_ZERO(reg) do { \
108 u32 val = I915_READ(reg); \
109 if (val) { \
110 WARN(1, "Interrupt register 0x%x is not zero: 0x%08x\n", \
111 (reg), val); \
112 I915_WRITE((reg), 0xffffffff); \
113 POSTING_READ(reg); \
114 I915_WRITE((reg), 0xffffffff); \
115 POSTING_READ(reg); \
116 } \
117} while (0)
118
Paulo Zanoni35079892014-04-01 15:37:15 -0300119#define GEN8_IRQ_INIT_NDX(type, which, imr_val, ier_val) do { \
Paulo Zanoni337ba012014-04-01 15:37:16 -0300120 GEN5_ASSERT_IIR_IS_ZERO(GEN8_##type##_IIR(which)); \
Paulo Zanoni35079892014-04-01 15:37:15 -0300121 I915_WRITE(GEN8_##type##_IMR(which), (imr_val)); \
122 I915_WRITE(GEN8_##type##_IER(which), (ier_val)); \
123 POSTING_READ(GEN8_##type##_IER(which)); \
124} while (0)
125
126#define GEN5_IRQ_INIT(type, imr_val, ier_val) do { \
Paulo Zanoni337ba012014-04-01 15:37:16 -0300127 GEN5_ASSERT_IIR_IS_ZERO(type##IIR); \
Paulo Zanoni35079892014-04-01 15:37:15 -0300128 I915_WRITE(type##IMR, (imr_val)); \
129 I915_WRITE(type##IER, (ier_val)); \
130 POSTING_READ(type##IER); \
131} while (0)
132
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800133/* For display hotplug interrupt */
Chris Wilson995b6762010-08-20 13:23:26 +0100134static void
Jani Nikula2d1013d2014-03-31 14:27:17 +0300135ironlake_enable_display_irq(struct drm_i915_private *dev_priv, u32 mask)
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800136{
Daniel Vetter4bc9d432013-06-27 13:44:58 +0200137 assert_spin_locked(&dev_priv->irq_lock);
138
Jesse Barnes9df7575f2014-06-20 09:29:20 -0700139 if (WARN_ON(!intel_irqs_enabled(dev_priv)))
Paulo Zanonic67a4702013-08-19 13:18:09 -0300140 return;
Paulo Zanonic67a4702013-08-19 13:18:09 -0300141
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000142 if ((dev_priv->irq_mask & mask) != 0) {
143 dev_priv->irq_mask &= ~mask;
144 I915_WRITE(DEIMR, dev_priv->irq_mask);
Chris Wilson3143a2b2010-11-16 15:55:10 +0000145 POSTING_READ(DEIMR);
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800146 }
147}
148
Paulo Zanoni0ff98002013-02-22 17:05:31 -0300149static void
Jani Nikula2d1013d2014-03-31 14:27:17 +0300150ironlake_disable_display_irq(struct drm_i915_private *dev_priv, u32 mask)
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800151{
Daniel Vetter4bc9d432013-06-27 13:44:58 +0200152 assert_spin_locked(&dev_priv->irq_lock);
153
Paulo Zanoni06ffc772014-07-17 17:43:46 -0300154 if (WARN_ON(!intel_irqs_enabled(dev_priv)))
Paulo Zanonic67a4702013-08-19 13:18:09 -0300155 return;
Paulo Zanonic67a4702013-08-19 13:18:09 -0300156
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000157 if ((dev_priv->irq_mask & mask) != mask) {
158 dev_priv->irq_mask |= mask;
159 I915_WRITE(DEIMR, dev_priv->irq_mask);
Chris Wilson3143a2b2010-11-16 15:55:10 +0000160 POSTING_READ(DEIMR);
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800161 }
162}
163
Paulo Zanoni43eaea12013-08-06 18:57:12 -0300164/**
165 * ilk_update_gt_irq - update GTIMR
166 * @dev_priv: driver private
167 * @interrupt_mask: mask of interrupt bits to update
168 * @enabled_irq_mask: mask of interrupt bits to enable
169 */
170static void ilk_update_gt_irq(struct drm_i915_private *dev_priv,
171 uint32_t interrupt_mask,
172 uint32_t enabled_irq_mask)
173{
174 assert_spin_locked(&dev_priv->irq_lock);
175
Jesse Barnes9df7575f2014-06-20 09:29:20 -0700176 if (WARN_ON(!intel_irqs_enabled(dev_priv)))
Paulo Zanonic67a4702013-08-19 13:18:09 -0300177 return;
Paulo Zanonic67a4702013-08-19 13:18:09 -0300178
Paulo Zanoni43eaea12013-08-06 18:57:12 -0300179 dev_priv->gt_irq_mask &= ~interrupt_mask;
180 dev_priv->gt_irq_mask |= (~enabled_irq_mask & interrupt_mask);
181 I915_WRITE(GTIMR, dev_priv->gt_irq_mask);
182 POSTING_READ(GTIMR);
183}
184
Daniel Vetter480c8032014-07-16 09:49:40 +0200185void gen5_enable_gt_irq(struct drm_i915_private *dev_priv, uint32_t mask)
Paulo Zanoni43eaea12013-08-06 18:57:12 -0300186{
187 ilk_update_gt_irq(dev_priv, mask, mask);
188}
189
Daniel Vetter480c8032014-07-16 09:49:40 +0200190void gen5_disable_gt_irq(struct drm_i915_private *dev_priv, uint32_t mask)
Paulo Zanoni43eaea12013-08-06 18:57:12 -0300191{
192 ilk_update_gt_irq(dev_priv, mask, 0);
193}
194
Paulo Zanoniedbfdb42013-08-06 18:57:13 -0300195/**
196 * snb_update_pm_irq - update GEN6_PMIMR
197 * @dev_priv: driver private
198 * @interrupt_mask: mask of interrupt bits to update
199 * @enabled_irq_mask: mask of interrupt bits to enable
200 */
201static void snb_update_pm_irq(struct drm_i915_private *dev_priv,
202 uint32_t interrupt_mask,
203 uint32_t enabled_irq_mask)
204{
Paulo Zanoni605cd252013-08-06 18:57:15 -0300205 uint32_t new_val;
Paulo Zanoniedbfdb42013-08-06 18:57:13 -0300206
207 assert_spin_locked(&dev_priv->irq_lock);
208
Jesse Barnes9df7575f2014-06-20 09:29:20 -0700209 if (WARN_ON(!intel_irqs_enabled(dev_priv)))
Paulo Zanonic67a4702013-08-19 13:18:09 -0300210 return;
Paulo Zanonic67a4702013-08-19 13:18:09 -0300211
Paulo Zanoni605cd252013-08-06 18:57:15 -0300212 new_val = dev_priv->pm_irq_mask;
Paulo Zanonif52ecbc2013-08-06 18:57:14 -0300213 new_val &= ~interrupt_mask;
214 new_val |= (~enabled_irq_mask & interrupt_mask);
215
Paulo Zanoni605cd252013-08-06 18:57:15 -0300216 if (new_val != dev_priv->pm_irq_mask) {
217 dev_priv->pm_irq_mask = new_val;
218 I915_WRITE(GEN6_PMIMR, dev_priv->pm_irq_mask);
Paulo Zanonif52ecbc2013-08-06 18:57:14 -0300219 POSTING_READ(GEN6_PMIMR);
220 }
Paulo Zanoniedbfdb42013-08-06 18:57:13 -0300221}
222
Daniel Vetter480c8032014-07-16 09:49:40 +0200223void gen6_enable_pm_irq(struct drm_i915_private *dev_priv, uint32_t mask)
Paulo Zanoniedbfdb42013-08-06 18:57:13 -0300224{
225 snb_update_pm_irq(dev_priv, mask, mask);
226}
227
Daniel Vetter480c8032014-07-16 09:49:40 +0200228void gen6_disable_pm_irq(struct drm_i915_private *dev_priv, uint32_t mask)
Paulo Zanoniedbfdb42013-08-06 18:57:13 -0300229{
230 snb_update_pm_irq(dev_priv, mask, 0);
231}
232
Paulo Zanoni86642812013-04-12 17:57:57 -0300233static bool ivb_can_enable_err_int(struct drm_device *dev)
234{
235 struct drm_i915_private *dev_priv = dev->dev_private;
236 struct intel_crtc *crtc;
237 enum pipe pipe;
238
Daniel Vetter4bc9d432013-06-27 13:44:58 +0200239 assert_spin_locked(&dev_priv->irq_lock);
240
Damien Lespiau055e3932014-08-18 13:49:10 +0100241 for_each_pipe(dev_priv, pipe) {
Paulo Zanoni86642812013-04-12 17:57:57 -0300242 crtc = to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]);
243
244 if (crtc->cpu_fifo_underrun_disabled)
245 return false;
246 }
247
248 return true;
249}
250
Ben Widawsky09610212014-05-15 20:58:08 +0300251/**
252 * bdw_update_pm_irq - update GT interrupt 2
253 * @dev_priv: driver private
254 * @interrupt_mask: mask of interrupt bits to update
255 * @enabled_irq_mask: mask of interrupt bits to enable
256 *
257 * Copied from the snb function, updated with relevant register offsets
258 */
259static void bdw_update_pm_irq(struct drm_i915_private *dev_priv,
260 uint32_t interrupt_mask,
261 uint32_t enabled_irq_mask)
262{
263 uint32_t new_val;
264
265 assert_spin_locked(&dev_priv->irq_lock);
266
Jesse Barnes9df7575f2014-06-20 09:29:20 -0700267 if (WARN_ON(!intel_irqs_enabled(dev_priv)))
Ben Widawsky09610212014-05-15 20:58:08 +0300268 return;
269
270 new_val = dev_priv->pm_irq_mask;
271 new_val &= ~interrupt_mask;
272 new_val |= (~enabled_irq_mask & interrupt_mask);
273
274 if (new_val != dev_priv->pm_irq_mask) {
275 dev_priv->pm_irq_mask = new_val;
276 I915_WRITE(GEN8_GT_IMR(2), dev_priv->pm_irq_mask);
277 POSTING_READ(GEN8_GT_IMR(2));
278 }
279}
280
Daniel Vetter480c8032014-07-16 09:49:40 +0200281void gen8_enable_pm_irq(struct drm_i915_private *dev_priv, uint32_t mask)
Ben Widawsky09610212014-05-15 20:58:08 +0300282{
283 bdw_update_pm_irq(dev_priv, mask, mask);
284}
285
Daniel Vetter480c8032014-07-16 09:49:40 +0200286void gen8_disable_pm_irq(struct drm_i915_private *dev_priv, uint32_t mask)
Ben Widawsky09610212014-05-15 20:58:08 +0300287{
288 bdw_update_pm_irq(dev_priv, mask, 0);
289}
290
Paulo Zanoni86642812013-04-12 17:57:57 -0300291static bool cpt_can_enable_serr_int(struct drm_device *dev)
292{
293 struct drm_i915_private *dev_priv = dev->dev_private;
294 enum pipe pipe;
295 struct intel_crtc *crtc;
296
Daniel Vetterfee884e2013-07-04 23:35:21 +0200297 assert_spin_locked(&dev_priv->irq_lock);
298
Damien Lespiau055e3932014-08-18 13:49:10 +0100299 for_each_pipe(dev_priv, pipe) {
Paulo Zanoni86642812013-04-12 17:57:57 -0300300 crtc = to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]);
301
302 if (crtc->pch_fifo_underrun_disabled)
303 return false;
304 }
305
306 return true;
307}
308
Ville Syrjälä56b80e12014-05-16 19:40:22 +0300309void i9xx_check_fifo_underruns(struct drm_device *dev)
310{
311 struct drm_i915_private *dev_priv = dev->dev_private;
312 struct intel_crtc *crtc;
313 unsigned long flags;
314
315 spin_lock_irqsave(&dev_priv->irq_lock, flags);
316
317 for_each_intel_crtc(dev, crtc) {
318 u32 reg = PIPESTAT(crtc->pipe);
319 u32 pipestat;
320
321 if (crtc->cpu_fifo_underrun_disabled)
322 continue;
323
324 pipestat = I915_READ(reg) & 0xffff0000;
325 if ((pipestat & PIPE_FIFO_UNDERRUN_STATUS) == 0)
326 continue;
327
328 I915_WRITE(reg, pipestat | PIPE_FIFO_UNDERRUN_STATUS);
329 POSTING_READ(reg);
330
331 DRM_ERROR("pipe %c underrun\n", pipe_name(crtc->pipe));
332 }
333
334 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
335}
336
Ville Syrjäläe69abff2014-05-16 19:40:21 +0300337static void i9xx_set_fifo_underrun_reporting(struct drm_device *dev,
Daniel Vetter2ae2a502014-05-22 17:56:32 +0200338 enum pipe pipe,
339 bool enable, bool old)
Ville Syrjälä2d9d2b02014-01-17 11:44:31 +0200340{
341 struct drm_i915_private *dev_priv = dev->dev_private;
342 u32 reg = PIPESTAT(pipe);
Ville Syrjäläe69abff2014-05-16 19:40:21 +0300343 u32 pipestat = I915_READ(reg) & 0xffff0000;
Ville Syrjälä2d9d2b02014-01-17 11:44:31 +0200344
345 assert_spin_locked(&dev_priv->irq_lock);
346
Ville Syrjäläe69abff2014-05-16 19:40:21 +0300347 if (enable) {
348 I915_WRITE(reg, pipestat | PIPE_FIFO_UNDERRUN_STATUS);
349 POSTING_READ(reg);
350 } else {
Daniel Vetter2ae2a502014-05-22 17:56:32 +0200351 if (old && pipestat & PIPE_FIFO_UNDERRUN_STATUS)
Ville Syrjäläe69abff2014-05-16 19:40:21 +0300352 DRM_ERROR("pipe %c underrun\n", pipe_name(pipe));
353 }
Ville Syrjälä2d9d2b02014-01-17 11:44:31 +0200354}
355
Paulo Zanoni86642812013-04-12 17:57:57 -0300356static void ironlake_set_fifo_underrun_reporting(struct drm_device *dev,
357 enum pipe pipe, bool enable)
358{
359 struct drm_i915_private *dev_priv = dev->dev_private;
360 uint32_t bit = (pipe == PIPE_A) ? DE_PIPEA_FIFO_UNDERRUN :
361 DE_PIPEB_FIFO_UNDERRUN;
362
363 if (enable)
364 ironlake_enable_display_irq(dev_priv, bit);
365 else
366 ironlake_disable_display_irq(dev_priv, bit);
367}
368
369static void ivybridge_set_fifo_underrun_reporting(struct drm_device *dev,
Daniel Vetter2ae2a502014-05-22 17:56:32 +0200370 enum pipe pipe,
371 bool enable, bool old)
Paulo Zanoni86642812013-04-12 17:57:57 -0300372{
373 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoni86642812013-04-12 17:57:57 -0300374 if (enable) {
Daniel Vetter7336df62013-07-09 22:59:16 +0200375 I915_WRITE(GEN7_ERR_INT, ERR_INT_FIFO_UNDERRUN(pipe));
376
Paulo Zanoni86642812013-04-12 17:57:57 -0300377 if (!ivb_can_enable_err_int(dev))
378 return;
379
Paulo Zanoni86642812013-04-12 17:57:57 -0300380 ironlake_enable_display_irq(dev_priv, DE_ERR_INT_IVB);
381 } else {
382 ironlake_disable_display_irq(dev_priv, DE_ERR_INT_IVB);
Daniel Vetter7336df62013-07-09 22:59:16 +0200383
Daniel Vetter2ae2a502014-05-22 17:56:32 +0200384 if (old &&
385 I915_READ(GEN7_ERR_INT) & ERR_INT_FIFO_UNDERRUN(pipe)) {
Ville Syrjälä823c6902014-05-16 19:40:23 +0300386 DRM_ERROR("uncleared fifo underrun on pipe %c\n",
387 pipe_name(pipe));
Daniel Vetter7336df62013-07-09 22:59:16 +0200388 }
Paulo Zanoni86642812013-04-12 17:57:57 -0300389 }
390}
391
Daniel Vetter38d83c962013-11-07 11:05:46 +0100392static void broadwell_set_fifo_underrun_reporting(struct drm_device *dev,
393 enum pipe pipe, bool enable)
394{
395 struct drm_i915_private *dev_priv = dev->dev_private;
396
397 assert_spin_locked(&dev_priv->irq_lock);
398
399 if (enable)
400 dev_priv->de_irq_mask[pipe] &= ~GEN8_PIPE_FIFO_UNDERRUN;
401 else
402 dev_priv->de_irq_mask[pipe] |= GEN8_PIPE_FIFO_UNDERRUN;
403 I915_WRITE(GEN8_DE_PIPE_IMR(pipe), dev_priv->de_irq_mask[pipe]);
404 POSTING_READ(GEN8_DE_PIPE_IMR(pipe));
405}
406
Daniel Vetterfee884e2013-07-04 23:35:21 +0200407/**
408 * ibx_display_interrupt_update - update SDEIMR
409 * @dev_priv: driver private
410 * @interrupt_mask: mask of interrupt bits to update
411 * @enabled_irq_mask: mask of interrupt bits to enable
412 */
413static void ibx_display_interrupt_update(struct drm_i915_private *dev_priv,
414 uint32_t interrupt_mask,
415 uint32_t enabled_irq_mask)
416{
417 uint32_t sdeimr = I915_READ(SDEIMR);
418 sdeimr &= ~interrupt_mask;
419 sdeimr |= (~enabled_irq_mask & interrupt_mask);
420
421 assert_spin_locked(&dev_priv->irq_lock);
422
Jesse Barnes9df7575f2014-06-20 09:29:20 -0700423 if (WARN_ON(!intel_irqs_enabled(dev_priv)))
Paulo Zanonic67a4702013-08-19 13:18:09 -0300424 return;
Paulo Zanonic67a4702013-08-19 13:18:09 -0300425
Daniel Vetterfee884e2013-07-04 23:35:21 +0200426 I915_WRITE(SDEIMR, sdeimr);
427 POSTING_READ(SDEIMR);
428}
429#define ibx_enable_display_interrupt(dev_priv, bits) \
430 ibx_display_interrupt_update((dev_priv), (bits), (bits))
431#define ibx_disable_display_interrupt(dev_priv, bits) \
432 ibx_display_interrupt_update((dev_priv), (bits), 0)
433
Daniel Vetterde280752013-07-04 23:35:24 +0200434static void ibx_set_fifo_underrun_reporting(struct drm_device *dev,
435 enum transcoder pch_transcoder,
Paulo Zanoni86642812013-04-12 17:57:57 -0300436 bool enable)
437{
Paulo Zanoni86642812013-04-12 17:57:57 -0300438 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterde280752013-07-04 23:35:24 +0200439 uint32_t bit = (pch_transcoder == TRANSCODER_A) ?
440 SDE_TRANSA_FIFO_UNDER : SDE_TRANSB_FIFO_UNDER;
Paulo Zanoni86642812013-04-12 17:57:57 -0300441
442 if (enable)
Daniel Vetterfee884e2013-07-04 23:35:21 +0200443 ibx_enable_display_interrupt(dev_priv, bit);
Paulo Zanoni86642812013-04-12 17:57:57 -0300444 else
Daniel Vetterfee884e2013-07-04 23:35:21 +0200445 ibx_disable_display_interrupt(dev_priv, bit);
Paulo Zanoni86642812013-04-12 17:57:57 -0300446}
447
448static void cpt_set_fifo_underrun_reporting(struct drm_device *dev,
449 enum transcoder pch_transcoder,
Daniel Vetter2ae2a502014-05-22 17:56:32 +0200450 bool enable, bool old)
Paulo Zanoni86642812013-04-12 17:57:57 -0300451{
452 struct drm_i915_private *dev_priv = dev->dev_private;
453
454 if (enable) {
Daniel Vetter1dd246f2013-07-10 08:30:23 +0200455 I915_WRITE(SERR_INT,
456 SERR_INT_TRANS_FIFO_UNDERRUN(pch_transcoder));
457
Paulo Zanoni86642812013-04-12 17:57:57 -0300458 if (!cpt_can_enable_serr_int(dev))
459 return;
460
Daniel Vetterfee884e2013-07-04 23:35:21 +0200461 ibx_enable_display_interrupt(dev_priv, SDE_ERROR_CPT);
Paulo Zanoni86642812013-04-12 17:57:57 -0300462 } else {
Daniel Vetterfee884e2013-07-04 23:35:21 +0200463 ibx_disable_display_interrupt(dev_priv, SDE_ERROR_CPT);
Daniel Vetter1dd246f2013-07-10 08:30:23 +0200464
Daniel Vetter2ae2a502014-05-22 17:56:32 +0200465 if (old && I915_READ(SERR_INT) &
466 SERR_INT_TRANS_FIFO_UNDERRUN(pch_transcoder)) {
Ville Syrjälä823c6902014-05-16 19:40:23 +0300467 DRM_ERROR("uncleared pch fifo underrun on pch transcoder %c\n",
468 transcoder_name(pch_transcoder));
Daniel Vetter1dd246f2013-07-10 08:30:23 +0200469 }
Paulo Zanoni86642812013-04-12 17:57:57 -0300470 }
Paulo Zanoni86642812013-04-12 17:57:57 -0300471}
472
473/**
474 * intel_set_cpu_fifo_underrun_reporting - enable/disable FIFO underrun messages
475 * @dev: drm device
476 * @pipe: pipe
477 * @enable: true if we want to report FIFO underrun errors, false otherwise
478 *
479 * This function makes us disable or enable CPU fifo underruns for a specific
480 * pipe. Notice that on some Gens (e.g. IVB, HSW), disabling FIFO underrun
481 * reporting for one pipe may also disable all the other CPU error interruts for
482 * the other pipes, due to the fact that there's just one interrupt mask/enable
483 * bit for all the pipes.
484 *
485 * Returns the previous state of underrun reporting.
486 */
Daniel Vetterc5ab3bc2014-05-14 15:40:34 +0200487static bool __intel_set_cpu_fifo_underrun_reporting(struct drm_device *dev,
488 enum pipe pipe, bool enable)
Paulo Zanoni86642812013-04-12 17:57:57 -0300489{
490 struct drm_i915_private *dev_priv = dev->dev_private;
491 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
492 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetter2ae2a502014-05-22 17:56:32 +0200493 bool old;
Paulo Zanoni86642812013-04-12 17:57:57 -0300494
Imre Deak77961eb2014-03-05 16:20:56 +0200495 assert_spin_locked(&dev_priv->irq_lock);
496
Daniel Vetter2ae2a502014-05-22 17:56:32 +0200497 old = !intel_crtc->cpu_fifo_underrun_disabled;
Paulo Zanoni86642812013-04-12 17:57:57 -0300498 intel_crtc->cpu_fifo_underrun_disabled = !enable;
499
Ville Syrjäläa3ed6aa2014-09-03 14:09:52 +0300500 if (HAS_GMCH_DISPLAY(dev))
Daniel Vetter2ae2a502014-05-22 17:56:32 +0200501 i9xx_set_fifo_underrun_reporting(dev, pipe, enable, old);
Ville Syrjälä2d9d2b02014-01-17 11:44:31 +0200502 else if (IS_GEN5(dev) || IS_GEN6(dev))
Paulo Zanoni86642812013-04-12 17:57:57 -0300503 ironlake_set_fifo_underrun_reporting(dev, pipe, enable);
504 else if (IS_GEN7(dev))
Daniel Vetter2ae2a502014-05-22 17:56:32 +0200505 ivybridge_set_fifo_underrun_reporting(dev, pipe, enable, old);
Daniel Vetter38d83c962013-11-07 11:05:46 +0100506 else if (IS_GEN8(dev))
507 broadwell_set_fifo_underrun_reporting(dev, pipe, enable);
Paulo Zanoni86642812013-04-12 17:57:57 -0300508
Daniel Vetter2ae2a502014-05-22 17:56:32 +0200509 return old;
Imre Deakf88d42f2014-03-04 19:23:09 +0200510}
511
512bool intel_set_cpu_fifo_underrun_reporting(struct drm_device *dev,
513 enum pipe pipe, bool enable)
514{
515 struct drm_i915_private *dev_priv = dev->dev_private;
516 unsigned long flags;
517 bool ret;
518
519 spin_lock_irqsave(&dev_priv->irq_lock, flags);
520 ret = __intel_set_cpu_fifo_underrun_reporting(dev, pipe, enable);
Paulo Zanoni86642812013-04-12 17:57:57 -0300521 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
Imre Deakf88d42f2014-03-04 19:23:09 +0200522
Paulo Zanoni86642812013-04-12 17:57:57 -0300523 return ret;
524}
525
Imre Deak91d181d2014-02-10 18:42:49 +0200526static bool __cpu_fifo_underrun_reporting_enabled(struct drm_device *dev,
527 enum pipe pipe)
528{
529 struct drm_i915_private *dev_priv = dev->dev_private;
530 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
531 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
532
533 return !intel_crtc->cpu_fifo_underrun_disabled;
534}
535
Paulo Zanoni86642812013-04-12 17:57:57 -0300536/**
537 * intel_set_pch_fifo_underrun_reporting - enable/disable FIFO underrun messages
538 * @dev: drm device
539 * @pch_transcoder: the PCH transcoder (same as pipe on IVB and older)
540 * @enable: true if we want to report FIFO underrun errors, false otherwise
541 *
542 * This function makes us disable or enable PCH fifo underruns for a specific
543 * PCH transcoder. Notice that on some PCHs (e.g. CPT/PPT), disabling FIFO
544 * underrun reporting for one transcoder may also disable all the other PCH
545 * error interruts for the other transcoders, due to the fact that there's just
546 * one interrupt mask/enable bit for all the transcoders.
547 *
548 * Returns the previous state of underrun reporting.
549 */
550bool intel_set_pch_fifo_underrun_reporting(struct drm_device *dev,
551 enum transcoder pch_transcoder,
552 bool enable)
553{
554 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterde280752013-07-04 23:35:24 +0200555 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pch_transcoder];
556 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Paulo Zanoni86642812013-04-12 17:57:57 -0300557 unsigned long flags;
Daniel Vetter2ae2a502014-05-22 17:56:32 +0200558 bool old;
Paulo Zanoni86642812013-04-12 17:57:57 -0300559
Daniel Vetterde280752013-07-04 23:35:24 +0200560 /*
561 * NOTE: Pre-LPT has a fixed cpu pipe -> pch transcoder mapping, but LPT
562 * has only one pch transcoder A that all pipes can use. To avoid racy
563 * pch transcoder -> pipe lookups from interrupt code simply store the
564 * underrun statistics in crtc A. Since we never expose this anywhere
565 * nor use it outside of the fifo underrun code here using the "wrong"
566 * crtc on LPT won't cause issues.
567 */
Paulo Zanoni86642812013-04-12 17:57:57 -0300568
569 spin_lock_irqsave(&dev_priv->irq_lock, flags);
570
Daniel Vetter2ae2a502014-05-22 17:56:32 +0200571 old = !intel_crtc->pch_fifo_underrun_disabled;
Paulo Zanoni86642812013-04-12 17:57:57 -0300572 intel_crtc->pch_fifo_underrun_disabled = !enable;
573
574 if (HAS_PCH_IBX(dev))
Daniel Vetterde280752013-07-04 23:35:24 +0200575 ibx_set_fifo_underrun_reporting(dev, pch_transcoder, enable);
Paulo Zanoni86642812013-04-12 17:57:57 -0300576 else
Daniel Vetter2ae2a502014-05-22 17:56:32 +0200577 cpt_set_fifo_underrun_reporting(dev, pch_transcoder, enable, old);
Paulo Zanoni86642812013-04-12 17:57:57 -0300578
Paulo Zanoni86642812013-04-12 17:57:57 -0300579 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
Daniel Vetter2ae2a502014-05-22 17:56:32 +0200580 return old;
Paulo Zanoni86642812013-04-12 17:57:57 -0300581}
582
583
Daniel Vetterb5ea6422014-03-02 21:18:00 +0100584static void
Imre Deak755e9012014-02-10 18:42:47 +0200585__i915_enable_pipestat(struct drm_i915_private *dev_priv, enum pipe pipe,
586 u32 enable_mask, u32 status_mask)
Keith Packard7c463582008-11-04 02:03:27 -0800587{
Ville Syrjälä46c06a32013-02-20 21:16:18 +0200588 u32 reg = PIPESTAT(pipe);
Imre Deak755e9012014-02-10 18:42:47 +0200589 u32 pipestat = I915_READ(reg) & PIPESTAT_INT_ENABLE_MASK;
Keith Packard7c463582008-11-04 02:03:27 -0800590
Daniel Vetterb79480b2013-06-27 17:52:10 +0200591 assert_spin_locked(&dev_priv->irq_lock);
592
Ville Syrjälä04feced2014-04-03 13:28:33 +0300593 if (WARN_ONCE(enable_mask & ~PIPESTAT_INT_ENABLE_MASK ||
594 status_mask & ~PIPESTAT_INT_STATUS_MASK,
595 "pipe %c: enable_mask=0x%x, status_mask=0x%x\n",
596 pipe_name(pipe), enable_mask, status_mask))
Imre Deak755e9012014-02-10 18:42:47 +0200597 return;
598
599 if ((pipestat & enable_mask) == enable_mask)
Ville Syrjälä46c06a32013-02-20 21:16:18 +0200600 return;
601
Imre Deak91d181d2014-02-10 18:42:49 +0200602 dev_priv->pipestat_irq_mask[pipe] |= status_mask;
603
Ville Syrjälä46c06a32013-02-20 21:16:18 +0200604 /* Enable the interrupt, clear any pending status */
Imre Deak755e9012014-02-10 18:42:47 +0200605 pipestat |= enable_mask | status_mask;
Ville Syrjälä46c06a32013-02-20 21:16:18 +0200606 I915_WRITE(reg, pipestat);
607 POSTING_READ(reg);
Keith Packard7c463582008-11-04 02:03:27 -0800608}
609
Daniel Vetterb5ea6422014-03-02 21:18:00 +0100610static void
Imre Deak755e9012014-02-10 18:42:47 +0200611__i915_disable_pipestat(struct drm_i915_private *dev_priv, enum pipe pipe,
612 u32 enable_mask, u32 status_mask)
Keith Packard7c463582008-11-04 02:03:27 -0800613{
Ville Syrjälä46c06a32013-02-20 21:16:18 +0200614 u32 reg = PIPESTAT(pipe);
Imre Deak755e9012014-02-10 18:42:47 +0200615 u32 pipestat = I915_READ(reg) & PIPESTAT_INT_ENABLE_MASK;
Keith Packard7c463582008-11-04 02:03:27 -0800616
Daniel Vetterb79480b2013-06-27 17:52:10 +0200617 assert_spin_locked(&dev_priv->irq_lock);
618
Ville Syrjälä04feced2014-04-03 13:28:33 +0300619 if (WARN_ONCE(enable_mask & ~PIPESTAT_INT_ENABLE_MASK ||
620 status_mask & ~PIPESTAT_INT_STATUS_MASK,
621 "pipe %c: enable_mask=0x%x, status_mask=0x%x\n",
622 pipe_name(pipe), enable_mask, status_mask))
Ville Syrjälä46c06a32013-02-20 21:16:18 +0200623 return;
624
Imre Deak755e9012014-02-10 18:42:47 +0200625 if ((pipestat & enable_mask) == 0)
626 return;
627
Imre Deak91d181d2014-02-10 18:42:49 +0200628 dev_priv->pipestat_irq_mask[pipe] &= ~status_mask;
629
Imre Deak755e9012014-02-10 18:42:47 +0200630 pipestat &= ~enable_mask;
Ville Syrjälä46c06a32013-02-20 21:16:18 +0200631 I915_WRITE(reg, pipestat);
632 POSTING_READ(reg);
Keith Packard7c463582008-11-04 02:03:27 -0800633}
634
Imre Deak10c59c52014-02-10 18:42:48 +0200635static u32 vlv_get_pipestat_enable_mask(struct drm_device *dev, u32 status_mask)
636{
637 u32 enable_mask = status_mask << 16;
638
639 /*
Ville Syrjälä724a6902014-04-09 13:28:48 +0300640 * On pipe A we don't support the PSR interrupt yet,
641 * on pipe B and C the same bit MBZ.
Imre Deak10c59c52014-02-10 18:42:48 +0200642 */
643 if (WARN_ON_ONCE(status_mask & PIPE_A_PSR_STATUS_VLV))
644 return 0;
Ville Syrjälä724a6902014-04-09 13:28:48 +0300645 /*
646 * On pipe B and C we don't support the PSR interrupt yet, on pipe
647 * A the same bit is for perf counters which we don't use either.
648 */
649 if (WARN_ON_ONCE(status_mask & PIPE_B_PSR_STATUS_VLV))
650 return 0;
Imre Deak10c59c52014-02-10 18:42:48 +0200651
652 enable_mask &= ~(PIPE_FIFO_UNDERRUN_STATUS |
653 SPRITE0_FLIP_DONE_INT_EN_VLV |
654 SPRITE1_FLIP_DONE_INT_EN_VLV);
655 if (status_mask & SPRITE0_FLIP_DONE_INT_STATUS_VLV)
656 enable_mask |= SPRITE0_FLIP_DONE_INT_EN_VLV;
657 if (status_mask & SPRITE1_FLIP_DONE_INT_STATUS_VLV)
658 enable_mask |= SPRITE1_FLIP_DONE_INT_EN_VLV;
659
660 return enable_mask;
661}
662
Imre Deak755e9012014-02-10 18:42:47 +0200663void
664i915_enable_pipestat(struct drm_i915_private *dev_priv, enum pipe pipe,
665 u32 status_mask)
666{
667 u32 enable_mask;
668
Imre Deak10c59c52014-02-10 18:42:48 +0200669 if (IS_VALLEYVIEW(dev_priv->dev))
670 enable_mask = vlv_get_pipestat_enable_mask(dev_priv->dev,
671 status_mask);
672 else
673 enable_mask = status_mask << 16;
Imre Deak755e9012014-02-10 18:42:47 +0200674 __i915_enable_pipestat(dev_priv, pipe, enable_mask, status_mask);
675}
676
677void
678i915_disable_pipestat(struct drm_i915_private *dev_priv, enum pipe pipe,
679 u32 status_mask)
680{
681 u32 enable_mask;
682
Imre Deak10c59c52014-02-10 18:42:48 +0200683 if (IS_VALLEYVIEW(dev_priv->dev))
684 enable_mask = vlv_get_pipestat_enable_mask(dev_priv->dev,
685 status_mask);
686 else
687 enable_mask = status_mask << 16;
Imre Deak755e9012014-02-10 18:42:47 +0200688 __i915_disable_pipestat(dev_priv, pipe, enable_mask, status_mask);
689}
690
=?utf-8?q?Michel_D=C3=A4nzer?=a6b54f32006-10-24 23:37:43 +1000691/**
Jani Nikulaf49e38d2013-04-29 13:02:54 +0300692 * i915_enable_asle_pipestat - enable ASLE pipestat for OpRegion
Zhao Yakui01c66882009-10-28 05:10:00 +0000693 */
Jani Nikulaf49e38d2013-04-29 13:02:54 +0300694static void i915_enable_asle_pipestat(struct drm_device *dev)
Zhao Yakui01c66882009-10-28 05:10:00 +0000695{
Jani Nikula2d1013d2014-03-31 14:27:17 +0300696 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000697 unsigned long irqflags;
698
Jani Nikulaf49e38d2013-04-29 13:02:54 +0300699 if (!dev_priv->opregion.asle || !IS_MOBILE(dev))
700 return;
701
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000702 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Zhao Yakui01c66882009-10-28 05:10:00 +0000703
Imre Deak755e9012014-02-10 18:42:47 +0200704 i915_enable_pipestat(dev_priv, PIPE_B, PIPE_LEGACY_BLC_EVENT_STATUS);
Jani Nikulaf8987802013-04-29 13:02:53 +0300705 if (INTEL_INFO(dev)->gen >= 4)
Daniel Vetter3b6c42e2013-10-21 18:04:35 +0200706 i915_enable_pipestat(dev_priv, PIPE_A,
Imre Deak755e9012014-02-10 18:42:47 +0200707 PIPE_LEGACY_BLC_EVENT_STATUS);
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000708
709 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
Zhao Yakui01c66882009-10-28 05:10:00 +0000710}
711
712/**
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700713 * i915_pipe_enabled - check if a pipe is enabled
714 * @dev: DRM device
715 * @pipe: pipe to check
716 *
717 * Reading certain registers when the pipe is disabled can hang the chip.
718 * Use this routine to make sure the PLL is running and the pipe is active
719 * before reading such registers if unsure.
720 */
721static int
722i915_pipe_enabled(struct drm_device *dev, int pipe)
723{
Jani Nikula2d1013d2014-03-31 14:27:17 +0300724 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoni702e7a52012-10-23 18:29:59 -0200725
Daniel Vettera01025a2013-05-22 00:50:23 +0200726 if (drm_core_check_feature(dev, DRIVER_MODESET)) {
727 /* Locking is horribly broken here, but whatever. */
728 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
729 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Paulo Zanoni71f8ba62013-05-03 12:15:39 -0300730
Daniel Vettera01025a2013-05-22 00:50:23 +0200731 return intel_crtc->active;
732 } else {
733 return I915_READ(PIPECONF(pipe)) & PIPECONF_ENABLE;
734 }
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700735}
736
Ville Syrjäläf75f3742014-05-15 20:20:36 +0300737/*
738 * This timing diagram depicts the video signal in and
739 * around the vertical blanking period.
740 *
741 * Assumptions about the fictitious mode used in this example:
742 * vblank_start >= 3
743 * vsync_start = vblank_start + 1
744 * vsync_end = vblank_start + 2
745 * vtotal = vblank_start + 3
746 *
747 * start of vblank:
748 * latch double buffered registers
749 * increment frame counter (ctg+)
750 * generate start of vblank interrupt (gen4+)
751 * |
752 * | frame start:
753 * | generate frame start interrupt (aka. vblank interrupt) (gmch)
754 * | may be shifted forward 1-3 extra lines via PIPECONF
755 * | |
756 * | | start of vsync:
757 * | | generate vsync interrupt
758 * | | |
759 * ___xxxx___ ___xxxx___ ___xxxx___ ___xxxx___ ___xxxx___ ___xxxx
760 * . \hs/ . \hs/ \hs/ \hs/ . \hs/
761 * ----va---> <-----------------vb--------------------> <--------va-------------
762 * | | <----vs-----> |
763 * -vbs-----> <---vbs+1---> <---vbs+2---> <-----0-----> <-----1-----> <-----2--- (scanline counter gen2)
764 * -vbs-2---> <---vbs-1---> <---vbs-----> <---vbs+1---> <---vbs+2---> <-----0--- (scanline counter gen3+)
765 * -vbs-2---> <---vbs-2---> <---vbs-1---> <---vbs-----> <---vbs+1---> <---vbs+2- (scanline counter hsw+ hdmi)
766 * | | |
767 * last visible pixel first visible pixel
768 * | increment frame counter (gen3/4)
769 * pixel counter = vblank_start * htotal pixel counter = 0 (gen3/4)
770 *
771 * x = horizontal active
772 * _ = horizontal blanking
773 * hs = horizontal sync
774 * va = vertical active
775 * vb = vertical blanking
776 * vs = vertical sync
777 * vbs = vblank_start (number)
778 *
779 * Summary:
780 * - most events happen at the start of horizontal sync
781 * - frame start happens at the start of horizontal blank, 1-4 lines
782 * (depending on PIPECONF settings) after the start of vblank
783 * - gen3/4 pixel and frame counter are synchronized with the start
784 * of horizontal active on the first line of vertical active
785 */
786
Ville Syrjälä4cdb83e2013-10-11 21:52:44 +0300787static u32 i8xx_get_vblank_counter(struct drm_device *dev, int pipe)
788{
789 /* Gen2 doesn't have a hardware frame counter */
790 return 0;
791}
792
Keith Packard42f52ef2008-10-18 19:39:29 -0700793/* Called from drm generic code, passed a 'crtc', which
794 * we use as a pipe index
795 */
Jesse Barnesf71d4af2011-06-28 13:00:41 -0700796static u32 i915_get_vblank_counter(struct drm_device *dev, int pipe)
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700797{
Jani Nikula2d1013d2014-03-31 14:27:17 +0300798 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700799 unsigned long high_frame;
800 unsigned long low_frame;
Ville Syrjälä0b2a8e02014-04-29 13:35:50 +0300801 u32 high1, high2, low, pixel, vbl_start, hsync_start, htotal;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700802
803 if (!i915_pipe_enabled(dev, pipe)) {
Zhao Yakui44d98a62009-10-09 11:39:40 +0800804 DRM_DEBUG_DRIVER("trying to get vblank count for disabled "
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800805 "pipe %c\n", pipe_name(pipe));
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700806 return 0;
807 }
808
Ville Syrjälä391f75e2013-09-25 19:55:26 +0300809 if (drm_core_check_feature(dev, DRIVER_MODESET)) {
810 struct intel_crtc *intel_crtc =
811 to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]);
812 const struct drm_display_mode *mode =
813 &intel_crtc->config.adjusted_mode;
814
Ville Syrjälä0b2a8e02014-04-29 13:35:50 +0300815 htotal = mode->crtc_htotal;
816 hsync_start = mode->crtc_hsync_start;
817 vbl_start = mode->crtc_vblank_start;
818 if (mode->flags & DRM_MODE_FLAG_INTERLACE)
819 vbl_start = DIV_ROUND_UP(vbl_start, 2);
Ville Syrjälä391f75e2013-09-25 19:55:26 +0300820 } else {
Daniel Vettera2d213d2014-02-07 16:34:05 +0100821 enum transcoder cpu_transcoder = (enum transcoder) pipe;
Ville Syrjälä391f75e2013-09-25 19:55:26 +0300822
823 htotal = ((I915_READ(HTOTAL(cpu_transcoder)) >> 16) & 0x1fff) + 1;
Ville Syrjälä0b2a8e02014-04-29 13:35:50 +0300824 hsync_start = (I915_READ(HSYNC(cpu_transcoder)) & 0x1fff) + 1;
Ville Syrjälä391f75e2013-09-25 19:55:26 +0300825 vbl_start = (I915_READ(VBLANK(cpu_transcoder)) & 0x1fff) + 1;
Ville Syrjälä0b2a8e02014-04-29 13:35:50 +0300826 if ((I915_READ(PIPECONF(cpu_transcoder)) &
827 PIPECONF_INTERLACE_MASK) != PIPECONF_PROGRESSIVE)
828 vbl_start = DIV_ROUND_UP(vbl_start, 2);
Ville Syrjälä391f75e2013-09-25 19:55:26 +0300829 }
830
Ville Syrjälä0b2a8e02014-04-29 13:35:50 +0300831 /* Convert to pixel count */
832 vbl_start *= htotal;
833
834 /* Start of vblank event occurs at start of hsync */
835 vbl_start -= htotal - hsync_start;
836
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800837 high_frame = PIPEFRAME(pipe);
838 low_frame = PIPEFRAMEPIXEL(pipe);
Chris Wilson5eddb702010-09-11 13:48:45 +0100839
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700840 /*
841 * High & low register fields aren't synchronized, so make sure
842 * we get a low value that's stable across two reads of the high
843 * register.
844 */
845 do {
Chris Wilson5eddb702010-09-11 13:48:45 +0100846 high1 = I915_READ(high_frame) & PIPE_FRAME_HIGH_MASK;
Ville Syrjälä391f75e2013-09-25 19:55:26 +0300847 low = I915_READ(low_frame);
Chris Wilson5eddb702010-09-11 13:48:45 +0100848 high2 = I915_READ(high_frame) & PIPE_FRAME_HIGH_MASK;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700849 } while (high1 != high2);
850
Chris Wilson5eddb702010-09-11 13:48:45 +0100851 high1 >>= PIPE_FRAME_HIGH_SHIFT;
Ville Syrjälä391f75e2013-09-25 19:55:26 +0300852 pixel = low & PIPE_PIXEL_MASK;
Chris Wilson5eddb702010-09-11 13:48:45 +0100853 low >>= PIPE_FRAME_LOW_SHIFT;
Ville Syrjälä391f75e2013-09-25 19:55:26 +0300854
855 /*
856 * The frame counter increments at beginning of active.
857 * Cook up a vblank counter by also checking the pixel
858 * counter against vblank start.
859 */
Ville Syrjäläedc08d02013-11-06 13:56:27 -0200860 return (((high1 << 8) | low) + (pixel >= vbl_start)) & 0xffffff;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700861}
862
Jesse Barnesf71d4af2011-06-28 13:00:41 -0700863static u32 gm45_get_vblank_counter(struct drm_device *dev, int pipe)
Jesse Barnes9880b7a2009-02-06 10:22:41 -0800864{
Jani Nikula2d1013d2014-03-31 14:27:17 +0300865 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800866 int reg = PIPE_FRMCOUNT_GM45(pipe);
Jesse Barnes9880b7a2009-02-06 10:22:41 -0800867
868 if (!i915_pipe_enabled(dev, pipe)) {
Zhao Yakui44d98a62009-10-09 11:39:40 +0800869 DRM_DEBUG_DRIVER("trying to get vblank count for disabled "
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800870 "pipe %c\n", pipe_name(pipe));
Jesse Barnes9880b7a2009-02-06 10:22:41 -0800871 return 0;
872 }
873
874 return I915_READ(reg);
875}
876
Mario Kleinerad3543e2013-10-30 05:13:08 +0100877/* raw reads, only for fast reads of display block, no need for forcewake etc. */
878#define __raw_i915_read32(dev_priv__, reg__) readl((dev_priv__)->regs + (reg__))
Mario Kleinerad3543e2013-10-30 05:13:08 +0100879
Ville Syrjäläa225f072014-04-29 13:35:45 +0300880static int __intel_get_crtc_scanline(struct intel_crtc *crtc)
881{
882 struct drm_device *dev = crtc->base.dev;
883 struct drm_i915_private *dev_priv = dev->dev_private;
884 const struct drm_display_mode *mode = &crtc->config.adjusted_mode;
885 enum pipe pipe = crtc->pipe;
Ville Syrjälä80715b22014-05-15 20:23:23 +0300886 int position, vtotal;
Ville Syrjäläa225f072014-04-29 13:35:45 +0300887
Ville Syrjälä80715b22014-05-15 20:23:23 +0300888 vtotal = mode->crtc_vtotal;
Ville Syrjäläa225f072014-04-29 13:35:45 +0300889 if (mode->flags & DRM_MODE_FLAG_INTERLACE)
890 vtotal /= 2;
891
892 if (IS_GEN2(dev))
893 position = __raw_i915_read32(dev_priv, PIPEDSL(pipe)) & DSL_LINEMASK_GEN2;
894 else
895 position = __raw_i915_read32(dev_priv, PIPEDSL(pipe)) & DSL_LINEMASK_GEN3;
896
897 /*
Ville Syrjälä80715b22014-05-15 20:23:23 +0300898 * See update_scanline_offset() for the details on the
899 * scanline_offset adjustment.
Ville Syrjäläa225f072014-04-29 13:35:45 +0300900 */
Ville Syrjälä80715b22014-05-15 20:23:23 +0300901 return (position + crtc->scanline_offset) % vtotal;
Ville Syrjäläa225f072014-04-29 13:35:45 +0300902}
903
Jesse Barnesf71d4af2011-06-28 13:00:41 -0700904static int i915_get_crtc_scanoutpos(struct drm_device *dev, int pipe,
Ville Syrjäläabca9e42013-10-28 20:50:48 +0200905 unsigned int flags, int *vpos, int *hpos,
906 ktime_t *stime, ktime_t *etime)
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100907{
Ville Syrjäläc2baf4b2013-09-23 14:48:50 +0300908 struct drm_i915_private *dev_priv = dev->dev_private;
909 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
910 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
911 const struct drm_display_mode *mode = &intel_crtc->config.adjusted_mode;
Ville Syrjälä3aa18df2013-10-11 19:10:32 +0300912 int position;
Ville Syrjälä78e8fc62014-04-29 13:35:44 +0300913 int vbl_start, vbl_end, hsync_start, htotal, vtotal;
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100914 bool in_vbl = true;
915 int ret = 0;
Mario Kleinerad3543e2013-10-30 05:13:08 +0100916 unsigned long irqflags;
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100917
Ville Syrjäläc2baf4b2013-09-23 14:48:50 +0300918 if (!intel_crtc->active) {
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100919 DRM_DEBUG_DRIVER("trying to get scanoutpos for disabled "
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800920 "pipe %c\n", pipe_name(pipe));
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100921 return 0;
922 }
923
Ville Syrjäläc2baf4b2013-09-23 14:48:50 +0300924 htotal = mode->crtc_htotal;
Ville Syrjälä78e8fc62014-04-29 13:35:44 +0300925 hsync_start = mode->crtc_hsync_start;
Ville Syrjäläc2baf4b2013-09-23 14:48:50 +0300926 vtotal = mode->crtc_vtotal;
927 vbl_start = mode->crtc_vblank_start;
928 vbl_end = mode->crtc_vblank_end;
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100929
Ville Syrjäläd31faf62013-10-28 16:31:41 +0200930 if (mode->flags & DRM_MODE_FLAG_INTERLACE) {
931 vbl_start = DIV_ROUND_UP(vbl_start, 2);
932 vbl_end /= 2;
933 vtotal /= 2;
934 }
935
Ville Syrjäläc2baf4b2013-09-23 14:48:50 +0300936 ret |= DRM_SCANOUTPOS_VALID | DRM_SCANOUTPOS_ACCURATE;
937
Mario Kleinerad3543e2013-10-30 05:13:08 +0100938 /*
939 * Lock uncore.lock, as we will do multiple timing critical raw
940 * register reads, potentially with preemption disabled, so the
941 * following code must not block on uncore.lock.
942 */
943 spin_lock_irqsave(&dev_priv->uncore.lock, irqflags);
Ville Syrjälä78e8fc62014-04-29 13:35:44 +0300944
Mario Kleinerad3543e2013-10-30 05:13:08 +0100945 /* preempt_disable_rt() should go right here in PREEMPT_RT patchset. */
946
947 /* Get optional system timestamp before query. */
948 if (stime)
949 *stime = ktime_get();
950
Ville Syrjälä7c06b082013-10-11 21:52:43 +0300951 if (IS_GEN2(dev) || IS_G4X(dev) || INTEL_INFO(dev)->gen >= 5) {
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100952 /* No obvious pixelcount register. Only query vertical
953 * scanout position from Display scan line register.
954 */
Ville Syrjäläa225f072014-04-29 13:35:45 +0300955 position = __intel_get_crtc_scanline(intel_crtc);
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100956 } else {
957 /* Have access to pixelcount since start of frame.
958 * We can split this into vertical and horizontal
959 * scanout position.
960 */
Mario Kleinerad3543e2013-10-30 05:13:08 +0100961 position = (__raw_i915_read32(dev_priv, PIPEFRAMEPIXEL(pipe)) & PIPE_PIXEL_MASK) >> PIPE_PIXEL_SHIFT;
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100962
Ville Syrjälä3aa18df2013-10-11 19:10:32 +0300963 /* convert to pixel counts */
964 vbl_start *= htotal;
965 vbl_end *= htotal;
966 vtotal *= htotal;
Ville Syrjälä78e8fc62014-04-29 13:35:44 +0300967
968 /*
Ville Syrjälä7e78f1cb2014-04-29 13:35:49 +0300969 * In interlaced modes, the pixel counter counts all pixels,
970 * so one field will have htotal more pixels. In order to avoid
971 * the reported position from jumping backwards when the pixel
972 * counter is beyond the length of the shorter field, just
973 * clamp the position the length of the shorter field. This
974 * matches how the scanline counter based position works since
975 * the scanline counter doesn't count the two half lines.
976 */
977 if (position >= vtotal)
978 position = vtotal - 1;
979
980 /*
Ville Syrjälä78e8fc62014-04-29 13:35:44 +0300981 * Start of vblank interrupt is triggered at start of hsync,
982 * just prior to the first active line of vblank. However we
983 * consider lines to start at the leading edge of horizontal
984 * active. So, should we get here before we've crossed into
985 * the horizontal active of the first line in vblank, we would
986 * not set the DRM_SCANOUTPOS_INVBL flag. In order to fix that,
987 * always add htotal-hsync_start to the current pixel position.
988 */
989 position = (position + htotal - hsync_start) % vtotal;
Ville Syrjälä3aa18df2013-10-11 19:10:32 +0300990 }
991
Mario Kleinerad3543e2013-10-30 05:13:08 +0100992 /* Get optional system timestamp after query. */
993 if (etime)
994 *etime = ktime_get();
995
996 /* preempt_enable_rt() should go right here in PREEMPT_RT patchset. */
997
998 spin_unlock_irqrestore(&dev_priv->uncore.lock, irqflags);
999
Ville Syrjälä3aa18df2013-10-11 19:10:32 +03001000 in_vbl = position >= vbl_start && position < vbl_end;
1001
1002 /*
1003 * While in vblank, position will be negative
1004 * counting up towards 0 at vbl_end. And outside
1005 * vblank, position will be positive counting
1006 * up since vbl_end.
1007 */
1008 if (position >= vbl_start)
1009 position -= vbl_end;
1010 else
1011 position += vtotal - vbl_end;
1012
Ville Syrjälä7c06b082013-10-11 21:52:43 +03001013 if (IS_GEN2(dev) || IS_G4X(dev) || INTEL_INFO(dev)->gen >= 5) {
Ville Syrjälä3aa18df2013-10-11 19:10:32 +03001014 *vpos = position;
1015 *hpos = 0;
1016 } else {
Mario Kleiner0af7e4d2010-12-08 04:07:19 +01001017 *vpos = position / htotal;
1018 *hpos = position - (*vpos * htotal);
1019 }
1020
Mario Kleiner0af7e4d2010-12-08 04:07:19 +01001021 /* In vblank? */
1022 if (in_vbl)
Daniel Vetter3d3cbd82014-09-10 17:36:11 +02001023 ret |= DRM_SCANOUTPOS_IN_VBLANK;
Mario Kleiner0af7e4d2010-12-08 04:07:19 +01001024
1025 return ret;
1026}
1027
Ville Syrjäläa225f072014-04-29 13:35:45 +03001028int intel_get_crtc_scanline(struct intel_crtc *crtc)
1029{
1030 struct drm_i915_private *dev_priv = crtc->base.dev->dev_private;
1031 unsigned long irqflags;
1032 int position;
1033
1034 spin_lock_irqsave(&dev_priv->uncore.lock, irqflags);
1035 position = __intel_get_crtc_scanline(crtc);
1036 spin_unlock_irqrestore(&dev_priv->uncore.lock, irqflags);
1037
1038 return position;
1039}
1040
Jesse Barnesf71d4af2011-06-28 13:00:41 -07001041static int i915_get_vblank_timestamp(struct drm_device *dev, int pipe,
Mario Kleiner0af7e4d2010-12-08 04:07:19 +01001042 int *max_error,
1043 struct timeval *vblank_time,
1044 unsigned flags)
1045{
Chris Wilson4041b852011-01-22 10:07:56 +00001046 struct drm_crtc *crtc;
Mario Kleiner0af7e4d2010-12-08 04:07:19 +01001047
Ben Widawsky7eb552a2013-03-13 14:05:41 -07001048 if (pipe < 0 || pipe >= INTEL_INFO(dev)->num_pipes) {
Chris Wilson4041b852011-01-22 10:07:56 +00001049 DRM_ERROR("Invalid crtc %d\n", pipe);
Mario Kleiner0af7e4d2010-12-08 04:07:19 +01001050 return -EINVAL;
1051 }
1052
1053 /* Get drm_crtc to timestamp: */
Chris Wilson4041b852011-01-22 10:07:56 +00001054 crtc = intel_get_crtc_for_pipe(dev, pipe);
1055 if (crtc == NULL) {
1056 DRM_ERROR("Invalid crtc %d\n", pipe);
1057 return -EINVAL;
1058 }
1059
1060 if (!crtc->enabled) {
1061 DRM_DEBUG_KMS("crtc %d is disabled\n", pipe);
1062 return -EBUSY;
1063 }
Mario Kleiner0af7e4d2010-12-08 04:07:19 +01001064
1065 /* Helper routine in DRM core does all the work: */
Chris Wilson4041b852011-01-22 10:07:56 +00001066 return drm_calc_vbltimestamp_from_scanoutpos(dev, pipe, max_error,
1067 vblank_time, flags,
Ville Syrjälä7da903e2013-10-26 17:57:31 +03001068 crtc,
1069 &to_intel_crtc(crtc)->config.adjusted_mode);
Mario Kleiner0af7e4d2010-12-08 04:07:19 +01001070}
1071
Jani Nikula67c347f2013-09-17 14:26:34 +03001072static bool intel_hpd_irq_event(struct drm_device *dev,
1073 struct drm_connector *connector)
Egbert Eich321a1b32013-04-11 16:00:26 +02001074{
1075 enum drm_connector_status old_status;
1076
1077 WARN_ON(!mutex_is_locked(&dev->mode_config.mutex));
1078 old_status = connector->status;
1079
1080 connector->status = connector->funcs->detect(connector, false);
Jani Nikula67c347f2013-09-17 14:26:34 +03001081 if (old_status == connector->status)
1082 return false;
1083
1084 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] status updated from %s to %s\n",
Egbert Eich321a1b32013-04-11 16:00:26 +02001085 connector->base.id,
Jani Nikulac23cc412014-06-03 14:56:17 +03001086 connector->name,
Jani Nikula67c347f2013-09-17 14:26:34 +03001087 drm_get_connector_status_name(old_status),
1088 drm_get_connector_status_name(connector->status));
1089
1090 return true;
Egbert Eich321a1b32013-04-11 16:00:26 +02001091}
1092
Dave Airlie13cf5502014-06-18 11:29:35 +10001093static void i915_digport_work_func(struct work_struct *work)
1094{
1095 struct drm_i915_private *dev_priv =
1096 container_of(work, struct drm_i915_private, dig_port_work);
1097 unsigned long irqflags;
1098 u32 long_port_mask, short_port_mask;
1099 struct intel_digital_port *intel_dig_port;
1100 int i, ret;
1101 u32 old_bits = 0;
1102
1103 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
1104 long_port_mask = dev_priv->long_hpd_port_mask;
1105 dev_priv->long_hpd_port_mask = 0;
1106 short_port_mask = dev_priv->short_hpd_port_mask;
1107 dev_priv->short_hpd_port_mask = 0;
1108 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
1109
1110 for (i = 0; i < I915_MAX_PORTS; i++) {
1111 bool valid = false;
1112 bool long_hpd = false;
1113 intel_dig_port = dev_priv->hpd_irq_port[i];
1114 if (!intel_dig_port || !intel_dig_port->hpd_pulse)
1115 continue;
1116
1117 if (long_port_mask & (1 << i)) {
1118 valid = true;
1119 long_hpd = true;
1120 } else if (short_port_mask & (1 << i))
1121 valid = true;
1122
1123 if (valid) {
1124 ret = intel_dig_port->hpd_pulse(intel_dig_port, long_hpd);
1125 if (ret == true) {
1126 /* if we get true fallback to old school hpd */
1127 old_bits |= (1 << intel_dig_port->base.hpd_pin);
1128 }
1129 }
1130 }
1131
1132 if (old_bits) {
1133 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
1134 dev_priv->hpd_event_bits |= old_bits;
1135 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
1136 schedule_work(&dev_priv->hotplug_work);
1137 }
1138}
1139
Jesse Barnes5ca58282009-03-31 14:11:15 -07001140/*
1141 * Handle hotplug events outside the interrupt handler proper.
1142 */
Egbert Eichac4c16c2013-04-16 13:36:58 +02001143#define I915_REENABLE_HOTPLUG_DELAY (2*60*1000)
1144
Jesse Barnes5ca58282009-03-31 14:11:15 -07001145static void i915_hotplug_work_func(struct work_struct *work)
1146{
Jani Nikula2d1013d2014-03-31 14:27:17 +03001147 struct drm_i915_private *dev_priv =
1148 container_of(work, struct drm_i915_private, hotplug_work);
Jesse Barnes5ca58282009-03-31 14:11:15 -07001149 struct drm_device *dev = dev_priv->dev;
Keith Packardc31c4ba2009-05-06 11:48:58 -07001150 struct drm_mode_config *mode_config = &dev->mode_config;
Egbert Eichcd569ae2013-04-16 13:36:57 +02001151 struct intel_connector *intel_connector;
1152 struct intel_encoder *intel_encoder;
1153 struct drm_connector *connector;
1154 unsigned long irqflags;
1155 bool hpd_disabled = false;
Egbert Eich321a1b32013-04-11 16:00:26 +02001156 bool changed = false;
Egbert Eich142e2392013-04-11 15:57:57 +02001157 u32 hpd_event_bits;
Jesse Barnes5ca58282009-03-31 14:11:15 -07001158
Keith Packarda65e34c2011-07-25 10:04:56 -07001159 mutex_lock(&mode_config->mutex);
Jesse Barnese67189ab2011-02-11 14:44:51 -08001160 DRM_DEBUG_KMS("running encoder hotplug functions\n");
1161
Egbert Eichcd569ae2013-04-16 13:36:57 +02001162 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Egbert Eich142e2392013-04-11 15:57:57 +02001163
1164 hpd_event_bits = dev_priv->hpd_event_bits;
1165 dev_priv->hpd_event_bits = 0;
Egbert Eichcd569ae2013-04-16 13:36:57 +02001166 list_for_each_entry(connector, &mode_config->connector_list, head) {
1167 intel_connector = to_intel_connector(connector);
Dave Airlie36cd7442014-05-02 13:44:18 +10001168 if (!intel_connector->encoder)
1169 continue;
Egbert Eichcd569ae2013-04-16 13:36:57 +02001170 intel_encoder = intel_connector->encoder;
1171 if (intel_encoder->hpd_pin > HPD_NONE &&
1172 dev_priv->hpd_stats[intel_encoder->hpd_pin].hpd_mark == HPD_MARK_DISABLED &&
1173 connector->polled == DRM_CONNECTOR_POLL_HPD) {
1174 DRM_INFO("HPD interrupt storm detected on connector %s: "
1175 "switching from hotplug detection to polling\n",
Jani Nikulac23cc412014-06-03 14:56:17 +03001176 connector->name);
Egbert Eichcd569ae2013-04-16 13:36:57 +02001177 dev_priv->hpd_stats[intel_encoder->hpd_pin].hpd_mark = HPD_DISABLED;
1178 connector->polled = DRM_CONNECTOR_POLL_CONNECT
1179 | DRM_CONNECTOR_POLL_DISCONNECT;
1180 hpd_disabled = true;
1181 }
Egbert Eich142e2392013-04-11 15:57:57 +02001182 if (hpd_event_bits & (1 << intel_encoder->hpd_pin)) {
1183 DRM_DEBUG_KMS("Connector %s (pin %i) received hotplug event.\n",
Jani Nikulac23cc412014-06-03 14:56:17 +03001184 connector->name, intel_encoder->hpd_pin);
Egbert Eich142e2392013-04-11 15:57:57 +02001185 }
Egbert Eichcd569ae2013-04-16 13:36:57 +02001186 }
1187 /* if there were no outputs to poll, poll was disabled,
1188 * therefore make sure it's enabled when disabling HPD on
1189 * some connectors */
Egbert Eichac4c16c2013-04-16 13:36:58 +02001190 if (hpd_disabled) {
Egbert Eichcd569ae2013-04-16 13:36:57 +02001191 drm_kms_helper_poll_enable(dev);
Imre Deak63237512014-08-18 15:37:02 +03001192 mod_delayed_work(system_wq, &dev_priv->hotplug_reenable_work,
1193 msecs_to_jiffies(I915_REENABLE_HOTPLUG_DELAY));
Egbert Eichac4c16c2013-04-16 13:36:58 +02001194 }
Egbert Eichcd569ae2013-04-16 13:36:57 +02001195
1196 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
1197
Egbert Eich321a1b32013-04-11 16:00:26 +02001198 list_for_each_entry(connector, &mode_config->connector_list, head) {
1199 intel_connector = to_intel_connector(connector);
Dave Airlie36cd7442014-05-02 13:44:18 +10001200 if (!intel_connector->encoder)
1201 continue;
Egbert Eich321a1b32013-04-11 16:00:26 +02001202 intel_encoder = intel_connector->encoder;
1203 if (hpd_event_bits & (1 << intel_encoder->hpd_pin)) {
1204 if (intel_encoder->hot_plug)
1205 intel_encoder->hot_plug(intel_encoder);
1206 if (intel_hpd_irq_event(dev, connector))
1207 changed = true;
1208 }
1209 }
Keith Packard40ee3382011-07-28 15:31:19 -07001210 mutex_unlock(&mode_config->mutex);
1211
Egbert Eich321a1b32013-04-11 16:00:26 +02001212 if (changed)
1213 drm_kms_helper_hotplug_event(dev);
Jesse Barnes5ca58282009-03-31 14:11:15 -07001214}
1215
Daniel Vetterd0ecd7e2013-07-04 23:35:25 +02001216static void ironlake_rps_change_irq_handler(struct drm_device *dev)
Jesse Barnesf97108d2010-01-29 11:27:07 -08001217{
Jani Nikula2d1013d2014-03-31 14:27:17 +03001218 struct drm_i915_private *dev_priv = dev->dev_private;
Matthew Garrettb5b72e82010-02-02 18:30:47 +00001219 u32 busy_up, busy_down, max_avg, min_avg;
Daniel Vetter92703882012-08-09 16:46:01 +02001220 u8 new_delay;
Daniel Vetter92703882012-08-09 16:46:01 +02001221
Daniel Vetterd0ecd7e2013-07-04 23:35:25 +02001222 spin_lock(&mchdev_lock);
Jesse Barnesf97108d2010-01-29 11:27:07 -08001223
Daniel Vetter73edd18f2012-08-08 23:35:37 +02001224 I915_WRITE16(MEMINTRSTS, I915_READ(MEMINTRSTS));
1225
Daniel Vetter20e4d402012-08-08 23:35:39 +02001226 new_delay = dev_priv->ips.cur_delay;
Daniel Vetter92703882012-08-09 16:46:01 +02001227
Jesse Barnes7648fa92010-05-20 14:28:11 -07001228 I915_WRITE16(MEMINTRSTS, MEMINT_EVAL_CHG);
Matthew Garrettb5b72e82010-02-02 18:30:47 +00001229 busy_up = I915_READ(RCPREVBSYTUPAVG);
1230 busy_down = I915_READ(RCPREVBSYTDNAVG);
Jesse Barnesf97108d2010-01-29 11:27:07 -08001231 max_avg = I915_READ(RCBMAXAVG);
1232 min_avg = I915_READ(RCBMINAVG);
1233
1234 /* Handle RCS change request from hw */
Matthew Garrettb5b72e82010-02-02 18:30:47 +00001235 if (busy_up > max_avg) {
Daniel Vetter20e4d402012-08-08 23:35:39 +02001236 if (dev_priv->ips.cur_delay != dev_priv->ips.max_delay)
1237 new_delay = dev_priv->ips.cur_delay - 1;
1238 if (new_delay < dev_priv->ips.max_delay)
1239 new_delay = dev_priv->ips.max_delay;
Matthew Garrettb5b72e82010-02-02 18:30:47 +00001240 } else if (busy_down < min_avg) {
Daniel Vetter20e4d402012-08-08 23:35:39 +02001241 if (dev_priv->ips.cur_delay != dev_priv->ips.min_delay)
1242 new_delay = dev_priv->ips.cur_delay + 1;
1243 if (new_delay > dev_priv->ips.min_delay)
1244 new_delay = dev_priv->ips.min_delay;
Jesse Barnesf97108d2010-01-29 11:27:07 -08001245 }
1246
Jesse Barnes7648fa92010-05-20 14:28:11 -07001247 if (ironlake_set_drps(dev, new_delay))
Daniel Vetter20e4d402012-08-08 23:35:39 +02001248 dev_priv->ips.cur_delay = new_delay;
Jesse Barnesf97108d2010-01-29 11:27:07 -08001249
Daniel Vetterd0ecd7e2013-07-04 23:35:25 +02001250 spin_unlock(&mchdev_lock);
Daniel Vetter92703882012-08-09 16:46:01 +02001251
Jesse Barnesf97108d2010-01-29 11:27:07 -08001252 return;
1253}
1254
Chris Wilson549f7362010-10-19 11:19:32 +01001255static void notify_ring(struct drm_device *dev,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01001256 struct intel_engine_cs *ring)
Chris Wilson549f7362010-10-19 11:19:32 +01001257{
Oscar Mateo93b0a4e2014-05-22 14:13:36 +01001258 if (!intel_ring_initialized(ring))
Chris Wilson475553d2011-01-20 09:52:56 +00001259 return;
1260
Chris Wilson814e9b52013-09-23 17:33:19 -03001261 trace_i915_gem_request_complete(ring);
Chris Wilson9862e602011-01-04 22:22:17 +00001262
Sourab Gupta84c33a62014-06-02 16:47:17 +05301263 if (drm_core_check_feature(dev, DRIVER_MODESET))
1264 intel_notify_mmio_flip(ring);
1265
Chris Wilson549f7362010-10-19 11:19:32 +01001266 wake_up_all(&ring->irq_queue);
Mika Kuoppala10cd45b2013-07-03 17:22:08 +03001267 i915_queue_hangcheck(dev);
Chris Wilson549f7362010-10-19 11:19:32 +01001268}
1269
Deepak S31685c22014-07-03 17:33:01 -04001270static u32 vlv_c0_residency(struct drm_i915_private *dev_priv,
Chris Wilsonbf225f22014-07-10 20:31:18 +01001271 struct intel_rps_ei *rps_ei)
Deepak S31685c22014-07-03 17:33:01 -04001272{
1273 u32 cz_ts, cz_freq_khz;
1274 u32 render_count, media_count;
1275 u32 elapsed_render, elapsed_media, elapsed_time;
1276 u32 residency = 0;
1277
1278 cz_ts = vlv_punit_read(dev_priv, PUNIT_REG_CZ_TIMESTAMP);
1279 cz_freq_khz = DIV_ROUND_CLOSEST(dev_priv->mem_freq * 1000, 4);
1280
1281 render_count = I915_READ(VLV_RENDER_C0_COUNT_REG);
1282 media_count = I915_READ(VLV_MEDIA_C0_COUNT_REG);
1283
Chris Wilsonbf225f22014-07-10 20:31:18 +01001284 if (rps_ei->cz_clock == 0) {
1285 rps_ei->cz_clock = cz_ts;
1286 rps_ei->render_c0 = render_count;
1287 rps_ei->media_c0 = media_count;
Deepak S31685c22014-07-03 17:33:01 -04001288
1289 return dev_priv->rps.cur_freq;
1290 }
1291
Chris Wilsonbf225f22014-07-10 20:31:18 +01001292 elapsed_time = cz_ts - rps_ei->cz_clock;
1293 rps_ei->cz_clock = cz_ts;
Deepak S31685c22014-07-03 17:33:01 -04001294
Chris Wilsonbf225f22014-07-10 20:31:18 +01001295 elapsed_render = render_count - rps_ei->render_c0;
1296 rps_ei->render_c0 = render_count;
Deepak S31685c22014-07-03 17:33:01 -04001297
Chris Wilsonbf225f22014-07-10 20:31:18 +01001298 elapsed_media = media_count - rps_ei->media_c0;
1299 rps_ei->media_c0 = media_count;
Deepak S31685c22014-07-03 17:33:01 -04001300
1301 /* Convert all the counters into common unit of milli sec */
1302 elapsed_time /= VLV_CZ_CLOCK_TO_MILLI_SEC;
1303 elapsed_render /= cz_freq_khz;
1304 elapsed_media /= cz_freq_khz;
1305
1306 /*
1307 * Calculate overall C0 residency percentage
1308 * only if elapsed time is non zero
1309 */
1310 if (elapsed_time) {
1311 residency =
1312 ((max(elapsed_render, elapsed_media) * 100)
1313 / elapsed_time);
1314 }
1315
1316 return residency;
1317}
1318
1319/**
1320 * vlv_calc_delay_from_C0_counters - Increase/Decrease freq based on GPU
1321 * busy-ness calculated from C0 counters of render & media power wells
1322 * @dev_priv: DRM device private
1323 *
1324 */
Damien Lespiau4fa79042014-08-08 19:25:57 +01001325static int vlv_calc_delay_from_C0_counters(struct drm_i915_private *dev_priv)
Deepak S31685c22014-07-03 17:33:01 -04001326{
1327 u32 residency_C0_up = 0, residency_C0_down = 0;
Damien Lespiau4fa79042014-08-08 19:25:57 +01001328 int new_delay, adj;
Deepak S31685c22014-07-03 17:33:01 -04001329
1330 dev_priv->rps.ei_interrupt_count++;
1331
1332 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
1333
1334
Chris Wilsonbf225f22014-07-10 20:31:18 +01001335 if (dev_priv->rps.up_ei.cz_clock == 0) {
1336 vlv_c0_residency(dev_priv, &dev_priv->rps.up_ei);
1337 vlv_c0_residency(dev_priv, &dev_priv->rps.down_ei);
Deepak S31685c22014-07-03 17:33:01 -04001338 return dev_priv->rps.cur_freq;
1339 }
1340
1341
1342 /*
1343 * To down throttle, C0 residency should be less than down threshold
1344 * for continous EI intervals. So calculate down EI counters
1345 * once in VLV_INT_COUNT_FOR_DOWN_EI
1346 */
1347 if (dev_priv->rps.ei_interrupt_count == VLV_INT_COUNT_FOR_DOWN_EI) {
1348
1349 dev_priv->rps.ei_interrupt_count = 0;
1350
1351 residency_C0_down = vlv_c0_residency(dev_priv,
Chris Wilsonbf225f22014-07-10 20:31:18 +01001352 &dev_priv->rps.down_ei);
Deepak S31685c22014-07-03 17:33:01 -04001353 } else {
1354 residency_C0_up = vlv_c0_residency(dev_priv,
Chris Wilsonbf225f22014-07-10 20:31:18 +01001355 &dev_priv->rps.up_ei);
Deepak S31685c22014-07-03 17:33:01 -04001356 }
1357
1358 new_delay = dev_priv->rps.cur_freq;
1359
1360 adj = dev_priv->rps.last_adj;
1361 /* C0 residency is greater than UP threshold. Increase Frequency */
1362 if (residency_C0_up >= VLV_RP_UP_EI_THRESHOLD) {
1363 if (adj > 0)
1364 adj *= 2;
1365 else
1366 adj = 1;
1367
1368 if (dev_priv->rps.cur_freq < dev_priv->rps.max_freq_softlimit)
1369 new_delay = dev_priv->rps.cur_freq + adj;
1370
1371 /*
1372 * For better performance, jump directly
1373 * to RPe if we're below it.
1374 */
1375 if (new_delay < dev_priv->rps.efficient_freq)
1376 new_delay = dev_priv->rps.efficient_freq;
1377
1378 } else if (!dev_priv->rps.ei_interrupt_count &&
1379 (residency_C0_down < VLV_RP_DOWN_EI_THRESHOLD)) {
1380 if (adj < 0)
1381 adj *= 2;
1382 else
1383 adj = -1;
1384 /*
1385 * This means, C0 residency is less than down threshold over
1386 * a period of VLV_INT_COUNT_FOR_DOWN_EI. So, reduce the freq
1387 */
1388 if (dev_priv->rps.cur_freq > dev_priv->rps.min_freq_softlimit)
1389 new_delay = dev_priv->rps.cur_freq + adj;
1390 }
1391
1392 return new_delay;
1393}
1394
Ben Widawsky4912d042011-04-25 11:25:20 -07001395static void gen6_pm_rps_work(struct work_struct *work)
Jesse Barnes3b8d8d92010-12-17 14:19:02 -08001396{
Jani Nikula2d1013d2014-03-31 14:27:17 +03001397 struct drm_i915_private *dev_priv =
1398 container_of(work, struct drm_i915_private, rps.work);
Paulo Zanoniedbfdb42013-08-06 18:57:13 -03001399 u32 pm_iir;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01001400 int new_delay, adj;
Jesse Barnes3b8d8d92010-12-17 14:19:02 -08001401
Daniel Vetter59cdb632013-07-04 23:35:28 +02001402 spin_lock_irq(&dev_priv->irq_lock);
Daniel Vetterc6a828d2012-08-08 23:35:35 +02001403 pm_iir = dev_priv->rps.pm_iir;
1404 dev_priv->rps.pm_iir = 0;
Damien Lespiau6af257c2014-07-15 09:17:41 +02001405 if (INTEL_INFO(dev_priv->dev)->gen >= 8)
Daniel Vetter480c8032014-07-16 09:49:40 +02001406 gen8_enable_pm_irq(dev_priv, dev_priv->pm_rps_events);
Ben Widawsky09610212014-05-15 20:58:08 +03001407 else {
1408 /* Make sure not to corrupt PMIMR state used by ringbuffer */
Daniel Vetter480c8032014-07-16 09:49:40 +02001409 gen6_enable_pm_irq(dev_priv, dev_priv->pm_rps_events);
Ben Widawsky09610212014-05-15 20:58:08 +03001410 }
Daniel Vetter59cdb632013-07-04 23:35:28 +02001411 spin_unlock_irq(&dev_priv->irq_lock);
Ben Widawsky4912d042011-04-25 11:25:20 -07001412
Paulo Zanoni60611c12013-08-15 11:50:01 -03001413 /* Make sure we didn't queue anything we're not going to process. */
Deepak Sa6706b42014-03-15 20:23:22 +05301414 WARN_ON(pm_iir & ~dev_priv->pm_rps_events);
Paulo Zanoni60611c12013-08-15 11:50:01 -03001415
Deepak Sa6706b42014-03-15 20:23:22 +05301416 if ((pm_iir & dev_priv->pm_rps_events) == 0)
Jesse Barnes3b8d8d92010-12-17 14:19:02 -08001417 return;
1418
Jesse Barnes4fc688c2012-11-02 11:14:01 -07001419 mutex_lock(&dev_priv->rps.hw_lock);
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01001420
Chris Wilsondd75fdc2013-09-25 17:34:57 +01001421 adj = dev_priv->rps.last_adj;
Ville Syrjälä74250342013-06-25 21:38:11 +03001422 if (pm_iir & GEN6_PM_RP_UP_THRESHOLD) {
Chris Wilsondd75fdc2013-09-25 17:34:57 +01001423 if (adj > 0)
1424 adj *= 2;
Deepak S13a56602014-05-23 21:00:21 +05301425 else {
1426 /* CHV needs even encode values */
1427 adj = IS_CHERRYVIEW(dev_priv->dev) ? 2 : 1;
1428 }
Ben Widawskyb39fb292014-03-19 18:31:11 -07001429 new_delay = dev_priv->rps.cur_freq + adj;
Ville Syrjälä74250342013-06-25 21:38:11 +03001430
1431 /*
1432 * For better performance, jump directly
1433 * to RPe if we're below it.
1434 */
Ben Widawskyb39fb292014-03-19 18:31:11 -07001435 if (new_delay < dev_priv->rps.efficient_freq)
1436 new_delay = dev_priv->rps.efficient_freq;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01001437 } else if (pm_iir & GEN6_PM_RP_DOWN_TIMEOUT) {
Ben Widawskyb39fb292014-03-19 18:31:11 -07001438 if (dev_priv->rps.cur_freq > dev_priv->rps.efficient_freq)
1439 new_delay = dev_priv->rps.efficient_freq;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01001440 else
Ben Widawskyb39fb292014-03-19 18:31:11 -07001441 new_delay = dev_priv->rps.min_freq_softlimit;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01001442 adj = 0;
Deepak S31685c22014-07-03 17:33:01 -04001443 } else if (pm_iir & GEN6_PM_RP_UP_EI_EXPIRED) {
1444 new_delay = vlv_calc_delay_from_C0_counters(dev_priv);
Chris Wilsondd75fdc2013-09-25 17:34:57 +01001445 } else if (pm_iir & GEN6_PM_RP_DOWN_THRESHOLD) {
1446 if (adj < 0)
1447 adj *= 2;
Deepak S13a56602014-05-23 21:00:21 +05301448 else {
1449 /* CHV needs even encode values */
1450 adj = IS_CHERRYVIEW(dev_priv->dev) ? -2 : -1;
1451 }
Ben Widawskyb39fb292014-03-19 18:31:11 -07001452 new_delay = dev_priv->rps.cur_freq + adj;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01001453 } else { /* unknown event */
Ben Widawskyb39fb292014-03-19 18:31:11 -07001454 new_delay = dev_priv->rps.cur_freq;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01001455 }
Jesse Barnes3b8d8d92010-12-17 14:19:02 -08001456
Ben Widawsky79249632012-09-07 19:43:42 -07001457 /* sysfs frequency interfaces may have snuck in while servicing the
1458 * interrupt
1459 */
Ville Syrjälä1272e7b2013-11-07 19:57:49 +02001460 new_delay = clamp_t(int, new_delay,
Ben Widawskyb39fb292014-03-19 18:31:11 -07001461 dev_priv->rps.min_freq_softlimit,
1462 dev_priv->rps.max_freq_softlimit);
Deepak S27544362014-01-27 21:35:05 +05301463
Ben Widawskyb39fb292014-03-19 18:31:11 -07001464 dev_priv->rps.last_adj = new_delay - dev_priv->rps.cur_freq;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01001465
1466 if (IS_VALLEYVIEW(dev_priv->dev))
1467 valleyview_set_rps(dev_priv->dev, new_delay);
1468 else
1469 gen6_set_rps(dev_priv->dev, new_delay);
Jesse Barnes3b8d8d92010-12-17 14:19:02 -08001470
Jesse Barnes4fc688c2012-11-02 11:14:01 -07001471 mutex_unlock(&dev_priv->rps.hw_lock);
Jesse Barnes3b8d8d92010-12-17 14:19:02 -08001472}
1473
Ben Widawskye3689192012-05-25 16:56:22 -07001474
1475/**
1476 * ivybridge_parity_work - Workqueue called when a parity error interrupt
1477 * occurred.
1478 * @work: workqueue struct
1479 *
1480 * Doesn't actually do anything except notify userspace. As a consequence of
1481 * this event, userspace should try to remap the bad rows since statistically
1482 * it is likely the same row is more likely to go bad again.
1483 */
1484static void ivybridge_parity_work(struct work_struct *work)
1485{
Jani Nikula2d1013d2014-03-31 14:27:17 +03001486 struct drm_i915_private *dev_priv =
1487 container_of(work, struct drm_i915_private, l3_parity.error_work);
Ben Widawskye3689192012-05-25 16:56:22 -07001488 u32 error_status, row, bank, subbank;
Ben Widawsky35a85ac2013-09-19 11:13:41 -07001489 char *parity_event[6];
Ben Widawskye3689192012-05-25 16:56:22 -07001490 uint32_t misccpctl;
1491 unsigned long flags;
Ben Widawsky35a85ac2013-09-19 11:13:41 -07001492 uint8_t slice = 0;
Ben Widawskye3689192012-05-25 16:56:22 -07001493
1494 /* We must turn off DOP level clock gating to access the L3 registers.
1495 * In order to prevent a get/put style interface, acquire struct mutex
1496 * any time we access those registers.
1497 */
1498 mutex_lock(&dev_priv->dev->struct_mutex);
1499
Ben Widawsky35a85ac2013-09-19 11:13:41 -07001500 /* If we've screwed up tracking, just let the interrupt fire again */
1501 if (WARN_ON(!dev_priv->l3_parity.which_slice))
1502 goto out;
1503
Ben Widawskye3689192012-05-25 16:56:22 -07001504 misccpctl = I915_READ(GEN7_MISCCPCTL);
1505 I915_WRITE(GEN7_MISCCPCTL, misccpctl & ~GEN7_DOP_CLOCK_GATE_ENABLE);
1506 POSTING_READ(GEN7_MISCCPCTL);
1507
Ben Widawsky35a85ac2013-09-19 11:13:41 -07001508 while ((slice = ffs(dev_priv->l3_parity.which_slice)) != 0) {
1509 u32 reg;
Ben Widawskye3689192012-05-25 16:56:22 -07001510
Ben Widawsky35a85ac2013-09-19 11:13:41 -07001511 slice--;
1512 if (WARN_ON_ONCE(slice >= NUM_L3_SLICES(dev_priv->dev)))
1513 break;
1514
1515 dev_priv->l3_parity.which_slice &= ~(1<<slice);
1516
1517 reg = GEN7_L3CDERRST1 + (slice * 0x200);
1518
1519 error_status = I915_READ(reg);
1520 row = GEN7_PARITY_ERROR_ROW(error_status);
1521 bank = GEN7_PARITY_ERROR_BANK(error_status);
1522 subbank = GEN7_PARITY_ERROR_SUBBANK(error_status);
1523
1524 I915_WRITE(reg, GEN7_PARITY_ERROR_VALID | GEN7_L3CDERRST1_ENABLE);
1525 POSTING_READ(reg);
1526
1527 parity_event[0] = I915_L3_PARITY_UEVENT "=1";
1528 parity_event[1] = kasprintf(GFP_KERNEL, "ROW=%d", row);
1529 parity_event[2] = kasprintf(GFP_KERNEL, "BANK=%d", bank);
1530 parity_event[3] = kasprintf(GFP_KERNEL, "SUBBANK=%d", subbank);
1531 parity_event[4] = kasprintf(GFP_KERNEL, "SLICE=%d", slice);
1532 parity_event[5] = NULL;
1533
Dave Airlie5bdebb12013-10-11 14:07:25 +10001534 kobject_uevent_env(&dev_priv->dev->primary->kdev->kobj,
Ben Widawsky35a85ac2013-09-19 11:13:41 -07001535 KOBJ_CHANGE, parity_event);
1536
1537 DRM_DEBUG("Parity error: Slice = %d, Row = %d, Bank = %d, Sub bank = %d.\n",
1538 slice, row, bank, subbank);
1539
1540 kfree(parity_event[4]);
1541 kfree(parity_event[3]);
1542 kfree(parity_event[2]);
1543 kfree(parity_event[1]);
1544 }
Ben Widawskye3689192012-05-25 16:56:22 -07001545
1546 I915_WRITE(GEN7_MISCCPCTL, misccpctl);
1547
Ben Widawsky35a85ac2013-09-19 11:13:41 -07001548out:
1549 WARN_ON(dev_priv->l3_parity.which_slice);
Ben Widawskye3689192012-05-25 16:56:22 -07001550 spin_lock_irqsave(&dev_priv->irq_lock, flags);
Daniel Vetter480c8032014-07-16 09:49:40 +02001551 gen5_enable_gt_irq(dev_priv, GT_PARITY_ERROR(dev_priv->dev));
Ben Widawskye3689192012-05-25 16:56:22 -07001552 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
1553
1554 mutex_unlock(&dev_priv->dev->struct_mutex);
Ben Widawskye3689192012-05-25 16:56:22 -07001555}
1556
Ben Widawsky35a85ac2013-09-19 11:13:41 -07001557static void ivybridge_parity_error_irq_handler(struct drm_device *dev, u32 iir)
Ben Widawskye3689192012-05-25 16:56:22 -07001558{
Jani Nikula2d1013d2014-03-31 14:27:17 +03001559 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawskye3689192012-05-25 16:56:22 -07001560
Ben Widawsky040d2ba2013-09-19 11:01:40 -07001561 if (!HAS_L3_DPF(dev))
Ben Widawskye3689192012-05-25 16:56:22 -07001562 return;
1563
Daniel Vetterd0ecd7e2013-07-04 23:35:25 +02001564 spin_lock(&dev_priv->irq_lock);
Daniel Vetter480c8032014-07-16 09:49:40 +02001565 gen5_disable_gt_irq(dev_priv, GT_PARITY_ERROR(dev));
Daniel Vetterd0ecd7e2013-07-04 23:35:25 +02001566 spin_unlock(&dev_priv->irq_lock);
Ben Widawskye3689192012-05-25 16:56:22 -07001567
Ben Widawsky35a85ac2013-09-19 11:13:41 -07001568 iir &= GT_PARITY_ERROR(dev);
1569 if (iir & GT_RENDER_L3_PARITY_ERROR_INTERRUPT_S1)
1570 dev_priv->l3_parity.which_slice |= 1 << 1;
1571
1572 if (iir & GT_RENDER_L3_PARITY_ERROR_INTERRUPT)
1573 dev_priv->l3_parity.which_slice |= 1 << 0;
1574
Daniel Vettera4da4fa2012-11-02 19:55:07 +01001575 queue_work(dev_priv->wq, &dev_priv->l3_parity.error_work);
Ben Widawskye3689192012-05-25 16:56:22 -07001576}
1577
Paulo Zanonif1af8fc2013-07-12 19:56:30 -03001578static void ilk_gt_irq_handler(struct drm_device *dev,
1579 struct drm_i915_private *dev_priv,
1580 u32 gt_iir)
1581{
1582 if (gt_iir &
1583 (GT_RENDER_USER_INTERRUPT | GT_RENDER_PIPECTL_NOTIFY_INTERRUPT))
1584 notify_ring(dev, &dev_priv->ring[RCS]);
1585 if (gt_iir & ILK_BSD_USER_INTERRUPT)
1586 notify_ring(dev, &dev_priv->ring[VCS]);
1587}
1588
Daniel Vettere7b4c6b2012-03-30 20:24:35 +02001589static void snb_gt_irq_handler(struct drm_device *dev,
1590 struct drm_i915_private *dev_priv,
1591 u32 gt_iir)
1592{
1593
Ben Widawskycc609d52013-05-28 19:22:29 -07001594 if (gt_iir &
1595 (GT_RENDER_USER_INTERRUPT | GT_RENDER_PIPECTL_NOTIFY_INTERRUPT))
Daniel Vettere7b4c6b2012-03-30 20:24:35 +02001596 notify_ring(dev, &dev_priv->ring[RCS]);
Ben Widawskycc609d52013-05-28 19:22:29 -07001597 if (gt_iir & GT_BSD_USER_INTERRUPT)
Daniel Vettere7b4c6b2012-03-30 20:24:35 +02001598 notify_ring(dev, &dev_priv->ring[VCS]);
Ben Widawskycc609d52013-05-28 19:22:29 -07001599 if (gt_iir & GT_BLT_USER_INTERRUPT)
Daniel Vettere7b4c6b2012-03-30 20:24:35 +02001600 notify_ring(dev, &dev_priv->ring[BCS]);
1601
Ben Widawskycc609d52013-05-28 19:22:29 -07001602 if (gt_iir & (GT_BLT_CS_ERROR_INTERRUPT |
1603 GT_BSD_CS_ERROR_INTERRUPT |
1604 GT_RENDER_CS_MASTER_ERROR_INTERRUPT)) {
Mika Kuoppala58174462014-02-25 17:11:26 +02001605 i915_handle_error(dev, false, "GT error interrupt 0x%08x",
1606 gt_iir);
Daniel Vettere7b4c6b2012-03-30 20:24:35 +02001607 }
Ben Widawskye3689192012-05-25 16:56:22 -07001608
Ben Widawsky35a85ac2013-09-19 11:13:41 -07001609 if (gt_iir & GT_PARITY_ERROR(dev))
1610 ivybridge_parity_error_irq_handler(dev, gt_iir);
Daniel Vettere7b4c6b2012-03-30 20:24:35 +02001611}
1612
Ben Widawsky09610212014-05-15 20:58:08 +03001613static void gen8_rps_irq_handler(struct drm_i915_private *dev_priv, u32 pm_iir)
1614{
1615 if ((pm_iir & dev_priv->pm_rps_events) == 0)
1616 return;
1617
1618 spin_lock(&dev_priv->irq_lock);
1619 dev_priv->rps.pm_iir |= pm_iir & dev_priv->pm_rps_events;
Daniel Vetter480c8032014-07-16 09:49:40 +02001620 gen8_disable_pm_irq(dev_priv, pm_iir & dev_priv->pm_rps_events);
Ben Widawsky09610212014-05-15 20:58:08 +03001621 spin_unlock(&dev_priv->irq_lock);
1622
1623 queue_work(dev_priv->wq, &dev_priv->rps.work);
1624}
1625
Ben Widawskyabd58f02013-11-02 21:07:09 -07001626static irqreturn_t gen8_gt_irq_handler(struct drm_device *dev,
1627 struct drm_i915_private *dev_priv,
1628 u32 master_ctl)
1629{
Thomas Daniele981e7b2014-07-24 17:04:39 +01001630 struct intel_engine_cs *ring;
Ben Widawskyabd58f02013-11-02 21:07:09 -07001631 u32 rcs, bcs, vcs;
1632 uint32_t tmp = 0;
1633 irqreturn_t ret = IRQ_NONE;
1634
1635 if (master_ctl & (GEN8_GT_RCS_IRQ | GEN8_GT_BCS_IRQ)) {
1636 tmp = I915_READ(GEN8_GT_IIR(0));
1637 if (tmp) {
Oscar Mateo38cc46d2014-06-16 16:10:59 +01001638 I915_WRITE(GEN8_GT_IIR(0), tmp);
Ben Widawskyabd58f02013-11-02 21:07:09 -07001639 ret = IRQ_HANDLED;
Thomas Daniele981e7b2014-07-24 17:04:39 +01001640
Ben Widawskyabd58f02013-11-02 21:07:09 -07001641 rcs = tmp >> GEN8_RCS_IRQ_SHIFT;
Thomas Daniele981e7b2014-07-24 17:04:39 +01001642 ring = &dev_priv->ring[RCS];
Ben Widawskyabd58f02013-11-02 21:07:09 -07001643 if (rcs & GT_RENDER_USER_INTERRUPT)
Thomas Daniele981e7b2014-07-24 17:04:39 +01001644 notify_ring(dev, ring);
1645 if (rcs & GT_CONTEXT_SWITCH_INTERRUPT)
1646 intel_execlists_handle_ctx_events(ring);
1647
1648 bcs = tmp >> GEN8_BCS_IRQ_SHIFT;
1649 ring = &dev_priv->ring[BCS];
Ben Widawskyabd58f02013-11-02 21:07:09 -07001650 if (bcs & GT_RENDER_USER_INTERRUPT)
Thomas Daniele981e7b2014-07-24 17:04:39 +01001651 notify_ring(dev, ring);
1652 if (bcs & GT_CONTEXT_SWITCH_INTERRUPT)
1653 intel_execlists_handle_ctx_events(ring);
Ben Widawskyabd58f02013-11-02 21:07:09 -07001654 } else
1655 DRM_ERROR("The master control interrupt lied (GT0)!\n");
1656 }
1657
Zhao Yakui85f9b5f2014-04-17 10:37:38 +08001658 if (master_ctl & (GEN8_GT_VCS1_IRQ | GEN8_GT_VCS2_IRQ)) {
Ben Widawskyabd58f02013-11-02 21:07:09 -07001659 tmp = I915_READ(GEN8_GT_IIR(1));
1660 if (tmp) {
Oscar Mateo38cc46d2014-06-16 16:10:59 +01001661 I915_WRITE(GEN8_GT_IIR(1), tmp);
Ben Widawskyabd58f02013-11-02 21:07:09 -07001662 ret = IRQ_HANDLED;
Thomas Daniele981e7b2014-07-24 17:04:39 +01001663
Ben Widawskyabd58f02013-11-02 21:07:09 -07001664 vcs = tmp >> GEN8_VCS1_IRQ_SHIFT;
Thomas Daniele981e7b2014-07-24 17:04:39 +01001665 ring = &dev_priv->ring[VCS];
Ben Widawskyabd58f02013-11-02 21:07:09 -07001666 if (vcs & GT_RENDER_USER_INTERRUPT)
Thomas Daniele981e7b2014-07-24 17:04:39 +01001667 notify_ring(dev, ring);
Oscar Mateo73d477f2014-07-24 17:04:31 +01001668 if (vcs & GT_CONTEXT_SWITCH_INTERRUPT)
Thomas Daniele981e7b2014-07-24 17:04:39 +01001669 intel_execlists_handle_ctx_events(ring);
1670
Zhao Yakui85f9b5f2014-04-17 10:37:38 +08001671 vcs = tmp >> GEN8_VCS2_IRQ_SHIFT;
Thomas Daniele981e7b2014-07-24 17:04:39 +01001672 ring = &dev_priv->ring[VCS2];
Zhao Yakui85f9b5f2014-04-17 10:37:38 +08001673 if (vcs & GT_RENDER_USER_INTERRUPT)
Thomas Daniele981e7b2014-07-24 17:04:39 +01001674 notify_ring(dev, ring);
Oscar Mateo73d477f2014-07-24 17:04:31 +01001675 if (vcs & GT_CONTEXT_SWITCH_INTERRUPT)
Thomas Daniele981e7b2014-07-24 17:04:39 +01001676 intel_execlists_handle_ctx_events(ring);
Ben Widawskyabd58f02013-11-02 21:07:09 -07001677 } else
1678 DRM_ERROR("The master control interrupt lied (GT1)!\n");
1679 }
1680
Ben Widawsky09610212014-05-15 20:58:08 +03001681 if (master_ctl & GEN8_GT_PM_IRQ) {
1682 tmp = I915_READ(GEN8_GT_IIR(2));
1683 if (tmp & dev_priv->pm_rps_events) {
Ben Widawsky09610212014-05-15 20:58:08 +03001684 I915_WRITE(GEN8_GT_IIR(2),
1685 tmp & dev_priv->pm_rps_events);
Oscar Mateo38cc46d2014-06-16 16:10:59 +01001686 ret = IRQ_HANDLED;
1687 gen8_rps_irq_handler(dev_priv, tmp);
Ben Widawsky09610212014-05-15 20:58:08 +03001688 } else
1689 DRM_ERROR("The master control interrupt lied (PM)!\n");
1690 }
1691
Ben Widawskyabd58f02013-11-02 21:07:09 -07001692 if (master_ctl & GEN8_GT_VECS_IRQ) {
1693 tmp = I915_READ(GEN8_GT_IIR(3));
1694 if (tmp) {
Oscar Mateo38cc46d2014-06-16 16:10:59 +01001695 I915_WRITE(GEN8_GT_IIR(3), tmp);
Ben Widawskyabd58f02013-11-02 21:07:09 -07001696 ret = IRQ_HANDLED;
Thomas Daniele981e7b2014-07-24 17:04:39 +01001697
Ben Widawskyabd58f02013-11-02 21:07:09 -07001698 vcs = tmp >> GEN8_VECS_IRQ_SHIFT;
Thomas Daniele981e7b2014-07-24 17:04:39 +01001699 ring = &dev_priv->ring[VECS];
Ben Widawskyabd58f02013-11-02 21:07:09 -07001700 if (vcs & GT_RENDER_USER_INTERRUPT)
Thomas Daniele981e7b2014-07-24 17:04:39 +01001701 notify_ring(dev, ring);
Oscar Mateo73d477f2014-07-24 17:04:31 +01001702 if (vcs & GT_CONTEXT_SWITCH_INTERRUPT)
Thomas Daniele981e7b2014-07-24 17:04:39 +01001703 intel_execlists_handle_ctx_events(ring);
Ben Widawskyabd58f02013-11-02 21:07:09 -07001704 } else
1705 DRM_ERROR("The master control interrupt lied (GT3)!\n");
1706 }
1707
1708 return ret;
1709}
1710
Egbert Eichb543fb02013-04-16 13:36:54 +02001711#define HPD_STORM_DETECT_PERIOD 1000
1712#define HPD_STORM_THRESHOLD 5
1713
Jani Nikula07c338c2014-10-02 11:16:32 +03001714static int pch_port_to_hotplug_shift(enum port port)
Dave Airlie13cf5502014-06-18 11:29:35 +10001715{
1716 switch (port) {
1717 case PORT_A:
1718 case PORT_E:
1719 default:
1720 return -1;
1721 case PORT_B:
1722 return 0;
1723 case PORT_C:
1724 return 8;
1725 case PORT_D:
1726 return 16;
1727 }
1728}
1729
Jani Nikula07c338c2014-10-02 11:16:32 +03001730static int i915_port_to_hotplug_shift(enum port port)
Dave Airlie13cf5502014-06-18 11:29:35 +10001731{
1732 switch (port) {
1733 case PORT_A:
1734 case PORT_E:
1735 default:
1736 return -1;
1737 case PORT_B:
1738 return 17;
1739 case PORT_C:
1740 return 19;
1741 case PORT_D:
1742 return 21;
1743 }
1744}
1745
1746static inline enum port get_port_from_pin(enum hpd_pin pin)
1747{
1748 switch (pin) {
1749 case HPD_PORT_B:
1750 return PORT_B;
1751 case HPD_PORT_C:
1752 return PORT_C;
1753 case HPD_PORT_D:
1754 return PORT_D;
1755 default:
1756 return PORT_A; /* no hpd */
1757 }
1758}
1759
Daniel Vetter10a504d2013-06-27 17:52:12 +02001760static inline void intel_hpd_irq_handler(struct drm_device *dev,
Daniel Vetter22062db2013-06-27 17:52:11 +02001761 u32 hotplug_trigger,
Dave Airlie13cf5502014-06-18 11:29:35 +10001762 u32 dig_hotplug_reg,
Daniel Vetter22062db2013-06-27 17:52:11 +02001763 const u32 *hpd)
Egbert Eichb543fb02013-04-16 13:36:54 +02001764{
Jani Nikula2d1013d2014-03-31 14:27:17 +03001765 struct drm_i915_private *dev_priv = dev->dev_private;
Egbert Eichb543fb02013-04-16 13:36:54 +02001766 int i;
Dave Airlie13cf5502014-06-18 11:29:35 +10001767 enum port port;
Daniel Vetter10a504d2013-06-27 17:52:12 +02001768 bool storm_detected = false;
Dave Airlie13cf5502014-06-18 11:29:35 +10001769 bool queue_dig = false, queue_hp = false;
1770 u32 dig_shift;
1771 u32 dig_port_mask = 0;
Egbert Eichb543fb02013-04-16 13:36:54 +02001772
Daniel Vetter91d131d2013-06-27 17:52:14 +02001773 if (!hotplug_trigger)
1774 return;
1775
Dave Airlie13cf5502014-06-18 11:29:35 +10001776 DRM_DEBUG_DRIVER("hotplug event received, stat 0x%08x, dig 0x%08x\n",
1777 hotplug_trigger, dig_hotplug_reg);
Imre Deakcc9bd492014-01-16 19:56:54 +02001778
Daniel Vetterb5ea2d52013-06-27 17:52:15 +02001779 spin_lock(&dev_priv->irq_lock);
Egbert Eichb543fb02013-04-16 13:36:54 +02001780 for (i = 1; i < HPD_NUM_PINS; i++) {
Dave Airlie13cf5502014-06-18 11:29:35 +10001781 if (!(hpd[i] & hotplug_trigger))
1782 continue;
Egbert Eich821450c2013-04-16 13:36:55 +02001783
Dave Airlie13cf5502014-06-18 11:29:35 +10001784 port = get_port_from_pin(i);
1785 if (port && dev_priv->hpd_irq_port[port]) {
1786 bool long_hpd;
1787
Jani Nikula07c338c2014-10-02 11:16:32 +03001788 if (HAS_PCH_SPLIT(dev)) {
1789 dig_shift = pch_port_to_hotplug_shift(port);
Dave Airlie13cf5502014-06-18 11:29:35 +10001790 long_hpd = (dig_hotplug_reg >> dig_shift) & PORTB_HOTPLUG_LONG_DETECT;
Jani Nikula07c338c2014-10-02 11:16:32 +03001791 } else {
1792 dig_shift = i915_port_to_hotplug_shift(port);
1793 long_hpd = (hotplug_trigger >> dig_shift) & PORTB_HOTPLUG_LONG_DETECT;
Dave Airlie13cf5502014-06-18 11:29:35 +10001794 }
1795
Ville Syrjälä26fbb772014-08-11 18:37:37 +03001796 DRM_DEBUG_DRIVER("digital hpd port %c - %s\n",
1797 port_name(port),
1798 long_hpd ? "long" : "short");
Dave Airlie13cf5502014-06-18 11:29:35 +10001799 /* for long HPD pulses we want to have the digital queue happen,
1800 but we still want HPD storm detection to function. */
1801 if (long_hpd) {
1802 dev_priv->long_hpd_port_mask |= (1 << port);
1803 dig_port_mask |= hpd[i];
1804 } else {
1805 /* for short HPD just trigger the digital queue */
1806 dev_priv->short_hpd_port_mask |= (1 << port);
1807 hotplug_trigger &= ~hpd[i];
1808 }
1809 queue_dig = true;
1810 }
1811 }
1812
1813 for (i = 1; i < HPD_NUM_PINS; i++) {
Daniel Vetter3ff04a162014-04-24 12:03:17 +02001814 if (hpd[i] & hotplug_trigger &&
1815 dev_priv->hpd_stats[i].hpd_mark == HPD_DISABLED) {
1816 /*
1817 * On GMCH platforms the interrupt mask bits only
1818 * prevent irq generation, not the setting of the
1819 * hotplug bits itself. So only WARN about unexpected
1820 * interrupts on saner platforms.
1821 */
1822 WARN_ONCE(INTEL_INFO(dev)->gen >= 5 && !IS_VALLEYVIEW(dev),
1823 "Received HPD interrupt (0x%08x) on pin %d (0x%08x) although disabled\n",
1824 hotplug_trigger, i, hpd[i]);
1825
1826 continue;
1827 }
Egbert Eichb8f102e2013-07-26 14:14:24 +02001828
Egbert Eichb543fb02013-04-16 13:36:54 +02001829 if (!(hpd[i] & hotplug_trigger) ||
1830 dev_priv->hpd_stats[i].hpd_mark != HPD_ENABLED)
1831 continue;
1832
Dave Airlie13cf5502014-06-18 11:29:35 +10001833 if (!(dig_port_mask & hpd[i])) {
1834 dev_priv->hpd_event_bits |= (1 << i);
1835 queue_hp = true;
1836 }
1837
Egbert Eichb543fb02013-04-16 13:36:54 +02001838 if (!time_in_range(jiffies, dev_priv->hpd_stats[i].hpd_last_jiffies,
1839 dev_priv->hpd_stats[i].hpd_last_jiffies
1840 + msecs_to_jiffies(HPD_STORM_DETECT_PERIOD))) {
1841 dev_priv->hpd_stats[i].hpd_last_jiffies = jiffies;
1842 dev_priv->hpd_stats[i].hpd_cnt = 0;
Egbert Eichb8f102e2013-07-26 14:14:24 +02001843 DRM_DEBUG_KMS("Received HPD interrupt on PIN %d - cnt: 0\n", i);
Egbert Eichb543fb02013-04-16 13:36:54 +02001844 } else if (dev_priv->hpd_stats[i].hpd_cnt > HPD_STORM_THRESHOLD) {
1845 dev_priv->hpd_stats[i].hpd_mark = HPD_MARK_DISABLED;
Egbert Eich142e2392013-04-11 15:57:57 +02001846 dev_priv->hpd_event_bits &= ~(1 << i);
Egbert Eichb543fb02013-04-16 13:36:54 +02001847 DRM_DEBUG_KMS("HPD interrupt storm detected on PIN %d\n", i);
Daniel Vetter10a504d2013-06-27 17:52:12 +02001848 storm_detected = true;
Egbert Eichb543fb02013-04-16 13:36:54 +02001849 } else {
1850 dev_priv->hpd_stats[i].hpd_cnt++;
Egbert Eichb8f102e2013-07-26 14:14:24 +02001851 DRM_DEBUG_KMS("Received HPD interrupt on PIN %d - cnt: %d\n", i,
1852 dev_priv->hpd_stats[i].hpd_cnt);
Egbert Eichb543fb02013-04-16 13:36:54 +02001853 }
1854 }
1855
Daniel Vetter10a504d2013-06-27 17:52:12 +02001856 if (storm_detected)
1857 dev_priv->display.hpd_irq_setup(dev);
Daniel Vetterb5ea2d52013-06-27 17:52:15 +02001858 spin_unlock(&dev_priv->irq_lock);
Daniel Vetter5876fa02013-06-27 17:52:13 +02001859
Daniel Vetter645416f2013-09-02 16:22:25 +02001860 /*
1861 * Our hotplug handler can grab modeset locks (by calling down into the
1862 * fb helpers). Hence it must not be run on our own dev-priv->wq work
1863 * queue for otherwise the flush_work in the pageflip code will
1864 * deadlock.
1865 */
Dave Airlie13cf5502014-06-18 11:29:35 +10001866 if (queue_dig)
Dave Airlie0e32b392014-05-02 14:02:48 +10001867 queue_work(dev_priv->dp_wq, &dev_priv->dig_port_work);
Dave Airlie13cf5502014-06-18 11:29:35 +10001868 if (queue_hp)
1869 schedule_work(&dev_priv->hotplug_work);
Egbert Eichb543fb02013-04-16 13:36:54 +02001870}
1871
Daniel Vetter515ac2b2012-12-01 13:53:44 +01001872static void gmbus_irq_handler(struct drm_device *dev)
1873{
Jani Nikula2d1013d2014-03-31 14:27:17 +03001874 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter28c70f12012-12-01 13:53:45 +01001875
Daniel Vetter28c70f12012-12-01 13:53:45 +01001876 wake_up_all(&dev_priv->gmbus_wait_queue);
Daniel Vetter515ac2b2012-12-01 13:53:44 +01001877}
1878
Daniel Vetterce99c252012-12-01 13:53:47 +01001879static void dp_aux_irq_handler(struct drm_device *dev)
1880{
Jani Nikula2d1013d2014-03-31 14:27:17 +03001881 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter9ee32fea2012-12-01 13:53:48 +01001882
Daniel Vetter9ee32fea2012-12-01 13:53:48 +01001883 wake_up_all(&dev_priv->gmbus_wait_queue);
Daniel Vetterce99c252012-12-01 13:53:47 +01001884}
1885
Shuang He8bf1e9f2013-10-15 18:55:27 +01001886#if defined(CONFIG_DEBUG_FS)
Daniel Vetter277de952013-10-18 16:37:07 +02001887static void display_pipe_crc_irq_handler(struct drm_device *dev, enum pipe pipe,
1888 uint32_t crc0, uint32_t crc1,
1889 uint32_t crc2, uint32_t crc3,
1890 uint32_t crc4)
Shuang He8bf1e9f2013-10-15 18:55:27 +01001891{
1892 struct drm_i915_private *dev_priv = dev->dev_private;
1893 struct intel_pipe_crc *pipe_crc = &dev_priv->pipe_crc[pipe];
1894 struct intel_pipe_crc_entry *entry;
Damien Lespiauac2300d2013-10-15 18:55:30 +01001895 int head, tail;
Damien Lespiaub2c88f52013-10-15 18:55:29 +01001896
Damien Lespiaud538bbd2013-10-21 14:29:30 +01001897 spin_lock(&pipe_crc->lock);
1898
Damien Lespiau0c912c72013-10-15 18:55:37 +01001899 if (!pipe_crc->entries) {
Damien Lespiaud538bbd2013-10-21 14:29:30 +01001900 spin_unlock(&pipe_crc->lock);
Damien Lespiau0c912c72013-10-15 18:55:37 +01001901 DRM_ERROR("spurious interrupt\n");
1902 return;
1903 }
1904
Damien Lespiaud538bbd2013-10-21 14:29:30 +01001905 head = pipe_crc->head;
1906 tail = pipe_crc->tail;
Damien Lespiaub2c88f52013-10-15 18:55:29 +01001907
1908 if (CIRC_SPACE(head, tail, INTEL_PIPE_CRC_ENTRIES_NR) < 1) {
Damien Lespiaud538bbd2013-10-21 14:29:30 +01001909 spin_unlock(&pipe_crc->lock);
Damien Lespiaub2c88f52013-10-15 18:55:29 +01001910 DRM_ERROR("CRC buffer overflowing\n");
1911 return;
1912 }
1913
1914 entry = &pipe_crc->entries[head];
Shuang He8bf1e9f2013-10-15 18:55:27 +01001915
Daniel Vetter8bc5e952013-10-16 22:55:49 +02001916 entry->frame = dev->driver->get_vblank_counter(dev, pipe);
Daniel Vettereba94eb2013-10-16 22:55:46 +02001917 entry->crc[0] = crc0;
1918 entry->crc[1] = crc1;
1919 entry->crc[2] = crc2;
1920 entry->crc[3] = crc3;
1921 entry->crc[4] = crc4;
Damien Lespiaub2c88f52013-10-15 18:55:29 +01001922
1923 head = (head + 1) & (INTEL_PIPE_CRC_ENTRIES_NR - 1);
Damien Lespiaud538bbd2013-10-21 14:29:30 +01001924 pipe_crc->head = head;
1925
1926 spin_unlock(&pipe_crc->lock);
Damien Lespiau07144422013-10-15 18:55:40 +01001927
1928 wake_up_interruptible(&pipe_crc->wq);
Shuang He8bf1e9f2013-10-15 18:55:27 +01001929}
Daniel Vetter277de952013-10-18 16:37:07 +02001930#else
1931static inline void
1932display_pipe_crc_irq_handler(struct drm_device *dev, enum pipe pipe,
1933 uint32_t crc0, uint32_t crc1,
1934 uint32_t crc2, uint32_t crc3,
1935 uint32_t crc4) {}
1936#endif
Daniel Vettereba94eb2013-10-16 22:55:46 +02001937
Daniel Vetter277de952013-10-18 16:37:07 +02001938
1939static void hsw_pipe_crc_irq_handler(struct drm_device *dev, enum pipe pipe)
Daniel Vetter5a69b892013-10-16 22:55:52 +02001940{
1941 struct drm_i915_private *dev_priv = dev->dev_private;
1942
Daniel Vetter277de952013-10-18 16:37:07 +02001943 display_pipe_crc_irq_handler(dev, pipe,
1944 I915_READ(PIPE_CRC_RES_1_IVB(pipe)),
1945 0, 0, 0, 0);
Daniel Vetter5a69b892013-10-16 22:55:52 +02001946}
1947
Daniel Vetter277de952013-10-18 16:37:07 +02001948static void ivb_pipe_crc_irq_handler(struct drm_device *dev, enum pipe pipe)
Daniel Vettereba94eb2013-10-16 22:55:46 +02001949{
1950 struct drm_i915_private *dev_priv = dev->dev_private;
1951
Daniel Vetter277de952013-10-18 16:37:07 +02001952 display_pipe_crc_irq_handler(dev, pipe,
1953 I915_READ(PIPE_CRC_RES_1_IVB(pipe)),
1954 I915_READ(PIPE_CRC_RES_2_IVB(pipe)),
1955 I915_READ(PIPE_CRC_RES_3_IVB(pipe)),
1956 I915_READ(PIPE_CRC_RES_4_IVB(pipe)),
1957 I915_READ(PIPE_CRC_RES_5_IVB(pipe)));
Daniel Vettereba94eb2013-10-16 22:55:46 +02001958}
Daniel Vetter5b3a8562013-10-16 22:55:48 +02001959
Daniel Vetter277de952013-10-18 16:37:07 +02001960static void i9xx_pipe_crc_irq_handler(struct drm_device *dev, enum pipe pipe)
Daniel Vetter5b3a8562013-10-16 22:55:48 +02001961{
1962 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter0b5c5ed2013-10-16 22:55:53 +02001963 uint32_t res1, res2;
1964
1965 if (INTEL_INFO(dev)->gen >= 3)
1966 res1 = I915_READ(PIPE_CRC_RES_RES1_I915(pipe));
1967 else
1968 res1 = 0;
1969
1970 if (INTEL_INFO(dev)->gen >= 5 || IS_G4X(dev))
1971 res2 = I915_READ(PIPE_CRC_RES_RES2_G4X(pipe));
1972 else
1973 res2 = 0;
Daniel Vetter5b3a8562013-10-16 22:55:48 +02001974
Daniel Vetter277de952013-10-18 16:37:07 +02001975 display_pipe_crc_irq_handler(dev, pipe,
1976 I915_READ(PIPE_CRC_RES_RED(pipe)),
1977 I915_READ(PIPE_CRC_RES_GREEN(pipe)),
1978 I915_READ(PIPE_CRC_RES_BLUE(pipe)),
1979 res1, res2);
Daniel Vetter5b3a8562013-10-16 22:55:48 +02001980}
Shuang He8bf1e9f2013-10-15 18:55:27 +01001981
Paulo Zanoni1403c0d2013-08-15 11:51:32 -03001982/* The RPS events need forcewake, so we add them to a work queue and mask their
1983 * IMR bits until the work is done. Other interrupts can be processed without
1984 * the work queue. */
1985static void gen6_rps_irq_handler(struct drm_i915_private *dev_priv, u32 pm_iir)
Ben Widawskybaf02a12013-05-28 19:22:24 -07001986{
Deepak Sa6706b42014-03-15 20:23:22 +05301987 if (pm_iir & dev_priv->pm_rps_events) {
Daniel Vetter59cdb632013-07-04 23:35:28 +02001988 spin_lock(&dev_priv->irq_lock);
Deepak Sa6706b42014-03-15 20:23:22 +05301989 dev_priv->rps.pm_iir |= pm_iir & dev_priv->pm_rps_events;
Daniel Vetter480c8032014-07-16 09:49:40 +02001990 gen6_disable_pm_irq(dev_priv, pm_iir & dev_priv->pm_rps_events);
Daniel Vetter59cdb632013-07-04 23:35:28 +02001991 spin_unlock(&dev_priv->irq_lock);
Daniel Vetter2adbee62013-07-04 23:35:27 +02001992
1993 queue_work(dev_priv->wq, &dev_priv->rps.work);
Ben Widawskybaf02a12013-05-28 19:22:24 -07001994 }
Ben Widawskybaf02a12013-05-28 19:22:24 -07001995
Paulo Zanoni1403c0d2013-08-15 11:51:32 -03001996 if (HAS_VEBOX(dev_priv->dev)) {
1997 if (pm_iir & PM_VEBOX_USER_INTERRUPT)
1998 notify_ring(dev_priv->dev, &dev_priv->ring[VECS]);
Ben Widawsky12638c52013-05-28 19:22:31 -07001999
Paulo Zanoni1403c0d2013-08-15 11:51:32 -03002000 if (pm_iir & PM_VEBOX_CS_ERROR_INTERRUPT) {
Mika Kuoppala58174462014-02-25 17:11:26 +02002001 i915_handle_error(dev_priv->dev, false,
2002 "VEBOX CS error interrupt 0x%08x",
2003 pm_iir);
Paulo Zanoni1403c0d2013-08-15 11:51:32 -03002004 }
Ben Widawsky12638c52013-05-28 19:22:31 -07002005 }
Ben Widawskybaf02a12013-05-28 19:22:24 -07002006}
2007
Ville Syrjälä8d7849d2014-04-29 13:35:46 +03002008static bool intel_pipe_handle_vblank(struct drm_device *dev, enum pipe pipe)
2009{
Ville Syrjälä8d7849d2014-04-29 13:35:46 +03002010 if (!drm_handle_vblank(dev, pipe))
2011 return false;
2012
Ville Syrjälä8d7849d2014-04-29 13:35:46 +03002013 return true;
2014}
2015
Imre Deakc1874ed2014-02-04 21:35:46 +02002016static void valleyview_pipestat_irq_handler(struct drm_device *dev, u32 iir)
2017{
2018 struct drm_i915_private *dev_priv = dev->dev_private;
Imre Deak91d181d2014-02-10 18:42:49 +02002019 u32 pipe_stats[I915_MAX_PIPES] = { };
Imre Deakc1874ed2014-02-04 21:35:46 +02002020 int pipe;
2021
Imre Deak58ead0d2014-02-04 21:35:47 +02002022 spin_lock(&dev_priv->irq_lock);
Damien Lespiau055e3932014-08-18 13:49:10 +01002023 for_each_pipe(dev_priv, pipe) {
Imre Deak91d181d2014-02-10 18:42:49 +02002024 int reg;
Daniel Vetterbbb5eeb2014-02-12 17:55:36 +01002025 u32 mask, iir_bit = 0;
Imre Deak91d181d2014-02-10 18:42:49 +02002026
Daniel Vetterbbb5eeb2014-02-12 17:55:36 +01002027 /*
2028 * PIPESTAT bits get signalled even when the interrupt is
2029 * disabled with the mask bits, and some of the status bits do
2030 * not generate interrupts at all (like the underrun bit). Hence
2031 * we need to be careful that we only handle what we want to
2032 * handle.
2033 */
2034 mask = 0;
2035 if (__cpu_fifo_underrun_reporting_enabled(dev, pipe))
2036 mask |= PIPE_FIFO_UNDERRUN_STATUS;
2037
2038 switch (pipe) {
2039 case PIPE_A:
2040 iir_bit = I915_DISPLAY_PIPE_A_EVENT_INTERRUPT;
2041 break;
2042 case PIPE_B:
2043 iir_bit = I915_DISPLAY_PIPE_B_EVENT_INTERRUPT;
2044 break;
Ville Syrjälä3278f672014-04-09 13:28:49 +03002045 case PIPE_C:
2046 iir_bit = I915_DISPLAY_PIPE_C_EVENT_INTERRUPT;
2047 break;
Daniel Vetterbbb5eeb2014-02-12 17:55:36 +01002048 }
2049 if (iir & iir_bit)
2050 mask |= dev_priv->pipestat_irq_mask[pipe];
2051
2052 if (!mask)
Imre Deak91d181d2014-02-10 18:42:49 +02002053 continue;
2054
2055 reg = PIPESTAT(pipe);
Daniel Vetterbbb5eeb2014-02-12 17:55:36 +01002056 mask |= PIPESTAT_INT_ENABLE_MASK;
2057 pipe_stats[pipe] = I915_READ(reg) & mask;
Imre Deakc1874ed2014-02-04 21:35:46 +02002058
2059 /*
2060 * Clear the PIPE*STAT regs before the IIR
2061 */
Imre Deak91d181d2014-02-10 18:42:49 +02002062 if (pipe_stats[pipe] & (PIPE_FIFO_UNDERRUN_STATUS |
2063 PIPESTAT_INT_STATUS_MASK))
Imre Deakc1874ed2014-02-04 21:35:46 +02002064 I915_WRITE(reg, pipe_stats[pipe]);
2065 }
Imre Deak58ead0d2014-02-04 21:35:47 +02002066 spin_unlock(&dev_priv->irq_lock);
Imre Deakc1874ed2014-02-04 21:35:46 +02002067
Damien Lespiau055e3932014-08-18 13:49:10 +01002068 for_each_pipe(dev_priv, pipe) {
Chris Wilsond6bbafa2014-09-05 07:13:24 +01002069 if (pipe_stats[pipe] & PIPE_START_VBLANK_INTERRUPT_STATUS &&
2070 intel_pipe_handle_vblank(dev, pipe))
2071 intel_check_page_flip(dev, pipe);
Imre Deakc1874ed2014-02-04 21:35:46 +02002072
Imre Deak579a9b02014-02-04 21:35:48 +02002073 if (pipe_stats[pipe] & PLANE_FLIP_DONE_INT_STATUS_VLV) {
Imre Deakc1874ed2014-02-04 21:35:46 +02002074 intel_prepare_page_flip(dev, pipe);
2075 intel_finish_page_flip(dev, pipe);
2076 }
2077
2078 if (pipe_stats[pipe] & PIPE_CRC_DONE_INTERRUPT_STATUS)
2079 i9xx_pipe_crc_irq_handler(dev, pipe);
2080
2081 if (pipe_stats[pipe] & PIPE_FIFO_UNDERRUN_STATUS &&
2082 intel_set_cpu_fifo_underrun_reporting(dev, pipe, false))
2083 DRM_ERROR("pipe %c underrun\n", pipe_name(pipe));
2084 }
2085
2086 if (pipe_stats[0] & PIPE_GMBUS_INTERRUPT_STATUS)
2087 gmbus_irq_handler(dev);
2088}
2089
Ville Syrjälä16c6c562014-04-01 10:54:36 +03002090static void i9xx_hpd_irq_handler(struct drm_device *dev)
2091{
2092 struct drm_i915_private *dev_priv = dev->dev_private;
2093 u32 hotplug_status = I915_READ(PORT_HOTPLUG_STAT);
2094
Oscar Mateo3ff60f82014-06-16 16:10:58 +01002095 if (hotplug_status) {
2096 I915_WRITE(PORT_HOTPLUG_STAT, hotplug_status);
2097 /*
2098 * Make sure hotplug status is cleared before we clear IIR, or else we
2099 * may miss hotplug events.
2100 */
2101 POSTING_READ(PORT_HOTPLUG_STAT);
Ville Syrjälä16c6c562014-04-01 10:54:36 +03002102
Oscar Mateo3ff60f82014-06-16 16:10:58 +01002103 if (IS_G4X(dev)) {
2104 u32 hotplug_trigger = hotplug_status & HOTPLUG_INT_STATUS_G4X;
Ville Syrjälä16c6c562014-04-01 10:54:36 +03002105
Dave Airlie13cf5502014-06-18 11:29:35 +10002106 intel_hpd_irq_handler(dev, hotplug_trigger, 0, hpd_status_g4x);
Oscar Mateo3ff60f82014-06-16 16:10:58 +01002107 } else {
2108 u32 hotplug_trigger = hotplug_status & HOTPLUG_INT_STATUS_I915;
2109
Dave Airlie13cf5502014-06-18 11:29:35 +10002110 intel_hpd_irq_handler(dev, hotplug_trigger, 0, hpd_status_i915);
Oscar Mateo3ff60f82014-06-16 16:10:58 +01002111 }
2112
2113 if ((IS_G4X(dev) || IS_VALLEYVIEW(dev)) &&
2114 hotplug_status & DP_AUX_CHANNEL_MASK_INT_STATUS_G4X)
2115 dp_aux_irq_handler(dev);
Ville Syrjälä16c6c562014-04-01 10:54:36 +03002116 }
Ville Syrjälä16c6c562014-04-01 10:54:36 +03002117}
2118
Daniel Vetterff1f5252012-10-02 15:10:55 +02002119static irqreturn_t valleyview_irq_handler(int irq, void *arg)
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002120{
Daniel Vetter45a83f82014-05-12 19:17:55 +02002121 struct drm_device *dev = arg;
Jani Nikula2d1013d2014-03-31 14:27:17 +03002122 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002123 u32 iir, gt_iir, pm_iir;
2124 irqreturn_t ret = IRQ_NONE;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002125
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002126 while (true) {
Oscar Mateo3ff60f82014-06-16 16:10:58 +01002127 /* Find, clear, then process each source of interrupt */
2128
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002129 gt_iir = I915_READ(GTIIR);
Oscar Mateo3ff60f82014-06-16 16:10:58 +01002130 if (gt_iir)
2131 I915_WRITE(GTIIR, gt_iir);
2132
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002133 pm_iir = I915_READ(GEN6_PMIIR);
Oscar Mateo3ff60f82014-06-16 16:10:58 +01002134 if (pm_iir)
2135 I915_WRITE(GEN6_PMIIR, pm_iir);
2136
2137 iir = I915_READ(VLV_IIR);
2138 if (iir) {
2139 /* Consume port before clearing IIR or we'll miss events */
2140 if (iir & I915_DISPLAY_PORT_INTERRUPT)
2141 i9xx_hpd_irq_handler(dev);
2142 I915_WRITE(VLV_IIR, iir);
2143 }
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002144
2145 if (gt_iir == 0 && pm_iir == 0 && iir == 0)
2146 goto out;
2147
2148 ret = IRQ_HANDLED;
2149
Oscar Mateo3ff60f82014-06-16 16:10:58 +01002150 if (gt_iir)
2151 snb_gt_irq_handler(dev, dev_priv, gt_iir);
Paulo Zanoni60611c12013-08-15 11:50:01 -03002152 if (pm_iir)
Daniel Vetterd0ecd7e2013-07-04 23:35:25 +02002153 gen6_rps_irq_handler(dev_priv, pm_iir);
Oscar Mateo3ff60f82014-06-16 16:10:58 +01002154 /* Call regardless, as some status bits might not be
2155 * signalled in iir */
2156 valleyview_pipestat_irq_handler(dev, iir);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002157 }
2158
2159out:
2160 return ret;
2161}
2162
Ville Syrjälä43f328d2014-04-09 20:40:52 +03002163static irqreturn_t cherryview_irq_handler(int irq, void *arg)
2164{
Daniel Vetter45a83f82014-05-12 19:17:55 +02002165 struct drm_device *dev = arg;
Ville Syrjälä43f328d2014-04-09 20:40:52 +03002166 struct drm_i915_private *dev_priv = dev->dev_private;
2167 u32 master_ctl, iir;
2168 irqreturn_t ret = IRQ_NONE;
Ville Syrjälä43f328d2014-04-09 20:40:52 +03002169
Ville Syrjälä8e5fd592014-04-09 13:28:50 +03002170 for (;;) {
2171 master_ctl = I915_READ(GEN8_MASTER_IRQ) & ~GEN8_MASTER_IRQ_CONTROL;
2172 iir = I915_READ(VLV_IIR);
Ville Syrjälä3278f672014-04-09 13:28:49 +03002173
Ville Syrjälä8e5fd592014-04-09 13:28:50 +03002174 if (master_ctl == 0 && iir == 0)
2175 break;
Ville Syrjälä43f328d2014-04-09 20:40:52 +03002176
Oscar Mateo27b6c122014-06-16 16:11:00 +01002177 ret = IRQ_HANDLED;
2178
Ville Syrjälä8e5fd592014-04-09 13:28:50 +03002179 I915_WRITE(GEN8_MASTER_IRQ, 0);
Ville Syrjälä43f328d2014-04-09 20:40:52 +03002180
Oscar Mateo27b6c122014-06-16 16:11:00 +01002181 /* Find, clear, then process each source of interrupt */
2182
2183 if (iir) {
2184 /* Consume port before clearing IIR or we'll miss events */
2185 if (iir & I915_DISPLAY_PORT_INTERRUPT)
2186 i9xx_hpd_irq_handler(dev);
2187 I915_WRITE(VLV_IIR, iir);
2188 }
2189
Ville Syrjälä8e5fd592014-04-09 13:28:50 +03002190 gen8_gt_irq_handler(dev, dev_priv, master_ctl);
Ville Syrjälä43f328d2014-04-09 20:40:52 +03002191
Oscar Mateo27b6c122014-06-16 16:11:00 +01002192 /* Call regardless, as some status bits might not be
2193 * signalled in iir */
Ville Syrjälä8e5fd592014-04-09 13:28:50 +03002194 valleyview_pipestat_irq_handler(dev, iir);
Ville Syrjälä43f328d2014-04-09 20:40:52 +03002195
Ville Syrjälä8e5fd592014-04-09 13:28:50 +03002196 I915_WRITE(GEN8_MASTER_IRQ, DE_MASTER_IRQ_CONTROL);
2197 POSTING_READ(GEN8_MASTER_IRQ);
Ville Syrjälä43f328d2014-04-09 20:40:52 +03002198 }
2199
Ville Syrjälä43f328d2014-04-09 20:40:52 +03002200 return ret;
2201}
2202
Adam Jackson23e81d62012-06-06 15:45:44 -04002203static void ibx_irq_handler(struct drm_device *dev, u32 pch_iir)
Jesse Barnes776ad802011-01-04 15:09:39 -08002204{
Jani Nikula2d1013d2014-03-31 14:27:17 +03002205 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08002206 int pipe;
Egbert Eichb543fb02013-04-16 13:36:54 +02002207 u32 hotplug_trigger = pch_iir & SDE_HOTPLUG_MASK;
Dave Airlie13cf5502014-06-18 11:29:35 +10002208 u32 dig_hotplug_reg;
Jesse Barnes776ad802011-01-04 15:09:39 -08002209
Dave Airlie13cf5502014-06-18 11:29:35 +10002210 dig_hotplug_reg = I915_READ(PCH_PORT_HOTPLUG);
2211 I915_WRITE(PCH_PORT_HOTPLUG, dig_hotplug_reg);
2212
2213 intel_hpd_irq_handler(dev, hotplug_trigger, dig_hotplug_reg, hpd_ibx);
Daniel Vetter91d131d2013-06-27 17:52:14 +02002214
Ville Syrjäläcfc33bf2013-04-17 17:48:48 +03002215 if (pch_iir & SDE_AUDIO_POWER_MASK) {
2216 int port = ffs((pch_iir & SDE_AUDIO_POWER_MASK) >>
2217 SDE_AUDIO_POWER_SHIFT);
Jesse Barnes776ad802011-01-04 15:09:39 -08002218 DRM_DEBUG_DRIVER("PCH audio power change on port %d\n",
Ville Syrjäläcfc33bf2013-04-17 17:48:48 +03002219 port_name(port));
2220 }
Jesse Barnes776ad802011-01-04 15:09:39 -08002221
Daniel Vetterce99c252012-12-01 13:53:47 +01002222 if (pch_iir & SDE_AUX_MASK)
2223 dp_aux_irq_handler(dev);
2224
Jesse Barnes776ad802011-01-04 15:09:39 -08002225 if (pch_iir & SDE_GMBUS)
Daniel Vetter515ac2b2012-12-01 13:53:44 +01002226 gmbus_irq_handler(dev);
Jesse Barnes776ad802011-01-04 15:09:39 -08002227
2228 if (pch_iir & SDE_AUDIO_HDCP_MASK)
2229 DRM_DEBUG_DRIVER("PCH HDCP audio interrupt\n");
2230
2231 if (pch_iir & SDE_AUDIO_TRANS_MASK)
2232 DRM_DEBUG_DRIVER("PCH transcoder audio interrupt\n");
2233
2234 if (pch_iir & SDE_POISON)
2235 DRM_ERROR("PCH poison interrupt\n");
2236
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08002237 if (pch_iir & SDE_FDI_MASK)
Damien Lespiau055e3932014-08-18 13:49:10 +01002238 for_each_pipe(dev_priv, pipe)
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08002239 DRM_DEBUG_DRIVER(" pipe %c FDI IIR: 0x%08x\n",
2240 pipe_name(pipe),
2241 I915_READ(FDI_RX_IIR(pipe)));
Jesse Barnes776ad802011-01-04 15:09:39 -08002242
2243 if (pch_iir & (SDE_TRANSB_CRC_DONE | SDE_TRANSA_CRC_DONE))
2244 DRM_DEBUG_DRIVER("PCH transcoder CRC done interrupt\n");
2245
2246 if (pch_iir & (SDE_TRANSB_CRC_ERR | SDE_TRANSA_CRC_ERR))
2247 DRM_DEBUG_DRIVER("PCH transcoder CRC error interrupt\n");
2248
Jesse Barnes776ad802011-01-04 15:09:39 -08002249 if (pch_iir & SDE_TRANSA_FIFO_UNDER)
Paulo Zanoni86642812013-04-12 17:57:57 -03002250 if (intel_set_pch_fifo_underrun_reporting(dev, TRANSCODER_A,
2251 false))
Ville Syrjäläfc2c8072014-01-17 11:44:32 +02002252 DRM_ERROR("PCH transcoder A FIFO underrun\n");
Paulo Zanoni86642812013-04-12 17:57:57 -03002253
2254 if (pch_iir & SDE_TRANSB_FIFO_UNDER)
2255 if (intel_set_pch_fifo_underrun_reporting(dev, TRANSCODER_B,
2256 false))
Ville Syrjäläfc2c8072014-01-17 11:44:32 +02002257 DRM_ERROR("PCH transcoder B FIFO underrun\n");
Paulo Zanoni86642812013-04-12 17:57:57 -03002258}
2259
2260static void ivb_err_int_handler(struct drm_device *dev)
2261{
2262 struct drm_i915_private *dev_priv = dev->dev_private;
2263 u32 err_int = I915_READ(GEN7_ERR_INT);
Daniel Vetter5a69b892013-10-16 22:55:52 +02002264 enum pipe pipe;
Paulo Zanoni86642812013-04-12 17:57:57 -03002265
Paulo Zanonide032bf2013-04-12 17:57:58 -03002266 if (err_int & ERR_INT_POISON)
2267 DRM_ERROR("Poison interrupt\n");
2268
Damien Lespiau055e3932014-08-18 13:49:10 +01002269 for_each_pipe(dev_priv, pipe) {
Daniel Vetter5a69b892013-10-16 22:55:52 +02002270 if (err_int & ERR_INT_FIFO_UNDERRUN(pipe)) {
2271 if (intel_set_cpu_fifo_underrun_reporting(dev, pipe,
2272 false))
Ville Syrjäläfc2c8072014-01-17 11:44:32 +02002273 DRM_ERROR("Pipe %c FIFO underrun\n",
2274 pipe_name(pipe));
Daniel Vetter5a69b892013-10-16 22:55:52 +02002275 }
Paulo Zanoni86642812013-04-12 17:57:57 -03002276
Daniel Vetter5a69b892013-10-16 22:55:52 +02002277 if (err_int & ERR_INT_PIPE_CRC_DONE(pipe)) {
2278 if (IS_IVYBRIDGE(dev))
Daniel Vetter277de952013-10-18 16:37:07 +02002279 ivb_pipe_crc_irq_handler(dev, pipe);
Daniel Vetter5a69b892013-10-16 22:55:52 +02002280 else
Daniel Vetter277de952013-10-18 16:37:07 +02002281 hsw_pipe_crc_irq_handler(dev, pipe);
Daniel Vetter5a69b892013-10-16 22:55:52 +02002282 }
2283 }
Shuang He8bf1e9f2013-10-15 18:55:27 +01002284
Paulo Zanoni86642812013-04-12 17:57:57 -03002285 I915_WRITE(GEN7_ERR_INT, err_int);
2286}
2287
2288static void cpt_serr_int_handler(struct drm_device *dev)
2289{
2290 struct drm_i915_private *dev_priv = dev->dev_private;
2291 u32 serr_int = I915_READ(SERR_INT);
2292
Paulo Zanonide032bf2013-04-12 17:57:58 -03002293 if (serr_int & SERR_INT_POISON)
2294 DRM_ERROR("PCH poison interrupt\n");
2295
Paulo Zanoni86642812013-04-12 17:57:57 -03002296 if (serr_int & SERR_INT_TRANS_A_FIFO_UNDERRUN)
2297 if (intel_set_pch_fifo_underrun_reporting(dev, TRANSCODER_A,
2298 false))
Ville Syrjäläfc2c8072014-01-17 11:44:32 +02002299 DRM_ERROR("PCH transcoder A FIFO underrun\n");
Paulo Zanoni86642812013-04-12 17:57:57 -03002300
2301 if (serr_int & SERR_INT_TRANS_B_FIFO_UNDERRUN)
2302 if (intel_set_pch_fifo_underrun_reporting(dev, TRANSCODER_B,
2303 false))
Ville Syrjäläfc2c8072014-01-17 11:44:32 +02002304 DRM_ERROR("PCH transcoder B FIFO underrun\n");
Paulo Zanoni86642812013-04-12 17:57:57 -03002305
2306 if (serr_int & SERR_INT_TRANS_C_FIFO_UNDERRUN)
2307 if (intel_set_pch_fifo_underrun_reporting(dev, TRANSCODER_C,
2308 false))
Ville Syrjäläfc2c8072014-01-17 11:44:32 +02002309 DRM_ERROR("PCH transcoder C FIFO underrun\n");
Paulo Zanoni86642812013-04-12 17:57:57 -03002310
2311 I915_WRITE(SERR_INT, serr_int);
Jesse Barnes776ad802011-01-04 15:09:39 -08002312}
2313
Adam Jackson23e81d62012-06-06 15:45:44 -04002314static void cpt_irq_handler(struct drm_device *dev, u32 pch_iir)
2315{
Jani Nikula2d1013d2014-03-31 14:27:17 +03002316 struct drm_i915_private *dev_priv = dev->dev_private;
Adam Jackson23e81d62012-06-06 15:45:44 -04002317 int pipe;
Egbert Eichb543fb02013-04-16 13:36:54 +02002318 u32 hotplug_trigger = pch_iir & SDE_HOTPLUG_MASK_CPT;
Dave Airlie13cf5502014-06-18 11:29:35 +10002319 u32 dig_hotplug_reg;
Adam Jackson23e81d62012-06-06 15:45:44 -04002320
Dave Airlie13cf5502014-06-18 11:29:35 +10002321 dig_hotplug_reg = I915_READ(PCH_PORT_HOTPLUG);
2322 I915_WRITE(PCH_PORT_HOTPLUG, dig_hotplug_reg);
2323
2324 intel_hpd_irq_handler(dev, hotplug_trigger, dig_hotplug_reg, hpd_cpt);
Daniel Vetter91d131d2013-06-27 17:52:14 +02002325
Ville Syrjäläcfc33bf2013-04-17 17:48:48 +03002326 if (pch_iir & SDE_AUDIO_POWER_MASK_CPT) {
2327 int port = ffs((pch_iir & SDE_AUDIO_POWER_MASK_CPT) >>
2328 SDE_AUDIO_POWER_SHIFT_CPT);
2329 DRM_DEBUG_DRIVER("PCH audio power change on port %c\n",
2330 port_name(port));
2331 }
Adam Jackson23e81d62012-06-06 15:45:44 -04002332
2333 if (pch_iir & SDE_AUX_MASK_CPT)
Daniel Vetterce99c252012-12-01 13:53:47 +01002334 dp_aux_irq_handler(dev);
Adam Jackson23e81d62012-06-06 15:45:44 -04002335
2336 if (pch_iir & SDE_GMBUS_CPT)
Daniel Vetter515ac2b2012-12-01 13:53:44 +01002337 gmbus_irq_handler(dev);
Adam Jackson23e81d62012-06-06 15:45:44 -04002338
2339 if (pch_iir & SDE_AUDIO_CP_REQ_CPT)
2340 DRM_DEBUG_DRIVER("Audio CP request interrupt\n");
2341
2342 if (pch_iir & SDE_AUDIO_CP_CHG_CPT)
2343 DRM_DEBUG_DRIVER("Audio CP change interrupt\n");
2344
2345 if (pch_iir & SDE_FDI_MASK_CPT)
Damien Lespiau055e3932014-08-18 13:49:10 +01002346 for_each_pipe(dev_priv, pipe)
Adam Jackson23e81d62012-06-06 15:45:44 -04002347 DRM_DEBUG_DRIVER(" pipe %c FDI IIR: 0x%08x\n",
2348 pipe_name(pipe),
2349 I915_READ(FDI_RX_IIR(pipe)));
Paulo Zanoni86642812013-04-12 17:57:57 -03002350
2351 if (pch_iir & SDE_ERROR_CPT)
2352 cpt_serr_int_handler(dev);
Adam Jackson23e81d62012-06-06 15:45:44 -04002353}
2354
Paulo Zanonic008bc62013-07-12 16:35:10 -03002355static void ilk_display_irq_handler(struct drm_device *dev, u32 de_iir)
2356{
2357 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter40da17c2013-10-21 18:04:36 +02002358 enum pipe pipe;
Paulo Zanonic008bc62013-07-12 16:35:10 -03002359
2360 if (de_iir & DE_AUX_CHANNEL_A)
2361 dp_aux_irq_handler(dev);
2362
2363 if (de_iir & DE_GSE)
2364 intel_opregion_asle_intr(dev);
2365
Paulo Zanonic008bc62013-07-12 16:35:10 -03002366 if (de_iir & DE_POISON)
2367 DRM_ERROR("Poison interrupt\n");
2368
Damien Lespiau055e3932014-08-18 13:49:10 +01002369 for_each_pipe(dev_priv, pipe) {
Chris Wilsond6bbafa2014-09-05 07:13:24 +01002370 if (de_iir & DE_PIPE_VBLANK(pipe) &&
2371 intel_pipe_handle_vblank(dev, pipe))
2372 intel_check_page_flip(dev, pipe);
Paulo Zanonic008bc62013-07-12 16:35:10 -03002373
Daniel Vetter40da17c2013-10-21 18:04:36 +02002374 if (de_iir & DE_PIPE_FIFO_UNDERRUN(pipe))
2375 if (intel_set_cpu_fifo_underrun_reporting(dev, pipe, false))
Ville Syrjäläfc2c8072014-01-17 11:44:32 +02002376 DRM_ERROR("Pipe %c FIFO underrun\n",
2377 pipe_name(pipe));
Paulo Zanonic008bc62013-07-12 16:35:10 -03002378
Daniel Vetter40da17c2013-10-21 18:04:36 +02002379 if (de_iir & DE_PIPE_CRC_DONE(pipe))
2380 i9xx_pipe_crc_irq_handler(dev, pipe);
Daniel Vetter5b3a8562013-10-16 22:55:48 +02002381
Daniel Vetter40da17c2013-10-21 18:04:36 +02002382 /* plane/pipes map 1:1 on ilk+ */
2383 if (de_iir & DE_PLANE_FLIP_DONE(pipe)) {
2384 intel_prepare_page_flip(dev, pipe);
2385 intel_finish_page_flip_plane(dev, pipe);
2386 }
Paulo Zanonic008bc62013-07-12 16:35:10 -03002387 }
2388
2389 /* check event from PCH */
2390 if (de_iir & DE_PCH_EVENT) {
2391 u32 pch_iir = I915_READ(SDEIIR);
2392
2393 if (HAS_PCH_CPT(dev))
2394 cpt_irq_handler(dev, pch_iir);
2395 else
2396 ibx_irq_handler(dev, pch_iir);
2397
2398 /* should clear PCH hotplug event before clear CPU irq */
2399 I915_WRITE(SDEIIR, pch_iir);
2400 }
2401
2402 if (IS_GEN5(dev) && de_iir & DE_PCU_EVENT)
2403 ironlake_rps_change_irq_handler(dev);
2404}
2405
Paulo Zanoni9719fb92013-07-12 16:35:11 -03002406static void ivb_display_irq_handler(struct drm_device *dev, u32 de_iir)
2407{
2408 struct drm_i915_private *dev_priv = dev->dev_private;
Damien Lespiau07d27e22014-03-03 17:31:46 +00002409 enum pipe pipe;
Paulo Zanoni9719fb92013-07-12 16:35:11 -03002410
2411 if (de_iir & DE_ERR_INT_IVB)
2412 ivb_err_int_handler(dev);
2413
2414 if (de_iir & DE_AUX_CHANNEL_A_IVB)
2415 dp_aux_irq_handler(dev);
2416
2417 if (de_iir & DE_GSE_IVB)
2418 intel_opregion_asle_intr(dev);
2419
Damien Lespiau055e3932014-08-18 13:49:10 +01002420 for_each_pipe(dev_priv, pipe) {
Chris Wilsond6bbafa2014-09-05 07:13:24 +01002421 if (de_iir & (DE_PIPE_VBLANK_IVB(pipe)) &&
2422 intel_pipe_handle_vblank(dev, pipe))
2423 intel_check_page_flip(dev, pipe);
Daniel Vetter40da17c2013-10-21 18:04:36 +02002424
2425 /* plane/pipes map 1:1 on ilk+ */
Damien Lespiau07d27e22014-03-03 17:31:46 +00002426 if (de_iir & DE_PLANE_FLIP_DONE_IVB(pipe)) {
2427 intel_prepare_page_flip(dev, pipe);
2428 intel_finish_page_flip_plane(dev, pipe);
Paulo Zanoni9719fb92013-07-12 16:35:11 -03002429 }
2430 }
2431
2432 /* check event from PCH */
2433 if (!HAS_PCH_NOP(dev) && (de_iir & DE_PCH_EVENT_IVB)) {
2434 u32 pch_iir = I915_READ(SDEIIR);
2435
2436 cpt_irq_handler(dev, pch_iir);
2437
2438 /* clear PCH hotplug event before clear CPU irq */
2439 I915_WRITE(SDEIIR, pch_iir);
2440 }
2441}
2442
Oscar Mateo72c90f62014-06-16 16:10:57 +01002443/*
2444 * To handle irqs with the minimum potential races with fresh interrupts, we:
2445 * 1 - Disable Master Interrupt Control.
2446 * 2 - Find the source(s) of the interrupt.
2447 * 3 - Clear the Interrupt Identity bits (IIR).
2448 * 4 - Process the interrupt(s) that had bits set in the IIRs.
2449 * 5 - Re-enable Master Interrupt Control.
2450 */
Paulo Zanonif1af8fc2013-07-12 19:56:30 -03002451static irqreturn_t ironlake_irq_handler(int irq, void *arg)
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002452{
Daniel Vetter45a83f82014-05-12 19:17:55 +02002453 struct drm_device *dev = arg;
Jani Nikula2d1013d2014-03-31 14:27:17 +03002454 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanonif1af8fc2013-07-12 19:56:30 -03002455 u32 de_iir, gt_iir, de_ier, sde_ier = 0;
Chris Wilson0e434062012-05-09 21:45:44 +01002456 irqreturn_t ret = IRQ_NONE;
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002457
Paulo Zanoni86642812013-04-12 17:57:57 -03002458 /* We get interrupts on unclaimed registers, so check for this before we
2459 * do any I915_{READ,WRITE}. */
Chris Wilson907b28c2013-07-19 20:36:52 +01002460 intel_uncore_check_errors(dev);
Paulo Zanoni86642812013-04-12 17:57:57 -03002461
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002462 /* disable master interrupt before clearing iir */
2463 de_ier = I915_READ(DEIER);
2464 I915_WRITE(DEIER, de_ier & ~DE_MASTER_IRQ_CONTROL);
Paulo Zanoni23a78512013-07-12 16:35:14 -03002465 POSTING_READ(DEIER);
Chris Wilson0e434062012-05-09 21:45:44 +01002466
Paulo Zanoni44498ae2013-02-22 17:05:28 -03002467 /* Disable south interrupts. We'll only write to SDEIIR once, so further
2468 * interrupts will will be stored on its back queue, and then we'll be
2469 * able to process them after we restore SDEIER (as soon as we restore
2470 * it, we'll get an interrupt if SDEIIR still has something to process
2471 * due to its back queue). */
Ben Widawskyab5c6082013-04-05 13:12:41 -07002472 if (!HAS_PCH_NOP(dev)) {
2473 sde_ier = I915_READ(SDEIER);
2474 I915_WRITE(SDEIER, 0);
2475 POSTING_READ(SDEIER);
2476 }
Paulo Zanoni44498ae2013-02-22 17:05:28 -03002477
Oscar Mateo72c90f62014-06-16 16:10:57 +01002478 /* Find, clear, then process each source of interrupt */
2479
Chris Wilson0e434062012-05-09 21:45:44 +01002480 gt_iir = I915_READ(GTIIR);
2481 if (gt_iir) {
Oscar Mateo72c90f62014-06-16 16:10:57 +01002482 I915_WRITE(GTIIR, gt_iir);
2483 ret = IRQ_HANDLED;
Paulo Zanonid8fc8a42013-07-19 18:57:55 -03002484 if (INTEL_INFO(dev)->gen >= 6)
Paulo Zanonif1af8fc2013-07-12 19:56:30 -03002485 snb_gt_irq_handler(dev, dev_priv, gt_iir);
Paulo Zanonid8fc8a42013-07-19 18:57:55 -03002486 else
2487 ilk_gt_irq_handler(dev, dev_priv, gt_iir);
Chris Wilson0e434062012-05-09 21:45:44 +01002488 }
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002489
2490 de_iir = I915_READ(DEIIR);
Chris Wilson0e434062012-05-09 21:45:44 +01002491 if (de_iir) {
Oscar Mateo72c90f62014-06-16 16:10:57 +01002492 I915_WRITE(DEIIR, de_iir);
2493 ret = IRQ_HANDLED;
Paulo Zanonif1af8fc2013-07-12 19:56:30 -03002494 if (INTEL_INFO(dev)->gen >= 7)
2495 ivb_display_irq_handler(dev, de_iir);
2496 else
2497 ilk_display_irq_handler(dev, de_iir);
Chris Wilson0e434062012-05-09 21:45:44 +01002498 }
2499
Paulo Zanonif1af8fc2013-07-12 19:56:30 -03002500 if (INTEL_INFO(dev)->gen >= 6) {
2501 u32 pm_iir = I915_READ(GEN6_PMIIR);
2502 if (pm_iir) {
Paulo Zanonif1af8fc2013-07-12 19:56:30 -03002503 I915_WRITE(GEN6_PMIIR, pm_iir);
2504 ret = IRQ_HANDLED;
Oscar Mateo72c90f62014-06-16 16:10:57 +01002505 gen6_rps_irq_handler(dev_priv, pm_iir);
Paulo Zanonif1af8fc2013-07-12 19:56:30 -03002506 }
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002507 }
2508
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002509 I915_WRITE(DEIER, de_ier);
2510 POSTING_READ(DEIER);
Ben Widawskyab5c6082013-04-05 13:12:41 -07002511 if (!HAS_PCH_NOP(dev)) {
2512 I915_WRITE(SDEIER, sde_ier);
2513 POSTING_READ(SDEIER);
2514 }
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002515
2516 return ret;
2517}
2518
Ben Widawskyabd58f02013-11-02 21:07:09 -07002519static irqreturn_t gen8_irq_handler(int irq, void *arg)
2520{
2521 struct drm_device *dev = arg;
2522 struct drm_i915_private *dev_priv = dev->dev_private;
2523 u32 master_ctl;
2524 irqreturn_t ret = IRQ_NONE;
2525 uint32_t tmp = 0;
Daniel Vetterc42664c2013-11-07 11:05:40 +01002526 enum pipe pipe;
Ben Widawskyabd58f02013-11-02 21:07:09 -07002527
Ben Widawskyabd58f02013-11-02 21:07:09 -07002528 master_ctl = I915_READ(GEN8_MASTER_IRQ);
2529 master_ctl &= ~GEN8_MASTER_IRQ_CONTROL;
2530 if (!master_ctl)
2531 return IRQ_NONE;
2532
2533 I915_WRITE(GEN8_MASTER_IRQ, 0);
2534 POSTING_READ(GEN8_MASTER_IRQ);
2535
Oscar Mateo38cc46d2014-06-16 16:10:59 +01002536 /* Find, clear, then process each source of interrupt */
2537
Ben Widawskyabd58f02013-11-02 21:07:09 -07002538 ret = gen8_gt_irq_handler(dev, dev_priv, master_ctl);
2539
2540 if (master_ctl & GEN8_DE_MISC_IRQ) {
2541 tmp = I915_READ(GEN8_DE_MISC_IIR);
Ben Widawskyabd58f02013-11-02 21:07:09 -07002542 if (tmp) {
2543 I915_WRITE(GEN8_DE_MISC_IIR, tmp);
2544 ret = IRQ_HANDLED;
Oscar Mateo38cc46d2014-06-16 16:10:59 +01002545 if (tmp & GEN8_DE_MISC_GSE)
2546 intel_opregion_asle_intr(dev);
2547 else
2548 DRM_ERROR("Unexpected DE Misc interrupt\n");
Ben Widawskyabd58f02013-11-02 21:07:09 -07002549 }
Oscar Mateo38cc46d2014-06-16 16:10:59 +01002550 else
2551 DRM_ERROR("The master control interrupt lied (DE MISC)!\n");
Ben Widawskyabd58f02013-11-02 21:07:09 -07002552 }
2553
Daniel Vetter6d766f02013-11-07 14:49:55 +01002554 if (master_ctl & GEN8_DE_PORT_IRQ) {
2555 tmp = I915_READ(GEN8_DE_PORT_IIR);
Daniel Vetter6d766f02013-11-07 14:49:55 +01002556 if (tmp) {
2557 I915_WRITE(GEN8_DE_PORT_IIR, tmp);
2558 ret = IRQ_HANDLED;
Oscar Mateo38cc46d2014-06-16 16:10:59 +01002559 if (tmp & GEN8_AUX_CHANNEL_A)
2560 dp_aux_irq_handler(dev);
2561 else
2562 DRM_ERROR("Unexpected DE Port interrupt\n");
Daniel Vetter6d766f02013-11-07 14:49:55 +01002563 }
Oscar Mateo38cc46d2014-06-16 16:10:59 +01002564 else
2565 DRM_ERROR("The master control interrupt lied (DE PORT)!\n");
Daniel Vetter6d766f02013-11-07 14:49:55 +01002566 }
2567
Damien Lespiau055e3932014-08-18 13:49:10 +01002568 for_each_pipe(dev_priv, pipe) {
Daniel Vetterc42664c2013-11-07 11:05:40 +01002569 uint32_t pipe_iir;
Ben Widawskyabd58f02013-11-02 21:07:09 -07002570
Daniel Vetterc42664c2013-11-07 11:05:40 +01002571 if (!(master_ctl & GEN8_DE_PIPE_IRQ(pipe)))
2572 continue;
Ben Widawskyabd58f02013-11-02 21:07:09 -07002573
Daniel Vetterc42664c2013-11-07 11:05:40 +01002574 pipe_iir = I915_READ(GEN8_DE_PIPE_IIR(pipe));
Daniel Vetterc42664c2013-11-07 11:05:40 +01002575 if (pipe_iir) {
2576 ret = IRQ_HANDLED;
2577 I915_WRITE(GEN8_DE_PIPE_IIR(pipe), pipe_iir);
Chris Wilsond6bbafa2014-09-05 07:13:24 +01002578 if (pipe_iir & GEN8_PIPE_VBLANK &&
2579 intel_pipe_handle_vblank(dev, pipe))
2580 intel_check_page_flip(dev, pipe);
Oscar Mateo38cc46d2014-06-16 16:10:59 +01002581
2582 if (pipe_iir & GEN8_PIPE_PRIMARY_FLIP_DONE) {
2583 intel_prepare_page_flip(dev, pipe);
2584 intel_finish_page_flip_plane(dev, pipe);
2585 }
2586
2587 if (pipe_iir & GEN8_PIPE_CDCLK_CRC_DONE)
2588 hsw_pipe_crc_irq_handler(dev, pipe);
2589
2590 if (pipe_iir & GEN8_PIPE_FIFO_UNDERRUN) {
2591 if (intel_set_cpu_fifo_underrun_reporting(dev, pipe,
2592 false))
2593 DRM_ERROR("Pipe %c FIFO underrun\n",
2594 pipe_name(pipe));
2595 }
2596
2597 if (pipe_iir & GEN8_DE_PIPE_IRQ_FAULT_ERRORS) {
2598 DRM_ERROR("Fault errors on pipe %c\n: 0x%08x",
2599 pipe_name(pipe),
2600 pipe_iir & GEN8_DE_PIPE_IRQ_FAULT_ERRORS);
2601 }
Daniel Vetterc42664c2013-11-07 11:05:40 +01002602 } else
Ben Widawskyabd58f02013-11-02 21:07:09 -07002603 DRM_ERROR("The master control interrupt lied (DE PIPE)!\n");
2604 }
2605
Daniel Vetter92d03a82013-11-07 11:05:43 +01002606 if (!HAS_PCH_NOP(dev) && master_ctl & GEN8_DE_PCH_IRQ) {
2607 /*
2608 * FIXME(BDW): Assume for now that the new interrupt handling
2609 * scheme also closed the SDE interrupt handling race we've seen
2610 * on older pch-split platforms. But this needs testing.
2611 */
2612 u32 pch_iir = I915_READ(SDEIIR);
Daniel Vetter92d03a82013-11-07 11:05:43 +01002613 if (pch_iir) {
2614 I915_WRITE(SDEIIR, pch_iir);
2615 ret = IRQ_HANDLED;
Oscar Mateo38cc46d2014-06-16 16:10:59 +01002616 cpt_irq_handler(dev, pch_iir);
2617 } else
2618 DRM_ERROR("The master control interrupt lied (SDE)!\n");
2619
Daniel Vetter92d03a82013-11-07 11:05:43 +01002620 }
2621
Ben Widawskyabd58f02013-11-02 21:07:09 -07002622 I915_WRITE(GEN8_MASTER_IRQ, GEN8_MASTER_IRQ_CONTROL);
2623 POSTING_READ(GEN8_MASTER_IRQ);
2624
2625 return ret;
2626}
2627
Daniel Vetter17e1df02013-09-08 21:57:13 +02002628static void i915_error_wake_up(struct drm_i915_private *dev_priv,
2629 bool reset_completed)
2630{
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002631 struct intel_engine_cs *ring;
Daniel Vetter17e1df02013-09-08 21:57:13 +02002632 int i;
2633
2634 /*
2635 * Notify all waiters for GPU completion events that reset state has
2636 * been changed, and that they need to restart their wait after
2637 * checking for potential errors (and bail out to drop locks if there is
2638 * a gpu reset pending so that i915_error_work_func can acquire them).
2639 */
2640
2641 /* Wake up __wait_seqno, potentially holding dev->struct_mutex. */
2642 for_each_ring(ring, dev_priv, i)
2643 wake_up_all(&ring->irq_queue);
2644
2645 /* Wake up intel_crtc_wait_for_pending_flips, holding crtc->mutex. */
2646 wake_up_all(&dev_priv->pending_flip_queue);
2647
2648 /*
2649 * Signal tasks blocked in i915_gem_wait_for_error that the pending
2650 * reset state is cleared.
2651 */
2652 if (reset_completed)
2653 wake_up_all(&dev_priv->gpu_error.reset_queue);
2654}
2655
Jesse Barnes8a905232009-07-11 16:48:03 -04002656/**
2657 * i915_error_work_func - do process context error handling work
2658 * @work: work struct
2659 *
2660 * Fire an error uevent so userspace can see that a hang or error
2661 * was detected.
2662 */
2663static void i915_error_work_func(struct work_struct *work)
2664{
Daniel Vetter1f83fee2012-11-15 17:17:22 +01002665 struct i915_gpu_error *error = container_of(work, struct i915_gpu_error,
2666 work);
Jani Nikula2d1013d2014-03-31 14:27:17 +03002667 struct drm_i915_private *dev_priv =
2668 container_of(error, struct drm_i915_private, gpu_error);
Jesse Barnes8a905232009-07-11 16:48:03 -04002669 struct drm_device *dev = dev_priv->dev;
Ben Widawskycce723e2013-07-19 09:16:42 -07002670 char *error_event[] = { I915_ERROR_UEVENT "=1", NULL };
2671 char *reset_event[] = { I915_RESET_UEVENT "=1", NULL };
2672 char *reset_done_event[] = { I915_ERROR_UEVENT "=0", NULL };
Daniel Vetter17e1df02013-09-08 21:57:13 +02002673 int ret;
Jesse Barnes8a905232009-07-11 16:48:03 -04002674
Dave Airlie5bdebb12013-10-11 14:07:25 +10002675 kobject_uevent_env(&dev->primary->kdev->kobj, KOBJ_CHANGE, error_event);
Jesse Barnes8a905232009-07-11 16:48:03 -04002676
Daniel Vetter7db0ba22012-12-06 16:23:37 +01002677 /*
2678 * Note that there's only one work item which does gpu resets, so we
2679 * need not worry about concurrent gpu resets potentially incrementing
2680 * error->reset_counter twice. We only need to take care of another
2681 * racing irq/hangcheck declaring the gpu dead for a second time. A
2682 * quick check for that is good enough: schedule_work ensures the
2683 * correct ordering between hang detection and this work item, and since
2684 * the reset in-progress bit is only ever set by code outside of this
2685 * work we don't need to worry about any other races.
2686 */
2687 if (i915_reset_in_progress(error) && !i915_terminally_wedged(error)) {
Chris Wilsonf803aa52010-09-19 12:38:26 +01002688 DRM_DEBUG_DRIVER("resetting chip\n");
Dave Airlie5bdebb12013-10-11 14:07:25 +10002689 kobject_uevent_env(&dev->primary->kdev->kobj, KOBJ_CHANGE,
Daniel Vetter7db0ba22012-12-06 16:23:37 +01002690 reset_event);
Daniel Vetter1f83fee2012-11-15 17:17:22 +01002691
Daniel Vetter17e1df02013-09-08 21:57:13 +02002692 /*
Imre Deakf454c692014-04-23 01:09:04 +03002693 * In most cases it's guaranteed that we get here with an RPM
2694 * reference held, for example because there is a pending GPU
2695 * request that won't finish until the reset is done. This
2696 * isn't the case at least when we get here by doing a
2697 * simulated reset via debugs, so get an RPM reference.
2698 */
2699 intel_runtime_pm_get(dev_priv);
2700 /*
Daniel Vetter17e1df02013-09-08 21:57:13 +02002701 * All state reset _must_ be completed before we update the
2702 * reset counter, for otherwise waiters might miss the reset
2703 * pending state and not properly drop locks, resulting in
2704 * deadlocks with the reset work.
2705 */
Daniel Vetterf69061b2012-12-06 09:01:42 +01002706 ret = i915_reset(dev);
2707
Daniel Vetter17e1df02013-09-08 21:57:13 +02002708 intel_display_handle_reset(dev);
2709
Imre Deakf454c692014-04-23 01:09:04 +03002710 intel_runtime_pm_put(dev_priv);
2711
Daniel Vetterf69061b2012-12-06 09:01:42 +01002712 if (ret == 0) {
2713 /*
2714 * After all the gem state is reset, increment the reset
2715 * counter and wake up everyone waiting for the reset to
2716 * complete.
2717 *
2718 * Since unlock operations are a one-sided barrier only,
2719 * we need to insert a barrier here to order any seqno
2720 * updates before
2721 * the counter increment.
2722 */
Peter Zijlstra4e857c52014-03-17 18:06:10 +01002723 smp_mb__before_atomic();
Daniel Vetterf69061b2012-12-06 09:01:42 +01002724 atomic_inc(&dev_priv->gpu_error.reset_counter);
2725
Dave Airlie5bdebb12013-10-11 14:07:25 +10002726 kobject_uevent_env(&dev->primary->kdev->kobj,
Daniel Vetterf69061b2012-12-06 09:01:42 +01002727 KOBJ_CHANGE, reset_done_event);
Daniel Vetter1f83fee2012-11-15 17:17:22 +01002728 } else {
Mika Kuoppala2ac0f452013-11-12 14:44:19 +02002729 atomic_set_mask(I915_WEDGED, &error->reset_counter);
Ben Gamarif316a422009-09-14 17:48:46 -04002730 }
Daniel Vetter1f83fee2012-11-15 17:17:22 +01002731
Daniel Vetter17e1df02013-09-08 21:57:13 +02002732 /*
2733 * Note: The wake_up also serves as a memory barrier so that
2734 * waiters see the update value of the reset counter atomic_t.
2735 */
2736 i915_error_wake_up(dev_priv, true);
Ben Gamarif316a422009-09-14 17:48:46 -04002737 }
Jesse Barnes8a905232009-07-11 16:48:03 -04002738}
2739
Chris Wilson35aed2e2010-05-27 13:18:12 +01002740static void i915_report_and_clear_eir(struct drm_device *dev)
Jesse Barnes8a905232009-07-11 16:48:03 -04002741{
2742 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawskybd9854f2012-08-23 15:18:09 -07002743 uint32_t instdone[I915_NUM_INSTDONE_REG];
Jesse Barnes8a905232009-07-11 16:48:03 -04002744 u32 eir = I915_READ(EIR);
Ben Widawsky050ee912012-08-22 11:32:15 -07002745 int pipe, i;
Jesse Barnes8a905232009-07-11 16:48:03 -04002746
Chris Wilson35aed2e2010-05-27 13:18:12 +01002747 if (!eir)
2748 return;
Jesse Barnes8a905232009-07-11 16:48:03 -04002749
Joe Perchesa70491c2012-03-18 13:00:11 -07002750 pr_err("render error detected, EIR: 0x%08x\n", eir);
Jesse Barnes8a905232009-07-11 16:48:03 -04002751
Ben Widawskybd9854f2012-08-23 15:18:09 -07002752 i915_get_extra_instdone(dev, instdone);
2753
Jesse Barnes8a905232009-07-11 16:48:03 -04002754 if (IS_G4X(dev)) {
2755 if (eir & (GM45_ERROR_MEM_PRIV | GM45_ERROR_CP_PRIV)) {
2756 u32 ipeir = I915_READ(IPEIR_I965);
2757
Joe Perchesa70491c2012-03-18 13:00:11 -07002758 pr_err(" IPEIR: 0x%08x\n", I915_READ(IPEIR_I965));
2759 pr_err(" IPEHR: 0x%08x\n", I915_READ(IPEHR_I965));
Ben Widawsky050ee912012-08-22 11:32:15 -07002760 for (i = 0; i < ARRAY_SIZE(instdone); i++)
2761 pr_err(" INSTDONE_%d: 0x%08x\n", i, instdone[i]);
Joe Perchesa70491c2012-03-18 13:00:11 -07002762 pr_err(" INSTPS: 0x%08x\n", I915_READ(INSTPS));
Joe Perchesa70491c2012-03-18 13:00:11 -07002763 pr_err(" ACTHD: 0x%08x\n", I915_READ(ACTHD_I965));
Jesse Barnes8a905232009-07-11 16:48:03 -04002764 I915_WRITE(IPEIR_I965, ipeir);
Chris Wilson3143a2b2010-11-16 15:55:10 +00002765 POSTING_READ(IPEIR_I965);
Jesse Barnes8a905232009-07-11 16:48:03 -04002766 }
2767 if (eir & GM45_ERROR_PAGE_TABLE) {
2768 u32 pgtbl_err = I915_READ(PGTBL_ER);
Joe Perchesa70491c2012-03-18 13:00:11 -07002769 pr_err("page table error\n");
2770 pr_err(" PGTBL_ER: 0x%08x\n", pgtbl_err);
Jesse Barnes8a905232009-07-11 16:48:03 -04002771 I915_WRITE(PGTBL_ER, pgtbl_err);
Chris Wilson3143a2b2010-11-16 15:55:10 +00002772 POSTING_READ(PGTBL_ER);
Jesse Barnes8a905232009-07-11 16:48:03 -04002773 }
2774 }
2775
Chris Wilsona6c45cf2010-09-17 00:32:17 +01002776 if (!IS_GEN2(dev)) {
Jesse Barnes8a905232009-07-11 16:48:03 -04002777 if (eir & I915_ERROR_PAGE_TABLE) {
2778 u32 pgtbl_err = I915_READ(PGTBL_ER);
Joe Perchesa70491c2012-03-18 13:00:11 -07002779 pr_err("page table error\n");
2780 pr_err(" PGTBL_ER: 0x%08x\n", pgtbl_err);
Jesse Barnes8a905232009-07-11 16:48:03 -04002781 I915_WRITE(PGTBL_ER, pgtbl_err);
Chris Wilson3143a2b2010-11-16 15:55:10 +00002782 POSTING_READ(PGTBL_ER);
Jesse Barnes8a905232009-07-11 16:48:03 -04002783 }
2784 }
2785
2786 if (eir & I915_ERROR_MEMORY_REFRESH) {
Joe Perchesa70491c2012-03-18 13:00:11 -07002787 pr_err("memory refresh error:\n");
Damien Lespiau055e3932014-08-18 13:49:10 +01002788 for_each_pipe(dev_priv, pipe)
Joe Perchesa70491c2012-03-18 13:00:11 -07002789 pr_err("pipe %c stat: 0x%08x\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08002790 pipe_name(pipe), I915_READ(PIPESTAT(pipe)));
Jesse Barnes8a905232009-07-11 16:48:03 -04002791 /* pipestat has already been acked */
2792 }
2793 if (eir & I915_ERROR_INSTRUCTION) {
Joe Perchesa70491c2012-03-18 13:00:11 -07002794 pr_err("instruction error\n");
2795 pr_err(" INSTPM: 0x%08x\n", I915_READ(INSTPM));
Ben Widawsky050ee912012-08-22 11:32:15 -07002796 for (i = 0; i < ARRAY_SIZE(instdone); i++)
2797 pr_err(" INSTDONE_%d: 0x%08x\n", i, instdone[i]);
Chris Wilsona6c45cf2010-09-17 00:32:17 +01002798 if (INTEL_INFO(dev)->gen < 4) {
Jesse Barnes8a905232009-07-11 16:48:03 -04002799 u32 ipeir = I915_READ(IPEIR);
2800
Joe Perchesa70491c2012-03-18 13:00:11 -07002801 pr_err(" IPEIR: 0x%08x\n", I915_READ(IPEIR));
2802 pr_err(" IPEHR: 0x%08x\n", I915_READ(IPEHR));
Joe Perchesa70491c2012-03-18 13:00:11 -07002803 pr_err(" ACTHD: 0x%08x\n", I915_READ(ACTHD));
Jesse Barnes8a905232009-07-11 16:48:03 -04002804 I915_WRITE(IPEIR, ipeir);
Chris Wilson3143a2b2010-11-16 15:55:10 +00002805 POSTING_READ(IPEIR);
Jesse Barnes8a905232009-07-11 16:48:03 -04002806 } else {
2807 u32 ipeir = I915_READ(IPEIR_I965);
2808
Joe Perchesa70491c2012-03-18 13:00:11 -07002809 pr_err(" IPEIR: 0x%08x\n", I915_READ(IPEIR_I965));
2810 pr_err(" IPEHR: 0x%08x\n", I915_READ(IPEHR_I965));
Joe Perchesa70491c2012-03-18 13:00:11 -07002811 pr_err(" INSTPS: 0x%08x\n", I915_READ(INSTPS));
Joe Perchesa70491c2012-03-18 13:00:11 -07002812 pr_err(" ACTHD: 0x%08x\n", I915_READ(ACTHD_I965));
Jesse Barnes8a905232009-07-11 16:48:03 -04002813 I915_WRITE(IPEIR_I965, ipeir);
Chris Wilson3143a2b2010-11-16 15:55:10 +00002814 POSTING_READ(IPEIR_I965);
Jesse Barnes8a905232009-07-11 16:48:03 -04002815 }
2816 }
2817
2818 I915_WRITE(EIR, eir);
Chris Wilson3143a2b2010-11-16 15:55:10 +00002819 POSTING_READ(EIR);
Jesse Barnes8a905232009-07-11 16:48:03 -04002820 eir = I915_READ(EIR);
2821 if (eir) {
2822 /*
2823 * some errors might have become stuck,
2824 * mask them.
2825 */
2826 DRM_ERROR("EIR stuck: 0x%08x, masking\n", eir);
2827 I915_WRITE(EMR, I915_READ(EMR) | eir);
2828 I915_WRITE(IIR, I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT);
2829 }
Chris Wilson35aed2e2010-05-27 13:18:12 +01002830}
2831
2832/**
2833 * i915_handle_error - handle an error interrupt
2834 * @dev: drm device
2835 *
2836 * Do some basic checking of regsiter state at error interrupt time and
2837 * dump it to the syslog. Also call i915_capture_error_state() to make
2838 * sure we get a record and make it available in debugfs. Fire a uevent
2839 * so userspace knows something bad happened (should trigger collection
2840 * of a ring dump etc.).
2841 */
Mika Kuoppala58174462014-02-25 17:11:26 +02002842void i915_handle_error(struct drm_device *dev, bool wedged,
2843 const char *fmt, ...)
Chris Wilson35aed2e2010-05-27 13:18:12 +01002844{
2845 struct drm_i915_private *dev_priv = dev->dev_private;
Mika Kuoppala58174462014-02-25 17:11:26 +02002846 va_list args;
2847 char error_msg[80];
Chris Wilson35aed2e2010-05-27 13:18:12 +01002848
Mika Kuoppala58174462014-02-25 17:11:26 +02002849 va_start(args, fmt);
2850 vscnprintf(error_msg, sizeof(error_msg), fmt, args);
2851 va_end(args);
2852
2853 i915_capture_error_state(dev, wedged, error_msg);
Chris Wilson35aed2e2010-05-27 13:18:12 +01002854 i915_report_and_clear_eir(dev);
Jesse Barnes8a905232009-07-11 16:48:03 -04002855
Ben Gamariba1234d2009-09-14 17:48:47 -04002856 if (wedged) {
Daniel Vetterf69061b2012-12-06 09:01:42 +01002857 atomic_set_mask(I915_RESET_IN_PROGRESS_FLAG,
2858 &dev_priv->gpu_error.reset_counter);
Ben Gamariba1234d2009-09-14 17:48:47 -04002859
Ben Gamari11ed50e2009-09-14 17:48:45 -04002860 /*
Daniel Vetter17e1df02013-09-08 21:57:13 +02002861 * Wakeup waiting processes so that the reset work function
2862 * i915_error_work_func doesn't deadlock trying to grab various
2863 * locks. By bumping the reset counter first, the woken
2864 * processes will see a reset in progress and back off,
2865 * releasing their locks and then wait for the reset completion.
2866 * We must do this for _all_ gpu waiters that might hold locks
2867 * that the reset work needs to acquire.
2868 *
2869 * Note: The wake_up serves as the required memory barrier to
2870 * ensure that the waiters see the updated value of the reset
2871 * counter atomic_t.
Ben Gamari11ed50e2009-09-14 17:48:45 -04002872 */
Daniel Vetter17e1df02013-09-08 21:57:13 +02002873 i915_error_wake_up(dev_priv, false);
Ben Gamari11ed50e2009-09-14 17:48:45 -04002874 }
2875
Daniel Vetter122f46b2013-09-04 17:36:14 +02002876 /*
2877 * Our reset work can grab modeset locks (since it needs to reset the
2878 * state of outstanding pagelips). Hence it must not be run on our own
2879 * dev-priv->wq work queue for otherwise the flush_work in the pageflip
2880 * code will deadlock.
2881 */
2882 schedule_work(&dev_priv->gpu_error.work);
Jesse Barnes8a905232009-07-11 16:48:03 -04002883}
2884
Keith Packard42f52ef2008-10-18 19:39:29 -07002885/* Called from drm generic code, passed 'crtc' which
2886 * we use as a pipe index
2887 */
Jesse Barnesf71d4af2011-06-28 13:00:41 -07002888static int i915_enable_vblank(struct drm_device *dev, int pipe)
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07002889{
Jani Nikula2d1013d2014-03-31 14:27:17 +03002890 struct drm_i915_private *dev_priv = dev->dev_private;
Keith Packarde9d21d72008-10-16 11:31:38 -07002891 unsigned long irqflags;
Jesse Barnes71e0ffa2009-01-08 10:42:15 -08002892
Chris Wilson5eddb702010-09-11 13:48:45 +01002893 if (!i915_pipe_enabled(dev, pipe))
Jesse Barnes71e0ffa2009-01-08 10:42:15 -08002894 return -EINVAL;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07002895
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002896 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Jesse Barnesf796cf82011-04-07 13:58:17 -07002897 if (INTEL_INFO(dev)->gen >= 4)
Keith Packard7c463582008-11-04 02:03:27 -08002898 i915_enable_pipestat(dev_priv, pipe,
Imre Deak755e9012014-02-10 18:42:47 +02002899 PIPE_START_VBLANK_INTERRUPT_STATUS);
Keith Packarde9d21d72008-10-16 11:31:38 -07002900 else
Keith Packard7c463582008-11-04 02:03:27 -08002901 i915_enable_pipestat(dev_priv, pipe,
Imre Deak755e9012014-02-10 18:42:47 +02002902 PIPE_VBLANK_INTERRUPT_STATUS);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002903 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
Chris Wilson8692d00e2011-02-05 10:08:21 +00002904
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07002905 return 0;
2906}
2907
Jesse Barnesf71d4af2011-06-28 13:00:41 -07002908static int ironlake_enable_vblank(struct drm_device *dev, int pipe)
Jesse Barnesf796cf82011-04-07 13:58:17 -07002909{
Jani Nikula2d1013d2014-03-31 14:27:17 +03002910 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesf796cf82011-04-07 13:58:17 -07002911 unsigned long irqflags;
Paulo Zanonib5184212013-07-12 20:00:08 -03002912 uint32_t bit = (INTEL_INFO(dev)->gen >= 7) ? DE_PIPE_VBLANK_IVB(pipe) :
Daniel Vetter40da17c2013-10-21 18:04:36 +02002913 DE_PIPE_VBLANK(pipe);
Jesse Barnesf796cf82011-04-07 13:58:17 -07002914
2915 if (!i915_pipe_enabled(dev, pipe))
2916 return -EINVAL;
2917
2918 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Paulo Zanonib5184212013-07-12 20:00:08 -03002919 ironlake_enable_display_irq(dev_priv, bit);
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002920 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2921
2922 return 0;
2923}
2924
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002925static int valleyview_enable_vblank(struct drm_device *dev, int pipe)
2926{
Jani Nikula2d1013d2014-03-31 14:27:17 +03002927 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002928 unsigned long irqflags;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002929
2930 if (!i915_pipe_enabled(dev, pipe))
2931 return -EINVAL;
2932
2933 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Jesse Barnes31acc7f2012-06-20 10:53:11 -07002934 i915_enable_pipestat(dev_priv, pipe,
Imre Deak755e9012014-02-10 18:42:47 +02002935 PIPE_START_VBLANK_INTERRUPT_STATUS);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002936 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2937
2938 return 0;
2939}
2940
Ben Widawskyabd58f02013-11-02 21:07:09 -07002941static int gen8_enable_vblank(struct drm_device *dev, int pipe)
2942{
2943 struct drm_i915_private *dev_priv = dev->dev_private;
2944 unsigned long irqflags;
Ben Widawskyabd58f02013-11-02 21:07:09 -07002945
2946 if (!i915_pipe_enabled(dev, pipe))
2947 return -EINVAL;
2948
2949 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Daniel Vetter7167d7c2013-11-07 11:05:45 +01002950 dev_priv->de_irq_mask[pipe] &= ~GEN8_PIPE_VBLANK;
2951 I915_WRITE(GEN8_DE_PIPE_IMR(pipe), dev_priv->de_irq_mask[pipe]);
2952 POSTING_READ(GEN8_DE_PIPE_IMR(pipe));
Ben Widawskyabd58f02013-11-02 21:07:09 -07002953 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2954 return 0;
2955}
2956
Keith Packard42f52ef2008-10-18 19:39:29 -07002957/* Called from drm generic code, passed 'crtc' which
2958 * we use as a pipe index
2959 */
Jesse Barnesf71d4af2011-06-28 13:00:41 -07002960static void i915_disable_vblank(struct drm_device *dev, int pipe)
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07002961{
Jani Nikula2d1013d2014-03-31 14:27:17 +03002962 struct drm_i915_private *dev_priv = dev->dev_private;
Keith Packarde9d21d72008-10-16 11:31:38 -07002963 unsigned long irqflags;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07002964
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002965 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Jesse Barnesf796cf82011-04-07 13:58:17 -07002966 i915_disable_pipestat(dev_priv, pipe,
Imre Deak755e9012014-02-10 18:42:47 +02002967 PIPE_VBLANK_INTERRUPT_STATUS |
2968 PIPE_START_VBLANK_INTERRUPT_STATUS);
Jesse Barnesf796cf82011-04-07 13:58:17 -07002969 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2970}
2971
Jesse Barnesf71d4af2011-06-28 13:00:41 -07002972static void ironlake_disable_vblank(struct drm_device *dev, int pipe)
Jesse Barnesf796cf82011-04-07 13:58:17 -07002973{
Jani Nikula2d1013d2014-03-31 14:27:17 +03002974 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesf796cf82011-04-07 13:58:17 -07002975 unsigned long irqflags;
Paulo Zanonib5184212013-07-12 20:00:08 -03002976 uint32_t bit = (INTEL_INFO(dev)->gen >= 7) ? DE_PIPE_VBLANK_IVB(pipe) :
Daniel Vetter40da17c2013-10-21 18:04:36 +02002977 DE_PIPE_VBLANK(pipe);
Jesse Barnesf796cf82011-04-07 13:58:17 -07002978
2979 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Paulo Zanonib5184212013-07-12 20:00:08 -03002980 ironlake_disable_display_irq(dev_priv, bit);
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002981 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2982}
2983
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002984static void valleyview_disable_vblank(struct drm_device *dev, int pipe)
2985{
Jani Nikula2d1013d2014-03-31 14:27:17 +03002986 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002987 unsigned long irqflags;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002988
2989 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Jesse Barnes31acc7f2012-06-20 10:53:11 -07002990 i915_disable_pipestat(dev_priv, pipe,
Imre Deak755e9012014-02-10 18:42:47 +02002991 PIPE_START_VBLANK_INTERRUPT_STATUS);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002992 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2993}
2994
Ben Widawskyabd58f02013-11-02 21:07:09 -07002995static void gen8_disable_vblank(struct drm_device *dev, int pipe)
2996{
2997 struct drm_i915_private *dev_priv = dev->dev_private;
2998 unsigned long irqflags;
Ben Widawskyabd58f02013-11-02 21:07:09 -07002999
3000 if (!i915_pipe_enabled(dev, pipe))
3001 return;
3002
3003 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Daniel Vetter7167d7c2013-11-07 11:05:45 +01003004 dev_priv->de_irq_mask[pipe] |= GEN8_PIPE_VBLANK;
3005 I915_WRITE(GEN8_DE_PIPE_IMR(pipe), dev_priv->de_irq_mask[pipe]);
3006 POSTING_READ(GEN8_DE_PIPE_IMR(pipe));
Ben Widawskyabd58f02013-11-02 21:07:09 -07003007 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
3008}
3009
Chris Wilson893eead2010-10-27 14:44:35 +01003010static u32
Oscar Mateoa4872ba2014-05-22 14:13:33 +01003011ring_last_seqno(struct intel_engine_cs *ring)
Zou Nan hai852835f2010-05-21 09:08:56 +08003012{
Chris Wilson893eead2010-10-27 14:44:35 +01003013 return list_entry(ring->request_list.prev,
3014 struct drm_i915_gem_request, list)->seqno;
3015}
3016
Chris Wilson9107e9d2013-06-10 11:20:20 +01003017static bool
Oscar Mateoa4872ba2014-05-22 14:13:33 +01003018ring_idle(struct intel_engine_cs *ring, u32 seqno)
Chris Wilson893eead2010-10-27 14:44:35 +01003019{
Chris Wilson9107e9d2013-06-10 11:20:20 +01003020 return (list_empty(&ring->request_list) ||
3021 i915_seqno_passed(seqno, ring_last_seqno(ring)));
Ben Gamarif65d9422009-09-14 17:48:44 -04003022}
3023
Daniel Vettera028c4b2014-03-15 00:08:56 +01003024static bool
3025ipehr_is_semaphore_wait(struct drm_device *dev, u32 ipehr)
3026{
3027 if (INTEL_INFO(dev)->gen >= 8) {
Rodrigo Vivia6cdb932014-06-30 09:53:39 -07003028 return (ipehr >> 23) == 0x1c;
Daniel Vettera028c4b2014-03-15 00:08:56 +01003029 } else {
3030 ipehr &= ~MI_SEMAPHORE_SYNC_MASK;
3031 return ipehr == (MI_SEMAPHORE_MBOX | MI_SEMAPHORE_COMPARE |
3032 MI_SEMAPHORE_REGISTER);
3033 }
3034}
3035
Oscar Mateoa4872ba2014-05-22 14:13:33 +01003036static struct intel_engine_cs *
Rodrigo Vivia6cdb932014-06-30 09:53:39 -07003037semaphore_wait_to_signaller_ring(struct intel_engine_cs *ring, u32 ipehr, u64 offset)
Daniel Vetter921d42e2014-03-18 10:26:04 +01003038{
3039 struct drm_i915_private *dev_priv = ring->dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01003040 struct intel_engine_cs *signaller;
Daniel Vetter921d42e2014-03-18 10:26:04 +01003041 int i;
3042
3043 if (INTEL_INFO(dev_priv->dev)->gen >= 8) {
Rodrigo Vivia6cdb932014-06-30 09:53:39 -07003044 for_each_ring(signaller, dev_priv, i) {
3045 if (ring == signaller)
3046 continue;
3047
3048 if (offset == signaller->semaphore.signal_ggtt[ring->id])
3049 return signaller;
3050 }
Daniel Vetter921d42e2014-03-18 10:26:04 +01003051 } else {
3052 u32 sync_bits = ipehr & MI_SEMAPHORE_SYNC_MASK;
3053
3054 for_each_ring(signaller, dev_priv, i) {
3055 if(ring == signaller)
3056 continue;
3057
Ben Widawskyebc348b2014-04-29 14:52:28 -07003058 if (sync_bits == signaller->semaphore.mbox.wait[ring->id])
Daniel Vetter921d42e2014-03-18 10:26:04 +01003059 return signaller;
3060 }
3061 }
3062
Rodrigo Vivia6cdb932014-06-30 09:53:39 -07003063 DRM_ERROR("No signaller ring found for ring %i, ipehr 0x%08x, offset 0x%016llx\n",
3064 ring->id, ipehr, offset);
Daniel Vetter921d42e2014-03-18 10:26:04 +01003065
3066 return NULL;
3067}
3068
Oscar Mateoa4872ba2014-05-22 14:13:33 +01003069static struct intel_engine_cs *
3070semaphore_waits_for(struct intel_engine_cs *ring, u32 *seqno)
Chris Wilsona24a11e2013-03-14 17:52:05 +02003071{
3072 struct drm_i915_private *dev_priv = ring->dev->dev_private;
Daniel Vetter88fe4292014-03-15 00:08:55 +01003073 u32 cmd, ipehr, head;
Rodrigo Vivia6cdb932014-06-30 09:53:39 -07003074 u64 offset = 0;
3075 int i, backwards;
Chris Wilsona24a11e2013-03-14 17:52:05 +02003076
3077 ipehr = I915_READ(RING_IPEHR(ring->mmio_base));
Daniel Vettera028c4b2014-03-15 00:08:56 +01003078 if (!ipehr_is_semaphore_wait(ring->dev, ipehr))
Chris Wilson6274f212013-06-10 11:20:21 +01003079 return NULL;
Chris Wilsona24a11e2013-03-14 17:52:05 +02003080
Daniel Vetter88fe4292014-03-15 00:08:55 +01003081 /*
3082 * HEAD is likely pointing to the dword after the actual command,
3083 * so scan backwards until we find the MBOX. But limit it to just 3
Rodrigo Vivia6cdb932014-06-30 09:53:39 -07003084 * or 4 dwords depending on the semaphore wait command size.
3085 * Note that we don't care about ACTHD here since that might
Daniel Vetter88fe4292014-03-15 00:08:55 +01003086 * point at at batch, and semaphores are always emitted into the
3087 * ringbuffer itself.
Chris Wilsona24a11e2013-03-14 17:52:05 +02003088 */
Daniel Vetter88fe4292014-03-15 00:08:55 +01003089 head = I915_READ_HEAD(ring) & HEAD_ADDR;
Rodrigo Vivia6cdb932014-06-30 09:53:39 -07003090 backwards = (INTEL_INFO(ring->dev)->gen >= 8) ? 5 : 4;
Daniel Vetter88fe4292014-03-15 00:08:55 +01003091
Rodrigo Vivia6cdb932014-06-30 09:53:39 -07003092 for (i = backwards; i; --i) {
Daniel Vetter88fe4292014-03-15 00:08:55 +01003093 /*
3094 * Be paranoid and presume the hw has gone off into the wild -
3095 * our ring is smaller than what the hardware (and hence
3096 * HEAD_ADDR) allows. Also handles wrap-around.
3097 */
Oscar Mateoee1b1e52014-05-22 14:13:35 +01003098 head &= ring->buffer->size - 1;
Daniel Vetter88fe4292014-03-15 00:08:55 +01003099
3100 /* This here seems to blow up */
Oscar Mateoee1b1e52014-05-22 14:13:35 +01003101 cmd = ioread32(ring->buffer->virtual_start + head);
Chris Wilsona24a11e2013-03-14 17:52:05 +02003102 if (cmd == ipehr)
3103 break;
3104
Daniel Vetter88fe4292014-03-15 00:08:55 +01003105 head -= 4;
3106 }
Chris Wilsona24a11e2013-03-14 17:52:05 +02003107
Daniel Vetter88fe4292014-03-15 00:08:55 +01003108 if (!i)
3109 return NULL;
3110
Oscar Mateoee1b1e52014-05-22 14:13:35 +01003111 *seqno = ioread32(ring->buffer->virtual_start + head + 4) + 1;
Rodrigo Vivia6cdb932014-06-30 09:53:39 -07003112 if (INTEL_INFO(ring->dev)->gen >= 8) {
3113 offset = ioread32(ring->buffer->virtual_start + head + 12);
3114 offset <<= 32;
3115 offset = ioread32(ring->buffer->virtual_start + head + 8);
3116 }
3117 return semaphore_wait_to_signaller_ring(ring, ipehr, offset);
Chris Wilsona24a11e2013-03-14 17:52:05 +02003118}
3119
Oscar Mateoa4872ba2014-05-22 14:13:33 +01003120static int semaphore_passed(struct intel_engine_cs *ring)
Chris Wilson6274f212013-06-10 11:20:21 +01003121{
3122 struct drm_i915_private *dev_priv = ring->dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01003123 struct intel_engine_cs *signaller;
Chris Wilsona0d036b2014-07-19 12:40:42 +01003124 u32 seqno;
Chris Wilson6274f212013-06-10 11:20:21 +01003125
Chris Wilson4be17382014-06-06 10:22:29 +01003126 ring->hangcheck.deadlock++;
Chris Wilson6274f212013-06-10 11:20:21 +01003127
3128 signaller = semaphore_waits_for(ring, &seqno);
Chris Wilson4be17382014-06-06 10:22:29 +01003129 if (signaller == NULL)
3130 return -1;
3131
3132 /* Prevent pathological recursion due to driver bugs */
3133 if (signaller->hangcheck.deadlock >= I915_NUM_RINGS)
Chris Wilson6274f212013-06-10 11:20:21 +01003134 return -1;
3135
Chris Wilson4be17382014-06-06 10:22:29 +01003136 if (i915_seqno_passed(signaller->get_seqno(signaller, false), seqno))
3137 return 1;
3138
Chris Wilsona0d036b2014-07-19 12:40:42 +01003139 /* cursory check for an unkickable deadlock */
3140 if (I915_READ_CTL(signaller) & RING_WAIT_SEMAPHORE &&
3141 semaphore_passed(signaller) < 0)
Chris Wilson4be17382014-06-06 10:22:29 +01003142 return -1;
3143
3144 return 0;
Chris Wilson6274f212013-06-10 11:20:21 +01003145}
3146
3147static void semaphore_clear_deadlocks(struct drm_i915_private *dev_priv)
3148{
Oscar Mateoa4872ba2014-05-22 14:13:33 +01003149 struct intel_engine_cs *ring;
Chris Wilson6274f212013-06-10 11:20:21 +01003150 int i;
3151
3152 for_each_ring(ring, dev_priv, i)
Chris Wilson4be17382014-06-06 10:22:29 +01003153 ring->hangcheck.deadlock = 0;
Chris Wilson6274f212013-06-10 11:20:21 +01003154}
3155
Mika Kuoppalaad8beae2013-06-12 12:35:32 +03003156static enum intel_ring_hangcheck_action
Oscar Mateoa4872ba2014-05-22 14:13:33 +01003157ring_stuck(struct intel_engine_cs *ring, u64 acthd)
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003158{
3159 struct drm_device *dev = ring->dev;
3160 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson9107e9d2013-06-10 11:20:20 +01003161 u32 tmp;
3162
Mika Kuoppalaf260fe72014-08-05 17:16:26 +03003163 if (acthd != ring->hangcheck.acthd) {
3164 if (acthd > ring->hangcheck.max_acthd) {
3165 ring->hangcheck.max_acthd = acthd;
3166 return HANGCHECK_ACTIVE;
3167 }
3168
3169 return HANGCHECK_ACTIVE_LOOP;
3170 }
Chris Wilson6274f212013-06-10 11:20:21 +01003171
Chris Wilson9107e9d2013-06-10 11:20:20 +01003172 if (IS_GEN2(dev))
Jani Nikulaf2f4d822013-08-11 12:44:01 +03003173 return HANGCHECK_HUNG;
Chris Wilson9107e9d2013-06-10 11:20:20 +01003174
3175 /* Is the chip hanging on a WAIT_FOR_EVENT?
3176 * If so we can simply poke the RB_WAIT bit
3177 * and break the hang. This should work on
3178 * all but the second generation chipsets.
3179 */
3180 tmp = I915_READ_CTL(ring);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003181 if (tmp & RING_WAIT) {
Mika Kuoppala58174462014-02-25 17:11:26 +02003182 i915_handle_error(dev, false,
3183 "Kicking stuck wait on %s",
3184 ring->name);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003185 I915_WRITE_CTL(ring, tmp);
Jani Nikulaf2f4d822013-08-11 12:44:01 +03003186 return HANGCHECK_KICK;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003187 }
Chris Wilsona24a11e2013-03-14 17:52:05 +02003188
Chris Wilson6274f212013-06-10 11:20:21 +01003189 if (INTEL_INFO(dev)->gen >= 6 && tmp & RING_WAIT_SEMAPHORE) {
3190 switch (semaphore_passed(ring)) {
3191 default:
Jani Nikulaf2f4d822013-08-11 12:44:01 +03003192 return HANGCHECK_HUNG;
Chris Wilson6274f212013-06-10 11:20:21 +01003193 case 1:
Mika Kuoppala58174462014-02-25 17:11:26 +02003194 i915_handle_error(dev, false,
3195 "Kicking stuck semaphore on %s",
3196 ring->name);
Chris Wilson6274f212013-06-10 11:20:21 +01003197 I915_WRITE_CTL(ring, tmp);
Jani Nikulaf2f4d822013-08-11 12:44:01 +03003198 return HANGCHECK_KICK;
Chris Wilson6274f212013-06-10 11:20:21 +01003199 case 0:
Jani Nikulaf2f4d822013-08-11 12:44:01 +03003200 return HANGCHECK_WAIT;
Chris Wilson6274f212013-06-10 11:20:21 +01003201 }
Chris Wilson9107e9d2013-06-10 11:20:20 +01003202 }
Mika Kuoppalaed5cbb02013-05-13 16:32:11 +03003203
Jani Nikulaf2f4d822013-08-11 12:44:01 +03003204 return HANGCHECK_HUNG;
Mika Kuoppalaed5cbb02013-05-13 16:32:11 +03003205}
3206
Ben Gamarif65d9422009-09-14 17:48:44 -04003207/**
3208 * This is called when the chip hasn't reported back with completed
Mika Kuoppala05407ff2013-05-30 09:04:29 +03003209 * batchbuffers in a long time. We keep track per ring seqno progress and
3210 * if there are no progress, hangcheck score for that ring is increased.
3211 * Further, acthd is inspected to see if the ring is stuck. On stuck case
3212 * we kick the ring. If we see no progress on three subsequent calls
3213 * we assume chip is wedged and try to fix it by resetting the chip.
Ben Gamarif65d9422009-09-14 17:48:44 -04003214 */
Damien Lespiaua658b5d2013-08-08 22:28:56 +01003215static void i915_hangcheck_elapsed(unsigned long data)
Ben Gamarif65d9422009-09-14 17:48:44 -04003216{
3217 struct drm_device *dev = (struct drm_device *)data;
Jani Nikula2d1013d2014-03-31 14:27:17 +03003218 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01003219 struct intel_engine_cs *ring;
Chris Wilsonb4519512012-05-11 14:29:30 +01003220 int i;
Mika Kuoppala05407ff2013-05-30 09:04:29 +03003221 int busy_count = 0, rings_hung = 0;
Chris Wilson9107e9d2013-06-10 11:20:20 +01003222 bool stuck[I915_NUM_RINGS] = { 0 };
3223#define BUSY 1
3224#define KICK 5
3225#define HUNG 20
Chris Wilson893eead2010-10-27 14:44:35 +01003226
Jani Nikulad330a952014-01-21 11:24:25 +02003227 if (!i915.enable_hangcheck)
Ben Widawsky3e0dc6b2011-06-29 10:26:42 -07003228 return;
3229
Chris Wilsonb4519512012-05-11 14:29:30 +01003230 for_each_ring(ring, dev_priv, i) {
Chris Wilson50877442014-03-21 12:41:53 +00003231 u64 acthd;
3232 u32 seqno;
Chris Wilson9107e9d2013-06-10 11:20:20 +01003233 bool busy = true;
Chris Wilsonb4519512012-05-11 14:29:30 +01003234
Chris Wilson6274f212013-06-10 11:20:21 +01003235 semaphore_clear_deadlocks(dev_priv);
3236
Mika Kuoppala05407ff2013-05-30 09:04:29 +03003237 seqno = ring->get_seqno(ring, false);
3238 acthd = intel_ring_get_active_head(ring);
Chris Wilsond1e61e72012-04-10 17:00:41 +01003239
Chris Wilson9107e9d2013-06-10 11:20:20 +01003240 if (ring->hangcheck.seqno == seqno) {
3241 if (ring_idle(ring, seqno)) {
Mika Kuoppalada661462013-09-06 16:03:28 +03003242 ring->hangcheck.action = HANGCHECK_IDLE;
3243
Chris Wilson9107e9d2013-06-10 11:20:20 +01003244 if (waitqueue_active(&ring->irq_queue)) {
3245 /* Issue a wake-up to catch stuck h/w. */
Chris Wilson094f9a52013-09-25 17:34:55 +01003246 if (!test_and_set_bit(ring->id, &dev_priv->gpu_error.missed_irq_rings)) {
Daniel Vetterf4adcd22013-10-28 09:24:13 +01003247 if (!(dev_priv->gpu_error.test_irq_rings & intel_ring_flag(ring)))
3248 DRM_ERROR("Hangcheck timer elapsed... %s idle\n",
3249 ring->name);
3250 else
3251 DRM_INFO("Fake missed irq on %s\n",
3252 ring->name);
Chris Wilson094f9a52013-09-25 17:34:55 +01003253 wake_up_all(&ring->irq_queue);
3254 }
3255 /* Safeguard against driver failure */
3256 ring->hangcheck.score += BUSY;
Chris Wilson9107e9d2013-06-10 11:20:20 +01003257 } else
3258 busy = false;
Mika Kuoppala05407ff2013-05-30 09:04:29 +03003259 } else {
Chris Wilson6274f212013-06-10 11:20:21 +01003260 /* We always increment the hangcheck score
3261 * if the ring is busy and still processing
3262 * the same request, so that no single request
3263 * can run indefinitely (such as a chain of
3264 * batches). The only time we do not increment
3265 * the hangcheck score on this ring, if this
3266 * ring is in a legitimate wait for another
3267 * ring. In that case the waiting ring is a
3268 * victim and we want to be sure we catch the
3269 * right culprit. Then every time we do kick
3270 * the ring, add a small increment to the
3271 * score so that we can catch a batch that is
3272 * being repeatedly kicked and so responsible
3273 * for stalling the machine.
3274 */
Mika Kuoppalaad8beae2013-06-12 12:35:32 +03003275 ring->hangcheck.action = ring_stuck(ring,
3276 acthd);
3277
3278 switch (ring->hangcheck.action) {
Mika Kuoppalada661462013-09-06 16:03:28 +03003279 case HANGCHECK_IDLE:
Jani Nikulaf2f4d822013-08-11 12:44:01 +03003280 case HANGCHECK_WAIT:
Jani Nikulaf2f4d822013-08-11 12:44:01 +03003281 case HANGCHECK_ACTIVE:
Mika Kuoppalaf260fe72014-08-05 17:16:26 +03003282 break;
3283 case HANGCHECK_ACTIVE_LOOP:
Jani Nikulaea04cb32013-08-11 12:44:02 +03003284 ring->hangcheck.score += BUSY;
Chris Wilson6274f212013-06-10 11:20:21 +01003285 break;
Jani Nikulaf2f4d822013-08-11 12:44:01 +03003286 case HANGCHECK_KICK:
Jani Nikulaea04cb32013-08-11 12:44:02 +03003287 ring->hangcheck.score += KICK;
Chris Wilson6274f212013-06-10 11:20:21 +01003288 break;
Jani Nikulaf2f4d822013-08-11 12:44:01 +03003289 case HANGCHECK_HUNG:
Jani Nikulaea04cb32013-08-11 12:44:02 +03003290 ring->hangcheck.score += HUNG;
Chris Wilson6274f212013-06-10 11:20:21 +01003291 stuck[i] = true;
3292 break;
3293 }
Mika Kuoppala05407ff2013-05-30 09:04:29 +03003294 }
Chris Wilson9107e9d2013-06-10 11:20:20 +01003295 } else {
Mika Kuoppalada661462013-09-06 16:03:28 +03003296 ring->hangcheck.action = HANGCHECK_ACTIVE;
3297
Chris Wilson9107e9d2013-06-10 11:20:20 +01003298 /* Gradually reduce the count so that we catch DoS
3299 * attempts across multiple batches.
3300 */
3301 if (ring->hangcheck.score > 0)
3302 ring->hangcheck.score--;
Mika Kuoppalaf260fe72014-08-05 17:16:26 +03003303
3304 ring->hangcheck.acthd = ring->hangcheck.max_acthd = 0;
Chris Wilsond1e61e72012-04-10 17:00:41 +01003305 }
3306
Mika Kuoppala05407ff2013-05-30 09:04:29 +03003307 ring->hangcheck.seqno = seqno;
3308 ring->hangcheck.acthd = acthd;
Chris Wilson9107e9d2013-06-10 11:20:20 +01003309 busy_count += busy;
Chris Wilson893eead2010-10-27 14:44:35 +01003310 }
Eric Anholtb9201c12010-01-08 14:25:16 -08003311
Mika Kuoppala92cab732013-05-24 17:16:07 +03003312 for_each_ring(ring, dev_priv, i) {
Mika Kuoppalab6b0fac2014-01-30 19:04:43 +02003313 if (ring->hangcheck.score >= HANGCHECK_SCORE_RING_HUNG) {
Daniel Vetterb8d88d12013-08-28 10:57:59 +02003314 DRM_INFO("%s on %s\n",
3315 stuck[i] ? "stuck" : "no progress",
3316 ring->name);
Chris Wilsona43adf02013-06-10 11:20:22 +01003317 rings_hung++;
Mika Kuoppala92cab732013-05-24 17:16:07 +03003318 }
3319 }
3320
Mika Kuoppala05407ff2013-05-30 09:04:29 +03003321 if (rings_hung)
Mika Kuoppala58174462014-02-25 17:11:26 +02003322 return i915_handle_error(dev, true, "Ring hung");
Ben Gamarif65d9422009-09-14 17:48:44 -04003323
Mika Kuoppala05407ff2013-05-30 09:04:29 +03003324 if (busy_count)
3325 /* Reset timer case chip hangs without another request
3326 * being added */
Mika Kuoppala10cd45b2013-07-03 17:22:08 +03003327 i915_queue_hangcheck(dev);
3328}
3329
3330void i915_queue_hangcheck(struct drm_device *dev)
3331{
3332 struct drm_i915_private *dev_priv = dev->dev_private;
Jani Nikulad330a952014-01-21 11:24:25 +02003333 if (!i915.enable_hangcheck)
Mika Kuoppala10cd45b2013-07-03 17:22:08 +03003334 return;
3335
3336 mod_timer(&dev_priv->gpu_error.hangcheck_timer,
3337 round_jiffies_up(jiffies + DRM_I915_HANGCHECK_JIFFIES));
Ben Gamarif65d9422009-09-14 17:48:44 -04003338}
3339
Paulo Zanoni1c69eb42014-04-01 15:37:23 -03003340static void ibx_irq_reset(struct drm_device *dev)
Paulo Zanoni91738a92013-06-05 14:21:51 -03003341{
3342 struct drm_i915_private *dev_priv = dev->dev_private;
3343
3344 if (HAS_PCH_NOP(dev))
3345 return;
3346
Paulo Zanonif86f3fb2014-04-01 15:37:14 -03003347 GEN5_IRQ_RESET(SDE);
Paulo Zanoni105b1222014-04-01 15:37:17 -03003348
3349 if (HAS_PCH_CPT(dev) || HAS_PCH_LPT(dev))
3350 I915_WRITE(SERR_INT, 0xffffffff);
Paulo Zanoni622364b2014-04-01 15:37:22 -03003351}
Paulo Zanoni105b1222014-04-01 15:37:17 -03003352
Paulo Zanoni622364b2014-04-01 15:37:22 -03003353/*
3354 * SDEIER is also touched by the interrupt handler to work around missed PCH
3355 * interrupts. Hence we can't update it after the interrupt handler is enabled -
3356 * instead we unconditionally enable all PCH interrupt sources here, but then
3357 * only unmask them as needed with SDEIMR.
3358 *
3359 * This function needs to be called before interrupts are enabled.
3360 */
3361static void ibx_irq_pre_postinstall(struct drm_device *dev)
3362{
3363 struct drm_i915_private *dev_priv = dev->dev_private;
3364
3365 if (HAS_PCH_NOP(dev))
3366 return;
3367
3368 WARN_ON(I915_READ(SDEIER) != 0);
Paulo Zanoni91738a92013-06-05 14:21:51 -03003369 I915_WRITE(SDEIER, 0xffffffff);
3370 POSTING_READ(SDEIER);
3371}
3372
Paulo Zanoni7c4d6642014-04-01 15:37:19 -03003373static void gen5_gt_irq_reset(struct drm_device *dev)
Daniel Vetterd18ea1b2013-07-12 22:43:25 +02003374{
3375 struct drm_i915_private *dev_priv = dev->dev_private;
3376
Paulo Zanonif86f3fb2014-04-01 15:37:14 -03003377 GEN5_IRQ_RESET(GT);
Paulo Zanonia9d356a2014-04-01 15:37:09 -03003378 if (INTEL_INFO(dev)->gen >= 6)
Paulo Zanonif86f3fb2014-04-01 15:37:14 -03003379 GEN5_IRQ_RESET(GEN6_PM);
Daniel Vetterd18ea1b2013-07-12 22:43:25 +02003380}
3381
Linus Torvalds1da177e2005-04-16 15:20:36 -07003382/* drm_dma.h hooks
3383*/
Paulo Zanonibe30b292014-04-01 15:37:25 -03003384static void ironlake_irq_reset(struct drm_device *dev)
Zhenyu Wang036a4a72009-06-08 14:40:19 +08003385{
Jani Nikula2d1013d2014-03-31 14:27:17 +03003386 struct drm_i915_private *dev_priv = dev->dev_private;
Zhenyu Wang036a4a72009-06-08 14:40:19 +08003387
Paulo Zanoni0c841212014-04-01 15:37:27 -03003388 I915_WRITE(HWSTAM, 0xffffffff);
Daniel Vetterbdfcdb62012-01-05 01:05:26 +01003389
Paulo Zanonif86f3fb2014-04-01 15:37:14 -03003390 GEN5_IRQ_RESET(DE);
Paulo Zanonic6d954c2014-04-01 15:37:18 -03003391 if (IS_GEN7(dev))
3392 I915_WRITE(GEN7_ERR_INT, 0xffffffff);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08003393
Paulo Zanoni7c4d6642014-04-01 15:37:19 -03003394 gen5_gt_irq_reset(dev);
Zhenyu Wangc6501562009-11-03 18:57:21 +00003395
Paulo Zanoni1c69eb42014-04-01 15:37:23 -03003396 ibx_irq_reset(dev);
Ben Widawsky7d991632013-05-28 19:22:25 -07003397}
3398
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003399static void valleyview_irq_preinstall(struct drm_device *dev)
3400{
Jani Nikula2d1013d2014-03-31 14:27:17 +03003401 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003402 int pipe;
3403
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003404 /* VLV magic */
3405 I915_WRITE(VLV_IMR, 0);
3406 I915_WRITE(RING_IMR(RENDER_RING_BASE), 0);
3407 I915_WRITE(RING_IMR(GEN6_BSD_RING_BASE), 0);
3408 I915_WRITE(RING_IMR(BLT_RING_BASE), 0);
3409
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003410 /* and GT */
3411 I915_WRITE(GTIIR, I915_READ(GTIIR));
3412 I915_WRITE(GTIIR, I915_READ(GTIIR));
Daniel Vetterd18ea1b2013-07-12 22:43:25 +02003413
Paulo Zanoni7c4d6642014-04-01 15:37:19 -03003414 gen5_gt_irq_reset(dev);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003415
3416 I915_WRITE(DPINVGTT, 0xff);
3417
3418 I915_WRITE(PORT_HOTPLUG_EN, 0);
3419 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
Damien Lespiau055e3932014-08-18 13:49:10 +01003420 for_each_pipe(dev_priv, pipe)
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003421 I915_WRITE(PIPESTAT(pipe), 0xffff);
3422 I915_WRITE(VLV_IIR, 0xffffffff);
3423 I915_WRITE(VLV_IMR, 0xffffffff);
3424 I915_WRITE(VLV_IER, 0x0);
3425 POSTING_READ(VLV_IER);
3426}
3427
Daniel Vetterd6e3cca2014-05-22 22:18:22 +02003428static void gen8_gt_irq_reset(struct drm_i915_private *dev_priv)
3429{
3430 GEN8_IRQ_RESET_NDX(GT, 0);
3431 GEN8_IRQ_RESET_NDX(GT, 1);
3432 GEN8_IRQ_RESET_NDX(GT, 2);
3433 GEN8_IRQ_RESET_NDX(GT, 3);
3434}
3435
Paulo Zanoni823f6b32014-04-01 15:37:26 -03003436static void gen8_irq_reset(struct drm_device *dev)
Ben Widawskyabd58f02013-11-02 21:07:09 -07003437{
3438 struct drm_i915_private *dev_priv = dev->dev_private;
3439 int pipe;
3440
Ben Widawskyabd58f02013-11-02 21:07:09 -07003441 I915_WRITE(GEN8_MASTER_IRQ, 0);
3442 POSTING_READ(GEN8_MASTER_IRQ);
3443
Daniel Vetterd6e3cca2014-05-22 22:18:22 +02003444 gen8_gt_irq_reset(dev_priv);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003445
Damien Lespiau055e3932014-08-18 13:49:10 +01003446 for_each_pipe(dev_priv, pipe)
Paulo Zanoni813bde42014-07-04 11:50:29 -03003447 if (intel_display_power_enabled(dev_priv,
3448 POWER_DOMAIN_PIPE(pipe)))
3449 GEN8_IRQ_RESET_NDX(DE_PIPE, pipe);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003450
Paulo Zanonif86f3fb2014-04-01 15:37:14 -03003451 GEN5_IRQ_RESET(GEN8_DE_PORT_);
3452 GEN5_IRQ_RESET(GEN8_DE_MISC_);
3453 GEN5_IRQ_RESET(GEN8_PCU_);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003454
Paulo Zanoni1c69eb42014-04-01 15:37:23 -03003455 ibx_irq_reset(dev);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003456}
Ben Widawskyabd58f02013-11-02 21:07:09 -07003457
Paulo Zanonid49bdb02014-07-04 11:50:31 -03003458void gen8_irq_power_well_post_enable(struct drm_i915_private *dev_priv)
3459{
3460 unsigned long irqflags;
Paulo Zanoni1180e202014-10-07 18:02:52 -03003461 uint32_t extra_ier = GEN8_PIPE_VBLANK | GEN8_PIPE_FIFO_UNDERRUN;
Paulo Zanonid49bdb02014-07-04 11:50:31 -03003462
3463 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
3464 GEN8_IRQ_INIT_NDX(DE_PIPE, PIPE_B, dev_priv->de_irq_mask[PIPE_B],
Paulo Zanoni1180e202014-10-07 18:02:52 -03003465 ~dev_priv->de_irq_mask[PIPE_B] | extra_ier);
Paulo Zanonid49bdb02014-07-04 11:50:31 -03003466 GEN8_IRQ_INIT_NDX(DE_PIPE, PIPE_C, dev_priv->de_irq_mask[PIPE_C],
Paulo Zanoni1180e202014-10-07 18:02:52 -03003467 ~dev_priv->de_irq_mask[PIPE_C] | extra_ier);
Paulo Zanonid49bdb02014-07-04 11:50:31 -03003468 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
3469}
3470
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003471static void cherryview_irq_preinstall(struct drm_device *dev)
3472{
3473 struct drm_i915_private *dev_priv = dev->dev_private;
3474 int pipe;
3475
3476 I915_WRITE(GEN8_MASTER_IRQ, 0);
3477 POSTING_READ(GEN8_MASTER_IRQ);
3478
Daniel Vetterd6e3cca2014-05-22 22:18:22 +02003479 gen8_gt_irq_reset(dev_priv);
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003480
3481 GEN5_IRQ_RESET(GEN8_PCU_);
3482
3483 POSTING_READ(GEN8_PCU_IIR);
3484
3485 I915_WRITE(DPINVGTT, DPINVGTT_STATUS_MASK_CHV);
3486
3487 I915_WRITE(PORT_HOTPLUG_EN, 0);
3488 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
3489
Damien Lespiau055e3932014-08-18 13:49:10 +01003490 for_each_pipe(dev_priv, pipe)
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003491 I915_WRITE(PIPESTAT(pipe), 0xffff);
3492
3493 I915_WRITE(VLV_IMR, 0xffffffff);
3494 I915_WRITE(VLV_IER, 0x0);
3495 I915_WRITE(VLV_IIR, 0xffffffff);
3496 POSTING_READ(VLV_IIR);
3497}
3498
Daniel Vetter82a28bc2013-03-27 15:55:01 +01003499static void ibx_hpd_irq_setup(struct drm_device *dev)
Keith Packard7fe0b972011-09-19 13:31:02 -07003500{
Jani Nikula2d1013d2014-03-31 14:27:17 +03003501 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter82a28bc2013-03-27 15:55:01 +01003502 struct intel_encoder *intel_encoder;
Daniel Vetterfee884e2013-07-04 23:35:21 +02003503 u32 hotplug_irqs, hotplug, enabled_irqs = 0;
Keith Packard7fe0b972011-09-19 13:31:02 -07003504
Daniel Vetter82a28bc2013-03-27 15:55:01 +01003505 if (HAS_PCH_IBX(dev)) {
Daniel Vetterfee884e2013-07-04 23:35:21 +02003506 hotplug_irqs = SDE_HOTPLUG_MASK;
Damien Lespiaub2784e12014-08-05 11:29:37 +01003507 for_each_intel_encoder(dev, intel_encoder)
Egbert Eichcd569ae2013-04-16 13:36:57 +02003508 if (dev_priv->hpd_stats[intel_encoder->hpd_pin].hpd_mark == HPD_ENABLED)
Daniel Vetterfee884e2013-07-04 23:35:21 +02003509 enabled_irqs |= hpd_ibx[intel_encoder->hpd_pin];
Daniel Vetter82a28bc2013-03-27 15:55:01 +01003510 } else {
Daniel Vetterfee884e2013-07-04 23:35:21 +02003511 hotplug_irqs = SDE_HOTPLUG_MASK_CPT;
Damien Lespiaub2784e12014-08-05 11:29:37 +01003512 for_each_intel_encoder(dev, intel_encoder)
Egbert Eichcd569ae2013-04-16 13:36:57 +02003513 if (dev_priv->hpd_stats[intel_encoder->hpd_pin].hpd_mark == HPD_ENABLED)
Daniel Vetterfee884e2013-07-04 23:35:21 +02003514 enabled_irqs |= hpd_cpt[intel_encoder->hpd_pin];
Daniel Vetter82a28bc2013-03-27 15:55:01 +01003515 }
3516
Daniel Vetterfee884e2013-07-04 23:35:21 +02003517 ibx_display_interrupt_update(dev_priv, hotplug_irqs, enabled_irqs);
Daniel Vetter82a28bc2013-03-27 15:55:01 +01003518
3519 /*
3520 * Enable digital hotplug on the PCH, and configure the DP short pulse
3521 * duration to 2ms (which is the minimum in the Display Port spec)
3522 *
3523 * This register is the same on all known PCH chips.
3524 */
Keith Packard7fe0b972011-09-19 13:31:02 -07003525 hotplug = I915_READ(PCH_PORT_HOTPLUG);
3526 hotplug &= ~(PORTD_PULSE_DURATION_MASK|PORTC_PULSE_DURATION_MASK|PORTB_PULSE_DURATION_MASK);
3527 hotplug |= PORTD_HOTPLUG_ENABLE | PORTD_PULSE_DURATION_2ms;
3528 hotplug |= PORTC_HOTPLUG_ENABLE | PORTC_PULSE_DURATION_2ms;
3529 hotplug |= PORTB_HOTPLUG_ENABLE | PORTB_PULSE_DURATION_2ms;
3530 I915_WRITE(PCH_PORT_HOTPLUG, hotplug);
3531}
3532
Paulo Zanonid46da432013-02-08 17:35:15 -02003533static void ibx_irq_postinstall(struct drm_device *dev)
3534{
Jani Nikula2d1013d2014-03-31 14:27:17 +03003535 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter82a28bc2013-03-27 15:55:01 +01003536 u32 mask;
Paulo Zanonid46da432013-02-08 17:35:15 -02003537
Daniel Vetter692a04c2013-05-29 21:43:05 +02003538 if (HAS_PCH_NOP(dev))
3539 return;
3540
Paulo Zanoni105b1222014-04-01 15:37:17 -03003541 if (HAS_PCH_IBX(dev))
Daniel Vetter5c673b62014-03-07 20:34:46 +01003542 mask = SDE_GMBUS | SDE_AUX_MASK | SDE_POISON;
Paulo Zanoni105b1222014-04-01 15:37:17 -03003543 else
Daniel Vetter5c673b62014-03-07 20:34:46 +01003544 mask = SDE_GMBUS_CPT | SDE_AUX_MASK_CPT;
Paulo Zanoni86642812013-04-12 17:57:57 -03003545
Paulo Zanoni337ba012014-04-01 15:37:16 -03003546 GEN5_ASSERT_IIR_IS_ZERO(SDEIIR);
Paulo Zanonid46da432013-02-08 17:35:15 -02003547 I915_WRITE(SDEIMR, ~mask);
Paulo Zanonid46da432013-02-08 17:35:15 -02003548}
3549
Daniel Vetter0a9a8c92013-07-12 22:43:26 +02003550static void gen5_gt_irq_postinstall(struct drm_device *dev)
3551{
3552 struct drm_i915_private *dev_priv = dev->dev_private;
3553 u32 pm_irqs, gt_irqs;
3554
3555 pm_irqs = gt_irqs = 0;
3556
3557 dev_priv->gt_irq_mask = ~0;
Ben Widawsky040d2ba2013-09-19 11:01:40 -07003558 if (HAS_L3_DPF(dev)) {
Daniel Vetter0a9a8c92013-07-12 22:43:26 +02003559 /* L3 parity interrupt is always unmasked. */
Ben Widawsky35a85ac2013-09-19 11:13:41 -07003560 dev_priv->gt_irq_mask = ~GT_PARITY_ERROR(dev);
3561 gt_irqs |= GT_PARITY_ERROR(dev);
Daniel Vetter0a9a8c92013-07-12 22:43:26 +02003562 }
3563
3564 gt_irqs |= GT_RENDER_USER_INTERRUPT;
3565 if (IS_GEN5(dev)) {
3566 gt_irqs |= GT_RENDER_PIPECTL_NOTIFY_INTERRUPT |
3567 ILK_BSD_USER_INTERRUPT;
3568 } else {
3569 gt_irqs |= GT_BLT_USER_INTERRUPT | GT_BSD_USER_INTERRUPT;
3570 }
3571
Paulo Zanoni35079892014-04-01 15:37:15 -03003572 GEN5_IRQ_INIT(GT, dev_priv->gt_irq_mask, gt_irqs);
Daniel Vetter0a9a8c92013-07-12 22:43:26 +02003573
3574 if (INTEL_INFO(dev)->gen >= 6) {
Deepak Sa6706b42014-03-15 20:23:22 +05303575 pm_irqs |= dev_priv->pm_rps_events;
Daniel Vetter0a9a8c92013-07-12 22:43:26 +02003576
3577 if (HAS_VEBOX(dev))
3578 pm_irqs |= PM_VEBOX_USER_INTERRUPT;
3579
Paulo Zanoni605cd252013-08-06 18:57:15 -03003580 dev_priv->pm_irq_mask = 0xffffffff;
Paulo Zanoni35079892014-04-01 15:37:15 -03003581 GEN5_IRQ_INIT(GEN6_PM, dev_priv->pm_irq_mask, pm_irqs);
Daniel Vetter0a9a8c92013-07-12 22:43:26 +02003582 }
3583}
3584
Jesse Barnesf71d4af2011-06-28 13:00:41 -07003585static int ironlake_irq_postinstall(struct drm_device *dev)
Zhenyu Wang036a4a72009-06-08 14:40:19 +08003586{
Daniel Vetter4bc9d432013-06-27 13:44:58 +02003587 unsigned long irqflags;
Jani Nikula2d1013d2014-03-31 14:27:17 +03003588 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoni8e76f8d2013-07-12 20:01:56 -03003589 u32 display_mask, extra_mask;
3590
3591 if (INTEL_INFO(dev)->gen >= 7) {
3592 display_mask = (DE_MASTER_IRQ_CONTROL | DE_GSE_IVB |
3593 DE_PCH_EVENT_IVB | DE_PLANEC_FLIP_DONE_IVB |
3594 DE_PLANEB_FLIP_DONE_IVB |
Daniel Vetter5c673b62014-03-07 20:34:46 +01003595 DE_PLANEA_FLIP_DONE_IVB | DE_AUX_CHANNEL_A_IVB);
Paulo Zanoni8e76f8d2013-07-12 20:01:56 -03003596 extra_mask = (DE_PIPEC_VBLANK_IVB | DE_PIPEB_VBLANK_IVB |
Daniel Vetter5c673b62014-03-07 20:34:46 +01003597 DE_PIPEA_VBLANK_IVB | DE_ERR_INT_IVB);
Paulo Zanoni8e76f8d2013-07-12 20:01:56 -03003598 } else {
3599 display_mask = (DE_MASTER_IRQ_CONTROL | DE_GSE | DE_PCH_EVENT |
3600 DE_PLANEA_FLIP_DONE | DE_PLANEB_FLIP_DONE |
Daniel Vetter5b3a8562013-10-16 22:55:48 +02003601 DE_AUX_CHANNEL_A |
Daniel Vetter5b3a8562013-10-16 22:55:48 +02003602 DE_PIPEB_CRC_DONE | DE_PIPEA_CRC_DONE |
3603 DE_POISON);
Daniel Vetter5c673b62014-03-07 20:34:46 +01003604 extra_mask = DE_PIPEA_VBLANK | DE_PIPEB_VBLANK | DE_PCU_EVENT |
3605 DE_PIPEB_FIFO_UNDERRUN | DE_PIPEA_FIFO_UNDERRUN;
Paulo Zanoni8e76f8d2013-07-12 20:01:56 -03003606 }
Zhenyu Wang036a4a72009-06-08 14:40:19 +08003607
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003608 dev_priv->irq_mask = ~display_mask;
Zhenyu Wang036a4a72009-06-08 14:40:19 +08003609
Paulo Zanoni0c841212014-04-01 15:37:27 -03003610 I915_WRITE(HWSTAM, 0xeffe);
3611
Paulo Zanoni622364b2014-04-01 15:37:22 -03003612 ibx_irq_pre_postinstall(dev);
3613
Paulo Zanoni35079892014-04-01 15:37:15 -03003614 GEN5_IRQ_INIT(DE, dev_priv->irq_mask, display_mask | extra_mask);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08003615
Daniel Vetter0a9a8c92013-07-12 22:43:26 +02003616 gen5_gt_irq_postinstall(dev);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08003617
Paulo Zanonid46da432013-02-08 17:35:15 -02003618 ibx_irq_postinstall(dev);
Keith Packard7fe0b972011-09-19 13:31:02 -07003619
Jesse Barnesf97108d2010-01-29 11:27:07 -08003620 if (IS_IRONLAKE_M(dev)) {
Daniel Vetter6005ce42013-06-27 13:44:59 +02003621 /* Enable PCU event interrupts
3622 *
3623 * spinlocking not required here for correctness since interrupt
Daniel Vetter4bc9d432013-06-27 13:44:58 +02003624 * setup is guaranteed to run in single-threaded context. But we
3625 * need it to make the assert_spin_locked happy. */
3626 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Jesse Barnesf97108d2010-01-29 11:27:07 -08003627 ironlake_enable_display_irq(dev_priv, DE_PCU_EVENT);
Daniel Vetter4bc9d432013-06-27 13:44:58 +02003628 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
Jesse Barnesf97108d2010-01-29 11:27:07 -08003629 }
3630
Zhenyu Wang036a4a72009-06-08 14:40:19 +08003631 return 0;
3632}
3633
Imre Deakf8b79e52014-03-04 19:23:07 +02003634static void valleyview_display_irqs_install(struct drm_i915_private *dev_priv)
3635{
3636 u32 pipestat_mask;
3637 u32 iir_mask;
3638
3639 pipestat_mask = PIPESTAT_INT_STATUS_MASK |
3640 PIPE_FIFO_UNDERRUN_STATUS;
3641
3642 I915_WRITE(PIPESTAT(PIPE_A), pipestat_mask);
3643 I915_WRITE(PIPESTAT(PIPE_B), pipestat_mask);
3644 POSTING_READ(PIPESTAT(PIPE_A));
3645
3646 pipestat_mask = PLANE_FLIP_DONE_INT_STATUS_VLV |
3647 PIPE_CRC_DONE_INTERRUPT_STATUS;
3648
3649 i915_enable_pipestat(dev_priv, PIPE_A, pipestat_mask |
3650 PIPE_GMBUS_INTERRUPT_STATUS);
3651 i915_enable_pipestat(dev_priv, PIPE_B, pipestat_mask);
3652
3653 iir_mask = I915_DISPLAY_PORT_INTERRUPT |
3654 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
3655 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT;
3656 dev_priv->irq_mask &= ~iir_mask;
3657
3658 I915_WRITE(VLV_IIR, iir_mask);
3659 I915_WRITE(VLV_IIR, iir_mask);
3660 I915_WRITE(VLV_IMR, dev_priv->irq_mask);
3661 I915_WRITE(VLV_IER, ~dev_priv->irq_mask);
3662 POSTING_READ(VLV_IER);
3663}
3664
3665static void valleyview_display_irqs_uninstall(struct drm_i915_private *dev_priv)
3666{
3667 u32 pipestat_mask;
3668 u32 iir_mask;
3669
3670 iir_mask = I915_DISPLAY_PORT_INTERRUPT |
3671 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
Imre Deak6c7fba02014-03-10 19:44:48 +02003672 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT;
Imre Deakf8b79e52014-03-04 19:23:07 +02003673
3674 dev_priv->irq_mask |= iir_mask;
3675 I915_WRITE(VLV_IER, ~dev_priv->irq_mask);
3676 I915_WRITE(VLV_IMR, dev_priv->irq_mask);
3677 I915_WRITE(VLV_IIR, iir_mask);
3678 I915_WRITE(VLV_IIR, iir_mask);
3679 POSTING_READ(VLV_IIR);
3680
3681 pipestat_mask = PLANE_FLIP_DONE_INT_STATUS_VLV |
3682 PIPE_CRC_DONE_INTERRUPT_STATUS;
3683
3684 i915_disable_pipestat(dev_priv, PIPE_A, pipestat_mask |
3685 PIPE_GMBUS_INTERRUPT_STATUS);
3686 i915_disable_pipestat(dev_priv, PIPE_B, pipestat_mask);
3687
3688 pipestat_mask = PIPESTAT_INT_STATUS_MASK |
3689 PIPE_FIFO_UNDERRUN_STATUS;
3690 I915_WRITE(PIPESTAT(PIPE_A), pipestat_mask);
3691 I915_WRITE(PIPESTAT(PIPE_B), pipestat_mask);
3692 POSTING_READ(PIPESTAT(PIPE_A));
3693}
3694
3695void valleyview_enable_display_irqs(struct drm_i915_private *dev_priv)
3696{
3697 assert_spin_locked(&dev_priv->irq_lock);
3698
3699 if (dev_priv->display_irqs_enabled)
3700 return;
3701
3702 dev_priv->display_irqs_enabled = true;
3703
3704 if (dev_priv->dev->irq_enabled)
3705 valleyview_display_irqs_install(dev_priv);
3706}
3707
3708void valleyview_disable_display_irqs(struct drm_i915_private *dev_priv)
3709{
3710 assert_spin_locked(&dev_priv->irq_lock);
3711
3712 if (!dev_priv->display_irqs_enabled)
3713 return;
3714
3715 dev_priv->display_irqs_enabled = false;
3716
3717 if (dev_priv->dev->irq_enabled)
3718 valleyview_display_irqs_uninstall(dev_priv);
3719}
3720
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003721static int valleyview_irq_postinstall(struct drm_device *dev)
3722{
Jani Nikula2d1013d2014-03-31 14:27:17 +03003723 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterb79480b2013-06-27 17:52:10 +02003724 unsigned long irqflags;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003725
Imre Deakf8b79e52014-03-04 19:23:07 +02003726 dev_priv->irq_mask = ~0;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003727
Daniel Vetter20afbda2012-12-11 14:05:07 +01003728 I915_WRITE(PORT_HOTPLUG_EN, 0);
3729 POSTING_READ(PORT_HOTPLUG_EN);
3730
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003731 I915_WRITE(VLV_IMR, dev_priv->irq_mask);
Imre Deakf8b79e52014-03-04 19:23:07 +02003732 I915_WRITE(VLV_IER, ~dev_priv->irq_mask);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003733 I915_WRITE(VLV_IIR, 0xffffffff);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003734 POSTING_READ(VLV_IER);
3735
Daniel Vetterb79480b2013-06-27 17:52:10 +02003736 /* Interrupt setup is already guaranteed to be single-threaded, this is
3737 * just to make the assert_spin_locked check happy. */
3738 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Imre Deakf8b79e52014-03-04 19:23:07 +02003739 if (dev_priv->display_irqs_enabled)
3740 valleyview_display_irqs_install(dev_priv);
Daniel Vetterb79480b2013-06-27 17:52:10 +02003741 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
Jesse Barnes31acc7f2012-06-20 10:53:11 -07003742
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003743 I915_WRITE(VLV_IIR, 0xffffffff);
3744 I915_WRITE(VLV_IIR, 0xffffffff);
3745
Daniel Vetter0a9a8c92013-07-12 22:43:26 +02003746 gen5_gt_irq_postinstall(dev);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003747
3748 /* ack & enable invalid PTE error interrupts */
3749#if 0 /* FIXME: add support to irq handler for checking these bits */
3750 I915_WRITE(DPINVGTT, DPINVGTT_STATUS_MASK);
3751 I915_WRITE(DPINVGTT, DPINVGTT_EN_MASK);
3752#endif
3753
3754 I915_WRITE(VLV_MASTER_IER, MASTER_INTERRUPT_ENABLE);
Daniel Vetter20afbda2012-12-11 14:05:07 +01003755
3756 return 0;
3757}
3758
Ben Widawskyabd58f02013-11-02 21:07:09 -07003759static void gen8_gt_irq_postinstall(struct drm_i915_private *dev_priv)
3760{
Ben Widawskyabd58f02013-11-02 21:07:09 -07003761 /* These are interrupts we'll toggle with the ring mask register */
3762 uint32_t gt_interrupts[] = {
3763 GT_RENDER_USER_INTERRUPT << GEN8_RCS_IRQ_SHIFT |
Oscar Mateo73d477f2014-07-24 17:04:31 +01003764 GT_CONTEXT_SWITCH_INTERRUPT << GEN8_RCS_IRQ_SHIFT |
Ben Widawskyabd58f02013-11-02 21:07:09 -07003765 GT_RENDER_L3_PARITY_ERROR_INTERRUPT |
Oscar Mateo73d477f2014-07-24 17:04:31 +01003766 GT_RENDER_USER_INTERRUPT << GEN8_BCS_IRQ_SHIFT |
3767 GT_CONTEXT_SWITCH_INTERRUPT << GEN8_BCS_IRQ_SHIFT,
Ben Widawskyabd58f02013-11-02 21:07:09 -07003768 GT_RENDER_USER_INTERRUPT << GEN8_VCS1_IRQ_SHIFT |
Oscar Mateo73d477f2014-07-24 17:04:31 +01003769 GT_CONTEXT_SWITCH_INTERRUPT << GEN8_VCS1_IRQ_SHIFT |
3770 GT_RENDER_USER_INTERRUPT << GEN8_VCS2_IRQ_SHIFT |
3771 GT_CONTEXT_SWITCH_INTERRUPT << GEN8_VCS2_IRQ_SHIFT,
Ben Widawskyabd58f02013-11-02 21:07:09 -07003772 0,
Oscar Mateo73d477f2014-07-24 17:04:31 +01003773 GT_RENDER_USER_INTERRUPT << GEN8_VECS_IRQ_SHIFT |
3774 GT_CONTEXT_SWITCH_INTERRUPT << GEN8_VECS_IRQ_SHIFT
Ben Widawskyabd58f02013-11-02 21:07:09 -07003775 };
3776
Ben Widawsky09610212014-05-15 20:58:08 +03003777 dev_priv->pm_irq_mask = 0xffffffff;
Deepak S9a2d2d82014-08-22 08:32:40 +05303778 GEN8_IRQ_INIT_NDX(GT, 0, ~gt_interrupts[0], gt_interrupts[0]);
3779 GEN8_IRQ_INIT_NDX(GT, 1, ~gt_interrupts[1], gt_interrupts[1]);
3780 GEN8_IRQ_INIT_NDX(GT, 2, dev_priv->pm_irq_mask, dev_priv->pm_rps_events);
3781 GEN8_IRQ_INIT_NDX(GT, 3, ~gt_interrupts[3], gt_interrupts[3]);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003782}
3783
3784static void gen8_de_irq_postinstall(struct drm_i915_private *dev_priv)
3785{
Damien Lespiaud0e1f1c2014-04-08 01:22:44 +01003786 uint32_t de_pipe_masked = GEN8_PIPE_PRIMARY_FLIP_DONE |
Daniel Vetter13b3a0a2013-11-07 15:31:52 +01003787 GEN8_PIPE_CDCLK_CRC_DONE |
Daniel Vetter13b3a0a2013-11-07 15:31:52 +01003788 GEN8_DE_PIPE_IRQ_FAULT_ERRORS;
Daniel Vetter5c673b62014-03-07 20:34:46 +01003789 uint32_t de_pipe_enables = de_pipe_masked | GEN8_PIPE_VBLANK |
3790 GEN8_PIPE_FIFO_UNDERRUN;
Ben Widawskyabd58f02013-11-02 21:07:09 -07003791 int pipe;
Daniel Vetter13b3a0a2013-11-07 15:31:52 +01003792 dev_priv->de_irq_mask[PIPE_A] = ~de_pipe_masked;
3793 dev_priv->de_irq_mask[PIPE_B] = ~de_pipe_masked;
3794 dev_priv->de_irq_mask[PIPE_C] = ~de_pipe_masked;
Ben Widawskyabd58f02013-11-02 21:07:09 -07003795
Damien Lespiau055e3932014-08-18 13:49:10 +01003796 for_each_pipe(dev_priv, pipe)
Paulo Zanoni813bde42014-07-04 11:50:29 -03003797 if (intel_display_power_enabled(dev_priv,
3798 POWER_DOMAIN_PIPE(pipe)))
3799 GEN8_IRQ_INIT_NDX(DE_PIPE, pipe,
3800 dev_priv->de_irq_mask[pipe],
3801 de_pipe_enables);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003802
Paulo Zanoni35079892014-04-01 15:37:15 -03003803 GEN5_IRQ_INIT(GEN8_DE_PORT_, ~GEN8_AUX_CHANNEL_A, GEN8_AUX_CHANNEL_A);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003804}
3805
3806static int gen8_irq_postinstall(struct drm_device *dev)
3807{
3808 struct drm_i915_private *dev_priv = dev->dev_private;
3809
Paulo Zanoni622364b2014-04-01 15:37:22 -03003810 ibx_irq_pre_postinstall(dev);
3811
Ben Widawskyabd58f02013-11-02 21:07:09 -07003812 gen8_gt_irq_postinstall(dev_priv);
3813 gen8_de_irq_postinstall(dev_priv);
3814
3815 ibx_irq_postinstall(dev);
3816
3817 I915_WRITE(GEN8_MASTER_IRQ, DE_MASTER_IRQ_CONTROL);
3818 POSTING_READ(GEN8_MASTER_IRQ);
3819
3820 return 0;
3821}
3822
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003823static int cherryview_irq_postinstall(struct drm_device *dev)
3824{
3825 struct drm_i915_private *dev_priv = dev->dev_private;
3826 u32 enable_mask = I915_DISPLAY_PORT_INTERRUPT |
3827 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003828 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
Ville Syrjälä3278f672014-04-09 13:28:49 +03003829 I915_DISPLAY_PIPE_C_EVENT_INTERRUPT;
3830 u32 pipestat_enable = PLANE_FLIP_DONE_INT_STATUS_VLV |
3831 PIPE_CRC_DONE_INTERRUPT_STATUS;
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003832 unsigned long irqflags;
3833 int pipe;
3834
3835 /*
3836 * Leave vblank interrupts masked initially. enable/disable will
3837 * toggle them based on usage.
3838 */
Ville Syrjälä3278f672014-04-09 13:28:49 +03003839 dev_priv->irq_mask = ~enable_mask;
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003840
Damien Lespiau055e3932014-08-18 13:49:10 +01003841 for_each_pipe(dev_priv, pipe)
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003842 I915_WRITE(PIPESTAT(pipe), 0xffff);
3843
3844 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Ville Syrjälä3278f672014-04-09 13:28:49 +03003845 i915_enable_pipestat(dev_priv, PIPE_A, PIPE_GMBUS_INTERRUPT_STATUS);
Damien Lespiau055e3932014-08-18 13:49:10 +01003846 for_each_pipe(dev_priv, pipe)
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003847 i915_enable_pipestat(dev_priv, pipe, pipestat_enable);
3848 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
3849
3850 I915_WRITE(VLV_IIR, 0xffffffff);
3851 I915_WRITE(VLV_IMR, dev_priv->irq_mask);
3852 I915_WRITE(VLV_IER, enable_mask);
3853
3854 gen8_gt_irq_postinstall(dev_priv);
3855
3856 I915_WRITE(GEN8_MASTER_IRQ, MASTER_INTERRUPT_ENABLE);
3857 POSTING_READ(GEN8_MASTER_IRQ);
3858
3859 return 0;
3860}
3861
Ben Widawskyabd58f02013-11-02 21:07:09 -07003862static void gen8_irq_uninstall(struct drm_device *dev)
3863{
3864 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawskyabd58f02013-11-02 21:07:09 -07003865
3866 if (!dev_priv)
3867 return;
3868
Paulo Zanoni823f6b32014-04-01 15:37:26 -03003869 gen8_irq_reset(dev);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003870}
3871
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003872static void valleyview_irq_uninstall(struct drm_device *dev)
3873{
Jani Nikula2d1013d2014-03-31 14:27:17 +03003874 struct drm_i915_private *dev_priv = dev->dev_private;
Imre Deakf8b79e52014-03-04 19:23:07 +02003875 unsigned long irqflags;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003876 int pipe;
3877
3878 if (!dev_priv)
3879 return;
3880
Imre Deak843d0e72014-04-14 20:24:23 +03003881 I915_WRITE(VLV_MASTER_IER, 0);
3882
Damien Lespiau055e3932014-08-18 13:49:10 +01003883 for_each_pipe(dev_priv, pipe)
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003884 I915_WRITE(PIPESTAT(pipe), 0xffff);
3885
3886 I915_WRITE(HWSTAM, 0xffffffff);
3887 I915_WRITE(PORT_HOTPLUG_EN, 0);
3888 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
Imre Deakf8b79e52014-03-04 19:23:07 +02003889
3890 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
3891 if (dev_priv->display_irqs_enabled)
3892 valleyview_display_irqs_uninstall(dev_priv);
3893 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
3894
3895 dev_priv->irq_mask = 0;
3896
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003897 I915_WRITE(VLV_IIR, 0xffffffff);
3898 I915_WRITE(VLV_IMR, 0xffffffff);
3899 I915_WRITE(VLV_IER, 0x0);
3900 POSTING_READ(VLV_IER);
3901}
3902
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003903static void cherryview_irq_uninstall(struct drm_device *dev)
3904{
3905 struct drm_i915_private *dev_priv = dev->dev_private;
3906 int pipe;
3907
3908 if (!dev_priv)
3909 return;
3910
3911 I915_WRITE(GEN8_MASTER_IRQ, 0);
3912 POSTING_READ(GEN8_MASTER_IRQ);
3913
3914#define GEN8_IRQ_FINI_NDX(type, which) \
3915do { \
3916 I915_WRITE(GEN8_##type##_IMR(which), 0xffffffff); \
3917 I915_WRITE(GEN8_##type##_IER(which), 0); \
3918 I915_WRITE(GEN8_##type##_IIR(which), 0xffffffff); \
3919 POSTING_READ(GEN8_##type##_IIR(which)); \
3920 I915_WRITE(GEN8_##type##_IIR(which), 0xffffffff); \
3921} while (0)
3922
3923#define GEN8_IRQ_FINI(type) \
3924do { \
3925 I915_WRITE(GEN8_##type##_IMR, 0xffffffff); \
3926 I915_WRITE(GEN8_##type##_IER, 0); \
3927 I915_WRITE(GEN8_##type##_IIR, 0xffffffff); \
3928 POSTING_READ(GEN8_##type##_IIR); \
3929 I915_WRITE(GEN8_##type##_IIR, 0xffffffff); \
3930} while (0)
3931
3932 GEN8_IRQ_FINI_NDX(GT, 0);
3933 GEN8_IRQ_FINI_NDX(GT, 1);
3934 GEN8_IRQ_FINI_NDX(GT, 2);
3935 GEN8_IRQ_FINI_NDX(GT, 3);
3936
3937 GEN8_IRQ_FINI(PCU);
3938
3939#undef GEN8_IRQ_FINI
3940#undef GEN8_IRQ_FINI_NDX
3941
3942 I915_WRITE(PORT_HOTPLUG_EN, 0);
3943 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
3944
Damien Lespiau055e3932014-08-18 13:49:10 +01003945 for_each_pipe(dev_priv, pipe)
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003946 I915_WRITE(PIPESTAT(pipe), 0xffff);
3947
3948 I915_WRITE(VLV_IMR, 0xffffffff);
3949 I915_WRITE(VLV_IER, 0x0);
3950 I915_WRITE(VLV_IIR, 0xffffffff);
3951 POSTING_READ(VLV_IIR);
3952}
3953
Jesse Barnesf71d4af2011-06-28 13:00:41 -07003954static void ironlake_irq_uninstall(struct drm_device *dev)
Zhenyu Wang036a4a72009-06-08 14:40:19 +08003955{
Jani Nikula2d1013d2014-03-31 14:27:17 +03003956 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes46979952011-04-07 13:53:55 -07003957
3958 if (!dev_priv)
3959 return;
3960
Paulo Zanonibe30b292014-04-01 15:37:25 -03003961 ironlake_irq_reset(dev);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08003962}
3963
Chris Wilsonc2798b12012-04-22 21:13:57 +01003964static void i8xx_irq_preinstall(struct drm_device * dev)
3965{
Jani Nikula2d1013d2014-03-31 14:27:17 +03003966 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonc2798b12012-04-22 21:13:57 +01003967 int pipe;
3968
Damien Lespiau055e3932014-08-18 13:49:10 +01003969 for_each_pipe(dev_priv, pipe)
Chris Wilsonc2798b12012-04-22 21:13:57 +01003970 I915_WRITE(PIPESTAT(pipe), 0);
3971 I915_WRITE16(IMR, 0xffff);
3972 I915_WRITE16(IER, 0x0);
3973 POSTING_READ16(IER);
3974}
3975
3976static int i8xx_irq_postinstall(struct drm_device *dev)
3977{
Jani Nikula2d1013d2014-03-31 14:27:17 +03003978 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter379ef822013-10-16 22:55:56 +02003979 unsigned long irqflags;
Chris Wilsonc2798b12012-04-22 21:13:57 +01003980
Chris Wilsonc2798b12012-04-22 21:13:57 +01003981 I915_WRITE16(EMR,
3982 ~(I915_ERROR_PAGE_TABLE | I915_ERROR_MEMORY_REFRESH));
3983
3984 /* Unmask the interrupts that we always want on. */
3985 dev_priv->irq_mask =
3986 ~(I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
3987 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
3988 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
3989 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT |
3990 I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT);
3991 I915_WRITE16(IMR, dev_priv->irq_mask);
3992
3993 I915_WRITE16(IER,
3994 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
3995 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
3996 I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT |
3997 I915_USER_INTERRUPT);
3998 POSTING_READ16(IER);
3999
Daniel Vetter379ef822013-10-16 22:55:56 +02004000 /* Interrupt setup is already guaranteed to be single-threaded, this is
4001 * just to make the assert_spin_locked check happy. */
4002 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Imre Deak755e9012014-02-10 18:42:47 +02004003 i915_enable_pipestat(dev_priv, PIPE_A, PIPE_CRC_DONE_INTERRUPT_STATUS);
4004 i915_enable_pipestat(dev_priv, PIPE_B, PIPE_CRC_DONE_INTERRUPT_STATUS);
Daniel Vetter379ef822013-10-16 22:55:56 +02004005 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
4006
Chris Wilsonc2798b12012-04-22 21:13:57 +01004007 return 0;
4008}
4009
Ville Syrjälä90a72f82013-02-19 23:16:44 +02004010/*
4011 * Returns true when a page flip has completed.
4012 */
4013static bool i8xx_handle_vblank(struct drm_device *dev,
Ville Syrjälä1f1c2e22013-11-28 17:30:01 +02004014 int plane, int pipe, u32 iir)
Ville Syrjälä90a72f82013-02-19 23:16:44 +02004015{
Jani Nikula2d1013d2014-03-31 14:27:17 +03004016 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä1f1c2e22013-11-28 17:30:01 +02004017 u16 flip_pending = DISPLAY_PLANE_FLIP_PENDING(plane);
Ville Syrjälä90a72f82013-02-19 23:16:44 +02004018
Ville Syrjälä8d7849d2014-04-29 13:35:46 +03004019 if (!intel_pipe_handle_vblank(dev, pipe))
Ville Syrjälä90a72f82013-02-19 23:16:44 +02004020 return false;
4021
4022 if ((iir & flip_pending) == 0)
Chris Wilsond6bbafa2014-09-05 07:13:24 +01004023 goto check_page_flip;
Ville Syrjälä90a72f82013-02-19 23:16:44 +02004024
Ville Syrjälä1f1c2e22013-11-28 17:30:01 +02004025 intel_prepare_page_flip(dev, plane);
Ville Syrjälä90a72f82013-02-19 23:16:44 +02004026
4027 /* We detect FlipDone by looking for the change in PendingFlip from '1'
4028 * to '0' on the following vblank, i.e. IIR has the Pendingflip
4029 * asserted following the MI_DISPLAY_FLIP, but ISR is deasserted, hence
4030 * the flip is completed (no longer pending). Since this doesn't raise
4031 * an interrupt per se, we watch for the change at vblank.
4032 */
4033 if (I915_READ16(ISR) & flip_pending)
Chris Wilsond6bbafa2014-09-05 07:13:24 +01004034 goto check_page_flip;
Ville Syrjälä90a72f82013-02-19 23:16:44 +02004035
4036 intel_finish_page_flip(dev, pipe);
Ville Syrjälä90a72f82013-02-19 23:16:44 +02004037 return true;
Chris Wilsond6bbafa2014-09-05 07:13:24 +01004038
4039check_page_flip:
4040 intel_check_page_flip(dev, pipe);
4041 return false;
Ville Syrjälä90a72f82013-02-19 23:16:44 +02004042}
4043
Daniel Vetterff1f5252012-10-02 15:10:55 +02004044static irqreturn_t i8xx_irq_handler(int irq, void *arg)
Chris Wilsonc2798b12012-04-22 21:13:57 +01004045{
Daniel Vetter45a83f82014-05-12 19:17:55 +02004046 struct drm_device *dev = arg;
Jani Nikula2d1013d2014-03-31 14:27:17 +03004047 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonc2798b12012-04-22 21:13:57 +01004048 u16 iir, new_iir;
4049 u32 pipe_stats[2];
4050 unsigned long irqflags;
Chris Wilsonc2798b12012-04-22 21:13:57 +01004051 int pipe;
4052 u16 flip_mask =
4053 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
4054 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT;
4055
Chris Wilsonc2798b12012-04-22 21:13:57 +01004056 iir = I915_READ16(IIR);
4057 if (iir == 0)
4058 return IRQ_NONE;
4059
4060 while (iir & ~flip_mask) {
4061 /* Can't rely on pipestat interrupt bit in iir as it might
4062 * have been cleared after the pipestat interrupt was received.
4063 * It doesn't set the bit in iir again, but it still produces
4064 * interrupts (for non-MSI).
4065 */
4066 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
4067 if (iir & I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT)
Mika Kuoppala58174462014-02-25 17:11:26 +02004068 i915_handle_error(dev, false,
4069 "Command parser error, iir 0x%08x",
4070 iir);
Chris Wilsonc2798b12012-04-22 21:13:57 +01004071
Damien Lespiau055e3932014-08-18 13:49:10 +01004072 for_each_pipe(dev_priv, pipe) {
Chris Wilsonc2798b12012-04-22 21:13:57 +01004073 int reg = PIPESTAT(pipe);
4074 pipe_stats[pipe] = I915_READ(reg);
4075
4076 /*
4077 * Clear the PIPE*STAT regs before the IIR
4078 */
Ville Syrjälä2d9d2b02014-01-17 11:44:31 +02004079 if (pipe_stats[pipe] & 0x8000ffff)
Chris Wilsonc2798b12012-04-22 21:13:57 +01004080 I915_WRITE(reg, pipe_stats[pipe]);
Chris Wilsonc2798b12012-04-22 21:13:57 +01004081 }
4082 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
4083
4084 I915_WRITE16(IIR, iir & ~flip_mask);
4085 new_iir = I915_READ16(IIR); /* Flush posted writes */
4086
Daniel Vetterd05c6172012-04-26 23:28:09 +02004087 i915_update_dri1_breadcrumb(dev);
Chris Wilsonc2798b12012-04-22 21:13:57 +01004088
4089 if (iir & I915_USER_INTERRUPT)
4090 notify_ring(dev, &dev_priv->ring[RCS]);
4091
Damien Lespiau055e3932014-08-18 13:49:10 +01004092 for_each_pipe(dev_priv, pipe) {
Ville Syrjälä1f1c2e22013-11-28 17:30:01 +02004093 int plane = pipe;
Daniel Vetter3a77c4c2014-01-10 08:50:12 +01004094 if (HAS_FBC(dev))
Ville Syrjälä1f1c2e22013-11-28 17:30:01 +02004095 plane = !plane;
4096
Daniel Vetter4356d582013-10-16 22:55:55 +02004097 if (pipe_stats[pipe] & PIPE_VBLANK_INTERRUPT_STATUS &&
Ville Syrjälä1f1c2e22013-11-28 17:30:01 +02004098 i8xx_handle_vblank(dev, plane, pipe, iir))
4099 flip_mask &= ~DISPLAY_PLANE_FLIP_PENDING(plane);
Chris Wilsonc2798b12012-04-22 21:13:57 +01004100
Daniel Vetter4356d582013-10-16 22:55:55 +02004101 if (pipe_stats[pipe] & PIPE_CRC_DONE_INTERRUPT_STATUS)
Daniel Vetter277de952013-10-18 16:37:07 +02004102 i9xx_pipe_crc_irq_handler(dev, pipe);
Ville Syrjälä2d9d2b02014-01-17 11:44:31 +02004103
4104 if (pipe_stats[pipe] & PIPE_FIFO_UNDERRUN_STATUS &&
4105 intel_set_cpu_fifo_underrun_reporting(dev, pipe, false))
Ville Syrjäläfc2c8072014-01-17 11:44:32 +02004106 DRM_ERROR("pipe %c underrun\n", pipe_name(pipe));
Daniel Vetter4356d582013-10-16 22:55:55 +02004107 }
Chris Wilsonc2798b12012-04-22 21:13:57 +01004108
4109 iir = new_iir;
4110 }
4111
4112 return IRQ_HANDLED;
4113}
4114
4115static void i8xx_irq_uninstall(struct drm_device * dev)
4116{
Jani Nikula2d1013d2014-03-31 14:27:17 +03004117 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonc2798b12012-04-22 21:13:57 +01004118 int pipe;
4119
Damien Lespiau055e3932014-08-18 13:49:10 +01004120 for_each_pipe(dev_priv, pipe) {
Chris Wilsonc2798b12012-04-22 21:13:57 +01004121 /* Clear enable bits; then clear status bits */
4122 I915_WRITE(PIPESTAT(pipe), 0);
4123 I915_WRITE(PIPESTAT(pipe), I915_READ(PIPESTAT(pipe)));
4124 }
4125 I915_WRITE16(IMR, 0xffff);
4126 I915_WRITE16(IER, 0x0);
4127 I915_WRITE16(IIR, I915_READ16(IIR));
4128}
4129
Chris Wilsona266c7d2012-04-24 22:59:44 +01004130static void i915_irq_preinstall(struct drm_device * dev)
4131{
Jani Nikula2d1013d2014-03-31 14:27:17 +03004132 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004133 int pipe;
4134
Chris Wilsona266c7d2012-04-24 22:59:44 +01004135 if (I915_HAS_HOTPLUG(dev)) {
4136 I915_WRITE(PORT_HOTPLUG_EN, 0);
4137 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
4138 }
4139
Chris Wilson00d98eb2012-04-24 22:59:48 +01004140 I915_WRITE16(HWSTAM, 0xeffe);
Damien Lespiau055e3932014-08-18 13:49:10 +01004141 for_each_pipe(dev_priv, pipe)
Chris Wilsona266c7d2012-04-24 22:59:44 +01004142 I915_WRITE(PIPESTAT(pipe), 0);
4143 I915_WRITE(IMR, 0xffffffff);
4144 I915_WRITE(IER, 0x0);
4145 POSTING_READ(IER);
4146}
4147
4148static int i915_irq_postinstall(struct drm_device *dev)
4149{
Jani Nikula2d1013d2014-03-31 14:27:17 +03004150 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson38bde182012-04-24 22:59:50 +01004151 u32 enable_mask;
Daniel Vetter379ef822013-10-16 22:55:56 +02004152 unsigned long irqflags;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004153
Chris Wilson38bde182012-04-24 22:59:50 +01004154 I915_WRITE(EMR, ~(I915_ERROR_PAGE_TABLE | I915_ERROR_MEMORY_REFRESH));
4155
4156 /* Unmask the interrupts that we always want on. */
4157 dev_priv->irq_mask =
4158 ~(I915_ASLE_INTERRUPT |
4159 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
4160 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
4161 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
4162 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT |
4163 I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT);
4164
4165 enable_mask =
4166 I915_ASLE_INTERRUPT |
4167 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
4168 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
4169 I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT |
4170 I915_USER_INTERRUPT;
4171
Chris Wilsona266c7d2012-04-24 22:59:44 +01004172 if (I915_HAS_HOTPLUG(dev)) {
Daniel Vetter20afbda2012-12-11 14:05:07 +01004173 I915_WRITE(PORT_HOTPLUG_EN, 0);
4174 POSTING_READ(PORT_HOTPLUG_EN);
4175
Chris Wilsona266c7d2012-04-24 22:59:44 +01004176 /* Enable in IER... */
4177 enable_mask |= I915_DISPLAY_PORT_INTERRUPT;
4178 /* and unmask in IMR */
4179 dev_priv->irq_mask &= ~I915_DISPLAY_PORT_INTERRUPT;
4180 }
4181
Chris Wilsona266c7d2012-04-24 22:59:44 +01004182 I915_WRITE(IMR, dev_priv->irq_mask);
4183 I915_WRITE(IER, enable_mask);
4184 POSTING_READ(IER);
4185
Jani Nikulaf49e38d2013-04-29 13:02:54 +03004186 i915_enable_asle_pipestat(dev);
Daniel Vetter20afbda2012-12-11 14:05:07 +01004187
Daniel Vetter379ef822013-10-16 22:55:56 +02004188 /* Interrupt setup is already guaranteed to be single-threaded, this is
4189 * just to make the assert_spin_locked check happy. */
4190 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Imre Deak755e9012014-02-10 18:42:47 +02004191 i915_enable_pipestat(dev_priv, PIPE_A, PIPE_CRC_DONE_INTERRUPT_STATUS);
4192 i915_enable_pipestat(dev_priv, PIPE_B, PIPE_CRC_DONE_INTERRUPT_STATUS);
Daniel Vetter379ef822013-10-16 22:55:56 +02004193 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
4194
Daniel Vetter20afbda2012-12-11 14:05:07 +01004195 return 0;
4196}
4197
Ville Syrjälä90a72f82013-02-19 23:16:44 +02004198/*
4199 * Returns true when a page flip has completed.
4200 */
4201static bool i915_handle_vblank(struct drm_device *dev,
4202 int plane, int pipe, u32 iir)
4203{
Jani Nikula2d1013d2014-03-31 14:27:17 +03004204 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä90a72f82013-02-19 23:16:44 +02004205 u32 flip_pending = DISPLAY_PLANE_FLIP_PENDING(plane);
4206
Ville Syrjälä8d7849d2014-04-29 13:35:46 +03004207 if (!intel_pipe_handle_vblank(dev, pipe))
Ville Syrjälä90a72f82013-02-19 23:16:44 +02004208 return false;
4209
4210 if ((iir & flip_pending) == 0)
Chris Wilsond6bbafa2014-09-05 07:13:24 +01004211 goto check_page_flip;
Ville Syrjälä90a72f82013-02-19 23:16:44 +02004212
4213 intel_prepare_page_flip(dev, plane);
4214
4215 /* We detect FlipDone by looking for the change in PendingFlip from '1'
4216 * to '0' on the following vblank, i.e. IIR has the Pendingflip
4217 * asserted following the MI_DISPLAY_FLIP, but ISR is deasserted, hence
4218 * the flip is completed (no longer pending). Since this doesn't raise
4219 * an interrupt per se, we watch for the change at vblank.
4220 */
4221 if (I915_READ(ISR) & flip_pending)
Chris Wilsond6bbafa2014-09-05 07:13:24 +01004222 goto check_page_flip;
Ville Syrjälä90a72f82013-02-19 23:16:44 +02004223
4224 intel_finish_page_flip(dev, pipe);
Ville Syrjälä90a72f82013-02-19 23:16:44 +02004225 return true;
Chris Wilsond6bbafa2014-09-05 07:13:24 +01004226
4227check_page_flip:
4228 intel_check_page_flip(dev, pipe);
4229 return false;
Ville Syrjälä90a72f82013-02-19 23:16:44 +02004230}
4231
Daniel Vetterff1f5252012-10-02 15:10:55 +02004232static irqreturn_t i915_irq_handler(int irq, void *arg)
Chris Wilsona266c7d2012-04-24 22:59:44 +01004233{
Daniel Vetter45a83f82014-05-12 19:17:55 +02004234 struct drm_device *dev = arg;
Jani Nikula2d1013d2014-03-31 14:27:17 +03004235 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson8291ee92012-04-24 22:59:47 +01004236 u32 iir, new_iir, pipe_stats[I915_MAX_PIPES];
Chris Wilsona266c7d2012-04-24 22:59:44 +01004237 unsigned long irqflags;
Chris Wilson38bde182012-04-24 22:59:50 +01004238 u32 flip_mask =
4239 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
4240 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT;
Chris Wilson38bde182012-04-24 22:59:50 +01004241 int pipe, ret = IRQ_NONE;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004242
Chris Wilsona266c7d2012-04-24 22:59:44 +01004243 iir = I915_READ(IIR);
Chris Wilson38bde182012-04-24 22:59:50 +01004244 do {
4245 bool irq_received = (iir & ~flip_mask) != 0;
Chris Wilson8291ee92012-04-24 22:59:47 +01004246 bool blc_event = false;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004247
4248 /* Can't rely on pipestat interrupt bit in iir as it might
4249 * have been cleared after the pipestat interrupt was received.
4250 * It doesn't set the bit in iir again, but it still produces
4251 * interrupts (for non-MSI).
4252 */
4253 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
4254 if (iir & I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT)
Mika Kuoppala58174462014-02-25 17:11:26 +02004255 i915_handle_error(dev, false,
4256 "Command parser error, iir 0x%08x",
4257 iir);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004258
Damien Lespiau055e3932014-08-18 13:49:10 +01004259 for_each_pipe(dev_priv, pipe) {
Chris Wilsona266c7d2012-04-24 22:59:44 +01004260 int reg = PIPESTAT(pipe);
4261 pipe_stats[pipe] = I915_READ(reg);
4262
Chris Wilson38bde182012-04-24 22:59:50 +01004263 /* Clear the PIPE*STAT regs before the IIR */
Chris Wilsona266c7d2012-04-24 22:59:44 +01004264 if (pipe_stats[pipe] & 0x8000ffff) {
Chris Wilsona266c7d2012-04-24 22:59:44 +01004265 I915_WRITE(reg, pipe_stats[pipe]);
Chris Wilson38bde182012-04-24 22:59:50 +01004266 irq_received = true;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004267 }
4268 }
4269 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
4270
4271 if (!irq_received)
4272 break;
4273
Chris Wilsona266c7d2012-04-24 22:59:44 +01004274 /* Consume port. Then clear IIR or we'll miss events */
Ville Syrjälä16c6c562014-04-01 10:54:36 +03004275 if (I915_HAS_HOTPLUG(dev) &&
4276 iir & I915_DISPLAY_PORT_INTERRUPT)
4277 i9xx_hpd_irq_handler(dev);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004278
Chris Wilson38bde182012-04-24 22:59:50 +01004279 I915_WRITE(IIR, iir & ~flip_mask);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004280 new_iir = I915_READ(IIR); /* Flush posted writes */
4281
Chris Wilsona266c7d2012-04-24 22:59:44 +01004282 if (iir & I915_USER_INTERRUPT)
4283 notify_ring(dev, &dev_priv->ring[RCS]);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004284
Damien Lespiau055e3932014-08-18 13:49:10 +01004285 for_each_pipe(dev_priv, pipe) {
Chris Wilson38bde182012-04-24 22:59:50 +01004286 int plane = pipe;
Daniel Vetter3a77c4c2014-01-10 08:50:12 +01004287 if (HAS_FBC(dev))
Chris Wilson38bde182012-04-24 22:59:50 +01004288 plane = !plane;
Ville Syrjälä5e2032d2013-02-19 15:16:38 +02004289
Ville Syrjälä90a72f82013-02-19 23:16:44 +02004290 if (pipe_stats[pipe] & PIPE_VBLANK_INTERRUPT_STATUS &&
4291 i915_handle_vblank(dev, plane, pipe, iir))
4292 flip_mask &= ~DISPLAY_PLANE_FLIP_PENDING(plane);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004293
4294 if (pipe_stats[pipe] & PIPE_LEGACY_BLC_EVENT_STATUS)
4295 blc_event = true;
Daniel Vetter4356d582013-10-16 22:55:55 +02004296
4297 if (pipe_stats[pipe] & PIPE_CRC_DONE_INTERRUPT_STATUS)
Daniel Vetter277de952013-10-18 16:37:07 +02004298 i9xx_pipe_crc_irq_handler(dev, pipe);
Ville Syrjälä2d9d2b02014-01-17 11:44:31 +02004299
4300 if (pipe_stats[pipe] & PIPE_FIFO_UNDERRUN_STATUS &&
4301 intel_set_cpu_fifo_underrun_reporting(dev, pipe, false))
Ville Syrjäläfc2c8072014-01-17 11:44:32 +02004302 DRM_ERROR("pipe %c underrun\n", pipe_name(pipe));
Chris Wilsona266c7d2012-04-24 22:59:44 +01004303 }
4304
Chris Wilsona266c7d2012-04-24 22:59:44 +01004305 if (blc_event || (iir & I915_ASLE_INTERRUPT))
4306 intel_opregion_asle_intr(dev);
4307
4308 /* With MSI, interrupts are only generated when iir
4309 * transitions from zero to nonzero. If another bit got
4310 * set while we were handling the existing iir bits, then
4311 * we would never get another interrupt.
4312 *
4313 * This is fine on non-MSI as well, as if we hit this path
4314 * we avoid exiting the interrupt handler only to generate
4315 * another one.
4316 *
4317 * Note that for MSI this could cause a stray interrupt report
4318 * if an interrupt landed in the time between writing IIR and
4319 * the posting read. This should be rare enough to never
4320 * trigger the 99% of 100,000 interrupts test for disabling
4321 * stray interrupts.
4322 */
Chris Wilson38bde182012-04-24 22:59:50 +01004323 ret = IRQ_HANDLED;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004324 iir = new_iir;
Chris Wilson38bde182012-04-24 22:59:50 +01004325 } while (iir & ~flip_mask);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004326
Daniel Vetterd05c6172012-04-26 23:28:09 +02004327 i915_update_dri1_breadcrumb(dev);
Chris Wilson8291ee92012-04-24 22:59:47 +01004328
Chris Wilsona266c7d2012-04-24 22:59:44 +01004329 return ret;
4330}
4331
4332static void i915_irq_uninstall(struct drm_device * dev)
4333{
Jani Nikula2d1013d2014-03-31 14:27:17 +03004334 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004335 int pipe;
4336
Chris Wilsona266c7d2012-04-24 22:59:44 +01004337 if (I915_HAS_HOTPLUG(dev)) {
4338 I915_WRITE(PORT_HOTPLUG_EN, 0);
4339 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
4340 }
4341
Chris Wilson00d98eb2012-04-24 22:59:48 +01004342 I915_WRITE16(HWSTAM, 0xffff);
Damien Lespiau055e3932014-08-18 13:49:10 +01004343 for_each_pipe(dev_priv, pipe) {
Chris Wilson55b39752012-04-24 22:59:49 +01004344 /* Clear enable bits; then clear status bits */
Chris Wilsona266c7d2012-04-24 22:59:44 +01004345 I915_WRITE(PIPESTAT(pipe), 0);
Chris Wilson55b39752012-04-24 22:59:49 +01004346 I915_WRITE(PIPESTAT(pipe), I915_READ(PIPESTAT(pipe)));
4347 }
Chris Wilsona266c7d2012-04-24 22:59:44 +01004348 I915_WRITE(IMR, 0xffffffff);
4349 I915_WRITE(IER, 0x0);
4350
Chris Wilsona266c7d2012-04-24 22:59:44 +01004351 I915_WRITE(IIR, I915_READ(IIR));
4352}
4353
4354static void i965_irq_preinstall(struct drm_device * dev)
4355{
Jani Nikula2d1013d2014-03-31 14:27:17 +03004356 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004357 int pipe;
4358
Chris Wilsonadca4732012-05-11 18:01:31 +01004359 I915_WRITE(PORT_HOTPLUG_EN, 0);
4360 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
Chris Wilsona266c7d2012-04-24 22:59:44 +01004361
4362 I915_WRITE(HWSTAM, 0xeffe);
Damien Lespiau055e3932014-08-18 13:49:10 +01004363 for_each_pipe(dev_priv, pipe)
Chris Wilsona266c7d2012-04-24 22:59:44 +01004364 I915_WRITE(PIPESTAT(pipe), 0);
4365 I915_WRITE(IMR, 0xffffffff);
4366 I915_WRITE(IER, 0x0);
4367 POSTING_READ(IER);
4368}
4369
4370static int i965_irq_postinstall(struct drm_device *dev)
4371{
Jani Nikula2d1013d2014-03-31 14:27:17 +03004372 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonbbba0a92012-04-24 22:59:51 +01004373 u32 enable_mask;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004374 u32 error_mask;
Daniel Vetterb79480b2013-06-27 17:52:10 +02004375 unsigned long irqflags;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004376
Chris Wilsona266c7d2012-04-24 22:59:44 +01004377 /* Unmask the interrupts that we always want on. */
Chris Wilsonbbba0a92012-04-24 22:59:51 +01004378 dev_priv->irq_mask = ~(I915_ASLE_INTERRUPT |
Chris Wilsonadca4732012-05-11 18:01:31 +01004379 I915_DISPLAY_PORT_INTERRUPT |
Chris Wilsonbbba0a92012-04-24 22:59:51 +01004380 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
4381 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
4382 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
4383 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT |
4384 I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT);
4385
4386 enable_mask = ~dev_priv->irq_mask;
Ville Syrjälä21ad8332013-02-19 15:16:39 +02004387 enable_mask &= ~(I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
4388 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT);
Chris Wilsonbbba0a92012-04-24 22:59:51 +01004389 enable_mask |= I915_USER_INTERRUPT;
4390
4391 if (IS_G4X(dev))
4392 enable_mask |= I915_BSD_USER_INTERRUPT;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004393
Daniel Vetterb79480b2013-06-27 17:52:10 +02004394 /* Interrupt setup is already guaranteed to be single-threaded, this is
4395 * just to make the assert_spin_locked check happy. */
4396 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Imre Deak755e9012014-02-10 18:42:47 +02004397 i915_enable_pipestat(dev_priv, PIPE_A, PIPE_GMBUS_INTERRUPT_STATUS);
4398 i915_enable_pipestat(dev_priv, PIPE_A, PIPE_CRC_DONE_INTERRUPT_STATUS);
4399 i915_enable_pipestat(dev_priv, PIPE_B, PIPE_CRC_DONE_INTERRUPT_STATUS);
Daniel Vetterb79480b2013-06-27 17:52:10 +02004400 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004401
Chris Wilsona266c7d2012-04-24 22:59:44 +01004402 /*
4403 * Enable some error detection, note the instruction error mask
4404 * bit is reserved, so we leave it masked.
4405 */
4406 if (IS_G4X(dev)) {
4407 error_mask = ~(GM45_ERROR_PAGE_TABLE |
4408 GM45_ERROR_MEM_PRIV |
4409 GM45_ERROR_CP_PRIV |
4410 I915_ERROR_MEMORY_REFRESH);
4411 } else {
4412 error_mask = ~(I915_ERROR_PAGE_TABLE |
4413 I915_ERROR_MEMORY_REFRESH);
4414 }
4415 I915_WRITE(EMR, error_mask);
4416
4417 I915_WRITE(IMR, dev_priv->irq_mask);
4418 I915_WRITE(IER, enable_mask);
4419 POSTING_READ(IER);
4420
Daniel Vetter20afbda2012-12-11 14:05:07 +01004421 I915_WRITE(PORT_HOTPLUG_EN, 0);
4422 POSTING_READ(PORT_HOTPLUG_EN);
4423
Jani Nikulaf49e38d2013-04-29 13:02:54 +03004424 i915_enable_asle_pipestat(dev);
Daniel Vetter20afbda2012-12-11 14:05:07 +01004425
4426 return 0;
4427}
4428
Egbert Eichbac56d52013-02-25 12:06:51 -05004429static void i915_hpd_irq_setup(struct drm_device *dev)
Daniel Vetter20afbda2012-12-11 14:05:07 +01004430{
Jani Nikula2d1013d2014-03-31 14:27:17 +03004431 struct drm_i915_private *dev_priv = dev->dev_private;
Egbert Eichcd569ae2013-04-16 13:36:57 +02004432 struct intel_encoder *intel_encoder;
Daniel Vetter20afbda2012-12-11 14:05:07 +01004433 u32 hotplug_en;
4434
Daniel Vetterb5ea2d52013-06-27 17:52:15 +02004435 assert_spin_locked(&dev_priv->irq_lock);
4436
Egbert Eichbac56d52013-02-25 12:06:51 -05004437 if (I915_HAS_HOTPLUG(dev)) {
4438 hotplug_en = I915_READ(PORT_HOTPLUG_EN);
4439 hotplug_en &= ~HOTPLUG_INT_EN_MASK;
4440 /* Note HDMI and DP share hotplug bits */
Egbert Eiche5868a32013-02-28 04:17:12 -05004441 /* enable bits are the same for all generations */
Damien Lespiaub2784e12014-08-05 11:29:37 +01004442 for_each_intel_encoder(dev, intel_encoder)
Egbert Eichcd569ae2013-04-16 13:36:57 +02004443 if (dev_priv->hpd_stats[intel_encoder->hpd_pin].hpd_mark == HPD_ENABLED)
4444 hotplug_en |= hpd_mask_i915[intel_encoder->hpd_pin];
Egbert Eichbac56d52013-02-25 12:06:51 -05004445 /* Programming the CRT detection parameters tends
4446 to generate a spurious hotplug event about three
4447 seconds later. So just do it once.
4448 */
4449 if (IS_G4X(dev))
4450 hotplug_en |= CRT_HOTPLUG_ACTIVATION_PERIOD_64;
Daniel Vetter85fc95b2013-03-27 15:47:11 +01004451 hotplug_en &= ~CRT_HOTPLUG_VOLTAGE_COMPARE_MASK;
Egbert Eichbac56d52013-02-25 12:06:51 -05004452 hotplug_en |= CRT_HOTPLUG_VOLTAGE_COMPARE_50;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004453
Egbert Eichbac56d52013-02-25 12:06:51 -05004454 /* Ignore TV since it's buggy */
4455 I915_WRITE(PORT_HOTPLUG_EN, hotplug_en);
4456 }
Chris Wilsona266c7d2012-04-24 22:59:44 +01004457}
4458
Daniel Vetterff1f5252012-10-02 15:10:55 +02004459static irqreturn_t i965_irq_handler(int irq, void *arg)
Chris Wilsona266c7d2012-04-24 22:59:44 +01004460{
Daniel Vetter45a83f82014-05-12 19:17:55 +02004461 struct drm_device *dev = arg;
Jani Nikula2d1013d2014-03-31 14:27:17 +03004462 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004463 u32 iir, new_iir;
4464 u32 pipe_stats[I915_MAX_PIPES];
Chris Wilsona266c7d2012-04-24 22:59:44 +01004465 unsigned long irqflags;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004466 int ret = IRQ_NONE, pipe;
Ville Syrjälä21ad8332013-02-19 15:16:39 +02004467 u32 flip_mask =
4468 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
4469 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004470
Chris Wilsona266c7d2012-04-24 22:59:44 +01004471 iir = I915_READ(IIR);
4472
Chris Wilsona266c7d2012-04-24 22:59:44 +01004473 for (;;) {
Ville Syrjälä501e01d2014-01-17 11:35:15 +02004474 bool irq_received = (iir & ~flip_mask) != 0;
Chris Wilson2c8ba292012-04-24 22:59:46 +01004475 bool blc_event = false;
4476
Chris Wilsona266c7d2012-04-24 22:59:44 +01004477 /* Can't rely on pipestat interrupt bit in iir as it might
4478 * have been cleared after the pipestat interrupt was received.
4479 * It doesn't set the bit in iir again, but it still produces
4480 * interrupts (for non-MSI).
4481 */
4482 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
4483 if (iir & I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT)
Mika Kuoppala58174462014-02-25 17:11:26 +02004484 i915_handle_error(dev, false,
4485 "Command parser error, iir 0x%08x",
4486 iir);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004487
Damien Lespiau055e3932014-08-18 13:49:10 +01004488 for_each_pipe(dev_priv, pipe) {
Chris Wilsona266c7d2012-04-24 22:59:44 +01004489 int reg = PIPESTAT(pipe);
4490 pipe_stats[pipe] = I915_READ(reg);
4491
4492 /*
4493 * Clear the PIPE*STAT regs before the IIR
4494 */
4495 if (pipe_stats[pipe] & 0x8000ffff) {
Chris Wilsona266c7d2012-04-24 22:59:44 +01004496 I915_WRITE(reg, pipe_stats[pipe]);
Ville Syrjälä501e01d2014-01-17 11:35:15 +02004497 irq_received = true;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004498 }
4499 }
4500 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
4501
4502 if (!irq_received)
4503 break;
4504
4505 ret = IRQ_HANDLED;
4506
4507 /* Consume port. Then clear IIR or we'll miss events */
Ville Syrjälä16c6c562014-04-01 10:54:36 +03004508 if (iir & I915_DISPLAY_PORT_INTERRUPT)
4509 i9xx_hpd_irq_handler(dev);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004510
Ville Syrjälä21ad8332013-02-19 15:16:39 +02004511 I915_WRITE(IIR, iir & ~flip_mask);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004512 new_iir = I915_READ(IIR); /* Flush posted writes */
4513
Chris Wilsona266c7d2012-04-24 22:59:44 +01004514 if (iir & I915_USER_INTERRUPT)
4515 notify_ring(dev, &dev_priv->ring[RCS]);
4516 if (iir & I915_BSD_USER_INTERRUPT)
4517 notify_ring(dev, &dev_priv->ring[VCS]);
4518
Damien Lespiau055e3932014-08-18 13:49:10 +01004519 for_each_pipe(dev_priv, pipe) {
Chris Wilson2c8ba292012-04-24 22:59:46 +01004520 if (pipe_stats[pipe] & PIPE_START_VBLANK_INTERRUPT_STATUS &&
Ville Syrjälä90a72f82013-02-19 23:16:44 +02004521 i915_handle_vblank(dev, pipe, pipe, iir))
4522 flip_mask &= ~DISPLAY_PLANE_FLIP_PENDING(pipe);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004523
4524 if (pipe_stats[pipe] & PIPE_LEGACY_BLC_EVENT_STATUS)
4525 blc_event = true;
Daniel Vetter4356d582013-10-16 22:55:55 +02004526
4527 if (pipe_stats[pipe] & PIPE_CRC_DONE_INTERRUPT_STATUS)
Daniel Vetter277de952013-10-18 16:37:07 +02004528 i9xx_pipe_crc_irq_handler(dev, pipe);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004529
Ville Syrjälä2d9d2b02014-01-17 11:44:31 +02004530 if (pipe_stats[pipe] & PIPE_FIFO_UNDERRUN_STATUS &&
4531 intel_set_cpu_fifo_underrun_reporting(dev, pipe, false))
Ville Syrjäläfc2c8072014-01-17 11:44:32 +02004532 DRM_ERROR("pipe %c underrun\n", pipe_name(pipe));
Ville Syrjälä2d9d2b02014-01-17 11:44:31 +02004533 }
Chris Wilsona266c7d2012-04-24 22:59:44 +01004534
4535 if (blc_event || (iir & I915_ASLE_INTERRUPT))
4536 intel_opregion_asle_intr(dev);
4537
Daniel Vetter515ac2b2012-12-01 13:53:44 +01004538 if (pipe_stats[0] & PIPE_GMBUS_INTERRUPT_STATUS)
4539 gmbus_irq_handler(dev);
4540
Chris Wilsona266c7d2012-04-24 22:59:44 +01004541 /* With MSI, interrupts are only generated when iir
4542 * transitions from zero to nonzero. If another bit got
4543 * set while we were handling the existing iir bits, then
4544 * we would never get another interrupt.
4545 *
4546 * This is fine on non-MSI as well, as if we hit this path
4547 * we avoid exiting the interrupt handler only to generate
4548 * another one.
4549 *
4550 * Note that for MSI this could cause a stray interrupt report
4551 * if an interrupt landed in the time between writing IIR and
4552 * the posting read. This should be rare enough to never
4553 * trigger the 99% of 100,000 interrupts test for disabling
4554 * stray interrupts.
4555 */
4556 iir = new_iir;
4557 }
4558
Daniel Vetterd05c6172012-04-26 23:28:09 +02004559 i915_update_dri1_breadcrumb(dev);
Chris Wilson2c8ba292012-04-24 22:59:46 +01004560
Chris Wilsona266c7d2012-04-24 22:59:44 +01004561 return ret;
4562}
4563
4564static void i965_irq_uninstall(struct drm_device * dev)
4565{
Jani Nikula2d1013d2014-03-31 14:27:17 +03004566 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004567 int pipe;
4568
4569 if (!dev_priv)
4570 return;
4571
Chris Wilsonadca4732012-05-11 18:01:31 +01004572 I915_WRITE(PORT_HOTPLUG_EN, 0);
4573 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
Chris Wilsona266c7d2012-04-24 22:59:44 +01004574
4575 I915_WRITE(HWSTAM, 0xffffffff);
Damien Lespiau055e3932014-08-18 13:49:10 +01004576 for_each_pipe(dev_priv, pipe)
Chris Wilsona266c7d2012-04-24 22:59:44 +01004577 I915_WRITE(PIPESTAT(pipe), 0);
4578 I915_WRITE(IMR, 0xffffffff);
4579 I915_WRITE(IER, 0x0);
4580
Damien Lespiau055e3932014-08-18 13:49:10 +01004581 for_each_pipe(dev_priv, pipe)
Chris Wilsona266c7d2012-04-24 22:59:44 +01004582 I915_WRITE(PIPESTAT(pipe),
4583 I915_READ(PIPESTAT(pipe)) & 0x8000ffff);
4584 I915_WRITE(IIR, I915_READ(IIR));
4585}
4586
Imre Deak63237512014-08-18 15:37:02 +03004587static void intel_hpd_irq_reenable(struct work_struct *work)
Egbert Eichac4c16c2013-04-16 13:36:58 +02004588{
Imre Deak63237512014-08-18 15:37:02 +03004589 struct drm_i915_private *dev_priv =
4590 container_of(work, typeof(*dev_priv),
4591 hotplug_reenable_work.work);
Egbert Eichac4c16c2013-04-16 13:36:58 +02004592 struct drm_device *dev = dev_priv->dev;
4593 struct drm_mode_config *mode_config = &dev->mode_config;
4594 unsigned long irqflags;
4595 int i;
4596
Imre Deak63237512014-08-18 15:37:02 +03004597 intel_runtime_pm_get(dev_priv);
4598
Egbert Eichac4c16c2013-04-16 13:36:58 +02004599 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
4600 for (i = (HPD_NONE + 1); i < HPD_NUM_PINS; i++) {
4601 struct drm_connector *connector;
4602
4603 if (dev_priv->hpd_stats[i].hpd_mark != HPD_DISABLED)
4604 continue;
4605
4606 dev_priv->hpd_stats[i].hpd_mark = HPD_ENABLED;
4607
4608 list_for_each_entry(connector, &mode_config->connector_list, head) {
4609 struct intel_connector *intel_connector = to_intel_connector(connector);
4610
4611 if (intel_connector->encoder->hpd_pin == i) {
4612 if (connector->polled != intel_connector->polled)
4613 DRM_DEBUG_DRIVER("Reenabling HPD on connector %s\n",
Jani Nikulac23cc412014-06-03 14:56:17 +03004614 connector->name);
Egbert Eichac4c16c2013-04-16 13:36:58 +02004615 connector->polled = intel_connector->polled;
4616 if (!connector->polled)
4617 connector->polled = DRM_CONNECTOR_POLL_HPD;
4618 }
4619 }
4620 }
4621 if (dev_priv->display.hpd_irq_setup)
4622 dev_priv->display.hpd_irq_setup(dev);
4623 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
Imre Deak63237512014-08-18 15:37:02 +03004624
4625 intel_runtime_pm_put(dev_priv);
Egbert Eichac4c16c2013-04-16 13:36:58 +02004626}
4627
Jesse Barnesf71d4af2011-06-28 13:00:41 -07004628void intel_irq_init(struct drm_device *dev)
4629{
Chris Wilson8b2e3262012-04-24 22:59:41 +01004630 struct drm_i915_private *dev_priv = dev->dev_private;
4631
4632 INIT_WORK(&dev_priv->hotplug_work, i915_hotplug_work_func);
Dave Airlie13cf5502014-06-18 11:29:35 +10004633 INIT_WORK(&dev_priv->dig_port_work, i915_digport_work_func);
Daniel Vetter99584db2012-11-14 17:14:04 +01004634 INIT_WORK(&dev_priv->gpu_error.work, i915_error_work_func);
Daniel Vetterc6a828d2012-08-08 23:35:35 +02004635 INIT_WORK(&dev_priv->rps.work, gen6_pm_rps_work);
Daniel Vettera4da4fa2012-11-02 19:55:07 +01004636 INIT_WORK(&dev_priv->l3_parity.error_work, ivybridge_parity_work);
Chris Wilson8b2e3262012-04-24 22:59:41 +01004637
Deepak Sa6706b42014-03-15 20:23:22 +05304638 /* Let's track the enabled rps events */
Ville Syrjälä6c65a582014-08-29 14:14:07 +03004639 if (IS_VALLEYVIEW(dev) && !IS_CHERRYVIEW(dev))
4640 /* WaGsvRC0ResidencyMethod:vlv */
Deepak S31685c22014-07-03 17:33:01 -04004641 dev_priv->pm_rps_events = GEN6_PM_RP_UP_EI_EXPIRED;
4642 else
4643 dev_priv->pm_rps_events = GEN6_PM_RPS_EVENTS;
Deepak Sa6706b42014-03-15 20:23:22 +05304644
Daniel Vetter99584db2012-11-14 17:14:04 +01004645 setup_timer(&dev_priv->gpu_error.hangcheck_timer,
4646 i915_hangcheck_elapsed,
Daniel Vetter61bac782012-12-01 21:03:21 +01004647 (unsigned long) dev);
Imre Deak63237512014-08-18 15:37:02 +03004648 INIT_DELAYED_WORK(&dev_priv->hotplug_reenable_work,
4649 intel_hpd_irq_reenable);
Daniel Vetter61bac782012-12-01 21:03:21 +01004650
Tomas Janousek97a19a22012-12-08 13:48:13 +01004651 pm_qos_add_request(&dev_priv->pm_qos, PM_QOS_CPU_DMA_LATENCY, PM_QOS_DEFAULT_VALUE);
Daniel Vetter9ee32fea2012-12-01 13:53:48 +01004652
Jesse Barnes95f25be2014-06-20 09:29:22 -07004653 /* Haven't installed the IRQ handler yet */
4654 dev_priv->pm._irqs_disabled = true;
4655
Ville Syrjälä4cdb83e2013-10-11 21:52:44 +03004656 if (IS_GEN2(dev)) {
4657 dev->max_vblank_count = 0;
4658 dev->driver->get_vblank_counter = i8xx_get_vblank_counter;
4659 } else if (IS_G4X(dev) || INTEL_INFO(dev)->gen >= 5) {
Jesse Barnesf71d4af2011-06-28 13:00:41 -07004660 dev->max_vblank_count = 0xffffffff; /* full 32 bit counter */
4661 dev->driver->get_vblank_counter = gm45_get_vblank_counter;
Ville Syrjälä391f75e2013-09-25 19:55:26 +03004662 } else {
4663 dev->driver->get_vblank_counter = i915_get_vblank_counter;
4664 dev->max_vblank_count = 0xffffff; /* only 24 bits of frame count */
Jesse Barnesf71d4af2011-06-28 13:00:41 -07004665 }
4666
Ville Syrjälä21da2702014-08-06 14:49:55 +03004667 /*
4668 * Opt out of the vblank disable timer on everything except gen2.
4669 * Gen2 doesn't have a hardware frame counter and so depends on
4670 * vblank interrupts to produce sane vblank seuquence numbers.
4671 */
4672 if (!IS_GEN2(dev))
4673 dev->vblank_disable_immediate = true;
4674
Ville Syrjäläc2baf4b2013-09-23 14:48:50 +03004675 if (drm_core_check_feature(dev, DRIVER_MODESET)) {
Keith Packardc3613de2011-08-12 17:05:54 -07004676 dev->driver->get_vblank_timestamp = i915_get_vblank_timestamp;
Ville Syrjäläc2baf4b2013-09-23 14:48:50 +03004677 dev->driver->get_scanout_position = i915_get_crtc_scanoutpos;
4678 }
Jesse Barnesf71d4af2011-06-28 13:00:41 -07004679
Ville Syrjälä43f328d2014-04-09 20:40:52 +03004680 if (IS_CHERRYVIEW(dev)) {
4681 dev->driver->irq_handler = cherryview_irq_handler;
4682 dev->driver->irq_preinstall = cherryview_irq_preinstall;
4683 dev->driver->irq_postinstall = cherryview_irq_postinstall;
4684 dev->driver->irq_uninstall = cherryview_irq_uninstall;
4685 dev->driver->enable_vblank = valleyview_enable_vblank;
4686 dev->driver->disable_vblank = valleyview_disable_vblank;
4687 dev_priv->display.hpd_irq_setup = i915_hpd_irq_setup;
4688 } else if (IS_VALLEYVIEW(dev)) {
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07004689 dev->driver->irq_handler = valleyview_irq_handler;
4690 dev->driver->irq_preinstall = valleyview_irq_preinstall;
4691 dev->driver->irq_postinstall = valleyview_irq_postinstall;
4692 dev->driver->irq_uninstall = valleyview_irq_uninstall;
4693 dev->driver->enable_vblank = valleyview_enable_vblank;
4694 dev->driver->disable_vblank = valleyview_disable_vblank;
Egbert Eichfa00abe2013-02-25 12:06:48 -05004695 dev_priv->display.hpd_irq_setup = i915_hpd_irq_setup;
Ben Widawskyabd58f02013-11-02 21:07:09 -07004696 } else if (IS_GEN8(dev)) {
4697 dev->driver->irq_handler = gen8_irq_handler;
Daniel Vetter723761b2014-05-22 17:56:34 +02004698 dev->driver->irq_preinstall = gen8_irq_reset;
Ben Widawskyabd58f02013-11-02 21:07:09 -07004699 dev->driver->irq_postinstall = gen8_irq_postinstall;
4700 dev->driver->irq_uninstall = gen8_irq_uninstall;
4701 dev->driver->enable_vblank = gen8_enable_vblank;
4702 dev->driver->disable_vblank = gen8_disable_vblank;
4703 dev_priv->display.hpd_irq_setup = ibx_hpd_irq_setup;
Jesse Barnesf71d4af2011-06-28 13:00:41 -07004704 } else if (HAS_PCH_SPLIT(dev)) {
4705 dev->driver->irq_handler = ironlake_irq_handler;
Daniel Vetter723761b2014-05-22 17:56:34 +02004706 dev->driver->irq_preinstall = ironlake_irq_reset;
Jesse Barnesf71d4af2011-06-28 13:00:41 -07004707 dev->driver->irq_postinstall = ironlake_irq_postinstall;
4708 dev->driver->irq_uninstall = ironlake_irq_uninstall;
4709 dev->driver->enable_vblank = ironlake_enable_vblank;
4710 dev->driver->disable_vblank = ironlake_disable_vblank;
Daniel Vetter82a28bc2013-03-27 15:55:01 +01004711 dev_priv->display.hpd_irq_setup = ibx_hpd_irq_setup;
Jesse Barnesf71d4af2011-06-28 13:00:41 -07004712 } else {
Chris Wilsonc2798b12012-04-22 21:13:57 +01004713 if (INTEL_INFO(dev)->gen == 2) {
4714 dev->driver->irq_preinstall = i8xx_irq_preinstall;
4715 dev->driver->irq_postinstall = i8xx_irq_postinstall;
4716 dev->driver->irq_handler = i8xx_irq_handler;
4717 dev->driver->irq_uninstall = i8xx_irq_uninstall;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004718 } else if (INTEL_INFO(dev)->gen == 3) {
4719 dev->driver->irq_preinstall = i915_irq_preinstall;
4720 dev->driver->irq_postinstall = i915_irq_postinstall;
4721 dev->driver->irq_uninstall = i915_irq_uninstall;
4722 dev->driver->irq_handler = i915_irq_handler;
Daniel Vetter20afbda2012-12-11 14:05:07 +01004723 dev_priv->display.hpd_irq_setup = i915_hpd_irq_setup;
Chris Wilsonc2798b12012-04-22 21:13:57 +01004724 } else {
Chris Wilsona266c7d2012-04-24 22:59:44 +01004725 dev->driver->irq_preinstall = i965_irq_preinstall;
4726 dev->driver->irq_postinstall = i965_irq_postinstall;
4727 dev->driver->irq_uninstall = i965_irq_uninstall;
4728 dev->driver->irq_handler = i965_irq_handler;
Egbert Eichbac56d52013-02-25 12:06:51 -05004729 dev_priv->display.hpd_irq_setup = i915_hpd_irq_setup;
Chris Wilsonc2798b12012-04-22 21:13:57 +01004730 }
Jesse Barnesf71d4af2011-06-28 13:00:41 -07004731 dev->driver->enable_vblank = i915_enable_vblank;
4732 dev->driver->disable_vblank = i915_disable_vblank;
4733 }
4734}
Daniel Vetter20afbda2012-12-11 14:05:07 +01004735
4736void intel_hpd_init(struct drm_device *dev)
4737{
4738 struct drm_i915_private *dev_priv = dev->dev_private;
Egbert Eich821450c2013-04-16 13:36:55 +02004739 struct drm_mode_config *mode_config = &dev->mode_config;
4740 struct drm_connector *connector;
Daniel Vetterb5ea2d52013-06-27 17:52:15 +02004741 unsigned long irqflags;
Egbert Eich821450c2013-04-16 13:36:55 +02004742 int i;
Daniel Vetter20afbda2012-12-11 14:05:07 +01004743
Egbert Eich821450c2013-04-16 13:36:55 +02004744 for (i = 1; i < HPD_NUM_PINS; i++) {
4745 dev_priv->hpd_stats[i].hpd_cnt = 0;
4746 dev_priv->hpd_stats[i].hpd_mark = HPD_ENABLED;
4747 }
4748 list_for_each_entry(connector, &mode_config->connector_list, head) {
4749 struct intel_connector *intel_connector = to_intel_connector(connector);
4750 connector->polled = intel_connector->polled;
Dave Airlie0e32b392014-05-02 14:02:48 +10004751 if (connector->encoder && !connector->polled && I915_HAS_HOTPLUG(dev) && intel_connector->encoder->hpd_pin > HPD_NONE)
4752 connector->polled = DRM_CONNECTOR_POLL_HPD;
4753 if (intel_connector->mst_port)
Egbert Eich821450c2013-04-16 13:36:55 +02004754 connector->polled = DRM_CONNECTOR_POLL_HPD;
4755 }
Daniel Vetterb5ea2d52013-06-27 17:52:15 +02004756
4757 /* Interrupt setup is already guaranteed to be single-threaded, this is
4758 * just to make the assert_spin_locked checks happy. */
4759 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Daniel Vetter20afbda2012-12-11 14:05:07 +01004760 if (dev_priv->display.hpd_irq_setup)
4761 dev_priv->display.hpd_irq_setup(dev);
Daniel Vetterb5ea2d52013-06-27 17:52:15 +02004762 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
Daniel Vetter20afbda2012-12-11 14:05:07 +01004763}
Paulo Zanonic67a4702013-08-19 13:18:09 -03004764
Paulo Zanoni5d584b22014-03-07 20:08:15 -03004765/* Disable interrupts so we can allow runtime PM. */
Paulo Zanoni730488b2014-03-07 20:12:32 -03004766void intel_runtime_pm_disable_interrupts(struct drm_device *dev)
Paulo Zanonic67a4702013-08-19 13:18:09 -03004767{
4768 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanonic67a4702013-08-19 13:18:09 -03004769
Paulo Zanoni730488b2014-03-07 20:12:32 -03004770 dev->driver->irq_uninstall(dev);
Jesse Barnes9df7575f2014-06-20 09:29:20 -07004771 dev_priv->pm._irqs_disabled = true;
Paulo Zanonic67a4702013-08-19 13:18:09 -03004772}
4773
Paulo Zanoni5d584b22014-03-07 20:08:15 -03004774/* Restore interrupts so we can recover from runtime PM. */
Paulo Zanoni730488b2014-03-07 20:12:32 -03004775void intel_runtime_pm_restore_interrupts(struct drm_device *dev)
Paulo Zanonic67a4702013-08-19 13:18:09 -03004776{
4777 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanonic67a4702013-08-19 13:18:09 -03004778
Jesse Barnes9df7575f2014-06-20 09:29:20 -07004779 dev_priv->pm._irqs_disabled = false;
Paulo Zanoni730488b2014-03-07 20:12:32 -03004780 dev->driver->irq_preinstall(dev);
4781 dev->driver->irq_postinstall(dev);
Paulo Zanonic67a4702013-08-19 13:18:09 -03004782}