blob: a2b013d97fb6e7bc3483d056b185681164983842 [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
Daniel Vetterfca52a52014-09-30 10:56:45 +020040/**
41 * DOC: interrupt handling
42 *
43 * These functions provide the basic support for enabling and disabling the
44 * interrupt handling support. There's a lot more functionality in i915_irq.c
45 * and related files, but that will be described in separate chapters.
46 */
47
Egbert Eiche5868a32013-02-28 04:17:12 -050048static const u32 hpd_ibx[] = {
49 [HPD_CRT] = SDE_CRT_HOTPLUG,
50 [HPD_SDVO_B] = SDE_SDVOB_HOTPLUG,
51 [HPD_PORT_B] = SDE_PORTB_HOTPLUG,
52 [HPD_PORT_C] = SDE_PORTC_HOTPLUG,
53 [HPD_PORT_D] = SDE_PORTD_HOTPLUG
54};
55
56static const u32 hpd_cpt[] = {
57 [HPD_CRT] = SDE_CRT_HOTPLUG_CPT,
Daniel Vetter73c352a2013-03-26 22:38:43 +010058 [HPD_SDVO_B] = SDE_SDVOB_HOTPLUG_CPT,
Egbert Eiche5868a32013-02-28 04:17:12 -050059 [HPD_PORT_B] = SDE_PORTB_HOTPLUG_CPT,
60 [HPD_PORT_C] = SDE_PORTC_HOTPLUG_CPT,
61 [HPD_PORT_D] = SDE_PORTD_HOTPLUG_CPT
62};
63
64static const u32 hpd_mask_i915[] = {
65 [HPD_CRT] = CRT_HOTPLUG_INT_EN,
66 [HPD_SDVO_B] = SDVOB_HOTPLUG_INT_EN,
67 [HPD_SDVO_C] = SDVOC_HOTPLUG_INT_EN,
68 [HPD_PORT_B] = PORTB_HOTPLUG_INT_EN,
69 [HPD_PORT_C] = PORTC_HOTPLUG_INT_EN,
70 [HPD_PORT_D] = PORTD_HOTPLUG_INT_EN
71};
72
Daniel Vetter704cfb82013-12-18 09:08:43 +010073static const u32 hpd_status_g4x[] = {
Egbert Eiche5868a32013-02-28 04:17:12 -050074 [HPD_CRT] = CRT_HOTPLUG_INT_STATUS,
75 [HPD_SDVO_B] = SDVOB_HOTPLUG_INT_STATUS_G4X,
76 [HPD_SDVO_C] = SDVOC_HOTPLUG_INT_STATUS_G4X,
77 [HPD_PORT_B] = PORTB_HOTPLUG_INT_STATUS,
78 [HPD_PORT_C] = PORTC_HOTPLUG_INT_STATUS,
79 [HPD_PORT_D] = PORTD_HOTPLUG_INT_STATUS
80};
81
Egbert Eiche5868a32013-02-28 04:17:12 -050082static const u32 hpd_status_i915[] = { /* i915 and valleyview are the same */
83 [HPD_CRT] = CRT_HOTPLUG_INT_STATUS,
84 [HPD_SDVO_B] = SDVOB_HOTPLUG_INT_STATUS_I915,
85 [HPD_SDVO_C] = SDVOC_HOTPLUG_INT_STATUS_I915,
86 [HPD_PORT_B] = PORTB_HOTPLUG_INT_STATUS,
87 [HPD_PORT_C] = PORTC_HOTPLUG_INT_STATUS,
88 [HPD_PORT_D] = PORTD_HOTPLUG_INT_STATUS
89};
90
Paulo Zanoni5c502442014-04-01 15:37:11 -030091/* IIR can theoretically queue up two events. Be paranoid. */
Paulo Zanonif86f3fb2014-04-01 15:37:14 -030092#define GEN8_IRQ_RESET_NDX(type, which) do { \
Paulo Zanoni5c502442014-04-01 15:37:11 -030093 I915_WRITE(GEN8_##type##_IMR(which), 0xffffffff); \
94 POSTING_READ(GEN8_##type##_IMR(which)); \
95 I915_WRITE(GEN8_##type##_IER(which), 0); \
96 I915_WRITE(GEN8_##type##_IIR(which), 0xffffffff); \
97 POSTING_READ(GEN8_##type##_IIR(which)); \
98 I915_WRITE(GEN8_##type##_IIR(which), 0xffffffff); \
99 POSTING_READ(GEN8_##type##_IIR(which)); \
100} while (0)
101
Paulo Zanonif86f3fb2014-04-01 15:37:14 -0300102#define GEN5_IRQ_RESET(type) do { \
Paulo Zanonia9d356a2014-04-01 15:37:09 -0300103 I915_WRITE(type##IMR, 0xffffffff); \
Paulo Zanoni5c502442014-04-01 15:37:11 -0300104 POSTING_READ(type##IMR); \
Paulo Zanonia9d356a2014-04-01 15:37:09 -0300105 I915_WRITE(type##IER, 0); \
Paulo Zanoni5c502442014-04-01 15:37:11 -0300106 I915_WRITE(type##IIR, 0xffffffff); \
107 POSTING_READ(type##IIR); \
108 I915_WRITE(type##IIR, 0xffffffff); \
109 POSTING_READ(type##IIR); \
Paulo Zanonia9d356a2014-04-01 15:37:09 -0300110} while (0)
111
Paulo Zanoni337ba012014-04-01 15:37:16 -0300112/*
113 * We should clear IMR at preinstall/uninstall, and just check at postinstall.
114 */
115#define GEN5_ASSERT_IIR_IS_ZERO(reg) do { \
116 u32 val = I915_READ(reg); \
117 if (val) { \
118 WARN(1, "Interrupt register 0x%x is not zero: 0x%08x\n", \
119 (reg), val); \
120 I915_WRITE((reg), 0xffffffff); \
121 POSTING_READ(reg); \
122 I915_WRITE((reg), 0xffffffff); \
123 POSTING_READ(reg); \
124 } \
125} while (0)
126
Paulo Zanoni35079892014-04-01 15:37:15 -0300127#define GEN8_IRQ_INIT_NDX(type, which, imr_val, ier_val) do { \
Paulo Zanoni337ba012014-04-01 15:37:16 -0300128 GEN5_ASSERT_IIR_IS_ZERO(GEN8_##type##_IIR(which)); \
Paulo Zanoni35079892014-04-01 15:37:15 -0300129 I915_WRITE(GEN8_##type##_IMR(which), (imr_val)); \
130 I915_WRITE(GEN8_##type##_IER(which), (ier_val)); \
131 POSTING_READ(GEN8_##type##_IER(which)); \
132} while (0)
133
134#define GEN5_IRQ_INIT(type, imr_val, ier_val) do { \
Paulo Zanoni337ba012014-04-01 15:37:16 -0300135 GEN5_ASSERT_IIR_IS_ZERO(type##IIR); \
Paulo Zanoni35079892014-04-01 15:37:15 -0300136 I915_WRITE(type##IMR, (imr_val)); \
137 I915_WRITE(type##IER, (ier_val)); \
138 POSTING_READ(type##IER); \
139} while (0)
140
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800141/* For display hotplug interrupt */
Daniel Vetter47339cd2014-09-30 10:56:46 +0200142void
Jani Nikula2d1013d2014-03-31 14:27:17 +0300143ironlake_enable_display_irq(struct drm_i915_private *dev_priv, u32 mask)
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800144{
Daniel Vetter4bc9d432013-06-27 13:44:58 +0200145 assert_spin_locked(&dev_priv->irq_lock);
146
Jesse Barnes9df7575f2014-06-20 09:29:20 -0700147 if (WARN_ON(!intel_irqs_enabled(dev_priv)))
Paulo Zanonic67a4702013-08-19 13:18:09 -0300148 return;
Paulo Zanonic67a4702013-08-19 13:18:09 -0300149
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000150 if ((dev_priv->irq_mask & mask) != 0) {
151 dev_priv->irq_mask &= ~mask;
152 I915_WRITE(DEIMR, dev_priv->irq_mask);
Chris Wilson3143a2b2010-11-16 15:55:10 +0000153 POSTING_READ(DEIMR);
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800154 }
155}
156
Daniel Vetter47339cd2014-09-30 10:56:46 +0200157void
Jani Nikula2d1013d2014-03-31 14:27:17 +0300158ironlake_disable_display_irq(struct drm_i915_private *dev_priv, u32 mask)
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800159{
Daniel Vetter4bc9d432013-06-27 13:44:58 +0200160 assert_spin_locked(&dev_priv->irq_lock);
161
Paulo Zanoni06ffc772014-07-17 17:43:46 -0300162 if (WARN_ON(!intel_irqs_enabled(dev_priv)))
Paulo Zanonic67a4702013-08-19 13:18:09 -0300163 return;
Paulo Zanonic67a4702013-08-19 13:18:09 -0300164
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000165 if ((dev_priv->irq_mask & mask) != mask) {
166 dev_priv->irq_mask |= mask;
167 I915_WRITE(DEIMR, dev_priv->irq_mask);
Chris Wilson3143a2b2010-11-16 15:55:10 +0000168 POSTING_READ(DEIMR);
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800169 }
170}
171
Paulo Zanoni43eaea12013-08-06 18:57:12 -0300172/**
173 * ilk_update_gt_irq - update GTIMR
174 * @dev_priv: driver private
175 * @interrupt_mask: mask of interrupt bits to update
176 * @enabled_irq_mask: mask of interrupt bits to enable
177 */
178static void ilk_update_gt_irq(struct drm_i915_private *dev_priv,
179 uint32_t interrupt_mask,
180 uint32_t enabled_irq_mask)
181{
182 assert_spin_locked(&dev_priv->irq_lock);
183
Jesse Barnes9df7575f2014-06-20 09:29:20 -0700184 if (WARN_ON(!intel_irqs_enabled(dev_priv)))
Paulo Zanonic67a4702013-08-19 13:18:09 -0300185 return;
Paulo Zanonic67a4702013-08-19 13:18:09 -0300186
Paulo Zanoni43eaea12013-08-06 18:57:12 -0300187 dev_priv->gt_irq_mask &= ~interrupt_mask;
188 dev_priv->gt_irq_mask |= (~enabled_irq_mask & interrupt_mask);
189 I915_WRITE(GTIMR, dev_priv->gt_irq_mask);
190 POSTING_READ(GTIMR);
191}
192
Daniel Vetter480c8032014-07-16 09:49:40 +0200193void gen5_enable_gt_irq(struct drm_i915_private *dev_priv, uint32_t mask)
Paulo Zanoni43eaea12013-08-06 18:57:12 -0300194{
195 ilk_update_gt_irq(dev_priv, mask, mask);
196}
197
Daniel Vetter480c8032014-07-16 09:49:40 +0200198void gen5_disable_gt_irq(struct drm_i915_private *dev_priv, uint32_t mask)
Paulo Zanoni43eaea12013-08-06 18:57:12 -0300199{
200 ilk_update_gt_irq(dev_priv, mask, 0);
201}
202
Paulo Zanoniedbfdb42013-08-06 18:57:13 -0300203/**
204 * snb_update_pm_irq - update GEN6_PMIMR
205 * @dev_priv: driver private
206 * @interrupt_mask: mask of interrupt bits to update
207 * @enabled_irq_mask: mask of interrupt bits to enable
208 */
209static void snb_update_pm_irq(struct drm_i915_private *dev_priv,
210 uint32_t interrupt_mask,
211 uint32_t enabled_irq_mask)
212{
Paulo Zanoni605cd252013-08-06 18:57:15 -0300213 uint32_t new_val;
Paulo Zanoniedbfdb42013-08-06 18:57:13 -0300214
215 assert_spin_locked(&dev_priv->irq_lock);
216
Jesse Barnes9df7575f2014-06-20 09:29:20 -0700217 if (WARN_ON(!intel_irqs_enabled(dev_priv)))
Paulo Zanonic67a4702013-08-19 13:18:09 -0300218 return;
Paulo Zanonic67a4702013-08-19 13:18:09 -0300219
Paulo Zanoni605cd252013-08-06 18:57:15 -0300220 new_val = dev_priv->pm_irq_mask;
Paulo Zanonif52ecbc2013-08-06 18:57:14 -0300221 new_val &= ~interrupt_mask;
222 new_val |= (~enabled_irq_mask & interrupt_mask);
223
Paulo Zanoni605cd252013-08-06 18:57:15 -0300224 if (new_val != dev_priv->pm_irq_mask) {
225 dev_priv->pm_irq_mask = new_val;
226 I915_WRITE(GEN6_PMIMR, dev_priv->pm_irq_mask);
Paulo Zanonif52ecbc2013-08-06 18:57:14 -0300227 POSTING_READ(GEN6_PMIMR);
228 }
Paulo Zanoniedbfdb42013-08-06 18:57:13 -0300229}
230
Daniel Vetter480c8032014-07-16 09:49:40 +0200231void gen6_enable_pm_irq(struct drm_i915_private *dev_priv, uint32_t mask)
Paulo Zanoniedbfdb42013-08-06 18:57:13 -0300232{
233 snb_update_pm_irq(dev_priv, mask, mask);
234}
235
Daniel Vetter480c8032014-07-16 09:49:40 +0200236void gen6_disable_pm_irq(struct drm_i915_private *dev_priv, uint32_t mask)
Paulo Zanoniedbfdb42013-08-06 18:57:13 -0300237{
238 snb_update_pm_irq(dev_priv, mask, 0);
239}
240
Ben Widawsky09610212014-05-15 20:58:08 +0300241/**
242 * bdw_update_pm_irq - update GT interrupt 2
243 * @dev_priv: driver private
244 * @interrupt_mask: mask of interrupt bits to update
245 * @enabled_irq_mask: mask of interrupt bits to enable
246 *
247 * Copied from the snb function, updated with relevant register offsets
248 */
249static void bdw_update_pm_irq(struct drm_i915_private *dev_priv,
250 uint32_t interrupt_mask,
251 uint32_t enabled_irq_mask)
252{
253 uint32_t new_val;
254
255 assert_spin_locked(&dev_priv->irq_lock);
256
Jesse Barnes9df7575f2014-06-20 09:29:20 -0700257 if (WARN_ON(!intel_irqs_enabled(dev_priv)))
Ben Widawsky09610212014-05-15 20:58:08 +0300258 return;
259
260 new_val = dev_priv->pm_irq_mask;
261 new_val &= ~interrupt_mask;
262 new_val |= (~enabled_irq_mask & interrupt_mask);
263
264 if (new_val != dev_priv->pm_irq_mask) {
265 dev_priv->pm_irq_mask = new_val;
266 I915_WRITE(GEN8_GT_IMR(2), dev_priv->pm_irq_mask);
267 POSTING_READ(GEN8_GT_IMR(2));
268 }
269}
270
Daniel Vetter480c8032014-07-16 09:49:40 +0200271void gen8_enable_pm_irq(struct drm_i915_private *dev_priv, uint32_t mask)
Ben Widawsky09610212014-05-15 20:58:08 +0300272{
273 bdw_update_pm_irq(dev_priv, mask, mask);
274}
275
Daniel Vetter480c8032014-07-16 09:49:40 +0200276void gen8_disable_pm_irq(struct drm_i915_private *dev_priv, uint32_t mask)
Ben Widawsky09610212014-05-15 20:58:08 +0300277{
278 bdw_update_pm_irq(dev_priv, mask, 0);
279}
280
Daniel Vetterfee884e2013-07-04 23:35:21 +0200281/**
282 * ibx_display_interrupt_update - update SDEIMR
283 * @dev_priv: driver private
284 * @interrupt_mask: mask of interrupt bits to update
285 * @enabled_irq_mask: mask of interrupt bits to enable
286 */
Daniel Vetter47339cd2014-09-30 10:56:46 +0200287void ibx_display_interrupt_update(struct drm_i915_private *dev_priv,
288 uint32_t interrupt_mask,
289 uint32_t enabled_irq_mask)
Daniel Vetterfee884e2013-07-04 23:35:21 +0200290{
291 uint32_t sdeimr = I915_READ(SDEIMR);
292 sdeimr &= ~interrupt_mask;
293 sdeimr |= (~enabled_irq_mask & interrupt_mask);
294
295 assert_spin_locked(&dev_priv->irq_lock);
296
Jesse Barnes9df7575f2014-06-20 09:29:20 -0700297 if (WARN_ON(!intel_irqs_enabled(dev_priv)))
Paulo Zanonic67a4702013-08-19 13:18:09 -0300298 return;
Paulo Zanonic67a4702013-08-19 13:18:09 -0300299
Daniel Vetterfee884e2013-07-04 23:35:21 +0200300 I915_WRITE(SDEIMR, sdeimr);
301 POSTING_READ(SDEIMR);
302}
Paulo Zanoni86642812013-04-12 17:57:57 -0300303
Daniel Vetterb5ea6422014-03-02 21:18:00 +0100304static void
Imre Deak755e9012014-02-10 18:42:47 +0200305__i915_enable_pipestat(struct drm_i915_private *dev_priv, enum pipe pipe,
306 u32 enable_mask, u32 status_mask)
Keith Packard7c463582008-11-04 02:03:27 -0800307{
Ville Syrjälä46c06a32013-02-20 21:16:18 +0200308 u32 reg = PIPESTAT(pipe);
Imre Deak755e9012014-02-10 18:42:47 +0200309 u32 pipestat = I915_READ(reg) & PIPESTAT_INT_ENABLE_MASK;
Keith Packard7c463582008-11-04 02:03:27 -0800310
Daniel Vetterb79480b2013-06-27 17:52:10 +0200311 assert_spin_locked(&dev_priv->irq_lock);
Daniel Vetterd518ce52014-08-27 10:43:37 +0200312 WARN_ON(!intel_irqs_enabled(dev_priv));
Daniel Vetterb79480b2013-06-27 17:52:10 +0200313
Ville Syrjälä04feced2014-04-03 13:28:33 +0300314 if (WARN_ONCE(enable_mask & ~PIPESTAT_INT_ENABLE_MASK ||
315 status_mask & ~PIPESTAT_INT_STATUS_MASK,
316 "pipe %c: enable_mask=0x%x, status_mask=0x%x\n",
317 pipe_name(pipe), enable_mask, status_mask))
Imre Deak755e9012014-02-10 18:42:47 +0200318 return;
319
320 if ((pipestat & enable_mask) == enable_mask)
Ville Syrjälä46c06a32013-02-20 21:16:18 +0200321 return;
322
Imre Deak91d181d2014-02-10 18:42:49 +0200323 dev_priv->pipestat_irq_mask[pipe] |= status_mask;
324
Ville Syrjälä46c06a32013-02-20 21:16:18 +0200325 /* Enable the interrupt, clear any pending status */
Imre Deak755e9012014-02-10 18:42:47 +0200326 pipestat |= enable_mask | status_mask;
Ville Syrjälä46c06a32013-02-20 21:16:18 +0200327 I915_WRITE(reg, pipestat);
328 POSTING_READ(reg);
Keith Packard7c463582008-11-04 02:03:27 -0800329}
330
Daniel Vetterb5ea6422014-03-02 21:18:00 +0100331static void
Imre Deak755e9012014-02-10 18:42:47 +0200332__i915_disable_pipestat(struct drm_i915_private *dev_priv, enum pipe pipe,
333 u32 enable_mask, u32 status_mask)
Keith Packard7c463582008-11-04 02:03:27 -0800334{
Ville Syrjälä46c06a32013-02-20 21:16:18 +0200335 u32 reg = PIPESTAT(pipe);
Imre Deak755e9012014-02-10 18:42:47 +0200336 u32 pipestat = I915_READ(reg) & PIPESTAT_INT_ENABLE_MASK;
Keith Packard7c463582008-11-04 02:03:27 -0800337
Daniel Vetterb79480b2013-06-27 17:52:10 +0200338 assert_spin_locked(&dev_priv->irq_lock);
Daniel Vetterd518ce52014-08-27 10:43:37 +0200339 WARN_ON(!intel_irqs_enabled(dev_priv));
Daniel Vetterb79480b2013-06-27 17:52:10 +0200340
Ville Syrjälä04feced2014-04-03 13:28:33 +0300341 if (WARN_ONCE(enable_mask & ~PIPESTAT_INT_ENABLE_MASK ||
342 status_mask & ~PIPESTAT_INT_STATUS_MASK,
343 "pipe %c: enable_mask=0x%x, status_mask=0x%x\n",
344 pipe_name(pipe), enable_mask, status_mask))
Ville Syrjälä46c06a32013-02-20 21:16:18 +0200345 return;
346
Imre Deak755e9012014-02-10 18:42:47 +0200347 if ((pipestat & enable_mask) == 0)
348 return;
349
Imre Deak91d181d2014-02-10 18:42:49 +0200350 dev_priv->pipestat_irq_mask[pipe] &= ~status_mask;
351
Imre Deak755e9012014-02-10 18:42:47 +0200352 pipestat &= ~enable_mask;
Ville Syrjälä46c06a32013-02-20 21:16:18 +0200353 I915_WRITE(reg, pipestat);
354 POSTING_READ(reg);
Keith Packard7c463582008-11-04 02:03:27 -0800355}
356
Imre Deak10c59c52014-02-10 18:42:48 +0200357static u32 vlv_get_pipestat_enable_mask(struct drm_device *dev, u32 status_mask)
358{
359 u32 enable_mask = status_mask << 16;
360
361 /*
Ville Syrjälä724a6902014-04-09 13:28:48 +0300362 * On pipe A we don't support the PSR interrupt yet,
363 * on pipe B and C the same bit MBZ.
Imre Deak10c59c52014-02-10 18:42:48 +0200364 */
365 if (WARN_ON_ONCE(status_mask & PIPE_A_PSR_STATUS_VLV))
366 return 0;
Ville Syrjälä724a6902014-04-09 13:28:48 +0300367 /*
368 * On pipe B and C we don't support the PSR interrupt yet, on pipe
369 * A the same bit is for perf counters which we don't use either.
370 */
371 if (WARN_ON_ONCE(status_mask & PIPE_B_PSR_STATUS_VLV))
372 return 0;
Imre Deak10c59c52014-02-10 18:42:48 +0200373
374 enable_mask &= ~(PIPE_FIFO_UNDERRUN_STATUS |
375 SPRITE0_FLIP_DONE_INT_EN_VLV |
376 SPRITE1_FLIP_DONE_INT_EN_VLV);
377 if (status_mask & SPRITE0_FLIP_DONE_INT_STATUS_VLV)
378 enable_mask |= SPRITE0_FLIP_DONE_INT_EN_VLV;
379 if (status_mask & SPRITE1_FLIP_DONE_INT_STATUS_VLV)
380 enable_mask |= SPRITE1_FLIP_DONE_INT_EN_VLV;
381
382 return enable_mask;
383}
384
Imre Deak755e9012014-02-10 18:42:47 +0200385void
386i915_enable_pipestat(struct drm_i915_private *dev_priv, enum pipe pipe,
387 u32 status_mask)
388{
389 u32 enable_mask;
390
Imre Deak10c59c52014-02-10 18:42:48 +0200391 if (IS_VALLEYVIEW(dev_priv->dev))
392 enable_mask = vlv_get_pipestat_enable_mask(dev_priv->dev,
393 status_mask);
394 else
395 enable_mask = status_mask << 16;
Imre Deak755e9012014-02-10 18:42:47 +0200396 __i915_enable_pipestat(dev_priv, pipe, enable_mask, status_mask);
397}
398
399void
400i915_disable_pipestat(struct drm_i915_private *dev_priv, enum pipe pipe,
401 u32 status_mask)
402{
403 u32 enable_mask;
404
Imre Deak10c59c52014-02-10 18:42:48 +0200405 if (IS_VALLEYVIEW(dev_priv->dev))
406 enable_mask = vlv_get_pipestat_enable_mask(dev_priv->dev,
407 status_mask);
408 else
409 enable_mask = status_mask << 16;
Imre Deak755e9012014-02-10 18:42:47 +0200410 __i915_disable_pipestat(dev_priv, pipe, enable_mask, status_mask);
411}
412
=?utf-8?q?Michel_D=C3=A4nzer?=a6b54f32006-10-24 23:37:43 +1000413/**
Jani Nikulaf49e38d2013-04-29 13:02:54 +0300414 * i915_enable_asle_pipestat - enable ASLE pipestat for OpRegion
Zhao Yakui01c66882009-10-28 05:10:00 +0000415 */
Jani Nikulaf49e38d2013-04-29 13:02:54 +0300416static void i915_enable_asle_pipestat(struct drm_device *dev)
Zhao Yakui01c66882009-10-28 05:10:00 +0000417{
Jani Nikula2d1013d2014-03-31 14:27:17 +0300418 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000419
Jani Nikulaf49e38d2013-04-29 13:02:54 +0300420 if (!dev_priv->opregion.asle || !IS_MOBILE(dev))
421 return;
422
Daniel Vetter13321782014-09-15 14:55:29 +0200423 spin_lock_irq(&dev_priv->irq_lock);
Zhao Yakui01c66882009-10-28 05:10:00 +0000424
Imre Deak755e9012014-02-10 18:42:47 +0200425 i915_enable_pipestat(dev_priv, PIPE_B, PIPE_LEGACY_BLC_EVENT_STATUS);
Jani Nikulaf8987802013-04-29 13:02:53 +0300426 if (INTEL_INFO(dev)->gen >= 4)
Daniel Vetter3b6c42e2013-10-21 18:04:35 +0200427 i915_enable_pipestat(dev_priv, PIPE_A,
Imre Deak755e9012014-02-10 18:42:47 +0200428 PIPE_LEGACY_BLC_EVENT_STATUS);
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000429
Daniel Vetter13321782014-09-15 14:55:29 +0200430 spin_unlock_irq(&dev_priv->irq_lock);
Zhao Yakui01c66882009-10-28 05:10:00 +0000431}
432
433/**
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700434 * i915_pipe_enabled - check if a pipe is enabled
435 * @dev: DRM device
436 * @pipe: pipe to check
437 *
438 * Reading certain registers when the pipe is disabled can hang the chip.
439 * Use this routine to make sure the PLL is running and the pipe is active
440 * before reading such registers if unsure.
441 */
442static int
443i915_pipe_enabled(struct drm_device *dev, int pipe)
444{
Jani Nikula2d1013d2014-03-31 14:27:17 +0300445 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoni702e7a52012-10-23 18:29:59 -0200446
Daniel Vettera01025a2013-05-22 00:50:23 +0200447 if (drm_core_check_feature(dev, DRIVER_MODESET)) {
448 /* Locking is horribly broken here, but whatever. */
449 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
450 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Paulo Zanoni71f8ba62013-05-03 12:15:39 -0300451
Daniel Vettera01025a2013-05-22 00:50:23 +0200452 return intel_crtc->active;
453 } else {
454 return I915_READ(PIPECONF(pipe)) & PIPECONF_ENABLE;
455 }
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700456}
457
Ville Syrjäläf75f3742014-05-15 20:20:36 +0300458/*
459 * This timing diagram depicts the video signal in and
460 * around the vertical blanking period.
461 *
462 * Assumptions about the fictitious mode used in this example:
463 * vblank_start >= 3
464 * vsync_start = vblank_start + 1
465 * vsync_end = vblank_start + 2
466 * vtotal = vblank_start + 3
467 *
468 * start of vblank:
469 * latch double buffered registers
470 * increment frame counter (ctg+)
471 * generate start of vblank interrupt (gen4+)
472 * |
473 * | frame start:
474 * | generate frame start interrupt (aka. vblank interrupt) (gmch)
475 * | may be shifted forward 1-3 extra lines via PIPECONF
476 * | |
477 * | | start of vsync:
478 * | | generate vsync interrupt
479 * | | |
480 * ___xxxx___ ___xxxx___ ___xxxx___ ___xxxx___ ___xxxx___ ___xxxx
481 * . \hs/ . \hs/ \hs/ \hs/ . \hs/
482 * ----va---> <-----------------vb--------------------> <--------va-------------
483 * | | <----vs-----> |
484 * -vbs-----> <---vbs+1---> <---vbs+2---> <-----0-----> <-----1-----> <-----2--- (scanline counter gen2)
485 * -vbs-2---> <---vbs-1---> <---vbs-----> <---vbs+1---> <---vbs+2---> <-----0--- (scanline counter gen3+)
486 * -vbs-2---> <---vbs-2---> <---vbs-1---> <---vbs-----> <---vbs+1---> <---vbs+2- (scanline counter hsw+ hdmi)
487 * | | |
488 * last visible pixel first visible pixel
489 * | increment frame counter (gen3/4)
490 * pixel counter = vblank_start * htotal pixel counter = 0 (gen3/4)
491 *
492 * x = horizontal active
493 * _ = horizontal blanking
494 * hs = horizontal sync
495 * va = vertical active
496 * vb = vertical blanking
497 * vs = vertical sync
498 * vbs = vblank_start (number)
499 *
500 * Summary:
501 * - most events happen at the start of horizontal sync
502 * - frame start happens at the start of horizontal blank, 1-4 lines
503 * (depending on PIPECONF settings) after the start of vblank
504 * - gen3/4 pixel and frame counter are synchronized with the start
505 * of horizontal active on the first line of vertical active
506 */
507
Ville Syrjälä4cdb83e2013-10-11 21:52:44 +0300508static u32 i8xx_get_vblank_counter(struct drm_device *dev, int pipe)
509{
510 /* Gen2 doesn't have a hardware frame counter */
511 return 0;
512}
513
Keith Packard42f52ef2008-10-18 19:39:29 -0700514/* Called from drm generic code, passed a 'crtc', which
515 * we use as a pipe index
516 */
Jesse Barnesf71d4af2011-06-28 13:00:41 -0700517static u32 i915_get_vblank_counter(struct drm_device *dev, int pipe)
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700518{
Jani Nikula2d1013d2014-03-31 14:27:17 +0300519 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700520 unsigned long high_frame;
521 unsigned long low_frame;
Ville Syrjälä0b2a8e02014-04-29 13:35:50 +0300522 u32 high1, high2, low, pixel, vbl_start, hsync_start, htotal;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700523
524 if (!i915_pipe_enabled(dev, pipe)) {
Zhao Yakui44d98a62009-10-09 11:39:40 +0800525 DRM_DEBUG_DRIVER("trying to get vblank count for disabled "
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800526 "pipe %c\n", pipe_name(pipe));
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700527 return 0;
528 }
529
Ville Syrjälä391f75e2013-09-25 19:55:26 +0300530 if (drm_core_check_feature(dev, DRIVER_MODESET)) {
531 struct intel_crtc *intel_crtc =
532 to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]);
533 const struct drm_display_mode *mode =
534 &intel_crtc->config.adjusted_mode;
535
Ville Syrjälä0b2a8e02014-04-29 13:35:50 +0300536 htotal = mode->crtc_htotal;
537 hsync_start = mode->crtc_hsync_start;
538 vbl_start = mode->crtc_vblank_start;
539 if (mode->flags & DRM_MODE_FLAG_INTERLACE)
540 vbl_start = DIV_ROUND_UP(vbl_start, 2);
Ville Syrjälä391f75e2013-09-25 19:55:26 +0300541 } else {
Daniel Vettera2d213d2014-02-07 16:34:05 +0100542 enum transcoder cpu_transcoder = (enum transcoder) pipe;
Ville Syrjälä391f75e2013-09-25 19:55:26 +0300543
544 htotal = ((I915_READ(HTOTAL(cpu_transcoder)) >> 16) & 0x1fff) + 1;
Ville Syrjälä0b2a8e02014-04-29 13:35:50 +0300545 hsync_start = (I915_READ(HSYNC(cpu_transcoder)) & 0x1fff) + 1;
Ville Syrjälä391f75e2013-09-25 19:55:26 +0300546 vbl_start = (I915_READ(VBLANK(cpu_transcoder)) & 0x1fff) + 1;
Ville Syrjälä0b2a8e02014-04-29 13:35:50 +0300547 if ((I915_READ(PIPECONF(cpu_transcoder)) &
548 PIPECONF_INTERLACE_MASK) != PIPECONF_PROGRESSIVE)
549 vbl_start = DIV_ROUND_UP(vbl_start, 2);
Ville Syrjälä391f75e2013-09-25 19:55:26 +0300550 }
551
Ville Syrjälä0b2a8e02014-04-29 13:35:50 +0300552 /* Convert to pixel count */
553 vbl_start *= htotal;
554
555 /* Start of vblank event occurs at start of hsync */
556 vbl_start -= htotal - hsync_start;
557
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800558 high_frame = PIPEFRAME(pipe);
559 low_frame = PIPEFRAMEPIXEL(pipe);
Chris Wilson5eddb702010-09-11 13:48:45 +0100560
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700561 /*
562 * High & low register fields aren't synchronized, so make sure
563 * we get a low value that's stable across two reads of the high
564 * register.
565 */
566 do {
Chris Wilson5eddb702010-09-11 13:48:45 +0100567 high1 = I915_READ(high_frame) & PIPE_FRAME_HIGH_MASK;
Ville Syrjälä391f75e2013-09-25 19:55:26 +0300568 low = I915_READ(low_frame);
Chris Wilson5eddb702010-09-11 13:48:45 +0100569 high2 = I915_READ(high_frame) & PIPE_FRAME_HIGH_MASK;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700570 } while (high1 != high2);
571
Chris Wilson5eddb702010-09-11 13:48:45 +0100572 high1 >>= PIPE_FRAME_HIGH_SHIFT;
Ville Syrjälä391f75e2013-09-25 19:55:26 +0300573 pixel = low & PIPE_PIXEL_MASK;
Chris Wilson5eddb702010-09-11 13:48:45 +0100574 low >>= PIPE_FRAME_LOW_SHIFT;
Ville Syrjälä391f75e2013-09-25 19:55:26 +0300575
576 /*
577 * The frame counter increments at beginning of active.
578 * Cook up a vblank counter by also checking the pixel
579 * counter against vblank start.
580 */
Ville Syrjäläedc08d02013-11-06 13:56:27 -0200581 return (((high1 << 8) | low) + (pixel >= vbl_start)) & 0xffffff;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700582}
583
Jesse Barnesf71d4af2011-06-28 13:00:41 -0700584static u32 gm45_get_vblank_counter(struct drm_device *dev, int pipe)
Jesse Barnes9880b7a2009-02-06 10:22:41 -0800585{
Jani Nikula2d1013d2014-03-31 14:27:17 +0300586 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800587 int reg = PIPE_FRMCOUNT_GM45(pipe);
Jesse Barnes9880b7a2009-02-06 10:22:41 -0800588
589 if (!i915_pipe_enabled(dev, pipe)) {
Zhao Yakui44d98a62009-10-09 11:39:40 +0800590 DRM_DEBUG_DRIVER("trying to get vblank count for disabled "
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800591 "pipe %c\n", pipe_name(pipe));
Jesse Barnes9880b7a2009-02-06 10:22:41 -0800592 return 0;
593 }
594
595 return I915_READ(reg);
596}
597
Mario Kleinerad3543e2013-10-30 05:13:08 +0100598/* raw reads, only for fast reads of display block, no need for forcewake etc. */
599#define __raw_i915_read32(dev_priv__, reg__) readl((dev_priv__)->regs + (reg__))
Mario Kleinerad3543e2013-10-30 05:13:08 +0100600
Ville Syrjäläa225f072014-04-29 13:35:45 +0300601static int __intel_get_crtc_scanline(struct intel_crtc *crtc)
602{
603 struct drm_device *dev = crtc->base.dev;
604 struct drm_i915_private *dev_priv = dev->dev_private;
605 const struct drm_display_mode *mode = &crtc->config.adjusted_mode;
606 enum pipe pipe = crtc->pipe;
Ville Syrjälä80715b22014-05-15 20:23:23 +0300607 int position, vtotal;
Ville Syrjäläa225f072014-04-29 13:35:45 +0300608
Ville Syrjälä80715b22014-05-15 20:23:23 +0300609 vtotal = mode->crtc_vtotal;
Ville Syrjäläa225f072014-04-29 13:35:45 +0300610 if (mode->flags & DRM_MODE_FLAG_INTERLACE)
611 vtotal /= 2;
612
613 if (IS_GEN2(dev))
614 position = __raw_i915_read32(dev_priv, PIPEDSL(pipe)) & DSL_LINEMASK_GEN2;
615 else
616 position = __raw_i915_read32(dev_priv, PIPEDSL(pipe)) & DSL_LINEMASK_GEN3;
617
618 /*
Ville Syrjälä80715b22014-05-15 20:23:23 +0300619 * See update_scanline_offset() for the details on the
620 * scanline_offset adjustment.
Ville Syrjäläa225f072014-04-29 13:35:45 +0300621 */
Ville Syrjälä80715b22014-05-15 20:23:23 +0300622 return (position + crtc->scanline_offset) % vtotal;
Ville Syrjäläa225f072014-04-29 13:35:45 +0300623}
624
Jesse Barnesf71d4af2011-06-28 13:00:41 -0700625static int i915_get_crtc_scanoutpos(struct drm_device *dev, int pipe,
Ville Syrjäläabca9e42013-10-28 20:50:48 +0200626 unsigned int flags, int *vpos, int *hpos,
627 ktime_t *stime, ktime_t *etime)
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100628{
Ville Syrjäläc2baf4b2013-09-23 14:48:50 +0300629 struct drm_i915_private *dev_priv = dev->dev_private;
630 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
631 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
632 const struct drm_display_mode *mode = &intel_crtc->config.adjusted_mode;
Ville Syrjälä3aa18df2013-10-11 19:10:32 +0300633 int position;
Ville Syrjälä78e8fc62014-04-29 13:35:44 +0300634 int vbl_start, vbl_end, hsync_start, htotal, vtotal;
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100635 bool in_vbl = true;
636 int ret = 0;
Mario Kleinerad3543e2013-10-30 05:13:08 +0100637 unsigned long irqflags;
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100638
Ville Syrjäläc2baf4b2013-09-23 14:48:50 +0300639 if (!intel_crtc->active) {
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100640 DRM_DEBUG_DRIVER("trying to get scanoutpos for disabled "
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800641 "pipe %c\n", pipe_name(pipe));
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100642 return 0;
643 }
644
Ville Syrjäläc2baf4b2013-09-23 14:48:50 +0300645 htotal = mode->crtc_htotal;
Ville Syrjälä78e8fc62014-04-29 13:35:44 +0300646 hsync_start = mode->crtc_hsync_start;
Ville Syrjäläc2baf4b2013-09-23 14:48:50 +0300647 vtotal = mode->crtc_vtotal;
648 vbl_start = mode->crtc_vblank_start;
649 vbl_end = mode->crtc_vblank_end;
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100650
Ville Syrjäläd31faf62013-10-28 16:31:41 +0200651 if (mode->flags & DRM_MODE_FLAG_INTERLACE) {
652 vbl_start = DIV_ROUND_UP(vbl_start, 2);
653 vbl_end /= 2;
654 vtotal /= 2;
655 }
656
Ville Syrjäläc2baf4b2013-09-23 14:48:50 +0300657 ret |= DRM_SCANOUTPOS_VALID | DRM_SCANOUTPOS_ACCURATE;
658
Mario Kleinerad3543e2013-10-30 05:13:08 +0100659 /*
660 * Lock uncore.lock, as we will do multiple timing critical raw
661 * register reads, potentially with preemption disabled, so the
662 * following code must not block on uncore.lock.
663 */
664 spin_lock_irqsave(&dev_priv->uncore.lock, irqflags);
Ville Syrjälä78e8fc62014-04-29 13:35:44 +0300665
Mario Kleinerad3543e2013-10-30 05:13:08 +0100666 /* preempt_disable_rt() should go right here in PREEMPT_RT patchset. */
667
668 /* Get optional system timestamp before query. */
669 if (stime)
670 *stime = ktime_get();
671
Ville Syrjälä7c06b082013-10-11 21:52:43 +0300672 if (IS_GEN2(dev) || IS_G4X(dev) || INTEL_INFO(dev)->gen >= 5) {
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100673 /* No obvious pixelcount register. Only query vertical
674 * scanout position from Display scan line register.
675 */
Ville Syrjäläa225f072014-04-29 13:35:45 +0300676 position = __intel_get_crtc_scanline(intel_crtc);
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100677 } else {
678 /* Have access to pixelcount since start of frame.
679 * We can split this into vertical and horizontal
680 * scanout position.
681 */
Mario Kleinerad3543e2013-10-30 05:13:08 +0100682 position = (__raw_i915_read32(dev_priv, PIPEFRAMEPIXEL(pipe)) & PIPE_PIXEL_MASK) >> PIPE_PIXEL_SHIFT;
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100683
Ville Syrjälä3aa18df2013-10-11 19:10:32 +0300684 /* convert to pixel counts */
685 vbl_start *= htotal;
686 vbl_end *= htotal;
687 vtotal *= htotal;
Ville Syrjälä78e8fc62014-04-29 13:35:44 +0300688
689 /*
Ville Syrjälä7e78f1cb2014-04-29 13:35:49 +0300690 * In interlaced modes, the pixel counter counts all pixels,
691 * so one field will have htotal more pixels. In order to avoid
692 * the reported position from jumping backwards when the pixel
693 * counter is beyond the length of the shorter field, just
694 * clamp the position the length of the shorter field. This
695 * matches how the scanline counter based position works since
696 * the scanline counter doesn't count the two half lines.
697 */
698 if (position >= vtotal)
699 position = vtotal - 1;
700
701 /*
Ville Syrjälä78e8fc62014-04-29 13:35:44 +0300702 * Start of vblank interrupt is triggered at start of hsync,
703 * just prior to the first active line of vblank. However we
704 * consider lines to start at the leading edge of horizontal
705 * active. So, should we get here before we've crossed into
706 * the horizontal active of the first line in vblank, we would
707 * not set the DRM_SCANOUTPOS_INVBL flag. In order to fix that,
708 * always add htotal-hsync_start to the current pixel position.
709 */
710 position = (position + htotal - hsync_start) % vtotal;
Ville Syrjälä3aa18df2013-10-11 19:10:32 +0300711 }
712
Mario Kleinerad3543e2013-10-30 05:13:08 +0100713 /* Get optional system timestamp after query. */
714 if (etime)
715 *etime = ktime_get();
716
717 /* preempt_enable_rt() should go right here in PREEMPT_RT patchset. */
718
719 spin_unlock_irqrestore(&dev_priv->uncore.lock, irqflags);
720
Ville Syrjälä3aa18df2013-10-11 19:10:32 +0300721 in_vbl = position >= vbl_start && position < vbl_end;
722
723 /*
724 * While in vblank, position will be negative
725 * counting up towards 0 at vbl_end. And outside
726 * vblank, position will be positive counting
727 * up since vbl_end.
728 */
729 if (position >= vbl_start)
730 position -= vbl_end;
731 else
732 position += vtotal - vbl_end;
733
Ville Syrjälä7c06b082013-10-11 21:52:43 +0300734 if (IS_GEN2(dev) || IS_G4X(dev) || INTEL_INFO(dev)->gen >= 5) {
Ville Syrjälä3aa18df2013-10-11 19:10:32 +0300735 *vpos = position;
736 *hpos = 0;
737 } else {
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100738 *vpos = position / htotal;
739 *hpos = position - (*vpos * htotal);
740 }
741
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100742 /* In vblank? */
743 if (in_vbl)
Daniel Vetter3d3cbd82014-09-10 17:36:11 +0200744 ret |= DRM_SCANOUTPOS_IN_VBLANK;
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100745
746 return ret;
747}
748
Ville Syrjäläa225f072014-04-29 13:35:45 +0300749int intel_get_crtc_scanline(struct intel_crtc *crtc)
750{
751 struct drm_i915_private *dev_priv = crtc->base.dev->dev_private;
752 unsigned long irqflags;
753 int position;
754
755 spin_lock_irqsave(&dev_priv->uncore.lock, irqflags);
756 position = __intel_get_crtc_scanline(crtc);
757 spin_unlock_irqrestore(&dev_priv->uncore.lock, irqflags);
758
759 return position;
760}
761
Jesse Barnesf71d4af2011-06-28 13:00:41 -0700762static int i915_get_vblank_timestamp(struct drm_device *dev, int pipe,
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100763 int *max_error,
764 struct timeval *vblank_time,
765 unsigned flags)
766{
Chris Wilson4041b852011-01-22 10:07:56 +0000767 struct drm_crtc *crtc;
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100768
Ben Widawsky7eb552a2013-03-13 14:05:41 -0700769 if (pipe < 0 || pipe >= INTEL_INFO(dev)->num_pipes) {
Chris Wilson4041b852011-01-22 10:07:56 +0000770 DRM_ERROR("Invalid crtc %d\n", pipe);
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100771 return -EINVAL;
772 }
773
774 /* Get drm_crtc to timestamp: */
Chris Wilson4041b852011-01-22 10:07:56 +0000775 crtc = intel_get_crtc_for_pipe(dev, pipe);
776 if (crtc == NULL) {
777 DRM_ERROR("Invalid crtc %d\n", pipe);
778 return -EINVAL;
779 }
780
781 if (!crtc->enabled) {
782 DRM_DEBUG_KMS("crtc %d is disabled\n", pipe);
783 return -EBUSY;
784 }
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100785
786 /* Helper routine in DRM core does all the work: */
Chris Wilson4041b852011-01-22 10:07:56 +0000787 return drm_calc_vbltimestamp_from_scanoutpos(dev, pipe, max_error,
788 vblank_time, flags,
Ville Syrjälä7da903e2013-10-26 17:57:31 +0300789 crtc,
790 &to_intel_crtc(crtc)->config.adjusted_mode);
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100791}
792
Jani Nikula67c347f2013-09-17 14:26:34 +0300793static bool intel_hpd_irq_event(struct drm_device *dev,
794 struct drm_connector *connector)
Egbert Eich321a1b32013-04-11 16:00:26 +0200795{
796 enum drm_connector_status old_status;
797
798 WARN_ON(!mutex_is_locked(&dev->mode_config.mutex));
799 old_status = connector->status;
800
801 connector->status = connector->funcs->detect(connector, false);
Jani Nikula67c347f2013-09-17 14:26:34 +0300802 if (old_status == connector->status)
803 return false;
804
805 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] status updated from %s to %s\n",
Egbert Eich321a1b32013-04-11 16:00:26 +0200806 connector->base.id,
Jani Nikulac23cc412014-06-03 14:56:17 +0300807 connector->name,
Jani Nikula67c347f2013-09-17 14:26:34 +0300808 drm_get_connector_status_name(old_status),
809 drm_get_connector_status_name(connector->status));
810
811 return true;
Egbert Eich321a1b32013-04-11 16:00:26 +0200812}
813
Dave Airlie13cf5502014-06-18 11:29:35 +1000814static void i915_digport_work_func(struct work_struct *work)
815{
816 struct drm_i915_private *dev_priv =
817 container_of(work, struct drm_i915_private, dig_port_work);
Dave Airlie13cf5502014-06-18 11:29:35 +1000818 u32 long_port_mask, short_port_mask;
819 struct intel_digital_port *intel_dig_port;
820 int i, ret;
821 u32 old_bits = 0;
822
Daniel Vetter4cb21832014-09-15 14:55:26 +0200823 spin_lock_irq(&dev_priv->irq_lock);
Dave Airlie13cf5502014-06-18 11:29:35 +1000824 long_port_mask = dev_priv->long_hpd_port_mask;
825 dev_priv->long_hpd_port_mask = 0;
826 short_port_mask = dev_priv->short_hpd_port_mask;
827 dev_priv->short_hpd_port_mask = 0;
Daniel Vetter4cb21832014-09-15 14:55:26 +0200828 spin_unlock_irq(&dev_priv->irq_lock);
Dave Airlie13cf5502014-06-18 11:29:35 +1000829
830 for (i = 0; i < I915_MAX_PORTS; i++) {
831 bool valid = false;
832 bool long_hpd = false;
833 intel_dig_port = dev_priv->hpd_irq_port[i];
834 if (!intel_dig_port || !intel_dig_port->hpd_pulse)
835 continue;
836
837 if (long_port_mask & (1 << i)) {
838 valid = true;
839 long_hpd = true;
840 } else if (short_port_mask & (1 << i))
841 valid = true;
842
843 if (valid) {
844 ret = intel_dig_port->hpd_pulse(intel_dig_port, long_hpd);
845 if (ret == true) {
846 /* if we get true fallback to old school hpd */
847 old_bits |= (1 << intel_dig_port->base.hpd_pin);
848 }
849 }
850 }
851
852 if (old_bits) {
Daniel Vetter4cb21832014-09-15 14:55:26 +0200853 spin_lock_irq(&dev_priv->irq_lock);
Dave Airlie13cf5502014-06-18 11:29:35 +1000854 dev_priv->hpd_event_bits |= old_bits;
Daniel Vetter4cb21832014-09-15 14:55:26 +0200855 spin_unlock_irq(&dev_priv->irq_lock);
Dave Airlie13cf5502014-06-18 11:29:35 +1000856 schedule_work(&dev_priv->hotplug_work);
857 }
858}
859
Jesse Barnes5ca58282009-03-31 14:11:15 -0700860/*
861 * Handle hotplug events outside the interrupt handler proper.
862 */
Egbert Eichac4c16c2013-04-16 13:36:58 +0200863#define I915_REENABLE_HOTPLUG_DELAY (2*60*1000)
864
Jesse Barnes5ca58282009-03-31 14:11:15 -0700865static void i915_hotplug_work_func(struct work_struct *work)
866{
Jani Nikula2d1013d2014-03-31 14:27:17 +0300867 struct drm_i915_private *dev_priv =
868 container_of(work, struct drm_i915_private, hotplug_work);
Jesse Barnes5ca58282009-03-31 14:11:15 -0700869 struct drm_device *dev = dev_priv->dev;
Keith Packardc31c4ba2009-05-06 11:48:58 -0700870 struct drm_mode_config *mode_config = &dev->mode_config;
Egbert Eichcd569ae2013-04-16 13:36:57 +0200871 struct intel_connector *intel_connector;
872 struct intel_encoder *intel_encoder;
873 struct drm_connector *connector;
Egbert Eichcd569ae2013-04-16 13:36:57 +0200874 bool hpd_disabled = false;
Egbert Eich321a1b32013-04-11 16:00:26 +0200875 bool changed = false;
Egbert Eich142e2392013-04-11 15:57:57 +0200876 u32 hpd_event_bits;
Jesse Barnes5ca58282009-03-31 14:11:15 -0700877
Keith Packarda65e34c2011-07-25 10:04:56 -0700878 mutex_lock(&mode_config->mutex);
Jesse Barnese67189ab2011-02-11 14:44:51 -0800879 DRM_DEBUG_KMS("running encoder hotplug functions\n");
880
Daniel Vetter4cb21832014-09-15 14:55:26 +0200881 spin_lock_irq(&dev_priv->irq_lock);
Egbert Eich142e2392013-04-11 15:57:57 +0200882
883 hpd_event_bits = dev_priv->hpd_event_bits;
884 dev_priv->hpd_event_bits = 0;
Egbert Eichcd569ae2013-04-16 13:36:57 +0200885 list_for_each_entry(connector, &mode_config->connector_list, head) {
886 intel_connector = to_intel_connector(connector);
Dave Airlie36cd7442014-05-02 13:44:18 +1000887 if (!intel_connector->encoder)
888 continue;
Egbert Eichcd569ae2013-04-16 13:36:57 +0200889 intel_encoder = intel_connector->encoder;
890 if (intel_encoder->hpd_pin > HPD_NONE &&
891 dev_priv->hpd_stats[intel_encoder->hpd_pin].hpd_mark == HPD_MARK_DISABLED &&
892 connector->polled == DRM_CONNECTOR_POLL_HPD) {
893 DRM_INFO("HPD interrupt storm detected on connector %s: "
894 "switching from hotplug detection to polling\n",
Jani Nikulac23cc412014-06-03 14:56:17 +0300895 connector->name);
Egbert Eichcd569ae2013-04-16 13:36:57 +0200896 dev_priv->hpd_stats[intel_encoder->hpd_pin].hpd_mark = HPD_DISABLED;
897 connector->polled = DRM_CONNECTOR_POLL_CONNECT
898 | DRM_CONNECTOR_POLL_DISCONNECT;
899 hpd_disabled = true;
900 }
Egbert Eich142e2392013-04-11 15:57:57 +0200901 if (hpd_event_bits & (1 << intel_encoder->hpd_pin)) {
902 DRM_DEBUG_KMS("Connector %s (pin %i) received hotplug event.\n",
Jani Nikulac23cc412014-06-03 14:56:17 +0300903 connector->name, intel_encoder->hpd_pin);
Egbert Eich142e2392013-04-11 15:57:57 +0200904 }
Egbert Eichcd569ae2013-04-16 13:36:57 +0200905 }
906 /* if there were no outputs to poll, poll was disabled,
907 * therefore make sure it's enabled when disabling HPD on
908 * some connectors */
Egbert Eichac4c16c2013-04-16 13:36:58 +0200909 if (hpd_disabled) {
Egbert Eichcd569ae2013-04-16 13:36:57 +0200910 drm_kms_helper_poll_enable(dev);
Imre Deak63237512014-08-18 15:37:02 +0300911 mod_delayed_work(system_wq, &dev_priv->hotplug_reenable_work,
912 msecs_to_jiffies(I915_REENABLE_HOTPLUG_DELAY));
Egbert Eichac4c16c2013-04-16 13:36:58 +0200913 }
Egbert Eichcd569ae2013-04-16 13:36:57 +0200914
Daniel Vetter4cb21832014-09-15 14:55:26 +0200915 spin_unlock_irq(&dev_priv->irq_lock);
Egbert Eichcd569ae2013-04-16 13:36:57 +0200916
Egbert Eich321a1b32013-04-11 16:00:26 +0200917 list_for_each_entry(connector, &mode_config->connector_list, head) {
918 intel_connector = to_intel_connector(connector);
Dave Airlie36cd7442014-05-02 13:44:18 +1000919 if (!intel_connector->encoder)
920 continue;
Egbert Eich321a1b32013-04-11 16:00:26 +0200921 intel_encoder = intel_connector->encoder;
922 if (hpd_event_bits & (1 << intel_encoder->hpd_pin)) {
923 if (intel_encoder->hot_plug)
924 intel_encoder->hot_plug(intel_encoder);
925 if (intel_hpd_irq_event(dev, connector))
926 changed = true;
927 }
928 }
Keith Packard40ee3382011-07-28 15:31:19 -0700929 mutex_unlock(&mode_config->mutex);
930
Egbert Eich321a1b32013-04-11 16:00:26 +0200931 if (changed)
932 drm_kms_helper_hotplug_event(dev);
Jesse Barnes5ca58282009-03-31 14:11:15 -0700933}
934
Daniel Vetterd0ecd7e2013-07-04 23:35:25 +0200935static void ironlake_rps_change_irq_handler(struct drm_device *dev)
Jesse Barnesf97108d2010-01-29 11:27:07 -0800936{
Jani Nikula2d1013d2014-03-31 14:27:17 +0300937 struct drm_i915_private *dev_priv = dev->dev_private;
Matthew Garrettb5b72e82010-02-02 18:30:47 +0000938 u32 busy_up, busy_down, max_avg, min_avg;
Daniel Vetter92703882012-08-09 16:46:01 +0200939 u8 new_delay;
Daniel Vetter92703882012-08-09 16:46:01 +0200940
Daniel Vetterd0ecd7e2013-07-04 23:35:25 +0200941 spin_lock(&mchdev_lock);
Jesse Barnesf97108d2010-01-29 11:27:07 -0800942
Daniel Vetter73edd18f2012-08-08 23:35:37 +0200943 I915_WRITE16(MEMINTRSTS, I915_READ(MEMINTRSTS));
944
Daniel Vetter20e4d402012-08-08 23:35:39 +0200945 new_delay = dev_priv->ips.cur_delay;
Daniel Vetter92703882012-08-09 16:46:01 +0200946
Jesse Barnes7648fa92010-05-20 14:28:11 -0700947 I915_WRITE16(MEMINTRSTS, MEMINT_EVAL_CHG);
Matthew Garrettb5b72e82010-02-02 18:30:47 +0000948 busy_up = I915_READ(RCPREVBSYTUPAVG);
949 busy_down = I915_READ(RCPREVBSYTDNAVG);
Jesse Barnesf97108d2010-01-29 11:27:07 -0800950 max_avg = I915_READ(RCBMAXAVG);
951 min_avg = I915_READ(RCBMINAVG);
952
953 /* Handle RCS change request from hw */
Matthew Garrettb5b72e82010-02-02 18:30:47 +0000954 if (busy_up > max_avg) {
Daniel Vetter20e4d402012-08-08 23:35:39 +0200955 if (dev_priv->ips.cur_delay != dev_priv->ips.max_delay)
956 new_delay = dev_priv->ips.cur_delay - 1;
957 if (new_delay < dev_priv->ips.max_delay)
958 new_delay = dev_priv->ips.max_delay;
Matthew Garrettb5b72e82010-02-02 18:30:47 +0000959 } else if (busy_down < min_avg) {
Daniel Vetter20e4d402012-08-08 23:35:39 +0200960 if (dev_priv->ips.cur_delay != dev_priv->ips.min_delay)
961 new_delay = dev_priv->ips.cur_delay + 1;
962 if (new_delay > dev_priv->ips.min_delay)
963 new_delay = dev_priv->ips.min_delay;
Jesse Barnesf97108d2010-01-29 11:27:07 -0800964 }
965
Jesse Barnes7648fa92010-05-20 14:28:11 -0700966 if (ironlake_set_drps(dev, new_delay))
Daniel Vetter20e4d402012-08-08 23:35:39 +0200967 dev_priv->ips.cur_delay = new_delay;
Jesse Barnesf97108d2010-01-29 11:27:07 -0800968
Daniel Vetterd0ecd7e2013-07-04 23:35:25 +0200969 spin_unlock(&mchdev_lock);
Daniel Vetter92703882012-08-09 16:46:01 +0200970
Jesse Barnesf97108d2010-01-29 11:27:07 -0800971 return;
972}
973
Chris Wilson549f7362010-10-19 11:19:32 +0100974static void notify_ring(struct drm_device *dev,
Oscar Mateoa4872ba2014-05-22 14:13:33 +0100975 struct intel_engine_cs *ring)
Chris Wilson549f7362010-10-19 11:19:32 +0100976{
Oscar Mateo93b0a4e2014-05-22 14:13:36 +0100977 if (!intel_ring_initialized(ring))
Chris Wilson475553d2011-01-20 09:52:56 +0000978 return;
979
Chris Wilson814e9b52013-09-23 17:33:19 -0300980 trace_i915_gem_request_complete(ring);
Chris Wilson9862e602011-01-04 22:22:17 +0000981
Sourab Gupta84c33a62014-06-02 16:47:17 +0530982 if (drm_core_check_feature(dev, DRIVER_MODESET))
983 intel_notify_mmio_flip(ring);
984
Chris Wilson549f7362010-10-19 11:19:32 +0100985 wake_up_all(&ring->irq_queue);
Mika Kuoppala10cd45b2013-07-03 17:22:08 +0300986 i915_queue_hangcheck(dev);
Chris Wilson549f7362010-10-19 11:19:32 +0100987}
988
Deepak S31685c22014-07-03 17:33:01 -0400989static u32 vlv_c0_residency(struct drm_i915_private *dev_priv,
Chris Wilsonbf225f22014-07-10 20:31:18 +0100990 struct intel_rps_ei *rps_ei)
Deepak S31685c22014-07-03 17:33:01 -0400991{
992 u32 cz_ts, cz_freq_khz;
993 u32 render_count, media_count;
994 u32 elapsed_render, elapsed_media, elapsed_time;
995 u32 residency = 0;
996
997 cz_ts = vlv_punit_read(dev_priv, PUNIT_REG_CZ_TIMESTAMP);
998 cz_freq_khz = DIV_ROUND_CLOSEST(dev_priv->mem_freq * 1000, 4);
999
1000 render_count = I915_READ(VLV_RENDER_C0_COUNT_REG);
1001 media_count = I915_READ(VLV_MEDIA_C0_COUNT_REG);
1002
Chris Wilsonbf225f22014-07-10 20:31:18 +01001003 if (rps_ei->cz_clock == 0) {
1004 rps_ei->cz_clock = cz_ts;
1005 rps_ei->render_c0 = render_count;
1006 rps_ei->media_c0 = media_count;
Deepak S31685c22014-07-03 17:33:01 -04001007
1008 return dev_priv->rps.cur_freq;
1009 }
1010
Chris Wilsonbf225f22014-07-10 20:31:18 +01001011 elapsed_time = cz_ts - rps_ei->cz_clock;
1012 rps_ei->cz_clock = cz_ts;
Deepak S31685c22014-07-03 17:33:01 -04001013
Chris Wilsonbf225f22014-07-10 20:31:18 +01001014 elapsed_render = render_count - rps_ei->render_c0;
1015 rps_ei->render_c0 = render_count;
Deepak S31685c22014-07-03 17:33:01 -04001016
Chris Wilsonbf225f22014-07-10 20:31:18 +01001017 elapsed_media = media_count - rps_ei->media_c0;
1018 rps_ei->media_c0 = media_count;
Deepak S31685c22014-07-03 17:33:01 -04001019
1020 /* Convert all the counters into common unit of milli sec */
1021 elapsed_time /= VLV_CZ_CLOCK_TO_MILLI_SEC;
1022 elapsed_render /= cz_freq_khz;
1023 elapsed_media /= cz_freq_khz;
1024
1025 /*
1026 * Calculate overall C0 residency percentage
1027 * only if elapsed time is non zero
1028 */
1029 if (elapsed_time) {
1030 residency =
1031 ((max(elapsed_render, elapsed_media) * 100)
1032 / elapsed_time);
1033 }
1034
1035 return residency;
1036}
1037
1038/**
1039 * vlv_calc_delay_from_C0_counters - Increase/Decrease freq based on GPU
1040 * busy-ness calculated from C0 counters of render & media power wells
1041 * @dev_priv: DRM device private
1042 *
1043 */
Damien Lespiau4fa79042014-08-08 19:25:57 +01001044static int vlv_calc_delay_from_C0_counters(struct drm_i915_private *dev_priv)
Deepak S31685c22014-07-03 17:33:01 -04001045{
1046 u32 residency_C0_up = 0, residency_C0_down = 0;
Damien Lespiau4fa79042014-08-08 19:25:57 +01001047 int new_delay, adj;
Deepak S31685c22014-07-03 17:33:01 -04001048
1049 dev_priv->rps.ei_interrupt_count++;
1050
1051 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
1052
1053
Chris Wilsonbf225f22014-07-10 20:31:18 +01001054 if (dev_priv->rps.up_ei.cz_clock == 0) {
1055 vlv_c0_residency(dev_priv, &dev_priv->rps.up_ei);
1056 vlv_c0_residency(dev_priv, &dev_priv->rps.down_ei);
Deepak S31685c22014-07-03 17:33:01 -04001057 return dev_priv->rps.cur_freq;
1058 }
1059
1060
1061 /*
1062 * To down throttle, C0 residency should be less than down threshold
1063 * for continous EI intervals. So calculate down EI counters
1064 * once in VLV_INT_COUNT_FOR_DOWN_EI
1065 */
1066 if (dev_priv->rps.ei_interrupt_count == VLV_INT_COUNT_FOR_DOWN_EI) {
1067
1068 dev_priv->rps.ei_interrupt_count = 0;
1069
1070 residency_C0_down = vlv_c0_residency(dev_priv,
Chris Wilsonbf225f22014-07-10 20:31:18 +01001071 &dev_priv->rps.down_ei);
Deepak S31685c22014-07-03 17:33:01 -04001072 } else {
1073 residency_C0_up = vlv_c0_residency(dev_priv,
Chris Wilsonbf225f22014-07-10 20:31:18 +01001074 &dev_priv->rps.up_ei);
Deepak S31685c22014-07-03 17:33:01 -04001075 }
1076
1077 new_delay = dev_priv->rps.cur_freq;
1078
1079 adj = dev_priv->rps.last_adj;
1080 /* C0 residency is greater than UP threshold. Increase Frequency */
1081 if (residency_C0_up >= VLV_RP_UP_EI_THRESHOLD) {
1082 if (adj > 0)
1083 adj *= 2;
1084 else
1085 adj = 1;
1086
1087 if (dev_priv->rps.cur_freq < dev_priv->rps.max_freq_softlimit)
1088 new_delay = dev_priv->rps.cur_freq + adj;
1089
1090 /*
1091 * For better performance, jump directly
1092 * to RPe if we're below it.
1093 */
1094 if (new_delay < dev_priv->rps.efficient_freq)
1095 new_delay = dev_priv->rps.efficient_freq;
1096
1097 } else if (!dev_priv->rps.ei_interrupt_count &&
1098 (residency_C0_down < VLV_RP_DOWN_EI_THRESHOLD)) {
1099 if (adj < 0)
1100 adj *= 2;
1101 else
1102 adj = -1;
1103 /*
1104 * This means, C0 residency is less than down threshold over
1105 * a period of VLV_INT_COUNT_FOR_DOWN_EI. So, reduce the freq
1106 */
1107 if (dev_priv->rps.cur_freq > dev_priv->rps.min_freq_softlimit)
1108 new_delay = dev_priv->rps.cur_freq + adj;
1109 }
1110
1111 return new_delay;
1112}
1113
Ben Widawsky4912d042011-04-25 11:25:20 -07001114static void gen6_pm_rps_work(struct work_struct *work)
Jesse Barnes3b8d8d92010-12-17 14:19:02 -08001115{
Jani Nikula2d1013d2014-03-31 14:27:17 +03001116 struct drm_i915_private *dev_priv =
1117 container_of(work, struct drm_i915_private, rps.work);
Paulo Zanoniedbfdb42013-08-06 18:57:13 -03001118 u32 pm_iir;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01001119 int new_delay, adj;
Jesse Barnes3b8d8d92010-12-17 14:19:02 -08001120
Daniel Vetter59cdb632013-07-04 23:35:28 +02001121 spin_lock_irq(&dev_priv->irq_lock);
Daniel Vetterc6a828d2012-08-08 23:35:35 +02001122 pm_iir = dev_priv->rps.pm_iir;
1123 dev_priv->rps.pm_iir = 0;
Damien Lespiau6af257c2014-07-15 09:17:41 +02001124 if (INTEL_INFO(dev_priv->dev)->gen >= 8)
Daniel Vetter480c8032014-07-16 09:49:40 +02001125 gen8_enable_pm_irq(dev_priv, dev_priv->pm_rps_events);
Ben Widawsky09610212014-05-15 20:58:08 +03001126 else {
1127 /* Make sure not to corrupt PMIMR state used by ringbuffer */
Daniel Vetter480c8032014-07-16 09:49:40 +02001128 gen6_enable_pm_irq(dev_priv, dev_priv->pm_rps_events);
Ben Widawsky09610212014-05-15 20:58:08 +03001129 }
Daniel Vetter59cdb632013-07-04 23:35:28 +02001130 spin_unlock_irq(&dev_priv->irq_lock);
Ben Widawsky4912d042011-04-25 11:25:20 -07001131
Paulo Zanoni60611c12013-08-15 11:50:01 -03001132 /* Make sure we didn't queue anything we're not going to process. */
Deepak Sa6706b42014-03-15 20:23:22 +05301133 WARN_ON(pm_iir & ~dev_priv->pm_rps_events);
Paulo Zanoni60611c12013-08-15 11:50:01 -03001134
Deepak Sa6706b42014-03-15 20:23:22 +05301135 if ((pm_iir & dev_priv->pm_rps_events) == 0)
Jesse Barnes3b8d8d92010-12-17 14:19:02 -08001136 return;
1137
Jesse Barnes4fc688c2012-11-02 11:14:01 -07001138 mutex_lock(&dev_priv->rps.hw_lock);
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01001139
Chris Wilsondd75fdc2013-09-25 17:34:57 +01001140 adj = dev_priv->rps.last_adj;
Ville Syrjälä74250342013-06-25 21:38:11 +03001141 if (pm_iir & GEN6_PM_RP_UP_THRESHOLD) {
Chris Wilsondd75fdc2013-09-25 17:34:57 +01001142 if (adj > 0)
1143 adj *= 2;
Deepak S13a56602014-05-23 21:00:21 +05301144 else {
1145 /* CHV needs even encode values */
1146 adj = IS_CHERRYVIEW(dev_priv->dev) ? 2 : 1;
1147 }
Ben Widawskyb39fb292014-03-19 18:31:11 -07001148 new_delay = dev_priv->rps.cur_freq + adj;
Ville Syrjälä74250342013-06-25 21:38:11 +03001149
1150 /*
1151 * For better performance, jump directly
1152 * to RPe if we're below it.
1153 */
Ben Widawskyb39fb292014-03-19 18:31:11 -07001154 if (new_delay < dev_priv->rps.efficient_freq)
1155 new_delay = dev_priv->rps.efficient_freq;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01001156 } else if (pm_iir & GEN6_PM_RP_DOWN_TIMEOUT) {
Ben Widawskyb39fb292014-03-19 18:31:11 -07001157 if (dev_priv->rps.cur_freq > dev_priv->rps.efficient_freq)
1158 new_delay = dev_priv->rps.efficient_freq;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01001159 else
Ben Widawskyb39fb292014-03-19 18:31:11 -07001160 new_delay = dev_priv->rps.min_freq_softlimit;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01001161 adj = 0;
Deepak S31685c22014-07-03 17:33:01 -04001162 } else if (pm_iir & GEN6_PM_RP_UP_EI_EXPIRED) {
1163 new_delay = vlv_calc_delay_from_C0_counters(dev_priv);
Chris Wilsondd75fdc2013-09-25 17:34:57 +01001164 } else if (pm_iir & GEN6_PM_RP_DOWN_THRESHOLD) {
1165 if (adj < 0)
1166 adj *= 2;
Deepak S13a56602014-05-23 21:00:21 +05301167 else {
1168 /* CHV needs even encode values */
1169 adj = IS_CHERRYVIEW(dev_priv->dev) ? -2 : -1;
1170 }
Ben Widawskyb39fb292014-03-19 18:31:11 -07001171 new_delay = dev_priv->rps.cur_freq + adj;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01001172 } else { /* unknown event */
Ben Widawskyb39fb292014-03-19 18:31:11 -07001173 new_delay = dev_priv->rps.cur_freq;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01001174 }
Jesse Barnes3b8d8d92010-12-17 14:19:02 -08001175
Ben Widawsky79249632012-09-07 19:43:42 -07001176 /* sysfs frequency interfaces may have snuck in while servicing the
1177 * interrupt
1178 */
Ville Syrjälä1272e7b2013-11-07 19:57:49 +02001179 new_delay = clamp_t(int, new_delay,
Ben Widawskyb39fb292014-03-19 18:31:11 -07001180 dev_priv->rps.min_freq_softlimit,
1181 dev_priv->rps.max_freq_softlimit);
Deepak S27544362014-01-27 21:35:05 +05301182
Ben Widawskyb39fb292014-03-19 18:31:11 -07001183 dev_priv->rps.last_adj = new_delay - dev_priv->rps.cur_freq;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01001184
1185 if (IS_VALLEYVIEW(dev_priv->dev))
1186 valleyview_set_rps(dev_priv->dev, new_delay);
1187 else
1188 gen6_set_rps(dev_priv->dev, new_delay);
Jesse Barnes3b8d8d92010-12-17 14:19:02 -08001189
Jesse Barnes4fc688c2012-11-02 11:14:01 -07001190 mutex_unlock(&dev_priv->rps.hw_lock);
Jesse Barnes3b8d8d92010-12-17 14:19:02 -08001191}
1192
Ben Widawskye3689192012-05-25 16:56:22 -07001193
1194/**
1195 * ivybridge_parity_work - Workqueue called when a parity error interrupt
1196 * occurred.
1197 * @work: workqueue struct
1198 *
1199 * Doesn't actually do anything except notify userspace. As a consequence of
1200 * this event, userspace should try to remap the bad rows since statistically
1201 * it is likely the same row is more likely to go bad again.
1202 */
1203static void ivybridge_parity_work(struct work_struct *work)
1204{
Jani Nikula2d1013d2014-03-31 14:27:17 +03001205 struct drm_i915_private *dev_priv =
1206 container_of(work, struct drm_i915_private, l3_parity.error_work);
Ben Widawskye3689192012-05-25 16:56:22 -07001207 u32 error_status, row, bank, subbank;
Ben Widawsky35a85ac2013-09-19 11:13:41 -07001208 char *parity_event[6];
Ben Widawskye3689192012-05-25 16:56:22 -07001209 uint32_t misccpctl;
Ben Widawsky35a85ac2013-09-19 11:13:41 -07001210 uint8_t slice = 0;
Ben Widawskye3689192012-05-25 16:56:22 -07001211
1212 /* We must turn off DOP level clock gating to access the L3 registers.
1213 * In order to prevent a get/put style interface, acquire struct mutex
1214 * any time we access those registers.
1215 */
1216 mutex_lock(&dev_priv->dev->struct_mutex);
1217
Ben Widawsky35a85ac2013-09-19 11:13:41 -07001218 /* If we've screwed up tracking, just let the interrupt fire again */
1219 if (WARN_ON(!dev_priv->l3_parity.which_slice))
1220 goto out;
1221
Ben Widawskye3689192012-05-25 16:56:22 -07001222 misccpctl = I915_READ(GEN7_MISCCPCTL);
1223 I915_WRITE(GEN7_MISCCPCTL, misccpctl & ~GEN7_DOP_CLOCK_GATE_ENABLE);
1224 POSTING_READ(GEN7_MISCCPCTL);
1225
Ben Widawsky35a85ac2013-09-19 11:13:41 -07001226 while ((slice = ffs(dev_priv->l3_parity.which_slice)) != 0) {
1227 u32 reg;
Ben Widawskye3689192012-05-25 16:56:22 -07001228
Ben Widawsky35a85ac2013-09-19 11:13:41 -07001229 slice--;
1230 if (WARN_ON_ONCE(slice >= NUM_L3_SLICES(dev_priv->dev)))
1231 break;
1232
1233 dev_priv->l3_parity.which_slice &= ~(1<<slice);
1234
1235 reg = GEN7_L3CDERRST1 + (slice * 0x200);
1236
1237 error_status = I915_READ(reg);
1238 row = GEN7_PARITY_ERROR_ROW(error_status);
1239 bank = GEN7_PARITY_ERROR_BANK(error_status);
1240 subbank = GEN7_PARITY_ERROR_SUBBANK(error_status);
1241
1242 I915_WRITE(reg, GEN7_PARITY_ERROR_VALID | GEN7_L3CDERRST1_ENABLE);
1243 POSTING_READ(reg);
1244
1245 parity_event[0] = I915_L3_PARITY_UEVENT "=1";
1246 parity_event[1] = kasprintf(GFP_KERNEL, "ROW=%d", row);
1247 parity_event[2] = kasprintf(GFP_KERNEL, "BANK=%d", bank);
1248 parity_event[3] = kasprintf(GFP_KERNEL, "SUBBANK=%d", subbank);
1249 parity_event[4] = kasprintf(GFP_KERNEL, "SLICE=%d", slice);
1250 parity_event[5] = NULL;
1251
Dave Airlie5bdebb12013-10-11 14:07:25 +10001252 kobject_uevent_env(&dev_priv->dev->primary->kdev->kobj,
Ben Widawsky35a85ac2013-09-19 11:13:41 -07001253 KOBJ_CHANGE, parity_event);
1254
1255 DRM_DEBUG("Parity error: Slice = %d, Row = %d, Bank = %d, Sub bank = %d.\n",
1256 slice, row, bank, subbank);
1257
1258 kfree(parity_event[4]);
1259 kfree(parity_event[3]);
1260 kfree(parity_event[2]);
1261 kfree(parity_event[1]);
1262 }
Ben Widawskye3689192012-05-25 16:56:22 -07001263
1264 I915_WRITE(GEN7_MISCCPCTL, misccpctl);
1265
Ben Widawsky35a85ac2013-09-19 11:13:41 -07001266out:
1267 WARN_ON(dev_priv->l3_parity.which_slice);
Daniel Vetter4cb21832014-09-15 14:55:26 +02001268 spin_lock_irq(&dev_priv->irq_lock);
Daniel Vetter480c8032014-07-16 09:49:40 +02001269 gen5_enable_gt_irq(dev_priv, GT_PARITY_ERROR(dev_priv->dev));
Daniel Vetter4cb21832014-09-15 14:55:26 +02001270 spin_unlock_irq(&dev_priv->irq_lock);
Ben Widawskye3689192012-05-25 16:56:22 -07001271
1272 mutex_unlock(&dev_priv->dev->struct_mutex);
Ben Widawskye3689192012-05-25 16:56:22 -07001273}
1274
Ben Widawsky35a85ac2013-09-19 11:13:41 -07001275static void ivybridge_parity_error_irq_handler(struct drm_device *dev, u32 iir)
Ben Widawskye3689192012-05-25 16:56:22 -07001276{
Jani Nikula2d1013d2014-03-31 14:27:17 +03001277 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawskye3689192012-05-25 16:56:22 -07001278
Ben Widawsky040d2ba2013-09-19 11:01:40 -07001279 if (!HAS_L3_DPF(dev))
Ben Widawskye3689192012-05-25 16:56:22 -07001280 return;
1281
Daniel Vetterd0ecd7e2013-07-04 23:35:25 +02001282 spin_lock(&dev_priv->irq_lock);
Daniel Vetter480c8032014-07-16 09:49:40 +02001283 gen5_disable_gt_irq(dev_priv, GT_PARITY_ERROR(dev));
Daniel Vetterd0ecd7e2013-07-04 23:35:25 +02001284 spin_unlock(&dev_priv->irq_lock);
Ben Widawskye3689192012-05-25 16:56:22 -07001285
Ben Widawsky35a85ac2013-09-19 11:13:41 -07001286 iir &= GT_PARITY_ERROR(dev);
1287 if (iir & GT_RENDER_L3_PARITY_ERROR_INTERRUPT_S1)
1288 dev_priv->l3_parity.which_slice |= 1 << 1;
1289
1290 if (iir & GT_RENDER_L3_PARITY_ERROR_INTERRUPT)
1291 dev_priv->l3_parity.which_slice |= 1 << 0;
1292
Daniel Vettera4da4fa2012-11-02 19:55:07 +01001293 queue_work(dev_priv->wq, &dev_priv->l3_parity.error_work);
Ben Widawskye3689192012-05-25 16:56:22 -07001294}
1295
Paulo Zanonif1af8fc2013-07-12 19:56:30 -03001296static void ilk_gt_irq_handler(struct drm_device *dev,
1297 struct drm_i915_private *dev_priv,
1298 u32 gt_iir)
1299{
1300 if (gt_iir &
1301 (GT_RENDER_USER_INTERRUPT | GT_RENDER_PIPECTL_NOTIFY_INTERRUPT))
1302 notify_ring(dev, &dev_priv->ring[RCS]);
1303 if (gt_iir & ILK_BSD_USER_INTERRUPT)
1304 notify_ring(dev, &dev_priv->ring[VCS]);
1305}
1306
Daniel Vettere7b4c6b2012-03-30 20:24:35 +02001307static void snb_gt_irq_handler(struct drm_device *dev,
1308 struct drm_i915_private *dev_priv,
1309 u32 gt_iir)
1310{
1311
Ben Widawskycc609d52013-05-28 19:22:29 -07001312 if (gt_iir &
1313 (GT_RENDER_USER_INTERRUPT | GT_RENDER_PIPECTL_NOTIFY_INTERRUPT))
Daniel Vettere7b4c6b2012-03-30 20:24:35 +02001314 notify_ring(dev, &dev_priv->ring[RCS]);
Ben Widawskycc609d52013-05-28 19:22:29 -07001315 if (gt_iir & GT_BSD_USER_INTERRUPT)
Daniel Vettere7b4c6b2012-03-30 20:24:35 +02001316 notify_ring(dev, &dev_priv->ring[VCS]);
Ben Widawskycc609d52013-05-28 19:22:29 -07001317 if (gt_iir & GT_BLT_USER_INTERRUPT)
Daniel Vettere7b4c6b2012-03-30 20:24:35 +02001318 notify_ring(dev, &dev_priv->ring[BCS]);
1319
Ben Widawskycc609d52013-05-28 19:22:29 -07001320 if (gt_iir & (GT_BLT_CS_ERROR_INTERRUPT |
1321 GT_BSD_CS_ERROR_INTERRUPT |
1322 GT_RENDER_CS_MASTER_ERROR_INTERRUPT)) {
Mika Kuoppala58174462014-02-25 17:11:26 +02001323 i915_handle_error(dev, false, "GT error interrupt 0x%08x",
1324 gt_iir);
Daniel Vettere7b4c6b2012-03-30 20:24:35 +02001325 }
Ben Widawskye3689192012-05-25 16:56:22 -07001326
Ben Widawsky35a85ac2013-09-19 11:13:41 -07001327 if (gt_iir & GT_PARITY_ERROR(dev))
1328 ivybridge_parity_error_irq_handler(dev, gt_iir);
Daniel Vettere7b4c6b2012-03-30 20:24:35 +02001329}
1330
Ben Widawsky09610212014-05-15 20:58:08 +03001331static void gen8_rps_irq_handler(struct drm_i915_private *dev_priv, u32 pm_iir)
1332{
1333 if ((pm_iir & dev_priv->pm_rps_events) == 0)
1334 return;
1335
1336 spin_lock(&dev_priv->irq_lock);
1337 dev_priv->rps.pm_iir |= pm_iir & dev_priv->pm_rps_events;
Daniel Vetter480c8032014-07-16 09:49:40 +02001338 gen8_disable_pm_irq(dev_priv, pm_iir & dev_priv->pm_rps_events);
Ben Widawsky09610212014-05-15 20:58:08 +03001339 spin_unlock(&dev_priv->irq_lock);
1340
1341 queue_work(dev_priv->wq, &dev_priv->rps.work);
1342}
1343
Ben Widawskyabd58f02013-11-02 21:07:09 -07001344static irqreturn_t gen8_gt_irq_handler(struct drm_device *dev,
1345 struct drm_i915_private *dev_priv,
1346 u32 master_ctl)
1347{
Thomas Daniele981e7b2014-07-24 17:04:39 +01001348 struct intel_engine_cs *ring;
Ben Widawskyabd58f02013-11-02 21:07:09 -07001349 u32 rcs, bcs, vcs;
1350 uint32_t tmp = 0;
1351 irqreturn_t ret = IRQ_NONE;
1352
1353 if (master_ctl & (GEN8_GT_RCS_IRQ | GEN8_GT_BCS_IRQ)) {
1354 tmp = I915_READ(GEN8_GT_IIR(0));
1355 if (tmp) {
Oscar Mateo38cc46d2014-06-16 16:10:59 +01001356 I915_WRITE(GEN8_GT_IIR(0), tmp);
Ben Widawskyabd58f02013-11-02 21:07:09 -07001357 ret = IRQ_HANDLED;
Thomas Daniele981e7b2014-07-24 17:04:39 +01001358
Ben Widawskyabd58f02013-11-02 21:07:09 -07001359 rcs = tmp >> GEN8_RCS_IRQ_SHIFT;
Thomas Daniele981e7b2014-07-24 17:04:39 +01001360 ring = &dev_priv->ring[RCS];
Ben Widawskyabd58f02013-11-02 21:07:09 -07001361 if (rcs & GT_RENDER_USER_INTERRUPT)
Thomas Daniele981e7b2014-07-24 17:04:39 +01001362 notify_ring(dev, ring);
1363 if (rcs & GT_CONTEXT_SWITCH_INTERRUPT)
1364 intel_execlists_handle_ctx_events(ring);
1365
1366 bcs = tmp >> GEN8_BCS_IRQ_SHIFT;
1367 ring = &dev_priv->ring[BCS];
Ben Widawskyabd58f02013-11-02 21:07:09 -07001368 if (bcs & GT_RENDER_USER_INTERRUPT)
Thomas Daniele981e7b2014-07-24 17:04:39 +01001369 notify_ring(dev, ring);
1370 if (bcs & GT_CONTEXT_SWITCH_INTERRUPT)
1371 intel_execlists_handle_ctx_events(ring);
Ben Widawskyabd58f02013-11-02 21:07:09 -07001372 } else
1373 DRM_ERROR("The master control interrupt lied (GT0)!\n");
1374 }
1375
Zhao Yakui85f9b5f2014-04-17 10:37:38 +08001376 if (master_ctl & (GEN8_GT_VCS1_IRQ | GEN8_GT_VCS2_IRQ)) {
Ben Widawskyabd58f02013-11-02 21:07:09 -07001377 tmp = I915_READ(GEN8_GT_IIR(1));
1378 if (tmp) {
Oscar Mateo38cc46d2014-06-16 16:10:59 +01001379 I915_WRITE(GEN8_GT_IIR(1), tmp);
Ben Widawskyabd58f02013-11-02 21:07:09 -07001380 ret = IRQ_HANDLED;
Thomas Daniele981e7b2014-07-24 17:04:39 +01001381
Ben Widawskyabd58f02013-11-02 21:07:09 -07001382 vcs = tmp >> GEN8_VCS1_IRQ_SHIFT;
Thomas Daniele981e7b2014-07-24 17:04:39 +01001383 ring = &dev_priv->ring[VCS];
Ben Widawskyabd58f02013-11-02 21:07:09 -07001384 if (vcs & GT_RENDER_USER_INTERRUPT)
Thomas Daniele981e7b2014-07-24 17:04:39 +01001385 notify_ring(dev, ring);
Oscar Mateo73d477f2014-07-24 17:04:31 +01001386 if (vcs & GT_CONTEXT_SWITCH_INTERRUPT)
Thomas Daniele981e7b2014-07-24 17:04:39 +01001387 intel_execlists_handle_ctx_events(ring);
1388
Zhao Yakui85f9b5f2014-04-17 10:37:38 +08001389 vcs = tmp >> GEN8_VCS2_IRQ_SHIFT;
Thomas Daniele981e7b2014-07-24 17:04:39 +01001390 ring = &dev_priv->ring[VCS2];
Zhao Yakui85f9b5f2014-04-17 10:37:38 +08001391 if (vcs & GT_RENDER_USER_INTERRUPT)
Thomas Daniele981e7b2014-07-24 17:04:39 +01001392 notify_ring(dev, ring);
Oscar Mateo73d477f2014-07-24 17:04:31 +01001393 if (vcs & GT_CONTEXT_SWITCH_INTERRUPT)
Thomas Daniele981e7b2014-07-24 17:04:39 +01001394 intel_execlists_handle_ctx_events(ring);
Ben Widawskyabd58f02013-11-02 21:07:09 -07001395 } else
1396 DRM_ERROR("The master control interrupt lied (GT1)!\n");
1397 }
1398
Ben Widawsky09610212014-05-15 20:58:08 +03001399 if (master_ctl & GEN8_GT_PM_IRQ) {
1400 tmp = I915_READ(GEN8_GT_IIR(2));
1401 if (tmp & dev_priv->pm_rps_events) {
Ben Widawsky09610212014-05-15 20:58:08 +03001402 I915_WRITE(GEN8_GT_IIR(2),
1403 tmp & dev_priv->pm_rps_events);
Oscar Mateo38cc46d2014-06-16 16:10:59 +01001404 ret = IRQ_HANDLED;
1405 gen8_rps_irq_handler(dev_priv, tmp);
Ben Widawsky09610212014-05-15 20:58:08 +03001406 } else
1407 DRM_ERROR("The master control interrupt lied (PM)!\n");
1408 }
1409
Ben Widawskyabd58f02013-11-02 21:07:09 -07001410 if (master_ctl & GEN8_GT_VECS_IRQ) {
1411 tmp = I915_READ(GEN8_GT_IIR(3));
1412 if (tmp) {
Oscar Mateo38cc46d2014-06-16 16:10:59 +01001413 I915_WRITE(GEN8_GT_IIR(3), tmp);
Ben Widawskyabd58f02013-11-02 21:07:09 -07001414 ret = IRQ_HANDLED;
Thomas Daniele981e7b2014-07-24 17:04:39 +01001415
Ben Widawskyabd58f02013-11-02 21:07:09 -07001416 vcs = tmp >> GEN8_VECS_IRQ_SHIFT;
Thomas Daniele981e7b2014-07-24 17:04:39 +01001417 ring = &dev_priv->ring[VECS];
Ben Widawskyabd58f02013-11-02 21:07:09 -07001418 if (vcs & GT_RENDER_USER_INTERRUPT)
Thomas Daniele981e7b2014-07-24 17:04:39 +01001419 notify_ring(dev, ring);
Oscar Mateo73d477f2014-07-24 17:04:31 +01001420 if (vcs & GT_CONTEXT_SWITCH_INTERRUPT)
Thomas Daniele981e7b2014-07-24 17:04:39 +01001421 intel_execlists_handle_ctx_events(ring);
Ben Widawskyabd58f02013-11-02 21:07:09 -07001422 } else
1423 DRM_ERROR("The master control interrupt lied (GT3)!\n");
1424 }
1425
1426 return ret;
1427}
1428
Egbert Eichb543fb02013-04-16 13:36:54 +02001429#define HPD_STORM_DETECT_PERIOD 1000
1430#define HPD_STORM_THRESHOLD 5
1431
Jani Nikula07c338c2014-10-02 11:16:32 +03001432static int pch_port_to_hotplug_shift(enum port port)
Dave Airlie13cf5502014-06-18 11:29:35 +10001433{
1434 switch (port) {
1435 case PORT_A:
1436 case PORT_E:
1437 default:
1438 return -1;
1439 case PORT_B:
1440 return 0;
1441 case PORT_C:
1442 return 8;
1443 case PORT_D:
1444 return 16;
1445 }
1446}
1447
Jani Nikula07c338c2014-10-02 11:16:32 +03001448static int i915_port_to_hotplug_shift(enum port port)
Dave Airlie13cf5502014-06-18 11:29:35 +10001449{
1450 switch (port) {
1451 case PORT_A:
1452 case PORT_E:
1453 default:
1454 return -1;
1455 case PORT_B:
1456 return 17;
1457 case PORT_C:
1458 return 19;
1459 case PORT_D:
1460 return 21;
1461 }
1462}
1463
1464static inline enum port get_port_from_pin(enum hpd_pin pin)
1465{
1466 switch (pin) {
1467 case HPD_PORT_B:
1468 return PORT_B;
1469 case HPD_PORT_C:
1470 return PORT_C;
1471 case HPD_PORT_D:
1472 return PORT_D;
1473 default:
1474 return PORT_A; /* no hpd */
1475 }
1476}
1477
Daniel Vetter10a504d2013-06-27 17:52:12 +02001478static inline void intel_hpd_irq_handler(struct drm_device *dev,
Daniel Vetter22062db2013-06-27 17:52:11 +02001479 u32 hotplug_trigger,
Dave Airlie13cf5502014-06-18 11:29:35 +10001480 u32 dig_hotplug_reg,
Daniel Vetter22062db2013-06-27 17:52:11 +02001481 const u32 *hpd)
Egbert Eichb543fb02013-04-16 13:36:54 +02001482{
Jani Nikula2d1013d2014-03-31 14:27:17 +03001483 struct drm_i915_private *dev_priv = dev->dev_private;
Egbert Eichb543fb02013-04-16 13:36:54 +02001484 int i;
Dave Airlie13cf5502014-06-18 11:29:35 +10001485 enum port port;
Daniel Vetter10a504d2013-06-27 17:52:12 +02001486 bool storm_detected = false;
Dave Airlie13cf5502014-06-18 11:29:35 +10001487 bool queue_dig = false, queue_hp = false;
1488 u32 dig_shift;
1489 u32 dig_port_mask = 0;
Egbert Eichb543fb02013-04-16 13:36:54 +02001490
Daniel Vetter91d131d2013-06-27 17:52:14 +02001491 if (!hotplug_trigger)
1492 return;
1493
Dave Airlie13cf5502014-06-18 11:29:35 +10001494 DRM_DEBUG_DRIVER("hotplug event received, stat 0x%08x, dig 0x%08x\n",
1495 hotplug_trigger, dig_hotplug_reg);
Imre Deakcc9bd492014-01-16 19:56:54 +02001496
Daniel Vetterb5ea2d52013-06-27 17:52:15 +02001497 spin_lock(&dev_priv->irq_lock);
Egbert Eichb543fb02013-04-16 13:36:54 +02001498 for (i = 1; i < HPD_NUM_PINS; i++) {
Dave Airlie13cf5502014-06-18 11:29:35 +10001499 if (!(hpd[i] & hotplug_trigger))
1500 continue;
Egbert Eich821450c2013-04-16 13:36:55 +02001501
Dave Airlie13cf5502014-06-18 11:29:35 +10001502 port = get_port_from_pin(i);
1503 if (port && dev_priv->hpd_irq_port[port]) {
1504 bool long_hpd;
1505
Jani Nikula07c338c2014-10-02 11:16:32 +03001506 if (HAS_PCH_SPLIT(dev)) {
1507 dig_shift = pch_port_to_hotplug_shift(port);
Dave Airlie13cf5502014-06-18 11:29:35 +10001508 long_hpd = (dig_hotplug_reg >> dig_shift) & PORTB_HOTPLUG_LONG_DETECT;
Jani Nikula07c338c2014-10-02 11:16:32 +03001509 } else {
1510 dig_shift = i915_port_to_hotplug_shift(port);
1511 long_hpd = (hotplug_trigger >> dig_shift) & PORTB_HOTPLUG_LONG_DETECT;
Dave Airlie13cf5502014-06-18 11:29:35 +10001512 }
1513
Ville Syrjälä26fbb772014-08-11 18:37:37 +03001514 DRM_DEBUG_DRIVER("digital hpd port %c - %s\n",
1515 port_name(port),
1516 long_hpd ? "long" : "short");
Dave Airlie13cf5502014-06-18 11:29:35 +10001517 /* for long HPD pulses we want to have the digital queue happen,
1518 but we still want HPD storm detection to function. */
1519 if (long_hpd) {
1520 dev_priv->long_hpd_port_mask |= (1 << port);
1521 dig_port_mask |= hpd[i];
1522 } else {
1523 /* for short HPD just trigger the digital queue */
1524 dev_priv->short_hpd_port_mask |= (1 << port);
1525 hotplug_trigger &= ~hpd[i];
1526 }
1527 queue_dig = true;
1528 }
1529 }
1530
1531 for (i = 1; i < HPD_NUM_PINS; i++) {
Daniel Vetter3ff04a162014-04-24 12:03:17 +02001532 if (hpd[i] & hotplug_trigger &&
1533 dev_priv->hpd_stats[i].hpd_mark == HPD_DISABLED) {
1534 /*
1535 * On GMCH platforms the interrupt mask bits only
1536 * prevent irq generation, not the setting of the
1537 * hotplug bits itself. So only WARN about unexpected
1538 * interrupts on saner platforms.
1539 */
1540 WARN_ONCE(INTEL_INFO(dev)->gen >= 5 && !IS_VALLEYVIEW(dev),
1541 "Received HPD interrupt (0x%08x) on pin %d (0x%08x) although disabled\n",
1542 hotplug_trigger, i, hpd[i]);
1543
1544 continue;
1545 }
Egbert Eichb8f102e2013-07-26 14:14:24 +02001546
Egbert Eichb543fb02013-04-16 13:36:54 +02001547 if (!(hpd[i] & hotplug_trigger) ||
1548 dev_priv->hpd_stats[i].hpd_mark != HPD_ENABLED)
1549 continue;
1550
Dave Airlie13cf5502014-06-18 11:29:35 +10001551 if (!(dig_port_mask & hpd[i])) {
1552 dev_priv->hpd_event_bits |= (1 << i);
1553 queue_hp = true;
1554 }
1555
Egbert Eichb543fb02013-04-16 13:36:54 +02001556 if (!time_in_range(jiffies, dev_priv->hpd_stats[i].hpd_last_jiffies,
1557 dev_priv->hpd_stats[i].hpd_last_jiffies
1558 + msecs_to_jiffies(HPD_STORM_DETECT_PERIOD))) {
1559 dev_priv->hpd_stats[i].hpd_last_jiffies = jiffies;
1560 dev_priv->hpd_stats[i].hpd_cnt = 0;
Egbert Eichb8f102e2013-07-26 14:14:24 +02001561 DRM_DEBUG_KMS("Received HPD interrupt on PIN %d - cnt: 0\n", i);
Egbert Eichb543fb02013-04-16 13:36:54 +02001562 } else if (dev_priv->hpd_stats[i].hpd_cnt > HPD_STORM_THRESHOLD) {
1563 dev_priv->hpd_stats[i].hpd_mark = HPD_MARK_DISABLED;
Egbert Eich142e2392013-04-11 15:57:57 +02001564 dev_priv->hpd_event_bits &= ~(1 << i);
Egbert Eichb543fb02013-04-16 13:36:54 +02001565 DRM_DEBUG_KMS("HPD interrupt storm detected on PIN %d\n", i);
Daniel Vetter10a504d2013-06-27 17:52:12 +02001566 storm_detected = true;
Egbert Eichb543fb02013-04-16 13:36:54 +02001567 } else {
1568 dev_priv->hpd_stats[i].hpd_cnt++;
Egbert Eichb8f102e2013-07-26 14:14:24 +02001569 DRM_DEBUG_KMS("Received HPD interrupt on PIN %d - cnt: %d\n", i,
1570 dev_priv->hpd_stats[i].hpd_cnt);
Egbert Eichb543fb02013-04-16 13:36:54 +02001571 }
1572 }
1573
Daniel Vetter10a504d2013-06-27 17:52:12 +02001574 if (storm_detected)
1575 dev_priv->display.hpd_irq_setup(dev);
Daniel Vetterb5ea2d52013-06-27 17:52:15 +02001576 spin_unlock(&dev_priv->irq_lock);
Daniel Vetter5876fa02013-06-27 17:52:13 +02001577
Daniel Vetter645416f2013-09-02 16:22:25 +02001578 /*
1579 * Our hotplug handler can grab modeset locks (by calling down into the
1580 * fb helpers). Hence it must not be run on our own dev-priv->wq work
1581 * queue for otherwise the flush_work in the pageflip code will
1582 * deadlock.
1583 */
Dave Airlie13cf5502014-06-18 11:29:35 +10001584 if (queue_dig)
Dave Airlie0e32b392014-05-02 14:02:48 +10001585 queue_work(dev_priv->dp_wq, &dev_priv->dig_port_work);
Dave Airlie13cf5502014-06-18 11:29:35 +10001586 if (queue_hp)
1587 schedule_work(&dev_priv->hotplug_work);
Egbert Eichb543fb02013-04-16 13:36:54 +02001588}
1589
Daniel Vetter515ac2b2012-12-01 13:53:44 +01001590static void gmbus_irq_handler(struct drm_device *dev)
1591{
Jani Nikula2d1013d2014-03-31 14:27:17 +03001592 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter28c70f12012-12-01 13:53:45 +01001593
Daniel Vetter28c70f12012-12-01 13:53:45 +01001594 wake_up_all(&dev_priv->gmbus_wait_queue);
Daniel Vetter515ac2b2012-12-01 13:53:44 +01001595}
1596
Daniel Vetterce99c252012-12-01 13:53:47 +01001597static void dp_aux_irq_handler(struct drm_device *dev)
1598{
Jani Nikula2d1013d2014-03-31 14:27:17 +03001599 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter9ee32fea2012-12-01 13:53:48 +01001600
Daniel Vetter9ee32fea2012-12-01 13:53:48 +01001601 wake_up_all(&dev_priv->gmbus_wait_queue);
Daniel Vetterce99c252012-12-01 13:53:47 +01001602}
1603
Shuang He8bf1e9f2013-10-15 18:55:27 +01001604#if defined(CONFIG_DEBUG_FS)
Daniel Vetter277de952013-10-18 16:37:07 +02001605static void display_pipe_crc_irq_handler(struct drm_device *dev, enum pipe pipe,
1606 uint32_t crc0, uint32_t crc1,
1607 uint32_t crc2, uint32_t crc3,
1608 uint32_t crc4)
Shuang He8bf1e9f2013-10-15 18:55:27 +01001609{
1610 struct drm_i915_private *dev_priv = dev->dev_private;
1611 struct intel_pipe_crc *pipe_crc = &dev_priv->pipe_crc[pipe];
1612 struct intel_pipe_crc_entry *entry;
Damien Lespiauac2300d2013-10-15 18:55:30 +01001613 int head, tail;
Damien Lespiaub2c88f52013-10-15 18:55:29 +01001614
Damien Lespiaud538bbd2013-10-21 14:29:30 +01001615 spin_lock(&pipe_crc->lock);
1616
Damien Lespiau0c912c72013-10-15 18:55:37 +01001617 if (!pipe_crc->entries) {
Damien Lespiaud538bbd2013-10-21 14:29:30 +01001618 spin_unlock(&pipe_crc->lock);
Damien Lespiau0c912c72013-10-15 18:55:37 +01001619 DRM_ERROR("spurious interrupt\n");
1620 return;
1621 }
1622
Damien Lespiaud538bbd2013-10-21 14:29:30 +01001623 head = pipe_crc->head;
1624 tail = pipe_crc->tail;
Damien Lespiaub2c88f52013-10-15 18:55:29 +01001625
1626 if (CIRC_SPACE(head, tail, INTEL_PIPE_CRC_ENTRIES_NR) < 1) {
Damien Lespiaud538bbd2013-10-21 14:29:30 +01001627 spin_unlock(&pipe_crc->lock);
Damien Lespiaub2c88f52013-10-15 18:55:29 +01001628 DRM_ERROR("CRC buffer overflowing\n");
1629 return;
1630 }
1631
1632 entry = &pipe_crc->entries[head];
Shuang He8bf1e9f2013-10-15 18:55:27 +01001633
Daniel Vetter8bc5e952013-10-16 22:55:49 +02001634 entry->frame = dev->driver->get_vblank_counter(dev, pipe);
Daniel Vettereba94eb2013-10-16 22:55:46 +02001635 entry->crc[0] = crc0;
1636 entry->crc[1] = crc1;
1637 entry->crc[2] = crc2;
1638 entry->crc[3] = crc3;
1639 entry->crc[4] = crc4;
Damien Lespiaub2c88f52013-10-15 18:55:29 +01001640
1641 head = (head + 1) & (INTEL_PIPE_CRC_ENTRIES_NR - 1);
Damien Lespiaud538bbd2013-10-21 14:29:30 +01001642 pipe_crc->head = head;
1643
1644 spin_unlock(&pipe_crc->lock);
Damien Lespiau07144422013-10-15 18:55:40 +01001645
1646 wake_up_interruptible(&pipe_crc->wq);
Shuang He8bf1e9f2013-10-15 18:55:27 +01001647}
Daniel Vetter277de952013-10-18 16:37:07 +02001648#else
1649static inline void
1650display_pipe_crc_irq_handler(struct drm_device *dev, enum pipe pipe,
1651 uint32_t crc0, uint32_t crc1,
1652 uint32_t crc2, uint32_t crc3,
1653 uint32_t crc4) {}
1654#endif
Daniel Vettereba94eb2013-10-16 22:55:46 +02001655
Daniel Vetter277de952013-10-18 16:37:07 +02001656
1657static void hsw_pipe_crc_irq_handler(struct drm_device *dev, enum pipe pipe)
Daniel Vetter5a69b892013-10-16 22:55:52 +02001658{
1659 struct drm_i915_private *dev_priv = dev->dev_private;
1660
Daniel Vetter277de952013-10-18 16:37:07 +02001661 display_pipe_crc_irq_handler(dev, pipe,
1662 I915_READ(PIPE_CRC_RES_1_IVB(pipe)),
1663 0, 0, 0, 0);
Daniel Vetter5a69b892013-10-16 22:55:52 +02001664}
1665
Daniel Vetter277de952013-10-18 16:37:07 +02001666static void ivb_pipe_crc_irq_handler(struct drm_device *dev, enum pipe pipe)
Daniel Vettereba94eb2013-10-16 22:55:46 +02001667{
1668 struct drm_i915_private *dev_priv = dev->dev_private;
1669
Daniel Vetter277de952013-10-18 16:37:07 +02001670 display_pipe_crc_irq_handler(dev, pipe,
1671 I915_READ(PIPE_CRC_RES_1_IVB(pipe)),
1672 I915_READ(PIPE_CRC_RES_2_IVB(pipe)),
1673 I915_READ(PIPE_CRC_RES_3_IVB(pipe)),
1674 I915_READ(PIPE_CRC_RES_4_IVB(pipe)),
1675 I915_READ(PIPE_CRC_RES_5_IVB(pipe)));
Daniel Vettereba94eb2013-10-16 22:55:46 +02001676}
Daniel Vetter5b3a8562013-10-16 22:55:48 +02001677
Daniel Vetter277de952013-10-18 16:37:07 +02001678static void i9xx_pipe_crc_irq_handler(struct drm_device *dev, enum pipe pipe)
Daniel Vetter5b3a8562013-10-16 22:55:48 +02001679{
1680 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter0b5c5ed2013-10-16 22:55:53 +02001681 uint32_t res1, res2;
1682
1683 if (INTEL_INFO(dev)->gen >= 3)
1684 res1 = I915_READ(PIPE_CRC_RES_RES1_I915(pipe));
1685 else
1686 res1 = 0;
1687
1688 if (INTEL_INFO(dev)->gen >= 5 || IS_G4X(dev))
1689 res2 = I915_READ(PIPE_CRC_RES_RES2_G4X(pipe));
1690 else
1691 res2 = 0;
Daniel Vetter5b3a8562013-10-16 22:55:48 +02001692
Daniel Vetter277de952013-10-18 16:37:07 +02001693 display_pipe_crc_irq_handler(dev, pipe,
1694 I915_READ(PIPE_CRC_RES_RED(pipe)),
1695 I915_READ(PIPE_CRC_RES_GREEN(pipe)),
1696 I915_READ(PIPE_CRC_RES_BLUE(pipe)),
1697 res1, res2);
Daniel Vetter5b3a8562013-10-16 22:55:48 +02001698}
Shuang He8bf1e9f2013-10-15 18:55:27 +01001699
Paulo Zanoni1403c0d2013-08-15 11:51:32 -03001700/* The RPS events need forcewake, so we add them to a work queue and mask their
1701 * IMR bits until the work is done. Other interrupts can be processed without
1702 * the work queue. */
1703static void gen6_rps_irq_handler(struct drm_i915_private *dev_priv, u32 pm_iir)
Ben Widawskybaf02a12013-05-28 19:22:24 -07001704{
Deepak Sa6706b42014-03-15 20:23:22 +05301705 if (pm_iir & dev_priv->pm_rps_events) {
Daniel Vetter59cdb632013-07-04 23:35:28 +02001706 spin_lock(&dev_priv->irq_lock);
Deepak Sa6706b42014-03-15 20:23:22 +05301707 dev_priv->rps.pm_iir |= pm_iir & dev_priv->pm_rps_events;
Daniel Vetter480c8032014-07-16 09:49:40 +02001708 gen6_disable_pm_irq(dev_priv, pm_iir & dev_priv->pm_rps_events);
Daniel Vetter59cdb632013-07-04 23:35:28 +02001709 spin_unlock(&dev_priv->irq_lock);
Daniel Vetter2adbee62013-07-04 23:35:27 +02001710
1711 queue_work(dev_priv->wq, &dev_priv->rps.work);
Ben Widawskybaf02a12013-05-28 19:22:24 -07001712 }
Ben Widawskybaf02a12013-05-28 19:22:24 -07001713
Paulo Zanoni1403c0d2013-08-15 11:51:32 -03001714 if (HAS_VEBOX(dev_priv->dev)) {
1715 if (pm_iir & PM_VEBOX_USER_INTERRUPT)
1716 notify_ring(dev_priv->dev, &dev_priv->ring[VECS]);
Ben Widawsky12638c52013-05-28 19:22:31 -07001717
Paulo Zanoni1403c0d2013-08-15 11:51:32 -03001718 if (pm_iir & PM_VEBOX_CS_ERROR_INTERRUPT) {
Mika Kuoppala58174462014-02-25 17:11:26 +02001719 i915_handle_error(dev_priv->dev, false,
1720 "VEBOX CS error interrupt 0x%08x",
1721 pm_iir);
Paulo Zanoni1403c0d2013-08-15 11:51:32 -03001722 }
Ben Widawsky12638c52013-05-28 19:22:31 -07001723 }
Ben Widawskybaf02a12013-05-28 19:22:24 -07001724}
1725
Ville Syrjälä8d7849d2014-04-29 13:35:46 +03001726static bool intel_pipe_handle_vblank(struct drm_device *dev, enum pipe pipe)
1727{
Ville Syrjälä8d7849d2014-04-29 13:35:46 +03001728 if (!drm_handle_vblank(dev, pipe))
1729 return false;
1730
Ville Syrjälä8d7849d2014-04-29 13:35:46 +03001731 return true;
1732}
1733
Imre Deakc1874ed2014-02-04 21:35:46 +02001734static void valleyview_pipestat_irq_handler(struct drm_device *dev, u32 iir)
1735{
1736 struct drm_i915_private *dev_priv = dev->dev_private;
Imre Deak91d181d2014-02-10 18:42:49 +02001737 u32 pipe_stats[I915_MAX_PIPES] = { };
Imre Deakc1874ed2014-02-04 21:35:46 +02001738 int pipe;
1739
Imre Deak58ead0d2014-02-04 21:35:47 +02001740 spin_lock(&dev_priv->irq_lock);
Damien Lespiau055e3932014-08-18 13:49:10 +01001741 for_each_pipe(dev_priv, pipe) {
Imre Deak91d181d2014-02-10 18:42:49 +02001742 int reg;
Daniel Vetterbbb5eeb2014-02-12 17:55:36 +01001743 u32 mask, iir_bit = 0;
Imre Deak91d181d2014-02-10 18:42:49 +02001744
Daniel Vetterbbb5eeb2014-02-12 17:55:36 +01001745 /*
1746 * PIPESTAT bits get signalled even when the interrupt is
1747 * disabled with the mask bits, and some of the status bits do
1748 * not generate interrupts at all (like the underrun bit). Hence
1749 * we need to be careful that we only handle what we want to
1750 * handle.
1751 */
Daniel Vetter0f239f42014-09-30 10:56:49 +02001752
1753 /* fifo underruns are filterered in the underrun handler. */
1754 mask = PIPE_FIFO_UNDERRUN_STATUS;
Daniel Vetterbbb5eeb2014-02-12 17:55:36 +01001755
1756 switch (pipe) {
1757 case PIPE_A:
1758 iir_bit = I915_DISPLAY_PIPE_A_EVENT_INTERRUPT;
1759 break;
1760 case PIPE_B:
1761 iir_bit = I915_DISPLAY_PIPE_B_EVENT_INTERRUPT;
1762 break;
Ville Syrjälä3278f672014-04-09 13:28:49 +03001763 case PIPE_C:
1764 iir_bit = I915_DISPLAY_PIPE_C_EVENT_INTERRUPT;
1765 break;
Daniel Vetterbbb5eeb2014-02-12 17:55:36 +01001766 }
1767 if (iir & iir_bit)
1768 mask |= dev_priv->pipestat_irq_mask[pipe];
1769
1770 if (!mask)
Imre Deak91d181d2014-02-10 18:42:49 +02001771 continue;
1772
1773 reg = PIPESTAT(pipe);
Daniel Vetterbbb5eeb2014-02-12 17:55:36 +01001774 mask |= PIPESTAT_INT_ENABLE_MASK;
1775 pipe_stats[pipe] = I915_READ(reg) & mask;
Imre Deakc1874ed2014-02-04 21:35:46 +02001776
1777 /*
1778 * Clear the PIPE*STAT regs before the IIR
1779 */
Imre Deak91d181d2014-02-10 18:42:49 +02001780 if (pipe_stats[pipe] & (PIPE_FIFO_UNDERRUN_STATUS |
1781 PIPESTAT_INT_STATUS_MASK))
Imre Deakc1874ed2014-02-04 21:35:46 +02001782 I915_WRITE(reg, pipe_stats[pipe]);
1783 }
Imre Deak58ead0d2014-02-04 21:35:47 +02001784 spin_unlock(&dev_priv->irq_lock);
Imre Deakc1874ed2014-02-04 21:35:46 +02001785
Damien Lespiau055e3932014-08-18 13:49:10 +01001786 for_each_pipe(dev_priv, pipe) {
Chris Wilsond6bbafa2014-09-05 07:13:24 +01001787 if (pipe_stats[pipe] & PIPE_START_VBLANK_INTERRUPT_STATUS &&
1788 intel_pipe_handle_vblank(dev, pipe))
1789 intel_check_page_flip(dev, pipe);
Imre Deakc1874ed2014-02-04 21:35:46 +02001790
Imre Deak579a9b02014-02-04 21:35:48 +02001791 if (pipe_stats[pipe] & PLANE_FLIP_DONE_INT_STATUS_VLV) {
Imre Deakc1874ed2014-02-04 21:35:46 +02001792 intel_prepare_page_flip(dev, pipe);
1793 intel_finish_page_flip(dev, pipe);
1794 }
1795
1796 if (pipe_stats[pipe] & PIPE_CRC_DONE_INTERRUPT_STATUS)
1797 i9xx_pipe_crc_irq_handler(dev, pipe);
1798
Daniel Vetter1f7247c2014-09-30 10:56:48 +02001799 if (pipe_stats[pipe] & PIPE_FIFO_UNDERRUN_STATUS)
1800 intel_cpu_fifo_underrun_irq_handler(dev_priv, pipe);
Imre Deakc1874ed2014-02-04 21:35:46 +02001801 }
1802
1803 if (pipe_stats[0] & PIPE_GMBUS_INTERRUPT_STATUS)
1804 gmbus_irq_handler(dev);
1805}
1806
Ville Syrjälä16c6c562014-04-01 10:54:36 +03001807static void i9xx_hpd_irq_handler(struct drm_device *dev)
1808{
1809 struct drm_i915_private *dev_priv = dev->dev_private;
1810 u32 hotplug_status = I915_READ(PORT_HOTPLUG_STAT);
1811
Oscar Mateo3ff60f82014-06-16 16:10:58 +01001812 if (hotplug_status) {
1813 I915_WRITE(PORT_HOTPLUG_STAT, hotplug_status);
1814 /*
1815 * Make sure hotplug status is cleared before we clear IIR, or else we
1816 * may miss hotplug events.
1817 */
1818 POSTING_READ(PORT_HOTPLUG_STAT);
Ville Syrjälä16c6c562014-04-01 10:54:36 +03001819
Oscar Mateo3ff60f82014-06-16 16:10:58 +01001820 if (IS_G4X(dev)) {
1821 u32 hotplug_trigger = hotplug_status & HOTPLUG_INT_STATUS_G4X;
Ville Syrjälä16c6c562014-04-01 10:54:36 +03001822
Dave Airlie13cf5502014-06-18 11:29:35 +10001823 intel_hpd_irq_handler(dev, hotplug_trigger, 0, hpd_status_g4x);
Oscar Mateo3ff60f82014-06-16 16:10:58 +01001824 } else {
1825 u32 hotplug_trigger = hotplug_status & HOTPLUG_INT_STATUS_I915;
1826
Dave Airlie13cf5502014-06-18 11:29:35 +10001827 intel_hpd_irq_handler(dev, hotplug_trigger, 0, hpd_status_i915);
Oscar Mateo3ff60f82014-06-16 16:10:58 +01001828 }
1829
1830 if ((IS_G4X(dev) || IS_VALLEYVIEW(dev)) &&
1831 hotplug_status & DP_AUX_CHANNEL_MASK_INT_STATUS_G4X)
1832 dp_aux_irq_handler(dev);
Ville Syrjälä16c6c562014-04-01 10:54:36 +03001833 }
Ville Syrjälä16c6c562014-04-01 10:54:36 +03001834}
1835
Daniel Vetterff1f5252012-10-02 15:10:55 +02001836static irqreturn_t valleyview_irq_handler(int irq, void *arg)
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07001837{
Daniel Vetter45a83f82014-05-12 19:17:55 +02001838 struct drm_device *dev = arg;
Jani Nikula2d1013d2014-03-31 14:27:17 +03001839 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07001840 u32 iir, gt_iir, pm_iir;
1841 irqreturn_t ret = IRQ_NONE;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07001842
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07001843 while (true) {
Oscar Mateo3ff60f82014-06-16 16:10:58 +01001844 /* Find, clear, then process each source of interrupt */
1845
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07001846 gt_iir = I915_READ(GTIIR);
Oscar Mateo3ff60f82014-06-16 16:10:58 +01001847 if (gt_iir)
1848 I915_WRITE(GTIIR, gt_iir);
1849
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07001850 pm_iir = I915_READ(GEN6_PMIIR);
Oscar Mateo3ff60f82014-06-16 16:10:58 +01001851 if (pm_iir)
1852 I915_WRITE(GEN6_PMIIR, pm_iir);
1853
1854 iir = I915_READ(VLV_IIR);
1855 if (iir) {
1856 /* Consume port before clearing IIR or we'll miss events */
1857 if (iir & I915_DISPLAY_PORT_INTERRUPT)
1858 i9xx_hpd_irq_handler(dev);
1859 I915_WRITE(VLV_IIR, iir);
1860 }
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07001861
1862 if (gt_iir == 0 && pm_iir == 0 && iir == 0)
1863 goto out;
1864
1865 ret = IRQ_HANDLED;
1866
Oscar Mateo3ff60f82014-06-16 16:10:58 +01001867 if (gt_iir)
1868 snb_gt_irq_handler(dev, dev_priv, gt_iir);
Paulo Zanoni60611c12013-08-15 11:50:01 -03001869 if (pm_iir)
Daniel Vetterd0ecd7e2013-07-04 23:35:25 +02001870 gen6_rps_irq_handler(dev_priv, pm_iir);
Oscar Mateo3ff60f82014-06-16 16:10:58 +01001871 /* Call regardless, as some status bits might not be
1872 * signalled in iir */
1873 valleyview_pipestat_irq_handler(dev, iir);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07001874 }
1875
1876out:
1877 return ret;
1878}
1879
Ville Syrjälä43f328d2014-04-09 20:40:52 +03001880static irqreturn_t cherryview_irq_handler(int irq, void *arg)
1881{
Daniel Vetter45a83f82014-05-12 19:17:55 +02001882 struct drm_device *dev = arg;
Ville Syrjälä43f328d2014-04-09 20:40:52 +03001883 struct drm_i915_private *dev_priv = dev->dev_private;
1884 u32 master_ctl, iir;
1885 irqreturn_t ret = IRQ_NONE;
Ville Syrjälä43f328d2014-04-09 20:40:52 +03001886
Ville Syrjälä8e5fd592014-04-09 13:28:50 +03001887 for (;;) {
1888 master_ctl = I915_READ(GEN8_MASTER_IRQ) & ~GEN8_MASTER_IRQ_CONTROL;
1889 iir = I915_READ(VLV_IIR);
Ville Syrjälä3278f672014-04-09 13:28:49 +03001890
Ville Syrjälä8e5fd592014-04-09 13:28:50 +03001891 if (master_ctl == 0 && iir == 0)
1892 break;
Ville Syrjälä43f328d2014-04-09 20:40:52 +03001893
Oscar Mateo27b6c122014-06-16 16:11:00 +01001894 ret = IRQ_HANDLED;
1895
Ville Syrjälä8e5fd592014-04-09 13:28:50 +03001896 I915_WRITE(GEN8_MASTER_IRQ, 0);
Ville Syrjälä43f328d2014-04-09 20:40:52 +03001897
Oscar Mateo27b6c122014-06-16 16:11:00 +01001898 /* Find, clear, then process each source of interrupt */
1899
1900 if (iir) {
1901 /* Consume port before clearing IIR or we'll miss events */
1902 if (iir & I915_DISPLAY_PORT_INTERRUPT)
1903 i9xx_hpd_irq_handler(dev);
1904 I915_WRITE(VLV_IIR, iir);
1905 }
1906
Ville Syrjälä8e5fd592014-04-09 13:28:50 +03001907 gen8_gt_irq_handler(dev, dev_priv, master_ctl);
Ville Syrjälä43f328d2014-04-09 20:40:52 +03001908
Oscar Mateo27b6c122014-06-16 16:11:00 +01001909 /* Call regardless, as some status bits might not be
1910 * signalled in iir */
Ville Syrjälä8e5fd592014-04-09 13:28:50 +03001911 valleyview_pipestat_irq_handler(dev, iir);
Ville Syrjälä43f328d2014-04-09 20:40:52 +03001912
Ville Syrjälä8e5fd592014-04-09 13:28:50 +03001913 I915_WRITE(GEN8_MASTER_IRQ, DE_MASTER_IRQ_CONTROL);
1914 POSTING_READ(GEN8_MASTER_IRQ);
Ville Syrjälä43f328d2014-04-09 20:40:52 +03001915 }
1916
Ville Syrjälä43f328d2014-04-09 20:40:52 +03001917 return ret;
1918}
1919
Adam Jackson23e81d62012-06-06 15:45:44 -04001920static void ibx_irq_handler(struct drm_device *dev, u32 pch_iir)
Jesse Barnes776ad802011-01-04 15:09:39 -08001921{
Jani Nikula2d1013d2014-03-31 14:27:17 +03001922 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001923 int pipe;
Egbert Eichb543fb02013-04-16 13:36:54 +02001924 u32 hotplug_trigger = pch_iir & SDE_HOTPLUG_MASK;
Dave Airlie13cf5502014-06-18 11:29:35 +10001925 u32 dig_hotplug_reg;
Jesse Barnes776ad802011-01-04 15:09:39 -08001926
Dave Airlie13cf5502014-06-18 11:29:35 +10001927 dig_hotplug_reg = I915_READ(PCH_PORT_HOTPLUG);
1928 I915_WRITE(PCH_PORT_HOTPLUG, dig_hotplug_reg);
1929
1930 intel_hpd_irq_handler(dev, hotplug_trigger, dig_hotplug_reg, hpd_ibx);
Daniel Vetter91d131d2013-06-27 17:52:14 +02001931
Ville Syrjäläcfc33bf2013-04-17 17:48:48 +03001932 if (pch_iir & SDE_AUDIO_POWER_MASK) {
1933 int port = ffs((pch_iir & SDE_AUDIO_POWER_MASK) >>
1934 SDE_AUDIO_POWER_SHIFT);
Jesse Barnes776ad802011-01-04 15:09:39 -08001935 DRM_DEBUG_DRIVER("PCH audio power change on port %d\n",
Ville Syrjäläcfc33bf2013-04-17 17:48:48 +03001936 port_name(port));
1937 }
Jesse Barnes776ad802011-01-04 15:09:39 -08001938
Daniel Vetterce99c252012-12-01 13:53:47 +01001939 if (pch_iir & SDE_AUX_MASK)
1940 dp_aux_irq_handler(dev);
1941
Jesse Barnes776ad802011-01-04 15:09:39 -08001942 if (pch_iir & SDE_GMBUS)
Daniel Vetter515ac2b2012-12-01 13:53:44 +01001943 gmbus_irq_handler(dev);
Jesse Barnes776ad802011-01-04 15:09:39 -08001944
1945 if (pch_iir & SDE_AUDIO_HDCP_MASK)
1946 DRM_DEBUG_DRIVER("PCH HDCP audio interrupt\n");
1947
1948 if (pch_iir & SDE_AUDIO_TRANS_MASK)
1949 DRM_DEBUG_DRIVER("PCH transcoder audio interrupt\n");
1950
1951 if (pch_iir & SDE_POISON)
1952 DRM_ERROR("PCH poison interrupt\n");
1953
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001954 if (pch_iir & SDE_FDI_MASK)
Damien Lespiau055e3932014-08-18 13:49:10 +01001955 for_each_pipe(dev_priv, pipe)
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001956 DRM_DEBUG_DRIVER(" pipe %c FDI IIR: 0x%08x\n",
1957 pipe_name(pipe),
1958 I915_READ(FDI_RX_IIR(pipe)));
Jesse Barnes776ad802011-01-04 15:09:39 -08001959
1960 if (pch_iir & (SDE_TRANSB_CRC_DONE | SDE_TRANSA_CRC_DONE))
1961 DRM_DEBUG_DRIVER("PCH transcoder CRC done interrupt\n");
1962
1963 if (pch_iir & (SDE_TRANSB_CRC_ERR | SDE_TRANSA_CRC_ERR))
1964 DRM_DEBUG_DRIVER("PCH transcoder CRC error interrupt\n");
1965
Jesse Barnes776ad802011-01-04 15:09:39 -08001966 if (pch_iir & SDE_TRANSA_FIFO_UNDER)
Daniel Vetter1f7247c2014-09-30 10:56:48 +02001967 intel_pch_fifo_underrun_irq_handler(dev_priv, TRANSCODER_A);
Paulo Zanoni86642812013-04-12 17:57:57 -03001968
1969 if (pch_iir & SDE_TRANSB_FIFO_UNDER)
Daniel Vetter1f7247c2014-09-30 10:56:48 +02001970 intel_pch_fifo_underrun_irq_handler(dev_priv, TRANSCODER_B);
Paulo Zanoni86642812013-04-12 17:57:57 -03001971}
1972
1973static void ivb_err_int_handler(struct drm_device *dev)
1974{
1975 struct drm_i915_private *dev_priv = dev->dev_private;
1976 u32 err_int = I915_READ(GEN7_ERR_INT);
Daniel Vetter5a69b892013-10-16 22:55:52 +02001977 enum pipe pipe;
Paulo Zanoni86642812013-04-12 17:57:57 -03001978
Paulo Zanonide032bf2013-04-12 17:57:58 -03001979 if (err_int & ERR_INT_POISON)
1980 DRM_ERROR("Poison interrupt\n");
1981
Damien Lespiau055e3932014-08-18 13:49:10 +01001982 for_each_pipe(dev_priv, pipe) {
Daniel Vetter1f7247c2014-09-30 10:56:48 +02001983 if (err_int & ERR_INT_FIFO_UNDERRUN(pipe))
1984 intel_cpu_fifo_underrun_irq_handler(dev_priv, pipe);
Paulo Zanoni86642812013-04-12 17:57:57 -03001985
Daniel Vetter5a69b892013-10-16 22:55:52 +02001986 if (err_int & ERR_INT_PIPE_CRC_DONE(pipe)) {
1987 if (IS_IVYBRIDGE(dev))
Daniel Vetter277de952013-10-18 16:37:07 +02001988 ivb_pipe_crc_irq_handler(dev, pipe);
Daniel Vetter5a69b892013-10-16 22:55:52 +02001989 else
Daniel Vetter277de952013-10-18 16:37:07 +02001990 hsw_pipe_crc_irq_handler(dev, pipe);
Daniel Vetter5a69b892013-10-16 22:55:52 +02001991 }
1992 }
Shuang He8bf1e9f2013-10-15 18:55:27 +01001993
Paulo Zanoni86642812013-04-12 17:57:57 -03001994 I915_WRITE(GEN7_ERR_INT, err_int);
1995}
1996
1997static void cpt_serr_int_handler(struct drm_device *dev)
1998{
1999 struct drm_i915_private *dev_priv = dev->dev_private;
2000 u32 serr_int = I915_READ(SERR_INT);
2001
Paulo Zanonide032bf2013-04-12 17:57:58 -03002002 if (serr_int & SERR_INT_POISON)
2003 DRM_ERROR("PCH poison interrupt\n");
2004
Paulo Zanoni86642812013-04-12 17:57:57 -03002005 if (serr_int & SERR_INT_TRANS_A_FIFO_UNDERRUN)
Daniel Vetter1f7247c2014-09-30 10:56:48 +02002006 intel_pch_fifo_underrun_irq_handler(dev_priv, TRANSCODER_A);
Paulo Zanoni86642812013-04-12 17:57:57 -03002007
2008 if (serr_int & SERR_INT_TRANS_B_FIFO_UNDERRUN)
Daniel Vetter1f7247c2014-09-30 10:56:48 +02002009 intel_pch_fifo_underrun_irq_handler(dev_priv, TRANSCODER_B);
Paulo Zanoni86642812013-04-12 17:57:57 -03002010
2011 if (serr_int & SERR_INT_TRANS_C_FIFO_UNDERRUN)
Daniel Vetter1f7247c2014-09-30 10:56:48 +02002012 intel_pch_fifo_underrun_irq_handler(dev_priv, TRANSCODER_C);
Paulo Zanoni86642812013-04-12 17:57:57 -03002013
2014 I915_WRITE(SERR_INT, serr_int);
Jesse Barnes776ad802011-01-04 15:09:39 -08002015}
2016
Adam Jackson23e81d62012-06-06 15:45:44 -04002017static void cpt_irq_handler(struct drm_device *dev, u32 pch_iir)
2018{
Jani Nikula2d1013d2014-03-31 14:27:17 +03002019 struct drm_i915_private *dev_priv = dev->dev_private;
Adam Jackson23e81d62012-06-06 15:45:44 -04002020 int pipe;
Egbert Eichb543fb02013-04-16 13:36:54 +02002021 u32 hotplug_trigger = pch_iir & SDE_HOTPLUG_MASK_CPT;
Dave Airlie13cf5502014-06-18 11:29:35 +10002022 u32 dig_hotplug_reg;
Adam Jackson23e81d62012-06-06 15:45:44 -04002023
Dave Airlie13cf5502014-06-18 11:29:35 +10002024 dig_hotplug_reg = I915_READ(PCH_PORT_HOTPLUG);
2025 I915_WRITE(PCH_PORT_HOTPLUG, dig_hotplug_reg);
2026
2027 intel_hpd_irq_handler(dev, hotplug_trigger, dig_hotplug_reg, hpd_cpt);
Daniel Vetter91d131d2013-06-27 17:52:14 +02002028
Ville Syrjäläcfc33bf2013-04-17 17:48:48 +03002029 if (pch_iir & SDE_AUDIO_POWER_MASK_CPT) {
2030 int port = ffs((pch_iir & SDE_AUDIO_POWER_MASK_CPT) >>
2031 SDE_AUDIO_POWER_SHIFT_CPT);
2032 DRM_DEBUG_DRIVER("PCH audio power change on port %c\n",
2033 port_name(port));
2034 }
Adam Jackson23e81d62012-06-06 15:45:44 -04002035
2036 if (pch_iir & SDE_AUX_MASK_CPT)
Daniel Vetterce99c252012-12-01 13:53:47 +01002037 dp_aux_irq_handler(dev);
Adam Jackson23e81d62012-06-06 15:45:44 -04002038
2039 if (pch_iir & SDE_GMBUS_CPT)
Daniel Vetter515ac2b2012-12-01 13:53:44 +01002040 gmbus_irq_handler(dev);
Adam Jackson23e81d62012-06-06 15:45:44 -04002041
2042 if (pch_iir & SDE_AUDIO_CP_REQ_CPT)
2043 DRM_DEBUG_DRIVER("Audio CP request interrupt\n");
2044
2045 if (pch_iir & SDE_AUDIO_CP_CHG_CPT)
2046 DRM_DEBUG_DRIVER("Audio CP change interrupt\n");
2047
2048 if (pch_iir & SDE_FDI_MASK_CPT)
Damien Lespiau055e3932014-08-18 13:49:10 +01002049 for_each_pipe(dev_priv, pipe)
Adam Jackson23e81d62012-06-06 15:45:44 -04002050 DRM_DEBUG_DRIVER(" pipe %c FDI IIR: 0x%08x\n",
2051 pipe_name(pipe),
2052 I915_READ(FDI_RX_IIR(pipe)));
Paulo Zanoni86642812013-04-12 17:57:57 -03002053
2054 if (pch_iir & SDE_ERROR_CPT)
2055 cpt_serr_int_handler(dev);
Adam Jackson23e81d62012-06-06 15:45:44 -04002056}
2057
Paulo Zanonic008bc62013-07-12 16:35:10 -03002058static void ilk_display_irq_handler(struct drm_device *dev, u32 de_iir)
2059{
2060 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter40da17c2013-10-21 18:04:36 +02002061 enum pipe pipe;
Paulo Zanonic008bc62013-07-12 16:35:10 -03002062
2063 if (de_iir & DE_AUX_CHANNEL_A)
2064 dp_aux_irq_handler(dev);
2065
2066 if (de_iir & DE_GSE)
2067 intel_opregion_asle_intr(dev);
2068
Paulo Zanonic008bc62013-07-12 16:35:10 -03002069 if (de_iir & DE_POISON)
2070 DRM_ERROR("Poison interrupt\n");
2071
Damien Lespiau055e3932014-08-18 13:49:10 +01002072 for_each_pipe(dev_priv, pipe) {
Chris Wilsond6bbafa2014-09-05 07:13:24 +01002073 if (de_iir & DE_PIPE_VBLANK(pipe) &&
2074 intel_pipe_handle_vblank(dev, pipe))
2075 intel_check_page_flip(dev, pipe);
Paulo Zanonic008bc62013-07-12 16:35:10 -03002076
Daniel Vetter40da17c2013-10-21 18:04:36 +02002077 if (de_iir & DE_PIPE_FIFO_UNDERRUN(pipe))
Daniel Vetter1f7247c2014-09-30 10:56:48 +02002078 intel_cpu_fifo_underrun_irq_handler(dev_priv, pipe);
Paulo Zanonic008bc62013-07-12 16:35:10 -03002079
Daniel Vetter40da17c2013-10-21 18:04:36 +02002080 if (de_iir & DE_PIPE_CRC_DONE(pipe))
2081 i9xx_pipe_crc_irq_handler(dev, pipe);
Daniel Vetter5b3a8562013-10-16 22:55:48 +02002082
Daniel Vetter40da17c2013-10-21 18:04:36 +02002083 /* plane/pipes map 1:1 on ilk+ */
2084 if (de_iir & DE_PLANE_FLIP_DONE(pipe)) {
2085 intel_prepare_page_flip(dev, pipe);
2086 intel_finish_page_flip_plane(dev, pipe);
2087 }
Paulo Zanonic008bc62013-07-12 16:35:10 -03002088 }
2089
2090 /* check event from PCH */
2091 if (de_iir & DE_PCH_EVENT) {
2092 u32 pch_iir = I915_READ(SDEIIR);
2093
2094 if (HAS_PCH_CPT(dev))
2095 cpt_irq_handler(dev, pch_iir);
2096 else
2097 ibx_irq_handler(dev, pch_iir);
2098
2099 /* should clear PCH hotplug event before clear CPU irq */
2100 I915_WRITE(SDEIIR, pch_iir);
2101 }
2102
2103 if (IS_GEN5(dev) && de_iir & DE_PCU_EVENT)
2104 ironlake_rps_change_irq_handler(dev);
2105}
2106
Paulo Zanoni9719fb92013-07-12 16:35:11 -03002107static void ivb_display_irq_handler(struct drm_device *dev, u32 de_iir)
2108{
2109 struct drm_i915_private *dev_priv = dev->dev_private;
Damien Lespiau07d27e22014-03-03 17:31:46 +00002110 enum pipe pipe;
Paulo Zanoni9719fb92013-07-12 16:35:11 -03002111
2112 if (de_iir & DE_ERR_INT_IVB)
2113 ivb_err_int_handler(dev);
2114
2115 if (de_iir & DE_AUX_CHANNEL_A_IVB)
2116 dp_aux_irq_handler(dev);
2117
2118 if (de_iir & DE_GSE_IVB)
2119 intel_opregion_asle_intr(dev);
2120
Damien Lespiau055e3932014-08-18 13:49:10 +01002121 for_each_pipe(dev_priv, pipe) {
Chris Wilsond6bbafa2014-09-05 07:13:24 +01002122 if (de_iir & (DE_PIPE_VBLANK_IVB(pipe)) &&
2123 intel_pipe_handle_vblank(dev, pipe))
2124 intel_check_page_flip(dev, pipe);
Daniel Vetter40da17c2013-10-21 18:04:36 +02002125
2126 /* plane/pipes map 1:1 on ilk+ */
Damien Lespiau07d27e22014-03-03 17:31:46 +00002127 if (de_iir & DE_PLANE_FLIP_DONE_IVB(pipe)) {
2128 intel_prepare_page_flip(dev, pipe);
2129 intel_finish_page_flip_plane(dev, pipe);
Paulo Zanoni9719fb92013-07-12 16:35:11 -03002130 }
2131 }
2132
2133 /* check event from PCH */
2134 if (!HAS_PCH_NOP(dev) && (de_iir & DE_PCH_EVENT_IVB)) {
2135 u32 pch_iir = I915_READ(SDEIIR);
2136
2137 cpt_irq_handler(dev, pch_iir);
2138
2139 /* clear PCH hotplug event before clear CPU irq */
2140 I915_WRITE(SDEIIR, pch_iir);
2141 }
2142}
2143
Oscar Mateo72c90f62014-06-16 16:10:57 +01002144/*
2145 * To handle irqs with the minimum potential races with fresh interrupts, we:
2146 * 1 - Disable Master Interrupt Control.
2147 * 2 - Find the source(s) of the interrupt.
2148 * 3 - Clear the Interrupt Identity bits (IIR).
2149 * 4 - Process the interrupt(s) that had bits set in the IIRs.
2150 * 5 - Re-enable Master Interrupt Control.
2151 */
Paulo Zanonif1af8fc2013-07-12 19:56:30 -03002152static irqreturn_t ironlake_irq_handler(int irq, void *arg)
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002153{
Daniel Vetter45a83f82014-05-12 19:17:55 +02002154 struct drm_device *dev = arg;
Jani Nikula2d1013d2014-03-31 14:27:17 +03002155 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanonif1af8fc2013-07-12 19:56:30 -03002156 u32 de_iir, gt_iir, de_ier, sde_ier = 0;
Chris Wilson0e434062012-05-09 21:45:44 +01002157 irqreturn_t ret = IRQ_NONE;
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002158
Paulo Zanoni86642812013-04-12 17:57:57 -03002159 /* We get interrupts on unclaimed registers, so check for this before we
2160 * do any I915_{READ,WRITE}. */
Chris Wilson907b28c2013-07-19 20:36:52 +01002161 intel_uncore_check_errors(dev);
Paulo Zanoni86642812013-04-12 17:57:57 -03002162
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002163 /* disable master interrupt before clearing iir */
2164 de_ier = I915_READ(DEIER);
2165 I915_WRITE(DEIER, de_ier & ~DE_MASTER_IRQ_CONTROL);
Paulo Zanoni23a78512013-07-12 16:35:14 -03002166 POSTING_READ(DEIER);
Chris Wilson0e434062012-05-09 21:45:44 +01002167
Paulo Zanoni44498ae2013-02-22 17:05:28 -03002168 /* Disable south interrupts. We'll only write to SDEIIR once, so further
2169 * interrupts will will be stored on its back queue, and then we'll be
2170 * able to process them after we restore SDEIER (as soon as we restore
2171 * it, we'll get an interrupt if SDEIIR still has something to process
2172 * due to its back queue). */
Ben Widawskyab5c6082013-04-05 13:12:41 -07002173 if (!HAS_PCH_NOP(dev)) {
2174 sde_ier = I915_READ(SDEIER);
2175 I915_WRITE(SDEIER, 0);
2176 POSTING_READ(SDEIER);
2177 }
Paulo Zanoni44498ae2013-02-22 17:05:28 -03002178
Oscar Mateo72c90f62014-06-16 16:10:57 +01002179 /* Find, clear, then process each source of interrupt */
2180
Chris Wilson0e434062012-05-09 21:45:44 +01002181 gt_iir = I915_READ(GTIIR);
2182 if (gt_iir) {
Oscar Mateo72c90f62014-06-16 16:10:57 +01002183 I915_WRITE(GTIIR, gt_iir);
2184 ret = IRQ_HANDLED;
Paulo Zanonid8fc8a42013-07-19 18:57:55 -03002185 if (INTEL_INFO(dev)->gen >= 6)
Paulo Zanonif1af8fc2013-07-12 19:56:30 -03002186 snb_gt_irq_handler(dev, dev_priv, gt_iir);
Paulo Zanonid8fc8a42013-07-19 18:57:55 -03002187 else
2188 ilk_gt_irq_handler(dev, dev_priv, gt_iir);
Chris Wilson0e434062012-05-09 21:45:44 +01002189 }
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002190
2191 de_iir = I915_READ(DEIIR);
Chris Wilson0e434062012-05-09 21:45:44 +01002192 if (de_iir) {
Oscar Mateo72c90f62014-06-16 16:10:57 +01002193 I915_WRITE(DEIIR, de_iir);
2194 ret = IRQ_HANDLED;
Paulo Zanonif1af8fc2013-07-12 19:56:30 -03002195 if (INTEL_INFO(dev)->gen >= 7)
2196 ivb_display_irq_handler(dev, de_iir);
2197 else
2198 ilk_display_irq_handler(dev, de_iir);
Chris Wilson0e434062012-05-09 21:45:44 +01002199 }
2200
Paulo Zanonif1af8fc2013-07-12 19:56:30 -03002201 if (INTEL_INFO(dev)->gen >= 6) {
2202 u32 pm_iir = I915_READ(GEN6_PMIIR);
2203 if (pm_iir) {
Paulo Zanonif1af8fc2013-07-12 19:56:30 -03002204 I915_WRITE(GEN6_PMIIR, pm_iir);
2205 ret = IRQ_HANDLED;
Oscar Mateo72c90f62014-06-16 16:10:57 +01002206 gen6_rps_irq_handler(dev_priv, pm_iir);
Paulo Zanonif1af8fc2013-07-12 19:56:30 -03002207 }
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002208 }
2209
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002210 I915_WRITE(DEIER, de_ier);
2211 POSTING_READ(DEIER);
Ben Widawskyab5c6082013-04-05 13:12:41 -07002212 if (!HAS_PCH_NOP(dev)) {
2213 I915_WRITE(SDEIER, sde_ier);
2214 POSTING_READ(SDEIER);
2215 }
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002216
2217 return ret;
2218}
2219
Ben Widawskyabd58f02013-11-02 21:07:09 -07002220static irqreturn_t gen8_irq_handler(int irq, void *arg)
2221{
2222 struct drm_device *dev = arg;
2223 struct drm_i915_private *dev_priv = dev->dev_private;
2224 u32 master_ctl;
2225 irqreturn_t ret = IRQ_NONE;
2226 uint32_t tmp = 0;
Daniel Vetterc42664c2013-11-07 11:05:40 +01002227 enum pipe pipe;
Ben Widawskyabd58f02013-11-02 21:07:09 -07002228
Ben Widawskyabd58f02013-11-02 21:07:09 -07002229 master_ctl = I915_READ(GEN8_MASTER_IRQ);
2230 master_ctl &= ~GEN8_MASTER_IRQ_CONTROL;
2231 if (!master_ctl)
2232 return IRQ_NONE;
2233
2234 I915_WRITE(GEN8_MASTER_IRQ, 0);
2235 POSTING_READ(GEN8_MASTER_IRQ);
2236
Oscar Mateo38cc46d2014-06-16 16:10:59 +01002237 /* Find, clear, then process each source of interrupt */
2238
Ben Widawskyabd58f02013-11-02 21:07:09 -07002239 ret = gen8_gt_irq_handler(dev, dev_priv, master_ctl);
2240
2241 if (master_ctl & GEN8_DE_MISC_IRQ) {
2242 tmp = I915_READ(GEN8_DE_MISC_IIR);
Ben Widawskyabd58f02013-11-02 21:07:09 -07002243 if (tmp) {
2244 I915_WRITE(GEN8_DE_MISC_IIR, tmp);
2245 ret = IRQ_HANDLED;
Oscar Mateo38cc46d2014-06-16 16:10:59 +01002246 if (tmp & GEN8_DE_MISC_GSE)
2247 intel_opregion_asle_intr(dev);
2248 else
2249 DRM_ERROR("Unexpected DE Misc interrupt\n");
Ben Widawskyabd58f02013-11-02 21:07:09 -07002250 }
Oscar Mateo38cc46d2014-06-16 16:10:59 +01002251 else
2252 DRM_ERROR("The master control interrupt lied (DE MISC)!\n");
Ben Widawskyabd58f02013-11-02 21:07:09 -07002253 }
2254
Daniel Vetter6d766f02013-11-07 14:49:55 +01002255 if (master_ctl & GEN8_DE_PORT_IRQ) {
2256 tmp = I915_READ(GEN8_DE_PORT_IIR);
Daniel Vetter6d766f02013-11-07 14:49:55 +01002257 if (tmp) {
2258 I915_WRITE(GEN8_DE_PORT_IIR, tmp);
2259 ret = IRQ_HANDLED;
Oscar Mateo38cc46d2014-06-16 16:10:59 +01002260 if (tmp & GEN8_AUX_CHANNEL_A)
2261 dp_aux_irq_handler(dev);
2262 else
2263 DRM_ERROR("Unexpected DE Port interrupt\n");
Daniel Vetter6d766f02013-11-07 14:49:55 +01002264 }
Oscar Mateo38cc46d2014-06-16 16:10:59 +01002265 else
2266 DRM_ERROR("The master control interrupt lied (DE PORT)!\n");
Daniel Vetter6d766f02013-11-07 14:49:55 +01002267 }
2268
Damien Lespiau055e3932014-08-18 13:49:10 +01002269 for_each_pipe(dev_priv, pipe) {
Damien Lespiau770de832014-03-20 20:45:01 +00002270 uint32_t pipe_iir, flip_done = 0, fault_errors = 0;
Ben Widawskyabd58f02013-11-02 21:07:09 -07002271
Daniel Vetterc42664c2013-11-07 11:05:40 +01002272 if (!(master_ctl & GEN8_DE_PIPE_IRQ(pipe)))
2273 continue;
Ben Widawskyabd58f02013-11-02 21:07:09 -07002274
Daniel Vetterc42664c2013-11-07 11:05:40 +01002275 pipe_iir = I915_READ(GEN8_DE_PIPE_IIR(pipe));
Daniel Vetterc42664c2013-11-07 11:05:40 +01002276 if (pipe_iir) {
2277 ret = IRQ_HANDLED;
2278 I915_WRITE(GEN8_DE_PIPE_IIR(pipe), pipe_iir);
Damien Lespiau770de832014-03-20 20:45:01 +00002279
Chris Wilsond6bbafa2014-09-05 07:13:24 +01002280 if (pipe_iir & GEN8_PIPE_VBLANK &&
2281 intel_pipe_handle_vblank(dev, pipe))
2282 intel_check_page_flip(dev, pipe);
Oscar Mateo38cc46d2014-06-16 16:10:59 +01002283
Damien Lespiau770de832014-03-20 20:45:01 +00002284 if (IS_GEN9(dev))
2285 flip_done = pipe_iir & GEN9_PIPE_PLANE1_FLIP_DONE;
2286 else
2287 flip_done = pipe_iir & GEN8_PIPE_PRIMARY_FLIP_DONE;
2288
2289 if (flip_done) {
Oscar Mateo38cc46d2014-06-16 16:10:59 +01002290 intel_prepare_page_flip(dev, pipe);
2291 intel_finish_page_flip_plane(dev, pipe);
2292 }
2293
2294 if (pipe_iir & GEN8_PIPE_CDCLK_CRC_DONE)
2295 hsw_pipe_crc_irq_handler(dev, pipe);
2296
Daniel Vetter1f7247c2014-09-30 10:56:48 +02002297 if (pipe_iir & GEN8_PIPE_FIFO_UNDERRUN)
2298 intel_cpu_fifo_underrun_irq_handler(dev_priv,
2299 pipe);
Oscar Mateo38cc46d2014-06-16 16:10:59 +01002300
Damien Lespiau770de832014-03-20 20:45:01 +00002301
2302 if (IS_GEN9(dev))
2303 fault_errors = pipe_iir & GEN9_DE_PIPE_IRQ_FAULT_ERRORS;
2304 else
2305 fault_errors = pipe_iir & GEN8_DE_PIPE_IRQ_FAULT_ERRORS;
2306
2307 if (fault_errors)
Oscar Mateo38cc46d2014-06-16 16:10:59 +01002308 DRM_ERROR("Fault errors on pipe %c\n: 0x%08x",
2309 pipe_name(pipe),
2310 pipe_iir & GEN8_DE_PIPE_IRQ_FAULT_ERRORS);
Daniel Vetterc42664c2013-11-07 11:05:40 +01002311 } else
Ben Widawskyabd58f02013-11-02 21:07:09 -07002312 DRM_ERROR("The master control interrupt lied (DE PIPE)!\n");
2313 }
2314
Daniel Vetter92d03a82013-11-07 11:05:43 +01002315 if (!HAS_PCH_NOP(dev) && master_ctl & GEN8_DE_PCH_IRQ) {
2316 /*
2317 * FIXME(BDW): Assume for now that the new interrupt handling
2318 * scheme also closed the SDE interrupt handling race we've seen
2319 * on older pch-split platforms. But this needs testing.
2320 */
2321 u32 pch_iir = I915_READ(SDEIIR);
Daniel Vetter92d03a82013-11-07 11:05:43 +01002322 if (pch_iir) {
2323 I915_WRITE(SDEIIR, pch_iir);
2324 ret = IRQ_HANDLED;
Oscar Mateo38cc46d2014-06-16 16:10:59 +01002325 cpt_irq_handler(dev, pch_iir);
2326 } else
2327 DRM_ERROR("The master control interrupt lied (SDE)!\n");
2328
Daniel Vetter92d03a82013-11-07 11:05:43 +01002329 }
2330
Ben Widawskyabd58f02013-11-02 21:07:09 -07002331 I915_WRITE(GEN8_MASTER_IRQ, GEN8_MASTER_IRQ_CONTROL);
2332 POSTING_READ(GEN8_MASTER_IRQ);
2333
2334 return ret;
2335}
2336
Daniel Vetter17e1df02013-09-08 21:57:13 +02002337static void i915_error_wake_up(struct drm_i915_private *dev_priv,
2338 bool reset_completed)
2339{
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002340 struct intel_engine_cs *ring;
Daniel Vetter17e1df02013-09-08 21:57:13 +02002341 int i;
2342
2343 /*
2344 * Notify all waiters for GPU completion events that reset state has
2345 * been changed, and that they need to restart their wait after
2346 * checking for potential errors (and bail out to drop locks if there is
2347 * a gpu reset pending so that i915_error_work_func can acquire them).
2348 */
2349
2350 /* Wake up __wait_seqno, potentially holding dev->struct_mutex. */
2351 for_each_ring(ring, dev_priv, i)
2352 wake_up_all(&ring->irq_queue);
2353
2354 /* Wake up intel_crtc_wait_for_pending_flips, holding crtc->mutex. */
2355 wake_up_all(&dev_priv->pending_flip_queue);
2356
2357 /*
2358 * Signal tasks blocked in i915_gem_wait_for_error that the pending
2359 * reset state is cleared.
2360 */
2361 if (reset_completed)
2362 wake_up_all(&dev_priv->gpu_error.reset_queue);
2363}
2364
Jesse Barnes8a905232009-07-11 16:48:03 -04002365/**
2366 * i915_error_work_func - do process context error handling work
2367 * @work: work struct
2368 *
2369 * Fire an error uevent so userspace can see that a hang or error
2370 * was detected.
2371 */
2372static void i915_error_work_func(struct work_struct *work)
2373{
Daniel Vetter1f83fee2012-11-15 17:17:22 +01002374 struct i915_gpu_error *error = container_of(work, struct i915_gpu_error,
2375 work);
Jani Nikula2d1013d2014-03-31 14:27:17 +03002376 struct drm_i915_private *dev_priv =
2377 container_of(error, struct drm_i915_private, gpu_error);
Jesse Barnes8a905232009-07-11 16:48:03 -04002378 struct drm_device *dev = dev_priv->dev;
Ben Widawskycce723e2013-07-19 09:16:42 -07002379 char *error_event[] = { I915_ERROR_UEVENT "=1", NULL };
2380 char *reset_event[] = { I915_RESET_UEVENT "=1", NULL };
2381 char *reset_done_event[] = { I915_ERROR_UEVENT "=0", NULL };
Daniel Vetter17e1df02013-09-08 21:57:13 +02002382 int ret;
Jesse Barnes8a905232009-07-11 16:48:03 -04002383
Dave Airlie5bdebb12013-10-11 14:07:25 +10002384 kobject_uevent_env(&dev->primary->kdev->kobj, KOBJ_CHANGE, error_event);
Jesse Barnes8a905232009-07-11 16:48:03 -04002385
Daniel Vetter7db0ba22012-12-06 16:23:37 +01002386 /*
2387 * Note that there's only one work item which does gpu resets, so we
2388 * need not worry about concurrent gpu resets potentially incrementing
2389 * error->reset_counter twice. We only need to take care of another
2390 * racing irq/hangcheck declaring the gpu dead for a second time. A
2391 * quick check for that is good enough: schedule_work ensures the
2392 * correct ordering between hang detection and this work item, and since
2393 * the reset in-progress bit is only ever set by code outside of this
2394 * work we don't need to worry about any other races.
2395 */
2396 if (i915_reset_in_progress(error) && !i915_terminally_wedged(error)) {
Chris Wilsonf803aa52010-09-19 12:38:26 +01002397 DRM_DEBUG_DRIVER("resetting chip\n");
Dave Airlie5bdebb12013-10-11 14:07:25 +10002398 kobject_uevent_env(&dev->primary->kdev->kobj, KOBJ_CHANGE,
Daniel Vetter7db0ba22012-12-06 16:23:37 +01002399 reset_event);
Daniel Vetter1f83fee2012-11-15 17:17:22 +01002400
Daniel Vetter17e1df02013-09-08 21:57:13 +02002401 /*
Imre Deakf454c692014-04-23 01:09:04 +03002402 * In most cases it's guaranteed that we get here with an RPM
2403 * reference held, for example because there is a pending GPU
2404 * request that won't finish until the reset is done. This
2405 * isn't the case at least when we get here by doing a
2406 * simulated reset via debugs, so get an RPM reference.
2407 */
2408 intel_runtime_pm_get(dev_priv);
2409 /*
Daniel Vetter17e1df02013-09-08 21:57:13 +02002410 * All state reset _must_ be completed before we update the
2411 * reset counter, for otherwise waiters might miss the reset
2412 * pending state and not properly drop locks, resulting in
2413 * deadlocks with the reset work.
2414 */
Daniel Vetterf69061b2012-12-06 09:01:42 +01002415 ret = i915_reset(dev);
2416
Daniel Vetter17e1df02013-09-08 21:57:13 +02002417 intel_display_handle_reset(dev);
2418
Imre Deakf454c692014-04-23 01:09:04 +03002419 intel_runtime_pm_put(dev_priv);
2420
Daniel Vetterf69061b2012-12-06 09:01:42 +01002421 if (ret == 0) {
2422 /*
2423 * After all the gem state is reset, increment the reset
2424 * counter and wake up everyone waiting for the reset to
2425 * complete.
2426 *
2427 * Since unlock operations are a one-sided barrier only,
2428 * we need to insert a barrier here to order any seqno
2429 * updates before
2430 * the counter increment.
2431 */
Peter Zijlstra4e857c52014-03-17 18:06:10 +01002432 smp_mb__before_atomic();
Daniel Vetterf69061b2012-12-06 09:01:42 +01002433 atomic_inc(&dev_priv->gpu_error.reset_counter);
2434
Dave Airlie5bdebb12013-10-11 14:07:25 +10002435 kobject_uevent_env(&dev->primary->kdev->kobj,
Daniel Vetterf69061b2012-12-06 09:01:42 +01002436 KOBJ_CHANGE, reset_done_event);
Daniel Vetter1f83fee2012-11-15 17:17:22 +01002437 } else {
Mika Kuoppala2ac0f452013-11-12 14:44:19 +02002438 atomic_set_mask(I915_WEDGED, &error->reset_counter);
Ben Gamarif316a422009-09-14 17:48:46 -04002439 }
Daniel Vetter1f83fee2012-11-15 17:17:22 +01002440
Daniel Vetter17e1df02013-09-08 21:57:13 +02002441 /*
2442 * Note: The wake_up also serves as a memory barrier so that
2443 * waiters see the update value of the reset counter atomic_t.
2444 */
2445 i915_error_wake_up(dev_priv, true);
Ben Gamarif316a422009-09-14 17:48:46 -04002446 }
Jesse Barnes8a905232009-07-11 16:48:03 -04002447}
2448
Chris Wilson35aed2e2010-05-27 13:18:12 +01002449static void i915_report_and_clear_eir(struct drm_device *dev)
Jesse Barnes8a905232009-07-11 16:48:03 -04002450{
2451 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawskybd9854f2012-08-23 15:18:09 -07002452 uint32_t instdone[I915_NUM_INSTDONE_REG];
Jesse Barnes8a905232009-07-11 16:48:03 -04002453 u32 eir = I915_READ(EIR);
Ben Widawsky050ee912012-08-22 11:32:15 -07002454 int pipe, i;
Jesse Barnes8a905232009-07-11 16:48:03 -04002455
Chris Wilson35aed2e2010-05-27 13:18:12 +01002456 if (!eir)
2457 return;
Jesse Barnes8a905232009-07-11 16:48:03 -04002458
Joe Perchesa70491c2012-03-18 13:00:11 -07002459 pr_err("render error detected, EIR: 0x%08x\n", eir);
Jesse Barnes8a905232009-07-11 16:48:03 -04002460
Ben Widawskybd9854f2012-08-23 15:18:09 -07002461 i915_get_extra_instdone(dev, instdone);
2462
Jesse Barnes8a905232009-07-11 16:48:03 -04002463 if (IS_G4X(dev)) {
2464 if (eir & (GM45_ERROR_MEM_PRIV | GM45_ERROR_CP_PRIV)) {
2465 u32 ipeir = I915_READ(IPEIR_I965);
2466
Joe Perchesa70491c2012-03-18 13:00:11 -07002467 pr_err(" IPEIR: 0x%08x\n", I915_READ(IPEIR_I965));
2468 pr_err(" IPEHR: 0x%08x\n", I915_READ(IPEHR_I965));
Ben Widawsky050ee912012-08-22 11:32:15 -07002469 for (i = 0; i < ARRAY_SIZE(instdone); i++)
2470 pr_err(" INSTDONE_%d: 0x%08x\n", i, instdone[i]);
Joe Perchesa70491c2012-03-18 13:00:11 -07002471 pr_err(" INSTPS: 0x%08x\n", I915_READ(INSTPS));
Joe Perchesa70491c2012-03-18 13:00:11 -07002472 pr_err(" ACTHD: 0x%08x\n", I915_READ(ACTHD_I965));
Jesse Barnes8a905232009-07-11 16:48:03 -04002473 I915_WRITE(IPEIR_I965, ipeir);
Chris Wilson3143a2b2010-11-16 15:55:10 +00002474 POSTING_READ(IPEIR_I965);
Jesse Barnes8a905232009-07-11 16:48:03 -04002475 }
2476 if (eir & GM45_ERROR_PAGE_TABLE) {
2477 u32 pgtbl_err = I915_READ(PGTBL_ER);
Joe Perchesa70491c2012-03-18 13:00:11 -07002478 pr_err("page table error\n");
2479 pr_err(" PGTBL_ER: 0x%08x\n", pgtbl_err);
Jesse Barnes8a905232009-07-11 16:48:03 -04002480 I915_WRITE(PGTBL_ER, pgtbl_err);
Chris Wilson3143a2b2010-11-16 15:55:10 +00002481 POSTING_READ(PGTBL_ER);
Jesse Barnes8a905232009-07-11 16:48:03 -04002482 }
2483 }
2484
Chris Wilsona6c45cf2010-09-17 00:32:17 +01002485 if (!IS_GEN2(dev)) {
Jesse Barnes8a905232009-07-11 16:48:03 -04002486 if (eir & I915_ERROR_PAGE_TABLE) {
2487 u32 pgtbl_err = I915_READ(PGTBL_ER);
Joe Perchesa70491c2012-03-18 13:00:11 -07002488 pr_err("page table error\n");
2489 pr_err(" PGTBL_ER: 0x%08x\n", pgtbl_err);
Jesse Barnes8a905232009-07-11 16:48:03 -04002490 I915_WRITE(PGTBL_ER, pgtbl_err);
Chris Wilson3143a2b2010-11-16 15:55:10 +00002491 POSTING_READ(PGTBL_ER);
Jesse Barnes8a905232009-07-11 16:48:03 -04002492 }
2493 }
2494
2495 if (eir & I915_ERROR_MEMORY_REFRESH) {
Joe Perchesa70491c2012-03-18 13:00:11 -07002496 pr_err("memory refresh error:\n");
Damien Lespiau055e3932014-08-18 13:49:10 +01002497 for_each_pipe(dev_priv, pipe)
Joe Perchesa70491c2012-03-18 13:00:11 -07002498 pr_err("pipe %c stat: 0x%08x\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08002499 pipe_name(pipe), I915_READ(PIPESTAT(pipe)));
Jesse Barnes8a905232009-07-11 16:48:03 -04002500 /* pipestat has already been acked */
2501 }
2502 if (eir & I915_ERROR_INSTRUCTION) {
Joe Perchesa70491c2012-03-18 13:00:11 -07002503 pr_err("instruction error\n");
2504 pr_err(" INSTPM: 0x%08x\n", I915_READ(INSTPM));
Ben Widawsky050ee912012-08-22 11:32:15 -07002505 for (i = 0; i < ARRAY_SIZE(instdone); i++)
2506 pr_err(" INSTDONE_%d: 0x%08x\n", i, instdone[i]);
Chris Wilsona6c45cf2010-09-17 00:32:17 +01002507 if (INTEL_INFO(dev)->gen < 4) {
Jesse Barnes8a905232009-07-11 16:48:03 -04002508 u32 ipeir = I915_READ(IPEIR);
2509
Joe Perchesa70491c2012-03-18 13:00:11 -07002510 pr_err(" IPEIR: 0x%08x\n", I915_READ(IPEIR));
2511 pr_err(" IPEHR: 0x%08x\n", I915_READ(IPEHR));
Joe Perchesa70491c2012-03-18 13:00:11 -07002512 pr_err(" ACTHD: 0x%08x\n", I915_READ(ACTHD));
Jesse Barnes8a905232009-07-11 16:48:03 -04002513 I915_WRITE(IPEIR, ipeir);
Chris Wilson3143a2b2010-11-16 15:55:10 +00002514 POSTING_READ(IPEIR);
Jesse Barnes8a905232009-07-11 16:48:03 -04002515 } else {
2516 u32 ipeir = I915_READ(IPEIR_I965);
2517
Joe Perchesa70491c2012-03-18 13:00:11 -07002518 pr_err(" IPEIR: 0x%08x\n", I915_READ(IPEIR_I965));
2519 pr_err(" IPEHR: 0x%08x\n", I915_READ(IPEHR_I965));
Joe Perchesa70491c2012-03-18 13:00:11 -07002520 pr_err(" INSTPS: 0x%08x\n", I915_READ(INSTPS));
Joe Perchesa70491c2012-03-18 13:00:11 -07002521 pr_err(" ACTHD: 0x%08x\n", I915_READ(ACTHD_I965));
Jesse Barnes8a905232009-07-11 16:48:03 -04002522 I915_WRITE(IPEIR_I965, ipeir);
Chris Wilson3143a2b2010-11-16 15:55:10 +00002523 POSTING_READ(IPEIR_I965);
Jesse Barnes8a905232009-07-11 16:48:03 -04002524 }
2525 }
2526
2527 I915_WRITE(EIR, eir);
Chris Wilson3143a2b2010-11-16 15:55:10 +00002528 POSTING_READ(EIR);
Jesse Barnes8a905232009-07-11 16:48:03 -04002529 eir = I915_READ(EIR);
2530 if (eir) {
2531 /*
2532 * some errors might have become stuck,
2533 * mask them.
2534 */
2535 DRM_ERROR("EIR stuck: 0x%08x, masking\n", eir);
2536 I915_WRITE(EMR, I915_READ(EMR) | eir);
2537 I915_WRITE(IIR, I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT);
2538 }
Chris Wilson35aed2e2010-05-27 13:18:12 +01002539}
2540
2541/**
2542 * i915_handle_error - handle an error interrupt
2543 * @dev: drm device
2544 *
2545 * Do some basic checking of regsiter state at error interrupt time and
2546 * dump it to the syslog. Also call i915_capture_error_state() to make
2547 * sure we get a record and make it available in debugfs. Fire a uevent
2548 * so userspace knows something bad happened (should trigger collection
2549 * of a ring dump etc.).
2550 */
Mika Kuoppala58174462014-02-25 17:11:26 +02002551void i915_handle_error(struct drm_device *dev, bool wedged,
2552 const char *fmt, ...)
Chris Wilson35aed2e2010-05-27 13:18:12 +01002553{
2554 struct drm_i915_private *dev_priv = dev->dev_private;
Mika Kuoppala58174462014-02-25 17:11:26 +02002555 va_list args;
2556 char error_msg[80];
Chris Wilson35aed2e2010-05-27 13:18:12 +01002557
Mika Kuoppala58174462014-02-25 17:11:26 +02002558 va_start(args, fmt);
2559 vscnprintf(error_msg, sizeof(error_msg), fmt, args);
2560 va_end(args);
2561
2562 i915_capture_error_state(dev, wedged, error_msg);
Chris Wilson35aed2e2010-05-27 13:18:12 +01002563 i915_report_and_clear_eir(dev);
Jesse Barnes8a905232009-07-11 16:48:03 -04002564
Ben Gamariba1234d2009-09-14 17:48:47 -04002565 if (wedged) {
Daniel Vetterf69061b2012-12-06 09:01:42 +01002566 atomic_set_mask(I915_RESET_IN_PROGRESS_FLAG,
2567 &dev_priv->gpu_error.reset_counter);
Ben Gamariba1234d2009-09-14 17:48:47 -04002568
Ben Gamari11ed50e2009-09-14 17:48:45 -04002569 /*
Daniel Vetter17e1df02013-09-08 21:57:13 +02002570 * Wakeup waiting processes so that the reset work function
2571 * i915_error_work_func doesn't deadlock trying to grab various
2572 * locks. By bumping the reset counter first, the woken
2573 * processes will see a reset in progress and back off,
2574 * releasing their locks and then wait for the reset completion.
2575 * We must do this for _all_ gpu waiters that might hold locks
2576 * that the reset work needs to acquire.
2577 *
2578 * Note: The wake_up serves as the required memory barrier to
2579 * ensure that the waiters see the updated value of the reset
2580 * counter atomic_t.
Ben Gamari11ed50e2009-09-14 17:48:45 -04002581 */
Daniel Vetter17e1df02013-09-08 21:57:13 +02002582 i915_error_wake_up(dev_priv, false);
Ben Gamari11ed50e2009-09-14 17:48:45 -04002583 }
2584
Daniel Vetter122f46b2013-09-04 17:36:14 +02002585 /*
2586 * Our reset work can grab modeset locks (since it needs to reset the
2587 * state of outstanding pagelips). Hence it must not be run on our own
2588 * dev-priv->wq work queue for otherwise the flush_work in the pageflip
2589 * code will deadlock.
2590 */
2591 schedule_work(&dev_priv->gpu_error.work);
Jesse Barnes8a905232009-07-11 16:48:03 -04002592}
2593
Keith Packard42f52ef2008-10-18 19:39:29 -07002594/* Called from drm generic code, passed 'crtc' which
2595 * we use as a pipe index
2596 */
Jesse Barnesf71d4af2011-06-28 13:00:41 -07002597static int i915_enable_vblank(struct drm_device *dev, int pipe)
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07002598{
Jani Nikula2d1013d2014-03-31 14:27:17 +03002599 struct drm_i915_private *dev_priv = dev->dev_private;
Keith Packarde9d21d72008-10-16 11:31:38 -07002600 unsigned long irqflags;
Jesse Barnes71e0ffa2009-01-08 10:42:15 -08002601
Chris Wilson5eddb702010-09-11 13:48:45 +01002602 if (!i915_pipe_enabled(dev, pipe))
Jesse Barnes71e0ffa2009-01-08 10:42:15 -08002603 return -EINVAL;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07002604
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002605 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Jesse Barnesf796cf82011-04-07 13:58:17 -07002606 if (INTEL_INFO(dev)->gen >= 4)
Keith Packard7c463582008-11-04 02:03:27 -08002607 i915_enable_pipestat(dev_priv, pipe,
Imre Deak755e9012014-02-10 18:42:47 +02002608 PIPE_START_VBLANK_INTERRUPT_STATUS);
Keith Packarde9d21d72008-10-16 11:31:38 -07002609 else
Keith Packard7c463582008-11-04 02:03:27 -08002610 i915_enable_pipestat(dev_priv, pipe,
Imre Deak755e9012014-02-10 18:42:47 +02002611 PIPE_VBLANK_INTERRUPT_STATUS);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002612 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
Chris Wilson8692d00e2011-02-05 10:08:21 +00002613
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07002614 return 0;
2615}
2616
Jesse Barnesf71d4af2011-06-28 13:00:41 -07002617static int ironlake_enable_vblank(struct drm_device *dev, int pipe)
Jesse Barnesf796cf82011-04-07 13:58:17 -07002618{
Jani Nikula2d1013d2014-03-31 14:27:17 +03002619 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesf796cf82011-04-07 13:58:17 -07002620 unsigned long irqflags;
Paulo Zanonib5184212013-07-12 20:00:08 -03002621 uint32_t bit = (INTEL_INFO(dev)->gen >= 7) ? DE_PIPE_VBLANK_IVB(pipe) :
Daniel Vetter40da17c2013-10-21 18:04:36 +02002622 DE_PIPE_VBLANK(pipe);
Jesse Barnesf796cf82011-04-07 13:58:17 -07002623
2624 if (!i915_pipe_enabled(dev, pipe))
2625 return -EINVAL;
2626
2627 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Paulo Zanonib5184212013-07-12 20:00:08 -03002628 ironlake_enable_display_irq(dev_priv, bit);
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002629 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2630
2631 return 0;
2632}
2633
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002634static int valleyview_enable_vblank(struct drm_device *dev, int pipe)
2635{
Jani Nikula2d1013d2014-03-31 14:27:17 +03002636 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002637 unsigned long irqflags;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002638
2639 if (!i915_pipe_enabled(dev, pipe))
2640 return -EINVAL;
2641
2642 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Jesse Barnes31acc7f2012-06-20 10:53:11 -07002643 i915_enable_pipestat(dev_priv, pipe,
Imre Deak755e9012014-02-10 18:42:47 +02002644 PIPE_START_VBLANK_INTERRUPT_STATUS);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002645 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2646
2647 return 0;
2648}
2649
Ben Widawskyabd58f02013-11-02 21:07:09 -07002650static int gen8_enable_vblank(struct drm_device *dev, int pipe)
2651{
2652 struct drm_i915_private *dev_priv = dev->dev_private;
2653 unsigned long irqflags;
Ben Widawskyabd58f02013-11-02 21:07:09 -07002654
2655 if (!i915_pipe_enabled(dev, pipe))
2656 return -EINVAL;
2657
2658 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Daniel Vetter7167d7c2013-11-07 11:05:45 +01002659 dev_priv->de_irq_mask[pipe] &= ~GEN8_PIPE_VBLANK;
2660 I915_WRITE(GEN8_DE_PIPE_IMR(pipe), dev_priv->de_irq_mask[pipe]);
2661 POSTING_READ(GEN8_DE_PIPE_IMR(pipe));
Ben Widawskyabd58f02013-11-02 21:07:09 -07002662 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2663 return 0;
2664}
2665
Keith Packard42f52ef2008-10-18 19:39:29 -07002666/* Called from drm generic code, passed 'crtc' which
2667 * we use as a pipe index
2668 */
Jesse Barnesf71d4af2011-06-28 13:00:41 -07002669static void i915_disable_vblank(struct drm_device *dev, int pipe)
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07002670{
Jani Nikula2d1013d2014-03-31 14:27:17 +03002671 struct drm_i915_private *dev_priv = dev->dev_private;
Keith Packarde9d21d72008-10-16 11:31:38 -07002672 unsigned long irqflags;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07002673
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002674 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Jesse Barnesf796cf82011-04-07 13:58:17 -07002675 i915_disable_pipestat(dev_priv, pipe,
Imre Deak755e9012014-02-10 18:42:47 +02002676 PIPE_VBLANK_INTERRUPT_STATUS |
2677 PIPE_START_VBLANK_INTERRUPT_STATUS);
Jesse Barnesf796cf82011-04-07 13:58:17 -07002678 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2679}
2680
Jesse Barnesf71d4af2011-06-28 13:00:41 -07002681static void ironlake_disable_vblank(struct drm_device *dev, int pipe)
Jesse Barnesf796cf82011-04-07 13:58:17 -07002682{
Jani Nikula2d1013d2014-03-31 14:27:17 +03002683 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesf796cf82011-04-07 13:58:17 -07002684 unsigned long irqflags;
Paulo Zanonib5184212013-07-12 20:00:08 -03002685 uint32_t bit = (INTEL_INFO(dev)->gen >= 7) ? DE_PIPE_VBLANK_IVB(pipe) :
Daniel Vetter40da17c2013-10-21 18:04:36 +02002686 DE_PIPE_VBLANK(pipe);
Jesse Barnesf796cf82011-04-07 13:58:17 -07002687
2688 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Paulo Zanonib5184212013-07-12 20:00:08 -03002689 ironlake_disable_display_irq(dev_priv, bit);
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002690 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2691}
2692
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002693static void valleyview_disable_vblank(struct drm_device *dev, int pipe)
2694{
Jani Nikula2d1013d2014-03-31 14:27:17 +03002695 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002696 unsigned long irqflags;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002697
2698 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Jesse Barnes31acc7f2012-06-20 10:53:11 -07002699 i915_disable_pipestat(dev_priv, pipe,
Imre Deak755e9012014-02-10 18:42:47 +02002700 PIPE_START_VBLANK_INTERRUPT_STATUS);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002701 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2702}
2703
Ben Widawskyabd58f02013-11-02 21:07:09 -07002704static void gen8_disable_vblank(struct drm_device *dev, int pipe)
2705{
2706 struct drm_i915_private *dev_priv = dev->dev_private;
2707 unsigned long irqflags;
Ben Widawskyabd58f02013-11-02 21:07:09 -07002708
2709 if (!i915_pipe_enabled(dev, pipe))
2710 return;
2711
2712 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Daniel Vetter7167d7c2013-11-07 11:05:45 +01002713 dev_priv->de_irq_mask[pipe] |= GEN8_PIPE_VBLANK;
2714 I915_WRITE(GEN8_DE_PIPE_IMR(pipe), dev_priv->de_irq_mask[pipe]);
2715 POSTING_READ(GEN8_DE_PIPE_IMR(pipe));
Ben Widawskyabd58f02013-11-02 21:07:09 -07002716 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2717}
2718
Chris Wilson893eead2010-10-27 14:44:35 +01002719static u32
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002720ring_last_seqno(struct intel_engine_cs *ring)
Zou Nan hai852835f2010-05-21 09:08:56 +08002721{
Chris Wilson893eead2010-10-27 14:44:35 +01002722 return list_entry(ring->request_list.prev,
2723 struct drm_i915_gem_request, list)->seqno;
2724}
2725
Chris Wilson9107e9d2013-06-10 11:20:20 +01002726static bool
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002727ring_idle(struct intel_engine_cs *ring, u32 seqno)
Chris Wilson893eead2010-10-27 14:44:35 +01002728{
Chris Wilson9107e9d2013-06-10 11:20:20 +01002729 return (list_empty(&ring->request_list) ||
2730 i915_seqno_passed(seqno, ring_last_seqno(ring)));
Ben Gamarif65d9422009-09-14 17:48:44 -04002731}
2732
Daniel Vettera028c4b2014-03-15 00:08:56 +01002733static bool
2734ipehr_is_semaphore_wait(struct drm_device *dev, u32 ipehr)
2735{
2736 if (INTEL_INFO(dev)->gen >= 8) {
Rodrigo Vivia6cdb932014-06-30 09:53:39 -07002737 return (ipehr >> 23) == 0x1c;
Daniel Vettera028c4b2014-03-15 00:08:56 +01002738 } else {
2739 ipehr &= ~MI_SEMAPHORE_SYNC_MASK;
2740 return ipehr == (MI_SEMAPHORE_MBOX | MI_SEMAPHORE_COMPARE |
2741 MI_SEMAPHORE_REGISTER);
2742 }
2743}
2744
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002745static struct intel_engine_cs *
Rodrigo Vivia6cdb932014-06-30 09:53:39 -07002746semaphore_wait_to_signaller_ring(struct intel_engine_cs *ring, u32 ipehr, u64 offset)
Daniel Vetter921d42e2014-03-18 10:26:04 +01002747{
2748 struct drm_i915_private *dev_priv = ring->dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002749 struct intel_engine_cs *signaller;
Daniel Vetter921d42e2014-03-18 10:26:04 +01002750 int i;
2751
2752 if (INTEL_INFO(dev_priv->dev)->gen >= 8) {
Rodrigo Vivia6cdb932014-06-30 09:53:39 -07002753 for_each_ring(signaller, dev_priv, i) {
2754 if (ring == signaller)
2755 continue;
2756
2757 if (offset == signaller->semaphore.signal_ggtt[ring->id])
2758 return signaller;
2759 }
Daniel Vetter921d42e2014-03-18 10:26:04 +01002760 } else {
2761 u32 sync_bits = ipehr & MI_SEMAPHORE_SYNC_MASK;
2762
2763 for_each_ring(signaller, dev_priv, i) {
2764 if(ring == signaller)
2765 continue;
2766
Ben Widawskyebc348b2014-04-29 14:52:28 -07002767 if (sync_bits == signaller->semaphore.mbox.wait[ring->id])
Daniel Vetter921d42e2014-03-18 10:26:04 +01002768 return signaller;
2769 }
2770 }
2771
Rodrigo Vivia6cdb932014-06-30 09:53:39 -07002772 DRM_ERROR("No signaller ring found for ring %i, ipehr 0x%08x, offset 0x%016llx\n",
2773 ring->id, ipehr, offset);
Daniel Vetter921d42e2014-03-18 10:26:04 +01002774
2775 return NULL;
2776}
2777
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002778static struct intel_engine_cs *
2779semaphore_waits_for(struct intel_engine_cs *ring, u32 *seqno)
Chris Wilsona24a11e2013-03-14 17:52:05 +02002780{
2781 struct drm_i915_private *dev_priv = ring->dev->dev_private;
Daniel Vetter88fe4292014-03-15 00:08:55 +01002782 u32 cmd, ipehr, head;
Rodrigo Vivia6cdb932014-06-30 09:53:39 -07002783 u64 offset = 0;
2784 int i, backwards;
Chris Wilsona24a11e2013-03-14 17:52:05 +02002785
2786 ipehr = I915_READ(RING_IPEHR(ring->mmio_base));
Daniel Vettera028c4b2014-03-15 00:08:56 +01002787 if (!ipehr_is_semaphore_wait(ring->dev, ipehr))
Chris Wilson6274f212013-06-10 11:20:21 +01002788 return NULL;
Chris Wilsona24a11e2013-03-14 17:52:05 +02002789
Daniel Vetter88fe4292014-03-15 00:08:55 +01002790 /*
2791 * HEAD is likely pointing to the dword after the actual command,
2792 * so scan backwards until we find the MBOX. But limit it to just 3
Rodrigo Vivia6cdb932014-06-30 09:53:39 -07002793 * or 4 dwords depending on the semaphore wait command size.
2794 * Note that we don't care about ACTHD here since that might
Daniel Vetter88fe4292014-03-15 00:08:55 +01002795 * point at at batch, and semaphores are always emitted into the
2796 * ringbuffer itself.
Chris Wilsona24a11e2013-03-14 17:52:05 +02002797 */
Daniel Vetter88fe4292014-03-15 00:08:55 +01002798 head = I915_READ_HEAD(ring) & HEAD_ADDR;
Rodrigo Vivia6cdb932014-06-30 09:53:39 -07002799 backwards = (INTEL_INFO(ring->dev)->gen >= 8) ? 5 : 4;
Daniel Vetter88fe4292014-03-15 00:08:55 +01002800
Rodrigo Vivia6cdb932014-06-30 09:53:39 -07002801 for (i = backwards; i; --i) {
Daniel Vetter88fe4292014-03-15 00:08:55 +01002802 /*
2803 * Be paranoid and presume the hw has gone off into the wild -
2804 * our ring is smaller than what the hardware (and hence
2805 * HEAD_ADDR) allows. Also handles wrap-around.
2806 */
Oscar Mateoee1b1e52014-05-22 14:13:35 +01002807 head &= ring->buffer->size - 1;
Daniel Vetter88fe4292014-03-15 00:08:55 +01002808
2809 /* This here seems to blow up */
Oscar Mateoee1b1e52014-05-22 14:13:35 +01002810 cmd = ioread32(ring->buffer->virtual_start + head);
Chris Wilsona24a11e2013-03-14 17:52:05 +02002811 if (cmd == ipehr)
2812 break;
2813
Daniel Vetter88fe4292014-03-15 00:08:55 +01002814 head -= 4;
2815 }
Chris Wilsona24a11e2013-03-14 17:52:05 +02002816
Daniel Vetter88fe4292014-03-15 00:08:55 +01002817 if (!i)
2818 return NULL;
2819
Oscar Mateoee1b1e52014-05-22 14:13:35 +01002820 *seqno = ioread32(ring->buffer->virtual_start + head + 4) + 1;
Rodrigo Vivia6cdb932014-06-30 09:53:39 -07002821 if (INTEL_INFO(ring->dev)->gen >= 8) {
2822 offset = ioread32(ring->buffer->virtual_start + head + 12);
2823 offset <<= 32;
2824 offset = ioread32(ring->buffer->virtual_start + head + 8);
2825 }
2826 return semaphore_wait_to_signaller_ring(ring, ipehr, offset);
Chris Wilsona24a11e2013-03-14 17:52:05 +02002827}
2828
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002829static int semaphore_passed(struct intel_engine_cs *ring)
Chris Wilson6274f212013-06-10 11:20:21 +01002830{
2831 struct drm_i915_private *dev_priv = ring->dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002832 struct intel_engine_cs *signaller;
Chris Wilsona0d036b2014-07-19 12:40:42 +01002833 u32 seqno;
Chris Wilson6274f212013-06-10 11:20:21 +01002834
Chris Wilson4be17382014-06-06 10:22:29 +01002835 ring->hangcheck.deadlock++;
Chris Wilson6274f212013-06-10 11:20:21 +01002836
2837 signaller = semaphore_waits_for(ring, &seqno);
Chris Wilson4be17382014-06-06 10:22:29 +01002838 if (signaller == NULL)
2839 return -1;
2840
2841 /* Prevent pathological recursion due to driver bugs */
2842 if (signaller->hangcheck.deadlock >= I915_NUM_RINGS)
Chris Wilson6274f212013-06-10 11:20:21 +01002843 return -1;
2844
Chris Wilson4be17382014-06-06 10:22:29 +01002845 if (i915_seqno_passed(signaller->get_seqno(signaller, false), seqno))
2846 return 1;
2847
Chris Wilsona0d036b2014-07-19 12:40:42 +01002848 /* cursory check for an unkickable deadlock */
2849 if (I915_READ_CTL(signaller) & RING_WAIT_SEMAPHORE &&
2850 semaphore_passed(signaller) < 0)
Chris Wilson4be17382014-06-06 10:22:29 +01002851 return -1;
2852
2853 return 0;
Chris Wilson6274f212013-06-10 11:20:21 +01002854}
2855
2856static void semaphore_clear_deadlocks(struct drm_i915_private *dev_priv)
2857{
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002858 struct intel_engine_cs *ring;
Chris Wilson6274f212013-06-10 11:20:21 +01002859 int i;
2860
2861 for_each_ring(ring, dev_priv, i)
Chris Wilson4be17382014-06-06 10:22:29 +01002862 ring->hangcheck.deadlock = 0;
Chris Wilson6274f212013-06-10 11:20:21 +01002863}
2864
Mika Kuoppalaad8beae2013-06-12 12:35:32 +03002865static enum intel_ring_hangcheck_action
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002866ring_stuck(struct intel_engine_cs *ring, u64 acthd)
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002867{
2868 struct drm_device *dev = ring->dev;
2869 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson9107e9d2013-06-10 11:20:20 +01002870 u32 tmp;
2871
Mika Kuoppalaf260fe72014-08-05 17:16:26 +03002872 if (acthd != ring->hangcheck.acthd) {
2873 if (acthd > ring->hangcheck.max_acthd) {
2874 ring->hangcheck.max_acthd = acthd;
2875 return HANGCHECK_ACTIVE;
2876 }
2877
2878 return HANGCHECK_ACTIVE_LOOP;
2879 }
Chris Wilson6274f212013-06-10 11:20:21 +01002880
Chris Wilson9107e9d2013-06-10 11:20:20 +01002881 if (IS_GEN2(dev))
Jani Nikulaf2f4d822013-08-11 12:44:01 +03002882 return HANGCHECK_HUNG;
Chris Wilson9107e9d2013-06-10 11:20:20 +01002883
2884 /* Is the chip hanging on a WAIT_FOR_EVENT?
2885 * If so we can simply poke the RB_WAIT bit
2886 * and break the hang. This should work on
2887 * all but the second generation chipsets.
2888 */
2889 tmp = I915_READ_CTL(ring);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002890 if (tmp & RING_WAIT) {
Mika Kuoppala58174462014-02-25 17:11:26 +02002891 i915_handle_error(dev, false,
2892 "Kicking stuck wait on %s",
2893 ring->name);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002894 I915_WRITE_CTL(ring, tmp);
Jani Nikulaf2f4d822013-08-11 12:44:01 +03002895 return HANGCHECK_KICK;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002896 }
Chris Wilsona24a11e2013-03-14 17:52:05 +02002897
Chris Wilson6274f212013-06-10 11:20:21 +01002898 if (INTEL_INFO(dev)->gen >= 6 && tmp & RING_WAIT_SEMAPHORE) {
2899 switch (semaphore_passed(ring)) {
2900 default:
Jani Nikulaf2f4d822013-08-11 12:44:01 +03002901 return HANGCHECK_HUNG;
Chris Wilson6274f212013-06-10 11:20:21 +01002902 case 1:
Mika Kuoppala58174462014-02-25 17:11:26 +02002903 i915_handle_error(dev, false,
2904 "Kicking stuck semaphore on %s",
2905 ring->name);
Chris Wilson6274f212013-06-10 11:20:21 +01002906 I915_WRITE_CTL(ring, tmp);
Jani Nikulaf2f4d822013-08-11 12:44:01 +03002907 return HANGCHECK_KICK;
Chris Wilson6274f212013-06-10 11:20:21 +01002908 case 0:
Jani Nikulaf2f4d822013-08-11 12:44:01 +03002909 return HANGCHECK_WAIT;
Chris Wilson6274f212013-06-10 11:20:21 +01002910 }
Chris Wilson9107e9d2013-06-10 11:20:20 +01002911 }
Mika Kuoppalaed5cbb02013-05-13 16:32:11 +03002912
Jani Nikulaf2f4d822013-08-11 12:44:01 +03002913 return HANGCHECK_HUNG;
Mika Kuoppalaed5cbb02013-05-13 16:32:11 +03002914}
2915
Ben Gamarif65d9422009-09-14 17:48:44 -04002916/**
2917 * This is called when the chip hasn't reported back with completed
Mika Kuoppala05407ff2013-05-30 09:04:29 +03002918 * batchbuffers in a long time. We keep track per ring seqno progress and
2919 * if there are no progress, hangcheck score for that ring is increased.
2920 * Further, acthd is inspected to see if the ring is stuck. On stuck case
2921 * we kick the ring. If we see no progress on three subsequent calls
2922 * we assume chip is wedged and try to fix it by resetting the chip.
Ben Gamarif65d9422009-09-14 17:48:44 -04002923 */
Damien Lespiaua658b5d2013-08-08 22:28:56 +01002924static void i915_hangcheck_elapsed(unsigned long data)
Ben Gamarif65d9422009-09-14 17:48:44 -04002925{
2926 struct drm_device *dev = (struct drm_device *)data;
Jani Nikula2d1013d2014-03-31 14:27:17 +03002927 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002928 struct intel_engine_cs *ring;
Chris Wilsonb4519512012-05-11 14:29:30 +01002929 int i;
Mika Kuoppala05407ff2013-05-30 09:04:29 +03002930 int busy_count = 0, rings_hung = 0;
Chris Wilson9107e9d2013-06-10 11:20:20 +01002931 bool stuck[I915_NUM_RINGS] = { 0 };
2932#define BUSY 1
2933#define KICK 5
2934#define HUNG 20
Chris Wilson893eead2010-10-27 14:44:35 +01002935
Jani Nikulad330a952014-01-21 11:24:25 +02002936 if (!i915.enable_hangcheck)
Ben Widawsky3e0dc6b2011-06-29 10:26:42 -07002937 return;
2938
Chris Wilsonb4519512012-05-11 14:29:30 +01002939 for_each_ring(ring, dev_priv, i) {
Chris Wilson50877442014-03-21 12:41:53 +00002940 u64 acthd;
2941 u32 seqno;
Chris Wilson9107e9d2013-06-10 11:20:20 +01002942 bool busy = true;
Chris Wilsonb4519512012-05-11 14:29:30 +01002943
Chris Wilson6274f212013-06-10 11:20:21 +01002944 semaphore_clear_deadlocks(dev_priv);
2945
Mika Kuoppala05407ff2013-05-30 09:04:29 +03002946 seqno = ring->get_seqno(ring, false);
2947 acthd = intel_ring_get_active_head(ring);
Chris Wilsond1e61e72012-04-10 17:00:41 +01002948
Chris Wilson9107e9d2013-06-10 11:20:20 +01002949 if (ring->hangcheck.seqno == seqno) {
2950 if (ring_idle(ring, seqno)) {
Mika Kuoppalada661462013-09-06 16:03:28 +03002951 ring->hangcheck.action = HANGCHECK_IDLE;
2952
Chris Wilson9107e9d2013-06-10 11:20:20 +01002953 if (waitqueue_active(&ring->irq_queue)) {
2954 /* Issue a wake-up to catch stuck h/w. */
Chris Wilson094f9a52013-09-25 17:34:55 +01002955 if (!test_and_set_bit(ring->id, &dev_priv->gpu_error.missed_irq_rings)) {
Daniel Vetterf4adcd22013-10-28 09:24:13 +01002956 if (!(dev_priv->gpu_error.test_irq_rings & intel_ring_flag(ring)))
2957 DRM_ERROR("Hangcheck timer elapsed... %s idle\n",
2958 ring->name);
2959 else
2960 DRM_INFO("Fake missed irq on %s\n",
2961 ring->name);
Chris Wilson094f9a52013-09-25 17:34:55 +01002962 wake_up_all(&ring->irq_queue);
2963 }
2964 /* Safeguard against driver failure */
2965 ring->hangcheck.score += BUSY;
Chris Wilson9107e9d2013-06-10 11:20:20 +01002966 } else
2967 busy = false;
Mika Kuoppala05407ff2013-05-30 09:04:29 +03002968 } else {
Chris Wilson6274f212013-06-10 11:20:21 +01002969 /* We always increment the hangcheck score
2970 * if the ring is busy and still processing
2971 * the same request, so that no single request
2972 * can run indefinitely (such as a chain of
2973 * batches). The only time we do not increment
2974 * the hangcheck score on this ring, if this
2975 * ring is in a legitimate wait for another
2976 * ring. In that case the waiting ring is a
2977 * victim and we want to be sure we catch the
2978 * right culprit. Then every time we do kick
2979 * the ring, add a small increment to the
2980 * score so that we can catch a batch that is
2981 * being repeatedly kicked and so responsible
2982 * for stalling the machine.
2983 */
Mika Kuoppalaad8beae2013-06-12 12:35:32 +03002984 ring->hangcheck.action = ring_stuck(ring,
2985 acthd);
2986
2987 switch (ring->hangcheck.action) {
Mika Kuoppalada661462013-09-06 16:03:28 +03002988 case HANGCHECK_IDLE:
Jani Nikulaf2f4d822013-08-11 12:44:01 +03002989 case HANGCHECK_WAIT:
Jani Nikulaf2f4d822013-08-11 12:44:01 +03002990 case HANGCHECK_ACTIVE:
Mika Kuoppalaf260fe72014-08-05 17:16:26 +03002991 break;
2992 case HANGCHECK_ACTIVE_LOOP:
Jani Nikulaea04cb32013-08-11 12:44:02 +03002993 ring->hangcheck.score += BUSY;
Chris Wilson6274f212013-06-10 11:20:21 +01002994 break;
Jani Nikulaf2f4d822013-08-11 12:44:01 +03002995 case HANGCHECK_KICK:
Jani Nikulaea04cb32013-08-11 12:44:02 +03002996 ring->hangcheck.score += KICK;
Chris Wilson6274f212013-06-10 11:20:21 +01002997 break;
Jani Nikulaf2f4d822013-08-11 12:44:01 +03002998 case HANGCHECK_HUNG:
Jani Nikulaea04cb32013-08-11 12:44:02 +03002999 ring->hangcheck.score += HUNG;
Chris Wilson6274f212013-06-10 11:20:21 +01003000 stuck[i] = true;
3001 break;
3002 }
Mika Kuoppala05407ff2013-05-30 09:04:29 +03003003 }
Chris Wilson9107e9d2013-06-10 11:20:20 +01003004 } else {
Mika Kuoppalada661462013-09-06 16:03:28 +03003005 ring->hangcheck.action = HANGCHECK_ACTIVE;
3006
Chris Wilson9107e9d2013-06-10 11:20:20 +01003007 /* Gradually reduce the count so that we catch DoS
3008 * attempts across multiple batches.
3009 */
3010 if (ring->hangcheck.score > 0)
3011 ring->hangcheck.score--;
Mika Kuoppalaf260fe72014-08-05 17:16:26 +03003012
3013 ring->hangcheck.acthd = ring->hangcheck.max_acthd = 0;
Chris Wilsond1e61e72012-04-10 17:00:41 +01003014 }
3015
Mika Kuoppala05407ff2013-05-30 09:04:29 +03003016 ring->hangcheck.seqno = seqno;
3017 ring->hangcheck.acthd = acthd;
Chris Wilson9107e9d2013-06-10 11:20:20 +01003018 busy_count += busy;
Chris Wilson893eead2010-10-27 14:44:35 +01003019 }
Eric Anholtb9201c12010-01-08 14:25:16 -08003020
Mika Kuoppala92cab732013-05-24 17:16:07 +03003021 for_each_ring(ring, dev_priv, i) {
Mika Kuoppalab6b0fac2014-01-30 19:04:43 +02003022 if (ring->hangcheck.score >= HANGCHECK_SCORE_RING_HUNG) {
Daniel Vetterb8d88d12013-08-28 10:57:59 +02003023 DRM_INFO("%s on %s\n",
3024 stuck[i] ? "stuck" : "no progress",
3025 ring->name);
Chris Wilsona43adf02013-06-10 11:20:22 +01003026 rings_hung++;
Mika Kuoppala92cab732013-05-24 17:16:07 +03003027 }
3028 }
3029
Mika Kuoppala05407ff2013-05-30 09:04:29 +03003030 if (rings_hung)
Mika Kuoppala58174462014-02-25 17:11:26 +02003031 return i915_handle_error(dev, true, "Ring hung");
Ben Gamarif65d9422009-09-14 17:48:44 -04003032
Mika Kuoppala05407ff2013-05-30 09:04:29 +03003033 if (busy_count)
3034 /* Reset timer case chip hangs without another request
3035 * being added */
Mika Kuoppala10cd45b2013-07-03 17:22:08 +03003036 i915_queue_hangcheck(dev);
3037}
3038
3039void i915_queue_hangcheck(struct drm_device *dev)
3040{
3041 struct drm_i915_private *dev_priv = dev->dev_private;
Jani Nikulad330a952014-01-21 11:24:25 +02003042 if (!i915.enable_hangcheck)
Mika Kuoppala10cd45b2013-07-03 17:22:08 +03003043 return;
3044
3045 mod_timer(&dev_priv->gpu_error.hangcheck_timer,
3046 round_jiffies_up(jiffies + DRM_I915_HANGCHECK_JIFFIES));
Ben Gamarif65d9422009-09-14 17:48:44 -04003047}
3048
Paulo Zanoni1c69eb42014-04-01 15:37:23 -03003049static void ibx_irq_reset(struct drm_device *dev)
Paulo Zanoni91738a92013-06-05 14:21:51 -03003050{
3051 struct drm_i915_private *dev_priv = dev->dev_private;
3052
3053 if (HAS_PCH_NOP(dev))
3054 return;
3055
Paulo Zanonif86f3fb2014-04-01 15:37:14 -03003056 GEN5_IRQ_RESET(SDE);
Paulo Zanoni105b1222014-04-01 15:37:17 -03003057
3058 if (HAS_PCH_CPT(dev) || HAS_PCH_LPT(dev))
3059 I915_WRITE(SERR_INT, 0xffffffff);
Paulo Zanoni622364b2014-04-01 15:37:22 -03003060}
Paulo Zanoni105b1222014-04-01 15:37:17 -03003061
Paulo Zanoni622364b2014-04-01 15:37:22 -03003062/*
3063 * SDEIER is also touched by the interrupt handler to work around missed PCH
3064 * interrupts. Hence we can't update it after the interrupt handler is enabled -
3065 * instead we unconditionally enable all PCH interrupt sources here, but then
3066 * only unmask them as needed with SDEIMR.
3067 *
3068 * This function needs to be called before interrupts are enabled.
3069 */
3070static void ibx_irq_pre_postinstall(struct drm_device *dev)
3071{
3072 struct drm_i915_private *dev_priv = dev->dev_private;
3073
3074 if (HAS_PCH_NOP(dev))
3075 return;
3076
3077 WARN_ON(I915_READ(SDEIER) != 0);
Paulo Zanoni91738a92013-06-05 14:21:51 -03003078 I915_WRITE(SDEIER, 0xffffffff);
3079 POSTING_READ(SDEIER);
3080}
3081
Paulo Zanoni7c4d6642014-04-01 15:37:19 -03003082static void gen5_gt_irq_reset(struct drm_device *dev)
Daniel Vetterd18ea1b2013-07-12 22:43:25 +02003083{
3084 struct drm_i915_private *dev_priv = dev->dev_private;
3085
Paulo Zanonif86f3fb2014-04-01 15:37:14 -03003086 GEN5_IRQ_RESET(GT);
Paulo Zanonia9d356a2014-04-01 15:37:09 -03003087 if (INTEL_INFO(dev)->gen >= 6)
Paulo Zanonif86f3fb2014-04-01 15:37:14 -03003088 GEN5_IRQ_RESET(GEN6_PM);
Daniel Vetterd18ea1b2013-07-12 22:43:25 +02003089}
3090
Linus Torvalds1da177e2005-04-16 15:20:36 -07003091/* drm_dma.h hooks
3092*/
Paulo Zanonibe30b292014-04-01 15:37:25 -03003093static void ironlake_irq_reset(struct drm_device *dev)
Zhenyu Wang036a4a72009-06-08 14:40:19 +08003094{
Jani Nikula2d1013d2014-03-31 14:27:17 +03003095 struct drm_i915_private *dev_priv = dev->dev_private;
Zhenyu Wang036a4a72009-06-08 14:40:19 +08003096
Paulo Zanoni0c841212014-04-01 15:37:27 -03003097 I915_WRITE(HWSTAM, 0xffffffff);
Daniel Vetterbdfcdb62012-01-05 01:05:26 +01003098
Paulo Zanonif86f3fb2014-04-01 15:37:14 -03003099 GEN5_IRQ_RESET(DE);
Paulo Zanonic6d954c2014-04-01 15:37:18 -03003100 if (IS_GEN7(dev))
3101 I915_WRITE(GEN7_ERR_INT, 0xffffffff);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08003102
Paulo Zanoni7c4d6642014-04-01 15:37:19 -03003103 gen5_gt_irq_reset(dev);
Zhenyu Wangc6501562009-11-03 18:57:21 +00003104
Paulo Zanoni1c69eb42014-04-01 15:37:23 -03003105 ibx_irq_reset(dev);
Ben Widawsky7d991632013-05-28 19:22:25 -07003106}
3107
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003108static void valleyview_irq_preinstall(struct drm_device *dev)
3109{
Jani Nikula2d1013d2014-03-31 14:27:17 +03003110 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003111 int pipe;
3112
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003113 /* VLV magic */
3114 I915_WRITE(VLV_IMR, 0);
3115 I915_WRITE(RING_IMR(RENDER_RING_BASE), 0);
3116 I915_WRITE(RING_IMR(GEN6_BSD_RING_BASE), 0);
3117 I915_WRITE(RING_IMR(BLT_RING_BASE), 0);
3118
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003119 /* and GT */
3120 I915_WRITE(GTIIR, I915_READ(GTIIR));
3121 I915_WRITE(GTIIR, I915_READ(GTIIR));
Daniel Vetterd18ea1b2013-07-12 22:43:25 +02003122
Paulo Zanoni7c4d6642014-04-01 15:37:19 -03003123 gen5_gt_irq_reset(dev);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003124
3125 I915_WRITE(DPINVGTT, 0xff);
3126
3127 I915_WRITE(PORT_HOTPLUG_EN, 0);
3128 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
Damien Lespiau055e3932014-08-18 13:49:10 +01003129 for_each_pipe(dev_priv, pipe)
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003130 I915_WRITE(PIPESTAT(pipe), 0xffff);
3131 I915_WRITE(VLV_IIR, 0xffffffff);
3132 I915_WRITE(VLV_IMR, 0xffffffff);
3133 I915_WRITE(VLV_IER, 0x0);
3134 POSTING_READ(VLV_IER);
3135}
3136
Daniel Vetterd6e3cca2014-05-22 22:18:22 +02003137static void gen8_gt_irq_reset(struct drm_i915_private *dev_priv)
3138{
3139 GEN8_IRQ_RESET_NDX(GT, 0);
3140 GEN8_IRQ_RESET_NDX(GT, 1);
3141 GEN8_IRQ_RESET_NDX(GT, 2);
3142 GEN8_IRQ_RESET_NDX(GT, 3);
3143}
3144
Paulo Zanoni823f6b32014-04-01 15:37:26 -03003145static void gen8_irq_reset(struct drm_device *dev)
Ben Widawskyabd58f02013-11-02 21:07:09 -07003146{
3147 struct drm_i915_private *dev_priv = dev->dev_private;
3148 int pipe;
3149
Ben Widawskyabd58f02013-11-02 21:07:09 -07003150 I915_WRITE(GEN8_MASTER_IRQ, 0);
3151 POSTING_READ(GEN8_MASTER_IRQ);
3152
Daniel Vetterd6e3cca2014-05-22 22:18:22 +02003153 gen8_gt_irq_reset(dev_priv);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003154
Damien Lespiau055e3932014-08-18 13:49:10 +01003155 for_each_pipe(dev_priv, pipe)
Daniel Vetterf458ebb2014-09-30 10:56:39 +02003156 if (intel_display_power_is_enabled(dev_priv,
3157 POWER_DOMAIN_PIPE(pipe)))
Paulo Zanoni813bde42014-07-04 11:50:29 -03003158 GEN8_IRQ_RESET_NDX(DE_PIPE, pipe);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003159
Paulo Zanonif86f3fb2014-04-01 15:37:14 -03003160 GEN5_IRQ_RESET(GEN8_DE_PORT_);
3161 GEN5_IRQ_RESET(GEN8_DE_MISC_);
3162 GEN5_IRQ_RESET(GEN8_PCU_);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003163
Paulo Zanoni1c69eb42014-04-01 15:37:23 -03003164 ibx_irq_reset(dev);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003165}
Ben Widawskyabd58f02013-11-02 21:07:09 -07003166
Paulo Zanonid49bdb02014-07-04 11:50:31 -03003167void gen8_irq_power_well_post_enable(struct drm_i915_private *dev_priv)
3168{
Paulo Zanoni1180e202014-10-07 18:02:52 -03003169 uint32_t extra_ier = GEN8_PIPE_VBLANK | GEN8_PIPE_FIFO_UNDERRUN;
Paulo Zanonid49bdb02014-07-04 11:50:31 -03003170
Daniel Vetter13321782014-09-15 14:55:29 +02003171 spin_lock_irq(&dev_priv->irq_lock);
Paulo Zanonid49bdb02014-07-04 11:50:31 -03003172 GEN8_IRQ_INIT_NDX(DE_PIPE, PIPE_B, dev_priv->de_irq_mask[PIPE_B],
Paulo Zanoni1180e202014-10-07 18:02:52 -03003173 ~dev_priv->de_irq_mask[PIPE_B] | extra_ier);
Paulo Zanonid49bdb02014-07-04 11:50:31 -03003174 GEN8_IRQ_INIT_NDX(DE_PIPE, PIPE_C, dev_priv->de_irq_mask[PIPE_C],
Paulo Zanoni1180e202014-10-07 18:02:52 -03003175 ~dev_priv->de_irq_mask[PIPE_C] | extra_ier);
Daniel Vetter13321782014-09-15 14:55:29 +02003176 spin_unlock_irq(&dev_priv->irq_lock);
Paulo Zanonid49bdb02014-07-04 11:50:31 -03003177}
3178
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003179static void cherryview_irq_preinstall(struct drm_device *dev)
3180{
3181 struct drm_i915_private *dev_priv = dev->dev_private;
3182 int pipe;
3183
3184 I915_WRITE(GEN8_MASTER_IRQ, 0);
3185 POSTING_READ(GEN8_MASTER_IRQ);
3186
Daniel Vetterd6e3cca2014-05-22 22:18:22 +02003187 gen8_gt_irq_reset(dev_priv);
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003188
3189 GEN5_IRQ_RESET(GEN8_PCU_);
3190
3191 POSTING_READ(GEN8_PCU_IIR);
3192
3193 I915_WRITE(DPINVGTT, DPINVGTT_STATUS_MASK_CHV);
3194
3195 I915_WRITE(PORT_HOTPLUG_EN, 0);
3196 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
3197
Damien Lespiau055e3932014-08-18 13:49:10 +01003198 for_each_pipe(dev_priv, pipe)
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003199 I915_WRITE(PIPESTAT(pipe), 0xffff);
3200
3201 I915_WRITE(VLV_IMR, 0xffffffff);
3202 I915_WRITE(VLV_IER, 0x0);
3203 I915_WRITE(VLV_IIR, 0xffffffff);
3204 POSTING_READ(VLV_IIR);
3205}
3206
Daniel Vetter82a28bc2013-03-27 15:55:01 +01003207static void ibx_hpd_irq_setup(struct drm_device *dev)
Keith Packard7fe0b972011-09-19 13:31:02 -07003208{
Jani Nikula2d1013d2014-03-31 14:27:17 +03003209 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter82a28bc2013-03-27 15:55:01 +01003210 struct intel_encoder *intel_encoder;
Daniel Vetterfee884e2013-07-04 23:35:21 +02003211 u32 hotplug_irqs, hotplug, enabled_irqs = 0;
Keith Packard7fe0b972011-09-19 13:31:02 -07003212
Daniel Vetter82a28bc2013-03-27 15:55:01 +01003213 if (HAS_PCH_IBX(dev)) {
Daniel Vetterfee884e2013-07-04 23:35:21 +02003214 hotplug_irqs = SDE_HOTPLUG_MASK;
Damien Lespiaub2784e12014-08-05 11:29:37 +01003215 for_each_intel_encoder(dev, intel_encoder)
Egbert Eichcd569ae2013-04-16 13:36:57 +02003216 if (dev_priv->hpd_stats[intel_encoder->hpd_pin].hpd_mark == HPD_ENABLED)
Daniel Vetterfee884e2013-07-04 23:35:21 +02003217 enabled_irqs |= hpd_ibx[intel_encoder->hpd_pin];
Daniel Vetter82a28bc2013-03-27 15:55:01 +01003218 } else {
Daniel Vetterfee884e2013-07-04 23:35:21 +02003219 hotplug_irqs = SDE_HOTPLUG_MASK_CPT;
Damien Lespiaub2784e12014-08-05 11:29:37 +01003220 for_each_intel_encoder(dev, intel_encoder)
Egbert Eichcd569ae2013-04-16 13:36:57 +02003221 if (dev_priv->hpd_stats[intel_encoder->hpd_pin].hpd_mark == HPD_ENABLED)
Daniel Vetterfee884e2013-07-04 23:35:21 +02003222 enabled_irqs |= hpd_cpt[intel_encoder->hpd_pin];
Daniel Vetter82a28bc2013-03-27 15:55:01 +01003223 }
3224
Daniel Vetterfee884e2013-07-04 23:35:21 +02003225 ibx_display_interrupt_update(dev_priv, hotplug_irqs, enabled_irqs);
Daniel Vetter82a28bc2013-03-27 15:55:01 +01003226
3227 /*
3228 * Enable digital hotplug on the PCH, and configure the DP short pulse
3229 * duration to 2ms (which is the minimum in the Display Port spec)
3230 *
3231 * This register is the same on all known PCH chips.
3232 */
Keith Packard7fe0b972011-09-19 13:31:02 -07003233 hotplug = I915_READ(PCH_PORT_HOTPLUG);
3234 hotplug &= ~(PORTD_PULSE_DURATION_MASK|PORTC_PULSE_DURATION_MASK|PORTB_PULSE_DURATION_MASK);
3235 hotplug |= PORTD_HOTPLUG_ENABLE | PORTD_PULSE_DURATION_2ms;
3236 hotplug |= PORTC_HOTPLUG_ENABLE | PORTC_PULSE_DURATION_2ms;
3237 hotplug |= PORTB_HOTPLUG_ENABLE | PORTB_PULSE_DURATION_2ms;
3238 I915_WRITE(PCH_PORT_HOTPLUG, hotplug);
3239}
3240
Paulo Zanonid46da432013-02-08 17:35:15 -02003241static void ibx_irq_postinstall(struct drm_device *dev)
3242{
Jani Nikula2d1013d2014-03-31 14:27:17 +03003243 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter82a28bc2013-03-27 15:55:01 +01003244 u32 mask;
Paulo Zanonid46da432013-02-08 17:35:15 -02003245
Daniel Vetter692a04c2013-05-29 21:43:05 +02003246 if (HAS_PCH_NOP(dev))
3247 return;
3248
Paulo Zanoni105b1222014-04-01 15:37:17 -03003249 if (HAS_PCH_IBX(dev))
Daniel Vetter5c673b62014-03-07 20:34:46 +01003250 mask = SDE_GMBUS | SDE_AUX_MASK | SDE_POISON;
Paulo Zanoni105b1222014-04-01 15:37:17 -03003251 else
Daniel Vetter5c673b62014-03-07 20:34:46 +01003252 mask = SDE_GMBUS_CPT | SDE_AUX_MASK_CPT;
Paulo Zanoni86642812013-04-12 17:57:57 -03003253
Paulo Zanoni337ba012014-04-01 15:37:16 -03003254 GEN5_ASSERT_IIR_IS_ZERO(SDEIIR);
Paulo Zanonid46da432013-02-08 17:35:15 -02003255 I915_WRITE(SDEIMR, ~mask);
Paulo Zanonid46da432013-02-08 17:35:15 -02003256}
3257
Daniel Vetter0a9a8c92013-07-12 22:43:26 +02003258static void gen5_gt_irq_postinstall(struct drm_device *dev)
3259{
3260 struct drm_i915_private *dev_priv = dev->dev_private;
3261 u32 pm_irqs, gt_irqs;
3262
3263 pm_irqs = gt_irqs = 0;
3264
3265 dev_priv->gt_irq_mask = ~0;
Ben Widawsky040d2ba2013-09-19 11:01:40 -07003266 if (HAS_L3_DPF(dev)) {
Daniel Vetter0a9a8c92013-07-12 22:43:26 +02003267 /* L3 parity interrupt is always unmasked. */
Ben Widawsky35a85ac2013-09-19 11:13:41 -07003268 dev_priv->gt_irq_mask = ~GT_PARITY_ERROR(dev);
3269 gt_irqs |= GT_PARITY_ERROR(dev);
Daniel Vetter0a9a8c92013-07-12 22:43:26 +02003270 }
3271
3272 gt_irqs |= GT_RENDER_USER_INTERRUPT;
3273 if (IS_GEN5(dev)) {
3274 gt_irqs |= GT_RENDER_PIPECTL_NOTIFY_INTERRUPT |
3275 ILK_BSD_USER_INTERRUPT;
3276 } else {
3277 gt_irqs |= GT_BLT_USER_INTERRUPT | GT_BSD_USER_INTERRUPT;
3278 }
3279
Paulo Zanoni35079892014-04-01 15:37:15 -03003280 GEN5_IRQ_INIT(GT, dev_priv->gt_irq_mask, gt_irqs);
Daniel Vetter0a9a8c92013-07-12 22:43:26 +02003281
3282 if (INTEL_INFO(dev)->gen >= 6) {
Deepak Sa6706b42014-03-15 20:23:22 +05303283 pm_irqs |= dev_priv->pm_rps_events;
Daniel Vetter0a9a8c92013-07-12 22:43:26 +02003284
3285 if (HAS_VEBOX(dev))
3286 pm_irqs |= PM_VEBOX_USER_INTERRUPT;
3287
Paulo Zanoni605cd252013-08-06 18:57:15 -03003288 dev_priv->pm_irq_mask = 0xffffffff;
Paulo Zanoni35079892014-04-01 15:37:15 -03003289 GEN5_IRQ_INIT(GEN6_PM, dev_priv->pm_irq_mask, pm_irqs);
Daniel Vetter0a9a8c92013-07-12 22:43:26 +02003290 }
3291}
3292
Jesse Barnesf71d4af2011-06-28 13:00:41 -07003293static int ironlake_irq_postinstall(struct drm_device *dev)
Zhenyu Wang036a4a72009-06-08 14:40:19 +08003294{
Jani Nikula2d1013d2014-03-31 14:27:17 +03003295 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoni8e76f8d2013-07-12 20:01:56 -03003296 u32 display_mask, extra_mask;
3297
3298 if (INTEL_INFO(dev)->gen >= 7) {
3299 display_mask = (DE_MASTER_IRQ_CONTROL | DE_GSE_IVB |
3300 DE_PCH_EVENT_IVB | DE_PLANEC_FLIP_DONE_IVB |
3301 DE_PLANEB_FLIP_DONE_IVB |
Daniel Vetter5c673b62014-03-07 20:34:46 +01003302 DE_PLANEA_FLIP_DONE_IVB | DE_AUX_CHANNEL_A_IVB);
Paulo Zanoni8e76f8d2013-07-12 20:01:56 -03003303 extra_mask = (DE_PIPEC_VBLANK_IVB | DE_PIPEB_VBLANK_IVB |
Daniel Vetter5c673b62014-03-07 20:34:46 +01003304 DE_PIPEA_VBLANK_IVB | DE_ERR_INT_IVB);
Paulo Zanoni8e76f8d2013-07-12 20:01:56 -03003305 } else {
3306 display_mask = (DE_MASTER_IRQ_CONTROL | DE_GSE | DE_PCH_EVENT |
3307 DE_PLANEA_FLIP_DONE | DE_PLANEB_FLIP_DONE |
Daniel Vetter5b3a8562013-10-16 22:55:48 +02003308 DE_AUX_CHANNEL_A |
Daniel Vetter5b3a8562013-10-16 22:55:48 +02003309 DE_PIPEB_CRC_DONE | DE_PIPEA_CRC_DONE |
3310 DE_POISON);
Daniel Vetter5c673b62014-03-07 20:34:46 +01003311 extra_mask = DE_PIPEA_VBLANK | DE_PIPEB_VBLANK | DE_PCU_EVENT |
3312 DE_PIPEB_FIFO_UNDERRUN | DE_PIPEA_FIFO_UNDERRUN;
Paulo Zanoni8e76f8d2013-07-12 20:01:56 -03003313 }
Zhenyu Wang036a4a72009-06-08 14:40:19 +08003314
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003315 dev_priv->irq_mask = ~display_mask;
Zhenyu Wang036a4a72009-06-08 14:40:19 +08003316
Paulo Zanoni0c841212014-04-01 15:37:27 -03003317 I915_WRITE(HWSTAM, 0xeffe);
3318
Paulo Zanoni622364b2014-04-01 15:37:22 -03003319 ibx_irq_pre_postinstall(dev);
3320
Paulo Zanoni35079892014-04-01 15:37:15 -03003321 GEN5_IRQ_INIT(DE, dev_priv->irq_mask, display_mask | extra_mask);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08003322
Daniel Vetter0a9a8c92013-07-12 22:43:26 +02003323 gen5_gt_irq_postinstall(dev);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08003324
Paulo Zanonid46da432013-02-08 17:35:15 -02003325 ibx_irq_postinstall(dev);
Keith Packard7fe0b972011-09-19 13:31:02 -07003326
Jesse Barnesf97108d2010-01-29 11:27:07 -08003327 if (IS_IRONLAKE_M(dev)) {
Daniel Vetter6005ce42013-06-27 13:44:59 +02003328 /* Enable PCU event interrupts
3329 *
3330 * spinlocking not required here for correctness since interrupt
Daniel Vetter4bc9d432013-06-27 13:44:58 +02003331 * setup is guaranteed to run in single-threaded context. But we
3332 * need it to make the assert_spin_locked happy. */
Daniel Vetterd6207432014-09-15 14:55:27 +02003333 spin_lock_irq(&dev_priv->irq_lock);
Jesse Barnesf97108d2010-01-29 11:27:07 -08003334 ironlake_enable_display_irq(dev_priv, DE_PCU_EVENT);
Daniel Vetterd6207432014-09-15 14:55:27 +02003335 spin_unlock_irq(&dev_priv->irq_lock);
Jesse Barnesf97108d2010-01-29 11:27:07 -08003336 }
3337
Zhenyu Wang036a4a72009-06-08 14:40:19 +08003338 return 0;
3339}
3340
Imre Deakf8b79e52014-03-04 19:23:07 +02003341static void valleyview_display_irqs_install(struct drm_i915_private *dev_priv)
3342{
3343 u32 pipestat_mask;
3344 u32 iir_mask;
3345
3346 pipestat_mask = PIPESTAT_INT_STATUS_MASK |
3347 PIPE_FIFO_UNDERRUN_STATUS;
3348
3349 I915_WRITE(PIPESTAT(PIPE_A), pipestat_mask);
3350 I915_WRITE(PIPESTAT(PIPE_B), pipestat_mask);
3351 POSTING_READ(PIPESTAT(PIPE_A));
3352
3353 pipestat_mask = PLANE_FLIP_DONE_INT_STATUS_VLV |
3354 PIPE_CRC_DONE_INTERRUPT_STATUS;
3355
3356 i915_enable_pipestat(dev_priv, PIPE_A, pipestat_mask |
3357 PIPE_GMBUS_INTERRUPT_STATUS);
3358 i915_enable_pipestat(dev_priv, PIPE_B, pipestat_mask);
3359
3360 iir_mask = I915_DISPLAY_PORT_INTERRUPT |
3361 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
3362 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT;
3363 dev_priv->irq_mask &= ~iir_mask;
3364
3365 I915_WRITE(VLV_IIR, iir_mask);
3366 I915_WRITE(VLV_IIR, iir_mask);
3367 I915_WRITE(VLV_IMR, dev_priv->irq_mask);
3368 I915_WRITE(VLV_IER, ~dev_priv->irq_mask);
3369 POSTING_READ(VLV_IER);
3370}
3371
3372static void valleyview_display_irqs_uninstall(struct drm_i915_private *dev_priv)
3373{
3374 u32 pipestat_mask;
3375 u32 iir_mask;
3376
3377 iir_mask = I915_DISPLAY_PORT_INTERRUPT |
3378 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
Imre Deak6c7fba02014-03-10 19:44:48 +02003379 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT;
Imre Deakf8b79e52014-03-04 19:23:07 +02003380
3381 dev_priv->irq_mask |= iir_mask;
3382 I915_WRITE(VLV_IER, ~dev_priv->irq_mask);
3383 I915_WRITE(VLV_IMR, dev_priv->irq_mask);
3384 I915_WRITE(VLV_IIR, iir_mask);
3385 I915_WRITE(VLV_IIR, iir_mask);
3386 POSTING_READ(VLV_IIR);
3387
3388 pipestat_mask = PLANE_FLIP_DONE_INT_STATUS_VLV |
3389 PIPE_CRC_DONE_INTERRUPT_STATUS;
3390
3391 i915_disable_pipestat(dev_priv, PIPE_A, pipestat_mask |
3392 PIPE_GMBUS_INTERRUPT_STATUS);
3393 i915_disable_pipestat(dev_priv, PIPE_B, pipestat_mask);
3394
3395 pipestat_mask = PIPESTAT_INT_STATUS_MASK |
3396 PIPE_FIFO_UNDERRUN_STATUS;
3397 I915_WRITE(PIPESTAT(PIPE_A), pipestat_mask);
3398 I915_WRITE(PIPESTAT(PIPE_B), pipestat_mask);
3399 POSTING_READ(PIPESTAT(PIPE_A));
3400}
3401
3402void valleyview_enable_display_irqs(struct drm_i915_private *dev_priv)
3403{
3404 assert_spin_locked(&dev_priv->irq_lock);
3405
3406 if (dev_priv->display_irqs_enabled)
3407 return;
3408
3409 dev_priv->display_irqs_enabled = true;
3410
Imre Deak950eaba2014-09-08 15:21:09 +03003411 if (intel_irqs_enabled(dev_priv))
Imre Deakf8b79e52014-03-04 19:23:07 +02003412 valleyview_display_irqs_install(dev_priv);
3413}
3414
3415void valleyview_disable_display_irqs(struct drm_i915_private *dev_priv)
3416{
3417 assert_spin_locked(&dev_priv->irq_lock);
3418
3419 if (!dev_priv->display_irqs_enabled)
3420 return;
3421
3422 dev_priv->display_irqs_enabled = false;
3423
Imre Deak950eaba2014-09-08 15:21:09 +03003424 if (intel_irqs_enabled(dev_priv))
Imre Deakf8b79e52014-03-04 19:23:07 +02003425 valleyview_display_irqs_uninstall(dev_priv);
3426}
3427
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003428static int valleyview_irq_postinstall(struct drm_device *dev)
3429{
Jani Nikula2d1013d2014-03-31 14:27:17 +03003430 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003431
Imre Deakf8b79e52014-03-04 19:23:07 +02003432 dev_priv->irq_mask = ~0;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003433
Daniel Vetter20afbda2012-12-11 14:05:07 +01003434 I915_WRITE(PORT_HOTPLUG_EN, 0);
3435 POSTING_READ(PORT_HOTPLUG_EN);
3436
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003437 I915_WRITE(VLV_IMR, dev_priv->irq_mask);
Imre Deakf8b79e52014-03-04 19:23:07 +02003438 I915_WRITE(VLV_IER, ~dev_priv->irq_mask);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003439 I915_WRITE(VLV_IIR, 0xffffffff);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003440 POSTING_READ(VLV_IER);
3441
Daniel Vetterb79480b2013-06-27 17:52:10 +02003442 /* Interrupt setup is already guaranteed to be single-threaded, this is
3443 * just to make the assert_spin_locked check happy. */
Daniel Vetterd6207432014-09-15 14:55:27 +02003444 spin_lock_irq(&dev_priv->irq_lock);
Imre Deakf8b79e52014-03-04 19:23:07 +02003445 if (dev_priv->display_irqs_enabled)
3446 valleyview_display_irqs_install(dev_priv);
Daniel Vetterd6207432014-09-15 14:55:27 +02003447 spin_unlock_irq(&dev_priv->irq_lock);
Jesse Barnes31acc7f2012-06-20 10:53:11 -07003448
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003449 I915_WRITE(VLV_IIR, 0xffffffff);
3450 I915_WRITE(VLV_IIR, 0xffffffff);
3451
Daniel Vetter0a9a8c92013-07-12 22:43:26 +02003452 gen5_gt_irq_postinstall(dev);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003453
3454 /* ack & enable invalid PTE error interrupts */
3455#if 0 /* FIXME: add support to irq handler for checking these bits */
3456 I915_WRITE(DPINVGTT, DPINVGTT_STATUS_MASK);
3457 I915_WRITE(DPINVGTT, DPINVGTT_EN_MASK);
3458#endif
3459
3460 I915_WRITE(VLV_MASTER_IER, MASTER_INTERRUPT_ENABLE);
Daniel Vetter20afbda2012-12-11 14:05:07 +01003461
3462 return 0;
3463}
3464
Ben Widawskyabd58f02013-11-02 21:07:09 -07003465static void gen8_gt_irq_postinstall(struct drm_i915_private *dev_priv)
3466{
Ben Widawskyabd58f02013-11-02 21:07:09 -07003467 /* These are interrupts we'll toggle with the ring mask register */
3468 uint32_t gt_interrupts[] = {
3469 GT_RENDER_USER_INTERRUPT << GEN8_RCS_IRQ_SHIFT |
Oscar Mateo73d477f2014-07-24 17:04:31 +01003470 GT_CONTEXT_SWITCH_INTERRUPT << GEN8_RCS_IRQ_SHIFT |
Ben Widawskyabd58f02013-11-02 21:07:09 -07003471 GT_RENDER_L3_PARITY_ERROR_INTERRUPT |
Oscar Mateo73d477f2014-07-24 17:04:31 +01003472 GT_RENDER_USER_INTERRUPT << GEN8_BCS_IRQ_SHIFT |
3473 GT_CONTEXT_SWITCH_INTERRUPT << GEN8_BCS_IRQ_SHIFT,
Ben Widawskyabd58f02013-11-02 21:07:09 -07003474 GT_RENDER_USER_INTERRUPT << GEN8_VCS1_IRQ_SHIFT |
Oscar Mateo73d477f2014-07-24 17:04:31 +01003475 GT_CONTEXT_SWITCH_INTERRUPT << GEN8_VCS1_IRQ_SHIFT |
3476 GT_RENDER_USER_INTERRUPT << GEN8_VCS2_IRQ_SHIFT |
3477 GT_CONTEXT_SWITCH_INTERRUPT << GEN8_VCS2_IRQ_SHIFT,
Ben Widawskyabd58f02013-11-02 21:07:09 -07003478 0,
Oscar Mateo73d477f2014-07-24 17:04:31 +01003479 GT_RENDER_USER_INTERRUPT << GEN8_VECS_IRQ_SHIFT |
3480 GT_CONTEXT_SWITCH_INTERRUPT << GEN8_VECS_IRQ_SHIFT
Ben Widawskyabd58f02013-11-02 21:07:09 -07003481 };
3482
Ben Widawsky09610212014-05-15 20:58:08 +03003483 dev_priv->pm_irq_mask = 0xffffffff;
Deepak S9a2d2d82014-08-22 08:32:40 +05303484 GEN8_IRQ_INIT_NDX(GT, 0, ~gt_interrupts[0], gt_interrupts[0]);
3485 GEN8_IRQ_INIT_NDX(GT, 1, ~gt_interrupts[1], gt_interrupts[1]);
3486 GEN8_IRQ_INIT_NDX(GT, 2, dev_priv->pm_irq_mask, dev_priv->pm_rps_events);
3487 GEN8_IRQ_INIT_NDX(GT, 3, ~gt_interrupts[3], gt_interrupts[3]);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003488}
3489
3490static void gen8_de_irq_postinstall(struct drm_i915_private *dev_priv)
3491{
Damien Lespiau770de832014-03-20 20:45:01 +00003492 uint32_t de_pipe_masked = GEN8_PIPE_CDCLK_CRC_DONE;
3493 uint32_t de_pipe_enables;
Ben Widawskyabd58f02013-11-02 21:07:09 -07003494 int pipe;
Damien Lespiau770de832014-03-20 20:45:01 +00003495
3496 if (IS_GEN9(dev_priv))
3497 de_pipe_masked |= GEN9_PIPE_PLANE1_FLIP_DONE |
3498 GEN9_DE_PIPE_IRQ_FAULT_ERRORS;
3499 else
3500 de_pipe_masked |= GEN8_PIPE_PRIMARY_FLIP_DONE |
3501 GEN8_DE_PIPE_IRQ_FAULT_ERRORS;
3502
3503 de_pipe_enables = de_pipe_masked | GEN8_PIPE_VBLANK |
3504 GEN8_PIPE_FIFO_UNDERRUN;
3505
Daniel Vetter13b3a0a2013-11-07 15:31:52 +01003506 dev_priv->de_irq_mask[PIPE_A] = ~de_pipe_masked;
3507 dev_priv->de_irq_mask[PIPE_B] = ~de_pipe_masked;
3508 dev_priv->de_irq_mask[PIPE_C] = ~de_pipe_masked;
Ben Widawskyabd58f02013-11-02 21:07:09 -07003509
Damien Lespiau055e3932014-08-18 13:49:10 +01003510 for_each_pipe(dev_priv, pipe)
Daniel Vetterf458ebb2014-09-30 10:56:39 +02003511 if (intel_display_power_is_enabled(dev_priv,
Paulo Zanoni813bde42014-07-04 11:50:29 -03003512 POWER_DOMAIN_PIPE(pipe)))
3513 GEN8_IRQ_INIT_NDX(DE_PIPE, pipe,
3514 dev_priv->de_irq_mask[pipe],
3515 de_pipe_enables);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003516
Paulo Zanoni35079892014-04-01 15:37:15 -03003517 GEN5_IRQ_INIT(GEN8_DE_PORT_, ~GEN8_AUX_CHANNEL_A, GEN8_AUX_CHANNEL_A);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003518}
3519
3520static int gen8_irq_postinstall(struct drm_device *dev)
3521{
3522 struct drm_i915_private *dev_priv = dev->dev_private;
3523
Paulo Zanoni622364b2014-04-01 15:37:22 -03003524 ibx_irq_pre_postinstall(dev);
3525
Ben Widawskyabd58f02013-11-02 21:07:09 -07003526 gen8_gt_irq_postinstall(dev_priv);
3527 gen8_de_irq_postinstall(dev_priv);
3528
3529 ibx_irq_postinstall(dev);
3530
3531 I915_WRITE(GEN8_MASTER_IRQ, DE_MASTER_IRQ_CONTROL);
3532 POSTING_READ(GEN8_MASTER_IRQ);
3533
3534 return 0;
3535}
3536
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003537static int cherryview_irq_postinstall(struct drm_device *dev)
3538{
3539 struct drm_i915_private *dev_priv = dev->dev_private;
3540 u32 enable_mask = I915_DISPLAY_PORT_INTERRUPT |
3541 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003542 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
Ville Syrjälä3278f672014-04-09 13:28:49 +03003543 I915_DISPLAY_PIPE_C_EVENT_INTERRUPT;
3544 u32 pipestat_enable = PLANE_FLIP_DONE_INT_STATUS_VLV |
3545 PIPE_CRC_DONE_INTERRUPT_STATUS;
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003546 int pipe;
3547
3548 /*
3549 * Leave vblank interrupts masked initially. enable/disable will
3550 * toggle them based on usage.
3551 */
Ville Syrjälä3278f672014-04-09 13:28:49 +03003552 dev_priv->irq_mask = ~enable_mask;
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003553
Damien Lespiau055e3932014-08-18 13:49:10 +01003554 for_each_pipe(dev_priv, pipe)
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003555 I915_WRITE(PIPESTAT(pipe), 0xffff);
3556
Daniel Vetterd6207432014-09-15 14:55:27 +02003557 spin_lock_irq(&dev_priv->irq_lock);
Ville Syrjälä3278f672014-04-09 13:28:49 +03003558 i915_enable_pipestat(dev_priv, PIPE_A, PIPE_GMBUS_INTERRUPT_STATUS);
Damien Lespiau055e3932014-08-18 13:49:10 +01003559 for_each_pipe(dev_priv, pipe)
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003560 i915_enable_pipestat(dev_priv, pipe, pipestat_enable);
Daniel Vetterd6207432014-09-15 14:55:27 +02003561 spin_unlock_irq(&dev_priv->irq_lock);
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003562
3563 I915_WRITE(VLV_IIR, 0xffffffff);
3564 I915_WRITE(VLV_IMR, dev_priv->irq_mask);
3565 I915_WRITE(VLV_IER, enable_mask);
3566
3567 gen8_gt_irq_postinstall(dev_priv);
3568
3569 I915_WRITE(GEN8_MASTER_IRQ, MASTER_INTERRUPT_ENABLE);
3570 POSTING_READ(GEN8_MASTER_IRQ);
3571
3572 return 0;
3573}
3574
Ben Widawskyabd58f02013-11-02 21:07:09 -07003575static void gen8_irq_uninstall(struct drm_device *dev)
3576{
3577 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawskyabd58f02013-11-02 21:07:09 -07003578
3579 if (!dev_priv)
3580 return;
3581
Paulo Zanoni823f6b32014-04-01 15:37:26 -03003582 gen8_irq_reset(dev);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003583}
3584
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003585static void valleyview_irq_uninstall(struct drm_device *dev)
3586{
Jani Nikula2d1013d2014-03-31 14:27:17 +03003587 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003588 int pipe;
3589
3590 if (!dev_priv)
3591 return;
3592
Imre Deak843d0e72014-04-14 20:24:23 +03003593 I915_WRITE(VLV_MASTER_IER, 0);
3594
Damien Lespiau055e3932014-08-18 13:49:10 +01003595 for_each_pipe(dev_priv, pipe)
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003596 I915_WRITE(PIPESTAT(pipe), 0xffff);
3597
3598 I915_WRITE(HWSTAM, 0xffffffff);
3599 I915_WRITE(PORT_HOTPLUG_EN, 0);
3600 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
Imre Deakf8b79e52014-03-04 19:23:07 +02003601
Daniel Vetterd6207432014-09-15 14:55:27 +02003602 /* Interrupt setup is already guaranteed to be single-threaded, this is
3603 * just to make the assert_spin_locked check happy. */
3604 spin_lock_irq(&dev_priv->irq_lock);
Imre Deakf8b79e52014-03-04 19:23:07 +02003605 if (dev_priv->display_irqs_enabled)
3606 valleyview_display_irqs_uninstall(dev_priv);
Daniel Vetterd6207432014-09-15 14:55:27 +02003607 spin_unlock_irq(&dev_priv->irq_lock);
Imre Deakf8b79e52014-03-04 19:23:07 +02003608
3609 dev_priv->irq_mask = 0;
3610
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003611 I915_WRITE(VLV_IIR, 0xffffffff);
3612 I915_WRITE(VLV_IMR, 0xffffffff);
3613 I915_WRITE(VLV_IER, 0x0);
3614 POSTING_READ(VLV_IER);
3615}
3616
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003617static void cherryview_irq_uninstall(struct drm_device *dev)
3618{
3619 struct drm_i915_private *dev_priv = dev->dev_private;
3620 int pipe;
3621
3622 if (!dev_priv)
3623 return;
3624
3625 I915_WRITE(GEN8_MASTER_IRQ, 0);
3626 POSTING_READ(GEN8_MASTER_IRQ);
3627
3628#define GEN8_IRQ_FINI_NDX(type, which) \
3629do { \
3630 I915_WRITE(GEN8_##type##_IMR(which), 0xffffffff); \
3631 I915_WRITE(GEN8_##type##_IER(which), 0); \
3632 I915_WRITE(GEN8_##type##_IIR(which), 0xffffffff); \
3633 POSTING_READ(GEN8_##type##_IIR(which)); \
3634 I915_WRITE(GEN8_##type##_IIR(which), 0xffffffff); \
3635} while (0)
3636
3637#define GEN8_IRQ_FINI(type) \
3638do { \
3639 I915_WRITE(GEN8_##type##_IMR, 0xffffffff); \
3640 I915_WRITE(GEN8_##type##_IER, 0); \
3641 I915_WRITE(GEN8_##type##_IIR, 0xffffffff); \
3642 POSTING_READ(GEN8_##type##_IIR); \
3643 I915_WRITE(GEN8_##type##_IIR, 0xffffffff); \
3644} while (0)
3645
3646 GEN8_IRQ_FINI_NDX(GT, 0);
3647 GEN8_IRQ_FINI_NDX(GT, 1);
3648 GEN8_IRQ_FINI_NDX(GT, 2);
3649 GEN8_IRQ_FINI_NDX(GT, 3);
3650
3651 GEN8_IRQ_FINI(PCU);
3652
3653#undef GEN8_IRQ_FINI
3654#undef GEN8_IRQ_FINI_NDX
3655
3656 I915_WRITE(PORT_HOTPLUG_EN, 0);
3657 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
3658
Damien Lespiau055e3932014-08-18 13:49:10 +01003659 for_each_pipe(dev_priv, pipe)
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003660 I915_WRITE(PIPESTAT(pipe), 0xffff);
3661
3662 I915_WRITE(VLV_IMR, 0xffffffff);
3663 I915_WRITE(VLV_IER, 0x0);
3664 I915_WRITE(VLV_IIR, 0xffffffff);
3665 POSTING_READ(VLV_IIR);
3666}
3667
Jesse Barnesf71d4af2011-06-28 13:00:41 -07003668static void ironlake_irq_uninstall(struct drm_device *dev)
Zhenyu Wang036a4a72009-06-08 14:40:19 +08003669{
Jani Nikula2d1013d2014-03-31 14:27:17 +03003670 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes46979952011-04-07 13:53:55 -07003671
3672 if (!dev_priv)
3673 return;
3674
Paulo Zanonibe30b292014-04-01 15:37:25 -03003675 ironlake_irq_reset(dev);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08003676}
3677
Chris Wilsonc2798b12012-04-22 21:13:57 +01003678static void i8xx_irq_preinstall(struct drm_device * dev)
3679{
Jani Nikula2d1013d2014-03-31 14:27:17 +03003680 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonc2798b12012-04-22 21:13:57 +01003681 int pipe;
3682
Damien Lespiau055e3932014-08-18 13:49:10 +01003683 for_each_pipe(dev_priv, pipe)
Chris Wilsonc2798b12012-04-22 21:13:57 +01003684 I915_WRITE(PIPESTAT(pipe), 0);
3685 I915_WRITE16(IMR, 0xffff);
3686 I915_WRITE16(IER, 0x0);
3687 POSTING_READ16(IER);
3688}
3689
3690static int i8xx_irq_postinstall(struct drm_device *dev)
3691{
Jani Nikula2d1013d2014-03-31 14:27:17 +03003692 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonc2798b12012-04-22 21:13:57 +01003693
Chris Wilsonc2798b12012-04-22 21:13:57 +01003694 I915_WRITE16(EMR,
3695 ~(I915_ERROR_PAGE_TABLE | I915_ERROR_MEMORY_REFRESH));
3696
3697 /* Unmask the interrupts that we always want on. */
3698 dev_priv->irq_mask =
3699 ~(I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
3700 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
3701 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
3702 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT |
3703 I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT);
3704 I915_WRITE16(IMR, dev_priv->irq_mask);
3705
3706 I915_WRITE16(IER,
3707 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
3708 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
3709 I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT |
3710 I915_USER_INTERRUPT);
3711 POSTING_READ16(IER);
3712
Daniel Vetter379ef822013-10-16 22:55:56 +02003713 /* Interrupt setup is already guaranteed to be single-threaded, this is
3714 * just to make the assert_spin_locked check happy. */
Daniel Vetterd6207432014-09-15 14:55:27 +02003715 spin_lock_irq(&dev_priv->irq_lock);
Imre Deak755e9012014-02-10 18:42:47 +02003716 i915_enable_pipestat(dev_priv, PIPE_A, PIPE_CRC_DONE_INTERRUPT_STATUS);
3717 i915_enable_pipestat(dev_priv, PIPE_B, PIPE_CRC_DONE_INTERRUPT_STATUS);
Daniel Vetterd6207432014-09-15 14:55:27 +02003718 spin_unlock_irq(&dev_priv->irq_lock);
Daniel Vetter379ef822013-10-16 22:55:56 +02003719
Chris Wilsonc2798b12012-04-22 21:13:57 +01003720 return 0;
3721}
3722
Ville Syrjälä90a72f82013-02-19 23:16:44 +02003723/*
3724 * Returns true when a page flip has completed.
3725 */
3726static bool i8xx_handle_vblank(struct drm_device *dev,
Ville Syrjälä1f1c2e22013-11-28 17:30:01 +02003727 int plane, int pipe, u32 iir)
Ville Syrjälä90a72f82013-02-19 23:16:44 +02003728{
Jani Nikula2d1013d2014-03-31 14:27:17 +03003729 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä1f1c2e22013-11-28 17:30:01 +02003730 u16 flip_pending = DISPLAY_PLANE_FLIP_PENDING(plane);
Ville Syrjälä90a72f82013-02-19 23:16:44 +02003731
Ville Syrjälä8d7849d2014-04-29 13:35:46 +03003732 if (!intel_pipe_handle_vblank(dev, pipe))
Ville Syrjälä90a72f82013-02-19 23:16:44 +02003733 return false;
3734
3735 if ((iir & flip_pending) == 0)
Chris Wilsond6bbafa2014-09-05 07:13:24 +01003736 goto check_page_flip;
Ville Syrjälä90a72f82013-02-19 23:16:44 +02003737
Ville Syrjälä1f1c2e22013-11-28 17:30:01 +02003738 intel_prepare_page_flip(dev, plane);
Ville Syrjälä90a72f82013-02-19 23:16:44 +02003739
3740 /* We detect FlipDone by looking for the change in PendingFlip from '1'
3741 * to '0' on the following vblank, i.e. IIR has the Pendingflip
3742 * asserted following the MI_DISPLAY_FLIP, but ISR is deasserted, hence
3743 * the flip is completed (no longer pending). Since this doesn't raise
3744 * an interrupt per se, we watch for the change at vblank.
3745 */
3746 if (I915_READ16(ISR) & flip_pending)
Chris Wilsond6bbafa2014-09-05 07:13:24 +01003747 goto check_page_flip;
Ville Syrjälä90a72f82013-02-19 23:16:44 +02003748
3749 intel_finish_page_flip(dev, pipe);
Ville Syrjälä90a72f82013-02-19 23:16:44 +02003750 return true;
Chris Wilsond6bbafa2014-09-05 07:13:24 +01003751
3752check_page_flip:
3753 intel_check_page_flip(dev, pipe);
3754 return false;
Ville Syrjälä90a72f82013-02-19 23:16:44 +02003755}
3756
Daniel Vetterff1f5252012-10-02 15:10:55 +02003757static irqreturn_t i8xx_irq_handler(int irq, void *arg)
Chris Wilsonc2798b12012-04-22 21:13:57 +01003758{
Daniel Vetter45a83f82014-05-12 19:17:55 +02003759 struct drm_device *dev = arg;
Jani Nikula2d1013d2014-03-31 14:27:17 +03003760 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonc2798b12012-04-22 21:13:57 +01003761 u16 iir, new_iir;
3762 u32 pipe_stats[2];
Chris Wilsonc2798b12012-04-22 21:13:57 +01003763 int pipe;
3764 u16 flip_mask =
3765 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
3766 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT;
3767
Chris Wilsonc2798b12012-04-22 21:13:57 +01003768 iir = I915_READ16(IIR);
3769 if (iir == 0)
3770 return IRQ_NONE;
3771
3772 while (iir & ~flip_mask) {
3773 /* Can't rely on pipestat interrupt bit in iir as it might
3774 * have been cleared after the pipestat interrupt was received.
3775 * It doesn't set the bit in iir again, but it still produces
3776 * interrupts (for non-MSI).
3777 */
Daniel Vetter222c7f52014-09-15 14:55:28 +02003778 spin_lock(&dev_priv->irq_lock);
Chris Wilsonc2798b12012-04-22 21:13:57 +01003779 if (iir & I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT)
Mika Kuoppala58174462014-02-25 17:11:26 +02003780 i915_handle_error(dev, false,
3781 "Command parser error, iir 0x%08x",
3782 iir);
Chris Wilsonc2798b12012-04-22 21:13:57 +01003783
Damien Lespiau055e3932014-08-18 13:49:10 +01003784 for_each_pipe(dev_priv, pipe) {
Chris Wilsonc2798b12012-04-22 21:13:57 +01003785 int reg = PIPESTAT(pipe);
3786 pipe_stats[pipe] = I915_READ(reg);
3787
3788 /*
3789 * Clear the PIPE*STAT regs before the IIR
3790 */
Ville Syrjälä2d9d2b02014-01-17 11:44:31 +02003791 if (pipe_stats[pipe] & 0x8000ffff)
Chris Wilsonc2798b12012-04-22 21:13:57 +01003792 I915_WRITE(reg, pipe_stats[pipe]);
Chris Wilsonc2798b12012-04-22 21:13:57 +01003793 }
Daniel Vetter222c7f52014-09-15 14:55:28 +02003794 spin_unlock(&dev_priv->irq_lock);
Chris Wilsonc2798b12012-04-22 21:13:57 +01003795
3796 I915_WRITE16(IIR, iir & ~flip_mask);
3797 new_iir = I915_READ16(IIR); /* Flush posted writes */
3798
Daniel Vetterd05c6172012-04-26 23:28:09 +02003799 i915_update_dri1_breadcrumb(dev);
Chris Wilsonc2798b12012-04-22 21:13:57 +01003800
3801 if (iir & I915_USER_INTERRUPT)
3802 notify_ring(dev, &dev_priv->ring[RCS]);
3803
Damien Lespiau055e3932014-08-18 13:49:10 +01003804 for_each_pipe(dev_priv, pipe) {
Ville Syrjälä1f1c2e22013-11-28 17:30:01 +02003805 int plane = pipe;
Daniel Vetter3a77c4c2014-01-10 08:50:12 +01003806 if (HAS_FBC(dev))
Ville Syrjälä1f1c2e22013-11-28 17:30:01 +02003807 plane = !plane;
3808
Daniel Vetter4356d582013-10-16 22:55:55 +02003809 if (pipe_stats[pipe] & PIPE_VBLANK_INTERRUPT_STATUS &&
Ville Syrjälä1f1c2e22013-11-28 17:30:01 +02003810 i8xx_handle_vblank(dev, plane, pipe, iir))
3811 flip_mask &= ~DISPLAY_PLANE_FLIP_PENDING(plane);
Chris Wilsonc2798b12012-04-22 21:13:57 +01003812
Daniel Vetter4356d582013-10-16 22:55:55 +02003813 if (pipe_stats[pipe] & PIPE_CRC_DONE_INTERRUPT_STATUS)
Daniel Vetter277de952013-10-18 16:37:07 +02003814 i9xx_pipe_crc_irq_handler(dev, pipe);
Ville Syrjälä2d9d2b02014-01-17 11:44:31 +02003815
Daniel Vetter1f7247c2014-09-30 10:56:48 +02003816 if (pipe_stats[pipe] & PIPE_FIFO_UNDERRUN_STATUS)
3817 intel_cpu_fifo_underrun_irq_handler(dev_priv,
3818 pipe);
Daniel Vetter4356d582013-10-16 22:55:55 +02003819 }
Chris Wilsonc2798b12012-04-22 21:13:57 +01003820
3821 iir = new_iir;
3822 }
3823
3824 return IRQ_HANDLED;
3825}
3826
3827static void i8xx_irq_uninstall(struct drm_device * dev)
3828{
Jani Nikula2d1013d2014-03-31 14:27:17 +03003829 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonc2798b12012-04-22 21:13:57 +01003830 int pipe;
3831
Damien Lespiau055e3932014-08-18 13:49:10 +01003832 for_each_pipe(dev_priv, pipe) {
Chris Wilsonc2798b12012-04-22 21:13:57 +01003833 /* Clear enable bits; then clear status bits */
3834 I915_WRITE(PIPESTAT(pipe), 0);
3835 I915_WRITE(PIPESTAT(pipe), I915_READ(PIPESTAT(pipe)));
3836 }
3837 I915_WRITE16(IMR, 0xffff);
3838 I915_WRITE16(IER, 0x0);
3839 I915_WRITE16(IIR, I915_READ16(IIR));
3840}
3841
Chris Wilsona266c7d2012-04-24 22:59:44 +01003842static void i915_irq_preinstall(struct drm_device * dev)
3843{
Jani Nikula2d1013d2014-03-31 14:27:17 +03003844 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsona266c7d2012-04-24 22:59:44 +01003845 int pipe;
3846
Chris Wilsona266c7d2012-04-24 22:59:44 +01003847 if (I915_HAS_HOTPLUG(dev)) {
3848 I915_WRITE(PORT_HOTPLUG_EN, 0);
3849 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
3850 }
3851
Chris Wilson00d98eb2012-04-24 22:59:48 +01003852 I915_WRITE16(HWSTAM, 0xeffe);
Damien Lespiau055e3932014-08-18 13:49:10 +01003853 for_each_pipe(dev_priv, pipe)
Chris Wilsona266c7d2012-04-24 22:59:44 +01003854 I915_WRITE(PIPESTAT(pipe), 0);
3855 I915_WRITE(IMR, 0xffffffff);
3856 I915_WRITE(IER, 0x0);
3857 POSTING_READ(IER);
3858}
3859
3860static int i915_irq_postinstall(struct drm_device *dev)
3861{
Jani Nikula2d1013d2014-03-31 14:27:17 +03003862 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson38bde182012-04-24 22:59:50 +01003863 u32 enable_mask;
Chris Wilsona266c7d2012-04-24 22:59:44 +01003864
Chris Wilson38bde182012-04-24 22:59:50 +01003865 I915_WRITE(EMR, ~(I915_ERROR_PAGE_TABLE | I915_ERROR_MEMORY_REFRESH));
3866
3867 /* Unmask the interrupts that we always want on. */
3868 dev_priv->irq_mask =
3869 ~(I915_ASLE_INTERRUPT |
3870 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
3871 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
3872 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
3873 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT |
3874 I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT);
3875
3876 enable_mask =
3877 I915_ASLE_INTERRUPT |
3878 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
3879 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
3880 I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT |
3881 I915_USER_INTERRUPT;
3882
Chris Wilsona266c7d2012-04-24 22:59:44 +01003883 if (I915_HAS_HOTPLUG(dev)) {
Daniel Vetter20afbda2012-12-11 14:05:07 +01003884 I915_WRITE(PORT_HOTPLUG_EN, 0);
3885 POSTING_READ(PORT_HOTPLUG_EN);
3886
Chris Wilsona266c7d2012-04-24 22:59:44 +01003887 /* Enable in IER... */
3888 enable_mask |= I915_DISPLAY_PORT_INTERRUPT;
3889 /* and unmask in IMR */
3890 dev_priv->irq_mask &= ~I915_DISPLAY_PORT_INTERRUPT;
3891 }
3892
Chris Wilsona266c7d2012-04-24 22:59:44 +01003893 I915_WRITE(IMR, dev_priv->irq_mask);
3894 I915_WRITE(IER, enable_mask);
3895 POSTING_READ(IER);
3896
Jani Nikulaf49e38d2013-04-29 13:02:54 +03003897 i915_enable_asle_pipestat(dev);
Daniel Vetter20afbda2012-12-11 14:05:07 +01003898
Daniel Vetter379ef822013-10-16 22:55:56 +02003899 /* Interrupt setup is already guaranteed to be single-threaded, this is
3900 * just to make the assert_spin_locked check happy. */
Daniel Vetterd6207432014-09-15 14:55:27 +02003901 spin_lock_irq(&dev_priv->irq_lock);
Imre Deak755e9012014-02-10 18:42:47 +02003902 i915_enable_pipestat(dev_priv, PIPE_A, PIPE_CRC_DONE_INTERRUPT_STATUS);
3903 i915_enable_pipestat(dev_priv, PIPE_B, PIPE_CRC_DONE_INTERRUPT_STATUS);
Daniel Vetterd6207432014-09-15 14:55:27 +02003904 spin_unlock_irq(&dev_priv->irq_lock);
Daniel Vetter379ef822013-10-16 22:55:56 +02003905
Daniel Vetter20afbda2012-12-11 14:05:07 +01003906 return 0;
3907}
3908
Ville Syrjälä90a72f82013-02-19 23:16:44 +02003909/*
3910 * Returns true when a page flip has completed.
3911 */
3912static bool i915_handle_vblank(struct drm_device *dev,
3913 int plane, int pipe, u32 iir)
3914{
Jani Nikula2d1013d2014-03-31 14:27:17 +03003915 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä90a72f82013-02-19 23:16:44 +02003916 u32 flip_pending = DISPLAY_PLANE_FLIP_PENDING(plane);
3917
Ville Syrjälä8d7849d2014-04-29 13:35:46 +03003918 if (!intel_pipe_handle_vblank(dev, pipe))
Ville Syrjälä90a72f82013-02-19 23:16:44 +02003919 return false;
3920
3921 if ((iir & flip_pending) == 0)
Chris Wilsond6bbafa2014-09-05 07:13:24 +01003922 goto check_page_flip;
Ville Syrjälä90a72f82013-02-19 23:16:44 +02003923
3924 intel_prepare_page_flip(dev, plane);
3925
3926 /* We detect FlipDone by looking for the change in PendingFlip from '1'
3927 * to '0' on the following vblank, i.e. IIR has the Pendingflip
3928 * asserted following the MI_DISPLAY_FLIP, but ISR is deasserted, hence
3929 * the flip is completed (no longer pending). Since this doesn't raise
3930 * an interrupt per se, we watch for the change at vblank.
3931 */
3932 if (I915_READ(ISR) & flip_pending)
Chris Wilsond6bbafa2014-09-05 07:13:24 +01003933 goto check_page_flip;
Ville Syrjälä90a72f82013-02-19 23:16:44 +02003934
3935 intel_finish_page_flip(dev, pipe);
Ville Syrjälä90a72f82013-02-19 23:16:44 +02003936 return true;
Chris Wilsond6bbafa2014-09-05 07:13:24 +01003937
3938check_page_flip:
3939 intel_check_page_flip(dev, pipe);
3940 return false;
Ville Syrjälä90a72f82013-02-19 23:16:44 +02003941}
3942
Daniel Vetterff1f5252012-10-02 15:10:55 +02003943static irqreturn_t i915_irq_handler(int irq, void *arg)
Chris Wilsona266c7d2012-04-24 22:59:44 +01003944{
Daniel Vetter45a83f82014-05-12 19:17:55 +02003945 struct drm_device *dev = arg;
Jani Nikula2d1013d2014-03-31 14:27:17 +03003946 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson8291ee92012-04-24 22:59:47 +01003947 u32 iir, new_iir, pipe_stats[I915_MAX_PIPES];
Chris Wilson38bde182012-04-24 22:59:50 +01003948 u32 flip_mask =
3949 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
3950 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT;
Chris Wilson38bde182012-04-24 22:59:50 +01003951 int pipe, ret = IRQ_NONE;
Chris Wilsona266c7d2012-04-24 22:59:44 +01003952
Chris Wilsona266c7d2012-04-24 22:59:44 +01003953 iir = I915_READ(IIR);
Chris Wilson38bde182012-04-24 22:59:50 +01003954 do {
3955 bool irq_received = (iir & ~flip_mask) != 0;
Chris Wilson8291ee92012-04-24 22:59:47 +01003956 bool blc_event = false;
Chris Wilsona266c7d2012-04-24 22:59:44 +01003957
3958 /* Can't rely on pipestat interrupt bit in iir as it might
3959 * have been cleared after the pipestat interrupt was received.
3960 * It doesn't set the bit in iir again, but it still produces
3961 * interrupts (for non-MSI).
3962 */
Daniel Vetter222c7f52014-09-15 14:55:28 +02003963 spin_lock(&dev_priv->irq_lock);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003964 if (iir & I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT)
Mika Kuoppala58174462014-02-25 17:11:26 +02003965 i915_handle_error(dev, false,
3966 "Command parser error, iir 0x%08x",
3967 iir);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003968
Damien Lespiau055e3932014-08-18 13:49:10 +01003969 for_each_pipe(dev_priv, pipe) {
Chris Wilsona266c7d2012-04-24 22:59:44 +01003970 int reg = PIPESTAT(pipe);
3971 pipe_stats[pipe] = I915_READ(reg);
3972
Chris Wilson38bde182012-04-24 22:59:50 +01003973 /* Clear the PIPE*STAT regs before the IIR */
Chris Wilsona266c7d2012-04-24 22:59:44 +01003974 if (pipe_stats[pipe] & 0x8000ffff) {
Chris Wilsona266c7d2012-04-24 22:59:44 +01003975 I915_WRITE(reg, pipe_stats[pipe]);
Chris Wilson38bde182012-04-24 22:59:50 +01003976 irq_received = true;
Chris Wilsona266c7d2012-04-24 22:59:44 +01003977 }
3978 }
Daniel Vetter222c7f52014-09-15 14:55:28 +02003979 spin_unlock(&dev_priv->irq_lock);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003980
3981 if (!irq_received)
3982 break;
3983
Chris Wilsona266c7d2012-04-24 22:59:44 +01003984 /* Consume port. Then clear IIR or we'll miss events */
Ville Syrjälä16c6c562014-04-01 10:54:36 +03003985 if (I915_HAS_HOTPLUG(dev) &&
3986 iir & I915_DISPLAY_PORT_INTERRUPT)
3987 i9xx_hpd_irq_handler(dev);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003988
Chris Wilson38bde182012-04-24 22:59:50 +01003989 I915_WRITE(IIR, iir & ~flip_mask);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003990 new_iir = I915_READ(IIR); /* Flush posted writes */
3991
Chris Wilsona266c7d2012-04-24 22:59:44 +01003992 if (iir & I915_USER_INTERRUPT)
3993 notify_ring(dev, &dev_priv->ring[RCS]);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003994
Damien Lespiau055e3932014-08-18 13:49:10 +01003995 for_each_pipe(dev_priv, pipe) {
Chris Wilson38bde182012-04-24 22:59:50 +01003996 int plane = pipe;
Daniel Vetter3a77c4c2014-01-10 08:50:12 +01003997 if (HAS_FBC(dev))
Chris Wilson38bde182012-04-24 22:59:50 +01003998 plane = !plane;
Ville Syrjälä5e2032d2013-02-19 15:16:38 +02003999
Ville Syrjälä90a72f82013-02-19 23:16:44 +02004000 if (pipe_stats[pipe] & PIPE_VBLANK_INTERRUPT_STATUS &&
4001 i915_handle_vblank(dev, plane, pipe, iir))
4002 flip_mask &= ~DISPLAY_PLANE_FLIP_PENDING(plane);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004003
4004 if (pipe_stats[pipe] & PIPE_LEGACY_BLC_EVENT_STATUS)
4005 blc_event = true;
Daniel Vetter4356d582013-10-16 22:55:55 +02004006
4007 if (pipe_stats[pipe] & PIPE_CRC_DONE_INTERRUPT_STATUS)
Daniel Vetter277de952013-10-18 16:37:07 +02004008 i9xx_pipe_crc_irq_handler(dev, pipe);
Ville Syrjälä2d9d2b02014-01-17 11:44:31 +02004009
Daniel Vetter1f7247c2014-09-30 10:56:48 +02004010 if (pipe_stats[pipe] & PIPE_FIFO_UNDERRUN_STATUS)
4011 intel_cpu_fifo_underrun_irq_handler(dev_priv,
4012 pipe);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004013 }
4014
Chris Wilsona266c7d2012-04-24 22:59:44 +01004015 if (blc_event || (iir & I915_ASLE_INTERRUPT))
4016 intel_opregion_asle_intr(dev);
4017
4018 /* With MSI, interrupts are only generated when iir
4019 * transitions from zero to nonzero. If another bit got
4020 * set while we were handling the existing iir bits, then
4021 * we would never get another interrupt.
4022 *
4023 * This is fine on non-MSI as well, as if we hit this path
4024 * we avoid exiting the interrupt handler only to generate
4025 * another one.
4026 *
4027 * Note that for MSI this could cause a stray interrupt report
4028 * if an interrupt landed in the time between writing IIR and
4029 * the posting read. This should be rare enough to never
4030 * trigger the 99% of 100,000 interrupts test for disabling
4031 * stray interrupts.
4032 */
Chris Wilson38bde182012-04-24 22:59:50 +01004033 ret = IRQ_HANDLED;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004034 iir = new_iir;
Chris Wilson38bde182012-04-24 22:59:50 +01004035 } while (iir & ~flip_mask);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004036
Daniel Vetterd05c6172012-04-26 23:28:09 +02004037 i915_update_dri1_breadcrumb(dev);
Chris Wilson8291ee92012-04-24 22:59:47 +01004038
Chris Wilsona266c7d2012-04-24 22:59:44 +01004039 return ret;
4040}
4041
4042static void i915_irq_uninstall(struct drm_device * dev)
4043{
Jani Nikula2d1013d2014-03-31 14:27:17 +03004044 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004045 int pipe;
4046
Chris Wilsona266c7d2012-04-24 22:59:44 +01004047 if (I915_HAS_HOTPLUG(dev)) {
4048 I915_WRITE(PORT_HOTPLUG_EN, 0);
4049 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
4050 }
4051
Chris Wilson00d98eb2012-04-24 22:59:48 +01004052 I915_WRITE16(HWSTAM, 0xffff);
Damien Lespiau055e3932014-08-18 13:49:10 +01004053 for_each_pipe(dev_priv, pipe) {
Chris Wilson55b39752012-04-24 22:59:49 +01004054 /* Clear enable bits; then clear status bits */
Chris Wilsona266c7d2012-04-24 22:59:44 +01004055 I915_WRITE(PIPESTAT(pipe), 0);
Chris Wilson55b39752012-04-24 22:59:49 +01004056 I915_WRITE(PIPESTAT(pipe), I915_READ(PIPESTAT(pipe)));
4057 }
Chris Wilsona266c7d2012-04-24 22:59:44 +01004058 I915_WRITE(IMR, 0xffffffff);
4059 I915_WRITE(IER, 0x0);
4060
Chris Wilsona266c7d2012-04-24 22:59:44 +01004061 I915_WRITE(IIR, I915_READ(IIR));
4062}
4063
4064static void i965_irq_preinstall(struct drm_device * dev)
4065{
Jani Nikula2d1013d2014-03-31 14:27:17 +03004066 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004067 int pipe;
4068
Chris Wilsonadca4732012-05-11 18:01:31 +01004069 I915_WRITE(PORT_HOTPLUG_EN, 0);
4070 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
Chris Wilsona266c7d2012-04-24 22:59:44 +01004071
4072 I915_WRITE(HWSTAM, 0xeffe);
Damien Lespiau055e3932014-08-18 13:49:10 +01004073 for_each_pipe(dev_priv, pipe)
Chris Wilsona266c7d2012-04-24 22:59:44 +01004074 I915_WRITE(PIPESTAT(pipe), 0);
4075 I915_WRITE(IMR, 0xffffffff);
4076 I915_WRITE(IER, 0x0);
4077 POSTING_READ(IER);
4078}
4079
4080static int i965_irq_postinstall(struct drm_device *dev)
4081{
Jani Nikula2d1013d2014-03-31 14:27:17 +03004082 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonbbba0a92012-04-24 22:59:51 +01004083 u32 enable_mask;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004084 u32 error_mask;
4085
Chris Wilsona266c7d2012-04-24 22:59:44 +01004086 /* Unmask the interrupts that we always want on. */
Chris Wilsonbbba0a92012-04-24 22:59:51 +01004087 dev_priv->irq_mask = ~(I915_ASLE_INTERRUPT |
Chris Wilsonadca4732012-05-11 18:01:31 +01004088 I915_DISPLAY_PORT_INTERRUPT |
Chris Wilsonbbba0a92012-04-24 22:59:51 +01004089 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
4090 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
4091 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
4092 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT |
4093 I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT);
4094
4095 enable_mask = ~dev_priv->irq_mask;
Ville Syrjälä21ad8332013-02-19 15:16:39 +02004096 enable_mask &= ~(I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
4097 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT);
Chris Wilsonbbba0a92012-04-24 22:59:51 +01004098 enable_mask |= I915_USER_INTERRUPT;
4099
4100 if (IS_G4X(dev))
4101 enable_mask |= I915_BSD_USER_INTERRUPT;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004102
Daniel Vetterb79480b2013-06-27 17:52:10 +02004103 /* Interrupt setup is already guaranteed to be single-threaded, this is
4104 * just to make the assert_spin_locked check happy. */
Daniel Vetterd6207432014-09-15 14:55:27 +02004105 spin_lock_irq(&dev_priv->irq_lock);
Imre Deak755e9012014-02-10 18:42:47 +02004106 i915_enable_pipestat(dev_priv, PIPE_A, PIPE_GMBUS_INTERRUPT_STATUS);
4107 i915_enable_pipestat(dev_priv, PIPE_A, PIPE_CRC_DONE_INTERRUPT_STATUS);
4108 i915_enable_pipestat(dev_priv, PIPE_B, PIPE_CRC_DONE_INTERRUPT_STATUS);
Daniel Vetterd6207432014-09-15 14:55:27 +02004109 spin_unlock_irq(&dev_priv->irq_lock);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004110
Chris Wilsona266c7d2012-04-24 22:59:44 +01004111 /*
4112 * Enable some error detection, note the instruction error mask
4113 * bit is reserved, so we leave it masked.
4114 */
4115 if (IS_G4X(dev)) {
4116 error_mask = ~(GM45_ERROR_PAGE_TABLE |
4117 GM45_ERROR_MEM_PRIV |
4118 GM45_ERROR_CP_PRIV |
4119 I915_ERROR_MEMORY_REFRESH);
4120 } else {
4121 error_mask = ~(I915_ERROR_PAGE_TABLE |
4122 I915_ERROR_MEMORY_REFRESH);
4123 }
4124 I915_WRITE(EMR, error_mask);
4125
4126 I915_WRITE(IMR, dev_priv->irq_mask);
4127 I915_WRITE(IER, enable_mask);
4128 POSTING_READ(IER);
4129
Daniel Vetter20afbda2012-12-11 14:05:07 +01004130 I915_WRITE(PORT_HOTPLUG_EN, 0);
4131 POSTING_READ(PORT_HOTPLUG_EN);
4132
Jani Nikulaf49e38d2013-04-29 13:02:54 +03004133 i915_enable_asle_pipestat(dev);
Daniel Vetter20afbda2012-12-11 14:05:07 +01004134
4135 return 0;
4136}
4137
Egbert Eichbac56d52013-02-25 12:06:51 -05004138static void i915_hpd_irq_setup(struct drm_device *dev)
Daniel Vetter20afbda2012-12-11 14:05:07 +01004139{
Jani Nikula2d1013d2014-03-31 14:27:17 +03004140 struct drm_i915_private *dev_priv = dev->dev_private;
Egbert Eichcd569ae2013-04-16 13:36:57 +02004141 struct intel_encoder *intel_encoder;
Daniel Vetter20afbda2012-12-11 14:05:07 +01004142 u32 hotplug_en;
4143
Daniel Vetterb5ea2d52013-06-27 17:52:15 +02004144 assert_spin_locked(&dev_priv->irq_lock);
4145
Egbert Eichbac56d52013-02-25 12:06:51 -05004146 if (I915_HAS_HOTPLUG(dev)) {
4147 hotplug_en = I915_READ(PORT_HOTPLUG_EN);
4148 hotplug_en &= ~HOTPLUG_INT_EN_MASK;
4149 /* Note HDMI and DP share hotplug bits */
Egbert Eiche5868a32013-02-28 04:17:12 -05004150 /* enable bits are the same for all generations */
Damien Lespiaub2784e12014-08-05 11:29:37 +01004151 for_each_intel_encoder(dev, intel_encoder)
Egbert Eichcd569ae2013-04-16 13:36:57 +02004152 if (dev_priv->hpd_stats[intel_encoder->hpd_pin].hpd_mark == HPD_ENABLED)
4153 hotplug_en |= hpd_mask_i915[intel_encoder->hpd_pin];
Egbert Eichbac56d52013-02-25 12:06:51 -05004154 /* Programming the CRT detection parameters tends
4155 to generate a spurious hotplug event about three
4156 seconds later. So just do it once.
4157 */
4158 if (IS_G4X(dev))
4159 hotplug_en |= CRT_HOTPLUG_ACTIVATION_PERIOD_64;
Daniel Vetter85fc95b2013-03-27 15:47:11 +01004160 hotplug_en &= ~CRT_HOTPLUG_VOLTAGE_COMPARE_MASK;
Egbert Eichbac56d52013-02-25 12:06:51 -05004161 hotplug_en |= CRT_HOTPLUG_VOLTAGE_COMPARE_50;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004162
Egbert Eichbac56d52013-02-25 12:06:51 -05004163 /* Ignore TV since it's buggy */
4164 I915_WRITE(PORT_HOTPLUG_EN, hotplug_en);
4165 }
Chris Wilsona266c7d2012-04-24 22:59:44 +01004166}
4167
Daniel Vetterff1f5252012-10-02 15:10:55 +02004168static irqreturn_t i965_irq_handler(int irq, void *arg)
Chris Wilsona266c7d2012-04-24 22:59:44 +01004169{
Daniel Vetter45a83f82014-05-12 19:17:55 +02004170 struct drm_device *dev = arg;
Jani Nikula2d1013d2014-03-31 14:27:17 +03004171 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004172 u32 iir, new_iir;
4173 u32 pipe_stats[I915_MAX_PIPES];
Chris Wilsona266c7d2012-04-24 22:59:44 +01004174 int ret = IRQ_NONE, pipe;
Ville Syrjälä21ad8332013-02-19 15:16:39 +02004175 u32 flip_mask =
4176 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
4177 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004178
Chris Wilsona266c7d2012-04-24 22:59:44 +01004179 iir = I915_READ(IIR);
4180
Chris Wilsona266c7d2012-04-24 22:59:44 +01004181 for (;;) {
Ville Syrjälä501e01d2014-01-17 11:35:15 +02004182 bool irq_received = (iir & ~flip_mask) != 0;
Chris Wilson2c8ba292012-04-24 22:59:46 +01004183 bool blc_event = false;
4184
Chris Wilsona266c7d2012-04-24 22:59:44 +01004185 /* Can't rely on pipestat interrupt bit in iir as it might
4186 * have been cleared after the pipestat interrupt was received.
4187 * It doesn't set the bit in iir again, but it still produces
4188 * interrupts (for non-MSI).
4189 */
Daniel Vetter222c7f52014-09-15 14:55:28 +02004190 spin_lock(&dev_priv->irq_lock);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004191 if (iir & I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT)
Mika Kuoppala58174462014-02-25 17:11:26 +02004192 i915_handle_error(dev, false,
4193 "Command parser error, iir 0x%08x",
4194 iir);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004195
Damien Lespiau055e3932014-08-18 13:49:10 +01004196 for_each_pipe(dev_priv, pipe) {
Chris Wilsona266c7d2012-04-24 22:59:44 +01004197 int reg = PIPESTAT(pipe);
4198 pipe_stats[pipe] = I915_READ(reg);
4199
4200 /*
4201 * Clear the PIPE*STAT regs before the IIR
4202 */
4203 if (pipe_stats[pipe] & 0x8000ffff) {
Chris Wilsona266c7d2012-04-24 22:59:44 +01004204 I915_WRITE(reg, pipe_stats[pipe]);
Ville Syrjälä501e01d2014-01-17 11:35:15 +02004205 irq_received = true;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004206 }
4207 }
Daniel Vetter222c7f52014-09-15 14:55:28 +02004208 spin_unlock(&dev_priv->irq_lock);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004209
4210 if (!irq_received)
4211 break;
4212
4213 ret = IRQ_HANDLED;
4214
4215 /* Consume port. Then clear IIR or we'll miss events */
Ville Syrjälä16c6c562014-04-01 10:54:36 +03004216 if (iir & I915_DISPLAY_PORT_INTERRUPT)
4217 i9xx_hpd_irq_handler(dev);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004218
Ville Syrjälä21ad8332013-02-19 15:16:39 +02004219 I915_WRITE(IIR, iir & ~flip_mask);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004220 new_iir = I915_READ(IIR); /* Flush posted writes */
4221
Chris Wilsona266c7d2012-04-24 22:59:44 +01004222 if (iir & I915_USER_INTERRUPT)
4223 notify_ring(dev, &dev_priv->ring[RCS]);
4224 if (iir & I915_BSD_USER_INTERRUPT)
4225 notify_ring(dev, &dev_priv->ring[VCS]);
4226
Damien Lespiau055e3932014-08-18 13:49:10 +01004227 for_each_pipe(dev_priv, pipe) {
Chris Wilson2c8ba292012-04-24 22:59:46 +01004228 if (pipe_stats[pipe] & PIPE_START_VBLANK_INTERRUPT_STATUS &&
Ville Syrjälä90a72f82013-02-19 23:16:44 +02004229 i915_handle_vblank(dev, pipe, pipe, iir))
4230 flip_mask &= ~DISPLAY_PLANE_FLIP_PENDING(pipe);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004231
4232 if (pipe_stats[pipe] & PIPE_LEGACY_BLC_EVENT_STATUS)
4233 blc_event = true;
Daniel Vetter4356d582013-10-16 22:55:55 +02004234
4235 if (pipe_stats[pipe] & PIPE_CRC_DONE_INTERRUPT_STATUS)
Daniel Vetter277de952013-10-18 16:37:07 +02004236 i9xx_pipe_crc_irq_handler(dev, pipe);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004237
Daniel Vetter1f7247c2014-09-30 10:56:48 +02004238 if (pipe_stats[pipe] & PIPE_FIFO_UNDERRUN_STATUS)
4239 intel_cpu_fifo_underrun_irq_handler(dev_priv, pipe);
Ville Syrjälä2d9d2b02014-01-17 11:44:31 +02004240 }
Chris Wilsona266c7d2012-04-24 22:59:44 +01004241
4242 if (blc_event || (iir & I915_ASLE_INTERRUPT))
4243 intel_opregion_asle_intr(dev);
4244
Daniel Vetter515ac2b2012-12-01 13:53:44 +01004245 if (pipe_stats[0] & PIPE_GMBUS_INTERRUPT_STATUS)
4246 gmbus_irq_handler(dev);
4247
Chris Wilsona266c7d2012-04-24 22:59:44 +01004248 /* With MSI, interrupts are only generated when iir
4249 * transitions from zero to nonzero. If another bit got
4250 * set while we were handling the existing iir bits, then
4251 * we would never get another interrupt.
4252 *
4253 * This is fine on non-MSI as well, as if we hit this path
4254 * we avoid exiting the interrupt handler only to generate
4255 * another one.
4256 *
4257 * Note that for MSI this could cause a stray interrupt report
4258 * if an interrupt landed in the time between writing IIR and
4259 * the posting read. This should be rare enough to never
4260 * trigger the 99% of 100,000 interrupts test for disabling
4261 * stray interrupts.
4262 */
4263 iir = new_iir;
4264 }
4265
Daniel Vetterd05c6172012-04-26 23:28:09 +02004266 i915_update_dri1_breadcrumb(dev);
Chris Wilson2c8ba292012-04-24 22:59:46 +01004267
Chris Wilsona266c7d2012-04-24 22:59:44 +01004268 return ret;
4269}
4270
4271static void i965_irq_uninstall(struct drm_device * dev)
4272{
Jani Nikula2d1013d2014-03-31 14:27:17 +03004273 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004274 int pipe;
4275
4276 if (!dev_priv)
4277 return;
4278
Chris Wilsonadca4732012-05-11 18:01:31 +01004279 I915_WRITE(PORT_HOTPLUG_EN, 0);
4280 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
Chris Wilsona266c7d2012-04-24 22:59:44 +01004281
4282 I915_WRITE(HWSTAM, 0xffffffff);
Damien Lespiau055e3932014-08-18 13:49:10 +01004283 for_each_pipe(dev_priv, pipe)
Chris Wilsona266c7d2012-04-24 22:59:44 +01004284 I915_WRITE(PIPESTAT(pipe), 0);
4285 I915_WRITE(IMR, 0xffffffff);
4286 I915_WRITE(IER, 0x0);
4287
Damien Lespiau055e3932014-08-18 13:49:10 +01004288 for_each_pipe(dev_priv, pipe)
Chris Wilsona266c7d2012-04-24 22:59:44 +01004289 I915_WRITE(PIPESTAT(pipe),
4290 I915_READ(PIPESTAT(pipe)) & 0x8000ffff);
4291 I915_WRITE(IIR, I915_READ(IIR));
4292}
4293
Daniel Vetter4cb21832014-09-15 14:55:26 +02004294static void intel_hpd_irq_reenable_work(struct work_struct *work)
Egbert Eichac4c16c2013-04-16 13:36:58 +02004295{
Imre Deak63237512014-08-18 15:37:02 +03004296 struct drm_i915_private *dev_priv =
4297 container_of(work, typeof(*dev_priv),
4298 hotplug_reenable_work.work);
Egbert Eichac4c16c2013-04-16 13:36:58 +02004299 struct drm_device *dev = dev_priv->dev;
4300 struct drm_mode_config *mode_config = &dev->mode_config;
Egbert Eichac4c16c2013-04-16 13:36:58 +02004301 int i;
4302
Imre Deak63237512014-08-18 15:37:02 +03004303 intel_runtime_pm_get(dev_priv);
4304
Daniel Vetter4cb21832014-09-15 14:55:26 +02004305 spin_lock_irq(&dev_priv->irq_lock);
Egbert Eichac4c16c2013-04-16 13:36:58 +02004306 for (i = (HPD_NONE + 1); i < HPD_NUM_PINS; i++) {
4307 struct drm_connector *connector;
4308
4309 if (dev_priv->hpd_stats[i].hpd_mark != HPD_DISABLED)
4310 continue;
4311
4312 dev_priv->hpd_stats[i].hpd_mark = HPD_ENABLED;
4313
4314 list_for_each_entry(connector, &mode_config->connector_list, head) {
4315 struct intel_connector *intel_connector = to_intel_connector(connector);
4316
4317 if (intel_connector->encoder->hpd_pin == i) {
4318 if (connector->polled != intel_connector->polled)
4319 DRM_DEBUG_DRIVER("Reenabling HPD on connector %s\n",
Jani Nikulac23cc412014-06-03 14:56:17 +03004320 connector->name);
Egbert Eichac4c16c2013-04-16 13:36:58 +02004321 connector->polled = intel_connector->polled;
4322 if (!connector->polled)
4323 connector->polled = DRM_CONNECTOR_POLL_HPD;
4324 }
4325 }
4326 }
4327 if (dev_priv->display.hpd_irq_setup)
4328 dev_priv->display.hpd_irq_setup(dev);
Daniel Vetter4cb21832014-09-15 14:55:26 +02004329 spin_unlock_irq(&dev_priv->irq_lock);
Imre Deak63237512014-08-18 15:37:02 +03004330
4331 intel_runtime_pm_put(dev_priv);
Egbert Eichac4c16c2013-04-16 13:36:58 +02004332}
4333
Daniel Vetterfca52a52014-09-30 10:56:45 +02004334/**
4335 * intel_irq_init - initializes irq support
4336 * @dev_priv: i915 device instance
4337 *
4338 * This function initializes all the irq support including work items, timers
4339 * and all the vtables. It does not setup the interrupt itself though.
4340 */
Daniel Vetterb9632912014-09-30 10:56:44 +02004341void intel_irq_init(struct drm_i915_private *dev_priv)
Jesse Barnesf71d4af2011-06-28 13:00:41 -07004342{
Daniel Vetterb9632912014-09-30 10:56:44 +02004343 struct drm_device *dev = dev_priv->dev;
Chris Wilson8b2e3262012-04-24 22:59:41 +01004344
4345 INIT_WORK(&dev_priv->hotplug_work, i915_hotplug_work_func);
Dave Airlie13cf5502014-06-18 11:29:35 +10004346 INIT_WORK(&dev_priv->dig_port_work, i915_digport_work_func);
Daniel Vetter99584db2012-11-14 17:14:04 +01004347 INIT_WORK(&dev_priv->gpu_error.work, i915_error_work_func);
Daniel Vetterc6a828d2012-08-08 23:35:35 +02004348 INIT_WORK(&dev_priv->rps.work, gen6_pm_rps_work);
Daniel Vettera4da4fa2012-11-02 19:55:07 +01004349 INIT_WORK(&dev_priv->l3_parity.error_work, ivybridge_parity_work);
Chris Wilson8b2e3262012-04-24 22:59:41 +01004350
Deepak Sa6706b42014-03-15 20:23:22 +05304351 /* Let's track the enabled rps events */
Daniel Vetterb9632912014-09-30 10:56:44 +02004352 if (IS_VALLEYVIEW(dev_priv) && !IS_CHERRYVIEW(dev_priv))
Ville Syrjälä6c65a582014-08-29 14:14:07 +03004353 /* WaGsvRC0ResidencyMethod:vlv */
Deepak S31685c22014-07-03 17:33:01 -04004354 dev_priv->pm_rps_events = GEN6_PM_RP_UP_EI_EXPIRED;
4355 else
4356 dev_priv->pm_rps_events = GEN6_PM_RPS_EVENTS;
Deepak Sa6706b42014-03-15 20:23:22 +05304357
Daniel Vetter99584db2012-11-14 17:14:04 +01004358 setup_timer(&dev_priv->gpu_error.hangcheck_timer,
4359 i915_hangcheck_elapsed,
Daniel Vetter61bac782012-12-01 21:03:21 +01004360 (unsigned long) dev);
Imre Deak63237512014-08-18 15:37:02 +03004361 INIT_DELAYED_WORK(&dev_priv->hotplug_reenable_work,
Daniel Vetter4cb21832014-09-15 14:55:26 +02004362 intel_hpd_irq_reenable_work);
Daniel Vetter61bac782012-12-01 21:03:21 +01004363
Tomas Janousek97a19a22012-12-08 13:48:13 +01004364 pm_qos_add_request(&dev_priv->pm_qos, PM_QOS_CPU_DMA_LATENCY, PM_QOS_DEFAULT_VALUE);
Daniel Vetter9ee32fea2012-12-01 13:53:48 +01004365
Daniel Vetterb9632912014-09-30 10:56:44 +02004366 if (IS_GEN2(dev_priv)) {
Ville Syrjälä4cdb83e2013-10-11 21:52:44 +03004367 dev->max_vblank_count = 0;
4368 dev->driver->get_vblank_counter = i8xx_get_vblank_counter;
Daniel Vetterb9632912014-09-30 10:56:44 +02004369 } else if (IS_G4X(dev_priv) || INTEL_INFO(dev_priv)->gen >= 5) {
Jesse Barnesf71d4af2011-06-28 13:00:41 -07004370 dev->max_vblank_count = 0xffffffff; /* full 32 bit counter */
4371 dev->driver->get_vblank_counter = gm45_get_vblank_counter;
Ville Syrjälä391f75e2013-09-25 19:55:26 +03004372 } else {
4373 dev->driver->get_vblank_counter = i915_get_vblank_counter;
4374 dev->max_vblank_count = 0xffffff; /* only 24 bits of frame count */
Jesse Barnesf71d4af2011-06-28 13:00:41 -07004375 }
4376
Ville Syrjälä21da2702014-08-06 14:49:55 +03004377 /*
4378 * Opt out of the vblank disable timer on everything except gen2.
4379 * Gen2 doesn't have a hardware frame counter and so depends on
4380 * vblank interrupts to produce sane vblank seuquence numbers.
4381 */
Daniel Vetterb9632912014-09-30 10:56:44 +02004382 if (!IS_GEN2(dev_priv))
Ville Syrjälä21da2702014-08-06 14:49:55 +03004383 dev->vblank_disable_immediate = true;
4384
Ville Syrjäläc2baf4b2013-09-23 14:48:50 +03004385 if (drm_core_check_feature(dev, DRIVER_MODESET)) {
Keith Packardc3613de2011-08-12 17:05:54 -07004386 dev->driver->get_vblank_timestamp = i915_get_vblank_timestamp;
Ville Syrjäläc2baf4b2013-09-23 14:48:50 +03004387 dev->driver->get_scanout_position = i915_get_crtc_scanoutpos;
4388 }
Jesse Barnesf71d4af2011-06-28 13:00:41 -07004389
Daniel Vetterb9632912014-09-30 10:56:44 +02004390 if (IS_CHERRYVIEW(dev_priv)) {
Ville Syrjälä43f328d2014-04-09 20:40:52 +03004391 dev->driver->irq_handler = cherryview_irq_handler;
4392 dev->driver->irq_preinstall = cherryview_irq_preinstall;
4393 dev->driver->irq_postinstall = cherryview_irq_postinstall;
4394 dev->driver->irq_uninstall = cherryview_irq_uninstall;
4395 dev->driver->enable_vblank = valleyview_enable_vblank;
4396 dev->driver->disable_vblank = valleyview_disable_vblank;
4397 dev_priv->display.hpd_irq_setup = i915_hpd_irq_setup;
Daniel Vetterb9632912014-09-30 10:56:44 +02004398 } else if (IS_VALLEYVIEW(dev_priv)) {
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07004399 dev->driver->irq_handler = valleyview_irq_handler;
4400 dev->driver->irq_preinstall = valleyview_irq_preinstall;
4401 dev->driver->irq_postinstall = valleyview_irq_postinstall;
4402 dev->driver->irq_uninstall = valleyview_irq_uninstall;
4403 dev->driver->enable_vblank = valleyview_enable_vblank;
4404 dev->driver->disable_vblank = valleyview_disable_vblank;
Egbert Eichfa00abe2013-02-25 12:06:48 -05004405 dev_priv->display.hpd_irq_setup = i915_hpd_irq_setup;
Daniel Vetterb9632912014-09-30 10:56:44 +02004406 } else if (INTEL_INFO(dev_priv)->gen >= 8) {
Ben Widawskyabd58f02013-11-02 21:07:09 -07004407 dev->driver->irq_handler = gen8_irq_handler;
Daniel Vetter723761b2014-05-22 17:56:34 +02004408 dev->driver->irq_preinstall = gen8_irq_reset;
Ben Widawskyabd58f02013-11-02 21:07:09 -07004409 dev->driver->irq_postinstall = gen8_irq_postinstall;
4410 dev->driver->irq_uninstall = gen8_irq_uninstall;
4411 dev->driver->enable_vblank = gen8_enable_vblank;
4412 dev->driver->disable_vblank = gen8_disable_vblank;
4413 dev_priv->display.hpd_irq_setup = ibx_hpd_irq_setup;
Jesse Barnesf71d4af2011-06-28 13:00:41 -07004414 } else if (HAS_PCH_SPLIT(dev)) {
4415 dev->driver->irq_handler = ironlake_irq_handler;
Daniel Vetter723761b2014-05-22 17:56:34 +02004416 dev->driver->irq_preinstall = ironlake_irq_reset;
Jesse Barnesf71d4af2011-06-28 13:00:41 -07004417 dev->driver->irq_postinstall = ironlake_irq_postinstall;
4418 dev->driver->irq_uninstall = ironlake_irq_uninstall;
4419 dev->driver->enable_vblank = ironlake_enable_vblank;
4420 dev->driver->disable_vblank = ironlake_disable_vblank;
Daniel Vetter82a28bc2013-03-27 15:55:01 +01004421 dev_priv->display.hpd_irq_setup = ibx_hpd_irq_setup;
Jesse Barnesf71d4af2011-06-28 13:00:41 -07004422 } else {
Daniel Vetterb9632912014-09-30 10:56:44 +02004423 if (INTEL_INFO(dev_priv)->gen == 2) {
Chris Wilsonc2798b12012-04-22 21:13:57 +01004424 dev->driver->irq_preinstall = i8xx_irq_preinstall;
4425 dev->driver->irq_postinstall = i8xx_irq_postinstall;
4426 dev->driver->irq_handler = i8xx_irq_handler;
4427 dev->driver->irq_uninstall = i8xx_irq_uninstall;
Daniel Vetterb9632912014-09-30 10:56:44 +02004428 } else if (INTEL_INFO(dev_priv)->gen == 3) {
Chris Wilsona266c7d2012-04-24 22:59:44 +01004429 dev->driver->irq_preinstall = i915_irq_preinstall;
4430 dev->driver->irq_postinstall = i915_irq_postinstall;
4431 dev->driver->irq_uninstall = i915_irq_uninstall;
4432 dev->driver->irq_handler = i915_irq_handler;
Daniel Vetter20afbda2012-12-11 14:05:07 +01004433 dev_priv->display.hpd_irq_setup = i915_hpd_irq_setup;
Chris Wilsonc2798b12012-04-22 21:13:57 +01004434 } else {
Chris Wilsona266c7d2012-04-24 22:59:44 +01004435 dev->driver->irq_preinstall = i965_irq_preinstall;
4436 dev->driver->irq_postinstall = i965_irq_postinstall;
4437 dev->driver->irq_uninstall = i965_irq_uninstall;
4438 dev->driver->irq_handler = i965_irq_handler;
Egbert Eichbac56d52013-02-25 12:06:51 -05004439 dev_priv->display.hpd_irq_setup = i915_hpd_irq_setup;
Chris Wilsonc2798b12012-04-22 21:13:57 +01004440 }
Jesse Barnesf71d4af2011-06-28 13:00:41 -07004441 dev->driver->enable_vblank = i915_enable_vblank;
4442 dev->driver->disable_vblank = i915_disable_vblank;
4443 }
4444}
Daniel Vetter20afbda2012-12-11 14:05:07 +01004445
Daniel Vetterfca52a52014-09-30 10:56:45 +02004446/**
4447 * intel_hpd_init - initializes and enables hpd support
4448 * @dev_priv: i915 device instance
4449 *
4450 * This function enables the hotplug support. It requires that interrupts have
4451 * already been enabled with intel_irq_init_hw(). From this point on hotplug and
4452 * poll request can run concurrently to other code, so locking rules must be
4453 * obeyed.
4454 *
4455 * This is a separate step from interrupt enabling to simplify the locking rules
4456 * in the driver load and resume code.
4457 */
Daniel Vetterb9632912014-09-30 10:56:44 +02004458void intel_hpd_init(struct drm_i915_private *dev_priv)
Daniel Vetter20afbda2012-12-11 14:05:07 +01004459{
Daniel Vetterb9632912014-09-30 10:56:44 +02004460 struct drm_device *dev = dev_priv->dev;
Egbert Eich821450c2013-04-16 13:36:55 +02004461 struct drm_mode_config *mode_config = &dev->mode_config;
4462 struct drm_connector *connector;
4463 int i;
Daniel Vetter20afbda2012-12-11 14:05:07 +01004464
Egbert Eich821450c2013-04-16 13:36:55 +02004465 for (i = 1; i < HPD_NUM_PINS; i++) {
4466 dev_priv->hpd_stats[i].hpd_cnt = 0;
4467 dev_priv->hpd_stats[i].hpd_mark = HPD_ENABLED;
4468 }
4469 list_for_each_entry(connector, &mode_config->connector_list, head) {
4470 struct intel_connector *intel_connector = to_intel_connector(connector);
4471 connector->polled = intel_connector->polled;
Dave Airlie0e32b392014-05-02 14:02:48 +10004472 if (connector->encoder && !connector->polled && I915_HAS_HOTPLUG(dev) && intel_connector->encoder->hpd_pin > HPD_NONE)
4473 connector->polled = DRM_CONNECTOR_POLL_HPD;
4474 if (intel_connector->mst_port)
Egbert Eich821450c2013-04-16 13:36:55 +02004475 connector->polled = DRM_CONNECTOR_POLL_HPD;
4476 }
Daniel Vetterb5ea2d52013-06-27 17:52:15 +02004477
4478 /* Interrupt setup is already guaranteed to be single-threaded, this is
4479 * just to make the assert_spin_locked checks happy. */
Daniel Vetterd6207432014-09-15 14:55:27 +02004480 spin_lock_irq(&dev_priv->irq_lock);
Daniel Vetter20afbda2012-12-11 14:05:07 +01004481 if (dev_priv->display.hpd_irq_setup)
4482 dev_priv->display.hpd_irq_setup(dev);
Daniel Vetterd6207432014-09-15 14:55:27 +02004483 spin_unlock_irq(&dev_priv->irq_lock);
Daniel Vetter20afbda2012-12-11 14:05:07 +01004484}
Paulo Zanonic67a4702013-08-19 13:18:09 -03004485
Daniel Vetterfca52a52014-09-30 10:56:45 +02004486/**
4487 * intel_irq_install - enables the hardware interrupt
4488 * @dev_priv: i915 device instance
4489 *
4490 * This function enables the hardware interrupt handling, but leaves the hotplug
4491 * handling still disabled. It is called after intel_irq_init().
4492 *
4493 * In the driver load and resume code we need working interrupts in a few places
4494 * but don't want to deal with the hassle of concurrent probe and hotplug
4495 * workers. Hence the split into this two-stage approach.
4496 */
Daniel Vetter2aeb7d32014-09-30 10:56:43 +02004497int intel_irq_install(struct drm_i915_private *dev_priv)
4498{
4499 /*
4500 * We enable some interrupt sources in our postinstall hooks, so mark
4501 * interrupts as enabled _before_ actually enabling them to avoid
4502 * special cases in our ordering checks.
4503 */
4504 dev_priv->pm.irqs_enabled = true;
4505
4506 return drm_irq_install(dev_priv->dev, dev_priv->dev->pdev->irq);
4507}
4508
Daniel Vetterfca52a52014-09-30 10:56:45 +02004509/**
4510 * intel_irq_uninstall - finilizes all irq handling
4511 * @dev_priv: i915 device instance
4512 *
4513 * This stops interrupt and hotplug handling and unregisters and frees all
4514 * resources acquired in the init functions.
4515 */
Daniel Vetter2aeb7d32014-09-30 10:56:43 +02004516void intel_irq_uninstall(struct drm_i915_private *dev_priv)
4517{
4518 drm_irq_uninstall(dev_priv->dev);
4519 intel_hpd_cancel_work(dev_priv);
4520 dev_priv->pm.irqs_enabled = false;
4521}
4522
Daniel Vetterfca52a52014-09-30 10:56:45 +02004523/**
4524 * intel_runtime_pm_disable_interrupts - runtime interrupt disabling
4525 * @dev_priv: i915 device instance
4526 *
4527 * This function is used to disable interrupts at runtime, both in the runtime
4528 * pm and the system suspend/resume code.
4529 */
Daniel Vetterb9632912014-09-30 10:56:44 +02004530void intel_runtime_pm_disable_interrupts(struct drm_i915_private *dev_priv)
Paulo Zanonic67a4702013-08-19 13:18:09 -03004531{
Daniel Vetterb9632912014-09-30 10:56:44 +02004532 dev_priv->dev->driver->irq_uninstall(dev_priv->dev);
Daniel Vetter2aeb7d32014-09-30 10:56:43 +02004533 dev_priv->pm.irqs_enabled = false;
Paulo Zanonic67a4702013-08-19 13:18:09 -03004534}
4535
Daniel Vetterfca52a52014-09-30 10:56:45 +02004536/**
4537 * intel_runtime_pm_enable_interrupts - runtime interrupt enabling
4538 * @dev_priv: i915 device instance
4539 *
4540 * This function is used to enable interrupts at runtime, both in the runtime
4541 * pm and the system suspend/resume code.
4542 */
Daniel Vetterb9632912014-09-30 10:56:44 +02004543void intel_runtime_pm_enable_interrupts(struct drm_i915_private *dev_priv)
Paulo Zanonic67a4702013-08-19 13:18:09 -03004544{
Daniel Vetter2aeb7d32014-09-30 10:56:43 +02004545 dev_priv->pm.irqs_enabled = true;
Daniel Vetterb9632912014-09-30 10:56:44 +02004546 dev_priv->dev->driver->irq_preinstall(dev_priv->dev);
4547 dev_priv->dev->driver->irq_postinstall(dev_priv->dev);
Paulo Zanonic67a4702013-08-19 13:18:09 -03004548}